Premium Addons for Elementor - Version 4.9.0-beta1

Version Description

Download this release

Release Info

Developer leap13
Plugin Icon 128x128 Premium Addons for Elementor
Version 4.9.0-beta1
Comparing to
See all releases

Code changes from version 4.8.10 to 4.9.0-beta1

admin/assets/css/admin-rtl.css CHANGED
@@ -578,6 +578,10 @@ input:checked+.slider:before {
578
  margin-top: 36px;
579
  }
580
 
 
 
 
 
581
  .pa-section-info-wrap h4 {
582
  font-size: 20px;
583
  color: #252c59;
578
  margin-top: 36px;
579
  }
580
 
581
+ #pa-section-elements .pa-section-outer-wrap {
582
+ margin-bottom: 16px;
583
+ }
584
+
585
  .pa-section-info-wrap h4 {
586
  font-size: 20px;
587
  color: #252c59;
admin/assets/css/admin.css CHANGED
@@ -578,6 +578,10 @@ input:checked+.slider:before {
578
  margin-top: 36px;
579
  }
580
 
 
 
 
 
581
  .pa-section-info-wrap h4 {
582
  font-size: 20px;
583
  color: #252c59;
@@ -652,7 +656,8 @@ input:checked+.slider:before {
652
  }
653
 
654
  .pa-section-info-wrap .pa-btn,
655
- .pa-section-info-wrap .pa-btn-unused {
 
656
  font-family: "Red Hat Display";
657
  color: #8e8e8e;
658
  background-color: #ebebeb;
@@ -669,6 +674,14 @@ input:checked+.slider:before {
669
  text-decoration: none;
670
  }
671
 
 
 
 
 
 
 
 
 
672
  .pa-section-info-wrap .pa-btn-unused {
673
  width: 100%;
674
  clear: both;
@@ -1040,7 +1053,7 @@ input:checked+.slider:before {
1040
  outline: none;
1041
  text-decoration: none;
1042
  -webkit-box-shadow: none;
1043
- box-shadow: none;
1044
  }
1045
 
1046
  /*
578
  margin-top: 36px;
579
  }
580
 
581
+ #pa-section-elements .pa-section-outer-wrap {
582
+ margin-bottom: 16px;
583
+ }
584
+
585
  .pa-section-info-wrap h4 {
586
  font-size: 20px;
587
  color: #252c59;
656
  }
657
 
658
  .pa-section-info-wrap .pa-btn,
659
+ .pa-section-info-wrap .pa-btn-unused,
660
+ .pa-section-info-wrap .pa-btn-generate {
661
  font-family: "Red Hat Display";
662
  color: #8e8e8e;
663
  background-color: #ebebeb;
674
  text-decoration: none;
675
  }
676
 
677
+ .pa-section-info-wrap .pa-btn-generate {
678
+ background: #8dc900;
679
+ color: #fff;
680
+ width: 100%;
681
+ clear: both;
682
+ margin-top: 16px;
683
+ }
684
+
685
  .pa-section-info-wrap .pa-btn-unused {
686
  width: 100%;
687
  clear: both;
1053
  outline: none;
1054
  text-decoration: none;
1055
  -webkit-box-shadow: none;
1056
+ box-shadow: none;
1057
  }
1058
 
1059
  /*
admin/assets/js/admin.js CHANGED
@@ -1,473 +1,508 @@
1
- (function ($) {
2
-
3
- "use strict";
4
-
5
- var redHadfontLink = document.createElement('link');
6
- redHadfontLink.rel = 'stylesheet';
7
- redHadfontLink.href = 'https://fonts.googleapis.com/css?family=Red Hat Display:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic';
8
- redHadfontLink.type = 'text/css';
9
- document.head.appendChild(redHadfontLink);
10
-
11
- var poppinsfontLink = document.createElement('link');
12
- poppinsfontLink.rel = 'stylesheet';
13
- poppinsfontLink.href = 'https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic';
14
- poppinsfontLink.type = 'text/css';
15
- document.head.appendChild(poppinsfontLink);
16
-
17
- var settings = premiumAddonsSettings.settings;
18
-
19
- window.PremiumAddonsNavigation = function () {
20
-
21
- var self = this,
22
- $tabs = $(".pa-settings-tab"),
23
- $elementsTabs = $(".pa-elements-tab");
24
-
25
- self.init = function () {
26
-
27
- if (!$tabs.length) {
28
- return;
29
- }
30
-
31
- self.initNavTabs($tabs);
32
-
33
- self.initElementsTabs($elementsTabs);
34
-
35
- if (settings.isTrackerAllowed) {
36
- self.getUnusedWidget();
37
- }
38
-
39
- self.handleElementsActions();
40
-
41
- self.handleSettingsSave();
42
-
43
- self.handleRollBack();
44
-
45
- self.handleNewsLetterForm();
46
-
47
- self.handlePaproActions();
48
-
49
- };
50
-
51
- // Handle settings form submission
52
- self.handleSettingsSave = function () {
53
-
54
- $("#pa-features .pa-section-info-cta input, #pa-modules .pa-switcher input").on(
55
- 'change',
56
- function () {
57
- self.saveElementsSettings('elements');
58
- }
59
- )
60
-
61
- $("#pa-ver-control input, #pa-integrations input, #pa-ver-control input, #pa-integrations select").change(
62
- function () {
63
- self.saveElementsSettings('additional');
64
- }
65
- );
66
-
67
- $("#pa-integrations input[type=text]").on(
68
- 'keyup',
69
- function () {
70
- self.saveElementsSettings('additional');
71
- }
72
- )
73
-
74
- };
75
-
76
- //get unused widgets.
77
- self.getUnusedWidget = function () {
78
-
79
- if ($(".pa-btn-group .pa-btn-disable").hasClass("active")) {
80
- $(".pa-btn-group .pa-btn-unused").addClass("dimmed");
81
- }
82
-
83
- $.ajax(
84
- {
85
- url: settings.ajaxurl,
86
- type: 'POST',
87
- data: {
88
- action: 'pa_get_unused_widgets',
89
- security: settings.nonce,
90
- },
91
- success: function (response) {
92
- console.log('unused widgets retrieved');
93
- self.unusedElements = response.data;
94
- },
95
- error: function (err) {
96
- console.log(err);
97
- }
98
- }
99
- );
100
- };
101
-
102
- // Handle global enable/disable buttons
103
- self.handleElementsActions = function () {
104
-
105
- $(".pa-elements-filter select").on(
106
- 'change',
107
- function () {
108
- var filter = $(this).val(),
109
- $activeTab = $(".pa-switchers-container").not(".hidden");
110
-
111
- $activeTab.find(".pa-switcher").removeClass("hidden");
112
-
113
- if ('free' === filter) {
114
- $activeTab.find(".pro-element").addClass("hidden");
115
- } else if ('pro' === filter) {
116
- $activeTab.find(".pa-switcher").not(".pro-element").addClass("hidden");
117
- }
118
- }
119
- );
120
-
121
- // Enable/Disable all widgets
122
- $(".pa-btn-group").on(
123
- "click",
124
- '.pa-btn',
125
- function () {
126
-
127
- var $btn = $(this),
128
- isChecked = $btn.hasClass("pa-btn-enable");
129
-
130
- if (!$btn.hasClass("active")) {
131
- $(".pa-btn-group .pa-btn").removeClass("active");
132
- $btn.addClass("active");
133
-
134
- $.ajax(
135
- {
136
- url: settings.ajaxurl,
137
- type: 'POST',
138
- data: {
139
- action: 'pa_save_global_btn',
140
- security: settings.nonce,
141
- isGlobalOn: isChecked
142
- }
143
- }
144
- );
145
-
146
- }
147
-
148
- if (isChecked) {
149
- $(".pa-btn-group .pa-btn-unused").removeClass("dimmed");
150
- } else {
151
- $(".pa-btn-group .pa-btn-unused").addClass("dimmed");
152
- }
153
-
154
- $("#pa-modules .pa-switcher input").prop("checked", isChecked);
155
-
156
- self.saveElementsSettings('elements');
157
-
158
- }
159
- );
160
-
161
- //Disable unused widgets.
162
- $(".pa-btn-group").on(
163
- "click",
164
- '.pa-btn-unused',
165
- function () {
166
-
167
- $.each(self.unusedElements, function (index, selector) {
168
- $('#pa-modules .pa-switcher.' + selector).find('input').prop('checked', false);
169
- });
170
-
171
- $(this).addClass('dimmed');
172
-
173
- self.saveElementsSettings('elements');
174
- }
175
- );
176
-
177
- $("#pa-modules .pa-switcher input").on(
178
- 'change',
179
- function () {
180
- var $this = $(this),
181
- id = $this.attr('id'),
182
- isChecked = $this.prop('checked');
183
-
184
- $("input[name='" + id + "']").prop('checked', isChecked);
185
- }
186
- )
187
-
188
- };
189
-
190
- // Handle Tabs Elements
191
- self.initElementsTabs = function ($elem) {
192
-
193
- var $links = $elem.find('a'),
194
- $sections = $(".pa-switchers-container");
195
-
196
- $sections.eq(0).removeClass("hidden");
197
- $links.eq(0).addClass("active");
198
-
199
- $links.on(
200
- 'click',
201
- function (e) {
202
-
203
- e.preventDefault();
204
-
205
- var $link = $(this),
206
- href = $link.attr('href');
207
-
208
- // Set this tab to active
209
- $links.removeClass("active");
210
- $link.addClass("active");
211
-
212
- // Navigate to tab section
213
- $sections.addClass("hidden");
214
- $("#" + href).removeClass("hidden");
215
-
216
- }
217
- );
218
- };
219
-
220
- // Handle settings tabs
221
- self.initNavTabs = function ($elem) {
222
-
223
- var $links = $elem.find('a'),
224
- $lastSection = null;
225
-
226
- $(window).on(
227
- 'hashchange',
228
- function () {
229
-
230
- var hash = window.location.hash.match(new RegExp('tab=([^&]*)')),
231
- slug = hash ? hash[1] : $links.first().attr('href').replace('#tab=', ''),
232
- $link = $('#pa-tab-link-' + slug);
233
-
234
- if (!$link.length) {
235
- return
236
-
237
- }
238
- $links.removeClass('pa-section-active');
239
- $link.addClass('pa-section-active');
240
-
241
- // Hide the last active section
242
- if ($lastSection) {
243
- $lastSection.hide();
244
- }
245
-
246
- var $section = $('#pa-section-' + slug);
247
- $section.css(
248
- {
249
- display: 'block'
250
- }
251
- );
252
-
253
- $lastSection = $section;
254
-
255
- }
256
- ).trigger('hashchange');
257
-
258
- };
259
-
260
- self.handleRollBack = function () {
261
-
262
- // Rollback button
263
- $('.pa-rollback-button').on(
264
- 'click',
265
- function (event) {
266
-
267
- event.preventDefault();
268
-
269
- var $this = $(this),
270
- href = $this.attr('href');
271
-
272
- if (!href) {
273
- return;
274
- }
275
-
276
- // Show PAPRO stable version if PAPRO Rollback is clicked
277
- var isPAPRO = '';
278
- if (-1 !== href.indexOf('papro_rollback')) {
279
- isPAPRO = 'papro_';
280
- }
281
-
282
- var premiumRollBackConfirm = premiumAddonsSettings.premiumRollBackConfirm;
283
-
284
- var dialogsManager = new DialogsManager.Instance();
285
-
286
- dialogsManager.createWidget(
287
- 'confirm',
288
- {
289
- headerMessage: premiumRollBackConfirm.i18n.rollback_to_previous_version,
290
- message: premiumRollBackConfirm['i18n'][isPAPRO + 'rollback_confirm'],
291
- strings: {
292
- cancel: premiumRollBackConfirm.i18n.cancel,
293
- confirm: premiumRollBackConfirm.i18n.yes,
294
- },
295
- onConfirm: function () {
296
-
297
- $this.addClass('loading');
298
-
299
- location.href = $this.attr('href');
300
-
301
- }
302
- }
303
- ).show();
304
- }
305
- );
306
-
307
- };
308
-
309
- self.saveElementsSettings = function (action) { //save elements settings changes
310
-
311
- var $form = null;
312
-
313
- if ('elements' === action) {
314
- $form = $('form#pa-settings, form#pa-features');
315
- action = 'pa_elements_settings';
316
- } else {
317
- $form = $('form#pa-ver-control, form#pa-integrations');
318
- action = 'pa_additional_settings';
319
- }
320
-
321
- $.ajax(
322
- {
323
- url: settings.ajaxurl,
324
- type: 'POST',
325
- data: {
326
- action: action,
327
- security: settings.nonce,
328
- fields: $form.serialize(),
329
- },
330
- success: function (response) {
331
-
332
- console.log("settings saved");
333
- },
334
- error: function (err) {
335
-
336
- console.log(err);
337
-
338
- }
339
- }
340
- );
341
-
342
- }
343
-
344
- self.handlePaproActions = function () {
345
-
346
- // Trigger SWAL for PRO elements
347
- $(".pro-slider").on(
348
- 'click',
349
- function () {
350
-
351
- var redirectionLink = " https://premiumaddons.com/pro/?utm_source=wp-menu&utm_medium=wp-dash&utm_campaign=get-pro&utm_term=";
352
-
353
- Swal.fire(
354
- {
355
- title: '<span class="pa-swal-head">Get PRO Widgets & Addons<span>',
356
- html: 'Supercharge your Elementor with PRO widgets and addons that you won’t find anywhere else.',
357
- type: 'warning',
358
- showCloseButton: true,
359
- showCancelButton: true,
360
- cancelButtonText: "More Info",
361
- focusConfirm: true,
362
- customClass: 'pa-swal',
363
- }
364
- ).then(
365
- function (res) {
366
- // Handle More Info button
367
- if (res.dismiss === 'cancel') {
368
- window.open(redirectionLink + settings.theme, '_blank');
369
- }
370
-
371
- }
372
- );
373
- }
374
- );
375
-
376
- // Trigger SWAL for White Labeling
377
- $(".premium-white-label-form.pro-inactive").on(
378
- 'submit',
379
- function (e) {
380
-
381
- e.preventDefault();
382
-
383
- var redirectionLink = " https://premiumaddons.com/pro/?utm_source=wp-menu&utm_medium=wp-dash&utm_campaign=get-pro&utm_term=";
384
-
385
- Swal.fire(
386
- {
387
- title: '<span class="pa-swal-head">Enable White Labeling Options<span>',
388
- html: 'Premium Addons can be completely re-branded with your own brand name and author details. Your clients will never know what tools you are using to build their website and will think that this is your own tool set. White-labeling works as long as your license is active.',
389
- type: 'warning',
390
- showCloseButton: true,
391
- showCancelButton: true,
392
- cancelButtonText: "More Info",
393
- focusConfirm: true
394
- }
395
- ).then(
396
- function (res) {
397
- // Handle More Info button
398
- if (res.dismiss === 'cancel') {
399
- window.open(redirectionLink + settings.theme, '_blank');
400
- }
401
-
402
- }
403
- );
404
- }
405
- );
406
-
407
- };
408
-
409
- self.handleNewsLetterForm = function () {
410
-
411
- $('.pa-newsletter-form').on('submit', function (e) {
412
- e.preventDefault();
413
-
414
- var email = $("#pa_news_email").val();
415
-
416
- if (checkEmail(email)) {
417
- $.ajax(
418
- {
419
- url: settings.ajaxurl,
420
- type: 'POST',
421
- data: {
422
- action: 'subscribe_newsletter',
423
- security: settings.nonce,
424
- email: email
425
- },
426
- beforeSend: function () {
427
- console.log("Adding user to subscribers list");
428
- },
429
- success: function (response) {
430
- if (response.data) {
431
- var status = response.data.status;
432
- if (status) {
433
- console.log("User added to subscribers list");
434
- swal.fire({
435
- title: 'Thanks for subscribing!',
436
- text: 'Click OK to continue',
437
- type: 'success',
438
- timer: 1000
439
- });
440
- }
441
-
442
- }
443
-
444
- },
445
- error: function (err) {
446
- console.log(err);
447
- }
448
- }
449
- );
450
- } else {
451
- Swal.fire({
452
- type: 'error',
453
- title: 'Invalid Email Address...',
454
- text: 'Please enter a valid email address!'
455
- });
456
- }
457
-
458
- })
459
-
460
- }
461
-
462
- function checkEmail(emailAddress) {
463
- var pattern = new RegExp(/^(("[\w-+\s]+")|([\w-+]+(?:\.[\w-+]+)*)|("[\w-+\s]+")([\w-+]+(?:\.[\w-+]+)*))(@((?:[\w-+]+\.)*\w[\w-+]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$)|(@\[?((25[0-5]\.|2[0-4][\d]\.|1[\d]{2}\.|[\d]{1,2}\.))((25[0-5]|2[0-4][\d]|1[\d]{2}|[\d]{1,2})\.){2}(25[0-5]|2[0-4][\d]|1[\d]{2}|[\d]{1,2})\]?$)/i);
464
- return pattern.test(emailAddress);
465
- }
466
-
467
- };
468
-
469
- var instance = new PremiumAddonsNavigation();
470
-
471
- instance.init();
472
-
473
- })(jQuery);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ (function ($) {
2
+
3
+ "use strict";
4
+
5
+ var redHadfontLink = document.createElement('link');
6
+ redHadfontLink.rel = 'stylesheet';
7
+ redHadfontLink.href = 'https://fonts.googleapis.com/css?family=Red Hat Display:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic';
8
+ redHadfontLink.type = 'text/css';
9
+ document.head.appendChild(redHadfontLink);
10
+
11
+ var poppinsfontLink = document.createElement('link');
12
+ poppinsfontLink.rel = 'stylesheet';
13
+ poppinsfontLink.href = 'https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,400,400italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic';
14
+ poppinsfontLink.type = 'text/css';
15
+ document.head.appendChild(poppinsfontLink);
16
+
17
+ var settings = premiumAddonsSettings.settings;
18
+
19
+ window.PremiumAddonsNavigation = function () {
20
+
21
+ var self = this,
22
+ $tabs = $(".pa-settings-tab"),
23
+ $elementsTabs = $(".pa-elements-tab");
24
+
25
+ self.init = function () {
26
+
27
+ if (!$tabs.length) {
28
+ return;
29
+ }
30
+
31
+ self.genButtonDisplay();
32
+
33
+ self.initNavTabs($tabs);
34
+
35
+ self.initElementsTabs($elementsTabs);
36
+
37
+ if (settings.isTrackerAllowed) {
38
+ self.getUnusedWidget();
39
+ }
40
+
41
+ self.handleElementsActions();
42
+
43
+ self.handleSettingsSave();
44
+
45
+ self.handleRollBack();
46
+
47
+ self.handleNewsLetterForm();
48
+
49
+ self.handlePaproActions();
50
+
51
+ self.clearCachedAssets();
52
+
53
+ };
54
+
55
+ self.clearCachedAssets = function () {
56
+ $(".pa-btn-generate").on("click", function () {
57
+ $.ajax(
58
+ {
59
+ url: settings.ajaxurl,
60
+ type: 'POST',
61
+ data: {
62
+ action: 'pa_clear_cached_assets',
63
+ security: settings.nonce,
64
+ },
65
+ success: function (response) {
66
+ console.log(response.data);
67
+ },
68
+ error: function (err) {
69
+ console.log(err);
70
+ }
71
+ }
72
+ );
73
+ });
74
+ };
75
+
76
+ // Handle settings form submission
77
+ self.handleSettingsSave = function () {
78
+
79
+ $("#pa-features .pa-section-info-cta input, #pa-modules .pa-switcher input, #pa-modules .pa-section-info-cta input").on(
80
+ 'change',
81
+ function () {
82
+ self.saveElementsSettings('elements');
83
+ }
84
+ )
85
+
86
+ $("#pa-ver-control input, #pa-integrations input, #pa-ver-control input, #pa-integrations select").change(
87
+ function () {
88
+ self.saveElementsSettings('additional');
89
+ }
90
+ );
91
+
92
+ $("#pa-integrations input[type=text]").on(
93
+ 'keyup',
94
+ function () {
95
+ self.saveElementsSettings('additional');
96
+ }
97
+ )
98
+
99
+ };
100
+
101
+ //get unused widgets.
102
+ self.getUnusedWidget = function () {
103
+
104
+ if ($(".pa-btn-group .pa-btn-disable").hasClass("active")) {
105
+ $(".pa-btn-group .pa-btn-unused").addClass("dimmed");
106
+ }
107
+
108
+ $.ajax(
109
+ {
110
+ url: settings.ajaxurl,
111
+ type: 'POST',
112
+ data: {
113
+ action: 'pa_get_unused_widgets',
114
+ security: settings.nonce,
115
+ },
116
+ success: function (response) {
117
+ console.log('unused widgets retrieved');
118
+ self.unusedElements = response.data;
119
+ },
120
+ error: function (err) {
121
+ console.log(err);
122
+ }
123
+ }
124
+ );
125
+ };
126
+
127
+ // Handle global enable/disable buttons
128
+ self.handleElementsActions = function () {
129
+
130
+ $(".pa-elements-filter select").on(
131
+ 'change',
132
+ function () {
133
+ var filter = $(this).val(),
134
+ $activeTab = $(".pa-switchers-container").not(".hidden");
135
+
136
+ $activeTab.find(".pa-switcher").removeClass("hidden");
137
+
138
+ if ('free' === filter) {
139
+ $activeTab.find(".pro-element").addClass("hidden");
140
+ } else if ('pro' === filter) {
141
+ $activeTab.find(".pa-switcher").not(".pro-element").addClass("hidden");
142
+ }
143
+ }
144
+ );
145
+
146
+ // Enable/Disable all widgets
147
+ $(".pa-btn-group").on(
148
+ "click",
149
+ '.pa-btn',
150
+ function () {
151
+
152
+ var $btn = $(this),
153
+ isChecked = $btn.hasClass("pa-btn-enable");
154
+
155
+ if (!$btn.hasClass("active")) {
156
+ $(".pa-btn-group .pa-btn").removeClass("active");
157
+ $btn.addClass("active");
158
+
159
+ $.ajax(
160
+ {
161
+ url: settings.ajaxurl,
162
+ type: 'POST',
163
+ data: {
164
+ action: 'pa_save_global_btn',
165
+ security: settings.nonce,
166
+ isGlobalOn: isChecked
167
+ }
168
+ }
169
+ );
170
+
171
+ }
172
+
173
+ if (isChecked) {
174
+ $(".pa-btn-group .pa-btn-unused").removeClass("dimmed");
175
+ } else {
176
+ $(".pa-btn-group .pa-btn-unused").addClass("dimmed");
177
+ }
178
+
179
+ $("#pa-modules .pa-switcher input").prop("checked", isChecked);
180
+
181
+ self.saveElementsSettings('elements');
182
+
183
+ }
184
+ );
185
+
186
+ //Disable unused widgets.
187
+ $(".pa-btn-group").on(
188
+ "click",
189
+ '.pa-btn-unused',
190
+ function () {
191
+
192
+ $.each(self.unusedElements, function (index, selector) {
193
+ $('#pa-modules .pa-switcher.' + selector).find('input').prop('checked', false);
194
+ });
195
+
196
+ $(this).addClass('dimmed');
197
+
198
+ self.saveElementsSettings('elements');
199
+ }
200
+ );
201
+
202
+ $("#pa-modules .pa-switcher input").on(
203
+ 'change',
204
+ function () {
205
+ var $this = $(this),
206
+ id = $this.attr('id'),
207
+ isChecked = $this.prop('checked');
208
+
209
+ $("input[name='" + id + "']").prop('checked', isChecked);
210
+ }
211
+ )
212
+
213
+ };
214
+
215
+ // Handle Tabs Elements
216
+ self.initElementsTabs = function ($elem) {
217
+
218
+ var $links = $elem.find('a'),
219
+ $sections = $(".pa-switchers-container");
220
+
221
+ $sections.eq(0).removeClass("hidden");
222
+ $links.eq(0).addClass("active");
223
+
224
+ $links.on(
225
+ 'click',
226
+ function (e) {
227
+
228
+ e.preventDefault();
229
+
230
+ var $link = $(this),
231
+ href = $link.attr('href');
232
+
233
+ // Set this tab to active
234
+ $links.removeClass("active");
235
+ $link.addClass("active");
236
+
237
+ // Navigate to tab section
238
+ $sections.addClass("hidden");
239
+ $("#" + href).removeClass("hidden");
240
+
241
+ }
242
+ );
243
+ };
244
+
245
+ // Handle settings tabs
246
+ self.initNavTabs = function ($elem) {
247
+
248
+ var $links = $elem.find('a'),
249
+ $lastSection = null;
250
+
251
+ $(window).on(
252
+ 'hashchange',
253
+ function () {
254
+
255
+ var hash = window.location.hash.match(new RegExp('tab=([^&]*)')),
256
+ slug = hash ? hash[1] : $links.first().attr('href').replace('#tab=', ''),
257
+ $link = $('#pa-tab-link-' + slug);
258
+
259
+ if (!$link.length) {
260
+ return
261
+
262
+ }
263
+ $links.removeClass('pa-section-active');
264
+ $link.addClass('pa-section-active');
265
+
266
+ // Hide the last active section
267
+ if ($lastSection) {
268
+ $lastSection.hide();
269
+ }
270
+
271
+ var $section = $('#pa-section-' + slug);
272
+ $section.css(
273
+ {
274
+ display: 'block'
275
+ }
276
+ );
277
+
278
+ $lastSection = $section;
279
+
280
+ }
281
+ ).trigger('hashchange');
282
+
283
+ };
284
+
285
+ self.handleRollBack = function () {
286
+
287
+ // Rollback button
288
+ $('.pa-rollback-button').on(
289
+ 'click',
290
+ function (event) {
291
+
292
+ event.preventDefault();
293
+
294
+ var $this = $(this),
295
+ href = $this.attr('href');
296
+
297
+ if (!href) {
298
+ return;
299
+ }
300
+
301
+ // Show PAPRO stable version if PAPRO Rollback is clicked
302
+ var isPAPRO = '';
303
+ if (-1 !== href.indexOf('papro_rollback')) {
304
+ isPAPRO = 'papro_';
305
+ }
306
+
307
+ var premiumRollBackConfirm = premiumAddonsSettings.premiumRollBackConfirm;
308
+
309
+ var dialogsManager = new DialogsManager.Instance();
310
+
311
+ dialogsManager.createWidget(
312
+ 'confirm',
313
+ {
314
+ headerMessage: premiumRollBackConfirm.i18n.rollback_to_previous_version,
315
+ message: premiumRollBackConfirm['i18n'][isPAPRO + 'rollback_confirm'],
316
+ strings: {
317
+ cancel: premiumRollBackConfirm.i18n.cancel,
318
+ confirm: premiumRollBackConfirm.i18n.yes,
319
+ },
320
+ onConfirm: function () {
321
+
322
+ $this.addClass('loading');
323
+
324
+ location.href = $this.attr('href');
325
+
326
+ }
327
+ }
328
+ ).show();
329
+ }
330
+ );
331
+
332
+ };
333
+
334
+ self.saveElementsSettings = function (action) { //save elements settings changes
335
+
336
+ var $form = null;
337
+
338
+ if ('elements' === action) {
339
+ $form = $('form#pa-settings, form#pa-features');
340
+ action = 'pa_elements_settings';
341
+ } else {
342
+ $form = $('form#pa-ver-control, form#pa-integrations');
343
+ action = 'pa_additional_settings';
344
+ }
345
+
346
+ $.ajax(
347
+ {
348
+ url: settings.ajaxurl,
349
+ type: 'POST',
350
+ data: {
351
+ action: action,
352
+ security: settings.nonce,
353
+ fields: $form.serialize(),
354
+ },
355
+ success: function (response) {
356
+ console.log('settings saved');
357
+
358
+ self.genButtonDisplay();
359
+ },
360
+ error: function (err) {
361
+ console.log(err);
362
+ }
363
+ }
364
+ );
365
+ }
366
+
367
+ self.genButtonDisplay = function () {
368
+ var $form = $('form#pa-settings'),
369
+ searchTerm = 'premium-assets-generator=on',
370
+ indexOfFirst = $form.serialize().indexOf(searchTerm);
371
+
372
+ if (indexOfFirst !== -1) {
373
+ $('.pa-btn-generate').show();
374
+ } else {
375
+ $('.pa-btn-generate').hide();
376
+ }
377
+ };
378
+
379
+ self.handlePaproActions = function () {
380
+
381
+ // Trigger SWAL for PRO elements
382
+ $(".pro-slider").on(
383
+ 'click',
384
+ function () {
385
+
386
+ var redirectionLink = " https://premiumaddons.com/pro/?utm_source=wp-menu&utm_medium=wp-dash&utm_campaign=get-pro&utm_term=";
387
+
388
+ Swal.fire(
389
+ {
390
+ title: '<span class="pa-swal-head">Get PRO Widgets & Addons<span>',
391
+ html: 'Supercharge your Elementor with PRO widgets and addons that you won’t find anywhere else.',
392
+ type: 'warning',
393
+ showCloseButton: true,
394
+ showCancelButton: true,
395
+ cancelButtonText: "More Info",
396
+ focusConfirm: true,
397
+ customClass: 'pa-swal',
398
+ }
399
+ ).then(
400
+ function (res) {
401
+ // Handle More Info button
402
+ if (res.dismiss === 'cancel') {
403
+ window.open(redirectionLink + settings.theme, '_blank');
404
+ }
405
+
406
+ }
407
+ );
408
+ }
409
+ );
410
+
411
+ // Trigger SWAL for White Labeling
412
+ $(".premium-white-label-form.pro-inactive").on(
413
+ 'submit',
414
+ function (e) {
415
+
416
+ e.preventDefault();
417
+
418
+ var redirectionLink = " https://premiumaddons.com/pro/?utm_source=wp-menu&utm_medium=wp-dash&utm_campaign=get-pro&utm_term=";
419
+
420
+ Swal.fire(
421
+ {
422
+ title: '<span class="pa-swal-head">Enable White Labeling Options<span>',
423
+ html: 'Premium Addons can be completely re-branded with your own brand name and author details. Your clients will never know what tools you are using to build their website and will think that this is your own tool set. White-labeling works as long as your license is active.',
424
+ type: 'warning',
425
+ showCloseButton: true,
426
+ showCancelButton: true,
427
+ cancelButtonText: "More Info",
428
+ focusConfirm: true
429
+ }
430
+ ).then(
431
+ function (res) {
432
+ // Handle More Info button
433
+ if (res.dismiss === 'cancel') {
434
+ window.open(redirectionLink + settings.theme, '_blank');
435
+ }
436
+
437
+ }
438
+ );
439
+ }
440
+ );
441
+
442
+ };
443
+
444
+ self.handleNewsLetterForm = function () {
445
+
446
+ $('.pa-newsletter-form').on('submit', function (e) {
447
+ e.preventDefault();
448
+
449
+ var email = $("#pa_news_email").val();
450
+
451
+ if (checkEmail(email)) {
452
+ $.ajax(
453
+ {
454
+ url: settings.ajaxurl,
455
+ type: 'POST',
456
+ data: {
457
+ action: 'subscribe_newsletter',
458
+ security: settings.nonce,
459
+ email: email
460
+ },
461
+ beforeSend: function () {
462
+ console.log("Adding user to subscribers list");
463
+ },
464
+ success: function (response) {
465
+ if (response.data) {
466
+ var status = response.data.status;
467
+ if (status) {
468
+ console.log("User added to subscribers list");
469
+ swal.fire({
470
+ title: 'Thanks for subscribing!',
471
+ text: 'Click OK to continue',
472
+ type: 'success',
473
+ timer: 1000
474
+ });
475
+ }
476
+
477
+ }
478
+
479
+ },
480
+ error: function (err) {
481
+ console.log(err);
482
+ }
483
+ }
484
+ );
485
+ } else {
486
+ Swal.fire({
487
+ type: 'error',
488
+ title: 'Invalid Email Address...',
489
+ text: 'Please enter a valid email address!'
490
+ });
491
+ }
492
+
493
+ })
494
+
495
+ };
496
+
497
+ function checkEmail(emailAddress) {
498
+ var pattern = new RegExp(/^(("[\w-+\s]+")|([\w-+]+(?:\.[\w-+]+)*)|("[\w-+\s]+")([\w-+]+(?:\.[\w-+]+)*))(@((?:[\w-+]+\.)*\w[\w-+]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$)|(@\[?((25[0-5]\.|2[0-4][\d]\.|1[\d]{2}\.|[\d]{1,2}\.))((25[0-5]|2[0-4][\d]|1[\d]{2}|[\d]{1,2})\.){2}(25[0-5]|2[0-4][\d]|1[\d]{2}|[\d]{1,2})\]?$)/i);
499
+ return pattern.test(emailAddress);
500
+ }
501
+
502
+ };
503
+
504
+ var instance = new PremiumAddonsNavigation();
505
+
506
+ instance.init();
507
+
508
+ })(jQuery);
admin/includes/admin-helper.php CHANGED
@@ -91,6 +91,9 @@ class Admin_Helper {
91
  add_action( 'wp_ajax_pa_additional_settings', array( $this, 'save_additional_settings' ) );
92
  add_action( 'wp_ajax_pa_get_unused_widgets', array( $this, 'get_unused_widgets' ) );
93
 
 
 
 
94
  add_action( 'wp_ajax_subscribe_newsletter', array( $this, 'subscribe_newsletter' ) );
95
 
96
  add_action( 'pa_before_render_admin_tabs', array( $this, 'render_dashboard_header' ) );
@@ -103,7 +106,7 @@ class Admin_Helper {
103
  if ( false === strpos( $current_page, 'action=elementor' ) ) {
104
  Admin_Notices::get_instance();
105
 
106
- // Beta Tester.
107
  Beta_Testers::get_instance();
108
 
109
  // PA Duplicator.
@@ -136,7 +139,7 @@ class Admin_Helper {
136
  *
137
  * @return array widget_list
138
  */
139
- private static function get_elements_list() {
140
 
141
  if ( null === self::$elements_list ) {
142
 
@@ -686,10 +689,13 @@ class Admin_Helper {
686
  }
687
 
688
  /**
689
- * Get Pro Elements
 
690
  *
691
  * @since 4.5.3
692
  * @access public
 
 
693
  */
694
  public static function get_pro_elements() {
695
 
@@ -708,7 +714,60 @@ class Admin_Helper {
708
  }
709
 
710
  return $pro_elements;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
711
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
712
  }
713
 
714
  /**
@@ -876,6 +935,65 @@ class Admin_Helper {
876
 
877
  }
878
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
879
  /**
880
  * Get PA widget names.
881
  *
91
  add_action( 'wp_ajax_pa_additional_settings', array( $this, 'save_additional_settings' ) );
92
  add_action( 'wp_ajax_pa_get_unused_widgets', array( $this, 'get_unused_widgets' ) );
93
 
94
+ // Register AJAX Hooks for regenerate assets
95
+ // add_action( 'wp_ajax_pa_clear_cached_assets', array( $this, 'clear_cached_assets' ) );
96
+
97
  add_action( 'wp_ajax_subscribe_newsletter', array( $this, 'subscribe_newsletter' ) );
98
 
99
  add_action( 'pa_before_render_admin_tabs', array( $this, 'render_dashboard_header' ) );
106
  if ( false === strpos( $current_page, 'action=elementor' ) ) {
107
  Admin_Notices::get_instance();
108
 
109
+ // Beta tester
110
  Beta_Testers::get_instance();
111
 
112
  // PA Duplicator.
139
  *
140
  * @return array widget_list
141
  */
142
+ public static function get_elements_list() {
143
 
144
  if ( null === self::$elements_list ) {
145
 
689
  }
690
 
691
  /**
692
+ * Get Pro Elements.
693
+ * Return PAPRO Widgets.
694
  *
695
  * @since 4.5.3
696
  * @access public
697
+ *
698
+ * @return array
699
  */
700
  public static function get_pro_elements() {
701
 
714
  }
715
 
716
  return $pro_elements;
717
+ }
718
+
719
+ /**
720
+ * Get PA Free Elements.
721
+ * Return PA Widgets.
722
+ *
723
+ * @since 4.6.1
724
+ * @access public
725
+ *
726
+ * @return array
727
+ */
728
+ public static function get_free_widgets_names() {
729
+
730
+ $elements = self::get_elements_list()['cat-1']['elements'];
731
+
732
+ $pa_elements = array();
733
+
734
+ if ( count( $elements ) ) {
735
+ foreach ( $elements as $elem ) {
736
+ if ( ! isset( $elem['is_pro'] ) && ! isset( $elem['is_global'] ) && isset( $elem['name'] ) ) {
737
+ array_push( $pa_elements, $elem['name'] );
738
+ }
739
+ }
740
+ }
741
 
742
+ return $pa_elements;
743
+ }
744
+
745
+ /**
746
+ * Get Global Elements Switchers.
747
+ * Construct an associative array of addon_switcher => 'yes' pairs
748
+ * Example :
749
+ * + array( 'premium_gradient_switcher' => yes').
750
+ *
751
+ * @since 4.6.1
752
+ * @access public
753
+ *
754
+ * @return array
755
+ */
756
+ public static function get_global_elements_switchers() {
757
+
758
+ $elements = self::get_elements_list()['cat-4'];
759
+
760
+ $global_elems = array();
761
+
762
+ if ( count( $elements['elements'] ) ) {
763
+ foreach ( $elements['elements'] as $elem ) {
764
+ if ( isset( $elem['is_pro'] ) && isset( $elem['is_global'] ) ) {
765
+ $global_elems[ str_replace( '-', '_', $elem['key'] ) . '_switcher' ] = 'yes';
766
+ }
767
+ }
768
+ }
769
+
770
+ return $global_elems;
771
  }
772
 
773
  /**
935
 
936
  }
937
 
938
+ /**
939
+ * Clear Cached Assets.
940
+ * Deletes assets options from DB And
941
+ * deletes assets files from uploads/premium-addons-for-elementor
942
+ * diretory.
943
+ *
944
+ * @access public
945
+ * @since 4.6.1
946
+ */
947
+ public function clear_cached_assets() {
948
+
949
+ check_ajax_referer( 'pa-settings-tab', 'security' );
950
+
951
+ if ( ! current_user_can( 'manage_options' ) ) {
952
+ wp_send_json_error( __( 'You are not allowed to do this action', 'essential-addons-for-elementor-lite' ) );
953
+ }
954
+
955
+ $this->delete_assets_options();
956
+ $this->delete_assets_files();
957
+
958
+ wp_send_json_success( 'Cached Assets Cleared' );
959
+ }
960
+
961
+ /**
962
+ * Delete Assets Options.
963
+ *
964
+ * @access public
965
+ * @since 4.6.1
966
+ */
967
+ public function delete_assets_options() {
968
+
969
+ global $wpdb;
970
+ $wpdb->query( "DELETE FROM $wpdb->options WHERE option_name LIKE '%pa_elements_%' OR option_name LIKE '%pa_edit_%' AND autoload = 'no'" );
971
+ }
972
+
973
+ /**
974
+ * Delete Assets Files.
975
+ *
976
+ * @access public
977
+ * @since 4.6.1
978
+ */
979
+ public function delete_assets_files() {
980
+
981
+ $path = PREMIUM_ASSETS_PATH;
982
+
983
+ if ( ! is_dir( $path ) || ! file_exists( $path ) ) {
984
+ return;
985
+ }
986
+
987
+ foreach ( scandir( $path ) as $file ) {
988
+ if ( $file == '.' || $file == '..' ) {
989
+ continue;
990
+ }
991
+
992
+ unlink( Helper_Functions::get_safe_path( $path . DIRECTORY_SEPARATOR . $file ) );
993
+ }
994
+
995
+ }
996
+
997
  /**
998
  * Get PA widget names.
999
  *
admin/includes/admin-notices.php CHANGED
@@ -1,405 +1,405 @@
1
- <?php
2
- /**
3
- * PA Admin Notices.
4
- */
5
-
6
- namespace PremiumAddons\Admin\Includes;
7
-
8
- use PremiumAddons\Includes\Helper_Functions;
9
-
10
- if ( ! defined( 'ABSPATH' ) ) {
11
- exit();
12
- }
13
-
14
- /**
15
- * Class Admin_Notices
16
- */
17
- class Admin_Notices {
18
-
19
- /**
20
- * Class object
21
- *
22
- * @var instance
23
- */
24
- private static $instance = null;
25
-
26
- /**
27
- * Elementor slug
28
- *
29
- * @var elementor
30
- */
31
- private static $elementor = 'elementor';
32
-
33
- /**
34
- * PAPRO Slug
35
- *
36
- * @var papro
37
- */
38
- private static $papro = 'premium-addons-pro';
39
-
40
- /**
41
- * Notices Keys
42
- *
43
- * @var notices
44
- */
45
- private static $notices = null;
46
-
47
- /**
48
- * Constructor for the class
49
- */
50
- public function __construct() {
51
-
52
- add_action( 'admin_init', array( $this, 'init' ) );
53
-
54
- add_action( 'admin_notices', array( $this, 'admin_notices' ) );
55
-
56
- add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
57
-
58
- add_action( 'wp_ajax_pa_reset_admin_notice', array( $this, 'reset_admin_notice' ) );
59
-
60
- add_action( 'wp_ajax_pa_dismiss_admin_notice', array( $this, 'dismiss_admin_notice' ) );
61
-
62
- self::$notices = array(
63
- 'pa-review',
64
- 'badge_notice',
65
- );
66
-
67
- delete_option( 'woo_notice' );
68
-
69
- }
70
-
71
- /**
72
- * Init
73
- *
74
- * Init required functions
75
- *
76
- * @since 1.0.0
77
- * @access public
78
- */
79
- public function init() {
80
-
81
- $this->handle_review_notice();
82
-
83
- }
84
-
85
- /**
86
- * init notices check functions
87
- */
88
- public function admin_notices() {
89
-
90
- $this->required_plugins_check();
91
-
92
- $cache_key = 'premium_notice_' . PREMIUM_ADDONS_VERSION;
93
-
94
- $response = get_transient( $cache_key );
95
-
96
- $show_review = get_option( 'pa_review_notice' );
97
-
98
- // Make sure Already did was not clicked before.
99
- if ( '1' !== $show_review ) {
100
- if ( false == $response ) {
101
- $this->get_review_notice();
102
- }
103
- }
104
-
105
- $this->get_badge_notice();
106
-
107
- }
108
-
109
- /**
110
- * Handle Review Notice
111
- *
112
- * Checks if review message is dismissed.
113
- *
114
- * @access public
115
- * @return void
116
- */
117
- public function handle_review_notice() {
118
-
119
- if ( ! isset( $_GET['pa_review'] ) ) {
120
- return;
121
- }
122
-
123
- if ( 'opt_out' === $_GET['pa_review'] ) {
124
- check_admin_referer( 'opt_out' );
125
-
126
- update_option( 'pa_review_notice', '1' );
127
- }
128
-
129
- wp_safe_redirect( remove_query_arg( 'pa_review' ) );
130
-
131
- exit;
132
- }
133
-
134
- /**
135
- * Required plugin check
136
- *
137
- * Shows an admin notice when Elementor is missing.
138
- *
139
- * @since 1.0.0
140
- * @access public
141
- */
142
- public function required_plugins_check() {
143
-
144
- $elementor_path = sprintf( '%1$s/%1$s.php', self::$elementor );
145
-
146
- if ( ! defined( 'ELEMENTOR_VERSION' ) ) {
147
-
148
- if ( ! Helper_Functions::is_plugin_installed( $elementor_path ) ) {
149
-
150
- if ( Admin_Helper::check_user_can( 'install_plugins' ) ) {
151
-
152
- $install_url = wp_nonce_url( self_admin_url( sprintf( 'update.php?action=install-plugin&plugin=%s', self::$elementor ) ), 'install-plugin_elementor' );
153
-
154
- $message = sprintf( '<p>%s</p>', __( 'Premium Addons for Elementor is not working because you need to Install Elementor plugin.', 'premium-addons-for-elementor' ) );
155
-
156
- $message .= sprintf( '<p><a href="%s" class="button-primary">%s</a></p>', $install_url, __( 'Install Now', 'premium-addons-for-elementor' ) );
157
-
158
- }
159
- } else {
160
-
161
- if ( Admin_Helper::check_user_can( 'activate_plugins' ) ) {
162
-
163
- $activation_url = wp_nonce_url( 'plugins.php?action=activate&amp;plugin=' . $elementor_path . '&amp;plugin_status=all&amp;paged=1&amp;s', 'activate-plugin_' . $elementor_path );
164
-
165
- $message = '<p>' . __( 'Premium Addons for Elementor is not working because you need to activate Elementor plugin.', 'premium-addons-for-elementor' ) . '</p>';
166
-
167
- $message .= '<p>' . sprintf( '<a href="%s" class="button-primary">%s</a>', $activation_url, __( 'Activate Now', 'premium-addons-for-elementor' ) ) . '</p>';
168
-
169
- }
170
- }
171
- $this->render_admin_notices( $message );
172
- }
173
- }
174
-
175
- /**
176
- * Get Review Text
177
- *
178
- * Gets admin review notice HTML.
179
- *
180
- * @since 2.8.4
181
- * @access public
182
- *
183
- * @param string $review_url plugin page.
184
- * @param string $optout_url redirect url.
185
- */
186
- public function get_review_text( $review_url, $optout_url ) {
187
-
188
- $notice = sprintf(
189
- '<p>' . __( 'Can we take only 2 minutes of your time? We would be really grateful it if you give ', 'premium-addons-for-elementor' ) .
190
- '<b>' . __( 'Premium Addons for Elementor', 'premium-addons-for-elementor' ) . '</b> a 5 Stars Rating on WordPress.org. By speading the love, we can create even greater free stuff in the future!</p>
191
- <div>
192
- <a class="button button-primary" href="%s" target="_blank"><span>' . __( 'Sure, leave a Review', 'premium-addons-for-elementor' ) . '</span></a>
193
- <a class="button" href="%2$s"><span>' . __( 'I Already Did', 'premium-addons-for-elementor' ) . '</span></a>
194
- <a class="button button-secondary pa-notice-reset"><span>' . __( 'Maybe Later', 'premium-addons-for-elementor' ) . '</span></a>
195
- </div>',
196
- $review_url,
197
- $optout_url
198
- );
199
-
200
- return $notice;
201
- }
202
-
203
- /**
204
- * Checks if review admin notice is dismissed
205
- *
206
- * @since 2.6.8
207
- * @return void
208
- */
209
- public function get_review_notice() {
210
-
211
- $review_url = 'https://wordpress.org/support/plugin/premium-addons-for-elementor/reviews/?filter=5';
212
-
213
- $optout_url = wp_nonce_url( add_query_arg( 'pa_review', 'opt_out' ), 'opt_out' );
214
- ?>
215
-
216
- <div class="error pa-notice-wrap pa-review-notice" data-notice="pa-review">
217
- <div class="pa-img-wrap">
218
- <img src="<?php echo esc_url( PREMIUM_ADDONS_URL . 'admin/images/pa-logo-symbol.png' ); ?>">
219
- </div>
220
- <div class="pa-text-wrap">
221
- <?php echo wp_kses_post( $this->get_review_text( $review_url, $optout_url ) ); ?>
222
- </div>
223
- <div class="pa-notice-close">
224
- <a href="<?php echo esc_url( $optout_url ); ?>"><span class="dashicons dashicons-dismiss"></span></a>
225
- </div>
226
- </div>
227
-
228
- <?php
229
-
230
- }
231
-
232
- /**
233
- *
234
- * Shows admin notice for Premium Badge Addon.
235
- *
236
- * @since 4.8.8
237
- * @access public
238
- *
239
- * @return void
240
- */
241
- public function get_badge_notice() {
242
-
243
- $badge_notice = get_option( 'badge_notice' );
244
-
245
- if ( '1' === $badge_notice ) {
246
- return;
247
- }
248
-
249
- $notice_url = Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-badge-global-addon', 'badge-notification', 'wp-dash', 'badge' );
250
-
251
- ?>
252
-
253
- <div class="error pa-notice-wrap pa-new-feature-notice">
254
- <div class="pa-img-wrap">
255
- <img src="<?php echo PREMIUM_ADDONS_URL . 'admin/images/pa-logo-symbol.png'; ?>">
256
- </div>
257
- <div class="pa-text-wrap">
258
- <p>
259
- <strong><?php echo __( 'Premium Badge Global Addon', 'premium-addons-for-elemetor' ); ?></strong>
260
- <?php echo sprintf( __( 'is now available in Premium Addons Pro. <a href="%s" target="_blank">Check it out now!</a>', 'premium-addons-for-elementor' ), $notice_url ); ?>
261
- </p>
262
- </div>
263
- <div class="pa-notice-close" data-notice="badge">
264
- <span class="dashicons dashicons-dismiss"></span>
265
- </div>
266
- </div>
267
-
268
- <?php
269
- }
270
-
271
-
272
-
273
- /**
274
- * Renders an admin notice error message
275
- *
276
- * @since 1.0.0
277
- * @access private
278
- *
279
- * @param string $message notice text.
280
- * @param string $class notice class.
281
- * @param string $handle notice handle.
282
- *
283
- * @return void
284
- */
285
- private function render_admin_notices( $message, $class = '', $handle = '' ) {
286
- ?>
287
- <div class="error pa-new-feature-notice <?php echo esc_attr( $class ); ?>" data-notice="<?php echo esc_attr( $handle ); ?>">
288
- <?php echo wp_kses_post( $message ); ?>
289
- </div>
290
- <?php
291
- }
292
-
293
- /**
294
- * Register admin scripts
295
- *
296
- * @since 3.2.8
297
- * @access public
298
- */
299
- public function admin_enqueue_scripts() {
300
-
301
- wp_enqueue_script(
302
- 'pa-notice',
303
- PREMIUM_ADDONS_URL . 'admin/assets/js/pa-notice.js',
304
- array( 'jquery' ),
305
- PREMIUM_ADDONS_VERSION,
306
- true
307
- );
308
-
309
- wp_localize_script(
310
- 'pa-notice',
311
- 'PaNoticeSettings',
312
- array(
313
- 'ajaxurl' => esc_url( admin_url( 'admin-ajax.php' ) ),
314
- 'nonce' => wp_create_nonce( 'pa-notice-nonce' ),
315
- )
316
- );
317
-
318
- }
319
-
320
- /**
321
- * Set transient for admin notice
322
- *
323
- * @since 3.2.8
324
- * @access public
325
- *
326
- * @return void
327
- */
328
- public function reset_admin_notice() {
329
-
330
- check_ajax_referer( 'pa-notice-nonce', 'nonce' );
331
-
332
- if ( ! Admin_Helper::check_user_can( 'manage_options' ) ) {
333
- wp_send_json_error();
334
- }
335
-
336
- $key = isset( $_POST['notice'] ) ? sanitize_text_field( wp_unslash( $_POST['notice'] ) ) : '';
337
-
338
- if ( ! empty( $key ) && in_array( $key, self::$notices, true ) ) {
339
-
340
- $cache_key = 'premium_notice_' . PREMIUM_ADDONS_VERSION;
341
-
342
- set_transient( $cache_key, true, WEEK_IN_SECONDS );
343
-
344
- wp_send_json_success();
345
-
346
- } else {
347
-
348
- wp_send_json_error();
349
-
350
- }
351
-
352
- }
353
-
354
- /**
355
- * Dismiss admin notice
356
- *
357
- * @since 3.11.7
358
- * @access public
359
- *
360
- * @return void
361
- */
362
- public function dismiss_admin_notice() {
363
-
364
- check_ajax_referer( 'pa-notice-nonce', 'nonce' );
365
-
366
- if ( ! current_user_can( 'manage_options' ) ) {
367
- wp_send_json_error();
368
- }
369
-
370
- $key = isset( $_POST['notice'] ) ? sanitize_text_field( wp_unslash( $_POST['notice'] ) ) : '';
371
-
372
- if ( ! empty( $key ) && in_array( $key, self::$notices, true ) ) {
373
-
374
- update_option( $key, '1' );
375
-
376
- wp_send_json_success();
377
-
378
- } else {
379
-
380
- wp_send_json_error();
381
-
382
- }
383
-
384
- }
385
-
386
- /**
387
- * Creates and returns an instance of the class
388
- *
389
- * @since 2.8.4
390
- * @access public
391
- *
392
- * @return object
393
- */
394
- public static function get_instance() {
395
-
396
- if ( ! isset( self::$instance ) ) {
397
-
398
- self::$instance = new self();
399
-
400
- }
401
-
402
- return self::$instance;
403
- }
404
-
405
- }
1
+ <?php
2
+ /**
3
+ * PA Admin Notices.
4
+ */
5
+
6
+ namespace PremiumAddons\Admin\Includes;
7
+
8
+ use PremiumAddons\Includes\Helper_Functions;
9
+
10
+ if ( ! defined( 'ABSPATH' ) ) {
11
+ exit();
12
+ }
13
+
14
+ /**
15
+ * Class Admin_Notices
16
+ */
17
+ class Admin_Notices {
18
+
19
+ /**
20
+ * Class object
21
+ *
22
+ * @var instance
23
+ */
24
+ private static $instance = null;
25
+
26
+ /**
27
+ * Elementor slug
28
+ *
29
+ * @var elementor
30
+ */
31
+ private static $elementor = 'elementor';
32
+
33
+ /**
34
+ * PAPRO Slug
35
+ *
36
+ * @var papro
37
+ */
38
+ private static $papro = 'premium-addons-pro';
39
+
40
+ /**
41
+ * Notices Keys
42
+ *
43
+ * @var notices
44
+ */
45
+ private static $notices = null;
46
+
47
+ /**
48
+ * Constructor for the class
49
+ */
50
+ public function __construct() {
51
+
52
+ add_action( 'admin_init', array( $this, 'init' ) );
53
+
54
+ add_action( 'admin_notices', array( $this, 'admin_notices' ) );
55
+
56
+ add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
57
+
58
+ add_action( 'wp_ajax_pa_reset_admin_notice', array( $this, 'reset_admin_notice' ) );
59
+
60
+ add_action( 'wp_ajax_pa_dismiss_admin_notice', array( $this, 'dismiss_admin_notice' ) );
61
+
62
+ self::$notices = array(
63
+ 'pa-review',
64
+ 'badge_notice',
65
+ );
66
+
67
+ delete_option( 'woo_notice' );
68
+
69
+ }
70
+
71
+ /**
72
+ * Init
73
+ *
74
+ * Init required functions
75
+ *
76
+ * @since 1.0.0
77
+ * @access public
78
+ */
79
+ public function init() {
80
+
81
+ $this->handle_review_notice();
82
+
83
+ }
84
+
85
+ /**
86
+ * init notices check functions
87
+ */
88
+ public function admin_notices() {
89
+
90
+ $this->required_plugins_check();
91
+
92
+ $cache_key = 'premium_notice_' . PREMIUM_ADDONS_VERSION;
93
+
94
+ $response = get_transient( $cache_key );
95
+
96
+ $show_review = get_option( 'pa_review_notice' );
97
+
98
+ // Make sure Already did was not clicked before.
99
+ if ( '1' !== $show_review ) {
100
+ if ( false == $response ) {
101
+ $this->get_review_notice();
102
+ }
103
+ }
104
+
105
+ $this->get_badge_notice();
106
+
107
+ }
108
+
109
+ /**
110
+ * Handle Review Notice
111
+ *
112
+ * Checks if review message is dismissed.
113
+ *
114
+ * @access public
115
+ * @return void
116
+ */
117
+ public function handle_review_notice() {
118
+
119
+ if ( ! isset( $_GET['pa_review'] ) ) {
120
+ return;
121
+ }
122
+
123
+ if ( 'opt_out' === $_GET['pa_review'] ) {
124
+ check_admin_referer( 'opt_out' );
125
+
126
+ update_option( 'pa_review_notice', '1' );
127
+ }
128
+
129
+ wp_safe_redirect( remove_query_arg( 'pa_review' ) );
130
+
131
+ exit;
132
+ }
133
+
134
+ /**
135
+ * Required plugin check
136
+ *
137
+ * Shows an admin notice when Elementor is missing.
138
+ *
139
+ * @since 1.0.0
140
+ * @access public
141
+ */
142
+ public function required_plugins_check() {
143
+
144
+ $elementor_path = sprintf( '%1$s/%1$s.php', self::$elementor );
145
+
146
+ if ( ! defined( 'ELEMENTOR_VERSION' ) ) {
147
+
148
+ if ( ! Helper_Functions::is_plugin_installed( $elementor_path ) ) {
149
+
150
+ if ( Admin_Helper::check_user_can( 'install_plugins' ) ) {
151
+
152
+ $install_url = wp_nonce_url( self_admin_url( sprintf( 'update.php?action=install-plugin&plugin=%s', self::$elementor ) ), 'install-plugin_elementor' );
153
+
154
+ $message = sprintf( '<p>%s</p>', __( 'Premium Addons for Elementor is not working because you need to Install Elementor plugin.', 'premium-addons-for-elementor' ) );
155
+
156
+ $message .= sprintf( '<p><a href="%s" class="button-primary">%s</a></p>', $install_url, __( 'Install Now', 'premium-addons-for-elementor' ) );
157
+
158
+ }
159
+ } else {
160
+
161
+ if ( Admin_Helper::check_user_can( 'activate_plugins' ) ) {
162
+
163
+ $activation_url = wp_nonce_url( 'plugins.php?action=activate&amp;plugin=' . $elementor_path . '&amp;plugin_status=all&amp;paged=1&amp;s', 'activate-plugin_' . $elementor_path );
164
+
165
+ $message = '<p>' . __( 'Premium Addons for Elementor is not working because you need to activate Elementor plugin.', 'premium-addons-for-elementor' ) . '</p>';
166
+
167
+ $message .= '<p>' . sprintf( '<a href="%s" class="button-primary">%s</a>', $activation_url, __( 'Activate Now', 'premium-addons-for-elementor' ) ) . '</p>';
168
+
169
+ }
170
+ }
171
+ $this->render_admin_notices( $message );
172
+ }
173
+ }
174
+
175
+ /**
176
+ * Get Review Text
177
+ *
178
+ * Gets admin review notice HTML.
179
+ *
180
+ * @since 2.8.4
181
+ * @access public
182
+ *
183
+ * @param string $review_url plugin page.
184
+ * @param string $optout_url redirect url.
185
+ */
186
+ public function get_review_text( $review_url, $optout_url ) {
187
+
188
+ $notice = sprintf(
189
+ '<p>' . __( 'Can we take only 2 minutes of your time? We would be really grateful it if you give ', 'premium-addons-for-elementor' ) .
190
+ '<b>' . __( 'Premium Addons for Elementor', 'premium-addons-for-elementor' ) . '</b> a 5 Stars Rating on WordPress.org. By speading the love, we can create even greater free stuff in the future!</p>
191
+ <div>
192
+ <a class="button button-primary" href="%s" target="_blank"><span>' . __( 'Sure, leave a Review', 'premium-addons-for-elementor' ) . '</span></a>
193
+ <a class="button" href="%2$s"><span>' . __( 'I Already Did', 'premium-addons-for-elementor' ) . '</span></a>
194
+ <a class="button button-secondary pa-notice-reset"><span>' . __( 'Maybe Later', 'premium-addons-for-elementor' ) . '</span></a>
195
+ </div>',
196
+ $review_url,
197
+ $optout_url
198
+ );
199
+
200
+ return $notice;
201
+ }
202
+
203
+ /**
204
+ * Checks if review admin notice is dismissed
205
+ *
206
+ * @since 2.6.8
207
+ * @return void
208
+ */
209
+ public function get_review_notice() {
210
+
211
+ $review_url = 'https://wordpress.org/support/plugin/premium-addons-for-elementor/reviews/?filter=5';
212
+
213
+ $optout_url = wp_nonce_url( add_query_arg( 'pa_review', 'opt_out' ), 'opt_out' );
214
+ ?>
215
+
216
+ <div class="error pa-notice-wrap pa-review-notice" data-notice="pa-review">
217
+ <div class="pa-img-wrap">
218
+ <img src="<?php echo esc_url( PREMIUM_ADDONS_URL . 'admin/images/pa-logo-symbol.png' ); ?>">
219
+ </div>
220
+ <div class="pa-text-wrap">
221
+ <?php echo wp_kses_post( $this->get_review_text( $review_url, $optout_url ) ); ?>
222
+ </div>
223
+ <div class="pa-notice-close">
224
+ <a href="<?php echo esc_url( $optout_url ); ?>"><span class="dashicons dashicons-dismiss"></span></a>
225
+ </div>
226
+ </div>
227
+
228
+ <?php
229
+
230
+ }
231
+
232
+ /**
233
+ *
234
+ * Shows admin notice for Premium Badge Addon.
235
+ *
236
+ * @since 4.8.8
237
+ * @access public
238
+ *
239
+ * @return void
240
+ */
241
+ public function get_badge_notice() {
242
+
243
+ $badge_notice = get_option( 'badge_notice' );
244
+
245
+ if ( '1' === $badge_notice ) {
246
+ return;
247
+ }
248
+
249
+ $notice_url = Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-badge-global-addon', 'badge-notification', 'wp-dash', 'badge' );
250
+
251
+ ?>
252
+
253
+ <div class="error pa-notice-wrap pa-new-feature-notice">
254
+ <div class="pa-img-wrap">
255
+ <img src="<?php echo PREMIUM_ADDONS_URL . 'admin/images/pa-logo-symbol.png'; ?>">
256
+ </div>
257
+ <div class="pa-text-wrap">
258
+ <p>
259
+ <strong><?php echo __( 'Premium Badge Global Addon', 'premium-addons-for-elemetor' ); ?></strong>
260
+ <?php echo sprintf( __( 'is now available in Premium Addons Pro. <a href="%s" target="_blank">Check it out now!</a>', 'premium-addons-for-elementor' ), $notice_url ); ?>
261
+ </p>
262
+ </div>
263
+ <div class="pa-notice-close" data-notice="badge">
264
+ <span class="dashicons dashicons-dismiss"></span>
265
+ </div>
266
+ </div>
267
+
268
+ <?php
269
+ }
270
+
271
+
272
+
273
+ /**
274
+ * Renders an admin notice error message
275
+ *
276
+ * @since 1.0.0
277
+ * @access private
278
+ *
279
+ * @param string $message notice text.
280
+ * @param string $class notice class.
281
+ * @param string $handle notice handle.
282
+ *
283
+ * @return void
284
+ */
285
+ private function render_admin_notices( $message, $class = '', $handle = '' ) {
286
+ ?>
287
+ <div class="error pa-new-feature-notice <?php echo esc_attr( $class ); ?>" data-notice="<?php echo esc_attr( $handle ); ?>">
288
+ <?php echo wp_kses_post( $message ); ?>
289
+ </div>
290
+ <?php
291
+ }
292
+
293
+ /**
294
+ * Register admin scripts
295
+ *
296
+ * @since 3.2.8
297
+ * @access public
298
+ */
299
+ public function admin_enqueue_scripts() {
300
+
301
+ wp_enqueue_script(
302
+ 'pa-notice',
303
+ PREMIUM_ADDONS_URL . 'admin/assets/js/pa-notice.js',
304
+ array( 'jquery' ),
305
+ PREMIUM_ADDONS_VERSION,
306
+ true
307
+ );
308
+
309
+ wp_localize_script(
310
+ 'pa-notice',
311
+ 'PaNoticeSettings',
312
+ array(
313
+ 'ajaxurl' => esc_url( admin_url( 'admin-ajax.php' ) ),
314
+ 'nonce' => wp_create_nonce( 'pa-notice-nonce' ),
315
+ )
316
+ );
317
+
318
+ }
319
+
320
+ /**
321
+ * Set transient for admin notice
322
+ *
323
+ * @since 3.2.8
324
+ * @access public
325
+ *
326
+ * @return void
327
+ */
328
+ public function reset_admin_notice() {
329
+
330
+ check_ajax_referer( 'pa-notice-nonce', 'nonce' );
331
+
332
+ if ( ! Admin_Helper::check_user_can( 'manage_options' ) ) {
333
+ wp_send_json_error();
334
+ }
335
+
336
+ $key = isset( $_POST['notice'] ) ? sanitize_text_field( wp_unslash( $_POST['notice'] ) ) : '';
337
+
338
+ if ( ! empty( $key ) && in_array( $key, self::$notices, true ) ) {
339
+
340
+ $cache_key = 'premium_notice_' . PREMIUM_ADDONS_VERSION;
341
+
342
+ set_transient( $cache_key, true, WEEK_IN_SECONDS );
343
+
344
+ wp_send_json_success();
345
+
346
+ } else {
347
+
348
+ wp_send_json_error();
349
+
350
+ }
351
+
352
+ }
353
+
354
+ /**
355
+ * Dismiss admin notice
356
+ *
357
+ * @since 3.11.7
358
+ * @access public
359
+ *
360
+ * @return void
361
+ */
362
+ public function dismiss_admin_notice() {
363
+
364
+ check_ajax_referer( 'pa-notice-nonce', 'nonce' );
365
+
366
+ if ( ! current_user_can( 'manage_options' ) ) {
367
+ wp_send_json_error();
368
+ }
369
+
370
+ $key = isset( $_POST['notice'] ) ? sanitize_text_field( wp_unslash( $_POST['notice'] ) ) : '';
371
+
372
+ if ( ! empty( $key ) && in_array( $key, self::$notices, true ) ) {
373
+
374
+ update_option( $key, '1' );
375
+
376
+ wp_send_json_success();
377
+
378
+ } else {
379
+
380
+ wp_send_json_error();
381
+
382
+ }
383
+
384
+ }
385
+
386
+ /**
387
+ * Creates and returns an instance of the class
388
+ *
389
+ * @since 2.8.4
390
+ * @access public
391
+ *
392
+ * @return object
393
+ */
394
+ public static function get_instance() {
395
+
396
+ if ( ! isset( self::$instance ) ) {
397
+
398
+ self::$instance = new self();
399
+
400
+ }
401
+
402
+ return self::$instance;
403
+ }
404
+
405
+ }
admin/includes/beta-testers.php CHANGED
@@ -43,7 +43,7 @@ class Beta_Testers {
43
 
44
  $this->transient_key = md5( 'premium_addons_beta_response_key' );
45
 
46
- add_filter( 'pre_set_site_transient_update_plugins', array( $this, 'compare_version' ) );
47
 
48
  }
49
 
43
 
44
  $this->transient_key = md5( 'premium_addons_beta_response_key' );
45
 
46
+ add_filter( 'pre_set_site_transient_update_plugins', array( $this, 'compare_version' ) );
47
 
48
  }
49
 
admin/includes/elements.php CHANGED
@@ -1,1109 +1,1112 @@
1
- <?php
2
- /**
3
- * PA Elements.
4
- */
5
-
6
- use PremiumAddons\Includes\Helper_Functions;
7
-
8
- $prefix = Helper_Functions::get_prefix();
9
-
10
- $elements = array(
11
- 'cat-1' => array(
12
- 'icon' => 'all',
13
- 'title' => __( 'All Widgets', 'premium-addons-for-elementor' ),
14
- 'elements' => array(
15
- array(
16
- 'key' => 'premium-lottie-widget',
17
- 'name' => 'premium-lottie',
18
- 'title' => __( 'Lottie Animations', 'premium-addons-for-elementor' ),
19
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-lottie-animations-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
20
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/lottie-animations-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
21
- 'tutorial' => 'https://www.youtube.com/watch?v=0QWzUpF57dw',
22
- ),
23
- array(
24
- 'key' => 'premium-carousel',
25
- 'name' => 'premium-carousel-widget',
26
- 'title' => __( 'Carousel', 'premium-addons-for-elementor' ),
27
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/carousel-widget-for-elementor-page-builder', 'settings-page', 'wp-dash', 'dashboard' ),
28
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/carousel/', 'settings-page', 'wp-dash', 'dashboard' ),
29
- 'tutorial' => 'https://www.youtube.com/watch?v=ZMgprLKvq24',
30
- ),
31
- array(
32
- 'key' => 'premium-blog',
33
- 'name' => 'premium-addon-blog',
34
- 'title' => __( 'Blog', 'premium-addons-for-elementor' ),
35
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/blog-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
36
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/blog/', 'settings-page', 'wp-dash', 'dashboard' ),
37
- ),
38
- array(
39
- 'key' => 'premium-maps',
40
- 'name' => 'premium-addon-maps',
41
- 'title' => __( 'Google Maps', 'premium-addons-for-elementor' ),
42
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/google-maps-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
43
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/google-maps/', 'settings-page', 'wp-dash', 'dashboard' ),
44
- 'tutorial' => 'https://www.youtube.com/watch?v=z4taEeCY77Q',
45
- ),
46
- array(
47
- 'key' => 'premium-person',
48
- 'name' => 'premium-addon-person',
49
- 'title' => __( 'Team Members', 'premium-addons-for-elementor' ),
50
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/persons-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
51
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/persons-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
52
- ),
53
- array(
54
- 'key' => 'premium-tabs',
55
- 'name' => 'premium-addon-tabs',
56
- 'title' => __( 'Tabs', 'premium-addons-for-elementor' ),
57
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-tabs-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
58
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/tabs-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
59
- 'is_pro' => true,
60
- 'icon' => 'pa-pro-tabs',
61
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-tabs-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
62
- ),
63
- array(
64
- 'key' => 'premium-content-toggle',
65
- 'name' => 'premium-addon-content-toggle',
66
- 'title' => __( 'Content Switcher', 'premium-addons-for-elementor' ),
67
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/content-switcher-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
68
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-content-switcher/', 'settings-page', 'wp-dash', 'dashboard' ),
69
- 'is_pro' => true,
70
- 'icon' => 'pa-pro-content-switcher',
71
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/content-switcher-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
72
- ),
73
- array(
74
- 'key' => 'premium-fancytext',
75
- 'name' => 'premium-addon-fancy-text',
76
- 'title' => __( 'Fancy Text', 'premium-addons-for-elementor' ),
77
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/fancy-text-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
78
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/fancy-text-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
79
- ),
80
- array(
81
- 'key' => 'premium-title',
82
- 'name' => 'premium-addon-title',
83
- 'title' => __( 'Heading', 'premium-addons-for-elementor' ),
84
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/heading-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
85
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/heading-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
86
- ),
87
- array(
88
- 'key' => 'premium-dual-header',
89
- 'name' => 'premium-addon-dual-header',
90
- 'title' => __( 'Dual Heading', 'premium-addons-for-elementor' ),
91
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/dual-header-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
92
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/dual-heading-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
93
- ),
94
- array(
95
- 'key' => 'premium-divider',
96
- 'name' => 'premium-divider',
97
- 'title' => __( 'Divider', 'premium-addons-for-elementor' ),
98
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/divider-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
99
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/divider-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
100
- 'is_pro' => true,
101
- 'icon' => 'pa-pro-separator',
102
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/divider-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
103
- ),
104
- array(
105
- 'key' => 'premium-grid',
106
- 'name' => 'premium-img-gallery',
107
- 'title' => __( 'Media Grid', 'premium-addons-for-elementor' ),
108
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/grid-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
109
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/grid/', 'settings-page', 'wp-dash', 'dashboard' ),
110
- ),
111
- array(
112
- 'key' => 'premium-image-scroll',
113
- 'name' => 'premium-image-scroll',
114
- 'title' => __( 'Image Scroll', 'premium-addons-for-elementor' ),
115
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-image-scroll-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
116
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-scroll-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
117
- ),
118
- array(
119
- 'key' => 'premium-image-separator',
120
- 'name' => 'premium-addon-image-separator',
121
- 'title' => __( 'Image Separator', 'premium-addons-for-elementor' ),
122
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-separator-widget-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
123
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-separator-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
124
- ),
125
- array(
126
- 'key' => 'premium-image-comparison',
127
- 'name' => 'premium-addon-image-comparison',
128
- 'title' => __( 'Image Comparison', 'premium-addons-for-elementor' ),
129
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-comparison-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
130
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-image-comparison-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
131
- 'is_pro' => true,
132
- 'icon' => 'pa-pro-image-comparison',
133
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-comparison-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
134
- ),
135
- array(
136
- 'key' => 'premium-image-hotspots',
137
- 'name' => 'premium-addon-image-hotspots',
138
- 'title' => __( 'Image Hotspots', 'premium-addons-for-elementor' ),
139
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-hotspots-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
140
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-hotspots-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
141
- 'is_pro' => true,
142
- 'icon' => 'pa-pro-hot-spot',
143
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-hotspots-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
144
- ),
145
- array(
146
- 'key' => 'premium-img-layers',
147
- 'name' => 'premium-img-layers-addon',
148
- 'title' => __( 'Image Layers', 'premium-addons-for-elementor' ),
149
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-layers-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
150
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/image-layers/', 'settings-page', 'wp-dash', 'dashboard' ),
151
- 'tutorial' => 'https://www.youtube.com/watch?v=D3INxWw_jKI',
152
- 'is_pro' => true,
153
- 'icon' => 'pa-pro-image-layers',
154
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-layers-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
155
- ),
156
- array(
157
- 'key' => 'premium-image-accordion',
158
- 'name' => 'premium-image-accordion',
159
- 'title' => __( 'Image Accordion', 'premium-addons-for-elementor' ),
160
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-image-accordion-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
161
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-accordion-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
162
- 'is_pro' => true,
163
- 'icon' => 'pa-pro-image-accordion',
164
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-image-accordion-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
165
- ),
166
- array(
167
- 'key' => 'premium-videobox',
168
- 'name' => 'premium-addon-video-box',
169
- 'title' => __( 'Video Box', 'premium-addons-for-elementor' ),
170
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/video-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
171
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/video-box/', 'settings-page', 'wp-dash', 'dashboard' ),
172
- ),
173
- array(
174
- 'key' => 'premium-hscroll',
175
- 'name' => 'premium-hscroll',
176
- 'title' => __( 'Horizontal Scroll', 'premium-addons-for-elementor' ),
177
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-horizontal-scroll-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
178
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/horizontal-scroll/', 'settings-page', 'wp-dash', 'dashboard' ),
179
- 'tutorial' => 'https://www.youtube.com/watch?v=4HqT_3s-ZXg',
180
- 'is_pro' => true,
181
- 'icon' => 'pa-pro-horizontal-scroll',
182
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-horizontal-scroll-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
183
- ),
184
- array(
185
- 'key' => 'premium-vscroll',
186
- 'name' => 'premium-vscroll',
187
- 'title' => __( 'Vertical Scroll', 'premium-addons-for-elementor' ),
188
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/vertical-scroll-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
189
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/vertical-scroll-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
190
- 'tutorial' => 'https://www.youtube.com/watch?v=MuLaIn1QXfQ',
191
- ),
192
- array(
193
- 'key' => 'premium-color-transition',
194
- 'name' => 'premium-color-transition',
195
- 'title' => __( 'Background Transition', 'premium-addons-for-elementor' ),
196
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-background-transition-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
197
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/background-transition-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
198
- 'is_pro' => true,
199
- 'icon' => 'pa-pro-color-transition',
200
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-background-transition-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
201
- ),
202
- array(
203
- 'key' => 'premium-multi-scroll',
204
- 'name' => 'premium-multi-scroll',
205
- 'title' => __( 'Multi Scroll', 'premium-addons-for-elementor' ),
206
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/multi-scroll-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
207
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/multi-scroll-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
208
- 'tutorial' => 'https://www.youtube.com/watch?v=IzYnD6oDYXw',
209
- 'is_pro' => true,
210
- 'icon' => 'pa-pro-multi-scroll',
211
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/multi-scroll-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
212
- ),
213
- array(
214
- 'key' => 'premium-lottie',
215
- 'title' => __( 'Lottie Animations', 'premium-addons-for-elementor' ),
216
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-lottie-animations-section-addon/', 'settings-page', 'wp-dash', 'dashboard' ),
217
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/lottie-background/', 'settings-page', 'wp-dash', 'dashboard' ),
218
- 'tutorial' => 'https://www.youtube.com/watch?v=KVrenWNEdkY',
219
- 'is_pro' => true,
220
- 'is_global' => true,
221
- ),
222
- array(
223
- 'key' => 'premium-parallax',
224
- 'title' => __( 'Parallax', 'premium-addons-for-elementor' ),
225
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/parallax-section-addon-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
226
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/parallax-section-addon-tutorial-2/', 'settings-page', 'wp-dash', 'dashboard' ),
227
- 'tutorial' => 'https://www.youtube.com/watch?v=hkMNjxLoZ2w',
228
- 'is_pro' => true,
229
- 'is_global' => true,
230
- ),
231
- array(
232
- 'key' => 'premium-particles',
233
- 'title' => __( 'Particles', 'premium-addons-for-elementor' ),
234
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/particles-section-addon-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
235
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/particles/', 'settings-page', 'wp-dash', 'dashboard' ),
236
- 'tutorial' => 'https://www.youtube.com/watch?v=bPmWKv4VWrI',
237
- 'is_pro' => true,
238
- 'is_global' => true,
239
- ),
240
- array(
241
- 'key' => 'premium-gradient',
242
- 'title' => __( 'Animated Gradient', 'premium-addons-for-elementor' ),
243
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/animated-section-gradients-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
244
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/animated-gradient-section-addon-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
245
- 'tutorial' => 'https://www.youtube.com/watch?v=IL4USvwR6K4',
246
- 'is_pro' => true,
247
- 'is_global' => true,
248
- ),
249
- array(
250
- 'key' => 'premium-kenburns',
251
- 'title' => __( 'Animated Ken Burns', 'premium-addons-for-elementor' ),
252
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/ken-burns-section-addon-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
253
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/ken-burns-section-addon-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
254
- 'tutorial' => 'https://www.youtube.com/watch?v=DUNFjWphZfs',
255
- 'is_pro' => true,
256
- 'is_global' => true,
257
- ),
258
- array(
259
- 'key' => 'premium-blob',
260
- 'title' => __( 'Blob Generator', 'premium-addons-for-elementor' ),
261
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-animated-blob-generator/', 'settings-page', 'wp-dash', 'dashboard' ),
262
- 'is_pro' => true,
263
- 'is_global' => true,
264
- ),
265
- array(
266
- 'key' => 'premium-modalbox',
267
- 'name' => 'premium-addon-modal-box',
268
- 'title' => __( 'Modal Box', 'premium-addons-for-elementor' ),
269
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/modal-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
270
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/modal-box/', 'settings-page', 'wp-dash', 'dashboard' ),
271
- 'tutorial' => 'https://www.youtube.com/watch?v=3lLxSyf2nyk',
272
- ),
273
- array(
274
- 'key' => 'premium-notbar',
275
- 'name' => 'premium-notbar',
276
- 'title' => __( 'Alert Box', 'premium-addons-for-elementor' ),
277
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/alert-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
278
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/alert-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
279
- 'is_pro' => true,
280
- 'icon' => 'pa-pro-notification-bar',
281
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/alert-box-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
282
- ),
283
- array(
284
- 'key' => 'premium-magic-section',
285
- 'name' => 'premium-addon-magic-section',
286
- 'title' => __( 'Magic Section', 'premium-addons-for-elementor' ),
287
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/magic-section-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
288
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/magic-section-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
289
- 'is_pro' => true,
290
- 'icon' => 'pa-pro-magic-section',
291
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/magic-section-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
292
- ),
293
- array(
294
- 'key' => 'premium-prev-img',
295
- 'name' => 'premium-addon-preview-image',
296
- 'title' => __( 'Preview Window', 'premium-addons-for-elementor' ),
297
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/preview-window-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
298
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/preview-window-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
299
- 'tutorial' => 'https://www.youtube.com/watch?v=EmptjFjrc4E',
300
- 'is_pro' => true,
301
- 'icon' => 'pa-pro-preview-window',
302
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/preview-window-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
303
- ),
304
- array(
305
- 'key' => 'premium-testimonials',
306
- 'name' => 'premium-addon-testimonials',
307
- 'title' => __( 'Testimonials', 'premium-addons-for-elementor' ),
308
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/testimonials-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
309
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/testimonials-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
310
- ),
311
- array(
312
- 'key' => 'premium-facebook-reviews',
313
- 'name' => 'premium-facebook-reviews',
314
- 'title' => __( 'Facebook Reviews', 'premium-addons-for-elementor' ),
315
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/facebook-reviews-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
316
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/facebook-reviews/', 'settings-page', 'wp-dash', 'dashboard' ),
317
- 'tutorial' => 'https://www.youtube.com/watch?v=zl-OFo3IFd8',
318
- 'is_pro' => true,
319
- 'icon' => 'pa-pro-facebook-reviews',
320
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/facebook-reviews-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
321
- ),
322
- array(
323
- 'key' => 'premium-google-reviews',
324
- 'name' => 'premium-google-reviews',
325
- 'title' => __( 'Google Reviews', 'premium-addons-for-elementor' ),
326
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/google-reviews-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
327
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/google-reviews/', 'settings-page', 'wp-dash', 'dashboard' ),
328
- 'tutorial' => 'https://www.youtube.com/watch?v=Z0EeGyD34Zk',
329
- 'is_pro' => true,
330
- 'icon' => 'pa-pro-google-reviews',
331
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/google-reviews-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
332
- ),
333
- array(
334
- 'key' => 'premium-yelp-reviews',
335
- 'name' => 'premium-yelp-reviews',
336
- 'title' => __( 'Yelp Reviews', 'premium-addons-for-elementor' ),
337
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-yelp-reviews-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
338
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/yelp-reviews/', 'settings-page', 'wp-dash', 'dashboard' ),
339
- 'tutorial' => 'https://www.youtube.com/watch?v=5T-MveVFvns',
340
- 'is_pro' => true,
341
- 'icon' => 'pa-pro-yelp-reviews',
342
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-yelp-reviews-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
343
- ),
344
- array(
345
- 'key' => 'premium-trustpilot-reviews',
346
- 'name' => 'premium-trustpilot-reviews',
347
- 'title' => __( 'Trustpilot Reviews', 'premium-addons-for-elementor' ),
348
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-trustpilot-reviews-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
349
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/elementor-trustpilot-reviews-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
350
- 'is_pro' => true,
351
- 'is_new' => true,
352
- 'icon' => 'pa-pro-trust-reviews',
353
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-trustpilot-reviews-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
354
- ),
355
- array(
356
- 'key' => 'premium-countdown',
357
- 'name' => 'premium-countdown-timer',
358
- 'title' => __( 'Countdown', 'premium-addons-for-elementor' ),
359
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/countdown-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
360
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/countdown-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
361
- ),
362
- array(
363
- 'key' => 'premium-banner',
364
- 'name' => 'premium-addon-banner',
365
- 'title' => __( 'Banner', 'premium-addons-for-elementor' ),
366
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/banner-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
367
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-banner-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
368
- ),
369
- array(
370
- 'key' => 'premium-button',
371
- 'name' => 'premium-addon-button',
372
- 'title' => __( 'Button', 'premium-addons-for-elementor' ),
373
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/button-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
374
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/button/', 'settings-page', 'wp-dash', 'dashboard' ),
375
- 'tutorial' => 'https://www.youtube.com/watch?v=w4NuCUkCIV4',
376
- ),
377
- array(
378
- 'key' => 'premium-image-button',
379
- 'name' => 'premium-addon-image-button',
380
- 'title' => __( 'Image Button', 'premium-addons-for-elementor' ),
381
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-button-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
382
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/image-button/', 'settings-page', 'wp-dash', 'dashboard' ),
383
- ),
384
- array(
385
- 'key' => 'premium-flipbox',
386
- 'name' => 'premium-addon-flip-box',
387
- 'title' => __( '3D Hover Box', 'premium-addons-for-elementor' ),
388
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/3d-hover-box-flip-box-widget-for-elementor/', 'settings-page', 'wp-dash', 'dashboard' ),
389
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/flip-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
390
- 'is_pro' => true,
391
- 'icon' => 'pa-pro-flip-box',
392
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/3d-hover-box-flip-box-widget-for-elementor/', 'editor-page', 'wp-editor', 'get-pro' ),
393
- ),
394
- array(
395
- 'key' => 'premium-iconbox',
396
- 'name' => 'premium-addon-icon-box',
397
- 'title' => __( 'Icon Box', 'premium-addons-for-elementor' ),
398
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/icon-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
399
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/icon-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
400
- 'is_pro' => true,
401
- 'icon' => 'pa-pro-icon-box',
402
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/icon-box-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
403
- ),
404
- array(
405
- 'key' => 'premium-ihover',
406
- 'name' => 'premium-ihover',
407
- 'title' => __( 'iHover', 'premium-addons-for-elementor' ),
408
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/ihover-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
409
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-ihover-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
410
- 'is_pro' => true,
411
- 'icon' => 'pa-pro-ihover',
412
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/ihover-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
413
- ),
414
- array(
415
- 'key' => 'premium-unfold',
416
- 'name' => 'premium-unfold-addon',
417
- 'title' => __( 'Unfold', 'premium-addons-for-elementor' ),
418
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/unfold-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
419
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-unfold-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
420
- 'is_pro' => true,
421
- 'icon' => 'pa-pro-unfold',
422
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/unfold-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
423
- ),
424
- array(
425
- 'key' => 'premium-icon-list',
426
- 'name' => 'premium-icon-list',
427
- 'title' => __( 'Bullet List', 'premium-addons-for-elementor' ),
428
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-bullet-list-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
429
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/bullet-list-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
430
- 'tutorial' => 'https://www.youtube.com/watch?v=MPeXJiZ14sI',
431
- ),
432
- array(
433
- 'key' => 'premium-facebook-feed',
434
- 'name' => 'premium-facebook-feed',
435
- 'title' => __( 'Facebook Feed', 'premium-addons-for-elementor' ),
436
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-facebook-feed-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
437
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/facebook-feed-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
438
- 'is_pro' => true,
439
- 'icon' => 'pa-pro-facebook-feed',
440
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-facebook-feed-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
441
- ),
442
- array(
443
- 'key' => 'premium-twitter-feed',
444
- 'name' => 'premium-twitter-feed',
445
- 'title' => __( 'Twitter Feed', 'premium-addons-for-elementor' ),
446
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/twitter-feed-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
447
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/twitter-feed-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
448
- 'tutorial' => 'https://www.youtube.com/watch?v=wsurRDuR6pg',
449
- 'is_pro' => true,
450
- 'icon' => 'pa-pro-twitter-feed',
451
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/twitter-feed-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
452
- ),
453
- array(
454
- 'key' => 'premium-instagram-feed',
455
- 'name' => 'premium-addon-instagram-feed',
456
- 'title' => __( 'Instagram Feed', 'premium-addons-for-elementor' ),
457
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/instagram-feed-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
458
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/instagram-feed/', 'settings-page', 'wp-dash', 'dashboard' ),
459
- 'is_pro' => true,
460
- 'icon' => 'pa-pro-instagram-feed',
461
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/instagram-feed-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
462
- ),
463
- array(
464
- 'key' => 'premium-behance',
465
- 'name' => 'premium-behance-feed',
466
- 'title' => __( 'Behance Feed', 'premium-addons-for-elementor' ),
467
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/behance-feed-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
468
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/behance-feed-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
469
- 'tutorial' => 'https://www.youtube.com/watch?v=AXATK3oIXl0',
470
- 'is_pro' => true,
471
- 'icon' => 'pa-pro-behance-feed',
472
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/behance-feed-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
473
- ),
474
- array(
475
- 'key' => 'premium-progressbar',
476
- 'name' => 'premium-addon-progressbar',
477
- 'title' => __( 'Progress Bar', 'premium-addons-for-elementor' ),
478
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/progress-bar-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
479
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-progress-bar-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
480
- 'tutorial' => 'https://www.youtube.com/watch?v=Y7xqwhgDQJg',
481
- ),
482
- array(
483
- 'key' => 'premium-pricing-table',
484
- 'name' => 'premium-addon-pricing-table',
485
- 'title' => __( 'Pricing Table', 'premium-addons-for-elementor' ),
486
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/pricing-table-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
487
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/pricing-table-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
488
- ),
489
- array(
490
- 'key' => 'premium-charts',
491
- 'name' => 'premium-chart',
492
- 'title' => __( 'Charts', 'premium-addons-for-elementor' ),
493
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/charts-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
494
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/charts-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
495
- 'tutorial' => 'https://www.youtube.com/watch?v=lZZvslQ2UYU',
496
- 'is_pro' => true,
497
- 'icon' => 'pa-pro-charts',
498
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/charts-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
499
- ),
500
- array(
501
- 'key' => 'premium-tables',
502
- 'name' => 'premium-tables-addon',
503
- 'title' => __( 'Table', 'premium-addons-for-elementor' ),
504
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/table-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
505
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/table-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
506
- 'is_pro' => true,
507
- 'icon' => 'pa-pro-table',
508
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/table-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
509
- ),
510
- array(
511
- 'key' => 'premium-counter',
512
- 'name' => 'premium-counter',
513
- 'title' => __( 'Counter', 'premium-addons-for-elementor' ),
514
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/counter-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
515
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/counter-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
516
- ),
517
- array(
518
- 'key' => 'premium-contactform',
519
- 'name' => 'premium-contact-form',
520
- 'title' => __( 'Contact Form 7', 'premium-addons-for-elementor' ),
521
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/contact-form-7-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
522
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/contact-form-7-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
523
- ),
524
- array(
525
- 'key' => 'premium-fb-chat',
526
- 'name' => 'premium-addon-facebook-chat',
527
- 'title' => __( 'Facebook Messenger Chat', 'premium-addons-for-elementor' ),
528
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/facebook-messenger-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
529
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/facebook-messenger/', 'settings-page', 'wp-dash', 'dashboard' ),
530
- 'is_pro' => true,
531
- 'icon' => 'pa-pro-messenger-chat',
532
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/facebook-messenger-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
533
- ),
534
- array(
535
- 'key' => 'premium-whatsapp-chat',
536
- 'name' => 'premium-whatsapp-chat',
537
- 'title' => __( 'WhatsApp Chat', 'premium-addons-for-elementor' ),
538
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/whatsapp-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
539
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/whatsapp-chat-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
540
- 'is_pro' => true,
541
- 'icon' => 'pa-pro-whatsapp',
542
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/whatsapp-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
543
- ),
544
- array(
545
- 'key' => 'woo-products',
546
- 'title' => __( 'Woo Products', 'premium-addons-for-elementor' ),
547
- 'name' => 'premium-woo-products',
548
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-woocommerce-products/', 'settings-page', 'wp-dash', 'dashboard' ),
549
- ),
550
- ),
551
- ),
552
- 'cat-2' => array(
553
- 'icon' => 'content',
554
- 'title' => __( 'Content Widgets', 'premium-addons-for-elementor' ),
555
- 'elements' => array(
556
- array(
557
- 'key' => 'premium-carousel',
558
- 'name' => 'premium-carousel-widget',
559
- 'title' => __( 'Carousel', 'premium-addons-for-elementor' ),
560
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/carousel-widget-for-elementor-page-builder', 'settings-page', 'wp-dash', 'dashboard' ),
561
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/carousel/', 'settings-page', 'wp-dash', 'dashboard' ),
562
- 'tutorial' => 'https://www.youtube.com/watch?v=ZMgprLKvq24',
563
- ),
564
- array(
565
- 'key' => 'premium-blog',
566
- 'name' => 'premium-addon-blog',
567
- 'title' => __( 'Blog', 'premium-addons-for-elementor' ),
568
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/blog-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
569
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/blog/', 'settings-page', 'wp-dash', 'dashboard' ),
570
- ),
571
- array(
572
- 'key' => 'premium-maps',
573
- 'name' => 'premium-addon-maps',
574
- 'title' => __( 'Google Maps', 'premium-addons-for-elementor' ),
575
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/google-maps-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
576
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/google-maps/', 'settings-page', 'wp-dash', 'dashboard' ),
577
- 'tutorial' => 'https://www.youtube.com/watch?v=z4taEeCY77Q',
578
- ),
579
- array(
580
- 'key' => 'premium-person',
581
- 'name' => 'premium-addon-person',
582
- 'title' => __( 'Team Members', 'premium-addons-for-elementor' ),
583
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/persons-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
584
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/persons-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
585
- ),
586
- array(
587
- 'key' => 'premium-tabs',
588
- 'name' => 'premium-addon-tabs',
589
- 'title' => __( 'Tabs', 'premium-addons-for-elementor' ),
590
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-tabs-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
591
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/tabs-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
592
- 'is_pro' => true,
593
- ),
594
- array(
595
- 'key' => 'premium-content-toggle',
596
- 'name' => 'premium-addon-content-toggle',
597
- 'title' => __( 'Content Switcher', 'premium-addons-for-elementor' ),
598
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/content-switcher-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
599
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-content-switcher/', 'settings-page', 'wp-dash', 'dashboard' ),
600
- 'is_pro' => true,
601
- ),
602
- array(
603
- 'key' => 'premium-fancytext',
604
- 'name' => 'premium-addon-fancy-text',
605
- 'title' => __( 'Fancy Text', 'premium-addons-for-elementor' ),
606
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/fancy-text-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
607
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/fancy-text-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
608
- ),
609
- array(
610
- 'key' => 'premium-title',
611
- 'name' => 'premium-addon-title',
612
- 'title' => __( 'Heading', 'premium-addons-for-elementor' ),
613
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/heading-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
614
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/heading-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
615
- ),
616
- array(
617
- 'key' => 'premium-dual-header',
618
- 'name' => 'premium-addon-dual-header',
619
- 'title' => __( 'Dual Heading', 'premium-addons-for-elementor' ),
620
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/dual-header-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
621
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/dual-heading-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
622
- ),
623
- array(
624
- 'key' => 'premium-divider',
625
- 'name' => 'premium-divider',
626
- 'title' => __( 'Divider', 'premium-addons-for-elementor' ),
627
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/divider-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
628
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/divider-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
629
- 'is_pro' => true,
630
- ),
631
- ),
632
- ),
633
- 'cat-3' => array(
634
- 'icon' => 'images',
635
- 'title' => __( 'Image & Video Widgets', 'premium-addons-for-elementor' ),
636
- 'elements' => array(
637
- array(
638
- 'key' => 'premium-grid',
639
- 'name' => 'premium-img-gallery',
640
- 'title' => __( 'Media Grid', 'premium-addons-for-elementor' ),
641
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/grid-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
642
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/grid-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
643
- ),
644
- array(
645
- 'key' => 'premium-image-scroll',
646
- 'name' => 'premium-image-scroll',
647
- 'title' => __( 'Image Scroll', 'premium-addons-for-elementor' ),
648
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-image-scroll-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
649
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-scroll-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
650
- ),
651
- array(
652
- 'key' => 'premium-image-separator',
653
- 'name' => 'premium-addon-image-separator',
654
- 'title' => __( 'Image Separator', 'premium-addons-for-elementor' ),
655
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-separator-widget-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
656
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-separator-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
657
- ),
658
- array(
659
- 'key' => 'premium-image-comparison',
660
- 'name' => 'premium-addon-image-comparison',
661
- 'title' => __( 'Image Comparison', 'premium-addons-for-elementor' ),
662
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-comparison-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
663
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-image-comparison-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
664
- 'is_pro' => true,
665
- ),
666
- array(
667
- 'key' => 'premium-image-hotspots',
668
- 'name' => 'premium-addon-image-hotspots',
669
- 'title' => __( 'Image Hotspots', 'premium-addons-for-elementor' ),
670
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-hotspots-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
671
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-hotspots-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
672
- 'is_pro' => true,
673
- ),
674
- array(
675
- 'key' => 'premium-img-layers',
676
- 'name' => 'premium-img-layers-addon',
677
- 'title' => __( 'Image Layers', 'premium-addons-for-elementor' ),
678
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-layers-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
679
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/image-layers/', 'settings-page', 'wp-dash', 'dashboard' ),
680
- 'tutorial' => 'https://www.youtube.com/watch?v=D3INxWw_jKI',
681
- 'is_pro' => true,
682
- ),
683
- array(
684
- 'key' => 'premium-image-accordion',
685
- 'name' => 'premium-image-accordion',
686
- 'title' => __( 'Image Accordion', 'premium-addons-for-elementor' ),
687
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-image-accordion-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
688
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-accordion-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
689
- 'is_pro' => true,
690
- ),
691
- array(
692
- 'key' => 'premium-videobox',
693
- 'name' => 'premium-addon-video-box',
694
- 'title' => __( 'Video Box', 'premium-addons-for-elementor' ),
695
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/video-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
696
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/video-box/', 'settings-page', 'wp-dash', 'dashboard' ),
697
- ),
698
- ),
699
- ),
700
- 'cat-4' => array(
701
- 'icon' => 'section',
702
- 'title' => __( 'Section Addons & Widgets', 'premium-addons-for-elementor' ),
703
- 'elements' => array(
704
- array(
705
- 'key' => 'premium-hscroll',
706
- 'name' => 'premium-hscroll',
707
- 'title' => __( 'Horizontal Scroll', 'premium-addons-for-elementor' ),
708
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-horizontal-scroll-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
709
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/horizontal-scroll/', 'settings-page', 'wp-dash', 'dashboard' ),
710
- 'tutorial' => 'https://www.youtube.com/watch?v=4HqT_3s-ZXg',
711
- 'is_pro' => true,
712
- ),
713
- array(
714
- 'key' => 'premium-vscroll',
715
- 'name' => 'premium-vscroll',
716
- 'title' => __( 'Vertical Scroll', 'premium-addons-for-elementor' ),
717
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/vertical-scroll-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
718
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/vertical-scroll-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
719
- 'tutorial' => 'https://www.youtube.com/watch?v=MuLaIn1QXfQ',
720
- ),
721
- array(
722
- 'key' => 'premium-color-transition',
723
- 'name' => 'premium-color-transition',
724
- 'title' => __( 'Background Transition', 'premium-addons-for-elementor' ),
725
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-background-transition-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
726
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/background-transition-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
727
- 'is_pro' => true,
728
- ),
729
- array(
730
- 'key' => 'premium-multi-scroll',
731
- 'name' => 'premium-multi-scroll',
732
- 'title' => __( 'Multi Scroll', 'premium-addons-for-elementor' ),
733
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/multi-scroll-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
734
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/multi-scroll-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
735
- 'tutorial' => 'https://www.youtube.com/watch?v=IzYnD6oDYXw',
736
- 'is_pro' => true,
737
- ),
738
- array(
739
- 'key' => 'premium-lottie',
740
- 'title' => __( 'Lottie Animations', 'premium-addons-for-elementor' ),
741
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-lottie-animations-section-addon/', 'settings-page', 'wp-dash', 'dashboard' ),
742
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/lottie-background/', 'settings-page', 'wp-dash', 'dashboard' ),
743
- 'tutorial' => 'https://www.youtube.com/watch?v=KVrenWNEdkY',
744
- 'is_pro' => true,
745
- 'is_global' => true,
746
- ),
747
- array(
748
- 'key' => 'premium-parallax',
749
- 'title' => __( 'Parallax', 'premium-addons-for-elementor' ),
750
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/parallax-section-addon-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
751
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/parallax-section-addon-tutorial-2/', 'settings-page', 'wp-dash', 'dashboard' ),
752
- 'tutorial' => 'https://www.youtube.com/watch?v=hkMNjxLoZ2w',
753
- 'is_pro' => true,
754
- 'is_global' => true,
755
- ),
756
- array(
757
- 'key' => 'premium-particles',
758
- 'title' => __( 'Particles', 'premium-addons-for-elementor' ),
759
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/particles-section-addon-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
760
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/particles/', 'settings-page', 'wp-dash', 'dashboard' ),
761
- 'tutorial' => 'https://www.youtube.com/watch?v=bPmWKv4VWrI',
762
- 'is_pro' => true,
763
- 'is_global' => true,
764
- ),
765
- array(
766
- 'key' => 'premium-gradient',
767
- 'title' => __( 'Animated Gradient', 'premium-addons-for-elementor' ),
768
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/animated-section-gradients-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
769
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/animated-gradient-section-addon-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
770
- 'tutorial' => 'https://www.youtube.com/watch?v=IL4USvwR6K4',
771
- 'is_pro' => true,
772
- 'is_global' => true,
773
- ),
774
- array(
775
- 'key' => 'premium-kenburns',
776
- 'title' => __( 'Animated Ken Burns', 'premium-addons-for-elementor' ),
777
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/ken-burns-section-addon-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
778
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/ken-burns-section-addon-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
779
- 'tutorial' => 'https://www.youtube.com/watch?v=DUNFjWphZfs',
780
- 'is_pro' => true,
781
- 'is_global' => true,
782
- ),
783
- array(
784
- 'key' => 'premium-blob',
785
- 'title' => __( 'Blob Generator', 'premium-addons-for-elementor' ),
786
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-animated-blob-generator/', 'settings-page', 'wp-dash', 'dashboard' ),
787
- 'is_pro' => true,
788
- 'is_global' => true,
789
- ),
790
- ),
791
- ),
792
- 'cat-5' => array(
793
- 'icon' => 'off-grid',
794
- 'title' => __( 'Off-Grid Widgets', 'premium-addons-for-elementor' ),
795
- 'elements' => array(
796
- array(
797
- 'key' => 'premium-modalbox',
798
- 'name' => 'premium-addon-modal-box',
799
- 'title' => __( 'Modal Box', 'premium-addons-for-elementor' ),
800
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/modal-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
801
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/modal-box/', 'settings-page', 'wp-dash', 'dashboard' ),
802
- 'tutorial' => 'https://www.youtube.com/watch?v=3lLxSyf2nyk',
803
- ),
804
- array(
805
- 'key' => 'premium-notbar',
806
- 'name' => 'premium-notbar',
807
- 'title' => __( 'Alert Box', 'premium-addons-for-elementor' ),
808
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/alert-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
809
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/alert-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
810
- 'is_pro' => true,
811
- ),
812
- array(
813
- 'key' => 'premium-magic-section',
814
- 'name' => 'premium-addon-magic-section',
815
- 'title' => __( 'Magic Section', 'premium-addons-for-elementor' ),
816
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/magic-section-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
817
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/magic-section-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
818
- 'is_pro' => true,
819
- ),
820
- array(
821
- 'key' => 'premium-prev-img',
822
- 'name' => 'premium-addon-preview-image',
823
- 'title' => __( 'Preview Window', 'premium-addons-for-elementor' ),
824
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/preview-window-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
825
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/preview-window-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
826
- 'tutorial' => 'https://www.youtube.com/watch?v=EmptjFjrc4E',
827
- 'is_pro' => true,
828
- ),
829
- ),
830
- ),
831
- 'cat-6' => array(
832
- 'icon' => 'social',
833
- 'title' => __( 'Reviews & Testimonials Widgets', 'premium-addons-for-elementor' ),
834
- 'elements' => array(
835
- array(
836
- 'key' => 'premium-testimonials',
837
- 'name' => 'premium-addon-testimonials',
838
- 'title' => __( 'Testimonials', 'premium-addons-for-elementor' ),
839
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/testimonials-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
840
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/testimonials-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
841
- ),
842
- array(
843
- 'key' => 'premium-facebook-reviews',
844
- 'name' => 'premium-facebook-reviews',
845
- 'title' => __( 'Facebook Reviews', 'premium-addons-for-elementor' ),
846
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/facebook-reviews-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
847
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/facebook-reviews/', 'settings-page', 'wp-dash', 'dashboard' ),
848
- 'tutorial' => 'https://www.youtube.com/watch?v=zl-OFo3IFd8',
849
- 'is_pro' => true,
850
- ),
851
- array(
852
- 'key' => 'premium-google-reviews',
853
- 'name' => 'premium-google-reviews',
854
- 'title' => __( 'Google Reviews', 'premium-addons-for-elementor' ),
855
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/google-reviews-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
856
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/google-reviews/', 'settings-page', 'wp-dash', 'dashboard' ),
857
- 'tutorial' => 'https://www.youtube.com/watch?v=Z0EeGyD34Zk',
858
- 'is_pro' => true,
859
- ),
860
- array(
861
- 'key' => 'premium-yelp-reviews',
862
- 'name' => 'premium-yelp-reviews',
863
- 'title' => __( 'Yelp Reviews', 'premium-addons-for-elementor' ),
864
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-yelp-reviews-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
865
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/yelp-reviews/', 'settings-page', 'wp-dash', 'dashboard' ),
866
- 'tutorial' => 'https://www.youtube.com/watch?v=5T-MveVFvns',
867
- 'is_pro' => true,
868
- ),
869
- array(
870
- 'key' => 'premium-trustpilot-reviews',
871
- 'name' => 'premium-trustpilot-reviews',
872
- 'title' => __( 'Trustpilot Reviews', 'premium-addons-for-elementor' ),
873
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-trustpilot-reviews-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
874
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/elementor-trustpilot-reviews-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
875
- 'is_pro' => true,
876
- 'is_new' => true,
877
- ),
878
- ),
879
- ),
880
- 'cat-7' => array(
881
- 'icon' => 'blurbs',
882
- 'title' => __( 'Blurbs & CTA Widgets', 'premium-addons-for-elementor' ),
883
- 'elements' => array(
884
- array(
885
- 'key' => 'premium-countdown',
886
- 'name' => 'premium-countdown-timer',
887
- 'title' => __( 'Countdown', 'premium-addons-for-elementor' ),
888
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/countdown-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
889
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/countdown-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
890
- ),
891
- array(
892
- 'key' => 'premium-banner',
893
- 'name' => 'premium-addon-banner',
894
- 'title' => __( 'Banner', 'premium-addons-for-elementor' ),
895
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/banner-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
896
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-banner-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
897
- ),
898
- array(
899
- 'key' => 'premium-button',
900
- 'name' => 'premium-addon-button',
901
- 'title' => __( 'Button', 'premium-addons-for-elementor' ),
902
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/button-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
903
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/button/', 'settings-page', 'wp-dash', 'dashboard' ),
904
- 'tutorial' => 'https://www.youtube.com/watch?v=w4NuCUkCIV4',
905
- ),
906
- array(
907
- 'key' => 'premium-image-button',
908
- 'title' => __( 'Image Button', 'premium-addons-for-elementor' ),
909
- 'name' => 'premium-addon-image-button',
910
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-button-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
911
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/image-button/', 'settings-page', 'wp-dash', 'dashboard' ),
912
- ),
913
- array(
914
- 'key' => 'premium-flipbox',
915
- 'name' => 'premium-addon-flip-box',
916
- 'title' => __( '3D Hover Box', 'premium-addons-for-elementor' ),
917
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/3d-hover-box-flip-box-widget-for-elementor/', 'settings-page', 'wp-dash', 'dashboard' ),
918
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/flip-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
919
- 'is_pro' => true,
920
- ),
921
- array(
922
- 'key' => 'premium-iconbox',
923
- 'name' => 'premium-addon-icon-box',
924
- 'title' => __( 'Icon Box', 'premium-addons-for-elementor' ),
925
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/icon-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
926
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/icon-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
927
- 'is_pro' => true,
928
- ),
929
- array(
930
- 'key' => 'premium-ihover',
931
- 'name' => 'premium-ihover',
932
- 'title' => __( 'iHover', 'premium-addons-for-elementor' ),
933
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/ihover-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
934
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-ihover-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
935
- 'is_pro' => true,
936
- ),
937
- array(
938
- 'key' => 'premium-unfold',
939
- 'name' => 'premium-unfold-addon',
940
- 'title' => __( 'Unfold', 'premium-addons-for-elementor' ),
941
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/unfold-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
942
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-unfold-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
943
- 'is_pro' => true,
944
- ),
945
- array(
946
- 'key' => 'premium-icon-list',
947
- 'name' => 'premium-icon-list',
948
- 'title' => __( 'Bullet List', 'premium-addons-for-elementor' ),
949
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-bullet-list-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
950
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/bullet-list-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
951
- 'tutorial' => 'https://www.youtube.com/watch?v=MPeXJiZ14sI',
952
- ),
953
- ),
954
- ),
955
- 'cat-8' => array(
956
- 'icon' => 'feed',
957
- 'title' => __( 'Social Feed Widgets', 'premium-addons-for-elementor' ),
958
- 'elements' => array(
959
- array(
960
- 'key' => 'premium-facebook-feed',
961
- 'name' => 'premium-facebook-feed',
962
- 'title' => __( 'Facebook Feed', 'premium-addons-for-elementor' ),
963
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-facebook-feed-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
964
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/facebook-feed-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
965
- 'is_pro' => true,
966
- ),
967
- array(
968
- 'key' => 'premium-twitter-feed',
969
- 'name' => 'premium-twitter-feed',
970
- 'title' => __( 'Twitter Feed', 'premium-addons-for-elementor' ),
971
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/twitter-feed-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
972
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/twitter-feed-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
973
- 'tutorial' => 'https://www.youtube.com/watch?v=wsurRDuR6pg',
974
- 'is_pro' => true,
975
- ),
976
- array(
977
- 'key' => 'premium-instagram-feed',
978
- 'name' => 'premium-addon-instagram-feed',
979
- 'title' => __( 'Instagram Feed', 'premium-addons-for-elementor' ),
980
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/instagram-feed-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
981
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/instagram-feed/', 'settings-page', 'wp-dash', 'dashboard' ),
982
- 'is_pro' => true,
983
- ),
984
- array(
985
- 'key' => 'premium-behance',
986
- 'name' => 'premium-behance-feed',
987
- 'title' => __( 'Behance Feed', 'premium-addons-for-elementor' ),
988
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/behance-feed-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
989
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/behance-feed-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
990
- 'tutorial' => 'https://www.youtube.com/watch?v=AXATK3oIXl0',
991
- 'is_pro' => true,
992
- ),
993
- ),
994
- ),
995
- 'cat-9' => array(
996
- 'icon' => 'data',
997
- 'title' => __( 'Tables, Charts & Anything Data Widgets', 'premium-addons-for-elementor' ),
998
- 'elements' => array(
999
- array(
1000
- 'key' => 'premium-progressbar',
1001
- 'name' => 'premium-addon-progressbar',
1002
- 'title' => __( 'Progress Bar', 'premium-addons-for-elementor' ),
1003
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/progress-bar-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1004
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-progress-bar-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
1005
- 'tutorial' => 'https://www.youtube.com/watch?v=Y7xqwhgDQJg',
1006
- ),
1007
- array(
1008
- 'key' => 'premium-pricing-table',
1009
- 'name' => 'premium-addon-pricing-table',
1010
- 'title' => __( 'Pricing Table', 'premium-addons-for-elementor' ),
1011
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/pricing-table-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1012
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/pricing-table-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
1013
- ),
1014
- array(
1015
- 'key' => 'premium-charts',
1016
- 'name' => 'premium-chart',
1017
- 'title' => __( 'Charts', 'premium-addons-for-elementor' ),
1018
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/charts-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1019
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/charts-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
1020
- 'tutorial' => 'https://www.youtube.com/watch?v=lZZvslQ2UYU',
1021
- 'is_pro' => true,
1022
- ),
1023
- array(
1024
- 'key' => 'premium-tables',
1025
- 'name' => 'premium-tables-addon',
1026
- 'title' => __( 'Table', 'premium-addons-for-elementor' ),
1027
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/table-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1028
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/table-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
1029
- 'is_pro' => true,
1030
- ),
1031
- array(
1032
- 'key' => 'premium-counter',
1033
- 'name' => 'premium-counter',
1034
- 'title' => __( 'Counter', 'premium-addons-for-elementor' ),
1035
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/counter-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1036
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/counter-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
1037
- ),
1038
- ),
1039
- ),
1040
- 'cat-10' => array(
1041
- 'icon' => 'contact',
1042
- 'title' => __( 'Contact Widgets', 'premium-addons-for-elementor' ),
1043
- 'elements' => array(
1044
- array(
1045
- 'key' => 'premium-contactform',
1046
- 'name' => 'premium-contact-form',
1047
- 'title' => __( 'Contact Form 7', 'premium-addons-for-elementor' ),
1048
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/contact-form-7-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1049
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/contact-form-7-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
1050
- ),
1051
- array(
1052
- 'key' => 'premium-fb-chat',
1053
- 'name' => 'premium-addon-facebook-chat',
1054
- 'title' => __( 'Facebook Messenger Chat', 'premium-addons-for-elementor' ),
1055
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/facebook-messenger-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1056
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/facebook-messenger/', 'settings-page', 'wp-dash', 'dashboard' ),
1057
- 'is_pro' => true,
1058
- ),
1059
- array(
1060
- 'key' => 'premium-whatsapp-chat',
1061
- 'name' => 'premium-whatsapp-chat',
1062
- 'title' => __( 'WhatsApp Chat', 'premium-addons-for-elementor' ),
1063
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/whatsapp-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1064
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/whatsapp-chat-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
1065
- 'is_pro' => true,
1066
- ),
1067
- ),
1068
- ),
1069
- 'cat-11' => array(
1070
- 'icon' => 'extensions',
1071
- 'elements' => array(
1072
- array(
1073
- 'key' => 'premium-templates',
1074
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/premium-templates-for-elementor/', 'settings-page', 'wp-dash', 'dashboard' ),
1075
- ),
1076
- array(
1077
- 'key' => 'premium-equal-height',
1078
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/premium-addons-global-features-for-elementor/#equal-height-feature', 'settings-page', 'wp-dash', 'dashboard' ),
1079
- ),
1080
- array(
1081
- 'key' => 'pa-display-conditions',
1082
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-display-conditions/', 'settings-page', 'wp-dash', 'dashboard' ),
1083
- ),
1084
- array(
1085
- 'key' => 'premium-global-cursor',
1086
- 'is_pro' => true,
1087
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-custom-mouse-cursor-global-feature/', 'settings-page', 'wp-dash', 'dashboard' ),
1088
- ),
1089
- array(
1090
- 'key' => 'premium-global-badge',
1091
- 'is_pro' => true,
1092
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-badge-global-addon/', 'settings-page', 'wp-dash', 'dashboard' ),
1093
- ),
1094
- array(
1095
- 'key' => 'premium-floating-effects',
1096
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-floating-effects-animation/', 'settings-page', 'wp-dash', 'dashboard' ),
1097
- ),
1098
- array(
1099
- 'key' => 'premium-cross-domain',
1100
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/premium-addons-global-features-for-elementor/#common-features', 'settings-page', 'wp-dash', 'dashboard' ),
1101
- ),
1102
- array(
1103
- 'key' => 'premium-duplicator',
1104
- ),
1105
- ),
1106
- ),
1107
- );
1108
-
1109
- return $elements;
 
 
 
1
+ <?php
2
+ /**
3
+ * PA Elements.
4
+ */
5
+
6
+ use PremiumAddons\Includes\Helper_Functions;
7
+
8
+ $prefix = Helper_Functions::get_prefix();
9
+
10
+ $elements = array(
11
+ 'cat-1' => array(
12
+ 'icon' => 'all',
13
+ 'title' => __( 'All Widgets', 'premium-addons-for-elementor' ),
14
+ 'elements' => array(
15
+ array(
16
+ 'key' => 'premium-lottie-widget',
17
+ 'name' => 'premium-lottie',
18
+ 'title' => __( 'Lottie Animations', 'premium-addons-for-elementor' ),
19
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-lottie-animations-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
20
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/lottie-animations-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
21
+ 'tutorial' => 'https://www.youtube.com/watch?v=0QWzUpF57dw',
22
+ ),
23
+ array(
24
+ 'key' => 'premium-carousel',
25
+ 'name' => 'premium-carousel-widget',
26
+ 'title' => __( 'Carousel', 'premium-addons-for-elementor' ),
27
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/carousel-widget-for-elementor-page-builder', 'settings-page', 'wp-dash', 'dashboard' ),
28
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/carousel/', 'settings-page', 'wp-dash', 'dashboard' ),
29
+ 'tutorial' => 'https://www.youtube.com/watch?v=ZMgprLKvq24',
30
+ ),
31
+ array(
32
+ 'key' => 'premium-blog',
33
+ 'name' => 'premium-addon-blog',
34
+ 'title' => __( 'Blog', 'premium-addons-for-elementor' ),
35
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/blog-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
36
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/blog/', 'settings-page', 'wp-dash', 'dashboard' ),
37
+ ),
38
+ array(
39
+ 'key' => 'premium-maps',
40
+ 'name' => 'premium-addon-maps',
41
+ 'title' => __( 'Google Maps', 'premium-addons-for-elementor' ),
42
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/google-maps-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
43
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/google-maps/', 'settings-page', 'wp-dash', 'dashboard' ),
44
+ 'tutorial' => 'https://www.youtube.com/watch?v=z4taEeCY77Q',
45
+ ),
46
+ array(
47
+ 'key' => 'premium-person',
48
+ 'name' => 'premium-addon-person',
49
+ 'title' => __( 'Team Members', 'premium-addons-for-elementor' ),
50
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/persons-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
51
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/persons-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
52
+ ),
53
+ array(
54
+ 'key' => 'premium-tabs',
55
+ 'name' => 'premium-addon-tabs',
56
+ 'title' => __( 'Tabs', 'premium-addons-for-elementor' ),
57
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-tabs-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
58
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/tabs-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
59
+ 'is_pro' => true,
60
+ 'icon' => 'pa-pro-tabs',
61
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-tabs-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
62
+ ),
63
+ array(
64
+ 'key' => 'premium-content-toggle',
65
+ 'name' => 'premium-addon-content-toggle',
66
+ 'title' => __( 'Content Switcher', 'premium-addons-for-elementor' ),
67
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/content-switcher-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
68
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-content-switcher/', 'settings-page', 'wp-dash', 'dashboard' ),
69
+ 'is_pro' => true,
70
+ 'icon' => 'pa-pro-content-switcher',
71
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/content-switcher-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
72
+ ),
73
+ array(
74
+ 'key' => 'premium-fancytext',
75
+ 'name' => 'premium-addon-fancy-text',
76
+ 'title' => __( 'Fancy Text', 'premium-addons-for-elementor' ),
77
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/fancy-text-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
78
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/fancy-text-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
79
+ ),
80
+ array(
81
+ 'key' => 'premium-title',
82
+ 'name' => 'premium-addon-title',
83
+ 'title' => __( 'Heading', 'premium-addons-for-elementor' ),
84
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/heading-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
85
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/heading-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
86
+ ),
87
+ array(
88
+ 'key' => 'premium-dual-header',
89
+ 'name' => 'premium-addon-dual-header',
90
+ 'title' => __( 'Dual Heading', 'premium-addons-for-elementor' ),
91
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/dual-header-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
92
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/dual-heading-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
93
+ ),
94
+ array(
95
+ 'key' => 'premium-divider',
96
+ 'name' => 'premium-divider',
97
+ 'title' => __( 'Divider', 'premium-addons-for-elementor' ),
98
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/divider-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
99
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/divider-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
100
+ 'is_pro' => true,
101
+ 'icon' => 'pa-pro-separator',
102
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/divider-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
103
+ ),
104
+ array(
105
+ 'key' => 'premium-grid',
106
+ 'name' => 'premium-img-gallery',
107
+ 'title' => __( 'Media Grid', 'premium-addons-for-elementor' ),
108
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/grid-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
109
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/grid/', 'settings-page', 'wp-dash', 'dashboard' ),
110
+ ),
111
+ array(
112
+ 'key' => 'premium-image-scroll',
113
+ 'name' => 'premium-image-scroll',
114
+ 'title' => __( 'Image Scroll', 'premium-addons-for-elementor' ),
115
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-image-scroll-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
116
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-scroll-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
117
+ ),
118
+ array(
119
+ 'key' => 'premium-image-separator',
120
+ 'name' => 'premium-addon-image-separator',
121
+ 'title' => __( 'Image Separator', 'premium-addons-for-elementor' ),
122
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-separator-widget-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
123
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-separator-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
124
+ ),
125
+ array(
126
+ 'key' => 'premium-image-comparison',
127
+ 'name' => 'premium-addon-image-comparison',
128
+ 'title' => __( 'Image Comparison', 'premium-addons-for-elementor' ),
129
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-comparison-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
130
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-image-comparison-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
131
+ 'is_pro' => true,
132
+ 'icon' => 'pa-pro-image-comparison',
133
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-comparison-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
134
+ ),
135
+ array(
136
+ 'key' => 'premium-image-hotspots',
137
+ 'name' => 'premium-addon-image-hotspots',
138
+ 'title' => __( 'Image Hotspots', 'premium-addons-for-elementor' ),
139
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-hotspots-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
140
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-hotspots-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
141
+ 'is_pro' => true,
142
+ 'icon' => 'pa-pro-hot-spot',
143
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-hotspots-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
144
+ ),
145
+ array(
146
+ 'key' => 'premium-img-layers',
147
+ 'name' => 'premium-img-layers-addon',
148
+ 'title' => __( 'Image Layers', 'premium-addons-for-elementor' ),
149
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-layers-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
150
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/image-layers/', 'settings-page', 'wp-dash', 'dashboard' ),
151
+ 'tutorial' => 'https://www.youtube.com/watch?v=D3INxWw_jKI',
152
+ 'is_pro' => true,
153
+ 'icon' => 'pa-pro-image-layers',
154
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-layers-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
155
+ ),
156
+ array(
157
+ 'key' => 'premium-image-accordion',
158
+ 'name' => 'premium-image-accordion',
159
+ 'title' => __( 'Image Accordion', 'premium-addons-for-elementor' ),
160
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-image-accordion-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
161
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-accordion-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
162
+ 'is_pro' => true,
163
+ 'icon' => 'pa-pro-image-accordion',
164
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-image-accordion-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
165
+ ),
166
+ array(
167
+ 'key' => 'premium-videobox',
168
+ 'name' => 'premium-addon-video-box',
169
+ 'title' => __( 'Video Box', 'premium-addons-for-elementor' ),
170
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/video-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
171
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/video-box/', 'settings-page', 'wp-dash', 'dashboard' ),
172
+ ),
173
+ array(
174
+ 'key' => 'premium-hscroll',
175
+ 'name' => 'premium-hscroll',
176
+ 'title' => __( 'Horizontal Scroll', 'premium-addons-for-elementor' ),
177
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-horizontal-scroll-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
178
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/horizontal-scroll/', 'settings-page', 'wp-dash', 'dashboard' ),
179
+ 'tutorial' => 'https://www.youtube.com/watch?v=4HqT_3s-ZXg',
180
+ 'is_pro' => true,
181
+ 'icon' => 'pa-pro-horizontal-scroll',
182
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-horizontal-scroll-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
183
+ ),
184
+ array(
185
+ 'key' => 'premium-vscroll',
186
+ 'name' => 'premium-vscroll',
187
+ 'title' => __( 'Vertical Scroll', 'premium-addons-for-elementor' ),
188
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/vertical-scroll-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
189
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/vertical-scroll-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
190
+ 'tutorial' => 'https://www.youtube.com/watch?v=MuLaIn1QXfQ',
191
+ ),
192
+ array(
193
+ 'key' => 'premium-color-transition',
194
+ 'name' => 'premium-color-transition',
195
+ 'title' => __( 'Background Transition', 'premium-addons-for-elementor' ),
196
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-background-transition-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
197
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/background-transition-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
198
+ 'is_pro' => true,
199
+ 'icon' => 'pa-pro-color-transition',
200
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-background-transition-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
201
+ ),
202
+ array(
203
+ 'key' => 'premium-multi-scroll',
204
+ 'name' => 'premium-multi-scroll',
205
+ 'title' => __( 'Multi Scroll', 'premium-addons-for-elementor' ),
206
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/multi-scroll-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
207
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/multi-scroll-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
208
+ 'tutorial' => 'https://www.youtube.com/watch?v=IzYnD6oDYXw',
209
+ 'is_pro' => true,
210
+ 'icon' => 'pa-pro-multi-scroll',
211
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/multi-scroll-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
212
+ ),
213
+ array(
214
+ 'key' => 'premium-lottie',
215
+ 'title' => __( 'Lottie Animations', 'premium-addons-for-elementor' ),
216
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-lottie-animations-section-addon/', 'settings-page', 'wp-dash', 'dashboard' ),
217
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/lottie-background/', 'settings-page', 'wp-dash', 'dashboard' ),
218
+ 'tutorial' => 'https://www.youtube.com/watch?v=KVrenWNEdkY',
219
+ 'is_pro' => true,
220
+ 'is_global' => true,
221
+ ),
222
+ array(
223
+ 'key' => 'premium-parallax',
224
+ 'title' => __( 'Parallax', 'premium-addons-for-elementor' ),
225
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/parallax-section-addon-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
226
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/parallax-section-addon-tutorial-2/', 'settings-page', 'wp-dash', 'dashboard' ),
227
+ 'tutorial' => 'https://www.youtube.com/watch?v=hkMNjxLoZ2w',
228
+ 'is_pro' => true,
229
+ 'is_global' => true,
230
+ ),
231
+ array(
232
+ 'key' => 'premium-particles',
233
+ 'title' => __( 'Particles', 'premium-addons-for-elementor' ),
234
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/particles-section-addon-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
235
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/particles/', 'settings-page', 'wp-dash', 'dashboard' ),
236
+ 'tutorial' => 'https://www.youtube.com/watch?v=bPmWKv4VWrI',
237
+ 'is_pro' => true,
238
+ 'is_global' => true,
239
+ ),
240
+ array(
241
+ 'key' => 'premium-gradient',
242
+ 'title' => __( 'Animated Gradient', 'premium-addons-for-elementor' ),
243
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/animated-section-gradients-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
244
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/animated-gradient-section-addon-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
245
+ 'tutorial' => 'https://www.youtube.com/watch?v=IL4USvwR6K4',
246
+ 'is_pro' => true,
247
+ 'is_global' => true,
248
+ ),
249
+ array(
250
+ 'key' => 'premium-kenburns',
251
+ 'title' => __( 'Animated Ken Burns', 'premium-addons-for-elementor' ),
252
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/ken-burns-section-addon-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
253
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/ken-burns-section-addon-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
254
+ 'tutorial' => 'https://www.youtube.com/watch?v=DUNFjWphZfs',
255
+ 'is_pro' => true,
256
+ 'is_global' => true,
257
+ ),
258
+ array(
259
+ 'key' => 'premium-blob',
260
+ 'title' => __( 'Blob Generator', 'premium-addons-for-elementor' ),
261
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-animated-blob-generator/', 'settings-page', 'wp-dash', 'dashboard' ),
262
+ 'is_pro' => true,
263
+ 'is_global' => true,
264
+ ),
265
+ array(
266
+ 'key' => 'premium-modalbox',
267
+ 'name' => 'premium-addon-modal-box',
268
+ 'title' => __( 'Modal Box', 'premium-addons-for-elementor' ),
269
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/modal-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
270
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/modal-box/', 'settings-page', 'wp-dash', 'dashboard' ),
271
+ 'tutorial' => 'https://www.youtube.com/watch?v=3lLxSyf2nyk',
272
+ ),
273
+ array(
274
+ 'key' => 'premium-notbar',
275
+ 'name' => 'premium-notbar',
276
+ 'title' => __( 'Alert Box', 'premium-addons-for-elementor' ),
277
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/alert-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
278
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/alert-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
279
+ 'is_pro' => true,
280
+ 'icon' => 'pa-pro-notification-bar',
281
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/alert-box-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
282
+ ),
283
+ array(
284
+ 'key' => 'premium-magic-section',
285
+ 'name' => 'premium-addon-magic-section',
286
+ 'title' => __( 'Magic Section', 'premium-addons-for-elementor' ),
287
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/magic-section-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
288
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/magic-section-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
289
+ 'is_pro' => true,
290
+ 'icon' => 'pa-pro-magic-section',
291
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/magic-section-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
292
+ ),
293
+ array(
294
+ 'key' => 'premium-prev-img',
295
+ 'name' => 'premium-addon-preview-image',
296
+ 'title' => __( 'Preview Window', 'premium-addons-for-elementor' ),
297
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/preview-window-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
298
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/preview-window-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
299
+ 'tutorial' => 'https://www.youtube.com/watch?v=EmptjFjrc4E',
300
+ 'is_pro' => true,
301
+ 'icon' => 'pa-pro-preview-window',
302
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/preview-window-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
303
+ ),
304
+ array(
305
+ 'key' => 'premium-testimonials',
306
+ 'name' => 'premium-addon-testimonials',
307
+ 'title' => __( 'Testimonials', 'premium-addons-for-elementor' ),
308
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/testimonials-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
309
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/testimonials-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
310
+ ),
311
+ array(
312
+ 'key' => 'premium-facebook-reviews',
313
+ 'name' => 'premium-facebook-reviews',
314
+ 'title' => __( 'Facebook Reviews', 'premium-addons-for-elementor' ),
315
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/facebook-reviews-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
316
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/facebook-reviews/', 'settings-page', 'wp-dash', 'dashboard' ),
317
+ 'tutorial' => 'https://www.youtube.com/watch?v=zl-OFo3IFd8',
318
+ 'is_pro' => true,
319
+ 'icon' => 'pa-pro-facebook-reviews',
320
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/facebook-reviews-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
321
+ ),
322
+ array(
323
+ 'key' => 'premium-google-reviews',
324
+ 'name' => 'premium-google-reviews',
325
+ 'title' => __( 'Google Reviews', 'premium-addons-for-elementor' ),
326
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/google-reviews-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
327
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/google-reviews/', 'settings-page', 'wp-dash', 'dashboard' ),
328
+ 'tutorial' => 'https://www.youtube.com/watch?v=Z0EeGyD34Zk',
329
+ 'is_pro' => true,
330
+ 'icon' => 'pa-pro-google-reviews',
331
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/google-reviews-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
332
+ ),
333
+ array(
334
+ 'key' => 'premium-yelp-reviews',
335
+ 'name' => 'premium-yelp-reviews',
336
+ 'title' => __( 'Yelp Reviews', 'premium-addons-for-elementor' ),
337
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-yelp-reviews-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
338
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/yelp-reviews/', 'settings-page', 'wp-dash', 'dashboard' ),
339
+ 'tutorial' => 'https://www.youtube.com/watch?v=5T-MveVFvns',
340
+ 'is_pro' => true,
341
+ 'icon' => 'pa-pro-yelp-reviews',
342
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-yelp-reviews-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
343
+ ),
344
+ array(
345
+ 'key' => 'premium-trustpilot-reviews',
346
+ 'name' => 'premium-trustpilot-reviews',
347
+ 'title' => __( 'Trustpilot Reviews', 'premium-addons-for-elementor' ),
348
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-trustpilot-reviews-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
349
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/elementor-trustpilot-reviews-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
350
+ 'is_pro' => true,
351
+ 'is_new' => true,
352
+ 'icon' => 'pa-pro-trust-reviews',
353
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-trustpilot-reviews-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
354
+ ),
355
+ array(
356
+ 'key' => 'premium-countdown',
357
+ 'name' => 'premium-countdown-timer',
358
+ 'title' => __( 'Countdown', 'premium-addons-for-elementor' ),
359
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/countdown-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
360
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/countdown-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
361
+ ),
362
+ array(
363
+ 'key' => 'premium-banner',
364
+ 'name' => 'premium-addon-banner',
365
+ 'title' => __( 'Banner', 'premium-addons-for-elementor' ),
366
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/banner-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
367
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-banner-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
368
+ ),
369
+ array(
370
+ 'key' => 'premium-button',
371
+ 'name' => 'premium-addon-button',
372
+ 'title' => __( 'Button', 'premium-addons-for-elementor' ),
373
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/button-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
374
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/button/', 'settings-page', 'wp-dash', 'dashboard' ),
375
+ 'tutorial' => 'https://www.youtube.com/watch?v=w4NuCUkCIV4',
376
+ ),
377
+ array(
378
+ 'key' => 'premium-image-button',
379
+ 'name' => 'premium-addon-image-button',
380
+ 'title' => __( 'Image Button', 'premium-addons-for-elementor' ),
381
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-button-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
382
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/image-button/', 'settings-page', 'wp-dash', 'dashboard' ),
383
+ ),
384
+ array(
385
+ 'key' => 'premium-flipbox',
386
+ 'name' => 'premium-addon-flip-box',
387
+ 'title' => __( '3D Hover Box', 'premium-addons-for-elementor' ),
388
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/3d-hover-box-flip-box-widget-for-elementor/', 'settings-page', 'wp-dash', 'dashboard' ),
389
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/flip-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
390
+ 'is_pro' => true,
391
+ 'icon' => 'pa-pro-flip-box',
392
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/3d-hover-box-flip-box-widget-for-elementor/', 'editor-page', 'wp-editor', 'get-pro' ),
393
+ ),
394
+ array(
395
+ 'key' => 'premium-iconbox',
396
+ 'name' => 'premium-addon-icon-box',
397
+ 'title' => __( 'Icon Box', 'premium-addons-for-elementor' ),
398
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/icon-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
399
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/icon-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
400
+ 'is_pro' => true,
401
+ 'icon' => 'pa-pro-icon-box',
402
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/icon-box-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
403
+ ),
404
+ array(
405
+ 'key' => 'premium-ihover',
406
+ 'name' => 'premium-ihover',
407
+ 'title' => __( 'iHover', 'premium-addons-for-elementor' ),
408
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/ihover-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
409
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-ihover-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
410
+ 'is_pro' => true,
411
+ 'icon' => 'pa-pro-ihover',
412
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/ihover-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
413
+ ),
414
+ array(
415
+ 'key' => 'premium-unfold',
416
+ 'name' => 'premium-unfold-addon',
417
+ 'title' => __( 'Unfold', 'premium-addons-for-elementor' ),
418
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/unfold-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
419
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-unfold-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
420
+ 'is_pro' => true,
421
+ 'icon' => 'pa-pro-unfold',
422
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/unfold-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
423
+ ),
424
+ array(
425
+ 'key' => 'premium-icon-list',
426
+ 'name' => 'premium-icon-list',
427
+ 'title' => __( 'Bullet List', 'premium-addons-for-elementor' ),
428
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-bullet-list-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
429
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/bullet-list-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
430
+ 'tutorial' => 'https://www.youtube.com/watch?v=MPeXJiZ14sI',
431
+ ),
432
+ array(
433
+ 'key' => 'premium-facebook-feed',
434
+ 'name' => 'premium-facebook-feed',
435
+ 'title' => __( 'Facebook Feed', 'premium-addons-for-elementor' ),
436
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-facebook-feed-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
437
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/facebook-feed-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
438
+ 'is_pro' => true,
439
+ 'icon' => 'pa-pro-facebook-feed',
440
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-facebook-feed-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
441
+ ),
442
+ array(
443
+ 'key' => 'premium-twitter-feed',
444
+ 'name' => 'premium-twitter-feed',
445
+ 'title' => __( 'Twitter Feed', 'premium-addons-for-elementor' ),
446
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/twitter-feed-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
447
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/twitter-feed-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
448
+ 'tutorial' => 'https://www.youtube.com/watch?v=wsurRDuR6pg',
449
+ 'is_pro' => true,
450
+ 'icon' => 'pa-pro-twitter-feed',
451
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/twitter-feed-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
452
+ ),
453
+ array(
454
+ 'key' => 'premium-instagram-feed',
455
+ 'name' => 'premium-addon-instagram-feed',
456
+ 'title' => __( 'Instagram Feed', 'premium-addons-for-elementor' ),
457
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/instagram-feed-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
458
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/instagram-feed/', 'settings-page', 'wp-dash', 'dashboard' ),
459
+ 'is_pro' => true,
460
+ 'icon' => 'pa-pro-instagram-feed',
461
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/instagram-feed-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
462
+ ),
463
+ array(
464
+ 'key' => 'premium-behance',
465
+ 'name' => 'premium-behance-feed',
466
+ 'title' => __( 'Behance Feed', 'premium-addons-for-elementor' ),
467
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/behance-feed-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
468
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/behance-feed-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
469
+ 'tutorial' => 'https://www.youtube.com/watch?v=AXATK3oIXl0',
470
+ 'is_pro' => true,
471
+ 'icon' => 'pa-pro-behance-feed',
472
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/behance-feed-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
473
+ ),
474
+ array(
475
+ 'key' => 'premium-progressbar',
476
+ 'name' => 'premium-addon-progressbar',
477
+ 'title' => __( 'Progress Bar', 'premium-addons-for-elementor' ),
478
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/progress-bar-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
479
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-progress-bar-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
480
+ 'tutorial' => 'https://www.youtube.com/watch?v=Y7xqwhgDQJg',
481
+ ),
482
+ array(
483
+ 'key' => 'premium-pricing-table',
484
+ 'name' => 'premium-addon-pricing-table',
485
+ 'title' => __( 'Pricing Table', 'premium-addons-for-elementor' ),
486
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/pricing-table-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
487
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/pricing-table-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
488
+ ),
489
+ array(
490
+ 'key' => 'premium-charts',
491
+ 'name' => 'premium-chart',
492
+ 'title' => __( 'Charts', 'premium-addons-for-elementor' ),
493
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/charts-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
494
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/charts-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
495
+ 'tutorial' => 'https://www.youtube.com/watch?v=lZZvslQ2UYU',
496
+ 'is_pro' => true,
497
+ 'icon' => 'pa-pro-charts',
498
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/charts-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
499
+ ),
500
+ array(
501
+ 'key' => 'premium-tables',
502
+ 'name' => 'premium-tables-addon',
503
+ 'title' => __( 'Table', 'premium-addons-for-elementor' ),
504
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/table-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
505
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/table-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
506
+ 'is_pro' => true,
507
+ 'icon' => 'pa-pro-table',
508
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/table-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
509
+ ),
510
+ array(
511
+ 'key' => 'premium-counter',
512
+ 'name' => 'premium-counter',
513
+ 'title' => __( 'Counter', 'premium-addons-for-elementor' ),
514
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/counter-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
515
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/counter-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
516
+ ),
517
+ array(
518
+ 'key' => 'premium-contactform',
519
+ 'name' => 'premium-contact-form',
520
+ 'title' => __( 'Contact Form 7', 'premium-addons-for-elementor' ),
521
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/contact-form-7-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
522
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/contact-form-7-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
523
+ ),
524
+ array(
525
+ 'key' => 'premium-fb-chat',
526
+ 'name' => 'premium-addon-facebook-chat',
527
+ 'title' => __( 'Facebook Messenger Chat', 'premium-addons-for-elementor' ),
528
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/facebook-messenger-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
529
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/facebook-messenger/', 'settings-page', 'wp-dash', 'dashboard' ),
530
+ 'is_pro' => true,
531
+ 'icon' => 'pa-pro-messenger-chat',
532
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/facebook-messenger-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
533
+ ),
534
+ array(
535
+ 'key' => 'premium-whatsapp-chat',
536
+ 'name' => 'premium-whatsapp-chat',
537
+ 'title' => __( 'WhatsApp Chat', 'premium-addons-for-elementor' ),
538
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/whatsapp-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
539
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/whatsapp-chat-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
540
+ 'is_pro' => true,
541
+ 'icon' => 'pa-pro-whatsapp',
542
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/whatsapp-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
543
+ ),
544
+ array(
545
+ 'key' => 'woo-products',
546
+ 'title' => __( 'Woo Products', 'premium-addons-for-elementor' ),
547
+ 'name' => 'premium-woo-products',
548
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-woocommerce-products/', 'settings-page', 'wp-dash', 'dashboard' ),
549
+ ),
550
+ ),
551
+ ),
552
+ 'cat-2' => array(
553
+ 'icon' => 'content',
554
+ 'title' => __( 'Content Widgets', 'premium-addons-for-elementor' ),
555
+ 'elements' => array(
556
+ array(
557
+ 'key' => 'premium-carousel',
558
+ 'name' => 'premium-carousel-widget',
559
+ 'title' => __( 'Carousel', 'premium-addons-for-elementor' ),
560
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/carousel-widget-for-elementor-page-builder', 'settings-page', 'wp-dash', 'dashboard' ),
561
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/carousel/', 'settings-page', 'wp-dash', 'dashboard' ),
562
+ 'tutorial' => 'https://www.youtube.com/watch?v=ZMgprLKvq24',
563
+ ),
564
+ array(
565
+ 'key' => 'premium-blog',
566
+ 'name' => 'premium-addon-blog',
567
+ 'title' => __( 'Blog', 'premium-addons-for-elementor' ),
568
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/blog-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
569
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/blog/', 'settings-page', 'wp-dash', 'dashboard' ),
570
+ ),
571
+ array(
572
+ 'key' => 'premium-maps',
573
+ 'name' => 'premium-addon-maps',
574
+ 'title' => __( 'Google Maps', 'premium-addons-for-elementor' ),
575
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/google-maps-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
576
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/google-maps/', 'settings-page', 'wp-dash', 'dashboard' ),
577
+ 'tutorial' => 'https://www.youtube.com/watch?v=z4taEeCY77Q',
578
+ ),
579
+ array(
580
+ 'key' => 'premium-person',
581
+ 'name' => 'premium-addon-person',
582
+ 'title' => __( 'Team Members', 'premium-addons-for-elementor' ),
583
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/persons-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
584
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/persons-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
585
+ ),
586
+ array(
587
+ 'key' => 'premium-tabs',
588
+ 'name' => 'premium-addon-tabs',
589
+ 'title' => __( 'Tabs', 'premium-addons-for-elementor' ),
590
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-tabs-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
591
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/tabs-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
592
+ 'is_pro' => true,
593
+ ),
594
+ array(
595
+ 'key' => 'premium-content-toggle',
596
+ 'name' => 'premium-addon-content-toggle',
597
+ 'title' => __( 'Content Switcher', 'premium-addons-for-elementor' ),
598
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/content-switcher-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
599
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-content-switcher/', 'settings-page', 'wp-dash', 'dashboard' ),
600
+ 'is_pro' => true,
601
+ ),
602
+ array(
603
+ 'key' => 'premium-fancytext',
604
+ 'name' => 'premium-addon-fancy-text',
605
+ 'title' => __( 'Fancy Text', 'premium-addons-for-elementor' ),
606
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/fancy-text-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
607
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/fancy-text-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
608
+ ),
609
+ array(
610
+ 'key' => 'premium-title',
611
+ 'name' => 'premium-addon-title',
612
+ 'title' => __( 'Heading', 'premium-addons-for-elementor' ),
613
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/heading-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
614
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/heading-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
615
+ ),
616
+ array(
617
+ 'key' => 'premium-dual-header',
618
+ 'name' => 'premium-addon-dual-header',
619
+ 'title' => __( 'Dual Heading', 'premium-addons-for-elementor' ),
620
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/dual-header-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
621
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/dual-heading-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
622
+ ),
623
+ array(
624
+ 'key' => 'premium-divider',
625
+ 'name' => 'premium-divider',
626
+ 'title' => __( 'Divider', 'premium-addons-for-elementor' ),
627
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/divider-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
628
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/divider-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
629
+ 'is_pro' => true,
630
+ ),
631
+ ),
632
+ ),
633
+ 'cat-3' => array(
634
+ 'icon' => 'images',
635
+ 'title' => __( 'Image & Video Widgets', 'premium-addons-for-elementor' ),
636
+ 'elements' => array(
637
+ array(
638
+ 'key' => 'premium-grid',
639
+ 'name' => 'premium-img-gallery',
640
+ 'title' => __( 'Media Grid', 'premium-addons-for-elementor' ),
641
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/grid-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
642
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/grid-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
643
+ ),
644
+ array(
645
+ 'key' => 'premium-image-scroll',
646
+ 'name' => 'premium-image-scroll',
647
+ 'title' => __( 'Image Scroll', 'premium-addons-for-elementor' ),
648
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-image-scroll-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
649
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-scroll-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
650
+ ),
651
+ array(
652
+ 'key' => 'premium-image-separator',
653
+ 'name' => 'premium-addon-image-separator',
654
+ 'title' => __( 'Image Separator', 'premium-addons-for-elementor' ),
655
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-separator-widget-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
656
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-separator-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
657
+ ),
658
+ array(
659
+ 'key' => 'premium-image-comparison',
660
+ 'name' => 'premium-addon-image-comparison',
661
+ 'title' => __( 'Image Comparison', 'premium-addons-for-elementor' ),
662
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-comparison-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
663
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-image-comparison-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
664
+ 'is_pro' => true,
665
+ ),
666
+ array(
667
+ 'key' => 'premium-image-hotspots',
668
+ 'name' => 'premium-addon-image-hotspots',
669
+ 'title' => __( 'Image Hotspots', 'premium-addons-for-elementor' ),
670
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-hotspots-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
671
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-hotspots-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
672
+ 'is_pro' => true,
673
+ ),
674
+ array(
675
+ 'key' => 'premium-img-layers',
676
+ 'name' => 'premium-img-layers-addon',
677
+ 'title' => __( 'Image Layers', 'premium-addons-for-elementor' ),
678
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-layers-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
679
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/image-layers/', 'settings-page', 'wp-dash', 'dashboard' ),
680
+ 'tutorial' => 'https://www.youtube.com/watch?v=D3INxWw_jKI',
681
+ 'is_pro' => true,
682
+ ),
683
+ array(
684
+ 'key' => 'premium-image-accordion',
685
+ 'name' => 'premium-image-accordion',
686
+ 'title' => __( 'Image Accordion', 'premium-addons-for-elementor' ),
687
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-image-accordion-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
688
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-accordion-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
689
+ 'is_pro' => true,
690
+ ),
691
+ array(
692
+ 'key' => 'premium-videobox',
693
+ 'name' => 'premium-addon-video-box',
694
+ 'title' => __( 'Video Box', 'premium-addons-for-elementor' ),
695
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/video-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
696
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/video-box/', 'settings-page', 'wp-dash', 'dashboard' ),
697
+ ),
698
+ ),
699
+ ),
700
+ 'cat-4' => array(
701
+ 'icon' => 'section',
702
+ 'title' => __( 'Section Addons & Widgets', 'premium-addons-for-elementor' ),
703
+ 'elements' => array(
704
+ array(
705
+ 'key' => 'premium-hscroll',
706
+ 'name' => 'premium-hscroll',
707
+ 'title' => __( 'Horizontal Scroll', 'premium-addons-for-elementor' ),
708
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-horizontal-scroll-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
709
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/horizontal-scroll/', 'settings-page', 'wp-dash', 'dashboard' ),
710
+ 'tutorial' => 'https://www.youtube.com/watch?v=4HqT_3s-ZXg',
711
+ 'is_pro' => true,
712
+ ),
713
+ array(
714
+ 'key' => 'premium-vscroll',
715
+ 'name' => 'premium-vscroll',
716
+ 'title' => __( 'Vertical Scroll', 'premium-addons-for-elementor' ),
717
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/vertical-scroll-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
718
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/vertical-scroll-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
719
+ 'tutorial' => 'https://www.youtube.com/watch?v=MuLaIn1QXfQ',
720
+ ),
721
+ array(
722
+ 'key' => 'premium-color-transition',
723
+ 'name' => 'premium-color-transition',
724
+ 'title' => __( 'Background Transition', 'premium-addons-for-elementor' ),
725
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-background-transition-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
726
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/background-transition-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
727
+ 'is_pro' => true,
728
+ ),
729
+ array(
730
+ 'key' => 'premium-multi-scroll',
731
+ 'name' => 'premium-multi-scroll',
732
+ 'title' => __( 'Multi Scroll', 'premium-addons-for-elementor' ),
733
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/multi-scroll-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
734
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/multi-scroll-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
735
+ 'tutorial' => 'https://www.youtube.com/watch?v=IzYnD6oDYXw',
736
+ 'is_pro' => true,
737
+ ),
738
+ array(
739
+ 'key' => 'premium-lottie',
740
+ 'title' => __( 'Lottie Animations', 'premium-addons-for-elementor' ),
741
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-lottie-animations-section-addon/', 'settings-page', 'wp-dash', 'dashboard' ),
742
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/lottie-background/', 'settings-page', 'wp-dash', 'dashboard' ),
743
+ 'tutorial' => 'https://www.youtube.com/watch?v=KVrenWNEdkY',
744
+ 'is_pro' => true,
745
+ 'is_global' => true,
746
+ ),
747
+ array(
748
+ 'key' => 'premium-parallax',
749
+ 'title' => __( 'Parallax', 'premium-addons-for-elementor' ),
750
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/parallax-section-addon-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
751
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/parallax-section-addon-tutorial-2/', 'settings-page', 'wp-dash', 'dashboard' ),
752
+ 'tutorial' => 'https://www.youtube.com/watch?v=hkMNjxLoZ2w',
753
+ 'is_pro' => true,
754
+ 'is_global' => true,
755
+ ),
756
+ array(
757
+ 'key' => 'premium-particles',
758
+ 'title' => __( 'Particles', 'premium-addons-for-elementor' ),
759
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/particles-section-addon-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
760
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/particles/', 'settings-page', 'wp-dash', 'dashboard' ),
761
+ 'tutorial' => 'https://www.youtube.com/watch?v=bPmWKv4VWrI',
762
+ 'is_pro' => true,
763
+ 'is_global' => true,
764
+ ),
765
+ array(
766
+ 'key' => 'premium-gradient',
767
+ 'title' => __( 'Animated Gradient', 'premium-addons-for-elementor' ),
768
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/animated-section-gradients-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
769
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/animated-gradient-section-addon-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
770
+ 'tutorial' => 'https://www.youtube.com/watch?v=IL4USvwR6K4',
771
+ 'is_pro' => true,
772
+ 'is_global' => true,
773
+ ),
774
+ array(
775
+ 'key' => 'premium-kenburns',
776
+ 'title' => __( 'Animated Ken Burns', 'premium-addons-for-elementor' ),
777
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/ken-burns-section-addon-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
778
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/ken-burns-section-addon-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
779
+ 'tutorial' => 'https://www.youtube.com/watch?v=DUNFjWphZfs',
780
+ 'is_pro' => true,
781
+ 'is_global' => true,
782
+ ),
783
+ array(
784
+ 'key' => 'premium-blob',
785
+ 'title' => __( 'Blob Generator', 'premium-addons-for-elementor' ),
786
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-animated-blob-generator/', 'settings-page', 'wp-dash', 'dashboard' ),
787
+ 'is_pro' => true,
788
+ 'is_global' => true,
789
+ ),
790
+ ),
791
+ ),
792
+ 'cat-5' => array(
793
+ 'icon' => 'off-grid',
794
+ 'title' => __( 'Off-Grid Widgets', 'premium-addons-for-elementor' ),
795
+ 'elements' => array(
796
+ array(
797
+ 'key' => 'premium-modalbox',
798
+ 'name' => 'premium-addon-modal-box',
799
+ 'title' => __( 'Modal Box', 'premium-addons-for-elementor' ),
800
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/modal-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
801
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/modal-box/', 'settings-page', 'wp-dash', 'dashboard' ),
802
+ 'tutorial' => 'https://www.youtube.com/watch?v=3lLxSyf2nyk',
803
+ ),
804
+ array(
805
+ 'key' => 'premium-notbar',
806
+ 'name' => 'premium-notbar',
807
+ 'title' => __( 'Alert Box', 'premium-addons-for-elementor' ),
808
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/alert-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
809
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/alert-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
810
+ 'is_pro' => true,
811
+ ),
812
+ array(
813
+ 'key' => 'premium-magic-section',
814
+ 'name' => 'premium-addon-magic-section',
815
+ 'title' => __( 'Magic Section', 'premium-addons-for-elementor' ),
816
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/magic-section-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
817
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/magic-section-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
818
+ 'is_pro' => true,
819
+ ),
820
+ array(
821
+ 'key' => 'premium-prev-img',
822
+ 'name' => 'premium-addon-preview-image',
823
+ 'title' => __( 'Preview Window', 'premium-addons-for-elementor' ),
824
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/preview-window-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
825
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/preview-window-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
826
+ 'tutorial' => 'https://www.youtube.com/watch?v=EmptjFjrc4E',
827
+ 'is_pro' => true,
828
+ ),
829
+ ),
830
+ ),
831
+ 'cat-6' => array(
832
+ 'icon' => 'social',
833
+ 'title' => __( 'Reviews & Testimonials Widgets', 'premium-addons-for-elementor' ),
834
+ 'elements' => array(
835
+ array(
836
+ 'key' => 'premium-testimonials',
837
+ 'name' => 'premium-addon-testimonials',
838
+ 'title' => __( 'Testimonials', 'premium-addons-for-elementor' ),
839
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/testimonials-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
840
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/testimonials-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
841
+ ),
842
+ array(
843
+ 'key' => 'premium-facebook-reviews',
844
+ 'name' => 'premium-facebook-reviews',
845
+ 'title' => __( 'Facebook Reviews', 'premium-addons-for-elementor' ),
846
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/facebook-reviews-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
847
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/facebook-reviews/', 'settings-page', 'wp-dash', 'dashboard' ),
848
+ 'tutorial' => 'https://www.youtube.com/watch?v=zl-OFo3IFd8',
849
+ 'is_pro' => true,
850
+ ),
851
+ array(
852
+ 'key' => 'premium-google-reviews',
853
+ 'name' => 'premium-google-reviews',
854
+ 'title' => __( 'Google Reviews', 'premium-addons-for-elementor' ),
855
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/google-reviews-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
856
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/google-reviews/', 'settings-page', 'wp-dash', 'dashboard' ),
857
+ 'tutorial' => 'https://www.youtube.com/watch?v=Z0EeGyD34Zk',
858
+ 'is_pro' => true,
859
+ ),
860
+ array(
861
+ 'key' => 'premium-yelp-reviews',
862
+ 'name' => 'premium-yelp-reviews',
863
+ 'title' => __( 'Yelp Reviews', 'premium-addons-for-elementor' ),
864
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-yelp-reviews-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
865
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/yelp-reviews/', 'settings-page', 'wp-dash', 'dashboard' ),
866
+ 'tutorial' => 'https://www.youtube.com/watch?v=5T-MveVFvns',
867
+ 'is_pro' => true,
868
+ ),
869
+ array(
870
+ 'key' => 'premium-trustpilot-reviews',
871
+ 'name' => 'premium-trustpilot-reviews',
872
+ 'title' => __( 'Trustpilot Reviews', 'premium-addons-for-elementor' ),
873
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-trustpilot-reviews-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
874
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/elementor-trustpilot-reviews-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
875
+ 'is_pro' => true,
876
+ 'is_new' => true,
877
+ ),
878
+ ),
879
+ ),
880
+ 'cat-7' => array(
881
+ 'icon' => 'blurbs',
882
+ 'title' => __( 'Blurbs & CTA Widgets', 'premium-addons-for-elementor' ),
883
+ 'elements' => array(
884
+ array(
885
+ 'key' => 'premium-countdown',
886
+ 'name' => 'premium-countdown-timer',
887
+ 'title' => __( 'Countdown', 'premium-addons-for-elementor' ),
888
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/countdown-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
889
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/countdown-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
890
+ ),
891
+ array(
892
+ 'key' => 'premium-banner',
893
+ 'name' => 'premium-addon-banner',
894
+ 'title' => __( 'Banner', 'premium-addons-for-elementor' ),
895
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/banner-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
896
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-banner-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
897
+ ),
898
+ array(
899
+ 'key' => 'premium-button',
900
+ 'name' => 'premium-addon-button',
901
+ 'title' => __( 'Button', 'premium-addons-for-elementor' ),
902
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/button-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
903
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/button/', 'settings-page', 'wp-dash', 'dashboard' ),
904
+ 'tutorial' => 'https://www.youtube.com/watch?v=w4NuCUkCIV4',
905
+ ),
906
+ array(
907
+ 'key' => 'premium-image-button',
908
+ 'title' => __( 'Image Button', 'premium-addons-for-elementor' ),
909
+ 'name' => 'premium-addon-image-button',
910
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-button-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
911
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/image-button/', 'settings-page', 'wp-dash', 'dashboard' ),
912
+ ),
913
+ array(
914
+ 'key' => 'premium-flipbox',
915
+ 'name' => 'premium-addon-flip-box',
916
+ 'title' => __( '3D Hover Box', 'premium-addons-for-elementor' ),
917
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/3d-hover-box-flip-box-widget-for-elementor/', 'settings-page', 'wp-dash', 'dashboard' ),
918
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/flip-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
919
+ 'is_pro' => true,
920
+ ),
921
+ array(
922
+ 'key' => 'premium-iconbox',
923
+ 'name' => 'premium-addon-icon-box',
924
+ 'title' => __( 'Icon Box', 'premium-addons-for-elementor' ),
925
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/icon-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
926
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/icon-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
927
+ 'is_pro' => true,
928
+ ),
929
+ array(
930
+ 'key' => 'premium-ihover',
931
+ 'name' => 'premium-ihover',
932
+ 'title' => __( 'iHover', 'premium-addons-for-elementor' ),
933
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/ihover-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
934
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-ihover-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
935
+ 'is_pro' => true,
936
+ ),
937
+ array(
938
+ 'key' => 'premium-unfold',
939
+ 'name' => 'premium-unfold-addon',
940
+ 'title' => __( 'Unfold', 'premium-addons-for-elementor' ),
941
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/unfold-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
942
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-unfold-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
943
+ 'is_pro' => true,
944
+ ),
945
+ array(
946
+ 'key' => 'premium-icon-list',
947
+ 'name' => 'premium-icon-list',
948
+ 'title' => __( 'Bullet List', 'premium-addons-for-elementor' ),
949
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-bullet-list-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
950
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/bullet-list-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
951
+ 'tutorial' => 'https://www.youtube.com/watch?v=MPeXJiZ14sI',
952
+ ),
953
+ ),
954
+ ),
955
+ 'cat-8' => array(
956
+ 'icon' => 'feed',
957
+ 'title' => __( 'Social Feed Widgets', 'premium-addons-for-elementor' ),
958
+ 'elements' => array(
959
+ array(
960
+ 'key' => 'premium-facebook-feed',
961
+ 'name' => 'premium-facebook-feed',
962
+ 'title' => __( 'Facebook Feed', 'premium-addons-for-elementor' ),
963
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-facebook-feed-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
964
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/facebook-feed-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
965
+ 'is_pro' => true,
966
+ ),
967
+ array(
968
+ 'key' => 'premium-twitter-feed',
969
+ 'name' => 'premium-twitter-feed',
970
+ 'title' => __( 'Twitter Feed', 'premium-addons-for-elementor' ),
971
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/twitter-feed-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
972
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/twitter-feed-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
973
+ 'tutorial' => 'https://www.youtube.com/watch?v=wsurRDuR6pg',
974
+ 'is_pro' => true,
975
+ ),
976
+ array(
977
+ 'key' => 'premium-instagram-feed',
978
+ 'name' => 'premium-addon-instagram-feed',
979
+ 'title' => __( 'Instagram Feed', 'premium-addons-for-elementor' ),
980
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/instagram-feed-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
981
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/instagram-feed/', 'settings-page', 'wp-dash', 'dashboard' ),
982
+ 'is_pro' => true,
983
+ ),
984
+ array(
985
+ 'key' => 'premium-behance',
986
+ 'name' => 'premium-behance-feed',
987
+ 'title' => __( 'Behance Feed', 'premium-addons-for-elementor' ),
988
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/behance-feed-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
989
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/behance-feed-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
990
+ 'tutorial' => 'https://www.youtube.com/watch?v=AXATK3oIXl0',
991
+ 'is_pro' => true,
992
+ ),
993
+ ),
994
+ ),
995
+ 'cat-9' => array(
996
+ 'icon' => 'data',
997
+ 'title' => __( 'Tables, Charts & Anything Data Widgets', 'premium-addons-for-elementor' ),
998
+ 'elements' => array(
999
+ array(
1000
+ 'key' => 'premium-progressbar',
1001
+ 'name' => 'premium-addon-progressbar',
1002
+ 'title' => __( 'Progress Bar', 'premium-addons-for-elementor' ),
1003
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/progress-bar-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1004
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-progress-bar-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
1005
+ 'tutorial' => 'https://www.youtube.com/watch?v=Y7xqwhgDQJg',
1006
+ ),
1007
+ array(
1008
+ 'key' => 'premium-pricing-table',
1009
+ 'name' => 'premium-addon-pricing-table',
1010
+ 'title' => __( 'Pricing Table', 'premium-addons-for-elementor' ),
1011
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/pricing-table-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1012
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/pricing-table-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
1013
+ ),
1014
+ array(
1015
+ 'key' => 'premium-charts',
1016
+ 'name' => 'premium-chart',
1017
+ 'title' => __( 'Charts', 'premium-addons-for-elementor' ),
1018
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/charts-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1019
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/charts-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
1020
+ 'tutorial' => 'https://www.youtube.com/watch?v=lZZvslQ2UYU',
1021
+ 'is_pro' => true,
1022
+ ),
1023
+ array(
1024
+ 'key' => 'premium-tables',
1025
+ 'name' => 'premium-tables-addon',
1026
+ 'title' => __( 'Table', 'premium-addons-for-elementor' ),
1027
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/table-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1028
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/table-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
1029
+ 'is_pro' => true,
1030
+ ),
1031
+ array(
1032
+ 'key' => 'premium-counter',
1033
+ 'name' => 'premium-counter',
1034
+ 'title' => __( 'Counter', 'premium-addons-for-elementor' ),
1035
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/counter-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1036
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/counter-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
1037
+ ),
1038
+ ),
1039
+ ),
1040
+ 'cat-10' => array(
1041
+ 'icon' => 'contact',
1042
+ 'title' => __( 'Contact Widgets', 'premium-addons-for-elementor' ),
1043
+ 'elements' => array(
1044
+ array(
1045
+ 'key' => 'premium-contactform',
1046
+ 'name' => 'premium-contact-form',
1047
+ 'title' => __( 'Contact Form 7', 'premium-addons-for-elementor' ),
1048
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/contact-form-7-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1049
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/contact-form-7-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
1050
+ ),
1051
+ array(
1052
+ 'key' => 'premium-fb-chat',
1053
+ 'name' => 'premium-addon-facebook-chat',
1054
+ 'title' => __( 'Facebook Messenger Chat', 'premium-addons-for-elementor' ),
1055
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/facebook-messenger-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1056
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/facebook-messenger/', 'settings-page', 'wp-dash', 'dashboard' ),
1057
+ 'is_pro' => true,
1058
+ ),
1059
+ array(
1060
+ 'key' => 'premium-whatsapp-chat',
1061
+ 'name' => 'premium-whatsapp-chat',
1062
+ 'title' => __( 'WhatsApp Chat', 'premium-addons-for-elementor' ),
1063
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/whatsapp-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1064
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/whatsapp-chat-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
1065
+ 'is_pro' => true,
1066
+ ),
1067
+ ),
1068
+ ),
1069
+ 'cat-11' => array(
1070
+ 'icon' => 'extensions',
1071
+ 'elements' => array(
1072
+ array(
1073
+ 'key' => 'premium-templates',
1074
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/premium-templates-for-elementor/', 'settings-page', 'wp-dash', 'dashboard' ),
1075
+ ),
1076
+ array(
1077
+ 'key' => 'premium-equal-height',
1078
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/premium-addons-global-features-for-elementor/#equal-height-feature', 'settings-page', 'wp-dash', 'dashboard' ),
1079
+ ),
1080
+ array(
1081
+ 'key' => 'pa-display-conditions',
1082
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-display-conditions/', 'settings-page', 'wp-dash', 'dashboard' ),
1083
+ ),
1084
+ array(
1085
+ 'key' => 'premium-global-cursor',
1086
+ 'is_pro' => true,
1087
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-custom-mouse-cursor-global-feature/', 'settings-page', 'wp-dash', 'dashboard' ),
1088
+ ),
1089
+ array(
1090
+ 'key' => 'premium-global-badge',
1091
+ 'is_pro' => true,
1092
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-badge-global-addon/', 'settings-page', 'wp-dash', 'dashboard' ),
1093
+ ),
1094
+ array(
1095
+ 'key' => 'premium-floating-effects',
1096
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-floating-effects-animation/', 'settings-page', 'wp-dash', 'dashboard' ),
1097
+ ),
1098
+ array(
1099
+ 'key' => 'premium-cross-domain',
1100
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/premium-addons-global-features-for-elementor/#common-features', 'settings-page', 'wp-dash', 'dashboard' ),
1101
+ ),
1102
+ array(
1103
+ 'key' => 'premium-duplicator',
1104
+ ),
1105
+ array(
1106
+ 'key' => 'premium-assets-generator',
1107
+ ),
1108
+ ),
1109
+ ),
1110
+ );
1111
+
1112
+ return $elements;
admin/includes/templates/modules-settings.php CHANGED
@@ -27,6 +27,24 @@ $row_meta = Helper_Functions::is_hide_row_meta();
27
  <form action="" method="POST" id="pa-settings" name="pa-settings" class="pa-settings-form">
28
  <div id="pa-modules" class="pa-settings-tab">
29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  <div class="pa-section-info-wrap">
31
  <div class="pa-section-info">
32
  <h4><?php echo __( 'Master Switch', 'premium-addons-for-elementor' ); ?></h4>
27
  <form action="" method="POST" id="pa-settings" name="pa-settings" class="pa-settings-form">
28
  <div id="pa-modules" class="pa-settings-tab">
29
 
30
+ <div class="pa-section-outer-wrap">
31
+ <div class="pa-section-info-wrap">
32
+ <div class="pa-section-info">
33
+ <h4><?php echo __( 'Dynamic Assets Generate', 'premium-addons-for-elementor' ); ?></h4>
34
+ <p><?php echo __( 'Generates CSS/JS files dynamically for each page based on the elements in it. Enable this setting for better performance (recommended).', 'premium-addons-for-elementor' ); ?></p>
35
+ </div>
36
+
37
+ <div class="pa-section-info-cta">
38
+ <label class="switch">
39
+ <input type="checkbox" id="premium-assets-generator" name="premium-assets-generator" <?php echo checked( 1, $enabled_elements['premium-assets-generator'], false ); ?>>
40
+ <span class="slider round"></span>
41
+ </label>
42
+ </p>
43
+ </div>
44
+
45
+ </div>
46
+ </div>
47
+
48
  <div class="pa-section-info-wrap">
49
  <div class="pa-section-info">
50
  <h4><?php echo __( 'Master Switch', 'premium-addons-for-elementor' ); ?></h4>
assets/frontend/css/common-rtl.css ADDED
@@ -0,0 +1,321 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ * Common Title/Dual Heading
3
+ */
4
+ .premium-title-bg-text:before {
5
+ position: absolute;
6
+ content: attr(data-background);
7
+ top: 0;
8
+ left: 0;
9
+ text-align: left;
10
+ }
11
+
12
+ .premium-bg-text-yes .elementor-widget-container:before {
13
+ position: absolute;
14
+ top: 0;
15
+ left: 0;
16
+ text-align: left;
17
+ }
18
+
19
+ .premium-mask-yes .premium-dual-header-first-clip .premium-dual-header-first-span .premium-mask-span,
20
+ .premium-mask-yes .premium-dual-header-second-clip .premium-mask-span {
21
+ background: inherit;
22
+ }
23
+
24
+ .premium-mask-yes .premium-mask-span {
25
+ position: relative;
26
+ overflow: hidden;
27
+ -js-display: inline-flex !important;
28
+ display: -webkit-inline-box !important;
29
+ display: -webkit-inline-flex !important;
30
+ display: -moz-inline-box !important;
31
+ display: -ms-inline-flexbox !important;
32
+ display: inline-flex !important;
33
+ }
34
+
35
+ .premium-mask-yes .premium-mask-span::after {
36
+ content: "";
37
+ position: absolute;
38
+ top: 0;
39
+ right: 0px;
40
+ width: 100%;
41
+ height: 100%;
42
+ background-color: currentColor;
43
+ -webkit-backface-visibility: visible;
44
+ backface-visibility: visible;
45
+ }
46
+
47
+ .premium-mask-active.premium-mask-tr .premium-mask-span::after {
48
+ -webkit-animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
49
+ animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
50
+ -webkit-transform: translateX(-103%);
51
+ -ms-transform: translateX(-103%);
52
+ transform: translateX(-103%);
53
+ }
54
+
55
+ .premium-mask-active.premium-mask-tl .premium-mask-span::after {
56
+ -webkit-animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
57
+ animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
58
+ -webkit-transform: translateX(103%);
59
+ -ms-transform: translateX(103%);
60
+ transform: translateX(103%);
61
+ }
62
+
63
+ .premium-mask-active.premium-mask-tb .premium-mask-span::after {
64
+ -webkit-animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
65
+ animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
66
+ -webkit-transform: translateY(-103%);
67
+ -ms-transform: translateY(-103%);
68
+ transform: translateY(-103%);
69
+ }
70
+
71
+ .premium-mask-active.premium-mask-tt .premium-mask-span::after {
72
+ -webkit-animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
73
+ animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
74
+ -webkit-transform: translateY(103%);
75
+ -ms-transform: translateY(103%);
76
+ transform: translateY(103%);
77
+ }
78
+
79
+ @-webkit-keyframes pa-mask-tr {
80
+ 0% {
81
+ -webkit-transform: translateX(0%);
82
+ transform: translateX(0%);
83
+ }
84
+
85
+ 100% {
86
+ -webkit-transform: translateX(103%);
87
+ transform: translateX(103%);
88
+ }
89
+ }
90
+
91
+ @keyframes pa-mask-tr {
92
+ 0% {
93
+ -webkit-transform: translateX(0%);
94
+ transform: translateX(0%);
95
+ }
96
+
97
+ 100% {
98
+ -webkit-transform: translateX(103%);
99
+ transform: translateX(103%);
100
+ }
101
+ }
102
+
103
+ @-webkit-keyframes pa-mask-tl {
104
+ 0% {
105
+ -webkit-transform: translateX(0%);
106
+ transform: translateX(0%);
107
+ }
108
+
109
+ 100% {
110
+ -webkit-transform: translateX(-103%);
111
+ transform: translateX(-103%);
112
+ }
113
+ }
114
+
115
+ @keyframes pa-mask-tl {
116
+ 0% {
117
+ -webkit-transform: translateX(0%);
118
+ transform: translateX(0%);
119
+ }
120
+
121
+ 100% {
122
+ -webkit-transform: translateX(-103%);
123
+ transform: translateX(-103%);
124
+ }
125
+ }
126
+
127
+ @-webkit-keyframes pa-mask-tb {
128
+ 0% {
129
+ -webkit-transform: translateY(0%);
130
+ transform: translateY(0%);
131
+ }
132
+
133
+ 100% {
134
+ -webkit-transform: translateY(103%);
135
+ transform: translateY(103%);
136
+ }
137
+ }
138
+
139
+ @keyframes pa-mask-tb {
140
+ 0% {
141
+ -webkit-transform: translateY(0%);
142
+ transform: translateY(0%);
143
+ }
144
+
145
+ 100% {
146
+ -webkit-transform: translateY(103%);
147
+ transform: translateY(103%);
148
+ }
149
+ }
150
+
151
+ @-webkit-keyframes pa-mask-tt {
152
+ 0% {
153
+ -webkit-transform: translateY(0%);
154
+ transform: translateY(0%);
155
+ }
156
+
157
+ 100% {
158
+ -webkit-transform: translateY(-103%);
159
+ transform: translateY(-103%);
160
+ }
161
+ }
162
+
163
+ @keyframes pa-mask-tt {
164
+ 0% {
165
+ -webkit-transform: translateY(0%);
166
+ transform: translateY(0%);
167
+ }
168
+
169
+ 100% {
170
+ -webkit-transform: translateY(-103%);
171
+ transform: translateY(-103%);
172
+ }
173
+ }
174
+
175
+ /*
176
+ * Common Button style.
177
+ */
178
+ .premium-button .premium-lottie-animation,
179
+ .premium-image-button .premium-lottie-animation {
180
+ -js-display: flex;
181
+ display: -webkit-box;
182
+ display: -webkit-flex;
183
+ display: -moz-box;
184
+ display: -ms-flexbox;
185
+ display: flex;
186
+ }
187
+
188
+ .premium-button svg,
189
+ .premium-image-button svg {
190
+ width: 30px;
191
+ height: 30px;
192
+ }
193
+
194
+ .premium-btn-sm,
195
+ .premium-btn-md,
196
+ .premium-btn-lg,
197
+ .premium-btn-block {
198
+ background-color: #eee;
199
+ color: #042551;
200
+ margin: 0px;
201
+ text-decoration: none;
202
+ }
203
+
204
+ .premium-btn-sm:hover,
205
+ .premium-btn-md:hover,
206
+ .premium-btn-lg:hover,
207
+ .premium-btn-block:hover {
208
+ background-color: #54595f;
209
+ color: #eee;
210
+ }
211
+
212
+ .premium-btn-sm {
213
+ padding: 12px 24px;
214
+ font-size: 14px;
215
+ line-height: 1;
216
+ }
217
+
218
+ .premium-btn-md {
219
+ padding: 14px 26px;
220
+ font-size: 16px;
221
+ line-height: 1.2;
222
+ }
223
+
224
+ .premium-btn-lg {
225
+ padding: 16px 28px;
226
+ font-size: 18px;
227
+ line-height: 1.3333;
228
+ }
229
+
230
+ .premium-btn-block {
231
+ font-size: 18px;
232
+ line-height: 1;
233
+ padding: 20px 0px;
234
+ width: 100%;
235
+ text-align: center;
236
+ }
237
+
238
+ .premium-button-text {
239
+ display: inline-block;
240
+ width: 100%;
241
+ }
242
+
243
+ /*
244
+ * Common Button/Image Button Mouse Detect Effect.
245
+ */
246
+ .premium-mouse-detect-yes .premium-button-style6 .premium-button-style6-bg {
247
+ position: absolute;
248
+ z-index: 0;
249
+ top: 0;
250
+ right: 0;
251
+ width: 0px;
252
+ height: 0px;
253
+ -webkit-border-radius: 50%;
254
+ border-radius: 50%;
255
+ display: block;
256
+ -webkit-transform: translate(50%, -50%);
257
+ -ms-transform: translate(50%, -50%);
258
+ transform: translate(50%, -50%);
259
+ -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
260
+ transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
261
+ }
262
+
263
+ .premium-mouse-detect-yes .premium-button-style6:hover .premium-button-style6-bg {
264
+ width: 225%;
265
+ height: 560px;
266
+ }
267
+
268
+ .premium-mouse-detect-yes .premium-button-style6:before {
269
+ width: 0;
270
+ height: 0;
271
+ }
272
+
273
+ /**Animation*/
274
+ @-webkit-keyframes spin {
275
+ 0% {
276
+ -webkit-transform: rotate(0deg);
277
+ }
278
+
279
+ 100% {
280
+ -webkit-transform: rotate(-360deg);
281
+ }
282
+ }
283
+
284
+ @keyframes spin {
285
+ 0% {
286
+ -webkit-transform: rotate(0deg);
287
+ transform: rotate(0deg);
288
+ }
289
+
290
+ 100% {
291
+ -webkit-transform: rotate(-360deg);
292
+ transform: rotate(-360deg);
293
+ }
294
+ }
295
+
296
+ /** Notice*/
297
+ .premium-error-notice {
298
+ width: 100%;
299
+ padding: 10px;
300
+ color: #b94a48;
301
+ background-color: #f2dede;
302
+ border-color: #eed3d7;
303
+ text-align: center;
304
+ }
305
+
306
+ /**Loader*/
307
+ .premium-loader {
308
+ border: 3px solid #f3f3f3;
309
+ border-top-width: 3px;
310
+ border-top-style: solid;
311
+ border-top-color: rgb(243, 243, 243);
312
+ -webkit-border-radius: 50%;
313
+ border-radius: 50%;
314
+ border-top: 3px solid;
315
+ border-top-color: #bbb;
316
+ width: 30px;
317
+ height: 30px;
318
+ -webkit-animation: spin 2s linear infinite;
319
+ animation: spin 2s linear infinite;
320
+ margin: 0 auto;
321
+ }
assets/frontend/css/common.css ADDED
@@ -0,0 +1,257 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ * Common Title/Dual Heading
3
+ */
4
+ .premium-title-bg-text:before {
5
+ position: absolute;
6
+ content: attr(data-background);
7
+ top: 0;
8
+ left: 0;
9
+ text-align: left; }
10
+
11
+ .premium-bg-text-yes .elementor-widget-container:before {
12
+ position: absolute;
13
+ top: 0;
14
+ left: 0;
15
+ text-align: left; }
16
+
17
+ .premium-mask-yes .premium-dual-header-first-clip .premium-dual-header-first-span .premium-mask-span,
18
+ .premium-mask-yes .premium-dual-header-second-clip .premium-mask-span {
19
+ background: inherit; }
20
+
21
+ .premium-mask-yes .premium-mask-span {
22
+ position: relative;
23
+ overflow: hidden;
24
+ -js-display: inline-flex !important;
25
+ display: -webkit-inline-box !important;
26
+ display: -webkit-inline-flex !important;
27
+ display: -moz-inline-box !important;
28
+ display: -ms-inline-flexbox !important;
29
+ display: inline-flex !important; }
30
+ .premium-mask-yes .premium-mask-span::after {
31
+ content: "";
32
+ position: absolute;
33
+ top: 0;
34
+ right: 0px;
35
+ width: 100%;
36
+ height: 100%;
37
+ background-color: currentColor;
38
+ -webkit-backface-visibility: visible;
39
+ backface-visibility: visible; }
40
+
41
+ .premium-mask-active.premium-mask-tr .premium-mask-span::after {
42
+ -webkit-animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
43
+ animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
44
+ -webkit-transform: translateX(-103%);
45
+ -ms-transform: translateX(-103%);
46
+ transform: translateX(-103%); }
47
+
48
+ .premium-mask-active.premium-mask-tl .premium-mask-span::after {
49
+ -webkit-animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
50
+ animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
51
+ -webkit-transform: translateX(103%);
52
+ -ms-transform: translateX(103%);
53
+ transform: translateX(103%); }
54
+
55
+ .premium-mask-active.premium-mask-tb .premium-mask-span::after {
56
+ -webkit-animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
57
+ animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
58
+ -webkit-transform: translateY(-103%);
59
+ -ms-transform: translateY(-103%);
60
+ transform: translateY(-103%); }
61
+
62
+ .premium-mask-active.premium-mask-tt .premium-mask-span::after {
63
+ -webkit-animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
64
+ animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
65
+ -webkit-transform: translateY(103%);
66
+ -ms-transform: translateY(103%);
67
+ transform: translateY(103%); }
68
+
69
+ @-webkit-keyframes pa-mask-tr {
70
+ 0% {
71
+ -webkit-transform: translateX(0%);
72
+ transform: translateX(0%); }
73
+ 100% {
74
+ -webkit-transform: translateX(103%);
75
+ transform: translateX(103%); } }
76
+
77
+ @keyframes pa-mask-tr {
78
+ 0% {
79
+ -webkit-transform: translateX(0%);
80
+ transform: translateX(0%); }
81
+ 100% {
82
+ -webkit-transform: translateX(103%);
83
+ transform: translateX(103%); } }
84
+
85
+ @-webkit-keyframes pa-mask-tl {
86
+ 0% {
87
+ -webkit-transform: translateX(0%);
88
+ transform: translateX(0%); }
89
+ 100% {
90
+ -webkit-transform: translateX(-103%);
91
+ transform: translateX(-103%); } }
92
+
93
+ @keyframes pa-mask-tl {
94
+ 0% {
95
+ -webkit-transform: translateX(0%);
96
+ transform: translateX(0%); }
97
+ 100% {
98
+ -webkit-transform: translateX(-103%);
99
+ transform: translateX(-103%); } }
100
+
101
+ @-webkit-keyframes pa-mask-tb {
102
+ 0% {
103
+ -webkit-transform: translateY(0%);
104
+ transform: translateY(0%); }
105
+ 100% {
106
+ -webkit-transform: translateY(103%);
107
+ transform: translateY(103%); } }
108
+
109
+ @keyframes pa-mask-tb {
110
+ 0% {
111
+ -webkit-transform: translateY(0%);
112
+ transform: translateY(0%); }
113
+ 100% {
114
+ -webkit-transform: translateY(103%);
115
+ transform: translateY(103%); } }
116
+
117
+ @-webkit-keyframes pa-mask-tt {
118
+ 0% {
119
+ -webkit-transform: translateY(0%);
120
+ transform: translateY(0%); }
121
+ 100% {
122
+ -webkit-transform: translateY(-103%);
123
+ transform: translateY(-103%); } }
124
+
125
+ @keyframes pa-mask-tt {
126
+ 0% {
127
+ -webkit-transform: translateY(0%);
128
+ transform: translateY(0%); }
129
+ 100% {
130
+ -webkit-transform: translateY(-103%);
131
+ transform: translateY(-103%); } }
132
+
133
+ /*
134
+ * Common Buttons Style.
135
+ */
136
+ .premium-button .premium-lottie-animation,
137
+ .premium-image-button .premium-lottie-animation {
138
+ -js-display: flex;
139
+ display: -webkit-box;
140
+ display: -webkit-flex;
141
+ display: -moz-box;
142
+ display: -ms-flexbox;
143
+ display: flex; }
144
+
145
+ .premium-button svg,
146
+ .premium-image-button svg {
147
+ width: 30px;
148
+ height: 30px; }
149
+
150
+ .premium-btn-sm,
151
+ .premium-btn-md,
152
+ .premium-btn-lg,
153
+ .premium-btn-block {
154
+ background-color: #eee;
155
+ color: #042551;
156
+ margin: 0px;
157
+ text-decoration: none; }
158
+ .premium-btn-sm:hover,
159
+ .premium-btn-md:hover,
160
+ .premium-btn-lg:hover,
161
+ .premium-btn-block:hover {
162
+ background-color: #54595f;
163
+ color: #eee; }
164
+
165
+ .premium-btn-sm {
166
+ padding: 12px 24px;
167
+ font-size: 14px;
168
+ line-height: 1; }
169
+
170
+ .premium-btn-md {
171
+ padding: 14px 26px;
172
+ font-size: 16px;
173
+ line-height: 1.2; }
174
+
175
+ .premium-btn-lg {
176
+ padding: 16px 28px;
177
+ font-size: 18px;
178
+ line-height: 1.3333; }
179
+
180
+ .premium-btn-block {
181
+ font-size: 18px;
182
+ line-height: 1;
183
+ padding: 20px 0px;
184
+ width: 100%;
185
+ text-align: center; }
186
+
187
+ .premium-button-text {
188
+ display: inline-block;
189
+ width: 100%; }
190
+
191
+ /*
192
+ * Common Button/Image Button Mouse Detect Effect.
193
+ */
194
+ .premium-mouse-detect-yes .premium-button-style6 .premium-button-style6-bg {
195
+ position: absolute;
196
+ z-index: 0;
197
+ top: 0;
198
+ left: 0;
199
+ width: 0px;
200
+ height: 0px;
201
+ -webkit-border-radius: 50%;
202
+ border-radius: 50%;
203
+ display: block;
204
+ -webkit-transform: translate(-50%, -50%);
205
+ -ms-transform: translate(-50%, -50%);
206
+ transform: translate(-50%, -50%);
207
+ -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
208
+ transition: width 0.4s ease-in-out, height 0.4s ease-in-out; }
209
+
210
+ .premium-mouse-detect-yes .premium-button-style6:hover .premium-button-style6-bg {
211
+ width: 225%;
212
+ height: 560px; }
213
+
214
+ .premium-mouse-detect-yes .premium-button-style6:before {
215
+ width: 0;
216
+ height: 0; }
217
+
218
+ /** Loader */
219
+ .premium-loader {
220
+ border: 3px solid #f3f3f3;
221
+ border-top-width: 3px;
222
+ border-top-style: solid;
223
+ border-top-color: #f3f3f3;
224
+ -webkit-border-radius: 50%;
225
+ border-radius: 50%;
226
+ border-top: 3px solid;
227
+ border-top-color: #bbb;
228
+ width: 30px;
229
+ height: 30px;
230
+ -webkit-animation: spin 2s linear infinite;
231
+ animation: spin 2s linear infinite;
232
+ margin: 0 auto; }
233
+
234
+ /** Common Animation */
235
+ @-webkit-keyframes spin {
236
+ 0% {
237
+ -webkit-transform: rotate(0deg);
238
+ transform: rotate(0deg); }
239
+ 100% {
240
+ -webkit-transform: rotate(360deg);
241
+ transform: rotate(360deg); } }
242
+ @keyframes spin {
243
+ 0% {
244
+ -webkit-transform: rotate(0deg);
245
+ transform: rotate(0deg); }
246
+ 100% {
247
+ -webkit-transform: rotate(360deg);
248
+ transform: rotate(360deg); } }
249
+
250
+ /**Notice*/
251
+ .premium-error-notice {
252
+ width: 100%;
253
+ padding: 10px;
254
+ color: #b94a48;
255
+ background-color: #f2dede;
256
+ border-color: #eed3d7;
257
+ text-align: center; }
assets/frontend/css/premium-addons-rtl.css CHANGED
@@ -1,14 +1,11 @@
1
- @font-face {
2
- font-family: "pa-elements";
3
- src: url("../../editor/fonts/pa-elements.eot?9e1efm");
4
- src: url("../../editor/fonts/pa-elements.eot?9e1efm#iefix") format("embedded-opentype"),
5
- url("../../editor/fonts/pa-elements.ttf?9e1efm") format("truetype"),
6
- url("../../editor/fonts/pa-elements.woff?9e1efm") format("woff"),
7
- url("../../editor/fonts/pa-elements.svg?9e1efm#pa-elements") format("svg");
8
- font-weight: normal;
9
- font-style: normal;
10
  }
11
-
12
  /**************** Premium Banner ****************/
13
  /************************************************/
14
  .elementor-widget-premium-addon-banner {
@@ -1488,7902 +1485,7745 @@
1488
  -webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
1489
  transform: translate3d(-10px, 0, 0) scale(1.1);
1490
  }
 
 
 
 
 
 
1491
 
1492
- /************ Premium Countdown ************/
1493
- /*******************************************/
1494
- .premium-countdown {
1495
- -js-display: flex;
1496
- display: -webkit-box;
1497
- display: -webkit-flex;
1498
- display: -moz-box;
1499
- display: -ms-flexbox;
1500
- display: flex;
1501
- text-align: center;
1502
  }
1503
 
1504
- .countdown-row {
1505
- display: block;
1506
- text-align: center;
 
1507
  }
1508
 
1509
- .countdown .countdown-section {
1510
- display: inline-block;
1511
- max-width: 100%;
1512
- margin-bottom: 15px;
1513
- -js-display: inline-flex;
1514
- display: -webkit-inline-box;
1515
- display: -webkit-inline-flex;
1516
- display: -moz-inline-box;
1517
- display: -ms-inline-flexbox;
1518
- display: inline-flex;
1519
- -webkit-box-align: center;
1520
- -webkit-align-items: center;
1521
- -moz-box-align: center;
1522
- -ms-flex-align: center;
1523
- align-items: center;
1524
  }
1525
 
1526
- .countdown .countdown-section:last-child {
1527
- margin-left: 0;
 
 
 
 
 
1528
  }
1529
 
1530
- .countdown span.countdown-amount {
1531
- font-size: 70px;
1532
- line-height: 1;
1533
- padding: 40px;
 
1534
  }
1535
 
1536
- .countdown .pre_time-mid {
1537
- display: block;
 
1538
  }
1539
 
1540
- .premium-countdown-separator-yes .countdown_separator {
1541
- display: block;
1542
- margin: 0 50px;
1543
- font-size: 30px;
1544
  }
1545
 
1546
- .premium-countdown-separator-yes .countdown-row .countdown-section:last-child .countdown_separator,
1547
- .premium-countdown-separator-yes .premium-countdown-block:last-child .countdown_separator {
1548
- display: none;
 
1549
  }
1550
 
1551
- /**
1552
- * Digit and unit styles
1553
- */
1554
- .side .countdown-section .countdown-period {
1555
- vertical-align: bottom;
1556
  }
1557
 
1558
- .countdown .countdown-section .countdown-period {
1559
- font-size: 17px;
1560
- line-height: 3em;
 
1561
  }
1562
 
1563
- .side .countdown-section .countdown-amount,
1564
- .side .countdown-section .countdown-period {
1565
- display: inline-block;
 
1566
  }
1567
 
1568
- .side .countdown-section .countdown-amount {
1569
- margin-left: 5px;
 
1570
  }
1571
 
1572
- .down .countdown-section .countdown-amount,
1573
- .down .countdown-section .countdown-period {
1574
- display: block;
1575
  }
1576
 
1577
- /**
1578
- * Flip Layout
1579
- */
1580
- .premium-countdown-flip .premium-countdown-block {
1581
- text-align: center;
1582
- -js-display: inline-flex;
1583
- display: -webkit-inline-box;
1584
- display: -webkit-inline-flex;
1585
- display: -moz-inline-box;
1586
- display: -ms-inline-flexbox;
1587
- display: inline-flex;
1588
- -webkit-box-align: center;
1589
- -webkit-align-items: center;
1590
- -moz-box-align: center;
1591
- -ms-flex-align: center;
1592
- align-items: center;
1593
  }
1594
 
1595
- .premium-countdown-flip .premium-countdown-block:last-child {
1596
- margin-left: 0;
 
1597
  }
1598
 
1599
- .premium-countdown-flip .premium-countdown-label {
1600
- overflow: hidden;
1601
- color: #1a1a1a;
1602
- text-transform: uppercase;
1603
  }
1604
 
1605
- .premium-countdown-flip .premium-countdown-figure {
1606
- position: relative;
1607
- height: 110px;
1608
- width: 100px;
1609
- line-height: 107px;
1610
- background-color: #fff;
1611
- -webkit-border-radius: 10px;
1612
- border-radius: 10px;
1613
- -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset -2px 4px 0 0 rgba(255, 255, 255, 0.08);
1614
- box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset -2px 4px 0 0 rgba(255, 255, 255, 0.08);
1615
  }
1616
 
1617
- .premium-countdown-flip .premium-countdown-figure:last-child {
1618
- margin-left: 0;
 
 
 
 
 
 
1619
  }
1620
 
1621
- .premium-countdown-flip .premium-countdown-figure>span {
1622
- position: absolute;
1623
- right: 0;
1624
- left: 0;
1625
- margin: auto;
1626
- font-weight: 700;
1627
  }
1628
 
1629
- .premium-countdown-flip .premium-countdown-figure .top {
1630
- z-index: 3;
1631
- -webkit-transform-origin: 50% 100%;
1632
- -ms-transform-origin: 50% 100%;
1633
- transform-origin: 50% 100%;
1634
- -webkit-transform: perspective(200px);
1635
- transform: perspective(200px);
1636
- -webkit-backface-visibility: hidden;
1637
- backface-visibility: hidden;
1638
  }
1639
 
1640
- .premium-countdown-flip .premium-countdown-figure .bottom {
1641
- z-index: 1;
 
1642
  }
1643
 
1644
- .premium-countdown-flip .premium-countdown-figure .bottom::before {
1645
- content: "";
1646
- position: absolute;
1647
- display: block;
1648
- top: 0;
1649
- right: 0;
1650
- width: 100%;
1651
- height: 50%;
1652
- background-color: rgba(0, 0, 0, 0.02);
1653
  }
1654
 
1655
- .premium-countdown-flip .premium-countdown-figure .top-back {
1656
- -webkit-backface-visibility: hidden;
1657
- backface-visibility: hidden;
1658
- z-index: 4;
1659
- bottom: 0;
1660
- -webkit-transform-origin: 50% 0;
1661
- -ms-transform-origin: 50% 0;
1662
- transform-origin: 50% 0;
1663
- -webkit-transform: perspective(200px) rotateX(180deg);
1664
- transform: perspective(200px) rotateX(180deg);
1665
  }
1666
 
1667
- .premium-countdown-flip .premium-countdown-figure .top-back span {
1668
- position: absolute;
1669
- top: -100%;
1670
- right: 0;
1671
- left: 0;
1672
- margin: auto;
1673
  }
1674
 
1675
- .premium-countdown-flip .premium-countdown-figure .bottom-back {
1676
- z-index: 2;
1677
- top: 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
1678
  }
1679
 
1680
- .premium-countdown-flip .premium-countdown-figure .bottom-back span {
1681
- position: absolute;
1682
- top: 0;
1683
- right: 0;
1684
- left: 0;
1685
- margin: auto;
1686
  }
1687
 
1688
- .premium-countdown-flip .premium-countdown-figure .top,
1689
- .premium-countdown-flip .premium-countdown-figure .bottom-back,
1690
- .premium-countdown-flip .premium-countdown-figure .top-back {
1691
- height: 50%;
1692
- overflow: hidden;
1693
- background-color: #f7f7f7;
1694
- -webkit-border-top-right-radius: 10px;
1695
- border-top-right-radius: 10px;
1696
- -webkit-border-top-left-radius: 10px;
1697
- border-top-left-radius: 10px;
1698
  }
1699
 
1700
- .premium-countdown-flip .premium-countdown-figure .top-back {
1701
- -webkit-border-bottom-right-radius: 10px;
1702
- border-bottom-right-radius: 10px;
1703
- -webkit-border-bottom-left-radius: 10px;
1704
- border-bottom-left-radius: 10px;
1705
  }
1706
 
1707
- .premium-countdown-flip .premium-countdown-figure .top::after,
1708
- .premium-countdown-flip .premium-countdown-figure .bottom-back::after {
1709
- content: "";
1710
- position: absolute;
1711
- z-index: -1;
1712
- right: 0;
1713
- bottom: 0;
1714
- width: 100%;
1715
- height: 100%;
1716
- border-bottom: 1px solid rgba(0, 0, 0, 0.1);
1717
  }
1718
 
1719
- .side .premium-countdown-figure,
1720
- .side .premium-countdown-label {
1721
- display: inline-block;
 
 
 
 
 
 
 
 
1722
  }
1723
 
1724
- .side .premium-countdown-figure {
1725
- margin-left: 5px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1726
  }
1727
 
1728
- .down .premium-countdown-figure,
1729
- .down .premium-countdown-label {
1730
- display: block;
 
 
 
 
 
1731
  }
1732
 
1733
- .down .premium-countdown-label {
1734
- width: 100%;
 
 
 
 
 
1735
  }
1736
 
1737
- /**************** Premium Carousel **************/
1738
- /************************************************/
1739
- .premium-carousel-wrapper a.carousel-arrow,
1740
- .premium-carousel-wrapper a.ver-carousel-arrow,
1741
- .premium-fb-rev-container a.carousel-arrow,
1742
- .premium-tabs-nav-list a.carousel-arrow,
1743
- .premium-blog-wrap a.carousel-arrow,
1744
- .premium-hscroll-wrap a.carousel-arrow,
1745
- .premium-twitter-feed-wrapper a.carousel-arrow,
1746
- .premium-facebook-feed-wrapper a.carousel-arrow,
1747
- .premium-instafeed-container a.carousel-arrow,
1748
- .premium-persons-container a.carousel-arrow,
1749
- .premium-woocommerce a.carousel-arrow {
1750
- display: -ms-flexbox;
1751
- display: -webkit-flex;
1752
- display: -moz-flex;
1753
- display: -ms-flex;
1754
- -js-display: flex;
1755
- display: -webkit-box;
1756
- display: -moz-box;
1757
- display: flex;
1758
- -webkit-box-align: center;
1759
- -webkit-align-items: center;
1760
- -moz-box-align: center;
1761
- -ms-flex-align: center;
1762
- align-items: center;
1763
- -webkit-box-pack: center;
1764
- -webkit-justify-content: center;
1765
- -moz-box-pack: center;
1766
- -ms-flex-pack: center;
1767
- justify-content: center;
1768
- width: 2em;
1769
- height: 2em;
1770
- line-height: 0;
1771
- text-align: center;
1772
- position: absolute;
1773
- z-index: 99;
1774
- cursor: pointer;
1775
- -webkit-transition: all 0.3s ease-in-out;
1776
- transition: all 0.3s ease-in-out;
1777
- -webkit-appearance: inherit;
1778
- border: none;
1779
- -webkit-box-shadow: none;
1780
- box-shadow: none;
1781
  }
1782
 
1783
- .premium-carousel-wrapper a.carousel-arrow svg,
1784
- .premium-carousel-wrapper a.ver-carousel-arrow svg {
1785
- -webkit-transition: all 0.3s ease-in-out;
1786
- transition: all 0.3s ease-in-out;
 
 
1787
  }
1788
 
1789
- div[class^="premium-"] .slick-arrow i {
1790
- display: block;
1791
  }
1792
 
1793
- .ver-carousel-arrow.carousel-next i {
1794
- margin-bottom: -3px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1795
  }
1796
 
1797
- .premium-carousel-wrapper a.slick-arrow:hover {
1798
- -webkit-box-shadow: none !important;
1799
- box-shadow: none !important;
 
 
1800
  }
1801
 
1802
- .premium-carousel-wrapper .premium-carousel-content-hidden {
1803
- visibility: hidden;
1804
- }
1805
-
1806
- .premium-carousel-wrapper a.carousel-arrow,
1807
- .premium-fb-rev-container a.carousel-arrow,
1808
- .premium-tabs-nav-list a.carousel-arrow,
1809
- .premium-blog-wrap a.carousel-arrow,
1810
- .premium-hscroll-wrap a.carousel-arrow,
1811
- .premium-twitter-feed-wrapper a.carousel-arrow,
1812
- .premium-facebook-feed-wrapper a.carousel-arrow,
1813
- .premium-instafeed-container a.carousel-arrow,
1814
- .premium-persons-container a.carousel-arrow,
1815
- .premium-woocommerce a.carousel-arrow {
1816
- top: 50%;
1817
- -webkit-transform: translateY(-50%);
1818
- -ms-transform: translateY(-50%);
1819
- transform: translateY(-50%);
1820
  }
1821
 
1822
- .premium-carousel-wrapper a.ver-carousel-arrow {
1823
- right: 50%;
1824
- -webkit-transform: translateX(50%);
1825
- -ms-transform: translateX(50%);
1826
- transform: translateX(50%);
 
 
 
 
 
1827
  }
1828
 
1829
- a.carousel-arrow.carousel-next {
1830
- right: -20px;
1831
- left: auto;
 
 
 
 
 
 
1832
  }
1833
 
1834
- a.carousel-arrow.carousel-prev {
1835
- left: -20px;
1836
- right: auto;
 
 
 
 
 
 
1837
  }
1838
 
1839
- a.ver-carousel-arrow.carousel-next {
1840
- bottom: -56px;
 
 
 
 
 
 
 
 
 
 
 
1841
  }
1842
 
1843
- a.ver-carousel-arrow.carousel-prev {
1844
- top: -45px;
 
1845
  }
1846
 
1847
- a.circle-bg {
1848
- -webkit-border-radius: 100%;
1849
- border-radius: 100%;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1850
  }
1851
 
1852
- a.circle-border {
1853
- -webkit-border-radius: 100%;
1854
- border-radius: 100%;
1855
- border: solid black;
 
1856
  }
1857
 
1858
- a.square-border {
1859
- border: solid black;
 
 
 
 
 
 
 
 
 
 
 
1860
  }
1861
 
1862
- .premium-carousel-dots-below,
1863
- .premium-blog-wrap ul.slick-dots,
1864
- .premium-fb-rev-reviews ul.slick-dots,
1865
- .premium-woocommerce ul.slick-dots {
1866
- position: relative;
1867
- bottom: 0;
1868
- list-style: none;
1869
- text-align: center;
1870
- margin: 0;
1871
- padding: 0;
 
 
 
 
1872
  }
1873
 
1874
- .premium-carousel-dots-above ul.slick-dots {
1875
- position: absolute;
1876
- display: -ms-flexbox;
1877
- display: -webkit-flex;
1878
- display: -moz-flex;
1879
- display: -ms-flex;
1880
- -js-display: flex;
1881
- display: -webkit-box;
1882
- display: -moz-box;
1883
- display: flex;
1884
- top: 50%;
1885
- -webkit-transform: translateY(-50%);
1886
- -ms-transform: translateY(-50%);
1887
- transform: translateY(-50%);
1888
- -webkit-flex-direction: column;
1889
- -webkit-box-orient: vertical;
1890
- -webkit-box-direction: normal;
1891
- -moz-box-orient: vertical;
1892
- -moz-box-direction: normal;
1893
- -ms-flex-direction: column;
1894
- flex-direction: column;
1895
- }
1896
-
1897
- ul.slick-dots li {
1898
- font-size: 10px;
1899
- display: -webkit-inline-box;
1900
- display: -webkit-inline-flex;
1901
- display: -ms-inline-flexbox;
1902
- -js-display: inline-flex;
1903
- display: -moz-inline-box;
1904
- display: inline-flex;
1905
- -webkit-box-pack: center;
1906
- -webkit-justify-content: center;
1907
- -moz-box-pack: center;
1908
- -ms-flex-pack: center;
1909
- justify-content: center;
1910
- -webkit-box-align: center;
1911
- -webkit-align-items: center;
1912
- -moz-box-align: center;
1913
- -ms-flex-align: center;
1914
- align-items: center;
1915
- margin: 5px;
1916
- width: 20px;
1917
- height: 20px;
1918
- cursor: pointer;
1919
  }
1920
 
1921
- /*
1922
- * Custom Navigation Dot
1923
- */
1924
- .premium-carousel-wrapper .premium-carousel-nav-dot,
1925
- .premium-carousel-wrapper .premium-carousel-nav-arrow-prev,
1926
- .premium-carousel-wrapper .premium-carousel-nav-arrow-next {
1927
- display: none;
 
 
1928
  }
1929
 
1930
- .premium-carousel-wrapper ul.slick-dots svg {
1931
- width: 20px;
1932
- height: 20px;
1933
- outline: none !important;
1934
  }
1935
 
1936
- /* Ripple Out */
1937
- @-webkit-keyframes hvr-ripple-out {
1938
- 0% {
1939
- -webkit-transform: scale(1);
1940
- transform: scale(1);
1941
- opacity: 1;
1942
- }
 
 
1943
 
1944
- 100% {
1945
- -webkit-transform: scale(1.5);
1946
- transform: scale(1.5);
1947
- opacity: 0;
1948
- }
 
 
 
 
 
1949
  }
1950
 
1951
- @keyframes hvr-ripple-out {
1952
- 0% {
1953
- -webkit-transform: scale(1);
1954
- transform: scale(1);
1955
- opacity: 1;
1956
- }
 
 
 
 
 
 
 
 
 
1957
 
1958
- 100% {
1959
- -webkit-transform: scale(1.5);
1960
- transform: scale(1.5);
1961
- opacity: 0;
1962
- }
 
 
 
 
 
 
 
 
 
1963
  }
1964
 
1965
- .premium-carousel-ripple-yes .premium-carousel-wrapper {
1966
- padding-bottom: 1px;
 
1967
  }
1968
 
1969
- .premium-carousel-ripple-yes ul.slick-dots li,
1970
- .premium-carousel-ripple-yes ul.slick-dots li i {
1971
- position: relative;
 
1972
  }
1973
 
1974
- .premium-carousel-ripple-yes ul.slick-dots li i {
1975
- z-index: 1;
 
 
1976
  }
1977
 
1978
- .premium-carousel-ripple-yes ul.slick-dots li:hover:before {
1979
- content: "";
1980
- position: absolute;
1981
- -webkit-transform: scale(1);
1982
- -ms-transform: scale(1);
1983
- transform: scale(1);
1984
- top: 0;
1985
- left: 0;
1986
- bottom: 0;
1987
- right: 0;
1988
- -webkit-border-radius: 50%;
1989
- border-radius: 50%;
1990
- pointer-events: none;
1991
- background-color: rgba(0, 0, 0, 0.15);
1992
  }
1993
 
1994
- .premium-carousel-ripple-yes ul.slick-dots li.slick-active:hover:before {
1995
- background-color: rgba(0, 0, 0, 0.3);
 
 
1996
  }
1997
 
1998
- .premium-carousel-ripple-yes ul.slick-dots li:hover:before {
1999
- -webkit-animation: hvr-ripple-out 1.3s infinite;
2000
- animation: hvr-ripple-out 1.3s infinite;
 
2001
  }
2002
 
2003
- .premium-carousel-wrapper.premium-carousel-scale .slick-slide {
2004
- -webkit-transform: scale(1.25, 1.25);
2005
- -ms-transform: scale(1.25, 1.25);
2006
- transform: scale(1.25, 1.25);
2007
- -webkit-transition: all 0.3s ease-in-out !important;
2008
- transition: all 0.3s ease-in-out !important;
2009
  }
2010
 
2011
- .premium-carousel-wrapper.premium-carousel-scale div.slick-active {
2012
- -webkit-transform: scale(1, 1);
2013
- -ms-transform: scale(1, 1);
2014
- transform: scale(1, 1);
2015
  }
2016
 
2017
- [dir="rtl"] .premium-carousel-inner .slick-slide {
2018
- float: right;
2019
  }
2020
 
2021
- /**************** Premium Counter ***************/
2022
- /************************************************/
2023
- .premium-counter-area {
2024
- padding: 10px 0;
2025
- -js-display: flex;
2026
- display: -webkit-box;
2027
- display: -webkit-flex;
2028
- display: -moz-box;
2029
- display: -ms-flexbox;
2030
- display: flex;
2031
- -webkit-box-pack: center;
2032
- -webkit-justify-content: center;
2033
- -moz-box-pack: center;
2034
- -ms-flex-pack: center;
2035
- justify-content: center;
2036
- -webkit-box-align: center;
2037
- -webkit-align-items: center;
2038
- -moz-box-align: center;
2039
- -ms-flex-align: center;
2040
- align-items: center;
2041
  }
2042
 
2043
- .premium-counter-area.top {
2044
- -webkit-box-orient: vertical;
2045
- -webkit-box-direction: normal;
2046
- -webkit-flex-direction: column;
2047
- -moz-box-orient: vertical;
2048
- -moz-box-direction: normal;
2049
- -ms-flex-direction: column;
2050
- flex-direction: column;
2051
  }
2052
 
2053
- .premium-counter-area.right {
2054
- -webkit-box-orient: horizontal;
2055
- -webkit-box-direction: reverse;
2056
- -webkit-flex-direction: row-reverse;
2057
- -moz-box-orient: horizontal;
2058
- -moz-box-direction: reverse;
2059
- -ms-flex-direction: row-reverse;
2060
- flex-direction: row-reverse;
2061
  }
2062
 
2063
- .premium-counter-area.right .premium-counter-icon {
2064
- padding-right: 20px;
 
 
 
 
 
 
2065
  }
2066
 
2067
- .premium-counter-area.left .premium-counter-icon {
2068
- padding-left: 20px;
 
 
2069
  }
2070
 
2071
- .premium-counter-area .premium-counter-icon .icon i.fa:before {
2072
- vertical-align: text-top;
 
2073
  }
2074
 
2075
- .premium-counter-area .premium-counter-icon span.icon {
2076
- text-align: center;
2077
- display: inline-block;
2078
- vertical-align: middle;
2079
  }
2080
 
2081
- .premium-counter-area .premium-counter-icon .circle {
2082
- -webkit-border-radius: 100%;
2083
- border-radius: 100%;
 
 
 
 
2084
  }
2085
 
2086
- .premium-counter-area .premium-counter-icon img,
2087
- .premium-counter-area .premium-counter-icon svg {
2088
- width: 80px;
 
2089
  }
2090
 
2091
- .premium-counter-area .premium-counter-icon .premium-counter-animation svg {
2092
- height: 80px;
2093
  }
2094
 
2095
- .premium-counter-area .premium-counter-title p {
2096
- padding: 0;
2097
- margin: 0;
2098
  }
2099
 
2100
- .premium-counter-area .premium-counter-value-wrap {
2101
- -js-display: flex;
2102
- display: -webkit-box;
2103
- display: -webkit-flex;
2104
- display: -moz-box;
2105
- display: -ms-flexbox;
2106
- display: flex;
2107
- -webkit-box-align: center;
2108
- -webkit-align-items: center;
2109
- -moz-box-align: center;
2110
- -ms-flex-align: center;
2111
- align-items: center;
2112
  }
2113
 
2114
- .premium-init-wrapper {
2115
- -js-display: flex;
2116
- display: -webkit-box;
2117
- display: -webkit-flex;
2118
- display: -moz-box;
2119
- display: -ms-flexbox;
2120
- display: flex;
2121
  }
2122
 
2123
- .premium-init-wrapper.row {
2124
- -webkit-box-align: center;
2125
- -webkit-align-items: center;
2126
- -moz-box-align: center;
2127
- -ms-flex-align: center;
2128
- align-items: center;
 
 
2129
  }
2130
 
2131
- .premium-init-wrapper.right {
2132
- text-align: right;
 
 
 
2133
  }
2134
 
2135
- span.icon.flex-width {
2136
- width: auto !important;
2137
- height: auto !important;
 
2138
  }
2139
 
2140
- .premium-counter-area .premium-counter-init {
2141
- font-size: 35px;
2142
  }
2143
 
2144
- /**************** Premium Image Separator ****************/
2145
- /*********************************************************/
2146
- /*Image Separator Container Style*/
2147
- .premium-image-separator-container {
2148
- position: absolute;
2149
- width: 100%;
2150
- z-index: 2;
2151
- top: auto;
 
 
 
 
 
 
 
 
2152
  }
2153
 
2154
- .premium-image-separator-container img {
2155
- display: inline-block !important;
2156
- -webkit-mask-repeat: no-repeat;
2157
- mask-repeat: no-repeat;
2158
- -webkit-mask-position: center;
2159
- mask-position: center;
2160
  }
2161
 
2162
- /*Link on Image Style*/
2163
- .premium-image-separator-link {
2164
- position: absolute;
2165
- z-index: 9999;
2166
- top: 0;
2167
- right: 0;
2168
- width: 100%;
2169
- height: 100%;
2170
- text-decoration: none;
2171
  }
2172
 
2173
- /*Important to override Theme options*/
2174
- a.premium-image-separator-link:hover,
2175
- a.premium-image-separator-link:visited,
2176
- a.premium-image-separator-link:focus,
2177
- a.premium-image-separator-link:active {
2178
- -webkit-box-shadow: none !important;
2179
- box-shadow: none !important;
2180
- outline: none !important;
2181
- border: none !important;
2182
- text-decoration: none !important;
2183
  }
2184
 
2185
- .premium-image-separator-container .img-responsive {
2186
- display: inline-block;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2187
  }
2188
 
2189
- .premium-image-separator-container i,
2190
- .premium-image-separator-container>svg {
2191
- padding: 20px;
2192
- -webkit-transition: all 0.3s ease-in-out;
2193
- transition: all 0.3s ease-in-out;
 
 
 
 
 
 
 
 
2194
  }
2195
 
2196
- /**************** Premium Modal Box ****************/
2197
- /***************************************************/
2198
- .premium-modal-trigger-btn,
2199
- .premium-modal-box-modal-lower-close {
2200
- display: inline-block;
2201
- padding: 6px 12px;
2202
- margin-bottom: 0;
2203
- font-size: 14px;
2204
- font-weight: normal;
2205
- line-height: 1.42857143;
2206
- text-align: center;
2207
- white-space: nowrap;
2208
- vertical-align: middle;
2209
- -ms-touch-action: manipulation;
2210
- touch-action: manipulation;
2211
- cursor: pointer;
2212
- -webkit-user-select: none;
2213
- -moz-user-select: none;
2214
- -ms-user-select: none;
2215
- user-select: none;
2216
- background-image: none;
2217
- border: 1px solid transparent;
2218
  }
2219
 
2220
- .premium-modal-trigger-btn>svg,
2221
- .premium-modal-trigger-btn .premium-modal-box-icon {
2222
- -webkit-transition: all 0.3s ease-in-out;
2223
- transition: all 0.3s ease-in-out;
 
 
 
 
 
 
 
2224
  }
2225
 
2226
- .premium-modal-trigger-btn>svg {
2227
- width: 30px;
2228
- height: 30px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2229
  }
2230
 
2231
- .premium-modal-box-modal-close {
2232
- float: left;
2233
- font-size: 21px;
2234
- font-weight: bold;
2235
- line-height: 1;
2236
- color: #000;
 
 
 
 
2237
  }
2238
 
2239
- .premium-modal-box-modal-close:hover,
2240
- .premium-modal-box-modal-close:focus {
2241
- color: #000;
2242
- text-decoration: none;
2243
- cursor: pointer;
2244
  }
2245
 
2246
- button.premium-modal-box-modal-close {
2247
- -webkit-appearance: none;
2248
- padding: 0;
2249
- cursor: pointer;
2250
- background: transparent;
2251
- border: 0;
2252
  }
2253
 
2254
- .premium-modal-box-modal {
2255
- position: fixed;
2256
- top: 0;
2257
- left: 0;
2258
- bottom: 0;
2259
- right: 0;
2260
- z-index: 1050;
2261
- display: none;
2262
- -webkit-overflow-scrolling: touch;
2263
- outline: 0;
2264
- padding: 0 !important;
2265
- background: rgba(0, 0, 0, 0.5);
2266
- -webkit-box-align: center;
2267
- -webkit-align-items: center;
2268
- -moz-box-align: center;
2269
- -ms-flex-align: center;
2270
- align-items: center;
2271
- -webkit-box-pack: center;
2272
- -webkit-justify-content: center;
2273
- -moz-box-pack: center;
2274
- -ms-flex-pack: center;
2275
- justify-content: center;
2276
  }
2277
 
2278
- .premium-modal-box-modal .premium-modal-box-modal-dialog {
2279
- position: absolute;
2280
- max-height: -webkit-calc(100vh - 150px);
2281
- max-height: calc(100vh - 150px);
2282
- -js-display: flex;
2283
- display: -webkit-box;
2284
- display: -webkit-flex;
2285
- display: -moz-box;
2286
- display: -ms-flexbox;
2287
- display: flex;
2288
- -webkit-box-orient: vertical;
2289
- -webkit-box-direction: normal;
2290
- -webkit-flex-direction: column;
2291
- -moz-box-orient: vertical;
2292
- -moz-box-direction: normal;
2293
- -ms-flex-direction: column;
2294
- flex-direction: column;
2295
- opacity: 0;
2296
- background-color: #fff;
2297
- border: 1px solid rgba(0, 0, 0, 0.2);
2298
- -webkit-border-radius: 6px;
2299
- border-radius: 6px;
2300
  }
2301
 
2302
- .premium-modal-box-modal-content {
2303
- background-clip: padding-box;
2304
- outline: 0;
2305
- overflow-x: hidden;
 
 
 
 
 
 
 
 
 
2306
  }
2307
 
2308
- .premium-modal-backdrop.premium-in {
2309
- filter: alpha(opacity=50);
2310
- opacity: 0.5 !important;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2311
  }
2312
 
2313
- .premium-modal-fade.premium-in {
2314
- opacity: 1;
 
 
 
 
 
 
 
 
 
 
 
 
 
2315
  }
2316
 
2317
- .premium-modal-backdrop {
2318
- position: fixed;
2319
- top: 0;
2320
- left: 0;
2321
- bottom: 0;
2322
- right: 0;
2323
- z-index: 1040;
2324
- background-color: #000;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2325
  }
2326
 
2327
- .premium-modal-backdrop.premium-modal-fade {
2328
- filter: alpha(opacity=0);
2329
- opacity: 0;
 
 
 
 
 
 
 
2330
  }
2331
 
2332
- .premium-modal-fade {
2333
- opacity: 0;
 
 
2334
  }
2335
 
2336
- .premium-in {
2337
- -js-display: flex !important;
2338
- display: -webkit-box !important;
2339
- display: -webkit-flex !important;
2340
- display: -moz-box !important;
2341
- display: -ms-flexbox !important;
2342
- display: flex !important;
2343
  }
2344
 
2345
- .premium-modal-box-modal-header {
2346
- -js-display: flex;
2347
- display: -webkit-box;
2348
- display: -webkit-flex;
2349
- display: -moz-box;
2350
- display: -ms-flexbox;
2351
- display: flex;
2352
- -webkit-box-pack: justify;
2353
- -webkit-justify-content: space-between;
2354
- -moz-box-pack: justify;
2355
- -ms-flex-pack: justify;
2356
- justify-content: space-between;
2357
- -webkit-box-align: center;
2358
- -webkit-align-items: center;
2359
- -moz-box-align: center;
2360
- -ms-flex-align: center;
2361
- align-items: center;
2362
- padding: 5px 15px;
2363
- border-bottom: 1px solid #e5e5e5;
2364
  }
2365
 
2366
- .premium-modal-box-modal-header .premium-modal-box-modal-close {
2367
- margin-top: -2px;
 
 
2368
  }
2369
 
2370
- .premium-modal-box-modal-header .premium-modal-box-modal-title {
2371
- -js-display: flex;
2372
- display: -webkit-box;
2373
- display: -webkit-flex;
2374
- display: -moz-box;
2375
- display: -ms-flexbox;
2376
- display: flex;
2377
- -webkit-box-align: center;
2378
- -webkit-align-items: center;
2379
- -moz-box-align: center;
2380
- -ms-flex-align: center;
2381
- align-items: center;
2382
- margin: 0;
2383
- padding: 0;
2384
  }
2385
 
2386
- .premium-modal-box-modal-header .premium-modal-box-modal-title svg {
2387
- width: 50px;
2388
- height: 60px;
 
2389
  }
2390
 
2391
- .premium-modal-box-modal-body {
2392
- position: relative;
2393
- padding: 15px;
 
2394
  }
2395
 
2396
- .premium-modal-box-modal-footer {
2397
- padding: 15px;
2398
- text-align: left;
2399
- border-top: 1px solid #e5e5e5;
2400
  }
2401
 
2402
- .premium-modal-scrollbar-measure {
2403
- position: absolute;
2404
- top: -9999px;
2405
- width: 50px;
2406
- height: 50px;
2407
- overflow: scroll;
 
2408
  }
2409
 
2410
- .premium-modal-trigger-text {
2411
- background: none !important;
2412
- display: inline-block;
 
 
 
 
2413
  }
2414
 
2415
- .premium-modal-box-container {
2416
- width: 100% !important;
 
 
 
 
 
 
2417
  }
2418
 
2419
- /*Open Modal Button Style*/
2420
- .premium-modal-trigger-container .premium-modal-trigger-btn {
2421
- -js-display: inline-flex;
2422
- display: -webkit-inline-box;
2423
- display: -webkit-inline-flex;
2424
- display: -moz-inline-box;
2425
- display: -ms-inline-flexbox;
2426
- display: inline-flex;
2427
- -webkit-box-align: center;
2428
- -webkit-align-items: center;
2429
- -moz-box-align: center;
2430
- -ms-flex-align: center;
2431
- align-items: center;
2432
- border: none;
2433
- -webkit-transition: all 0.3s ease-in-out;
2434
- transition: all 0.3s ease-in-out;
2435
  }
2436
 
2437
- .premium-modal-trigger-container .premium-modal-trigger-btn.premium-btn-block {
2438
- -webkit-box-pack: center;
2439
- -webkit-justify-content: center;
2440
- -moz-box-pack: center;
2441
- -ms-flex-pack: center;
2442
- justify-content: center;
 
2443
  }
2444
 
2445
- .premium-modal-trigger-container .premium-modal-trigger-img,
2446
- .premium-modal-trigger-container .premium-modal-trigger-text,
2447
- .premium-modal-trigger-container .premium-modal-trigger-animation {
2448
- cursor: pointer;
 
 
 
2449
  }
2450
 
2451
- .premium-modal-trigger-container .premium-modal-trigger-animation {
2452
- display: inline-block;
2453
- width: 200px;
2454
- height: 200px;
2455
- -webkit-transition: all 0.3s ease-in-out;
2456
- transition: all 0.3s ease-in-out;
2457
  }
2458
 
2459
- /*Image on Modal Header Style*/
2460
- .premium-modal-box-modal-header img {
2461
- width: 48px;
2462
- padding-left: 5px;
 
 
 
2463
  }
2464
 
2465
- .premium-modal-box-modal-header i,
2466
- .premium-modal-box-modal-header svg {
2467
- padding-left: 6px;
 
2468
  }
2469
 
2470
- .premium-modal-box-modal-close {
2471
- position: relative;
2472
- z-index: 99;
 
2473
  }
2474
 
2475
- .premium-modal-trigger-img,
2476
- .premium-modal-trigger-text,
2477
- .premium-modal-box-close-button-container,
2478
- .premium-modal-box-modal-close,
2479
- .premium-modal-box-modal-lower-close {
2480
- -webkit-transition: all 0.3s ease-in-out;
2481
- transition: all 0.3s ease-in-out;
2482
  }
2483
 
2484
- @media (min-width: 768px) {
2485
- .premium-modal-box-modal-dialog {
2486
- width: 700px;
2487
- max-height: 600px;
2488
- overflow: auto;
2489
- }
2490
  }
2491
 
2492
- @media (max-width: 767px) {
2493
- .premium-modal-box-modal-dialog {
2494
- width: 100%;
2495
- max-height: 500px;
2496
- overflow: auto;
2497
- }
 
 
 
 
 
 
 
 
2498
  }
2499
 
2500
- .premium-modal-box-container[data-modal-animation*="animated-"] {
2501
- opacity: 0;
 
 
 
 
 
 
 
 
 
 
 
2502
  }
2503
 
2504
- /**************** Premium Progress Bar ****************/
2505
- /******************************************************/
2506
- .premium-progressbar-container {
2507
- position: relative;
2508
  }
2509
 
2510
- .premium-progressbar-bar-wrap {
2511
- position: relative;
2512
- text-align: right;
2513
- overflow: hidden;
2514
- height: 25px;
2515
- margin-bottom: 50px;
2516
- background-color: #f5f5f5;
2517
- -webkit-border-radius: 4px;
2518
- border-radius: 4px;
2519
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
2520
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
2521
  }
2522
 
2523
- .premium-progressbar-bar-wrap.premium-progressbar-dots {
2524
- background-color: transparent;
2525
- width: 100%;
2526
- -js-display: flex;
2527
- display: -webkit-box;
2528
- display: -webkit-flex;
2529
- display: -moz-box;
2530
- display: -ms-flexbox;
2531
- display: flex;
2532
- height: auto;
2533
- -webkit-box-shadow: none;
2534
- box-shadow: none;
2535
  }
2536
 
2537
- .premium-progressbar-bar-wrap .progress-segment {
2538
- position: relative;
2539
- width: 25px;
2540
- height: 25px;
2541
- -webkit-border-radius: 50%;
2542
- border-radius: 50%;
2543
- overflow: hidden;
2544
- background-color: #f5f5f5;
2545
  }
2546
 
2547
- .premium-progressbar-bar-wrap .progress-segment.filled {
2548
- background: #6ec1e4;
 
2549
  }
2550
 
2551
- .premium-progressbar-bar-wrap .progress-segment:not(:first-child):not(:last-child) {
2552
- margin: 0 4px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2553
  }
2554
 
2555
- .premium-progressbar-bar-wrap .progress-segment:first-child {
2556
- margin-left: 4px;
 
 
 
2557
  }
2558
 
2559
- .premium-progressbar-bar-wrap .progress-segment:last-child {
2560
- margin-right: 4px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2561
  }
2562
 
2563
- .premium-progressbar-bar-wrap .progress-segment .segment-inner {
2564
- position: absolute;
2565
- top: 0;
2566
- right: 0;
2567
- height: 100%;
2568
- background-color: #6ec1e4;
2569
  }
2570
 
2571
- .premium-progressbar-bar {
2572
- float: right;
2573
- width: 0%;
2574
- height: 100%;
2575
- font-size: 12px;
2576
- line-height: 20px;
2577
- background: #6ec1e4;
2578
- text-align: center;
2579
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
2580
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
2581
  }
2582
 
2583
- .premium-progressbar-striped .premium-progressbar-bar {
2584
- background-image: -webkit-linear-gradient(-135deg,
2585
- rgba(255, 255, 255, 0.15) 25%,
2586
- transparent 25%,
2587
- transparent 50%,
2588
- rgba(255, 255, 255, 0.15) 50%,
2589
- rgba(255, 255, 255, 0.15) 75%,
2590
- transparent 75%,
2591
- transparent);
2592
- background-image: -webkit-linear-gradient(45deg,
2593
- rgba(255, 255, 255, 0.15) 25%,
2594
- transparent 25%,
2595
- transparent 50%,
2596
- rgba(255, 255, 255, 0.15) 50%,
2597
- rgba(255, 255, 255, 0.15) 75%,
2598
- transparent 75%,
2599
- transparent);
2600
- background-image: linear-gradient(45deg,
2601
- rgba(255, 255, 255, 0.15) 25%,
2602
- transparent 25%,
2603
- transparent 50%,
2604
- rgba(255, 255, 255, 0.15) 50%,
2605
- rgba(255, 255, 255, 0.15) 75%,
2606
- transparent 75%,
2607
- transparent);
2608
- -webkit-background-size: 40px 40px;
2609
- background-size: 40px 40px;
2610
  }
2611
 
2612
- .premium-progressbar-active .premium-progressbar-bar {
2613
- -webkit-animation: progress-bar-stripes 2s linear infinite;
2614
- animation: progress-bar-stripes 2s linear infinite;
2615
  }
2616
 
2617
- .premium-progressbar-gradient .premium-progressbar-bar {
2618
- -webkit-background-size: 400% 400% !important;
2619
- background-size: 400% 400% !important;
2620
- -webkit-animation: progress-bar-gradient 10s ease-in-out infinite;
2621
- animation: progress-bar-gradient 10s ease-in-out infinite;
2622
  }
2623
 
2624
- .premium-progressbar-bar {
2625
- position: absolute;
2626
- overflow: hidden;
2627
- line-height: 20px;
2628
  }
2629
 
2630
- .premium-progressbar-container .clearfix {
2631
- clear: both;
 
2632
  }
2633
 
2634
- .premium-progressbar-bar {
2635
- -webkit-transition: width 0s ease-in-out !important;
2636
- transition: width 0s ease-in-out !important;
2637
  }
2638
 
2639
- .premium-progressbar-container p:first-of-type {
2640
- margin: 0;
2641
- float: right;
 
 
2642
  }
2643
 
2644
- .premium-progressbar-container p:nth-of-type(2) {
2645
- margin: 0;
2646
- float: left;
 
 
2647
  }
2648
 
2649
- .premium-progressbar-name {
2650
- right: 50%;
2651
- top: 0;
2652
- left: 0;
2653
- -webkit-transform: translateX(12.5px);
2654
- -ms-transform: translateX(12.5px);
2655
- transform: translateX(12.5px);
2656
- z-index: 1;
2657
  }
2658
 
2659
- .premium-progressbar-multiple-label {
2660
- position: relative;
2661
- float: right;
2662
- width: 0;
2663
- right: 50%;
2664
  }
2665
 
2666
- .premium-progressbar-center-label {
2667
- position: relative;
2668
- white-space: nowrap;
 
 
 
 
 
 
 
 
 
 
 
2669
  }
2670
 
2671
- .premium-progressbar-arrow {
2672
- height: 15px;
2673
- right: 50%;
2674
- display: inline-block;
2675
- border-right: 7px solid transparent;
2676
- border-left: 7px solid transparent;
2677
- border-top: 11px solid;
2678
- -webkit-transform: translateX(50%);
2679
- -ms-transform: translateX(50%);
2680
- transform: translateX(50%);
2681
  }
2682
 
2683
- .premium-progressbar-pin {
2684
- border-right: 1px solid;
2685
- height: 12px;
2686
- right: 50%;
2687
- display: inline-block;
2688
  }
2689
 
2690
- /**
2691
- * Circle Progress Bar
2692
- */
2693
- .premium-progressbar-circle-wrap {
2694
- width: 200px;
2695
- height: 200px;
2696
- position: relative;
2697
- margin: 0 auto;
2698
  }
2699
 
2700
- .premium-progressbar-circle-wrap .premium-progressbar-circle {
2701
- position: absolute;
2702
- top: 0;
2703
- right: 0;
2704
- width: 100%;
2705
- height: 100%;
2706
- -webkit-clip-path: inset(0 0 0 50%);
2707
- clip-path: inset(0 0 0 50%);
2708
  }
2709
 
2710
- .premium-progressbar-circle-wrap .premium-progressbar-circle div {
2711
- position: absolute;
2712
- right: 0;
2713
- top: 0;
2714
- height: 100%;
2715
- width: 100%;
2716
- border-width: 6px;
2717
- border-style: solid;
2718
- border-color: #54595f;
2719
- -webkit-border-radius: 50%;
2720
- border-radius: 50%;
2721
- -webkit-clip-path: inset(0 50% 0 0);
2722
- clip-path: inset(0 50% 0 0);
2723
  }
2724
 
2725
- .premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-left {
2726
- -webkit-transform: rotate(0);
2727
- -ms-transform: rotate(0);
2728
- transform: rotate(0);
2729
  }
2730
 
2731
- .premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-right {
2732
- -webkit-transform: rotate(-180deg);
2733
- -ms-transform: rotate(-180deg);
2734
- transform: rotate(-180deg);
2735
- visibility: hidden;
2736
  }
2737
 
2738
- .premium-progressbar-circle-wrap .premium-progressbar-circle-base {
2739
- width: 100%;
2740
- height: 100%;
2741
- border: 6px solid #eee;
2742
- -webkit-border-radius: 50%;
2743
- border-radius: 50%;
2744
  }
2745
 
2746
- .premium-progressbar-circle-wrap .premium-progressbar-circle-content {
2747
- position: absolute;
2748
- top: 0;
2749
- right: 0;
2750
- width: 100%;
2751
- height: 100%;
2752
- -js-display: flex;
2753
- display: -webkit-box;
2754
- display: -webkit-flex;
2755
- display: -moz-box;
2756
- display: -ms-flexbox;
2757
- display: flex;
2758
- -webkit-box-orient: vertical;
2759
- -webkit-box-direction: normal;
2760
- -webkit-flex-direction: column;
2761
- -moz-box-orient: vertical;
2762
- -moz-box-direction: normal;
2763
- -ms-flex-direction: column;
2764
- flex-direction: column;
2765
- -webkit-box-pack: center;
2766
- -webkit-justify-content: center;
2767
- -moz-box-pack: center;
2768
- -ms-flex-pack: center;
2769
- justify-content: center;
2770
- -webkit-box-align: center;
2771
- -webkit-align-items: center;
2772
- -moz-box-align: center;
2773
- -ms-flex-align: center;
2774
- align-items: center;
2775
  }
2776
 
2777
- .premium-progressbar-circle-wrap .premium-lottie-animation {
2778
- line-height: 1;
 
 
 
 
 
 
 
2779
  }
2780
 
2781
- @-webkit-keyframes progress-bar-stripes {
2782
- from {
2783
- background-position: 100% 0;
2784
- }
 
 
 
 
 
 
2785
 
2786
- to {
2787
- background-position: 40px 0;
2788
- }
 
 
 
 
 
 
2789
  }
2790
 
2791
- @keyframes progress-bar-stripes {
2792
- from {
2793
- background-position: 100% 0;
2794
- }
 
2795
 
2796
- to {
2797
- background-position: 40px 0;
2798
- }
 
2799
  }
2800
 
2801
- @-webkit-keyframes progress-bar-gradient {
2802
- 0% {
2803
- background-position: 100% 50%;
2804
- }
 
2805
 
2806
- 50% {
2807
- background-position: 0% 50%;
2808
- }
 
 
 
 
 
 
 
 
 
2809
 
2810
- 100% {
2811
- background-position: 100% 50%;
2812
- }
2813
  }
2814
 
2815
- @keyframes progress-bar-gradient {
2816
- 0% {
2817
- background-position: 100% 50%;
2818
- }
2819
 
2820
- 50% {
2821
- background-position: 0% 50%;
2822
- }
 
 
 
2823
 
2824
- 100% {
2825
- background-position: 100% 50%;
2826
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2827
  }
2828
 
2829
- /**************** Premium Testimonials ****************/
2830
- /******************************************************/
2831
- .premium-testimonial-box {
2832
- width: 100%;
2833
- background: transparent;
2834
- -webkit-transition: all 0.3s ease-in-out;
2835
- transition: all 0.3s ease-in-out;
2836
  }
2837
 
2838
- .premium-testimonial-box .premium-testimonial-author-info {
2839
- -js-display: flex;
2840
- display: -webkit-box;
2841
- display: -webkit-flex;
2842
- display: -moz-box;
2843
- display: -ms-flexbox;
2844
- display: flex;
2845
- -webkit-box-pack: center;
2846
- -webkit-justify-content: center;
2847
- -moz-box-pack: center;
2848
- -ms-flex-pack: center;
2849
- justify-content: center;
2850
- -webkit-box-align: center;
2851
- -webkit-align-items: center;
2852
- -moz-box-align: center;
2853
- -ms-flex-align: center;
2854
- align-items: center;
2855
  }
2856
 
2857
- .premium-testimonial-box .premium-testimonial-person-name,
2858
- .premium-testimonial-box .premium-testimonial-company-name {
2859
- font-weight: 600;
2860
- margin: 0;
 
 
 
 
 
 
 
 
 
2861
  }
2862
 
2863
- .premium-testimonial-container {
2864
- position: relative;
 
 
 
 
 
 
 
 
 
 
2865
  }
2866
 
2867
- .premium-testimonial-img-wrapper {
2868
- margin-right: auto;
2869
- margin-left: auto;
2870
- overflow: hidden;
2871
- border-style: solid !important;
2872
  }
2873
 
2874
- .premium-testimonial-img-wrapper.circle {
2875
- -webkit-border-radius: 50%;
2876
- border-radius: 50%;
2877
  }
2878
 
2879
- .premium-testimonial-img-wrapper.rounded {
2880
- -webkit-border-radius: 15px;
2881
- border-radius: 15px;
2882
  }
2883
 
2884
- .premium-testimonial-img-wrapper img {
2885
- -o-object-fit: cover;
2886
- object-fit: cover;
2887
- width: 100%;
2888
- height: 100% !important;
 
 
 
 
 
 
 
 
 
2889
  }
2890
 
2891
- .premium-testimonial-content-wrapper {
2892
- position: relative;
2893
- display: -ms-flexbox;
2894
- display: -webkit-flex;
2895
- display: -moz-flex;
2896
- display: -ms-flex;
2897
- -js-display: flex;
2898
- display: -webkit-box;
2899
- display: -moz-box;
2900
- display: flex;
2901
- -webkit-box-orient: vertical;
2902
- -webkit-box-direction: normal;
2903
- -webkit-flex-direction: column;
2904
- -moz-box-orient: vertical;
2905
- -moz-box-direction: normal;
2906
- -ms-flex-direction: column;
2907
- flex-direction: column;
2908
- z-index: 2;
2909
- width: 100%;
2910
- padding: 20px;
2911
- text-align: center;
2912
  }
2913
 
2914
- .premium-testimonial-clear-float {
2915
- clear: both;
 
2916
  }
2917
 
2918
- .premium-testimonial-upper-quote,
2919
- .premium-testimonial-lower-quote {
2920
- position: absolute;
2921
- z-index: 1;
 
 
2922
  }
2923
 
2924
- /**************** Premium Dual Heading *****************/
2925
- /*******************************************************/
2926
- .premium-dual-header-first-header,
2927
- .premium-dual-header-second-header {
2928
- position: relative;
2929
- padding: 0;
2930
- margin: 0;
2931
- display: inline-block;
2932
- -webkit-transform: translate(0, 0);
2933
- -ms-transform: translate(0, 0);
2934
- transform: translate(0, 0);
2935
  }
2936
 
2937
- .premium-dual-header-first-clip .premium-dual-header-first-span,
2938
- .premium-dual-header-second-clip {
2939
- -webkit-text-fill-color: transparent;
2940
- -webkit-background-clip: text;
 
 
 
 
 
 
 
 
 
 
2941
  }
2942
 
2943
- .premium-dual-header-first-clip.stroke .premium-dual-header-first-span,
2944
- .premium-dual-header-second-clip.stroke {
2945
- -webkit-text-stroke-color: transparent;
2946
- -webkit-text-fill-color: #fafafa;
2947
- -webkit-text-stroke-width: 2px;
2948
  }
2949
 
2950
- @media (max-width: 500px) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2951
 
2952
- .premium-dual-header-first-header,
2953
- .premium-dual-header-second-header {
2954
- word-wrap: break-word;
2955
- }
2956
  }
2957
 
2958
- .premium-dual-header-first-header.gradient .premium-dual-header-first-span,
2959
- .premium-dual-header-second-header.gradient {
2960
- -webkit-background-size: 300% 300% !important;
2961
- background-size: 300% 300% !important;
2962
- -webkit-animation: Gradient 10s ease-in-out infinite;
2963
- animation: Gradient 10s ease-in-out infinite;
 
 
 
 
 
 
 
 
 
2964
  }
2965
 
2966
- @-webkit-keyframes Gradient {
2967
- 0% {
2968
- background-position: 100% 50%;
2969
- }
2970
 
2971
- 50% {
2972
- background-position: 0% 50%;
2973
- }
 
 
2974
 
2975
- 100% {
2976
- background-position: 100% 50%;
2977
- }
2978
  }
2979
 
2980
- @keyframes Gradient {
2981
- 0% {
2982
- background-position: 100% 50%;
2983
- }
 
2984
 
2985
- 50% {
2986
- background-position: 0% 50%;
2987
- }
 
2988
 
2989
- 100% {
2990
- background-position: 100% 50%;
2991
- }
 
 
2992
  }
2993
 
2994
- /**************** Premium Title ****************/
2995
- /***********************************************/
2996
- .premium-title-container {
2997
- position: relative;
2998
- width: 100%;
2999
- clear: both;
3000
- overflow: hidden;
3001
  }
3002
 
3003
- .premium-title-container .premium-title-header {
3004
- position: relative;
3005
- margin: 0;
3006
- padding: 10px;
3007
  }
3008
 
3009
- .premium-title-container .premium-title-header:not(.premium-title-style7) {
3010
- -webkit-box-align: center;
3011
- -webkit-align-items: center;
3012
- -moz-box-align: center;
3013
- -ms-flex-align: center;
3014
- align-items: center;
3015
  }
3016
 
3017
- .premium-title-container .premium-title-header svg {
3018
- width: 40px;
3019
- height: 40px;
3020
  }
3021
 
3022
- .premium-title-container .premium-title-header img {
3023
- width: 40px;
3024
- height: 40px;
3025
- -o-object-fit: cover;
3026
- object-fit: cover;
 
 
 
 
 
 
 
 
 
 
 
3027
  }
3028
 
3029
- .premium-title-container .premium-title-header a {
3030
- position: absolute;
3031
- top: 0;
3032
- right: 0;
3033
- width: 100%;
3034
- height: 100%;
3035
  }
3036
 
3037
- .premium-title-container .premium-lottie-animation {
3038
- -js-display: flex;
3039
- display: -webkit-box;
3040
- display: -webkit-flex;
3041
- display: -moz-box;
3042
- display: -ms-flexbox;
3043
- display: flex;
3044
  }
3045
 
3046
- .premium-title-icon-row .premium-title-icon {
3047
- margin-left: 10px;
 
 
 
 
 
 
 
 
3048
  }
3049
 
3050
- .premium-title-icon-row-reverse .premium-title-icon {
3051
- margin-right: 10px;
3052
  }
3053
 
3054
- .premium-title-style3,
3055
- .premium-title-style4 {
3056
- -js-display: flex;
3057
- display: -webkit-box;
3058
- display: -webkit-flex;
3059
- display: -moz-box;
3060
- display: -ms-flexbox;
3061
- display: flex;
3062
  }
3063
 
3064
- .premium-title-style1,
3065
- .premium-title-style2,
3066
- .premium-title-style5,
3067
- .premium-title-style6,
3068
- .premium-title-style8,
3069
- .premium-title-style9 {
3070
- -js-display: inline-flex;
3071
- display: -webkit-inline-box;
3072
- display: -webkit-inline-flex;
3073
- display: -moz-inline-box;
3074
- display: -ms-inline-flexbox;
3075
- display: inline-flex;
3076
  }
3077
 
3078
- .premium-title-style7 {
3079
- -js-display: inline-flex;
3080
- display: -webkit-inline-box;
3081
- display: -webkit-inline-flex;
3082
- display: -moz-inline-box;
3083
- display: -ms-inline-flexbox;
3084
- display: inline-flex;
3085
- -webkit-box-orient: vertical;
3086
- -webkit-box-direction: normal;
3087
- -webkit-flex-direction: column;
3088
- -moz-box-orient: vertical;
3089
- -moz-box-direction: normal;
3090
- -ms-flex-direction: column;
3091
- flex-direction: column;
3092
  }
3093
 
3094
- .premium-title-style7 .premium-title-style7-inner {
3095
- -js-display: flex;
3096
- display: -webkit-box;
3097
- display: -webkit-flex;
3098
- display: -moz-box;
3099
- display: -ms-flexbox;
3100
- display: flex;
3101
- -webkit-box-align: center;
3102
- -webkit-align-items: center;
3103
- -moz-box-align: center;
3104
- -ms-flex-align: center;
3105
- align-items: center;
3106
  }
3107
 
3108
- .premium-title-style1 {
3109
- border-width: 0;
3110
- border-right: 3px solid #6ec1e4;
 
 
 
 
 
 
 
3111
  }
3112
 
3113
- .premium-title-container.style2,
3114
- .premium-title-container.style4,
3115
- .premium-title-container.style5,
3116
- .premium-title-container.style6 {
3117
- border-bottom: 3px solid #6ec1e4;
 
3118
  }
3119
 
3120
- /*Style 6 Header*/
3121
- .premium-title-style6:before {
3122
- position: absolute;
3123
- right: 50%;
3124
- bottom: 0;
3125
- margin-right: -2px;
3126
- content: "";
3127
- border: 3px solid transparent;
3128
  }
3129
 
3130
- /*Style 6 Trinagle*/
3131
- .premium-title-style7-stripe-wrap {
3132
- -js-display: flex;
3133
- display: -webkit-box;
3134
- display: -webkit-flex;
3135
- display: -moz-box;
3136
- display: -ms-flexbox;
3137
- display: flex;
3138
  }
3139
 
3140
- .premium-title-style7:before {
3141
- display: none;
 
 
 
 
 
 
 
 
3142
  }
3143
 
3144
- .premium-title-style8 .premium-title-text[data-animation="shiny"] {
3145
- -webkit-background-size: 125px 125px !important;
3146
- background-size: 125px !important;
3147
- color: rgba(255, 255, 255, 0);
3148
- -webkit-background-clip: text !important;
3149
- background-clip: text !important;
3150
- -webkit-animation-name: pa-shinny-text !important;
3151
- animation-name: pa-shinny-text !important;
3152
- -webkit-animation-duration: var(--animation-speed) !important;
3153
- animation-duration: var(--animation-speed) !important;
3154
- -webkit-animation-iteration-count: infinite !important;
3155
- animation-iteration-count: infinite !important;
3156
- background: var(--base-color) -webkit-gradient(linear,
3157
- left top,
3158
- right top,
3159
- from(var(--base-color)),
3160
- to(var(--base-color)),
3161
- color-stop(0.5, var(--shiny-color))) 0 0 no-repeat;
3162
  }
3163
 
3164
- .premium-title-style9[data-animation-blur="process"] .premium-title-style9-letter {
3165
- -webkit-animation: pa-blur-shadow 2s 1 alternate;
3166
- animation: pa-blur-shadow 2s 1 alternate;
 
 
 
 
 
 
 
3167
  }
3168
 
3169
- .premium-title-gradient-yes .premium-title-text,
3170
- .premium-title-gradient-yes .premium-title-icon {
3171
- -webkit-background-clip: text;
3172
- -webkit-text-fill-color: transparent;
3173
- background-image: -webkit-gradient(linear, left top, right top, from(#ffa648), color-stop(#f17cc1), to(#4da9fd));
3174
- background-image: -webkit-linear-gradient(left, #ffa648, #f17cc1, #4da9fd);
3175
- background-image: linear-gradient(to right, #ffa648, #f17cc1, #4da9fd);
3176
- -webkit-animation: pa-text-gradient 8s infinite;
3177
- animation: pa-text-gradient 8s infinite;
3178
  }
3179
 
3180
- .premium-title-clipped .premium-title-header {
3181
- -webkit-text-fill-color: transparent;
3182
- -webkit-background-clip: text;
3183
- background-clip: text;
3184
  }
3185
 
3186
- @-webkit-keyframes pa-shinny-text {
3187
- 0% {
3188
- background-position: 100%;
3189
- }
3190
 
3191
- 100% {
3192
- background-position: -100%;
3193
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3194
  }
3195
 
3196
- @keyframes pa-shinny-text {
3197
- 0% {
3198
- background-position: 100%;
3199
- }
 
 
 
 
 
3200
 
3201
- 100% {
3202
- background-position: -100%;
3203
- }
 
 
 
 
 
3204
  }
3205
 
3206
- @-webkit-keyframes pa-blur-shadow {
3207
- from {
3208
- text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
3209
- color: transparent;
3210
- }
3211
 
3212
- to {
3213
- text-shadow: 0;
3214
- }
3215
  }
3216
 
3217
- @keyframes pa-blur-shadow {
3218
- from {
3219
- text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
3220
- color: transparent;
3221
- }
3222
-
3223
- to {
3224
- text-shadow: 0;
3225
- }
3226
  }
3227
 
3228
- @-webkit-keyframes pa-text-gradient {
3229
-
3230
- 0%,
3231
- 100% {
3232
- -webkit-filter: hue-rotate(0deg);
3233
- filter: hue-rotate(0deg);
3234
- }
3235
-
3236
- 50% {
3237
- -webkit-filter: hue-rotate(360deg);
3238
- filter: hue-rotate(360deg);
3239
- }
3240
  }
3241
 
3242
- @keyframes pa-text-gradient {
3243
-
3244
- 0%,
3245
- 100% {
3246
- -webkit-filter: hue-rotate(0deg);
3247
- filter: hue-rotate(0deg);
3248
- }
3249
-
3250
- 50% {
3251
- -webkit-filter: hue-rotate(360deg);
3252
- filter: hue-rotate(360deg);
3253
- }
3254
  }
3255
 
3256
- /*
3257
- * Common Title/Dual Heading
3258
- */
3259
- .premium-title-bg-text:before {
3260
- position: absolute;
3261
- content: attr(data-background);
3262
- top: 0;
3263
- left: 0;
3264
- text-align: left;
3265
  }
3266
 
3267
- .premium-bg-text-yes .elementor-widget-container:before {
3268
- position: absolute;
3269
- top: 0;
3270
- left: 0;
3271
- text-align: left;
3272
  }
3273
 
3274
- .premium-mask-yes .premium-dual-header-first-clip .premium-dual-header-first-span .premium-mask-span,
3275
- .premium-mask-yes .premium-dual-header-second-clip .premium-mask-span {
3276
- background: inherit;
3277
  }
3278
 
3279
- .premium-mask-yes .premium-mask-span {
3280
- position: relative;
3281
- overflow: hidden;
3282
- -js-display: inline-flex !important;
3283
- display: -webkit-inline-box !important;
3284
- display: -webkit-inline-flex !important;
3285
- display: -moz-inline-box !important;
3286
- display: -ms-inline-flexbox !important;
3287
- display: inline-flex !important;
 
 
 
3288
  }
3289
 
3290
- .premium-mask-yes .premium-mask-span::after {
3291
- content: "";
3292
- position: absolute;
3293
- top: 0;
3294
- right: 0px;
3295
- width: 100%;
3296
- height: 100%;
3297
- background-color: currentColor;
3298
- -webkit-backface-visibility: visible;
3299
- backface-visibility: visible;
3300
  }
3301
 
3302
- .premium-mask-active.premium-mask-tr .premium-mask-span::after {
3303
- -webkit-animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
3304
- animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
3305
- -webkit-transform: translateX(-103%);
3306
- -ms-transform: translateX(-103%);
3307
- transform: translateX(-103%);
3308
  }
3309
 
3310
- .premium-mask-active.premium-mask-tl .premium-mask-span::after {
3311
- -webkit-animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
3312
- animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
3313
- -webkit-transform: translateX(103%);
3314
- -ms-transform: translateX(103%);
3315
- transform: translateX(103%);
3316
  }
3317
 
3318
- .premium-mask-active.premium-mask-tb .premium-mask-span::after {
3319
- -webkit-animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
3320
- animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
3321
- -webkit-transform: translateY(-103%);
3322
- -ms-transform: translateY(-103%);
3323
- transform: translateY(-103%);
3324
  }
3325
 
3326
- .premium-mask-active.premium-mask-tt .premium-mask-span::after {
3327
- -webkit-animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
3328
- animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
3329
- -webkit-transform: translateY(103%);
3330
- -ms-transform: translateY(103%);
3331
- transform: translateY(103%);
 
 
 
 
 
 
 
 
3332
  }
3333
 
3334
- @-webkit-keyframes pa-mask-tr {
3335
- 0% {
3336
- -webkit-transform: translateX(0%);
3337
- transform: translateX(0%);
3338
- }
3339
 
3340
- 100% {
3341
- -webkit-transform: translateX(103%);
3342
- transform: translateX(103%);
3343
- }
 
3344
  }
3345
 
3346
- @keyframes pa-mask-tr {
3347
- 0% {
3348
- -webkit-transform: translateX(0%);
3349
- transform: translateX(0%);
3350
- }
3351
 
3352
- 100% {
3353
- -webkit-transform: translateX(103%);
3354
- transform: translateX(103%);
3355
- }
3356
  }
3357
 
3358
- @-webkit-keyframes pa-mask-tl {
3359
- 0% {
3360
- -webkit-transform: translateX(0%);
3361
- transform: translateX(0%);
3362
- }
3363
-
3364
- 100% {
3365
- -webkit-transform: translateX(-103%);
3366
- transform: translateX(-103%);
3367
- }
3368
  }
3369
 
3370
- @keyframes pa-mask-tl {
3371
- 0% {
3372
- -webkit-transform: translateX(0%);
3373
- transform: translateX(0%);
3374
- }
3375
 
3376
- 100% {
3377
- -webkit-transform: translateX(-103%);
3378
- transform: translateX(-103%);
3379
- }
 
 
 
3380
  }
3381
 
3382
- @-webkit-keyframes pa-mask-tb {
3383
- 0% {
3384
- -webkit-transform: translateY(0%);
3385
- transform: translateY(0%);
3386
- }
3387
 
3388
- 100% {
3389
- -webkit-transform: translateY(103%);
3390
- transform: translateY(103%);
3391
- }
 
 
 
 
 
 
 
 
 
 
3392
  }
3393
 
3394
- @keyframes pa-mask-tb {
3395
- 0% {
3396
- -webkit-transform: translateY(0%);
3397
- transform: translateY(0%);
3398
- }
3399
 
3400
- 100% {
3401
- -webkit-transform: translateY(103%);
3402
- transform: translateY(103%);
3403
- }
3404
  }
3405
 
3406
- @-webkit-keyframes pa-mask-tt {
3407
- 0% {
3408
- -webkit-transform: translateY(0%);
3409
- transform: translateY(0%);
3410
- }
3411
 
3412
- 100% {
3413
- -webkit-transform: translateY(-103%);
3414
- transform: translateY(-103%);
3415
- }
 
3416
  }
3417
 
3418
- @keyframes pa-mask-tt {
3419
- 0% {
3420
- -webkit-transform: translateY(0%);
3421
- transform: translateY(0%);
3422
- }
 
3423
 
3424
- 100% {
3425
- -webkit-transform: translateY(-103%);
3426
- transform: translateY(-103%);
3427
- }
3428
  }
3429
 
3430
- /**************** Premium Video Box ************/
3431
- /***********************************************/
3432
- .premium-video-box-transform {
3433
- -webkit-transform: none !important;
3434
- -ms-transform: none !important;
3435
- transform: none !important;
3436
  }
3437
 
3438
- .premium-video-box-container {
3439
- -js-display: flex;
3440
- display: -webkit-box;
3441
- display: -webkit-flex;
3442
- display: -moz-box;
3443
- display: -ms-flexbox;
3444
- display: flex;
3445
- -webkit-box-orient: vertical;
3446
- -webkit-box-direction: normal;
3447
- -webkit-flex-direction: column;
3448
- -moz-box-orient: vertical;
3449
- -moz-box-direction: normal;
3450
- -ms-flex-direction: column;
3451
- flex-direction: column;
3452
  }
3453
 
3454
- .premium-video-box-container>div {
3455
- position: relative;
3456
- overflow: hidden;
 
3457
  }
3458
 
3459
- .pa-aspect-ratio-11 .premium-video-box-container>div {
3460
- padding-bottom: 100%;
 
 
 
3461
  }
3462
 
3463
- .pa-aspect-ratio-169 .premium-video-box-container>div {
3464
- padding-bottom: 56.25%;
 
 
 
 
3465
  }
3466
 
3467
- .pa-aspect-ratio-43 .premium-video-box-container>div {
3468
- padding-bottom: 75%;
3469
  }
3470
 
3471
- .pa-aspect-ratio-32 .premium-video-box-container>div {
3472
- padding-bottom: 66.6666%;
 
 
3473
  }
3474
 
3475
- .pa-aspect-ratio-219 .premium-video-box-container>div {
3476
- padding-bottom: 42.8571%;
 
3477
  }
3478
 
3479
- .pa-aspect-ratio-916 .premium-video-box-container>div {
3480
- padding-bottom: 177.8%;
 
 
 
 
 
 
 
 
 
 
 
 
3481
  }
3482
 
3483
- .premium-video-box-image-container {
3484
- position: absolute;
3485
- top: 0;
3486
- right: 0;
3487
- bottom: 0;
3488
- left: 0;
3489
- width: 100%;
3490
- height: 100%;
3491
- -webkit-background-size: cover;
3492
- background-size: cover;
3493
- background-position: 50%;
3494
- cursor: pointer;
3495
- margin: auto;
3496
- -webkit-transition: 0.2s all;
3497
- transition: 0.2s all;
3498
  }
3499
 
3500
- .premium-video-box-play-icon-container {
3501
- position: absolute;
3502
- z-index: 2;
3503
- cursor: pointer;
3504
- -webkit-transform: translate(50%, -50%);
3505
- -ms-transform: translate(50%, -50%);
3506
- transform: translate(50%, -50%);
3507
- background: rgba(252, 252, 252, 0.35);
3508
  }
3509
 
3510
- .premium-video-box-description-container {
3511
- position: absolute;
3512
- z-index: 2;
3513
- padding: 5px;
3514
- text-align: center;
3515
- cursor: pointer;
3516
- -webkit-transform: translate(50%, -50%);
3517
- -ms-transform: translate(50%, -50%);
3518
- transform: translate(50%, -50%);
3519
  }
3520
 
3521
- .premium-video-box-text {
3522
- margin-bottom: 0 !important;
3523
- -webkit-transition: all 0.3s ease-in-out;
3524
- transition: all 0.3s ease-in-out;
3525
  }
3526
 
3527
- .premium-video-box-play-icon {
3528
- padding: 15px;
3529
- -webkit-transform: translateX(-4%);
3530
- -ms-transform: translateX(-4%);
3531
- transform: translateX(-4%);
3532
- -webkit-transition: all 0.3s ease-in-out;
3533
- transition: all 0.3s ease-in-out;
 
3534
  }
3535
 
3536
- .premium-video-box-video-container {
3537
- position: absolute;
3538
- top: 0;
3539
- right: 0;
3540
- z-index: 2;
3541
- width: 100%;
3542
- height: 100%;
3543
- -webkit-transition: opacity 0.8s ease-in-out;
3544
- transition: opacity 0.8s ease-in-out;
3545
- overflow: hidden;
3546
- cursor: pointer;
3547
  }
3548
 
3549
- .premium-video-box-container[data-overlay="true"][data-type="self"] .premium-video-box-video-container {
3550
- opacity: 0;
3551
- visibility: hidden;
3552
- }
3553
 
3554
- .premium-video-box-video-container iframe {
3555
- max-width: 100%;
3556
- width: 100%;
3557
- height: 100%;
3558
- margin: 0;
3559
- line-height: 1;
3560
- border: none;
3561
- }
3562
 
3563
- .premium-video-box-video-container video {
3564
- max-width: 100%;
3565
- width: 100%;
3566
- height: 100%;
3567
- margin: 0;
3568
- line-height: 1;
3569
- border: none;
3570
- background-color: #000;
3571
- -o-object-fit: contain;
3572
- object-fit: contain;
3573
- }
3574
 
3575
- .premium-video-box-container .premium-video-box-vimeo-wrap {
3576
- -js-display: flex;
3577
- display: -webkit-box;
3578
- display: -webkit-flex;
3579
- display: -moz-box;
3580
- display: -ms-flexbox;
3581
- display: flex;
3582
- position: absolute;
3583
- top: 0;
3584
- right: 0;
3585
- z-index: 3;
3586
- margin: 10px;
3587
- margin-left: 10px;
3588
- -webkit-transition: opacity 0.2s ease-out;
3589
- transition: opacity 0.2s ease-out;
3590
- margin-left: 4.6em;
3591
  }
3592
 
3593
- .premium-video-box-vimeo-wrap .premium-video-box-vimeo-portrait {
3594
- width: 60px;
3595
- height: 60px;
3596
- background: rgba(23, 35, 34, 0.75);
3597
- margin-left: 1px;
3598
- -webkit-box-flex: 1;
3599
- -webkit-flex: 1 0 auto;
3600
- -moz-box-flex: 1;
3601
- -ms-flex: 1 0 auto;
3602
- flex: 1 0 auto;
3603
- padding: 0;
3604
- }
3605
 
3606
- .premium-video-box-vimeo-portrait img {
3607
- width: 50px;
3608
- height: 50px;
3609
- margin: 5px;
3610
- padding: 0;
3611
- border: 0;
3612
- -webkit-border-radius: 50%;
3613
- border-radius: 50%;
 
 
 
3614
  }
3615
 
3616
- .premium-video-box-vimeo-wrap .premium-video-box-vimeo-headers {
3617
- font-size: 10px;
 
 
 
 
 
 
3618
  }
3619
 
3620
- .premium-video-box-vimeo-wrap .premium-video-box-vimeo-title {
3621
- max-width: 100%;
3622
- font-size: 2em !important;
3623
- font-weight: 700;
3624
- margin: 0;
3625
- padding: 0.1em 0.2em;
3626
- background: rgba(23, 35, 34, 0.75);
3627
- display: inline-block;
3628
- text-transform: none;
3629
- line-height: normal;
3630
- letter-spacing: normal;
3631
  }
3632
 
3633
- .premium-video-box-vimeo-wrap .premium-video-box-vimeo-byline {
3634
- font-size: 1.2em !important;
3635
- font-weight: 400;
3636
- color: #fff;
3637
- margin-top: 0.1em;
3638
- padding: 0.2em 0.5em;
3639
- background: rgba(23, 35, 34, 0.75);
3640
- text-transform: none;
3641
- line-height: normal;
3642
- letter-spacing: normal;
 
 
3643
  }
3644
 
3645
- .premium-video-box-playlist-container {
3646
- -js-display: flex;
3647
- display: -webkit-box;
3648
- display: -webkit-flex;
3649
- display: -moz-box;
3650
- display: -ms-flexbox;
3651
- display: flex;
3652
- -webkit-flex-wrap: wrap;
3653
- -ms-flex-wrap: wrap;
3654
- flex-wrap: wrap;
 
 
3655
  }
3656
 
3657
- .premium-video-box-playlist-container .premium-video-box-container {
3658
- height: 100%;
3659
- overflow: hidden;
 
 
 
 
 
 
 
 
 
3660
  }
3661
 
3662
- .premium-video-box-container:hover .premium-video-box-image-container.zoomin {
3663
- -webkit-transform: scale(1.1);
3664
- -ms-transform: scale(1.1);
3665
- transform: scale(1.1);
 
 
 
 
 
 
 
 
3666
  }
3667
 
3668
- .premium-video-box-container:hover .premium-video-box-image-container.zoomout {
3669
- -webkit-transform: scale(1);
3670
- -ms-transform: scale(1);
3671
- transform: scale(1);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3672
  }
3673
 
3674
- .premium-video-box-container:hover .premium-video-box-image-container.scale {
3675
- -webkit-transform: scale(1.3) rotate(-5deg);
3676
- -ms-transform: scale(1.3) rotate(-5deg);
3677
- transform: scale(1.3) rotate(-5deg);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3678
  }
3679
 
3680
- .premium-video-box-container:hover .premium-video-box-image-container.gray {
3681
- -webkit-filter: grayscale(0%);
3682
- filter: grayscale(0%);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3683
  }
3684
 
3685
- .premium-video-box-container:hover .premium-video-box-image-container.blur {
3686
- -webkit-filter: blur(3px);
3687
- filter: blur(3px);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3688
  }
3689
 
3690
- .premium-video-box-container:hover .premium-video-box-image-container.sepia {
3691
- -webkit-filter: sepia(0%);
3692
- filter: sepia(0%);
 
3693
  }
3694
 
3695
- .premium-video-box-container:hover .premium-video-box-image-container.trans {
3696
- -webkit-transform: translateX(0px) scale(1.1);
3697
- -ms-transform: translateX(0px) scale(1.1);
3698
- transform: translateX(0px) scale(1.1);
3699
  }
3700
 
3701
- .premium-video-box-container:hover .premium-video-box-image-container.bright {
3702
- -webkit-filter: brightness(1.2);
3703
- filter: brightness(1.2);
 
3704
  }
3705
 
3706
- .premium-video-box-image-container.gray {
3707
- -webkit-filter: grayscale(100%);
3708
- filter: grayscale(100%);
 
 
 
 
 
 
 
 
3709
  }
3710
 
3711
- .premium-video-box-image-container.zoomout,
3712
- .premium-video-box-image-container.scale {
3713
- -webkit-transform: scale(1.2);
3714
- -ms-transform: scale(1.2);
3715
- transform: scale(1.2);
 
 
 
3716
  }
3717
 
3718
- .premium-video-box-image-container.sepia {
3719
- -webkit-filter: sepia(30%);
3720
- filter: sepia(30%);
3721
  }
3722
 
3723
- .premium-video-box-image-container.bright {
3724
- -webkit-filter: brightness(1);
3725
- filter: brightness(1);
 
 
 
3726
  }
3727
 
3728
- .premium-video-box-image-container.trans {
3729
- -webkit-transform: translateX(15px) scale(1.1);
3730
- -ms-transform: translateX(15px) scale(1.1);
3731
- transform: translateX(15px) scale(1.1);
 
 
 
3732
  }
3733
 
3734
- .premium-video-box-mask-media {
3735
- -webkit-mask-repeat: no-repeat;
3736
- mask-repeat: no-repeat;
3737
  }
3738
 
3739
- /* Sticky Video Option */
3740
- .premium-video-box-container.premium-video-box-sticky-apply {
3741
- z-index: 99;
3742
- overflow: unset;
 
 
3743
  }
3744
 
3745
- .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3746
- position: fixed !important;
3747
- z-index: 99999;
3748
- height: 225px;
3749
- width: 400px;
3750
- background: #fff;
3751
  }
3752
 
3753
- .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-vimeo-wrap,
3754
- .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-container:before {
3755
- visibility: hidden;
 
3756
  }
3757
 
3758
- .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3759
- -webkit-box-shadow: unset;
3760
- box-shadow: unset;
 
 
 
 
3761
  }
3762
 
3763
- .premium-video-box-sticky-close,
3764
- .premium-video-box-sticky-infobar {
3765
- display: none;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3766
  }
3767
 
3768
- .premium-video-box-sticky-apply .premium-video-box-sticky-close {
3769
- position: absolute;
3770
- padding: 5px;
3771
- cursor: pointer;
3772
- z-index: 99999;
3773
- height: 14px;
3774
- width: 14px;
3775
- -webkit-box-sizing: content-box;
3776
- -moz-box-sizing: content-box;
3777
- box-sizing: content-box;
3778
- -webkit-border-radius: 100%;
3779
- border-radius: 100%;
3780
- -js-display: flex;
3781
- display: -webkit-box;
3782
- display: -webkit-flex;
3783
- display: -moz-box;
3784
- display: -ms-flexbox;
3785
- display: flex;
3786
- -webkit-box-pack: center;
3787
- -webkit-justify-content: center;
3788
- -moz-box-pack: center;
3789
- -ms-flex-pack: center;
3790
- justify-content: center;
3791
- -webkit-box-align: center;
3792
- -webkit-align-items: center;
3793
- -moz-box-align: center;
3794
- -ms-flex-align: center;
3795
- align-items: center;
3796
  }
3797
 
3798
- .premium-video-box-sticky-apply .premium-video-box-play-icon-container {
3799
- -js-display: flex;
3800
- display: -webkit-box;
3801
- display: -webkit-flex;
3802
- display: -moz-box;
3803
- display: -ms-flexbox;
3804
- display: flex;
3805
  }
3806
 
3807
- .premium-video-box-sticky-apply .premium-video-box-play-icon {
3808
- -webkit-transition: none;
3809
- transition: none;
3810
  }
3811
 
3812
- .premium-video-box-sticky-apply .premium-video-box-sticky-infobar {
3813
- display: block;
3814
- position: relative;
3815
- top: 100%;
3816
- width: 100%;
3817
- padding: 5px;
3818
- text-align: center;
3819
- z-index: 9999;
3820
- margin-top: -1px;
3821
  }
3822
 
3823
- .premium-video-box-sticky-apply .premium-video-box-inner-wrap.ui-draggable {
3824
- cursor: move;
 
 
 
 
 
 
3825
  }
3826
 
3827
- .premium-video-sticky-top-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3828
- left: auto;
3829
- right: 20px;
3830
- top: 20px;
 
3831
  }
3832
 
3833
- .premium-video-sticky-bottom-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3834
- left: auto;
3835
- right: 20px;
3836
- bottom: 20px;
 
 
 
 
 
 
3837
  }
3838
 
3839
- .premium-video-sticky-top-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3840
- right: auto;
3841
- left: 20px;
3842
- top: 20px;
 
 
3843
  }
3844
 
3845
- .premium-video-sticky-bottom-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3846
- right: auto;
3847
- left: 20px;
3848
- bottom: 20px;
3849
  }
3850
 
3851
- .premium-video-sticky-center-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3852
- left: auto;
3853
- right: 20px;
3854
- top: 50%;
3855
- -webkit-transform: translateY(-50%);
3856
- -ms-transform: translateY(-50%);
3857
- transform: translateY(-50%);
3858
  }
3859
 
3860
- .premium-video-sticky-center-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3861
- right: auto;
3862
- left: 20px;
3863
- top: 50%;
3864
- -webkit-transform: translateY(-50%);
3865
- -ms-transform: translateY(-50%);
3866
- transform: translateY(-50%);
3867
  }
3868
 
3869
- .premium-video-sticky-bottom-right .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap,
3870
- .premium-video-sticky-bottom-left .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3871
- bottom: 55px;
 
 
 
3872
  }
3873
 
3874
- .premium-video-sticky-top-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
3875
- .premium-video-sticky-bottom-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
3876
- .premium-video-sticky-center-left .premium-video-box-sticky-apply .premium-video-box-sticky-close {
3877
- top: -10px;
3878
- left: -10px;
3879
  }
3880
 
3881
- .premium-video-sticky-top-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
3882
- .premium-video-sticky-bottom-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
3883
- .premium-video-sticky-center-right .premium-video-box-sticky-apply .premium-video-box-sticky-close {
3884
- top: -10px;
3885
- right: -10px;
 
3886
  }
3887
 
3888
- .premium-video-box-filter-sticky {
3889
- -webkit-filter: none !important;
3890
- filter: none !important;
 
 
 
 
 
 
3891
  }
3892
 
3893
- /**************** Premium Blog *****************/
3894
- /***********************************************/
3895
- .premium-blog-thumb-effect-wrapper {
3896
- position: relative;
3897
- overflow: hidden;
3898
  }
3899
 
3900
- .premium-blog-effect-container:not(.premium-blog-bordered-effect) .premium-blog-post-link {
3901
- position: absolute;
3902
- top: 0;
3903
- right: 0;
3904
- width: 100%;
3905
- height: 100%;
3906
- z-index: 2;
3907
- padding: 20px;
3908
  }
3909
 
3910
- .premium-blog-bordered-effect .premium-blog-post-link {
3911
- display: block;
3912
- height: 100%;
3913
- position: relative;
 
 
 
 
 
 
 
 
3914
  }
3915
 
3916
- /*Thumbnail Img*/
3917
- .premium-blog-thumbnail-container {
3918
- overflow: hidden;
 
3919
  }
3920
 
3921
- .premium-blog-thumbnail-container img,
3922
- .premium-blog-thumbnail-container .below-entry-meta {
3923
- width: 100%;
3924
- height: 100%;
3925
- margin: 0 !important;
3926
- -webkit-transition: all 0.4s ease-in-out;
3927
- transition: all 0.4s ease-in-out;
3928
- }
3929
 
3930
- .premium-blog-thumb-effect-wrapper .premium-blog-zoomout-effect img,
3931
- .premium-blog-thumb-effect-wrapper .premium-blog-scale-effect img {
3932
- -webkit-transform: scale(1.2);
3933
- -ms-transform: scale(1.2);
3934
- transform: scale(1.2);
3935
  }
3936
 
3937
- .premium-blog-thumb-effect-wrapper .premium-blog-sepia-effect img {
3938
- -webkit-filter: sepia(30%);
3939
- filter: sepia(30%);
3940
- }
 
3941
 
3942
- .premium-blog-thumb-effect-wrapper .premium-blog-bright-effect img {
3943
- -webkit-filter: brightness(1);
3944
- filter: brightness(1);
 
3945
  }
3946
 
3947
- .premium-blog-thumb-effect-wrapper .premium-blog-trans-effect img {
3948
- -webkit-transform: translateX(15px) scale(1.1);
3949
- -ms-transform: translateX(15px) scale(1.1);
3950
- transform: translateX(15px) scale(1.1);
3951
  }
3952
 
3953
- .premium-blog-post-outer-container:hover .premium-blog-zoomin-effect img {
3954
- -webkit-transform: scale(1.2);
3955
- -ms-transform: scale(1.2);
3956
- transform: scale(1.2);
3957
  }
3958
 
3959
- .premium-blog-post-outer-container:hover .premium-blog-zoomout-effect img {
3960
- -webkit-transform: scale(1.1);
3961
- -ms-transform: scale(1.1);
3962
- transform: scale(1.1);
 
3963
  }
3964
 
3965
- .premium-blog-post-outer-container:hover .premium-blog-scale-effect img {
3966
- -webkit-transform: scale(1.3) rotate(-5deg);
3967
- -ms-transform: scale(1.3) rotate(-5deg);
3968
- transform: scale(1.3) rotate(-5deg);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3969
  }
3970
 
3971
- .premium-blog-post-outer-container:hover .premium-blog-gray-effect img {
3972
- -webkit-filter: grayscale(100%);
3973
- filter: grayscale(100%);
 
3974
  }
3975
 
3976
- .premium-blog-post-outer-container:hover .premium-blog-blur-effect img {
3977
- -webkit-filter: blur(3px);
3978
- filter: blur(3px);
 
 
 
 
 
3979
  }
3980
 
3981
- .premium-blog-post-outer-container:hover .premium-blog-sepia-effect img {
3982
- -webkit-filter: sepia(0%);
3983
- filter: sepia(0%);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3984
  }
3985
 
3986
- .premium-blog-post-outer-container:hover .premium-blog-bright-effect img {
3987
- -webkit-filter: brightness(1.2);
3988
- filter: brightness(1.2);
 
 
 
3989
  }
3990
 
3991
- .premium-blog-post-outer-container:hover .premium-blog-trans-effect img {
3992
- -webkit-transform: translateX(0px) scale(1.1);
3993
- -ms-transform: translateX(0px) scale(1.1);
3994
- transform: translateX(0px) scale(1.1);
 
 
3995
  }
3996
 
3997
- .premium-blog-post-container {
3998
- overflow: hidden;
 
 
 
 
 
3999
  }
4000
 
4001
- .premium-blog-post-container .premium-blog-inner-container {
4002
- -js-display: flex;
4003
- display: -webkit-box;
4004
- display: -webkit-flex;
4005
- display: -moz-box;
4006
- display: -ms-flexbox;
4007
- display: flex;
4008
- direction: rtl;
4009
  }
4010
 
4011
- .premium-blog-post-container .premium-blog-post-content {
4012
- line-height: 1.5em;
4013
- color: #777;
4014
- font-size: 14px;
4015
- margin-bottom: 10px;
 
 
4016
  }
4017
 
4018
- .premium-blog-post-container ul.post-categories a:hover,
4019
- .premium-blog-post-container ul.post-categories a:focus,
4020
- .premium-blog-post-container .premium-blog-post-link:hover,
4021
- .premium-blog-post-container .premium-blog-post-link:focus {
4022
- -webkit-box-shadow: none !important;
4023
- box-shadow: none !important;
4024
- outline: none !important;
4025
  }
4026
 
4027
- .premium-blog-post-container .premium-blog-entry-title {
4028
- font-size: 18px;
4029
- margin-bottom: 5px;
4030
  }
4031
 
4032
- .premium-blog-post-container.premium-blog-skin-modern .premium-blog-content-wrapper {
4033
- position: relative;
4034
- z-index: 3;
4035
- top: -50px;
4036
  }
4037
 
4038
- .premium-blog-post-container .premium-blog-content-wrapper {
4039
- background-color: #f5f5f5;
4040
- padding: 30px;
4041
  }
4042
 
4043
- .premium-blog-post-container .premium-blog-content-wrapper.empty-thumb {
4044
- top: 0;
4045
  }
4046
 
4047
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before,
4048
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:after {
4049
- position: absolute;
4050
- content: "";
4051
- z-index: 1;
4052
- top: 50%;
4053
- right: 50%;
4054
- opacity: 0;
4055
- -webkit-transform: translate(50%, -50%);
4056
- -ms-transform: translate(50%, -50%);
4057
- transform: translate(50%, -50%);
4058
- -webkit-transition: all 0.4s linear 0s;
4059
- transition: all 0.4s linear 0s;
4060
- height: 1px;
4061
- width: 100%;
4062
- background-color: #fff;
4063
  }
4064
 
4065
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before {
4066
- width: 1px;
4067
- height: 100%;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4068
  }
4069
 
4070
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-container:after {
4071
- width: 20px;
4072
- opacity: 1;
 
 
4073
  }
4074
 
4075
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-container:before {
4076
- height: 20px;
4077
- opacity: 1;
 
 
4078
  }
4079
 
4080
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-content-wrapper {
4081
- margin: 0px 10px 20px;
4082
- clear: both;
 
 
4083
  }
4084
 
4085
- .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay,
4086
- .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay,
4087
- .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay {
4088
- position: absolute;
4089
- top: 0;
4090
- right: 0;
4091
- width: 100%;
4092
- height: 100%;
4093
- -webkit-transition: all 0.3s ease-in-out;
4094
- transition: all 0.3s ease-in-out;
4095
- opacity: 0;
4096
  }
4097
 
4098
- .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay a,
4099
- .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay a,
4100
- .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay a {
4101
- -js-display: flex;
4102
- display: -webkit-box;
4103
- display: -webkit-flex;
4104
- display: -moz-box;
4105
- display: -ms-flexbox;
4106
- display: flex;
4107
- -webkit-box-pack: center;
4108
- -webkit-justify-content: center;
4109
- -moz-box-pack: center;
4110
- -ms-flex-pack: center;
4111
- justify-content: center;
4112
- -webkit-box-align: center;
4113
- -webkit-align-items: center;
4114
- -moz-box-align: center;
4115
- -ms-flex-align: center;
4116
- align-items: center;
4117
- width: 100%;
4118
- height: 100%;
 
 
 
 
4119
  }
4120
 
4121
- .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay span,
4122
- .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay i,
4123
- .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay span,
4124
- .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay i,
4125
- .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay span,
4126
- .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay i {
4127
- -webkit-transition: all 0.3s ease-in-out;
4128
- transition: all 0.3s ease-in-out;
4129
  }
4130
 
4131
- .premium-blog-post-container.premium-blog-skin-side {
4132
- -js-display: flex;
4133
- display: -webkit-box;
4134
- display: -webkit-flex;
4135
- display: -moz-box;
4136
- display: -ms-flexbox;
4137
- display: flex;
4138
  }
4139
 
4140
- .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-container {
4141
- height: 100%;
 
4142
  }
4143
 
4144
- .premium-blog-post-container.premium-blog-skin-side .premium-blog-content-wrapper {
4145
- -webkit-box-flex: 1;
4146
- -webkit-flex: 1;
4147
- -moz-box-flex: 1;
4148
- -ms-flex: 1;
4149
- flex: 1;
4150
  }
4151
 
4152
- .premium-blog-post-container.premium-blog-skin-banner {
4153
- position: relative;
 
4154
  }
4155
 
4156
- .premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper {
4157
- position: absolute;
4158
- width: 100%;
4159
- bottom: 0;
4160
- -js-display: flex;
4161
- display: -webkit-box;
4162
- display: -webkit-flex;
4163
- display: -moz-box;
4164
- display: -ms-flexbox;
4165
- display: flex;
4166
- -webkit-box-orient: vertical;
4167
- -webkit-box-direction: normal;
4168
- -webkit-flex-direction: column;
4169
- -moz-box-orient: vertical;
4170
- -moz-box-direction: normal;
4171
- -ms-flex-direction: column;
4172
- flex-direction: column;
4173
- background-color: transparent;
4174
- z-index: 3;
4175
  }
4176
 
4177
- .premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper-inner {
4178
- -webkit-transition: -webkit-transform 0.3s ease-in-out;
4179
- transition: -webkit-transform 0.3s ease-in-out;
4180
- transition: transform 0.3s ease-in-out;
4181
- transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
4182
  }
4183
 
4184
- .premium-blog-post-container.premium-blog-skin-banner:hover .premium-blog-content-wrapper-inner {
4185
- -webkit-transform: translateY(-5px);
4186
- -ms-transform: translateY(-5px);
4187
- transform: translateY(-5px);
4188
  }
4189
 
4190
- .premium-blog-post-container .premium-blog-cats-container ul.post-categories {
4191
- margin: 0;
4192
- padding: 0;
4193
- list-style: none;
4194
- -js-display: flex;
4195
- display: -webkit-box;
4196
- display: -webkit-flex;
4197
- display: -moz-box;
4198
- display: -ms-flexbox;
4199
- display: flex;
4200
  }
4201
 
4202
- .premium-blog-post-container .premium-blog-cats-container a {
4203
- display: block;
4204
- font-size: 12px;
4205
- color: #fff;
4206
- background-color: #777;
4207
- margin: 0 0 10px 3px;
4208
- padding: 5px;
4209
- -webkit-transition: all 0.3s ease-in-out;
4210
- transition: all 0.3s ease-in-out;
4211
  }
4212
 
4213
- /*
4214
- * Diagonal Effect
4215
- */
4216
- .premium-blog-diagonal-container {
4217
- position: absolute;
4218
- top: 0;
4219
- right: 0;
4220
- width: 100%;
4221
- height: 100%;
4222
  }
4223
 
4224
- .premium-blog-diagonal-effect:before {
4225
- position: absolute;
4226
- top: 0px;
4227
- right: 0px;
4228
- width: 100%;
4229
- height: 100%;
4230
- content: " ";
4231
- z-index: 1;
4232
- background: rgba(255, 255, 255, 0.2);
4233
- -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
4234
- transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
4235
- -webkit-transition: all 0.3s linear 0s;
4236
- transition: all 0.3s linear 0s;
4237
  }
4238
 
4239
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-diagonal-effect:before {
4240
- -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
4241
- transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
 
 
 
 
 
 
 
 
 
 
 
 
 
4242
  }
4243
 
4244
- /*
4245
- * Framed Effect
4246
- */
4247
- .premium-blog-framed-effect {
4248
- position: absolute;
4249
- width: -webkit-calc(100% - 30px);
4250
- width: calc(100% - 30px);
4251
- height: -webkit-calc(100% - 30px);
4252
- height: calc(100% - 30px);
4253
- top: 15px;
4254
- right: 15px;
4255
- opacity: 0;
4256
- -webkit-transform: scale(0.3);
4257
- -ms-transform: scale(0.3);
4258
- transform: scale(0.3);
4259
- -webkit-transition: all 0.3s linear 0s;
4260
- transition: all 0.3s linear 0s;
4261
  }
4262
 
4263
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-framed-effect {
4264
- opacity: 0.99;
4265
- -webkit-transform: scale(1);
4266
- -ms-transform: scale(1);
4267
- transform: scale(1);
4268
  }
4269
 
4270
- /*
4271
- * Bordered Effect
4272
- */
4273
- .premium-blog-bordered-effect {
4274
- position: absolute;
4275
- top: 0;
4276
- right: 0;
4277
- width: 100%;
4278
- height: 100%;
4279
- opacity: 0;
4280
- padding: 15px;
4281
- -webkit-transition: all 0.3s linear 0s;
4282
- transition: all 0.3s linear 0s;
4283
  }
4284
 
4285
- .premium-blog-bordered-effect .premium-blog-post-link:before,
4286
- .premium-blog-bordered-effect .premium-blog-post-link:after {
4287
- content: "";
4288
- display: block;
4289
- position: absolute;
4290
- top: 0;
4291
- right: 0;
4292
- width: 100%;
4293
- height: 100%;
4294
- -webkit-transition: all 0.5s linear 0s;
4295
- transition: all 0.5s linear 0s;
4296
- -webkit-transition-delay: 0s;
4297
- transition-delay: 0s;
4298
- border-color: rgba(255, 255, 255, 0.45);
 
 
 
 
4299
  }
4300
 
4301
- .premium-blog-bordered-effect .premium-blog-post-link:before {
4302
- border-left: 2px solid;
4303
- border-right: 2px solid;
4304
- -webkit-transform: scale(1, 0);
4305
- -ms-transform: scale(1, 0);
4306
- transform: scale(1, 0);
4307
- -webkit-transform-origin: 0% 0;
4308
- -ms-transform-origin: 0% 0;
4309
- transform-origin: 0% 0;
 
 
 
 
 
 
 
 
 
4310
  }
4311
 
4312
- .premium-blog-bordered-effect .premium-blog-post-link:after {
4313
- border-top: 2px solid;
4314
- border-bottom: 2px solid;
4315
- -webkit-transform: scale(0, 1);
4316
- -ms-transform: scale(0, 1);
4317
- transform: scale(0, 1);
4318
- -webkit-transform-origin: 100% 0;
4319
- -ms-transform-origin: 100% 0;
4320
- transform-origin: 100% 0;
 
 
 
 
 
 
 
 
 
4321
  }
4322
 
4323
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect {
4324
- opacity: 0.99;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4325
  }
4326
 
4327
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect .premium-blog-post-link:before,
4328
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect .premium-blog-post-link:after {
4329
- -webkit-transition-delay: 0.15s;
4330
- transition-delay: 0.15s;
4331
- opacity: 1;
4332
- -webkit-transform: scale(1);
4333
- -ms-transform: scale(1);
4334
- transform: scale(1);
 
 
 
 
 
 
 
 
 
 
4335
  }
4336
 
4337
- /*
4338
- * Squares Effect
4339
- */
4340
- .premium-blog-squares-effect,
4341
- .premium-blog-squares-square-container {
4342
- position: absolute;
4343
- top: 0;
4344
- right: 0;
4345
- width: 100%;
4346
- height: 100%;
 
 
 
 
 
 
 
 
4347
  }
4348
 
4349
- .premium-blog-squares-effect:before,
4350
- .premium-blog-squares-effect:after {
4351
- position: absolute;
4352
- content: "";
4353
- top: 0;
4354
- right: 0;
4355
- width: 50%;
4356
- height: 50%;
4357
- -webkit-transform: translate(100%, -100%);
4358
- -ms-transform: translate(100%, -100%);
4359
- transform: translate(100%, -100%);
4360
- opacity: 0.7;
4361
- -webkit-transition: all 0.3s linear 0s;
4362
- transition: all 0.3s linear 0s;
 
 
 
 
4363
  }
4364
 
4365
- .premium-blog-squares-square-container:before,
4366
- .premium-blog-squares-square-container:after {
4367
- position: absolute;
4368
- content: "";
4369
- top: 0;
4370
- right: 0;
4371
- width: 50%;
4372
- height: 50%;
4373
- -webkit-transform: translate(100%, -100%);
4374
- -ms-transform: translate(100%, -100%);
4375
- transform: translate(100%, -100%);
4376
- opacity: 0.7;
4377
- -webkit-transition: all 0.3s linear 0s;
4378
- transition: all 0.3s linear 0s;
 
 
 
 
 
 
 
 
 
 
 
4379
  }
4380
 
4381
- .premium-blog-squares-square-container:before,
4382
- .premium-blog-squares-square-container:after {
4383
- opacity: 0.8;
 
 
4384
  }
4385
 
4386
- .premium-blog-squares-effect:after {
4387
- -webkit-transform: translate(-200%, 200%);
4388
- -ms-transform: translate(-200%, 200%);
4389
- transform: translate(-200%, 200%);
4390
  }
4391
 
4392
- .premium-blog-squares-square-container:before {
4393
- -webkit-transform: translate(100%, 200%);
4394
- -ms-transform: translate(100%, 200%);
4395
- transform: translate(100%, 200%);
 
4396
  }
4397
 
4398
- .premium-blog-squares-square-container:after {
4399
- -webkit-transform: translate(-200%, -100%);
4400
- -ms-transform: translate(-200%, -100%);
4401
- transform: translate(-200%, -100%);
4402
  }
4403
 
4404
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:before {
4405
- -webkit-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
4406
- -ms-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
4407
- transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
4408
  }
4409
 
4410
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:after {
4411
- -webkit-transform: translate(-100%, 100%) scaleY(1.003) scaleX(1.003);
4412
- -ms-transform: translate(-100%, 100%) scaleY(1.003) scaleX(1.003);
4413
- transform: translate(-100%, 100%) scaleY(1.003) scaleX(1.003);
4414
  }
4415
 
4416
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:before {
4417
- -webkit-transform: translate(0, 100%);
4418
- -ms-transform: translate(0, 100%);
4419
- transform: translate(0, 100%);
4420
  }
4421
 
4422
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:after {
4423
- -webkit-transform: translate(-100%, 0%);
4424
- -ms-transform: translate(-100%, 0%);
4425
- transform: translate(-100%, 0%);
4426
  }
4427
 
4428
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay {
4429
- opacity: 1;
4430
  }
4431
 
4432
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay a {
4433
- opacity: 1;
4434
- -webkit-transform: scale(1);
4435
- -ms-transform: scale(1);
4436
- transform: scale(1);
 
 
 
4437
  }
4438
 
4439
- .premium-blog-clear-fix {
4440
- clear: both;
 
 
 
 
 
 
 
 
 
4441
  }
4442
 
4443
- .premium-blog-masked .premium-blog-thumbnail-container {
4444
- position: relative;
4445
- overflow: visible;
4446
  }
4447
 
4448
- .premium-blog-masked .premium-blog-thumbnail-container svg {
4449
- position: absolute;
4450
- height: 100px;
4451
- width: 100%;
4452
- bottom: -5px;
4453
- right: 0;
4454
- fill: #f5f5f5;
4455
- z-index: 99;
4456
  }
4457
 
4458
- .premium-blog-masked .premium-blog-thumbnail-container svg.premium-blog-shape-divider-svg {
4459
- -webkit-transform: rotate(180deg);
4460
- -ms-transform: rotate(180deg);
4461
- transform: rotate(180deg);
 
4462
  }
4463
 
4464
- .premium-blog-masked .premium-blog-author-thumbnail,
4465
- .premium-blog-masked .premium-blog-skin-banner .premium-blog-content-wrapper {
4466
- z-index: 999 !important;
4467
  }
4468
 
4469
- /*Post Format Container*/
4470
- .premium-blog-format-link {
4471
- padding: 5px;
4472
- line-height: 0;
4473
  }
4474
 
4475
- /*Post Format Icon*/
4476
- /*Post Format Content Margin */
4477
- .premium-blog-entry-meta {
4478
- line-height: 1.3em;
4479
- font-size: 12px;
4480
- margin-bottom: 13px;
4481
- color: #adadad;
 
 
 
 
 
 
 
 
 
 
 
 
4482
  }
4483
 
4484
- .premium-blog-entry-meta i {
4485
- margin-left: 3px;
4486
- -webkit-transition: all 0.3s ease-in-out;
4487
- transition: all 0.3s ease-in-out;
4488
  }
4489
 
4490
- .premium-blog-meta-data {
4491
- display: inline-block;
4492
  }
4493
 
4494
- .premium-blog-meta-data .premium-blog-meta-separator {
4495
- margin: 0 5px;
 
4496
  }
4497
 
4498
- .premium-blog-meta-data a,
4499
- .premium-blog-meta-data span {
4500
- color: inherit;
4501
- -webkit-transition: all 0.3s ease-in-out;
4502
- transition: all 0.3s ease-in-out;
4503
  }
4504
 
4505
- .premium-blog-author-thumbnail {
4506
- position: relative;
4507
- padding: 0 30px;
4508
- width: 100%;
4509
- top: -10px;
4510
- height: 0;
4511
- pointer-events: none;
 
 
 
4512
  }
4513
 
4514
- .premium-blog-author-thumbnail img {
4515
- -webkit-border-radius: 50%;
4516
- border-radius: 50%;
4517
- width: 60px;
4518
- pointer-events: all;
4519
- -webkit-transform: translateY(-50%);
4520
- -ms-transform: translateY(-50%);
4521
- transform: translateY(-50%);
 
 
4522
  }
4523
 
4524
- .premium-blog-entry-title a,
4525
- .premium-blog-post-tags-container a,
4526
- .premium-blog-post-content .premium-blog-excerpt-link {
4527
- -webkit-transition: all 0.3s ease-in-out;
4528
- transition: all 0.3s ease-in-out;
 
 
 
 
 
4529
  }
4530
 
4531
- .premium-blog-excerpt-link-wrap a.premium-blog-excerpt-link {
4532
- background-color: transparent;
4533
- color: #54595f;
4534
- padding: 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4535
  }
4536
 
4537
- .premium-blog-cta-full-yes .premium-blog-excerpt-link {
4538
- width: 100%;
 
 
 
 
4539
  }
4540
 
4541
- .premium-blog-post-tags-container {
4542
- margin-top: 8px;
4543
- -js-display: flex;
4544
- display: -webkit-box;
4545
- display: -webkit-flex;
4546
- display: -moz-box;
4547
- display: -ms-flexbox;
4548
- display: flex;
4549
- -webkit-box-align: center;
4550
- -webkit-align-items: center;
4551
- -moz-box-align: center;
4552
- -ms-flex-align: center;
4553
- align-items: center;
4554
- -webkit-flex-wrap: wrap;
4555
- -ms-flex-wrap: wrap;
4556
- flex-wrap: wrap;
4557
  }
4558
 
4559
- .premium-blog-post-tags-container a {
4560
- color: inherit;
4561
- margin-right: 5px;
 
 
 
 
 
 
 
4562
  }
4563
 
4564
- .premium-blog-align-center .post-categories,
4565
- .premium-blog-align-center .premium-blog-inner-container,
4566
- .premium-blog-align-center .premium-blog-post-tags-container {
4567
- -webkit-box-pack: center;
4568
- -webkit-justify-content: center;
4569
- -moz-box-pack: center;
4570
- -ms-flex-pack: center;
4571
- justify-content: center;
4572
  }
4573
 
4574
- .premium-blog-align-left .premium-blog-post-container .post-categories,
4575
- .premium-blog-align-left .premium-blog-post-container .premium-blog-inner-container,
4576
- .premium-blog-align-left .premium-blog-post-container .premium-blog-post-tags-container {
4577
- -webkit-box-pack: end;
4578
- -webkit-justify-content: flex-end;
4579
- -moz-box-pack: end;
4580
- -ms-flex-pack: end;
4581
- justify-content: flex-end;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4582
  }
4583
 
4584
- /* .premium-blog-align-left .premium-blog-post-container.premium-blog-skin-cards .post-categories,
4585
- .premium-blog-align-left .premium-blog-post-container.premium-blog-skin-cards .premium-blog-inner-container,
4586
- .premium-blog-align-left .premium-blog-post-container.premium-blog-skin-cards .premium-blog-post-tags-container {
4587
- -webkit-box-pack: start;
4588
- -webkit-justify-content: flex-start;
4589
- -moz-box-pack: start;
4590
- -ms-flex-pack: start;
4591
- justify-content: flex-start;
4592
- } */
4593
 
4594
- .premium-blog-align-right .premium-blog-post-container .post-categories,
4595
- .premium-blog-align-right .premium-blog-post-container .premium-blog-inner-container,
4596
- .premium-blog-align-right .premium-blog-post-container .premium-blog-post-tags-container {
4597
- -webkit-box-pack: start;
4598
- -webkit-justify-content: flex-start;
4599
- -moz-box-pack: start;
4600
- -ms-flex-pack: start;
4601
- justify-content: flex-start;
4602
  }
4603
 
4604
- /* .premium-blog-align-right .premium-blog-post-container.premium-blog-skin-cards .post-categories,
4605
- .premium-blog-align-right .premium-blog-post-container.premium-blog-skin-cards .premium-blog-inner-container,
4606
- .premium-blog-align-right .premium-blog-post-container.premium-blog-skin-cards .premium-blog-post-tags-container {
4607
- -webkit-box-pack: end;
4608
- -webkit-justify-content: flex-end;
4609
- -moz-box-pack: end;
4610
- -ms-flex-pack: end;
4611
- justify-content: flex-end;
4612
- } */
4613
 
4614
- /* Pagination */
4615
- .premium-blog-pagination-container {
4616
- text-align: left;
 
 
 
 
 
 
 
4617
  }
4618
 
4619
- .premium-blog-pagination-container span {
4620
- cursor: default;
 
4621
  }
4622
 
4623
- .premium-blog-pagination-container .page-numbers {
4624
- display: inline-block;
4625
- color: #000;
4626
- line-height: 1;
4627
- font-size: 1em;
4628
- font-weight: 400;
4629
- text-decoration: none;
4630
- padding: 0.75em;
4631
- margin: 0 0 0.4em 0.4em;
4632
- -webkit-transition: all 0.2s ease-in-out;
4633
- transition: all 0.2s ease-in-out;
4634
  }
4635
 
4636
- .premium-blog-wrap .premium-loading-feed {
4637
- display: block;
4638
- position: absolute;
4639
- width: 100%;
4640
- height: 100%;
4641
- top: 0px;
4642
- right: 0px;
4643
- bottom: 0px;
4644
- left: 0px;
4645
- background: rgba(255, 255, 255, 0.2);
4646
- -js-display: flex;
4647
- display: -webkit-box;
4648
- display: -webkit-flex;
4649
- display: -moz-box;
4650
- display: -ms-flexbox;
4651
- display: flex;
4652
- -webkit-box-align: center;
4653
- -webkit-align-items: center;
4654
- -moz-box-align: center;
4655
- -ms-flex-align: center;
4656
- align-items: center;
4657
- z-index: 99;
4658
  }
4659
 
4660
- .premium-blog-wrap {
4661
- -js-display: flex;
4662
- display: -webkit-box;
4663
- display: -webkit-flex;
4664
- display: -moz-box;
4665
- display: -ms-flexbox;
4666
- display: flex;
4667
- -webkit-flex-wrap: wrap;
4668
- -ms-flex-wrap: wrap;
4669
- flex-wrap: wrap;
4670
  }
4671
 
4672
- .premium-blog-wrap ul.slick-dots {
4673
- width: 100%;
 
 
 
 
4674
  }
4675
 
4676
- /**
4677
- * Even Layout
4678
- */
4679
- .premium-blog-even .premium-blog-post-container {
4680
- height: 100%;
4681
  }
4682
 
4683
- .premium-blog-even .slick-track {
4684
- -js-display: flex;
4685
- display: -webkit-box;
4686
- display: -webkit-flex;
4687
- display: -moz-box;
4688
- display: -ms-flexbox;
4689
- display: flex;
4690
  }
4691
 
4692
- .premium-blog-even .slick-slide {
4693
- height: inherit !important;
 
 
 
4694
  }
4695
 
4696
- /**
4697
- * Responsive Style
4698
- */
4699
- @media (max-width: 768px) {
4700
- .premium-blog-content-wrapper {
4701
- top: 0;
4702
- margin: 0;
4703
- padding: 15px;
4704
- }
4705
-
4706
- .premium-blog-thumb-effect-wrapper {
4707
- margin-bottom: 15px;
4708
- }
4709
  }
4710
 
4711
- [dir="rtl"] .premium-blog-wrap.slick-slider .slick-list,
4712
- [dir="rtl"] .premium-blog-wrap.slick-slider .slick-track {
4713
- direction: ltr;
4714
  }
4715
 
4716
- /************ Premium Team Members ************/
4717
- /*********************************************/
4718
- .premium-person-container {
4719
- position: relative;
4720
  }
4721
 
4722
- .premium-person-image-container {
4723
- position: relative;
4724
- text-align: center;
4725
- overflow: hidden;
4726
  }
4727
 
4728
- .premium-person-image-container .premium-person-image-wrap {
4729
- overflow: hidden;
 
 
 
 
4730
  }
4731
 
4732
- .premium-person-zoomout-effect .premium-person-image-container img,
4733
- .premium-person-scale-effect .premium-person-image-container img {
4734
- -webkit-transform: scale(1.2);
4735
- -ms-transform: scale(1.2);
4736
- transform: scale(1.2);
 
 
 
 
4737
  }
4738
 
4739
- .premium-person-sepia-effect .premium-person-image-container img {
4740
- -webkit-filter: sepia(30%);
4741
- filter: sepia(30%);
4742
  }
4743
 
4744
- .premium-person-bright-effect .premium-person-image-container img {
4745
- -webkit-filter: brightness(1);
4746
- filter: brightness(1);
4747
  }
4748
 
4749
- .premium-person-trans-effect .premium-person-image-container img {
4750
- -webkit-transform: translateX(15px) scale(1.1);
4751
- -ms-transform: translateX(15px) scale(1.1);
4752
- transform: translateX(15px) scale(1.1);
4753
  }
4754
 
4755
- .premium-person-zoomin-effect:hover .premium-person-image-container img {
4756
- -webkit-transform: scale(1.2);
4757
- -ms-transform: scale(1.2);
4758
- transform: scale(1.2);
4759
  }
4760
 
4761
- .premium-person-zoomout-effect:hover .premium-person-image-container img {
4762
- -webkit-transform: scale(1.1);
4763
- -ms-transform: scale(1.1);
4764
- transform: scale(1.1);
 
4765
  }
4766
 
4767
- .premium-person-scale-effect:hover .premium-person-image-container img {
4768
- -webkit-transform: scale(1.3) rotate(-5deg);
4769
- -ms-transform: scale(1.3) rotate(-5deg);
4770
- transform: scale(1.3) rotate(-5deg);
 
 
 
 
 
4771
  }
4772
 
4773
- .premium-person-grayscale-effect:hover .premium-person-image-container img {
4774
- -webkit-filter: grayscale(100%);
4775
- filter: grayscale(100%);
 
4776
  }
4777
 
4778
- .premium-person-blur-effect:hover .premium-person-image-container img {
4779
- -webkit-filter: blur(3px);
4780
- filter: blur(3px);
 
4781
  }
4782
 
4783
- .premium-person-sepia-effect:hover .premium-person-image-container img {
4784
- -webkit-filter: sepia(0%);
4785
- filter: sepia(0%);
 
4786
  }
4787
 
4788
- .premium-person-bright-effect:hover .premium-person-image-container img {
4789
- -webkit-filter: brightness(1.2);
4790
- filter: brightness(1.2);
4791
  }
4792
 
4793
- .premium-person-trans-effect:hover .premium-person-image-container img {
4794
- -webkit-transform: translateX(0px) scale(1.1);
4795
- -ms-transform: translateX(0px) scale(1.1);
4796
- transform: translateX(0px) scale(1.1);
4797
  }
4798
 
4799
- .premium-person-container .premium-person-image-container img {
4800
- width: 100%;
4801
- height: 100%;
4802
- -o-object-fit: cover;
4803
- object-fit: cover;
4804
- -webkit-transition: all 0.5s ease-in-out;
4805
- transition: all 0.5s ease-in-out;
4806
  }
4807
 
4808
- .premium-person-style2 .premium-person-social {
4809
- position: absolute;
4810
- top: 0;
4811
- right: 0;
4812
- width: 100%;
4813
- height: 100%;
4814
- z-index: 2;
4815
- -js-display: flex;
4816
- display: -webkit-box;
4817
- display: -webkit-flex;
4818
- display: -moz-box;
4819
- display: -ms-flexbox;
4820
- display: flex;
4821
- -webkit-box-pack: center;
4822
- -webkit-justify-content: center;
4823
- -moz-box-pack: center;
4824
- -ms-flex-pack: center;
4825
- justify-content: center;
4826
- -webkit-box-align: center;
4827
- -webkit-align-items: center;
4828
- -moz-box-align: center;
4829
- -ms-flex-align: center;
4830
- align-items: center;
4831
- -webkit-box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
4832
- box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
4833
- -webkit-transition: all 0.5s linear 0s;
4834
- transition: all 0.5s linear 0s;
4835
- opacity: 0;
4836
  }
4837
 
4838
- .premium-person-style2 .premium-person-image-container:hover .premium-person-social {
4839
- opacity: 1;
 
4840
  }
4841
 
4842
- .premium-person-list-item a {
4843
- display: inline-block;
4844
  }
4845
 
4846
- .premium-person-style2 .premium-person-list-item a {
4847
- opacity: 0;
4848
- -webkit-transform: scale(0);
4849
- -ms-transform: scale(0);
4850
- transform: scale(0);
4851
- -webkit-transition: all 0.5s ease-in-out 0s;
4852
- transition: all 0.5s ease-in-out 0s;
4853
  }
4854
 
4855
- .premium-person-style2 .premium-person-image-container:hover .premium-person-list-item a {
4856
- opacity: 1;
4857
- -webkit-transform: scale(1);
4858
- -ms-transform: scale(1);
4859
- transform: scale(1);
4860
  }
4861
 
4862
- .premium-person-info-container {
4863
- padding: 30px 15px;
 
 
 
 
 
 
4864
  }
4865
 
4866
- .premium-person-name {
4867
- margin: 0 0 5px;
4868
- font-weight: 700;
 
 
 
 
 
 
4869
  }
4870
 
4871
- .premium-person-title {
4872
- margin: 0 0 20px;
4873
- padding: 0;
4874
  }
4875
 
4876
- .premium-person-content {
4877
- margin: 0 0 30px;
 
 
 
 
 
 
 
 
 
4878
  }
4879
 
4880
- /*Override Theme List Margin*/
4881
- ul.premium-person-social-list {
4882
- margin: 0px !important;
4883
- padding: 0;
 
 
 
4884
  }
4885
 
4886
- .premium-person-social-list .premium-person-list-item {
4887
- display: inline;
4888
- list-style: none;
 
 
4889
  }
4890
 
4891
- .premium-person-social-list li {
4892
- position: relative;
4893
- bottom: 0px;
4894
- -webkit-transition: all 0.2s ease-in-out;
4895
- transition: all 0.2s ease-in-out;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4896
  }
4897
 
4898
- .premium-person-social-list li i {
4899
- position: relative;
4900
- bottom: 0px;
4901
- -webkit-transition: all 0.2s ease-in-out;
4902
- transition: all 0.2s ease-in-out;
4903
  }
4904
 
4905
- .premium-person-defaults-yes li.premium-person-facebook:hover a {
4906
- background-color: #3b5998 !important;
 
 
 
4907
  }
4908
 
4909
- .premium-person-defaults-yes li.premium-person-twitter:hover a {
4910
- background-color: #55acee !important;
4911
  }
4912
 
4913
- .premium-person-defaults-yes li.premium-person-linkedin:hover a {
4914
- background-color: #0077b5 !important;
4915
  }
4916
 
4917
- .premium-person-defaults-yes li.premium-person-google:hover a {
4918
- background-color: #dc4e41 !important;
 
 
 
4919
  }
4920
 
4921
- .premium-person-defaults-yes li.premium-person-youtube:hover a {
4922
- background-color: #b31217 !important;
4923
  }
4924
 
4925
- .premium-person-defaults-yes li.premium-person-instagram:hover a {
4926
- background-color: #e4405f !important;
4927
  }
4928
 
4929
- .premium-person-defaults-yes li.premium-person-skype:hover a {
4930
- background-color: #00aff0 !important;
 
 
 
4931
  }
4932
 
4933
- .premium-person-defaults-yes li.premium-person-pinterest:hover a {
4934
- background-color: #bd081c !important;
 
 
 
 
4935
  }
4936
 
4937
- .premium-person-defaults-yes li.premium-person-dribbble:hover a {
4938
- background-color: #ea4c89 !important;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4939
  }
4940
 
4941
- .premium-person-defaults-yes li.premium-person-mail:hover a {
4942
- background-color: #b23121 !important;
 
 
 
 
 
 
 
 
 
 
4943
  }
4944
 
4945
- .premium-person-defaults-yes li.premium-person-behance:hover a {
4946
- background-color: #1769ff !important;
4947
  }
4948
 
4949
- .premium-person-defaults-yes li.premium-person-whatsapp:hover a {
4950
- background-color: #25d366 !important;
 
 
4951
  }
4952
 
4953
- .premium-person-defaults-yes li.premium-person-telegram:hover a {
4954
- background-color: #0088cc !important;
 
4955
  }
4956
 
4957
- .premium-person-defaults-yes li.premium-person-site:hover a {
4958
- background-color: #0055a5 !important;
 
4959
  }
4960
 
4961
- .premium-person-social-list li:hover a {
4962
- -webkit-box-shadow: none;
4963
- box-shadow: none;
 
 
 
 
 
 
 
 
 
4964
  }
4965
 
4966
- .premium-person-social-list li a:focus {
4967
- -webkit-box-shadow: none;
4968
- box-shadow: none;
4969
- outline: none;
4970
  }
4971
 
4972
- .premium-person-social-list li i {
4973
- font-size: 18px;
 
 
4974
  }
4975
 
4976
- .elementor-widget-premium-addon-person .elementor-widget-container {
4977
- -js-display: flex;
4978
- display: -webkit-box;
4979
- display: -webkit-flex;
4980
- display: -moz-box;
4981
- display: -ms-flexbox;
4982
- display: flex;
4983
- -webkit-box-pack: center;
4984
- -webkit-justify-content: center;
4985
- -moz-box-pack: center;
4986
- -ms-flex-pack: center;
4987
- justify-content: center;
4988
  }
4989
 
4990
- .premium-persons-container.multiple-persons {
4991
- -js-display: flex;
4992
- display: -webkit-box;
4993
- display: -webkit-flex;
4994
- display: -moz-box;
4995
- display: -ms-flexbox;
4996
- display: flex;
4997
- -webkit-flex-wrap: wrap;
4998
- -ms-flex-wrap: wrap;
4999
- flex-wrap: wrap;
5000
- width: 100%;
 
5001
  }
5002
 
5003
- .premium-person-style1 .premium-person-container {
5004
- overflow: hidden;
 
 
 
 
 
5005
  }
5006
-
5007
- .premium-person-style1 .premium-person-container .premium-person-info {
5008
- position: absolute;
5009
- top: auto;
5010
- left: 0;
5011
- right: 0;
5012
- -webkit-transition: all 500ms ease 0s;
5013
- transition: all 500ms ease 0s;
5014
- -webkit-transform: translate3d(0, 100%, 0);
5015
- transform: translate3d(0, 100%, 0);
5016
  }
5017
 
5018
- .premium-person-style1 .premium-person-container:hover .premium-person-info {
5019
- -webkit-transform: translate3d(0, 0, 0);
5020
- transform: translate3d(0, 0, 0);
5021
- bottom: -1px !important;
5022
  }
5023
 
5024
- .premium-person-style1 .premium-person-social-list li:hover {
5025
- bottom: 5px;
 
5026
  }
5027
 
5028
- .premium-person-style1.multiple-persons:not([data-persons-equal="yes"]) {
5029
- -webkit-box-align: start;
5030
- -webkit-align-items: flex-start;
5031
- -moz-box-align: start;
5032
- -ms-flex-align: start;
5033
- align-items: flex-start;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5034
  }
5035
 
5036
- .premium-person-style1 .slick-track {
5037
- -js-display: flex;
5038
- display: -webkit-box;
5039
- display: -webkit-flex;
5040
- display: -moz-box;
5041
- display: -ms-flexbox;
5042
- display: flex;
5043
  }
5044
 
5045
- .premium-person-style1 .slick-slide {
5046
- height: inherit !important;
 
5047
  }
5048
 
5049
- .premium-person-style1.multiple-persons[data-persons-equal="yes"] .premium-person-image-container,
5050
- .premium-person-style1.multiple-persons[data-persons-equal="yes"] .premium-person-image-wrap {
5051
- height: 100%;
 
 
 
5052
  }
5053
 
5054
- .premium-person-style3 .premium-person-info-container {
5055
- position: absolute;
5056
- top: 0;
5057
- right: 0;
5058
- width: 100%;
5059
- height: 100%;
5060
- -js-display: flex;
5061
- display: -webkit-box;
5062
- display: -webkit-flex;
5063
- display: -moz-box;
5064
- display: -ms-flexbox;
5065
- display: flex;
5066
- -webkit-box-orient: vertical;
5067
- -webkit-box-direction: normal;
5068
- -webkit-flex-direction: column;
5069
- -moz-box-orient: vertical;
5070
- -moz-box-direction: normal;
5071
- -ms-flex-direction: column;
5072
- flex-direction: column;
5073
- -webkit-box-pack: justify;
5074
- -webkit-justify-content: space-between;
5075
- -moz-box-pack: justify;
5076
- -ms-flex-pack: justify;
5077
- justify-content: space-between;
5078
  }
5079
 
5080
- .premium-person-style3 .premium-person-title-desc-wrap {
5081
- -js-display: flex;
5082
- display: -webkit-box;
5083
- display: -webkit-flex;
5084
- display: -moz-box;
5085
- display: -ms-flexbox;
5086
- display: flex;
5087
- -webkit-box-orient: horizontal;
5088
- -webkit-box-direction: reverse;
5089
- -webkit-flex-direction: row-reverse;
5090
- -moz-box-orient: horizontal;
5091
- -moz-box-direction: reverse;
5092
- -ms-flex-direction: row-reverse;
5093
- flex-direction: row-reverse;
5094
- -webkit-box-pack: justify;
5095
- -webkit-justify-content: space-between;
5096
- -moz-box-pack: justify;
5097
- -ms-flex-pack: justify;
5098
- justify-content: space-between;
5099
- -webkit-box-align: start;
5100
- -webkit-align-items: flex-start;
5101
- -moz-box-align: start;
5102
- -ms-flex-align: start;
5103
- align-items: flex-start;
5104
  }
5105
 
5106
- .premium-person-style3 .premium-person-name-icons-wrap {
5107
- -js-display: flex;
5108
- display: -webkit-box;
5109
- display: -webkit-flex;
5110
- display: -moz-box;
5111
- display: -ms-flexbox;
5112
- display: flex;
5113
- -webkit-box-pack: justify;
5114
- -webkit-justify-content: space-between;
5115
- -moz-box-pack: justify;
5116
- -ms-flex-pack: justify;
5117
- justify-content: space-between;
5118
- -webkit-box-align: end;
5119
- -webkit-align-items: flex-end;
5120
- -moz-box-align: end;
5121
- -ms-flex-align: end;
5122
- align-items: flex-end;
 
 
 
 
 
5123
  }
5124
 
5125
- .premium-person-style3 .premium-person-title {
5126
- opacity: 0;
5127
- -webkit-transition: all 0.3s ease;
5128
- transition: all 0.3s ease;
5129
- width: 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5130
  }
5131
 
5132
- .premium-person-style3 .premium-person-title span {
5133
- display: inline-block;
 
 
5134
  }
5135
 
5136
- .premium-person-style3 .premium-person-name {
5137
- padding-right: 10px;
 
5138
  }
5139
 
5140
- .premium-person-style3 .premium-person-social-list {
5141
- -js-display: flex;
5142
- display: -webkit-box;
5143
- display: -webkit-flex;
5144
- display: -moz-box;
5145
- display: -ms-flexbox;
5146
- display: flex;
5147
- -webkit-box-orient: vertical;
5148
- -webkit-box-direction: normal;
5149
- -webkit-flex-direction: column;
5150
- -moz-box-orient: vertical;
5151
- -moz-box-direction: normal;
5152
- -ms-flex-direction: column;
5153
- flex-direction: column;
5154
- -webkit-transform: translateY(20px);
5155
- -ms-transform: translateY(20px);
5156
- transform: translateY(20px);
5157
- opacity: 0;
5158
- -webkit-transition: all 0.3s ease;
5159
- transition: all 0.3s ease;
5160
  }
5161
 
5162
- .premium-person-style3 .premium-person-list-item {
5163
- line-height: 0;
 
 
 
 
 
 
5164
  }
5165
 
5166
- .premium-person-style3 .premium-person-list-item a {
5167
- padding: 5px 0 0 10px;
5168
- margin: 5px 0;
5169
  }
5170
 
5171
- .premium-person-style3 .premium-person-container:hover .premium-person-title {
5172
- opacity: 1;
5173
  }
5174
 
5175
- .premium-person-style3 .premium-person-container:hover .premium-person-social-list {
5176
- opacity: 1;
5177
- -webkit-transform: translateY(0);
5178
- -ms-transform: translateY(0);
5179
- transform: translateY(0);
 
 
5180
  }
5181
 
5182
- .premium-persons-title-cw .premium-person-title {
5183
- -webkit-transform: translateX(-15px) rotate(-90deg);
5184
- -ms-transform: translateX(-15px) rotate(-90deg);
5185
- transform: translateX(-15px) rotate(-90deg);
5186
- -webkit-transform-origin: top;
5187
- -ms-transform-origin: top;
5188
- transform-origin: top;
 
 
 
 
 
 
 
 
 
 
 
 
5189
  }
5190
 
5191
- .premium-persons-title-cw .premium-person-container:hover .premium-person-title {
5192
- -webkit-transform: translateX(0) rotate(-90deg);
5193
- -ms-transform: translateX(0) rotate(-90deg);
5194
- transform: translateX(0) rotate(-90deg);
5195
  }
5196
 
5197
- .premium-persons-title-ccw .premium-person-title {
5198
- width: auto;
5199
- margin-left: 20px;
5200
- -webkit-transform: translateX(-15px) rotate(90deg);
5201
- -ms-transform: translateX(-15px) rotate(90deg);
5202
- transform: translateX(-15px) rotate(90deg);
5203
- -webkit-transform-origin: center left;
5204
- -ms-transform-origin: center left;
5205
- transform-origin: center left;
 
 
 
 
 
5206
  }
5207
 
5208
- .premium-persons-title-ccw .premium-person-container:hover .premium-person-title {
5209
- -webkit-transform: translateX(0) rotate(90deg);
5210
- -ms-transform: translateX(0) rotate(90deg);
5211
- transform: translateX(0) rotate(90deg);
5212
  }
5213
 
5214
- /**************** Premium Fancy Text *******************/
5215
- /*******************************************************/
5216
- .premium-suffix-text,
5217
- .premium-fancy-text,
5218
- .premium-prefix-text {
5219
- font-size: 40px;
5220
  }
5221
 
5222
- .premium-fancy-text-wrapper:not(.typing) .premium-fancy-text,
5223
- .premium-fancy-item-hidden {
5224
- opacity: 0;
 
5225
  }
5226
 
5227
- .premium-fancy-text-wrapper .premium-fancy-list-items {
5228
- list-style: none;
 
 
 
 
5229
  }
5230
 
5231
- .premium-fancy-text-wrapper .premium-fancy-text-span-align {
5232
- vertical-align: top;
 
5233
  }
5234
 
5235
- .premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-text-items-wrapper {
5236
- margin: 0;
5237
- padding: 0;
5238
- border: none;
5239
- position: relative;
5240
  }
5241
 
5242
- .premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-list-items {
5243
- position: absolute;
5244
- top: 0;
5245
- left: 0;
5246
- display: inline-block;
 
 
 
 
 
 
 
 
 
 
 
5247
  }
5248
 
5249
- .premium-fancy-text-wrapper.zoomout .premium-fancy-item-hidden {
5250
- -webkit-animation: pa-zoom-out 0.8s;
5251
- animation: pa-zoom-out 0.8s;
 
 
 
5252
  }
5253
 
5254
- .premium-fancy-text-wrapper.zoomout .premium-fancy-item-visible {
5255
- position: relative !important;
5256
- -webkit-animation: pa-zoom-in 0.8s;
5257
- animation: pa-zoom-in 0.8s;
5258
  }
5259
 
5260
- .premium-fancy-text-wrapper.zoomout .premium-fancy-text-items-wrapper {
5261
- -webkit-perspective: 300px;
5262
- perspective: 300px;
 
 
 
5263
  }
5264
 
5265
- .premium-fancy-text-wrapper.rotate .premium-fancy-list-items {
5266
- -webkit-transform-origin: 50% 100%;
5267
- -ms-transform-origin: 50% 100%;
5268
- transform-origin: 50% 100%;
5269
  }
5270
 
5271
- .premium-fancy-text-wrapper.rotate .premium-fancy-item-hidden {
5272
- -webkit-transform: rotateX(180deg);
5273
- transform: rotateX(180deg);
5274
- -webkit-animation: pa-rotate-out 1.2s;
5275
- animation: pa-rotate-out 1.2s;
5276
  }
5277
 
5278
- .premium-fancy-text-wrapper.rotate .premium-fancy-item-visible {
5279
- position: relative !important;
5280
- -webkit-transform: rotateX(0deg);
5281
- transform: rotateX(0deg);
5282
- -webkit-animation: pa-rotate-in 1.2s;
5283
- animation: pa-rotate-in 1.2s;
5284
  }
5285
 
5286
- .premium-fancy-text-wrapper.custom .premium-fancy-item-visible {
5287
- position: relative !important;
 
 
 
 
 
5288
  }
5289
 
5290
- .premium-fancy-text-wrapper.auto-fade .premium-fancy-text {
5291
- display: inline-block;
5292
- width: 200px;
5293
- font-weight: 400;
 
 
5294
  }
5295
 
5296
- .premium-fancy-text-wrapper.auto-fade .premium-fancy-svg-text {
5297
- position: relative;
5298
- vertical-align: sub;
 
 
 
5299
  }
5300
 
5301
- .premium-fancy-text-wrapper.auto-fade g>text {
5302
- text-anchor: start;
5303
- shape-rendering: crispEdges;
5304
- opacity: 0;
5305
- font-size: 300px;
5306
- -webkit-animation-name: pa-auto-fade;
5307
- animation-name: pa-auto-fade;
5308
- -moz-animation-name: pa-auto-fade;
5309
- -webkit-animation-duration: 9s;
5310
- animation-duration: 9s;
5311
- -webkit-animation-timing-function: linear;
5312
- animation-timing-function: linear;
5313
- -webkit-animation-iteration-count: infinite;
5314
- animation-iteration-count: infinite;
5315
  }
5316
 
5317
- .premium-fancy-text-wrapper.auto-fade g>text:nth-child(1) {
5318
- -webkit-animation-delay: 0s;
5319
- animation-delay: 0s;
 
5320
  }
5321
 
5322
- .premium-fancy-text-wrapper.auto-fade g>text:nth-child(2) {
5323
- -webkit-animation-delay: 3s;
5324
- animation-delay: 3s;
5325
  }
5326
 
5327
- .premium-fancy-text-wrapper.auto-fade g>text:nth-child(3) {
5328
- -webkit-animation-delay: 6s;
5329
- animation-delay: 6s;
 
 
5330
  }
5331
 
5332
- .premium-fancy-text-wrapper.loading .premium-fancy-text {
5333
- position: relative;
 
5334
  }
5335
 
5336
- .premium-fancy-text-wrapper.loading .premium-fancy-text .premium-loading-bar {
5337
- position: absolute;
5338
- width: 100%;
5339
- height: 3px;
5340
- bottom: 0;
5341
- left: 0;
5342
- animation: pa-loading-bar 2.5s ease-out infinite;
5343
- -webkit-animation: pa-loading-bar 2.5s ease-out infinite;
5344
  }
5345
 
5346
- .premium-fancy-text-wrapper.loading.pause .premium-fancy-text:hover .premium-loading-bar {
5347
- -webkit-animation-play-state: paused;
5348
- animation-play-state: paused;
 
5349
  }
5350
 
5351
- @-webkit-keyframes pa-auto-fade {
5352
- 0% {
5353
- opacity: 0;
5354
- }
 
5355
 
5356
- 20% {
5357
- opacity: 1;
5358
- }
 
 
5359
 
5360
- 35% {
5361
- opacity: 0;
5362
- }
 
 
5363
 
5364
- 100% {
5365
- opacity: 0;
5366
- }
5367
  }
5368
 
5369
- @keyframes pa-auto-fade {
5370
- 0% {
5371
- opacity: 0;
5372
- }
5373
 
5374
- 20% {
5375
- opacity: 1;
5376
- }
 
5377
 
5378
- 35% {
5379
- opacity: 0;
5380
- }
 
5381
 
5382
- 100% {
5383
- opacity: 0;
5384
- }
 
5385
  }
5386
 
5387
- @-webkit-keyframes pa-loading-bar {
5388
- 0% {
5389
- width: 0;
5390
- }
 
 
 
 
5391
 
5392
- 100% {
5393
- width: 100;
5394
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5395
  }
5396
 
5397
- @keyframes pa-loading-bar {
5398
- 0% {
5399
- width: 0;
5400
- }
5401
 
5402
- 100% {
5403
- width: 100;
5404
- }
5405
  }
5406
 
5407
- @-webkit-keyframes pa-zoom-in {
5408
- 0% {
5409
- opacity: 0;
5410
- -webkit-transform: translateZ(100px);
5411
- transform: translateZ(100px);
5412
- }
 
 
5413
 
5414
- 100% {
5415
- opacity: 1;
5416
- -webkit-transform: translateZ(0);
5417
- transform: translateZ(0);
5418
- }
5419
  }
5420
 
5421
- @keyframes pa-zoom-in {
5422
- 0% {
5423
- opacity: 0;
5424
- -webkit-transform: translateZ(100px);
5425
- transform: translateZ(100px);
5426
- }
5427
 
5428
- 100% {
5429
- opacity: 1;
5430
- -webkit-transform: translateZ(0);
5431
- transform: translateZ(0);
5432
- }
5433
  }
5434
 
5435
- @-webkit-keyframes pa-zoom-out {
5436
- 0% {
5437
- opacity: 1;
5438
- -webkit-transform: translateZ(0);
5439
- transform: translateZ(0);
5440
- }
5441
 
5442
- 100% {
5443
- opacity: 0;
5444
- -webkit-transform: translateZ(-100px);
5445
- transform: translateZ(-100px);
5446
- }
5447
  }
5448
 
5449
- @keyframes pa-zoom-out {
5450
- 0% {
5451
- opacity: 1;
5452
- -webkit-transform: translateZ(0);
5453
- transform: translateZ(0);
5454
- }
5455
 
5456
- 100% {
5457
- opacity: 0;
5458
- -webkit-transform: translateZ(-100px);
5459
- transform: translateZ(-100px);
5460
- }
5461
  }
5462
 
5463
- @-webkit-keyframes pa-rotate-in {
5464
- 0% {
5465
- opacity: 0;
5466
- -webkit-transform: rotateX(180deg);
5467
- transform: rotateX(180deg);
5468
- }
5469
 
5470
- 35% {
5471
- opacity: 0;
5472
- -webkit-transform: rotateX(120deg);
5473
- transform: rotateX(120deg);
5474
- }
 
5475
 
5476
- 65% {
5477
- opacity: 0;
5478
- }
5479
 
5480
- 100% {
5481
- opacity: 1;
5482
- -webkit-transform: rotateX(360deg);
5483
- transform: rotateX(360deg);
5484
- }
5485
  }
5486
 
5487
- @keyframes pa-rotate-in {
5488
- 0% {
5489
- opacity: 0;
5490
- -webkit-transform: rotateX(180deg);
5491
- transform: rotateX(180deg);
5492
- }
5493
 
5494
- 35% {
5495
- opacity: 0;
5496
- -webkit-transform: rotateX(120deg);
5497
- transform: rotateX(120deg);
5498
- }
5499
 
5500
- 65% {
5501
- opacity: 0;
5502
- }
5503
 
5504
- 100% {
5505
- opacity: 1;
5506
- -webkit-transform: rotateX(360deg);
5507
- transform: rotateX(360deg);
5508
- }
5509
  }
5510
 
5511
- @-webkit-keyframes pa-rotate-out {
5512
- 0% {
5513
- opacity: 1;
5514
- -webkit-transform: rotateX(0deg);
5515
- transform: rotateX(0deg);
5516
- }
5517
 
5518
- 35% {
5519
- opacity: 1;
5520
- -webkit-transform: rotateX(-40deg);
5521
- transform: rotateX(-40deg);
5522
- }
5523
 
5524
- 65% {
5525
- opacity: 0;
5526
- }
5527
 
5528
- 100% {
5529
- opacity: 0;
5530
- -webkit-transform: rotateX(180deg);
5531
- transform: rotateX(180deg);
5532
- }
5533
  }
5534
 
5535
- @keyframes pa-rotate-out {
5536
- 0% {
5537
- opacity: 1;
5538
- -webkit-transform: rotateX(0deg);
5539
- transform: rotateX(0deg);
5540
- }
5541
 
5542
- 35% {
5543
- opacity: 1;
5544
- -webkit-transform: rotateX(-40deg);
5545
- transform: rotateX(-40deg);
5546
- }
5547
 
5548
- 65% {
5549
- opacity: 0;
5550
- }
5551
 
5552
- 100% {
5553
- opacity: 0;
5554
- -webkit-transform: rotateX(180deg);
5555
- transform: rotateX(180deg);
5556
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5557
  }
5558
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5559
  /**************** Premium Pricing Table ****************/
5560
  /*******************************************************/
5561
  .premium-pricing-table-container {
5562
- position: relative;
5563
- overflow: hidden;
5564
- text-align: center;
5565
- -webkit-transition: all 0.3s ease-in-out;
5566
- transition: all 0.3s ease-in-out;
5567
  }
5568
 
5569
  .premium-pricing-icon-container {
5570
- -js-display: flex;
5571
- display: -webkit-box;
5572
- display: -webkit-flex;
5573
- display: -moz-box;
5574
- display: -ms-flexbox;
5575
- display: flex;
5576
- -webkit-box-pack: center;
5577
- -webkit-justify-content: center;
5578
- -moz-box-pack: center;
5579
- -ms-flex-pack: center;
5580
- justify-content: center;
5581
- line-height: 0;
5582
  }
5583
 
5584
  .premium-pricing-icon-container .premium-pricing-icon {
5585
- display: inline-block;
5586
  }
5587
 
5588
  .premium-pricing-icon-container .premium-pricing-image {
5589
- overflow: hidden;
5590
  }
5591
 
5592
  .premium-pricing-icon-container .premium-pricing-image img {
5593
- width: 25px;
5594
- height: 25px;
5595
- -o-object-fit: cover;
5596
- object-fit: cover;
5597
  }
5598
 
5599
  .premium-badge-left {
5600
- position: absolute;
5601
- top: 0;
5602
  }
5603
 
5604
  .premium-badge-right {
5605
- position: absolute;
5606
- top: 0;
5607
- right: 0;
5608
  }
5609
 
5610
  .premium-badge-left {
5611
- left: 0;
5612
  }
5613
 
5614
  .premium-badge-triangle.premium-badge-left .corner {
5615
- width: 0;
5616
- height: 0;
5617
- border-top: 150px solid;
5618
- border-bottom: 150px solid transparent;
5619
- border-right: 150px solid transparent;
5620
  }
5621
 
5622
  .premium-badge-triangle.premium-badge-right .corner {
5623
- width: 0;
5624
- height: 0;
5625
- border-bottom: 150px solid transparent;
5626
- border-right: 150px solid;
5627
- border-left: 150px solid transparent;
5628
  }
5629
 
5630
  .premium-badge-triangle span {
5631
- position: absolute;
5632
- top: 35px;
5633
- width: 100px;
5634
- text-align: center;
5635
- -webkit-transform: rotate(-45deg);
5636
- -ms-transform: rotate(-45deg);
5637
- transform: rotate(-45deg);
5638
- display: block;
5639
- text-transform: uppercase;
5640
  }
5641
 
5642
  .premium-badge-triangle.premium-badge-right span {
5643
- -webkit-transform: rotate(45deg);
5644
- -ms-transform: rotate(45deg);
5645
- transform: rotate(45deg);
5646
- right: 0;
5647
  }
5648
 
5649
  .premium-badge-circle {
5650
- min-width: 4em;
5651
- min-height: 4em;
5652
- line-height: 4em;
5653
- text-align: center;
5654
- -webkit-border-radius: 100%;
5655
- border-radius: 100%;
5656
- position: absolute;
5657
- z-index: 1;
5658
  }
5659
 
5660
  .premium-badge-stripe {
5661
- position: absolute;
5662
- -webkit-transform: rotate(90deg);
5663
- -ms-transform: rotate(90deg);
5664
- transform: rotate(90deg);
5665
- width: 15em;
5666
- overflow: hidden;
5667
- height: 15em;
5668
  }
5669
 
5670
  .premium-badge-stripe.premium-badge-left {
5671
- -webkit-transform: rotate(0);
5672
- -ms-transform: rotate(0);
5673
- transform: rotate(0);
5674
  }
5675
 
5676
  .premium-badge-stripe .corner {
5677
- text-align: center;
5678
- left: 0;
5679
- width: 150%;
5680
- -webkit-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
5681
- -ms-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
5682
- transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
5683
- margin-top: 35px;
5684
- font-size: 13px;
5685
- line-height: 2;
5686
- font-weight: 800;
5687
- text-transform: uppercase;
5688
  }
5689
 
5690
  .premium-badge-flag .corner {
5691
- text-align: center;
5692
- -webkit-border-radius: 4px 4px 0 4px;
5693
- border-radius: 4px 4px 0 4px;
5694
- padding: 3px 15px;
5695
- position: absolute;
5696
- top: 10%;
5697
- right: -8px;
5698
  }
5699
 
5700
  .premium-badge-flag .corner::before,
5701
  .premium-badge-flag .corner::after {
5702
- content: "";
5703
- display: block;
5704
- position: absolute;
5705
- width: 0;
5706
- height: 0;
5707
- top: 100%;
5708
- right: 0;
5709
- border-bottom: 8px solid transparent;
5710
  }
5711
 
5712
  .elementor-widget-premium-addon-pricing-table .elementor-widget-container {
5713
- overflow: visible !important;
5714
  }
5715
 
5716
  .premium-badge-flag .corner::after {
5717
- border-left: 8px solid rgba(0, 0, 0, 0.2);
5718
  }
5719
 
5720
  .premium-pricing-price-currency {
5721
- position: relative;
5722
  }
5723
 
5724
  .premium-pricing-button-container {
5725
- display: block;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5726
  }
5727
 
5728
- .premium-pricing-list-container {
5729
- -js-display: flex;
5730
- display: -webkit-box;
5731
- display: -webkit-flex;
5732
- display: -moz-box;
5733
- display: -ms-flexbox;
5734
- display: flex;
5735
- -webkit-box-orient: vertical;
5736
- -webkit-box-direction: normal;
5737
- -webkit-flex-direction: column;
5738
- -moz-box-orient: vertical;
5739
- -moz-box-direction: normal;
5740
- -ms-flex-direction: column;
5741
- flex-direction: column;
5742
- list-style-type: none;
5743
- margin: 0;
5744
  }
5745
 
5746
- .premium-pricing-list-container.premium-pricing-list-item {
5747
- -js-display: flex;
5748
- display: -webkit-box;
5749
- display: -webkit-flex;
5750
- display: -moz-box;
5751
- display: -ms-flexbox;
5752
- display: flex;
5753
- -webkit-box-align: center;
5754
- -webkit-align-items: center;
5755
- -moz-box-align: center;
5756
- -ms-flex-align: center;
5757
- align-items: center;
5758
  }
5759
 
5760
- .premium-pricing-list-container.premium-pricing-list-item svg {
5761
- width: 50px;
5762
- height: 50px;
5763
  }
5764
 
5765
- .premium-pricing-list-container.premium-pricing-list-item img {
5766
- width: 30px;
5767
- height: 30px;
5768
- -o-object-fit: cover;
5769
- object-fit: cover;
5770
  }
5771
 
5772
- .premium-pricing-list-container.premium-pricing-list-span {
5773
- position: relative;
 
 
 
5774
  }
5775
 
5776
- .premium-pricing-list-container.list-item-tooltip {
5777
- border-bottom: 1px dotted;
5778
  }
5779
 
5780
- .premium-pricing-list-container.premium-pricing-list-tooltip {
5781
- position: absolute;
5782
- top: -webkit-calc(100% + 1px);
5783
- top: calc(100% + 1px);
5784
- right: 0;
5785
- visibility: hidden;
5786
- padding: 15px 20px;
5787
- -webkit-border-radius: 5px;
5788
- border-radius: 5px;
5789
- min-width: 200px;
5790
- overflow: hidden;
5791
- text-align: right;
5792
- font-size: 0.8rem;
5793
- color: #fff;
5794
- background-color: #aaa;
5795
  }
5796
 
5797
- .premium-pricing-features-left .premium-pricing-list-span {
5798
- text-align: right;
 
 
5799
  }
5800
 
5801
- .premium-pricing-features-center .premium-pricing-list-span {
5802
- text-align: center;
 
 
 
 
 
 
 
 
 
 
 
 
 
5803
  }
5804
 
5805
- .premium-pricing-features-right .premium-pricing-list-span {
5806
- text-align: left;
 
 
 
 
 
 
 
 
 
5807
  }
5808
 
5809
- .premium-pricing-list-span:hover .premium-pricing-list-tooltip {
5810
- z-index: 99;
5811
- visibility: visible;
5812
- opacity: 1;
 
 
 
 
 
 
 
 
5813
  }
5814
 
5815
- .premium-pricing-slashed-price-value {
5816
- display: inline-block;
5817
- font-size: 20px;
5818
- font-weight: 400;
5819
- margin-left: 5px;
 
 
 
5820
  }
5821
 
5822
- .premium-pricing-price-value {
5823
- font-size: 70px;
5824
  }
5825
 
5826
- .premium-pricing-description-container li {
5827
- list-style-position: inside;
5828
- text-indent: -40px;
5829
  }
5830
 
5831
- @-moz-document url-prefix() {
5832
- .premium-pricing-description-container li {
5833
- text-indent: 0px;
5834
- }
5835
  }
5836
 
5837
- .premium-pricing-price-button {
5838
- display: block;
5839
- padding: 6px 12px;
5840
- line-height: 1.42857143;
5841
- text-align: center;
5842
- color: #fff;
5843
- background: #6ec1e4;
5844
- margin-bottom: 0;
5845
- -webkit-transition: all 0.3s ease-in-out;
5846
- transition: all 0.3s ease-in-out;
5847
  }
5848
 
5849
- /**************** Premium Google Maps ******************/
5850
- /*******************************************************/
5851
- .premium-maps-info-container {
5852
- margin-top: 10px;
5853
- margin-bottom: 10px;
 
5854
  }
5855
 
5856
- .premium-maps-info-title,
5857
- .premium-maps-info-desc {
5858
- margin: 0;
5859
- padding: 0;
 
 
 
 
 
 
5860
  }
5861
 
5862
- .premium-maps-container .gm-style-iw {
5863
- text-align: center;
5864
- direction: ltr;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5865
  }
5866
 
5867
- .premium-maps-container .gm-style img {
5868
- max-width: none !important;
 
5869
  }
5870
 
5871
- /**************** Premium Button ***********************/
5872
- /*******************************************************/
5873
- .premium-button {
5874
- -js-display: inline-flex;
5875
- display: -webkit-inline-box;
5876
- display: -webkit-inline-flex;
5877
- display: -moz-inline-box;
5878
- display: -ms-inline-flexbox;
5879
- display: inline-flex;
5880
- position: relative;
5881
- overflow: hidden;
5882
- -webkit-backface-visibility: hidden;
5883
- backface-visibility: hidden;
5884
- -webkit-transform: translate3d(0, 0, 0);
5885
- transform: translate3d(0, 0, 0);
5886
- cursor: pointer;
5887
- -webkit-transition: all 0.2s ease-in-out !important;
5888
- transition: all 0.2s ease-in-out !important;
5889
  }
5890
 
5891
- .premium-button .premium-lottie-animation,
5892
- .premium-image-button .premium-lottie-animation {
5893
- -js-display: flex;
5894
- display: -webkit-box;
5895
- display: -webkit-flex;
5896
- display: -moz-box;
5897
- display: -ms-flexbox;
5898
- display: flex;
5899
  }
5900
 
5901
- .premium-button svg,
5902
- .premium-image-button svg {
5903
- width: 30px;
5904
- height: 30px;
5905
  }
5906
 
5907
- .premium-btn-sm,
5908
- .premium-btn-md,
5909
- .premium-btn-lg,
5910
- .premium-btn-block {
5911
- background-color: #eee;
5912
- color: #042551;
5913
- margin: 0px;
5914
- text-decoration: none;
5915
  }
5916
 
5917
- .premium-btn-sm:hover,
5918
- .premium-btn-md:hover,
5919
- .premium-btn-lg:hover,
5920
- .premium-btn-block:hover {
5921
- background-color: #54595f;
5922
- color: #eee;
5923
  }
5924
 
5925
- .premium-btn-sm {
5926
- padding: 12px 24px;
5927
- font-size: 14px;
5928
- line-height: 1;
5929
  }
5930
 
5931
- .premium-btn-md {
5932
- padding: 14px 26px;
5933
- font-size: 16px;
5934
- line-height: 1.2;
 
 
 
 
5935
  }
5936
 
5937
- .premium-btn-lg {
5938
- padding: 16px 28px;
5939
- font-size: 18px;
5940
- line-height: 1.3333;
 
5941
  }
5942
 
5943
- .premium-btn-block {
5944
- font-size: 18px;
5945
- line-height: 1;
5946
- padding: 20px 0px;
5947
- width: 100%;
5948
- text-align: center;
5949
  }
5950
 
5951
- .premium-button-text {
5952
- display: inline-block;
5953
- width: 100%;
 
 
 
 
 
 
 
5954
  }
5955
 
5956
- .premium-button-style1,
5957
- .premium-button-style2,
5958
- .premium-button-style5,
5959
- .premium-button-style7 {
5960
- display: inline-block;
5961
- vertical-align: middle;
5962
- -webkit-transform: perspective(1px) translateZ(0);
5963
- transform: perspective(1px) translateZ(0);
5964
- -webkit-box-shadow: 0 0 1px transparent;
5965
- box-shadow: 0 0 1px transparent;
5966
- position: relative;
5967
- -webkit-transition-property: color;
5968
- transition-property: color;
5969
- -webkit-transition-duration: 0.15s;
5970
- transition-duration: 0.15s;
5971
  }
5972
 
5973
- .premium-button-style1:before,
5974
- .premium-button-style2:before,
5975
- .premium-button-style5:before {
5976
- content: "";
5977
- position: absolute;
5978
- z-index: -1;
5979
- top: 0;
5980
- right: 0;
5981
- left: 0;
5982
- bottom: 0;
5983
- -webkit-transform: scaleY(0);
5984
- -ms-transform: scaleY(0);
5985
- transform: scaleY(0);
5986
- -webkit-transform-origin: 50% 0;
5987
- -ms-transform-origin: 50% 0;
5988
- transform-origin: 50% 0;
5989
- -webkit-transition-property: -webkit-transform;
5990
- transition-property: -webkit-transform;
5991
- transition-property: transform;
5992
- transition-property: transform, -webkit-transform;
5993
- -webkit-transition-duration: 0.15s;
5994
- transition-duration: 0.15s;
5995
- -webkit-transition-timing-function: ease-out;
5996
- transition-timing-function: ease-out;
5997
  }
5998
 
5999
- .premium-button-style5-radialin:before,
6000
- .premium-button-style5-radialout:before {
6001
- -webkit-transform-origin: 50%;
6002
- -ms-transform-origin: 50%;
6003
- transform-origin: 50%;
6004
- -webkit-border-radius: 100%;
6005
- border-radius: 100%;
6006
- -webkit-transform: scale(0);
6007
- -ms-transform: scale(0);
6008
- transform: scale(0);
6009
  }
6010
 
6011
- .premium-button-style5-radialin:before {
6012
- -webkit-transform: scale(2);
6013
- -ms-transform: scale(2);
6014
- transform: scale(2);
 
 
 
 
 
 
 
 
 
6015
  }
6016
 
6017
- .premium-button-style5-rectin:before {
6018
- -webkit-transform-origin: 50%;
6019
- -ms-transform-origin: 50%;
6020
- transform-origin: 50%;
6021
- -webkit-transform: scale(1);
6022
- -ms-transform: scale(1);
6023
- transform: scale(1);
6024
  }
6025
 
6026
- .premium-button-style5-rectout:before {
6027
- -webkit-transform-origin: 50%;
6028
- -ms-transform-origin: 50%;
6029
- transform-origin: 50%;
6030
- -webkit-transform: scale(0);
6031
- -ms-transform: scale(0);
6032
- transform: scale(0);
6033
  }
6034
 
6035
- .premium-button-style5-rectout:hover:before {
6036
- -webkit-transform: scale(1);
6037
- -ms-transform: scale(1);
6038
- transform: scale(1);
 
 
6039
  }
6040
 
6041
- .premium-button-style5-rectin:hover:before {
6042
- -webkit-transform: scale(0);
6043
- -ms-transform: scale(0);
6044
- transform: scale(0);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6045
  }
6046
 
6047
- .premium-button-style5-radialout:hover:before {
6048
- -webkit-transform: scale(2);
6049
- -ms-transform: scale(2);
6050
- transform: scale(2);
6051
  }
6052
 
6053
- .premium-button-style5-radialin:hover:before {
6054
- -webkit-transform: scale(0);
6055
- -ms-transform: scale(0);
6056
- transform: scale(0);
 
 
 
 
6057
  }
6058
 
6059
- .premium-button-style1-top:before {
6060
- -webkit-transform-origin: 50% 100%;
6061
- -ms-transform-origin: 50% 100%;
6062
- transform-origin: 50% 100%;
 
 
 
 
6063
  }
6064
 
6065
- .premium-button-style1-right:before {
6066
- -webkit-transform: scaleX(0);
6067
- -ms-transform: scaleX(0);
6068
- transform: scaleX(0);
6069
- -webkit-transform-origin: 100% 50%;
6070
- -ms-transform-origin: 100% 50%;
6071
- transform-origin: 100% 50%;
 
 
 
 
 
6072
  }
6073
 
6074
- .premium-button-style1-left:before {
6075
- -webkit-transform: scaleX(0);
6076
- -ms-transform: scaleX(0);
6077
- transform: scaleX(0);
6078
- -webkit-transform-origin: 0% 50%;
6079
- -ms-transform-origin: 0% 50%;
6080
- transform-origin: 0% 50%;
 
 
 
 
 
 
 
 
 
 
 
 
 
6081
  }
6082
 
6083
- .premium-button-style2-shutouthor:before,
6084
- .premium-button-style2-scshutoutver:before {
6085
- -webkit-transform: scaleY(0);
6086
- -ms-transform: scaleY(0);
6087
- transform: scaleY(0);
6088
- -webkit-transform-origin: 0% 50%;
6089
- -ms-transform-origin: 0% 50%;
6090
- transform-origin: 0% 50%;
 
 
 
 
 
 
 
 
 
6091
  }
6092
 
6093
- .premium-button-style2-shutoutver:before,
6094
- .premium-button-style2-scshutouthor:before {
6095
- -webkit-transform: scaleX(0);
6096
- -ms-transform: scaleX(0);
6097
- transform: scaleX(0);
6098
- -webkit-transform-origin: 50% 50%;
6099
- -ms-transform-origin: 50% 50%;
6100
- transform-origin: 50% 50%;
6101
  }
6102
 
6103
- .premium-button-style2-shutinhor:before {
6104
- -webkit-transform: scaleX(1);
6105
- -ms-transform: scaleX(1);
6106
- transform: scaleX(1);
6107
- -webkit-transform-origin: 50%;
6108
- -ms-transform-origin: 50%;
6109
- transform-origin: 50%;
6110
  }
6111
 
6112
- .premium-button-style2-shutinver:before {
6113
- -webkit-transform: scaleY(1);
6114
- -ms-transform: scaleY(1);
6115
- transform: scaleY(1);
6116
- -webkit-transform-origin: 50%;
6117
- -ms-transform-origin: 50%;
6118
- transform-origin: 50%;
6119
  }
6120
 
6121
- .premium-button-style1-bottom:hover:before,
6122
- .premium-button-style1-top:hover:before {
6123
- -webkit-transform: scaleY(1);
6124
- -ms-transform: scaleY(1);
6125
- transform: scaleY(1);
6126
  }
6127
 
6128
- .premium-button-style1-left:hover:before,
6129
- .premium-button-style1-right:hover:before,
6130
- .premium-button-style2-shutouthor:hover:before,
6131
- .premium-button-style2-shutoutver:hover:before {
6132
- -webkit-transform: scaleX(1);
6133
- -ms-transform: scaleX(1);
6134
- transform: scaleX(1);
6135
  }
6136
 
6137
- .premium-button-style2-shutinhor:hover:before {
6138
- -webkit-transform: scaleX(0);
6139
- -ms-transform: scaleX(0);
6140
- transform: scaleX(0);
 
6141
  }
6142
 
6143
- .premium-button-style2-shutinver:hover:before {
6144
- -webkit-transform: scaleY(0);
6145
- -ms-transform: scaleY(0);
6146
- transform: scaleY(0);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6147
  }
6148
 
6149
- .premium-button-style2-scshutouthor:hover:before {
6150
- -webkit-transform: scaleX(0.9);
6151
- -ms-transform: scaleX(0.9);
6152
- transform: scaleX(0.9);
6153
  }
6154
 
6155
- .premium-button-style2-scshutoutver:hover:before {
6156
- -webkit-transform: scaleY(0.8);
6157
- -ms-transform: scaleY(0.8);
6158
- transform: scaleY(0.8);
 
 
 
 
 
 
 
 
6159
  }
6160
 
6161
- /*Diagonal*/
6162
- .premium-button-style2-dshutinhor:before {
6163
- top: 50%;
6164
- right: 50%;
6165
- width: 120%;
6166
- height: 0%;
6167
- -webkit-transform: translateX(50%) translateY(-50%) rotate(45deg);
6168
- -ms-transform: translateX(50%) translateY(-50%) rotate(45deg);
6169
- transform: translateX(50%) translateY(-50%) rotate(45deg);
6170
- -webkit-transform-origin: 50%;
6171
- -ms-transform-origin: 50%;
6172
- transform-origin: 50%;
6173
- -webkit-transition-property: all;
6174
- transition-property: all;
6175
  }
6176
 
6177
- .premium-button-style2-dshutinver:before {
6178
- top: 50%;
6179
- right: 50%;
6180
- width: 120%;
6181
- height: 0%;
6182
- -webkit-transform-origin: 50%;
6183
- -ms-transform-origin: 50%;
6184
- transform-origin: 50%;
6185
- -webkit-transition-property: all;
6186
- transition-property: all;
6187
- -webkit-transform: translateX(50%) translateY(-50%) rotate(-45deg);
6188
- -ms-transform: translateX(50%) translateY(-50%) rotate(-45deg);
6189
- transform: translateX(50%) translateY(-50%) rotate(-45deg);
6190
  }
6191
 
6192
- .premium-button-style2-dshutinhor:hover:before,
6193
- .premium-button-style2-dshutinver:hover:before {
6194
- height: 220%;
6195
  }
6196
 
6197
- .premium-button-style3-before i,
6198
- .premium-button-style3-before svg {
6199
- opacity: 0;
6200
- -webkit-transform: translateX(5px);
6201
- -ms-transform: translateX(5px);
6202
- transform: translateX(5px);
6203
- -webkit-transition: all 0.5s ease-in-out;
6204
- transition: all 0.5s ease-in-out;
6205
  }
6206
 
6207
- .premium-button-style3-after i,
6208
- .premium-button-style3-after svg {
6209
- opacity: 0;
6210
- -webkit-transform: translateX(5px);
6211
- -ms-transform: translateX(5px);
6212
- transform: translateX(5px);
6213
- -webkit-transition: all 0.5s ease-in-out;
6214
- transition: all 0.5s ease-in-out;
6215
- -webkit-transform: translateX(-5px);
6216
- -ms-transform: translateX(-5px);
6217
- transform: translateX(-5px);
6218
  }
6219
 
6220
- .premium-button-style3-after:hover i,
6221
- .premium-button-style3-after:hover svg {
6222
- opacity: 1;
 
 
 
 
6223
  }
6224
 
6225
- .premium-button-style3-before:hover i,
6226
- .premium-button-style3-before:hover svg {
6227
- opacity: 1;
6228
  }
6229
 
6230
- .premium-button-text-icon-wrapper {
6231
- width: 100%;
6232
- -js-display: flex;
6233
- display: -webkit-box;
6234
- display: -webkit-flex;
6235
- display: -moz-box;
6236
- display: -ms-flexbox;
6237
- display: flex;
6238
- -webkit-box-pack: center;
6239
- -webkit-justify-content: center;
6240
- -moz-box-pack: center;
6241
- -ms-flex-pack: center;
6242
- justify-content: center;
6243
- -webkit-box-align: center;
6244
- -webkit-align-items: center;
6245
- -moz-box-align: center;
6246
- -ms-flex-align: center;
6247
- align-items: center;
6248
- -webkit-transition: all 0.2s ease-in-out;
6249
- transition: all 0.2s ease-in-out;
6250
  }
6251
 
6252
- .premium-button-text-icon-wrapper span,
6253
- .premium-button-text-icon-wrapper i,
6254
- .premium-button-text-icon-wrapper svg {
6255
- -webkit-transition: all 0.2s ease-in-out;
6256
- transition: all 0.2s ease-in-out;
 
 
 
6257
  }
6258
 
6259
- .premium-button-style4-icon-wrapper {
6260
- position: absolute;
6261
- z-index: 2;
6262
- width: 100%;
6263
- text-align: center;
6264
- -js-display: flex;
6265
- display: -webkit-box;
6266
- display: -webkit-flex;
6267
- display: -moz-box;
6268
- display: -ms-flexbox;
6269
- display: flex;
6270
- -webkit-box-align: center;
6271
- -webkit-align-items: center;
6272
- -moz-box-align: center;
6273
- -ms-flex-align: center;
6274
- align-items: center;
6275
- -webkit-box-pack: center;
6276
- -webkit-justify-content: center;
6277
- -moz-box-pack: center;
6278
- -ms-flex-pack: center;
6279
- justify-content: center;
6280
- height: 100%;
6281
- opacity: 0;
6282
- -webkit-transition: all 0.3s ease-in-out;
6283
- transition: all 0.3s ease-in-out;
6284
  }
6285
 
6286
- .premium-button-style4-icon-wrapper.top {
6287
- bottom: -100%;
6288
- right: 0;
 
 
 
 
 
 
 
 
 
 
 
6289
  }
6290
 
6291
- .premium-button-style4-icon-wrapper.bottom {
6292
- top: -100%;
6293
- right: 0;
 
 
 
 
 
 
 
 
 
6294
  }
6295
 
6296
- .premium-button-style4-icon-wrapper.left {
6297
- top: 0;
6298
- right: -100%;
6299
  }
6300
 
6301
- .premium-button-style4-icon-wrapper.right {
6302
- top: 0;
6303
- left: -100%;
 
 
6304
  }
6305
 
6306
- .premium-button-style4-bottom:hover .premium-button-style4-icon-wrapper {
6307
- top: 0;
6308
- opacity: 1;
 
 
 
 
 
6309
  }
6310
 
6311
- .premium-button-style4-top:hover .premium-button-style4-icon-wrapper {
6312
- bottom: 0;
6313
- opacity: 1;
 
 
 
 
 
6314
  }
6315
 
6316
- .premium-button-style4-left:hover .premium-button-style4-icon-wrapper {
6317
- right: 0;
6318
- opacity: 1;
6319
  }
6320
 
6321
- .premium-button-style4-right:hover .premium-button-style4-icon-wrapper {
6322
- left: 0;
6323
- opacity: 1;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6324
  }
6325
 
6326
- .premium-button-style4-bottom:hover .premium-button-text-icon-wrapper {
6327
- -webkit-transform: translateY(100%);
6328
- -ms-transform: translateY(100%);
6329
- transform: translateY(100%);
6330
- opacity: 0;
6331
  }
6332
 
6333
- .premium-button-style4-top:hover .premium-button-text-icon-wrapper {
6334
- -webkit-transform: translateY(-100%);
6335
- -ms-transform: translateY(-100%);
6336
- transform: translateY(-100%);
6337
- opacity: 0;
 
 
 
 
6338
  }
6339
 
6340
- .premium-button-style4-left:hover .premium-button-text-icon-wrapper {
6341
- -webkit-transform: translateX(-100%);
6342
- -ms-transform: translateX(-100%);
6343
- transform: translateX(-100%);
6344
- opacity: 0;
6345
  }
6346
 
6347
- .premium-button-style4-right:hover .premium-button-text-icon-wrapper {
6348
- -webkit-transform: translateX(100%);
6349
- -ms-transform: translateX(100%);
6350
- transform: translateX(100%);
6351
- opacity: 0;
 
 
 
6352
  }
6353
 
6354
- .premium-button-style6:before {
6355
- content: "";
6356
- position: absolute;
6357
- right: 50%;
6358
- top: 50%;
6359
- width: 100px;
6360
- height: 100px;
6361
- -webkit-border-radius: 100%;
6362
- border-radius: 100%;
6363
- -webkit-transform: translate(50%, -50%) scale(0);
6364
- -ms-transform: translate(50%, -50%) scale(0);
6365
- transform: translate(50%, -50%) scale(0);
6366
- -webkit-transition: all 0.3s ease-in-out;
6367
- transition: all 0.3s ease-in-out;
6368
  }
6369
 
6370
- .premium-button-style6:hover:before {
6371
- -webkit-transform: translate(50%, -50%) scale(3);
6372
- -ms-transform: translate(50%, -50%) scale(3);
6373
- transform: translate(50%, -50%) scale(3);
 
 
 
 
 
6374
  }
6375
 
6376
- .premium-button-style6 .premium-button-text-icon-wrapper {
6377
- position: relative;
6378
- z-index: 1;
 
 
 
 
 
 
6379
  }
6380
 
6381
- .premium-mouse-detect-yes .premium-button-style6 .premium-button-style6-bg {
6382
- position: absolute;
6383
- z-index: 0;
6384
- top: 0;
6385
- right: 0;
6386
- width: 0px;
6387
- height: 0px;
6388
- -webkit-border-radius: 50%;
6389
- border-radius: 50%;
6390
- display: block;
6391
- -webkit-transform: translate(50%, -50%);
6392
- -ms-transform: translate(50%, -50%);
6393
- transform: translate(50%, -50%);
6394
- -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
6395
- transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
6396
  }
6397
 
6398
- .premium-mouse-detect-yes .premium-button-style6:hover .premium-button-style6-bg {
6399
- width: 225%;
6400
- height: 560px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6401
  }
6402
 
6403
- .premium-mouse-detect-yes .premium-button-style6:before {
6404
- width: 0;
6405
- height: 0;
 
 
 
 
 
 
 
 
 
 
 
6406
  }
6407
 
6408
- .premium-button-style7-right .premium-button-text-icon-wrapper:before,
6409
- .premium-button-style7-left .premium-button-text-icon-wrapper:before {
6410
- -webkit-transition: width 0.3s ease-out 0.15s;
6411
- transition: width 0.3s ease-out 0.15s;
6412
  }
6413
 
6414
- .premium-button-style7-right .premium-button-text-icon-wrapper:after,
6415
- .premium-button-style7-left .premium-button-text-icon-wrapper:after {
6416
- -webkit-transition: width 0.3s ease-out 0s;
6417
- transition: width 0.3s ease-out 0s;
6418
  }
6419
 
6420
- .premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
6421
- .premium-button-style7-top .premium-button-text-icon-wrapper:before {
6422
- -webkit-transition: height 0.3s ease-out 0.15s;
6423
- transition: height 0.3s ease-out 0.15s;
6424
  }
6425
 
6426
- .premium-button-style7-bottom .premium-button-text-icon-wrapper:after,
6427
- .premium-button-style7-top .premium-button-text-icon-wrapper:after {
6428
- -webkit-transition: height 0.3s ease-out 0s;
6429
- transition: height 0.3s ease-out 0s;
6430
  }
6431
 
6432
- .premium-button[class*="style7"]:hover .premium-button-text-icon-wrapper:before {
6433
- -webkit-transition-delay: 0s;
6434
- transition-delay: 0s;
6435
  }
6436
 
6437
- .premium-button[class*="style7"]:hover .premium-button-text-icon-wrapper:after {
6438
- -webkit-transition-delay: 0.15s;
6439
- transition-delay: 0.15s;
6440
  }
6441
 
6442
- .premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
6443
- .premium-button-style7-bottom .premium-button-text-icon-wrapper:after {
6444
- content: "";
6445
- position: absolute;
6446
- left: 0;
6447
- top: 0;
6448
- right: 0;
6449
- height: 0;
6450
- z-index: -1;
6451
  }
6452
 
6453
- .premium-button-style7-top .premium-button-text-icon-wrapper:after,
6454
- .premium-button-style7-top .premium-button-text-icon-wrapper:before {
6455
- content: "";
6456
- position: absolute;
6457
- left: 0;
6458
- bottom: 0;
6459
- right: 0;
6460
- height: 0;
6461
- z-index: -1;
 
 
 
 
 
 
6462
  }
6463
 
6464
- .premium-button-style7-right .premium-button-text-icon-wrapper:after,
6465
- .premium-button-style7-right .premium-button-text-icon-wrapper:before {
6466
- content: "";
6467
- position: absolute;
6468
- right: 0;
6469
- top: 0;
6470
- bottom: 0;
6471
- width: 0;
6472
- z-index: -1;
6473
  }
6474
 
6475
- .premium-button-style7-left .premium-button-text-icon-wrapper:after,
6476
- .premium-button-style7-left .premium-button-text-icon-wrapper:before {
6477
- content: "";
6478
- position: absolute;
6479
- left: 0;
6480
- top: 0;
6481
- bottom: 0;
6482
- width: 0;
6483
- z-index: -1;
6484
  }
6485
 
6486
- .premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:after,
6487
- .premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:before {
6488
- height: 100%;
6489
- top: 0;
6490
  }
6491
 
6492
- .premium-button-style7-top:hover .premium-button-text-icon-wrapper:after,
6493
- .premium-button-style7-top:hover .premium-button-text-icon-wrapper:before {
6494
- height: 100%;
6495
- bottom: 0;
 
 
 
6496
  }
6497
 
6498
- .premium-button-style7-left:hover .premium-button-text-icon-wrapper:after,
6499
- .premium-button-style7-left:hover .premium-button-text-icon-wrapper:before {
6500
- width: 100%;
6501
- left: 0;
 
 
 
 
 
 
 
6502
  }
6503
 
6504
- .premium-button-style7-right:hover .premium-button-text-icon-wrapper:after,
6505
- .premium-button-style7-right:hover .premium-button-text-icon-wrapper:before {
6506
- width: 100%;
6507
- right: 0;
6508
  }
6509
 
6510
- /**************** Premium Contact Form7 **********/
6511
- /*************************************************/
6512
- .premium-contact-form-anim-yes .wpcf7-span::after {
6513
- display: block;
6514
- height: 2px;
6515
- content: "";
6516
- top: -2px;
6517
- position: relative;
6518
- width: 0px;
6519
- -webkit-transition: all ease-in-out 0.3s;
6520
- transition: all ease-in-out 0.3s;
6521
  }
6522
 
6523
- .premium-contact-form-anim-yes .wpcf7-span.is-focused::after {
6524
- width: 100%;
 
 
 
 
 
 
 
 
6525
  }
6526
 
6527
- .premium-cf7-container input.wpcf7-submit {
6528
- -webkit-transition: all 0.3s ease-in-out;
6529
- transition: all 0.3s ease-in-out;
 
 
 
 
 
 
 
 
 
 
 
 
 
6530
  }
6531
 
6532
- /**************** Premium Image Button ***********/
6533
- /*************************************************/
6534
- .premium-image-button {
6535
- -js-display: inline-flex;
6536
- display: -webkit-inline-box;
6537
- display: -webkit-inline-flex;
6538
- display: -moz-inline-box;
6539
- display: -ms-inline-flexbox;
6540
- display: inline-flex;
6541
- position: relative;
6542
- overflow: hidden;
6543
- background-color: #eee;
6544
- cursor: pointer;
6545
- -webkit-transition: all 0.2s ease-in-out !important;
6546
- transition: all 0.2s ease-in-out !important;
6547
  }
6548
 
6549
- .premium-image-button .premium-button-style6-bg,
6550
- .premium-image-button.premium-button-style6:before,
6551
- .premium-image-button:not(.premium-image-button-style6):hover {
6552
- background-color: #54595f;
 
 
 
 
6553
  }
6554
 
6555
- /*Default background for slide styles*/
6556
- .premium-image-button:hover,
6557
- .premium-image-button-style4-icon-wrapper,
6558
- .premium-image-button-style1-top:before,
6559
- .premium-image-button-style1-bottom:before,
6560
- .premium-image-button-style1-left:before,
6561
- .premium-image-button-style1-right:before {
6562
- background-color: #54595f;
6563
  }
6564
 
6565
- .premium-image-button-text-icon-wrapper {
6566
- width: 100%;
6567
- -js-display: flex;
6568
- display: -webkit-box;
6569
- display: -webkit-flex;
6570
- display: -moz-box;
6571
- display: -ms-flexbox;
6572
- display: flex;
6573
- -webkit-box-pack: center;
6574
- -webkit-justify-content: center;
6575
- -moz-box-pack: center;
6576
- -ms-flex-pack: center;
6577
- justify-content: center;
6578
- -webkit-box-align: center;
6579
- -webkit-align-items: center;
6580
- -moz-box-align: center;
6581
- -ms-flex-align: center;
6582
- align-items: center;
6583
- position: relative;
6584
- z-index: 3;
6585
- -webkit-transition: all 0.2s ease-in-out;
6586
- transition: all 0.2s ease-in-out;
6587
  }
6588
 
6589
- .premium-image-button-text-icon-wrapper span,
6590
- .premium-image-button-text-icon-wrapper,
6591
- .premium-image-button-text-icon-wrapper i,
6592
- .premium-image-button-text-icon-wrapper svg {
6593
- -webkit-transition: all 0.2s ease-in-out;
6594
- transition: all 0.2s ease-in-out;
 
 
 
 
6595
  }
6596
 
6597
- .premium-image-button-style1-bottom:before,
6598
- .premium-image-button-style1-top:before,
6599
- .premium-image-button-style1-left:before,
6600
- .premium-image-button-style1-right:before {
6601
- -webkit-transition: all 0.2s ease-in-out;
6602
- transition: all 0.2s ease-in-out;
 
 
 
 
6603
  }
6604
 
6605
- .premium-image-button-style1-bottom:before {
6606
- content: "";
6607
- position: absolute;
6608
- width: 100%;
6609
- height: 0;
6610
- top: 0;
6611
- right: 0;
6612
  }
6613
 
6614
- .premium-image-button-style1-top:before {
6615
- content: "";
6616
- position: absolute;
6617
- width: 100%;
6618
- height: 0;
6619
- bottom: 0;
6620
- right: 0;
6621
  }
6622
 
6623
- .premium-image-button-style1-right:before {
6624
- content: "";
6625
- position: absolute;
6626
- width: 0;
6627
- height: 100%;
6628
- bottom: 0;
6629
- right: 0;
6630
  }
6631
 
6632
- .premium-image-button-style1-left:before {
6633
- content: "";
6634
- position: absolute;
6635
- width: 0;
6636
- height: 100%;
6637
- top: 0;
6638
- left: 0;
6639
  }
6640
 
6641
- .premium-image-button-style1-bottom:hover:before {
6642
- height: 100%;
 
6643
  }
6644
 
6645
- .premium-image-button-style1-top:hover:before {
6646
- height: 100%;
 
6647
  }
6648
 
6649
- .premium-image-button-style1-right:hover:before {
6650
- width: 100%;
 
6651
  }
6652
 
6653
- .premium-image-button-style1-left:hover:before {
6654
- width: 100%;
 
 
6655
  }
6656
 
6657
- .premium-image-button-diagonal-top,
6658
- .premium-image-button-diagonal-bottom,
6659
- .premium-image-button-diagonal-left,
6660
- .premium-image-button-diagonal-right {
6661
- z-index: 10;
6662
  }
6663
 
6664
- .premium-image-button-diagonal-top:before,
6665
- .premium-image-button-diagonal-bottom:before,
6666
- .premium-image-button-diagonal-left:before,
6667
- .premium-image-button-diagonal-right:before {
6668
- position: absolute;
6669
- top: 0px;
6670
- right: 0px;
6671
- width: 100%;
6672
- height: 100%;
6673
- content: "";
6674
- z-index: 1;
6675
- background: rgba(255, 255, 255, 0.2);
6676
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
6677
- -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
6678
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
6679
- -webkit-transition: all 0.8s ease-out;
6680
- transition: all 0.8s ease-out;
6681
  }
6682
 
6683
- .premium-image-button-diagonal-right:hover:before,
6684
- .premium-image-button-diagonal-left:before {
6685
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
6686
- -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
6687
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
6688
  }
6689
 
6690
- .premium-image-button-diagonal-left:hover:before,
6691
- .premium-image-button-diagonal-right:before {
6692
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
6693
- -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
6694
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
6695
  }
6696
 
6697
- .premium-image-button-diagonal-top:hover:before,
6698
- .premium-image-button-diagonal-bottom:before {
6699
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
6700
- -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
6701
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
6702
  }
6703
 
6704
- .premium-image-button-diagonal-bottom:hover:before,
6705
- .premium-image-button-diagonal-top:before {
6706
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
6707
- -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
6708
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
6709
  }
6710
 
6711
- .premium-image-button-style4-icon-wrapper {
6712
- position: absolute;
6713
- z-index: 2;
6714
- width: 100%;
6715
- text-align: center;
6716
- display: -webkit-box;
6717
- display: -webkit-flex;
6718
- display: -ms-flexbox;
6719
- -js-display: flex;
6720
- display: -moz-box;
6721
- display: flex;
6722
- -webkit-box-align: center;
6723
- -webkit-align-items: center;
6724
- -moz-box-align: center;
6725
- -ms-flex-align: center;
6726
- align-items: center;
6727
- -webkit-box-pack: center;
6728
- -webkit-justify-content: center;
6729
- -moz-box-pack: center;
6730
- -ms-flex-pack: center;
6731
- justify-content: center;
6732
- height: 100%;
6733
- opacity: 0;
6734
- -webkit-transition: all 0.3s ease-in-out;
6735
- transition: all 0.3s ease-in-out;
6736
  }
6737
 
6738
- .premium-image-button-style4-icon-wrapper.top {
6739
- bottom: -100%;
6740
- right: 0;
 
6741
  }
6742
 
6743
- .premium-image-button-style4-icon-wrapper.bottom {
6744
- top: -100%;
6745
- right: 0;
 
 
 
6746
  }
6747
 
6748
- .premium-image-button-style4-icon-wrapper.left {
6749
- top: 0;
6750
- right: -100%;
6751
  }
6752
 
6753
- .premium-image-button-style4-icon-wrapper.right {
6754
- top: 0;
6755
- left: -100%;
6756
  }
6757
 
6758
- .premium-image-button-style4-bottom:hover .premium-image-button-style4-icon-wrapper {
6759
- top: 0;
6760
- opacity: 1;
6761
  }
6762
 
6763
- .premium-image-button-style4-top:hover .premium-image-button-style4-icon-wrapper {
6764
- bottom: 0;
6765
- opacity: 1;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6766
  }
6767
 
6768
- .premium-image-button-style4-left:hover .premium-image-button-style4-icon-wrapper {
6769
- right: 0;
6770
- opacity: 1;
 
 
 
 
6771
  }
6772
 
6773
- .premium-image-button-style4-right:hover .premium-image-button-style4-icon-wrapper {
6774
- left: 0;
6775
- opacity: 1;
6776
  }
6777
 
6778
- .premium-image-button-style4-bottom:hover .premium-image-button-text-icon-wrapper {
6779
- -webkit-transform: translateY(100%);
6780
- -ms-transform: translateY(100%);
6781
- transform: translateY(100%);
6782
- opacity: 0;
 
 
 
 
6783
  }
6784
 
6785
- .premium-image-button-style4-top:hover .premium-image-button-text-icon-wrapper {
6786
- -webkit-transform: translateY(-100%);
6787
- -ms-transform: translateY(-100%);
6788
- transform: translateY(-100%);
6789
- opacity: 0;
6790
  }
6791
 
6792
- .premium-image-button-style4-left:hover .premium-image-button-text-icon-wrapper {
6793
- -webkit-transform: translateX(-100%);
6794
- -ms-transform: translateX(-100%);
6795
- transform: translateX(-100%);
6796
- opacity: 0;
6797
  }
6798
 
6799
- .premium-image-button-style4-right:hover .premium-image-button-text-icon-wrapper {
6800
- -webkit-transform: translateX(100%);
6801
- -ms-transform: translateX(100%);
6802
- transform: translateX(100%);
6803
- opacity: 0;
6804
  }
6805
 
6806
- .premium-image-button-overlap-effect-horizontal:before,
6807
- .premium-image-button-overlap-effect-vertical:before {
6808
- position: absolute;
6809
- content: "";
6810
- top: 0;
6811
- right: 0;
6812
- width: 100%;
6813
- height: 100%;
6814
- opacity: 0;
6815
- -webkit-transition: all 1s ease-in-out;
6816
- transition: all 1s ease-in-out;
6817
- background: rgba(255, 255, 255, 0.2);
6818
- -webkit-animation-name: premium-overlap-effect-done;
6819
- animation-name: premium-overlap-effect-done;
6820
- -webkit-animation-duration: 1s;
6821
- animation-duration: 1s;
6822
  }
6823
 
6824
- .premium-image-button-overlap-effect-vertical:before {
6825
- -webkit-animation-name: premium-overlap-ver-effect-done;
6826
- animation-name: premium-overlap-ver-effect-done;
6827
- -webkit-animation-duration: 1s;
6828
- animation-duration: 1s;
6829
  }
6830
 
6831
- .premium-image-button-overlap-effect-horizontal:hover:before {
6832
- -webkit-animation-name: premium-overlap-effect;
6833
- animation-name: premium-overlap-effect;
6834
- -webkit-animation-duration: 1s;
6835
- animation-duration: 1s;
 
 
6836
  }
6837
 
6838
- .premium-image-button-overlap-effect-vertical:hover:before {
6839
- -webkit-animation-name: premium-overlap-ver-effect;
6840
- animation-name: premium-overlap-ver-effect;
6841
- -webkit-animation-duration: 1s;
6842
- animation-duration: 1s;
 
 
6843
  }
6844
 
6845
- @-webkit-keyframes premium-overlap-effect {
6846
- 0% {
6847
- opacity: 0;
6848
- -webkit-transform: rotateY(0deg);
6849
- transform: rotateY(0deg);
6850
- }
6851
-
6852
- 50% {
6853
- opacity: 1;
6854
- -webkit-transform: rotateY(180deg);
6855
- transform: rotateY(180deg);
6856
- }
6857
-
6858
- 100% {
6859
- opacity: 0;
6860
- -webkit-transform: rotateY(360deg);
6861
- transform: rotateY(360deg);
6862
- }
6863
  }
6864
 
6865
- @keyframes premium-overlap-effect {
6866
- 0% {
6867
- opacity: 0;
6868
- -webkit-transform: rotateY(0deg);
6869
- transform: rotateY(0deg);
6870
- }
6871
-
6872
- 50% {
6873
- opacity: 1;
6874
- -webkit-transform: rotateY(180deg);
6875
- transform: rotateY(180deg);
6876
- }
6877
-
6878
- 100% {
6879
- opacity: 0;
6880
- -webkit-transform: rotateY(360deg);
6881
- transform: rotateY(360deg);
6882
- }
6883
  }
6884
 
6885
- @-webkit-keyframes premium-overlap-effect-done {
6886
- 0% {
6887
- opacity: 0;
6888
- -webkit-transform: rotateY(0deg);
6889
- transform: rotateY(0deg);
6890
- }
6891
-
6892
- 50% {
6893
- opacity: 1;
6894
- -webkit-transform: rotateY(180deg);
6895
- transform: rotateY(180deg);
6896
- }
6897
-
6898
- 100% {
6899
- opacity: 0;
6900
- -webkit-transform: rotateY(360deg);
6901
- transform: rotateY(360deg);
6902
- }
6903
  }
6904
 
6905
- @keyframes premium-overlap-effect-done {
6906
- 0% {
6907
- opacity: 0;
6908
- -webkit-transform: rotateY(0deg);
6909
- transform: rotateY(0deg);
6910
- }
6911
-
6912
- 50% {
6913
- opacity: 1;
6914
- -webkit-transform: rotateY(180deg);
6915
- transform: rotateY(180deg);
6916
- }
6917
-
6918
- 100% {
6919
- opacity: 0;
6920
- -webkit-transform: rotateY(360deg);
6921
- transform: rotateY(360deg);
6922
- }
6923
  }
6924
-
6925
- @-webkit-keyframes premium-overlap-ver-effect {
6926
- 0% {
6927
- opacity: 0;
6928
- -webkit-transform: rotateX(0deg);
6929
- transform: rotateX(0deg);
6930
- }
6931
-
6932
- 50% {
6933
- opacity: 1;
6934
- -webkit-transform: rotateX(180deg);
6935
- transform: rotateX(180deg);
6936
- }
6937
-
6938
- 100% {
6939
- opacity: 0;
6940
- -webkit-transform: rotateX(360deg);
6941
- transform: rotateX(360deg);
6942
- }
6943
  }
6944
 
6945
- @keyframes premium-overlap-ver-effect {
6946
- 0% {
6947
- opacity: 0;
6948
- -webkit-transform: rotateX(0deg);
6949
- transform: rotateX(0deg);
6950
- }
6951
-
6952
- 50% {
6953
- opacity: 1;
6954
- -webkit-transform: rotateX(180deg);
6955
- transform: rotateX(180deg);
6956
- }
6957
-
6958
- 100% {
6959
- opacity: 0;
6960
- -webkit-transform: rotateX(360deg);
6961
- transform: rotateX(360deg);
6962
- }
6963
  }
6964
 
6965
- @-webkit-keyframes premium-overlap-ver-effect-done {
6966
- 0% {
6967
- opacity: 0;
6968
- -webkit-transform: rotateX(0deg);
6969
- transform: rotateX(0deg);
6970
- }
6971
 
6972
- 50% {
6973
- opacity: 1;
6974
- -webkit-transform: rotateX(180deg);
6975
- transform: rotateX(180deg);
6976
- }
6977
 
6978
- 100% {
6979
- opacity: 0;
6980
- -webkit-transform: rotateX(360deg);
6981
- transform: rotateX(360deg);
6982
- }
6983
  }
6984
 
6985
- @keyframes premium-overlap-ver-effect-done {
6986
- 0% {
6987
- opacity: 0;
6988
- -webkit-transform: rotateX(0deg);
6989
- transform: rotateX(0deg);
6990
- }
6991
 
6992
- 50% {
6993
- opacity: 1;
6994
- -webkit-transform: rotateX(180deg);
6995
- transform: rotateX(180deg);
6996
- }
6997
 
6998
- 100% {
6999
- opacity: 0;
7000
- -webkit-transform: rotateX(360deg);
7001
- transform: rotateX(360deg);
7002
- }
7003
  }
7004
 
7005
- /******** Premium Media Grid ********/
7006
- /************************************/
7007
- .premium-img-gallery-filter,
7008
- .premium-blog-filter {
7009
- display: -webkit-box;
7010
- display: -webkit-flex;
7011
- display: -ms-flexbox;
7012
- -js-display: flex;
7013
- display: -moz-box;
7014
- display: flex;
7015
- -webkit-box-align: center;
7016
- -webkit-align-items: center;
7017
- -moz-box-align: center;
7018
- -ms-flex-align: center;
7019
- align-items: center;
7020
- -webkit-box-pack: center;
7021
- -webkit-justify-content: center;
7022
- -moz-box-pack: center;
7023
- -ms-flex-pack: center;
7024
- justify-content: center;
7025
  }
7026
 
7027
- .premium-img-gallery {
7028
- clear: both;
7029
- overflow: hidden;
7030
  }
7031
 
7032
- .premium-gallery-container .premium-gallery-item {
7033
- padding: 10px;
7034
- float: right;
7035
- /* Google Chrome isotope issue */
7036
  }
7037
 
7038
- .premium-gallery-container .grid-sizer {
7039
- width: 33.33%;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7040
  }
7041
 
7042
- .premium-img-gallery-filter .premium-gallery-cats-container li a.category,
7043
- .premium-blog-filter .premium-blog-filters-container li a.category {
7044
- outline: none;
7045
- text-decoration: none;
7046
- -webkit-border-radius: 75px;
7047
- border-radius: 75px;
7048
- margin: 15px 5px 20px;
7049
- padding: 7px 20px;
7050
- -webkit-transition: all 0.3s ease-in-out;
7051
- transition: all 0.3s ease-in-out;
7052
  }
7053
 
7054
- .premium-img-gallery-filter .premium-gallery-cats-container li a.category span {
7055
- -webkit-transition: all 0.3s ease-in-out;
7056
- transition: all 0.3s ease-in-out;
 
 
 
 
 
 
 
 
 
7057
  }
7058
 
7059
- .pa-gallery-img {
7060
- position: relative;
 
 
7061
  }
7062
 
7063
- .pa-gallery-img .pa-gallery-whole-link {
7064
- position: absolute;
7065
- top: 0;
7066
- right: 0;
7067
- width: 100%;
7068
- height: 100%;
 
 
 
7069
  }
7070
 
7071
- .pa-gallery-img.style2 .pa-gallery-whole-link {
7072
- z-index: 99;
7073
  }
7074
 
7075
- .pa-gallery-img-container {
7076
- overflow: hidden;
7077
- -webkit-backface-visibility: hidden;
7078
- -moz-backface-visibility: hidden;
7079
- -webkit-transform: translate3d(0, 0, 0);
7080
- transform: translate3d(0, 0, 0);
7081
  }
7082
 
7083
- .pa-gallery-img-container img {
7084
- display: block;
7085
- width: 100%;
7086
- -webkit-transition: all 0.3s ease-in-out;
7087
- transition: all 0.3s ease-in-out;
7088
  }
7089
 
7090
- .premium-img-gallery.gray img {
7091
- -webkit-filter: grayscale(100%);
7092
- filter: grayscale(100%);
 
7093
  }
7094
 
7095
- .premium-img-gallery.zoomout img,
7096
- .premium-img-gallery.scale img {
7097
- -webkit-transform: scale(1.2);
7098
- -ms-transform: scale(1.2);
7099
- transform: scale(1.2);
 
 
 
7100
  }
7101
 
7102
- .premium-img-gallery.sepia img {
7103
- -webkit-filter: sepia(30%);
7104
- filter: sepia(30%);
 
 
 
 
 
 
 
 
 
 
 
7105
  }
7106
 
7107
- .premium-img-gallery.bright img {
7108
- -webkit-filter: brightness(1);
7109
- filter: brightness(1);
 
 
 
 
 
 
 
 
 
 
 
7110
  }
7111
 
7112
- .premium-img-gallery.trans img {
7113
- -webkit-transform: translateX(15px) scale(1.1);
7114
- -ms-transform: translateX(15px) scale(1.1);
7115
- transform: translateX(15px) scale(1.1);
7116
  }
7117
 
7118
- .pa-gallery-img .pa-gallery-magnific-image,
7119
- .pa-gallery-img .pa-gallery-img-link {
7120
- outline: none;
 
 
 
 
7121
  }
7122
 
7123
- .pa-gallery-img .pa-gallery-magnific-image i,
7124
- .pa-gallery-img .pa-gallery-magnific-image svg,
7125
- .pa-gallery-img .pa-gallery-img-link i,
7126
- .pa-gallery-img .pa-gallery-img-link svg {
7127
- -webkit-transition: all 0.3s ease-in-out;
7128
- transition: all 0.3s ease-in-out;
7129
  }
7130
 
7131
- .pa-gallery-img .pa-gallery-magnific-image span,
7132
- .pa-gallery-img .pa-gallery-img-link span {
7133
- line-height: 1;
7134
- display: inline-block;
7135
- opacity: 0;
7136
- margin: 0 5px;
7137
- padding: 15px;
7138
- -webkit-border-radius: 50%;
7139
- border-radius: 50%;
7140
  }
7141
 
7142
- .pa-gallery-img.style2 .pa-gallery-magnific-image span,
7143
- .pa-gallery-img.style2 .pa-gallery-img-link span {
7144
- margin: 0 5px 20px;
 
 
 
7145
  }
7146
 
7147
- .pa-gallery-img:hover .pa-gallery-magnific-image span {
7148
- -webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
7149
- transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
 
7150
  }
7151
 
7152
- .pa-gallery-img:hover .pa-gallery-img-link span {
7153
- -webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
7154
- transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
7155
  }
7156
 
7157
- .pa-gallery-img:hover .pa-gallery-magnific-image span,
7158
- .pa-gallery-img:hover .pa-gallery-img-link span,
7159
- .premium-gallery-icon-show a.pa-gallery-video-icon span {
7160
- opacity: 1;
7161
- }
7162
-
7163
- .premium-img-gallery-filter ul.premium-gallery-cats-container,
7164
- .premium-blog-filter ul.premium-blog-filters-container {
7165
- text-align: center;
7166
- margin: 0;
7167
- padding: 0;
7168
- }
7169
-
7170
- .premium-img-gallery-filter .premium-gallery-cats-container li,
7171
- .premium-blog-filter .premium-blog-filters-container li {
7172
- list-style: none;
7173
- display: -webkit-inline-box;
7174
- display: -webkit-inline-flex;
7175
- display: -ms-inline-flexbox;
7176
- -js-display: inline-flex;
7177
- display: -moz-inline-box;
7178
- display: inline-flex;
7179
- }
7180
-
7181
- .premium-img-gallery.zoomin .pa-gallery-img:hover img {
7182
- -webkit-transform: scale(1.1);
7183
- -ms-transform: scale(1.1);
7184
- transform: scale(1.1);
7185
- }
7186
-
7187
- .premium-img-gallery.zoomout .pa-gallery-img:hover img {
7188
- -webkit-transform: scale(1);
7189
- -ms-transform: scale(1);
7190
- transform: scale(1);
7191
- }
7192
-
7193
- .premium-img-gallery.scale .pa-gallery-img:hover img {
7194
- -webkit-transform: scale(1.3) rotate(-5deg);
7195
- -ms-transform: scale(1.3) rotate(-5deg);
7196
- transform: scale(1.3) rotate(-5deg);
7197
- }
7198
-
7199
- .premium-img-gallery.gray .pa-gallery-img:hover img {
7200
- -webkit-filter: grayscale(0%);
7201
- filter: grayscale(0%);
7202
- }
7203
-
7204
- .premium-img-gallery.blur .pa-gallery-img:hover img {
7205
- -webkit-filter: blur(3px);
7206
- filter: blur(3px);
7207
- }
7208
-
7209
- .premium-img-gallery.sepia .pa-gallery-img:hover img {
7210
- -webkit-filter: sepia(0%);
7211
- filter: sepia(0%);
7212
- }
7213
-
7214
- .premium-img-gallery.trans .pa-gallery-img:hover img {
7215
- -webkit-transform: translateX(0px) scale(1.1);
7216
- -ms-transform: translateX(0px) scale(1.1);
7217
- transform: translateX(0px) scale(1.1);
7218
- }
7219
-
7220
- .premium-img-gallery.bright .pa-gallery-img:hover img {
7221
- -webkit-filter: brightness(1.2);
7222
- filter: brightness(1.2);
7223
- }
7224
-
7225
- .pa-gallery-img .premium-gallery-caption {
7226
- padding: 10px;
7227
- }
7228
-
7229
- .pa-gallery-img .premium-gallery-caption .premium-gallery-img-name {
7230
- margin-bottom: 0;
7231
  }
7232
 
7233
- .pa-gallery-img.style1 {
7234
- overflow: hidden;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7235
  }
7236
-
7237
- .pa-gallery-img:not(.style2) .pa-gallery-icons-wrapper {
 
 
7238
  position: absolute;
 
7239
  top: 0;
7240
- right: 0;
7241
- width: 100%;
7242
- height: 100%;
7243
- -webkit-transition: all 0.3s ease-in-out;
7244
- transition: all 0.3s ease-in-out;
7245
- }
7246
-
7247
- .pa-gallery-img:not(.style2) .pa-gallery-icons-inner-container {
7248
- position: absolute;
7249
- top: 33.33%;
7250
- width: 100%;
7251
- text-align: center;
7252
- -webkit-transform: translateY(-50%);
7253
- -ms-transform: translateY(-50%);
7254
- transform: translateY(-50%);
7255
- z-index: 999;
7256
- }
7257
-
7258
- .premium-blog-post-container .premium-blog-entry-container {
7259
- margin: 0 !important;
7260
- }
7261
-
7262
- .pa-gallery-img.style1 .premium-gallery-caption {
7263
- position: absolute;
7264
- top: auto;
7265
- left: 0;
7266
- right: 0;
7267
- width: 100%;
7268
- -webkit-transition: all 500ms ease 0s;
7269
- transition: all 500ms ease 0s;
7270
- -webkit-transform: translate3d(0, 100%, 0);
7271
- -ms-transform: translate3d(0, 100%, 0);
7272
- transform: translate3d(0, 100%, 0);
7273
- }
7274
-
7275
- .pa-gallery-img.default .premium-gallery-caption {
7276
- position: absolute;
7277
- top: auto;
7278
  left: 0;
7279
- right: 0;
7280
- width: 100%;
7281
- bottom: 0;
7282
- }
7283
-
7284
- .pa-gallery-img.style1:hover .premium-gallery-caption {
7285
- -webkit-transform: translate3d(0, 0, 0);
7286
- -ms-transform: translate3d(0, 0, 0);
7287
- transform: translate3d(0, 0, 0);
7288
- bottom: -1px !important;
7289
  }
7290
 
7291
- .pa-gallery-img.style2 .pa-gallery-icons-caption-container {
7292
  position: absolute;
7293
  top: 0;
7294
- right: 0;
7295
- width: 100%;
7296
- height: 100%;
7297
- opacity: 0;
7298
- -webkit-backface-visibility: hidden;
7299
- backface-visibility: hidden;
7300
- -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
7301
- -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
7302
- transition: opacity 0.3s, -webkit-transform 0.3s;
7303
- transition: transform 0.3s, opacity 0.3s;
7304
- transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
7305
- z-index: 1;
7306
- background-color: rgba(108, 191, 226, 0.68);
7307
- display: -webkit-box;
7308
- display: -webkit-flex;
7309
- display: -ms-flexbox;
7310
- -js-display: flex;
7311
- display: -moz-box;
7312
- display: flex;
7313
- text-align: center;
7314
- -webkit-box-align: center;
7315
- -webkit-align-items: center;
7316
- -moz-box-align: center;
7317
- -ms-flex-align: center;
7318
- align-items: center;
7319
- }
7320
-
7321
- .pa-gallery-img.style2 .pa-gallery-icons-caption-cell {
7322
- width: 100%;
7323
- }
7324
-
7325
- .pa-gallery-img.style2:hover .pa-gallery-icons-caption-container {
7326
- opacity: 1;
7327
- -webkit-transform: translate(-15px, 15px);
7328
- -ms-transform: translate(-15px, 15px);
7329
- transform: translate(-15px, 15px);
7330
- }
7331
-
7332
- .premium-clearfix {
7333
- clear: both;
7334
  }
7335
 
7336
- .premium-gallery-container .pa-gallery-item {
7337
- padding: 10px;
 
7338
  }
7339
 
7340
- /**
7341
- * Metro Layout
7342
- */
7343
- .premium-img-gallery-metro .premium-gallery-item {
7344
  overflow: hidden;
 
 
 
 
 
 
7345
  }
7346
 
7347
- .premium-img-gallery-metro .pa-gallery-img {
7348
- height: 100%;
7349
- }
7350
-
7351
- .premium-img-gallery-metro .pa-gallery-img-container {
7352
- height: 100%;
7353
- }
7354
-
7355
- .premium-img-gallery-metro .pa-gallery-img-container img {
7356
- min-height: 100%;
7357
- width: 100%;
7358
- -o-object-fit: fill;
7359
- object-fit: fill;
7360
- }
7361
-
7362
- .premium-img-gallery .premium-gallery-item-hidden {
7363
- visibility: hidden;
7364
- width: 0 !important;
7365
- height: 0 !important;
7366
- margin: 0 !important;
7367
- padding: 0 !important;
7368
- }
7369
-
7370
- .premium-gallery-load-more .premium-gallery-load-more-btn {
7371
- -webkit-box-shadow: none;
7372
- box-shadow: none;
7373
- text-shadow: none;
7374
- border: none;
7375
- outline: none;
7376
- -webkit-box-align: center;
7377
- -ms-flex-align: center;
7378
- -webkit-align-items: center;
7379
- -moz-box-align: center;
7380
- align-items: center;
7381
- vertical-align: bottom;
7382
- cursor: pointer;
7383
- line-height: 1;
7384
- font-style: normal;
7385
- font-weight: normal;
7386
- background-image: none;
7387
- color: #fff;
7388
- -webkit-transition: all 0.3s ease-in-out;
7389
- transition: all 0.3s ease-in-out;
7390
- }
7391
-
7392
- .premium-gallery-load-more-btn {
7393
- display: -webkit-inline-box;
7394
- display: -webkit-inline-flex;
7395
- display: -ms-inline-flexbox;
7396
- -js-display: inline-flex;
7397
- display: -moz-inline-box;
7398
- display: inline-flex;
7399
- -webkit-box-align: center;
7400
- -webkit-align-items: center;
7401
- -moz-box-align: center;
7402
- -ms-flex-align: center;
7403
- align-items: center;
7404
- }
7405
-
7406
- .premium-loader {
7407
- border: 3px solid #f3f3f3;
7408
- border-top-width: 3px;
7409
- border-top-style: solid;
7410
- border-top-color: rgb(243, 243, 243);
7411
- -webkit-border-radius: 50%;
7412
- border-radius: 50%;
7413
- border-top: 3px solid;
7414
- border-top-color: #bbb;
7415
- width: 30px;
7416
- height: 30px;
7417
- -webkit-animation: spin 2s linear infinite;
7418
- animation: spin 2s linear infinite;
7419
- margin: 0 auto;
7420
- }
7421
-
7422
- .premium-gallery-load-more-btn div {
7423
- margin-right: 3px;
7424
- }
7425
-
7426
- .premium-gallery-load-more-btn .premium-loader {
7427
- display: inline-block;
7428
- width: 20px;
7429
- height: 20px;
7430
- }
7431
-
7432
- /** * Video */
7433
- .pa-gallery-img .pa-gallery-lightbox-wrap {
7434
- display: inline-block;
7435
- }
7436
-
7437
- .premium-img-gallery-no-lightbox .premium-gallery-video-item .pa-gallery-img,
7438
- .pa-gallery-img .pa-gallery-video-icon {
7439
- cursor: pointer;
7440
- }
7441
-
7442
- .pa-gallery-img-container iframe,
7443
- .pa-gallery-img-container video {
7444
  position: absolute;
7445
- visibility: hidden;
7446
  top: 0;
7447
- right: 0;
7448
- max-width: 100%;
7449
  width: 100%;
7450
  height: 100%;
7451
- margin: 0;
7452
- line-height: 1;
7453
- border: none;
7454
- }
7455
-
7456
- .pa-gallery-img-container video {
7457
- -o-object-fit: contain;
7458
- object-fit: contain;
7459
- }
7460
-
7461
- .pa-gallery-icons-inner-container svg,
7462
- .pa-gallery-icons-caption-cell svg {
7463
- width: 14px;
7464
- height: 14px;
7465
- }
7466
-
7467
- .premium-gallery-gradient-layer {
7468
- position: absolute;
7469
- bottom: 40px;
7470
- width: 100%;
7471
- height: 20px;
7472
- background: -webkit-gradient(linear, left bottom, left top, from(#17181f), to(rgba(255, 255, 255, 0)));
7473
- background: -webkit-linear-gradient(bottom, #17181f 0%, rgba(255, 255, 255, 0) 100%);
7474
- background: linear-gradient(to top, #17181f 0%, rgba(255, 255, 255, 0) 100%);
7475
  }
7476
 
7477
- @-webkit-keyframes spin {
7478
- 0% {
7479
- -webkit-transform: rotate(0deg);
7480
- }
7481
-
7482
- 100% {
7483
- -webkit-transform: rotate(-360deg);
7484
- }
7485
  }
7486
 
7487
- @keyframes spin {
7488
- 0% {
7489
- -webkit-transform: rotate(0deg);
7490
- transform: rotate(0deg);
7491
- }
7492
-
7493
- 100% {
7494
- -webkit-transform: rotate(-360deg);
7495
- transform: rotate(-360deg);
7496
- }
7497
- }
7498
-
7499
- /************ Premium Vertical Scroll ************/
7500
- /*************************************************/
7501
- .premium-vscroll-inner {
7502
- position: relative;
7503
- /* overflow: hidden;
7504
- */
7505
- min-height: 100%;
7506
- }
7507
-
7508
- .premium-vscroll-inner .premium-vscroll-dots {
7509
- position: fixed;
7510
- z-index: 100;
7511
- opacity: 1;
7512
- margin-top: -32px;
7513
- -webkit-transition: all 0.3s ease-in-out;
7514
- transition: all 0.3s ease-in-out;
7515
- }
7516
-
7517
- .premium-vscroll-wrap .premium-vscroll-nav-menu {
7518
- opacity: 1;
7519
- -webkit-transition: all 0.3s ease-in-out;
7520
- transition: all 0.3s ease-in-out;
7521
- }
7522
-
7523
- .premium-vscroll-inner .premium-vscroll-dots,
7524
- .premium-vscroll-wrap .premium-vscroll-dots-hide {
7525
- opacity: 0;
7526
- visibility: hidden;
7527
- }
7528
-
7529
- .premium-vscroll-nav-dots-yes .premium-vscroll-inner .premium-vscroll-dots {
7530
- opacity: 1;
7531
- visibility: visible;
7532
- }
7533
-
7534
- .premium-vscroll-dots.middle {
7535
- top: 50%;
7536
- }
7537
-
7538
- .premium-vscroll-dots.top {
7539
- top: 40px;
7540
- }
7541
-
7542
- .premium-vscroll-dots.bottom {
7543
- bottom: 30px;
7544
- }
7545
-
7546
- .premium-vscroll-dots.right {
7547
- left: 17px;
7548
- }
7549
-
7550
- .premium-vscroll-dots.left {
7551
- right: 17px;
7552
- }
7553
-
7554
- .premium-vscroll-inner ul.premium-vscroll-dots-list,
7555
- .premium-vscroll-wrap .premium-vscroll-nav-menu {
7556
- margin: 0 !important;
7557
- padding: 0;
7558
- }
7559
-
7560
- .premium-vscroll-inner ul.premium-vscroll-dots-list li {
7561
- width: 14px;
7562
- height: 13px;
7563
- margin: 7px;
7564
- position: relative;
7565
- display: -webkit-box;
7566
- display: -webkit-flex;
7567
- display: -ms-flexbox;
7568
- -js-display: flex;
7569
- display: -moz-box;
7570
- display: flex;
7571
- -webkit-box-pack: center;
7572
- -ms-flex-pack: center;
7573
- -webkit-justify-content: center;
7574
- -moz-box-pack: center;
7575
- justify-content: center;
7576
- -webkit-box-align: center;
7577
- -ms-flex-align: center;
7578
- -webkit-align-items: center;
7579
- -moz-box-align: center;
7580
- align-items: center;
7581
- overflow: visible;
7582
- }
7583
-
7584
- .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link {
7585
- display: block;
7586
- position: relative;
7587
- z-index: 1;
7588
- width: 100%;
7589
- height: 100%;
7590
- cursor: pointer;
7591
- text-decoration: none;
7592
- }
7593
-
7594
- .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link span {
7595
- top: 2px;
7596
- right: 2.5px;
7597
- width: 8px;
7598
- height: 8px;
7599
- border: 1px solid #000;
7600
- -webkit-border-radius: 50%;
7601
- border-radius: 50%;
7602
- position: absolute;
7603
- z-index: 1;
7604
- -webkit-transition: all 0.3s ease-in-out;
7605
- transition: all 0.3s ease-in-out;
7606
- }
7607
-
7608
- .premium-vscroll-inner .premium-vscroll-dot-item.active .premium-vscroll-nav-link span {
7609
- -webkit-transform: scale(1.6);
7610
- -ms-transform: scale(1.6);
7611
- transform: scale(1.6);
7612
- }
7613
-
7614
- .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-tooltip {
7615
- position: absolute;
7616
- color: #fff;
7617
- font-size: 14px;
7618
- font-family: arial, helvetica, sans-serif;
7619
- white-space: nowrap;
7620
- max-width: 220px;
7621
- padding-right: 0.4em;
7622
- padding-left: 0.4em;
7623
- }
7624
-
7625
- .premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip {
7626
- left: 27px;
7627
- }
7628
-
7629
- /* * Lines */
7630
- .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item {
7631
- width: 4px;
7632
- height: 30px;
7633
- }
7634
-
7635
- .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item span {
7636
- width: 100%;
7637
- height: 100%;
7638
- -webkit-border-radius: 0;
7639
- border-radius: 0;
7640
- }
7641
-
7642
- .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item.active span {
7643
- -webkit-transform: scale(1);
7644
- -ms-transform: scale(1);
7645
- transform: scale(1);
7646
- }
7647
-
7648
- @media (max-width: 768px) {
7649
- .premium-vscroll-dots.right {
7650
- left: 7px;
7651
- }
7652
-
7653
- .premium-vscroll-dots.left {
7654
- right: 7px;
7655
- }
7656
- }
7657
-
7658
- .premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip::after {
7659
- position: absolute;
7660
- top: 50%;
7661
- content: "";
7662
- right: -webkit-calc(100% - 1px);
7663
- right: calc(100% - 1px);
7664
- width: 10px;
7665
- height: 0;
7666
- border-top: 6px solid transparent;
7667
- border-bottom: 6px solid transparent;
7668
- border-right: 6px solid;
7669
- -webkit-transform: translateY(-50%);
7670
- -ms-transform: translateY(-50%);
7671
- transform: translateY(-50%);
7672
- }
7673
-
7674
- .premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip::after {
7675
- position: absolute;
7676
- top: 50%;
7677
- content: "";
7678
- left: -webkit-calc(100% - 1px);
7679
- left: calc(100% - 1px);
7680
- width: 10px;
7681
- height: 0;
7682
- border-top: 6px solid transparent;
7683
- border-bottom: 6px solid transparent;
7684
- border-left: 6px solid;
7685
- -webkit-transform: translateY(-50%);
7686
- -ms-transform: translateY(-50%);
7687
- transform: translateY(-50%);
7688
- }
7689
-
7690
- .premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip {
7691
- right: 27px;
7692
- }
7693
-
7694
- .premium-vscroll-nav-menu {
7695
- position: fixed;
7696
- top: 20px;
7697
- height: 40px;
7698
- z-index: 100;
7699
- padding: 0;
7700
- margin: 0;
7701
- }
7702
-
7703
- .premium-vscroll-nav-menu.left {
7704
- right: 0;
7705
- }
7706
-
7707
- .premium-vscroll-nav-menu.right {
7708
- left: 0;
7709
- }
7710
-
7711
- .premium-vscroll-nav-menu .premium-vscroll-nav-item {
7712
- display: inline-block;
7713
- margin: 10px;
7714
- color: #000;
7715
- background: #fff;
7716
- background: rgba(255, 255, 255, 0.3);
7717
- }
7718
-
7719
- .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link {
7720
- padding: 9px 18px;
7721
- display: block;
7722
- cursor: pointer;
7723
- }
7724
-
7725
- .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link,
7726
- .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:hover {
7727
- color: #000;
7728
- }
7729
-
7730
- .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:focus,
7731
- .multiscroll-nav li a:focus {
7732
- outline: none;
7733
- }
7734
-
7735
- .premium-vscroll-temp .slimScrollBar {
7736
- visibility: hidden;
7737
- }
7738
-
7739
- /************ Premium Image Scroll ***************/
7740
- /*************************************************/
7741
- .premium-image-scroll-section,
7742
- .premium-image-scroll-container {
7743
- -webkit-transition: all 0.3s ease-in-out;
7744
- transition: all 0.3s ease-in-out;
7745
- }
7746
-
7747
- .premium-image-scroll-section {
7748
- position: relative;
7749
- overflow: hidden;
7750
- width: 100%;
7751
- -webkit-mask-image: -webkit-radial-gradient(white, black);
7752
- }
7753
-
7754
- .premium-image-scroll-container {
7755
- width: 100%;
7756
- }
7757
-
7758
- .premium-image-scroll-container .premium-image-scroll-mask-media {
7759
- -webkit-mask-repeat: no-repeat;
7760
- mask-repeat: no-repeat;
7761
- -webkit-mask-position: center;
7762
- mask-position: center;
7763
- }
7764
-
7765
- .premium-container-scroll {
7766
- overflow: auto;
7767
- }
7768
-
7769
- .premium-image-scroll-container .premium-image-scroll-horizontal {
7770
- position: relative;
7771
- width: 100%;
7772
- height: 100%;
7773
- }
7774
-
7775
- .premium-image-scroll-container .premium-image-scroll-horizontal img {
7776
- max-width: none;
7777
- height: 100%;
7778
- }
7779
-
7780
- .premium-image-scroll-container .premium-image-scroll-vertical img {
7781
- width: 100%;
7782
- max-width: 100%;
7783
- height: auto;
7784
- }
7785
-
7786
- .premium-image-scroll-ver {
7787
- position: relative;
7788
- }
7789
-
7790
- .premium-image-scroll-container .premium-image-scroll-overlay {
7791
- background: rgba(2, 2, 2, 0.3);
7792
- }
7793
-
7794
- .premium-image-scroll-container .premium-image-scroll-link,
7795
- .premium-image-scroll-container .premium-image-scroll-overlay {
7796
- position: absolute;
7797
- top: 0;
7798
- bottom: 0;
7799
- right: 0;
7800
- left: 0;
7801
- z-index: 4;
7802
- }
7803
-
7804
- .premium-image-scroll-content {
7805
- display: inline-block;
7806
- position: absolute;
7807
- height: auto;
7808
- top: 50%;
7809
- right: 50%;
7810
- text-align: center;
7811
- z-index: 5;
7812
- -webkit-transform: translate(50%, -50%);
7813
- -ms-transform: translate(50%, -50%);
7814
- transform: translate(50%, -50%);
7815
- }
7816
-
7817
- .premium-container-scroll-instant .premium-image-scroll-image {
7818
- -webkit-transition: all 0s ease-in-out !important;
7819
- transition: all 0s ease-in-out !important;
7820
- }
7821
-
7822
- .premium-image-scroll-container img {
7823
- -webkit-transition: -webkit-transform 3s ease-in-out;
7824
- transition: -webkit-transform 3s ease-in-out;
7825
- transition: transform 3s ease-in-out;
7826
- transition: transform 3s ease-in-out, -webkit-transform 3s ease-in-out;
7827
- }
7828
-
7829
- .premium-image-scroll-container .premium-image-scroll-overlay,
7830
- .premium-image-scroll-container .premium-image-scroll-content {
7831
- -webkit-transition: all 0.3s ease-in-out;
7832
- transition: all 0.3s ease-in-out;
7833
- opacity: 1;
7834
- }
7835
-
7836
- .premium-image-scroll-container:hover .premium-image-scroll-overlay {
7837
- opacity: 0;
7838
- }
7839
-
7840
- .premium-image-scroll-container:hover .premium-image-scroll-content {
7841
- opacity: 0;
7842
- visibility: hidden;
7843
- }
7844
-
7845
- .premium-image-scroll-content .premium-image-scroll-icon {
7846
- display: inline-block;
7847
- font-family: "pa-elements" !important;
7848
- speak: none;
7849
- font-style: normal;
7850
- font-weight: normal;
7851
- font-variant: normal;
7852
- text-transform: none;
7853
- line-height: 1;
7854
- -webkit-font-smoothing: antialiased;
7855
- -moz-osx-font-smoothing: grayscale;
7856
- -webkit-animation-duration: 0.5s;
7857
- animation-duration: 0.5s;
7858
- -webkit-animation-iteration-count: infinite;
7859
- animation-iteration-count: infinite;
7860
- -webkit-animation-direction: alternate;
7861
- animation-direction: alternate;
7862
- -webkit-animation-timing-function: ease-in-out;
7863
- animation-timing-function: ease-in-out;
7864
- }
7865
-
7866
- .pa-horizontal-mouse-scroll:before {
7867
- content: "\e917";
7868
- }
7869
-
7870
- .pa-vertical-mouse-scroll:before {
7871
- content: "\e918";
7872
- }
7873
-
7874
- .pa-horizontal-mouse-scroll {
7875
- -webkit-animation-name: pa-scroll-horizontal;
7876
- animation-name: pa-scroll-horizontal;
7877
- }
7878
-
7879
- .pa-vertical-mouse-scroll {
7880
- -webkit-animation-name: pa-scroll-vertical;
7881
- animation-name: pa-scroll-vertical;
7882
- }
7883
-
7884
- @-webkit-keyframes pa-scroll-vertical {
7885
- 0% {
7886
- -webkit-transform: translateY(0px);
7887
- transform: translateY(0px);
7888
- }
7889
-
7890
- 100% {
7891
- -webkit-transform: translateY(5px);
7892
- transform: translateY(5px);
7893
- }
7894
- }
7895
-
7896
- @keyframes pa-scroll-vertical {
7897
- 0% {
7898
- -webkit-transform: translateY(0px);
7899
- transform: translateY(0px);
7900
- }
7901
-
7902
- 100% {
7903
- -webkit-transform: translateY(5px);
7904
- transform: translateY(5px);
7905
- }
7906
- }
7907
-
7908
- @-webkit-keyframes pa-scroll-horizontal {
7909
- 0% {
7910
- -webkit-transform: translateX(0px);
7911
- transform: translateX(0px);
7912
- }
7913
-
7914
- 100% {
7915
- -webkit-transform: translateX(-5px);
7916
- transform: translateX(-5px);
7917
- }
7918
- }
7919
-
7920
- @keyframes pa-scroll-horizontal {
7921
- 0% {
7922
- -webkit-transform: translateX(0px);
7923
- transform: translateX(0px);
7924
- }
7925
-
7926
- 100% {
7927
- -webkit-transform: translateX(-5px);
7928
- transform: translateX(-5px);
7929
- }
7930
- }
7931
-
7932
- /********* Premium Lottie Animations **********/
7933
- /**********************************************/
7934
- .elementor-widget-premium-lottie .premium-lottie-animation {
7935
- position: relative;
7936
- -js-display: inline-flex;
7937
- display: -webkit-inline-box;
7938
- display: -webkit-inline-flex;
7939
- display: -moz-inline-box;
7940
- display: -ms-inline-flexbox;
7941
- display: inline-flex;
7942
- -webkit-transition: all 0.3s ease-in-out;
7943
- transition: all 0.3s ease-in-out;
7944
- }
7945
-
7946
- .elementor-widget-premium-lottie .premium-lottie-animation a {
7947
- position: absolute;
7948
- left: 0;
7949
- top: 0;
7950
- width: 100%;
7951
- height: 100%;
7952
- z-index: 2;
7953
- }
7954
-
7955
- /**************** Premium Bullet List *****************/
7956
- /******************************************************/
7957
- .premium-bullet-list-box {
7958
- -js-display: flex;
7959
- display: -webkit-box;
7960
- display: -webkit-flex;
7961
- display: -moz-box;
7962
- display: -ms-flexbox;
7963
- display: flex;
7964
- -webkit-flex-wrap: wrap;
7965
- -ms-flex-wrap: wrap;
7966
- flex-wrap: wrap;
7967
- -webkit-box-orient: vertical;
7968
- -webkit-box-direction: normal;
7969
- -webkit-flex-direction: column;
7970
- -moz-box-orient: vertical;
7971
- -moz-box-direction: normal;
7972
- -ms-flex-direction: column;
7973
- flex-direction: column;
7974
- }
7975
-
7976
- .premium-bullet-list-box .premium-bullet-list-content-grow-lc {
7977
- -webkit-transform-origin: right center;
7978
- -ms-transform-origin: right center;
7979
- transform-origin: right center;
7980
- }
7981
-
7982
- .premium-bullet-list-box .premium-bullet-list-content-grow-rc {
7983
- -webkit-transform-origin: left center;
7984
- -ms-transform-origin: left center;
7985
- transform-origin: left center;
7986
- }
7987
-
7988
- .premium-bullet-list-box .premium-bullet-list-content-grow-cc {
7989
- -webkit-transform-origin: center center;
7990
- -ms-transform-origin: center center;
7991
- transform-origin: center center;
7992
- }
7993
-
7994
- .premium-bullet-list-content {
7995
- -js-display: flex;
7996
- display: -webkit-box;
7997
- display: -webkit-flex;
7998
- display: -moz-box;
7999
- display: -ms-flexbox;
8000
- display: flex;
8001
- -webkit-transition: all 0.3s ease-in-out;
8002
- transition: all 0.3s ease-in-out;
8003
- width: auto;
8004
- position: relative;
8005
- }
8006
-
8007
- .premium-bullet-list-content .premium-bullet-list-text span,
8008
- .premium-bullet-list-content .premium-bullet-list-wrapper {
8009
- display: inline-block;
8010
- -webkit-align-self: center;
8011
- -ms-flex-item-align: center;
8012
- align-self: center;
8013
- -webkit-transition: all 0.3s ease-in-out;
8014
- transition: all 0.3s ease-in-out;
8015
- }
8016
-
8017
- .premium-bullet-list-content .premium-bullet-list-text span {
8018
- margin: 0 5px;
8019
- }
8020
-
8021
- .premium-bullet-list-content .premium-bullet-list-icon-text p {
8022
- font-size: 18px;
8023
- background-color: #eee;
8024
- padding: 1px 5px;
8025
- -webkit-border-radius: 2px;
8026
- border-radius: 2px;
8027
- }
8028
-
8029
- .premium-bullet-list-content .premium-bullet-list-text span,
8030
- .premium-bullet-list-content .premium-bullet-list-icon-text p,
8031
- .premium-bullet-list-content .premium-bullet-list-wrapper img,
8032
- .premium-bullet-list-content .premium-bullet-list-wrapper svg,
8033
- .premium-bullet-list-content .premium-bullet-list-wrapper i {
8034
- -webkit-transition: all 0.3s ease-in-out;
8035
- transition: all 0.3s ease-in-out;
8036
- }
8037
-
8038
- .premium-bullet-list-content .premium-bullet-list-wrapper {
8039
- position: relative;
8040
- line-height: 0;
8041
- }
8042
-
8043
- .premium-bullet-list-content .premium-bullet-list-wrapper img,
8044
- .premium-bullet-list-content .premium-bullet-list-wrapper svg {
8045
- width: 30px !important;
8046
- height: 30px !important;
8047
- position: relative;
8048
- z-index: 500;
8049
- }
8050
-
8051
- .premium-bullet-list-content .premium-bullet-list-wrapper i {
8052
- width: 1.25em;
8053
- }
8054
-
8055
- .premium-bullet-list-content .premium-bullet-list-wrapper i,
8056
- .premium-bullet-list-content .premium-bullet-list-wrapper .premium-bullet-list-icon-text {
8057
- position: relative;
8058
- z-index: 500;
8059
- }
8060
-
8061
- .premium-bullet-list-content .premium-bullet-list-link {
8062
- position: absolute;
8063
- top: 0;
8064
- right: 0;
8065
- width: 100%;
8066
- height: 100%;
8067
- z-index: 1000;
8068
- }
8069
-
8070
- .premium-bullet-list-content:not(:last-of-type) .premium-bullet-list-connector {
8071
- width: 100%;
8072
- height: 100%;
8073
- position: absolute;
8074
- top: 0.5em;
8075
- z-index: 100;
8076
- -js-display: flex;
8077
- display: -webkit-box;
8078
- display: -webkit-flex;
8079
- display: -moz-box;
8080
- display: -ms-flexbox;
8081
- display: flex;
8082
- -webkit-box-pack: center;
8083
- -webkit-justify-content: center;
8084
- -moz-box-pack: center;
8085
- -ms-flex-pack: center;
8086
- justify-content: center;
8087
- }
8088
-
8089
- .premium-bullet-list-content:not(:last-of-type) .premium-bullet-list-connector .premium-icon-connector-content:after {
8090
- content: "";
8091
- border-left-width: 1px;
8092
- border-left-style: solid;
8093
- border-color: #333333;
8094
- display: block;
8095
- height: 100%;
8096
- }
8097
-
8098
- li.premium-bullet-list-content.premium-bullet-list-content-inline {
8099
- -webkit-align-self: center;
8100
- -ms-flex-item-align: center;
8101
- align-self: center;
8102
- z-index: 2;
8103
- }
8104
-
8105
- li.premium-bullet-list-content.premium-bullet-list-content-inline:not(:first-child) {
8106
- margin: 0 3px;
8107
- }
8108
-
8109
- li.premium-bullet-list-content.premium-bullet-list-content-inline:first-child {
8110
- margin: 0 0 0 3px;
8111
- }
8112
-
8113
- .premium-bullet-list-divider:not(:last-child) {
8114
- width: 100%;
8115
- -webkit-box-flex: 0;
8116
- -webkit-flex: 0 0 100%;
8117
- -moz-box-flex: 0;
8118
- -ms-flex: 0 0 100%;
8119
- flex: 0 0 100%;
8120
- overflow: hidden;
8121
- }
8122
-
8123
- .premium-bullet-list-divider:not(:last-child):after {
8124
- content: "";
8125
- display: block;
8126
- border-top-style: solid;
8127
- border-top-width: 1px;
8128
- }
8129
-
8130
- .premium-bullet-list-divider-inline:not(:last-child) {
8131
- float: left;
8132
- display: inline-block;
8133
- position: relative;
8134
- height: 100%;
8135
- overflow: hidden;
8136
- -webkit-align-self: center;
8137
- -ms-flex-item-align: center;
8138
- align-self: center;
8139
- margin: 0 3px;
8140
- }
8141
-
8142
- .premium-bullet-list-divider-inline:not(:last-child):after {
8143
- content: "";
8144
- display: block;
8145
- border-right-width: 1px;
8146
- height: 33px;
8147
- border-right-style: solid;
8148
- }
8149
-
8150
- .premium-bullet-list-icon-text {
8151
- line-height: 1.5;
8152
- }
8153
-
8154
- .premium-bullet-list-icon-text p,
8155
- ul.premium-bullet-list-box,
8156
- li.premium-bullet-list-content {
8157
- margin: 0;
8158
- }
8159
-
8160
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper i,
8161
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-text span,
8162
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-icon-text p {
8163
- color: transparent !important;
8164
- text-shadow: 0 0 3px #aaa;
8165
- }
8166
-
8167
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-icon-connector-content,
8168
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper .premium-lottie-animation svg,
8169
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper img,
8170
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-badge {
8171
- -webkit-filter: blur(3px);
8172
- filter: blur(3px);
8173
- }
8174
-
8175
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper i,
8176
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-text span,
8177
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-icon-text p {
8178
- color: #aaa !important;
8179
- text-shadow: 0 0px 0 transparent;
8180
- }
8181
-
8182
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-icon-connector-content,
8183
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper .premium-lottie-animation svg,
8184
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper img,
8185
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-badge {
8186
- -webkit-filter: none;
8187
- filter: none;
8188
- }
8189
-
8190
- .premium-bullet-list-content .premium-bullet-list-badge {
8191
- font-size: 11px;
8192
- top: auto;
8193
- min-width: -webkit-max-content;
8194
- min-width: -moz-max-content;
8195
- min-width: max-content;
8196
- height: -webkit-fit-content;
8197
- height: -moz-fit-content;
8198
- height: fit-content;
8199
- }
8200
-
8201
- .premium-bullet-list-content .premium-bullet-list-icon-text p {
8202
- font-size: 13px;
8203
- }
8204
-
8205
- .premium-bullet-list-gradient-effect[data-text] {
8206
- display: inline-block;
8207
- position: relative;
8208
- text-decoration: none;
8209
- }
8210
-
8211
- .premium-bullet-list-gradient-effect[data-text]::before {
8212
- content: attr(data-text);
8213
- position: absolute;
8214
- z-index: 1;
8215
- overflow: hidden;
8216
- -webkit-clip-path: polygon(100% 100%, 100% 100%, 50% 50%);
8217
- clip-path: polygon(100% 100%, 100% 100%, 50% 50%);
8218
- -webkit-background-clip: text;
8219
- background-clip: text;
8220
- -webkit-text-fill-color: transparent;
8221
- -webkit-transition: all 0.4s ease;
8222
- transition: all 0.4s ease;
8223
- }
8224
-
8225
- .premium-bullet-list-content:hover .premium-bullet-list-gradient-effect[data-text]::before,
8226
- .premium-bullet-list-content:focus .premium-bullet-list-gradient-effect[data-text]::before {
8227
- -webkit-animation: rtlgradient 1s forwards;
8228
- animation: rtlgradient 1s forwards;
8229
- }
8230
-
8231
- @-webkit-keyframes rtlgradient {
8232
- 0% {
8233
- -webkit-clip-path: circle(0% at 150% 50%);
8234
- clip-path: circle(0% at 150% 50%);
8235
- }
8236
-
8237
- 100% {
8238
- -webkit-clip-path: circle(100% at 50% 50%);
8239
- clip-path: circle(100% at 50% 50%);
8240
- }
8241
- }
8242
-
8243
- @keyframes rtlgradient {
8244
- 0% {
8245
- -webkit-clip-path: circle(0% at 150% 50%);
8246
- clip-path: circle(0% at 150% 50%);
8247
- }
8248
-
8249
- 100% {
8250
- -webkit-clip-path: circle(100% at 50% 50%);
8251
- clip-path: circle(100% at 50% 50%);
8252
- }
8253
- }
8254
-
8255
- ul[data-list-animation*="animated-"] .premium-bullet-list-divider,
8256
- ul[data-list-animation*="animated-"] .premium-bullet-list-content,
8257
- ul[data-list-animation*="animated-"] .premium-bullet-list-divider-inline {
8258
- opacity: 0;
8259
- }
8260
-
8261
- .premium-bullet-list-content-grow-effect:hover {
8262
- -webkit-transform: scale(1.07);
8263
- -ms-transform: scale(1.07);
8264
- transform: scale(1.07);
8265
- }
8266
-
8267
- @keyframes spin {
8268
- 100% {
8269
- -webkit-transform: rotate(360deg);
8270
- transform: rotate(360deg);
8271
- }
8272
- }
8273
-
8274
- /********** Premium Woo Products **********/
8275
- /******************************************/
8276
- .ast-single-post .entry-content .premium-woocommerce a {
8277
- text-decoration: none;
8278
- }
8279
-
8280
- .premium-woocommerce .premium-woo-qv-btn {
8281
- cursor: pointer;
8282
- }
8283
-
8284
- .premium-woocommerce:not(.premium-woo-skin-grid-7) li.product .star-rating {
8285
- margin: 0 auto 0.5em;
8286
- }
8287
-
8288
- .premium-woocommerce:not(.premium-woo-skin-grid-10) .premium-woo-product-sale-wrap .premium-woo-product-onsale,
8289
- .premium-woocommerce:not(.premium-woo-skin-grid-10) .premium-woo-product-featured-wrap .premium-woo-product-featured {
8290
- display: block;
8291
- text-align: center;
8292
- color: #fff;
8293
- min-width: 2em;
8294
- min-height: 2em;
8295
- line-height: 2em;
8296
- padding: 0.3em 0.6em;
8297
- margin: 0.5em 0.6em;
8298
- }
8299
-
8300
- .premium-woocommerce .pa-out-of-stock {
8301
- display: block;
8302
- text-align: center;
8303
- color: #fff;
8304
- min-width: 2em;
8305
- min-height: 2em;
8306
- line-height: 2em;
8307
- padding: 0.3em 0.6em;
8308
- margin: 0.5em 0.6em;
8309
- }
8310
-
8311
- .premium-woocommerce .premium-woo-products-inner ul.products {
8312
- -js-display: flex;
8313
- display: -webkit-box;
8314
- display: -webkit-flex;
8315
- display: -moz-box;
8316
- display: -ms-flexbox;
8317
- display: flex;
8318
- margin: 0;
8319
- padding: 0;
8320
- -webkit-flex-wrap: wrap;
8321
- -ms-flex-wrap: wrap;
8322
- flex-wrap: wrap;
8323
- list-style: none outside;
8324
- -webkit-column-gap: 0;
8325
- -moz-column-gap: 0;
8326
- column-gap: 0;
8327
- }
8328
-
8329
- .premium-woocommerce .premium-woo-products-inner ul.products li.product {
8330
- margin: 0 0 10px;
8331
- padding: 0 10px;
8332
- }
8333
-
8334
- .premium-woocommerce.premium-woo-products-inner ul.products li.product .premium-woo-product-wrapper {
8335
- overflow: hidden;
8336
- -webkit-transition: all 0.3s ease-in-out;
8337
- transition: all 0.3s ease-in-out;
8338
- }
8339
-
8340
- .premium-woocommerce .premium-woo-product-category {
8341
- display: block;
8342
- font-size: 0.85em;
8343
- margin-bottom: 0.5em;
8344
- line-height: 1.3;
8345
- }
8346
-
8347
- .premium-woocommerce .woocommerce-loop-product__title {
8348
- margin-bottom: 0.5em;
8349
- font-size: 1em;
8350
- -webkit-transition: all 0.3s ease-in-out;
8351
- transition: all 0.3s ease-in-out;
8352
- }
8353
-
8354
- .premium-woocommerce .woocommerce-loop-product__link {
8355
- position: relative;
8356
- display: block !important;
8357
- overflow: hidden;
8358
- -webkit-transition: all 0.3s ease-in-out;
8359
- transition: all 0.3s ease-in-out;
8360
- }
8361
-
8362
- .premium-woocommerce .premium-woo-ribbon-container,
8363
- .premium-woocommerce .pa-out-of-stock {
8364
- position: absolute;
8365
- z-index: 9;
8366
- }
8367
-
8368
- .premium-woocommerce .premium-woo-ribbon-container {
8369
- top: 0;
8370
- right: 0;
8371
- }
8372
-
8373
- .premium-woocommerce .pa-out-of-stock {
8374
- top: 7px;
8375
- right: 9px;
8376
- margin: 0;
8377
- }
8378
-
8379
- .premium-woocommerce .star-rating {
8380
- display: block;
8381
- float: none;
8382
- margin: 0 auto 0.5em;
8383
- -webkit-backface-visibility: hidden;
8384
- backface-visibility: hidden;
8385
- overflow: hidden;
8386
- position: relative;
8387
- height: 1em;
8388
- line-height: 1;
8389
- font-size: 0.857em;
8390
- width: 5.4em;
8391
- font-family: "star";
8392
- }
8393
-
8394
- .premium-woocommerce .star-rating::before {
8395
- content: "\73\73\73\73\73";
8396
- color: #54595f;
8397
- float: right;
8398
- top: 0;
8399
- right: 0;
8400
- position: absolute;
8401
- }
8402
-
8403
- .premium-woocommerce .premium-woo-products-inner ul.products .star-rating span {
8404
- overflow: hidden;
8405
- float: right;
8406
- top: 0;
8407
- right: 0;
8408
- position: absolute;
8409
- padding-top: 1.5em;
8410
- }
8411
-
8412
- .premium-woocommerce .star-rating span::before {
8413
- content: "\53\53\53\53\53";
8414
- color: inherit;
8415
- top: 0;
8416
- position: absolute;
8417
- right: 0;
8418
- }
8419
-
8420
- .premium-woo-product-thumbnail {
8421
- position: relative;
8422
- overflow: hidden;
8423
- }
8424
-
8425
- .premium-woo-product-thumbnail .woocommerce-loop-product__link img {
8426
- margin: 0;
8427
- width: 100%;
8428
- }
8429
-
8430
- .premium-woo-product-sale-wrap,
8431
- .premium-woo-product-featured-wrap {
8432
- margin: 0;
8433
- }
8434
-
8435
- .premium-woocommerce .premium-woo-products-details-wrap {
8436
- padding: 1em 1.2em;
8437
- }
8438
-
8439
- .premium-woocommerce .premium-woo-products-details-wrap .button {
8440
- display: inline-block;
8441
- background-color: #6ec1e4;
8442
- color: #fff;
8443
- margin: 0.5em 0;
8444
- line-height: 1.3;
8445
- padding: 10px 40px;
8446
- font-size: 100%;
8447
- cursor: pointer;
8448
- text-decoration: none;
8449
- overflow: visible;
8450
- font-weight: 700;
8451
- background-image: none;
8452
- border: none;
8453
- -webkit-border-radius: 0px;
8454
- border-radius: 0px;
8455
- -webkit-box-shadow: none;
8456
- box-shadow: none;
8457
- text-shadow: none;
8458
- -webkit-transition: all 0.3s ease-in-out;
8459
- transition: all 0.3s ease-in-out;
8460
- }
8461
-
8462
- .premium-woocommerce li.product .price {
8463
- display: block;
8464
- line-height: 1.3;
8465
- font-weight: 700;
8466
- margin-bottom: 0.5em;
8467
- font-size: 0.9em;
8468
- }
8469
-
8470
- .premium-woocommerce li.product .price del {
8471
- display: inline-block;
8472
- font-weight: 400;
8473
- background: transparent;
8474
- opacity: 1;
8475
- }
8476
-
8477
- .premium-woocommerce li.product .price ins {
8478
- display: inline-block;
8479
- background: transparent;
8480
- text-decoration: none;
8481
- font-weight: inherit;
8482
- }
8483
-
8484
- .premium-woocommerce li.product .price .amount {
8485
- color: inherit !important;
8486
- }
8487
-
8488
- .premium-woocommerce li.product .premium-woo-product-desc p {
8489
- margin: 0;
8490
- }
8491
-
8492
- .premium-woo-product-align-left .premium-woocommerce li.product .star-rating {
8493
- margin-right: auto;
8494
- margin-left: 0;
8495
- }
8496
-
8497
- .premium-woo-product-align-center .premium-woocommerce li.product .star-rating {
8498
- margin-right: auto;
8499
- margin-left: auto;
8500
- }
8501
-
8502
- .premium-woo-product-align-right .premium-woocommerce li.product .star-rating {
8503
- margin-right: 0;
8504
- margin-left: auto;
8505
- }
8506
-
8507
- .premium-woo-products-pagination ul.page-numbers {
8508
- -js-display: flex;
8509
- display: -webkit-box;
8510
- display: -webkit-flex;
8511
- display: -moz-box;
8512
- display: -ms-flexbox;
8513
- display: flex;
8514
- list-style-type: none;
8515
- margin: 0;
8516
- margin-top: 10px;
8517
- padding: 0;
8518
- border: none;
8519
- -webkit-box-pack: center;
8520
- -webkit-justify-content: center;
8521
- -moz-box-pack: center;
8522
- -ms-flex-pack: center;
8523
- justify-content: center;
8524
- }
8525
-
8526
- .premium-woo-products-pagination ul.page-numbers li {
8527
- margin: 0 0 0.4em 0.4em;
8528
- padding: 0;
8529
- text-align: center;
8530
- }
8531
-
8532
- .premium-woo-products-pagination ul.page-numbers li .page-numbers {
8533
- margin: 0;
8534
- text-decoration: none;
8535
- color: #000;
8536
- border: 1px solid #54595f;
8537
- padding: 0;
8538
- line-height: 1;
8539
- font-size: 1em;
8540
- font-weight: 400;
8541
- padding: 0.75em;
8542
- display: block;
8543
- min-width: 2.5em;
8544
- -webkit-transition: all 0.3s ease-in-out;
8545
- transition: all 0.3s ease-in-out;
8546
- }
8547
-
8548
- .premium-woo-products-pagination ul.page-numbers li .page-numbers:hover,
8549
- .premium-woo-products-pagination ul.page-numbers li .page-numbers.current {
8550
- background-color: #54595f;
8551
- color: #fff;
8552
- outline: none;
8553
- }
8554
-
8555
- .premium-woocommerce .premium-loading-feed,
8556
- .premium-woo-quick-view-loader .premium-loading-feed {
8557
- display: block;
8558
- position: absolute;
8559
- width: 100%;
8560
- height: 100%;
8561
- top: 0px;
8562
- right: 0px;
8563
- bottom: 0px;
8564
- left: 0px;
8565
- background: rgba(255, 255, 255, 0.2);
8566
- -js-display: flex;
8567
- display: -webkit-box;
8568
- display: -webkit-flex;
8569
- display: -moz-box;
8570
- display: -ms-flexbox;
8571
- display: flex;
8572
- -webkit-box-align: center;
8573
- -webkit-align-items: center;
8574
- -moz-box-align: center;
8575
- -ms-flex-align: center;
8576
- align-items: center;
8577
- }
8578
-
8579
- /**
8580
- * Image Hover Effects
8581
- */
8582
- .premium-woocommerce .woocommerce-loop-product__link img {
8583
- -webkit-transition: all 0.3s ease-in-out;
8584
- transition: all 0.3s ease-in-out;
8585
- }
8586
-
8587
- .premium-woo-product__hover-zoomout .woocommerce-loop-product__link img {
8588
- -webkit-transform: scale(1.2);
8589
- -ms-transform: scale(1.2);
8590
- transform: scale(1.2);
8591
- }
8592
-
8593
- .premium-woo-product__hover-zoomout li.product:hover .woocommerce-loop-product__link img {
8594
- -webkit-transform: none;
8595
- -ms-transform: none;
8596
- transform: none;
8597
- }
8598
-
8599
- .premium-woo-product__hover-zoomin .woocommerce-loop-product__link img {
8600
- -webkit-transform: none;
8601
- -ms-transform: none;
8602
- transform: none;
8603
- }
8604
-
8605
- .premium-woo-product__hover-zoomin li.product:hover .woocommerce-loop-product__link img {
8606
- -webkit-transform: scale(1.2);
8607
- -ms-transform: scale(1.2);
8608
- transform: scale(1.2);
8609
- }
8610
-
8611
- .premium-woo-product__hover-gray .woocommerce-loop-product__link img {
8612
- -webkit-filter: grayscale(100%);
8613
- filter: grayscale(100%);
8614
- }
8615
-
8616
- .premium-woo-product__hover-gray li.product:hover .woocommerce-loop-product__link img {
8617
- -webkit-filter: grayscale(0%);
8618
- filter: grayscale(0%);
8619
- }
8620
-
8621
- .premium-woo-product__hover-sepia .woocommerce-loop-product__link img {
8622
- -webkit-filter: sepia(30%);
8623
- filter: sepia(30%);
8624
- }
8625
-
8626
- .premium-woo-product__hover-sepia li.product:hover .woocommerce-loop-product__link img {
8627
- -webkit-filter: sepia(0%);
8628
- filter: sepia(0%);
8629
- }
8630
-
8631
- .premium-woo-product__hover-bright .woocommerce-loop-product__link img {
8632
- -webkit-filter: brightness(1);
8633
- filter: brightness(1);
8634
- }
8635
-
8636
- .premium-woo-product__hover-bright li.product:hover .woocommerce-loop-product__link img {
8637
- -webkit-filter: brightness(1.2);
8638
- filter: brightness(1.2);
8639
- }
8640
-
8641
- .premium-woo-product__hover-trans .woocommerce-loop-product__link img {
8642
- -webkit-transform: translateX(15px) scale(1.1);
8643
- -ms-transform: translateX(15px) scale(1.1);
8644
- transform: translateX(15px) scale(1.1);
8645
- }
8646
-
8647
- .premium-woo-product__hover-trans li.product:hover .woocommerce-loop-product__link img {
8648
- -webkit-transform: translateX(0px) scale(1.1);
8649
- -ms-transform: translateX(0px) scale(1.1);
8650
- transform: translateX(0px) scale(1.1);
8651
- }
8652
-
8653
- .premium-woo-product__hover-scale li.product:hover .woocommerce-loop-product__link img {
8654
- -webkit-transform: scaleX(1.3) scaleY(1.3) rotate(-5deg);
8655
- -ms-transform: scaleX(1.3) scaleY(1.3) rotate(-5deg);
8656
- transform: scaleX(1.3) scaleY(1.3) rotate(-5deg);
8657
- }
8658
-
8659
- .premium-woocommerce .premium-woo-product__on_hover {
8660
- position: absolute;
8661
- top: 0;
8662
- left: 0;
8663
- bottom: 0;
8664
- right: 0;
8665
- height: 100%;
8666
- opacity: 0;
8667
- }
8668
-
8669
- .premium-woo-product__hover-swap li.product:hover .premium-woo-product__on_hover {
8670
- opacity: 1;
8671
- }
8672
-
8673
- .premium-woo-skin-grid-1 .premium-woo-qv-btn,
8674
- .premium-woo-skin-grid-3 .premium-woo-qv-btn,
8675
- .premium-woo-skin-grid-4 .premium-woo-qv-btn {
8676
- position: absolute;
8677
- bottom: 0;
8678
- right: 0;
8679
- width: 100%;
8680
- text-align: center;
8681
- padding: 5px;
8682
- background: rgba(2, 2, 2, 0.5);
8683
- color: #fff;
8684
- -webkit-transition: all 0.3s ease-in-out;
8685
- transition: all 0.3s ease-in-out;
8686
- z-index: 2;
8687
- -webkit-transform: translateY(100%);
8688
- -ms-transform: translateY(100%);
8689
- transform: translateY(100%);
8690
- }
8691
-
8692
- .premium-woo-skin-grid-4 .premium-woo-qv-btn {
8693
- -webkit-transition-delay: 0.1s;
8694
- transition-delay: 0.1s;
8695
- }
8696
-
8697
- .premium-woo-skin-grid-1 .premium-woo-qv-icon,
8698
- .premium-woo-skin-grid-3 .premium-woo-qv-icon,
8699
- .premium-woo-skin-grid-4 .premium-woo-qv-icon,
8700
- .premium-woo-skin-grid-6 .premium-woo-qv-icon {
8701
- margin-right: 0.5em;
8702
- }
8703
-
8704
- .premium-woo-product-thumbnail:hover .premium-woo-qv-btn-translate {
8705
- -webkit-transform: translateY(0);
8706
- -ms-transform: translateY(0);
8707
- transform: translateY(0);
8708
- }
8709
-
8710
- .premium-woo-product-wrapper .premium-woo-qv-data {
8711
- position: absolute;
8712
- top: 0;
8713
- right: 0;
8714
- width: 100%;
8715
- height: 100%;
8716
- z-index: 1;
8717
- overflow: hidden;
8718
- cursor: pointer;
8719
- }
8720
-
8721
- /**
8722
- * Skin 1,4
8723
- */
8724
- .premium-woo-skin-grid-1 .premium-woo-product-actions-wrapper,
8725
- .premium-woo-skin-grid-4 .premium-woo-product-actions-wrapper {
8726
- position: absolute;
8727
- top: 0.7em;
8728
- left: 1em;
8729
- -webkit-transform: translate3d(-15px, 0, 0);
8730
- transform: translate3d(-15px, 0, 0);
8731
- -webkit-transition: all 0.3s ease-in-out;
8732
- transition: all 0.3s ease-in-out;
8733
- opacity: 0;
8734
- z-index: 9;
8735
- }
8736
-
8737
- .premium-woocommerce .premium-woo-product-actions-wrapper .premium-woo-cart-btn {
8738
- position: relative;
8739
- display: block;
8740
- margin: 0 0 3px;
8741
- background: #fff;
8742
- text-align: center;
8743
- outline: 0;
8744
- -webkit-transition: all 0.3s ease-in-out;
8745
- transition: all 0.3s ease-in-out;
8746
- }
8747
-
8748
- .premium-woocommerce .premium-woo-product-actions-wrapper .premium-woo-add-cart-icon {
8749
- display: block;
8750
- color: #54595f;
8751
- width: 30px;
8752
- line-height: 30px;
8753
- height: 30px;
8754
- cursor: pointer;
8755
- -webkit-transition: all 0.3s ease-in-out;
8756
- transition: all 0.3s ease-in-out;
8757
- }
8758
-
8759
- .premium-woo-skin-grid-1 li.product:hover .premium-woo-product-actions-wrapper,
8760
- .premium-woo-skin-grid-4 li.product:hover .premium-woo-product-actions-wrapper {
8761
- -webkit-transform: translate3d(-5px, 0, 0);
8762
- transform: translate3d(-5px, 0, 0);
8763
- opacity: 1;
8764
- }
8765
-
8766
- .premium-woocommerce .premium-woo-cart-btn.adding .premium-woo-add-cart-icon {
8767
- -webkit-animation: spin 2s linear infinite;
8768
- animation: spin 2s linear infinite;
8769
- }
8770
-
8771
- .premium-woocommerce .premium-woo-cart-btn.adding .premium-woo-add-cart-icon::before {
8772
- content: "\f013";
8773
- }
8774
-
8775
- .premium-woocommerce .premium-woo-cart-btn.added .premium-woo-add-cart-icon::before {
8776
- content: "\f00c";
8777
- }
8778
-
8779
- /**
8780
- * Skin 2
8781
- */
8782
- .premium-woo-skin-grid-2 li.product .premium-woo-products-details-wrap {
8783
- position: absolute;
8784
- background: #fff;
8785
- bottom: 0;
8786
- right: 0;
8787
- width: 100%;
8788
- z-index: 2;
8789
- padding: 0;
8790
- opacity: 0;
8791
- -webkit-transition: opacity 0.2s, -webkit-transform 0.4s;
8792
- transition: opacity 0.2s, -webkit-transform 0.4s;
8793
- transition: transform 0.4s, opacity 0.2s;
8794
- transition: transform 0.4s, opacity 0.2s, -webkit-transform 0.4s;
8795
- -webkit-transform: translateZ(0) translateY(5px);
8796
- transform: translateZ(0) translateY(5px);
8797
- }
8798
-
8799
- .premium-woo-skin-grid-2 .premium-woo-product-details {
8800
- padding: 15px 0;
8801
- }
8802
-
8803
- .premium-woo-skin-grid-2 li.product:hover .premium-woo-products-details-wrap {
8804
- opacity: 1;
8805
- -webkit-transform: translateZ(0) translateY(0);
8806
- transform: translateZ(0) translateY(0);
8807
- }
8808
-
8809
- .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper {
8810
- position: static;
8811
- -js-display: flex;
8812
- display: -webkit-box;
8813
- display: -webkit-flex;
8814
- display: -moz-box;
8815
- display: -ms-flexbox;
8816
- display: flex;
8817
- -webkit-box-orient: horizontal;
8818
- -webkit-box-direction: reverse;
8819
- -webkit-flex-direction: row-reverse;
8820
- -moz-box-orient: horizontal;
8821
- -moz-box-direction: reverse;
8822
- -ms-flex-direction: row-reverse;
8823
- flex-direction: row-reverse;
8824
- }
8825
-
8826
- .premium-woo-skin-grid-2 .premium-woo-product-actions-wrapper>* {
8827
- -webkit-box-flex: 1;
8828
- -webkit-flex: 1;
8829
- -moz-box-flex: 1;
8830
- -ms-flex: 1;
8831
- flex: 1;
8832
- min-width: 50%;
8833
- }
8834
-
8835
- .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper .button {
8836
- -js-display: flex;
8837
- display: -webkit-box;
8838
- display: -webkit-flex;
8839
- display: -moz-box;
8840
- display: -ms-flexbox;
8841
- display: flex;
8842
- margin: 0;
8843
- text-align: center;
8844
- -webkit-box-pack: center;
8845
- -webkit-justify-content: center;
8846
- -moz-box-pack: center;
8847
- -ms-flex-pack: center;
8848
- justify-content: center;
8849
- -webkit-box-align: center;
8850
- -webkit-align-items: center;
8851
- -moz-box-align: center;
8852
- -ms-flex-align: center;
8853
- align-items: center;
8854
- }
8855
-
8856
- .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper .premium-woo-qv-btn {
8857
- background-color: #54595f;
8858
- }
8859
-
8860
- /**
8861
- * Skin 4
8862
- */
8863
- .premium-woo-skin-grid-4 li.product .premium-woo-products-details-wrap {
8864
- position: absolute;
8865
- right: 0;
8866
- left: 0;
8867
- top: 50%;
8868
- -webkit-transform: scale(0.9) translateZ(0) translateY(-50%);
8869
- transform: scale(0.9) translateZ(0) translateY(-50%);
8870
- text-align: center;
8871
- z-index: 2;
8872
- opacity: 0;
8873
- -webkit-transition: opacity 0.5s, -webkit-transform 0.3s;
8874
- transition: opacity 0.5s, -webkit-transform 0.3s;
8875
- transition: opacity 0.5s, transform 0.3s;
8876
- transition: opacity 0.5s, transform 0.3s, -webkit-transform 0.3s;
8877
- }
8878
-
8879
- .premium-woo-skin-grid-4 li.product .premium-woo-product-overlay,
8880
- .premium-woo-skin-grid-8 li.product .premium-woo-product-overlay {
8881
- position: absolute;
8882
- top: 0;
8883
- right: 0;
8884
- width: 100%;
8885
- height: 100%;
8886
- opacity: 0;
8887
- visibility: hidden;
8888
- background-color: rgba(27, 27, 23, 0.3);
8889
- -webkit-transition: all 0.25s ease-in-out;
8890
- transition: all 0.25s ease-in-out;
8891
- }
8892
-
8893
- .premium-woo-skin-grid-4 li.product:hover .premium-woo-product-overlay,
8894
- .premium-woo-skin-grid-8 li.product:hover .premium-woo-product-overlay {
8895
- opacity: 1;
8896
- visibility: visible;
8897
- z-index: 1;
8898
- }
8899
-
8900
- .premium-woo-skin-grid-4 li.product:hover .premium-woo-products-details-wrap {
8901
- -webkit-transform: scale(1) translateZ(0) translateY(-50%);
8902
- transform: scale(1) translateZ(0) translateY(-50%);
8903
- opacity: 1;
8904
- }
8905
-
8906
- /**
8907
- * Skin 5
8908
- */
8909
- .premium-woo-skin-grid-5 li.product .premium-woo-product-actions-wrapper {
8910
- -js-display: flex;
8911
- display: -webkit-box;
8912
- display: -webkit-flex;
8913
- display: -moz-box;
8914
- display: -ms-flexbox;
8915
- display: flex;
8916
- }
8917
-
8918
- .premium-woo-skin-grid-5 li.product .premium-woo-product-actions-wrapper .premium-woo-qv-btn {
8919
- -js-display: flex;
8920
- display: -webkit-box;
8921
- display: -webkit-flex;
8922
- display: -moz-box;
8923
- display: -ms-flexbox;
8924
- display: flex;
8925
- -webkit-box-align: center;
8926
- -webkit-align-items: center;
8927
- -moz-box-align: center;
8928
- -ms-flex-align: center;
8929
- align-items: center;
8930
- background-color: #54595f;
8931
- padding: 10px;
8932
- -webkit-transition: all 0.25s ease 0s;
8933
- transition: all 0.25s ease 0s;
8934
- }
8935
-
8936
- .premium-woo-skin-grid-5 li.product .premium-woo-products-details-wrap {
8937
- width: 75%;
8938
- }
8939
-
8940
- .premium-woo-skin-grid-5 .premium-woo-product-wrapper {
8941
- -js-display: flex;
8942
- display: -webkit-box;
8943
- display: -webkit-flex;
8944
- display: -moz-box;
8945
- display: -ms-flexbox;
8946
- display: flex;
8947
- -webkit-box-align: center;
8948
- -webkit-align-items: center;
8949
- -moz-box-align: center;
8950
- -ms-flex-align: center;
8951
- align-items: center;
8952
- }
8953
-
8954
- .premium-woo-product-align-right .premium-woo-skin-grid-5 .premium-woo-product-actions-wrapper {
8955
- -webkit-box-pack: end;
8956
- -webkit-justify-content: flex-end;
8957
- -moz-box-pack: end;
8958
- -ms-flex-pack: end;
8959
- justify-content: flex-end;
8960
- }
8961
-
8962
- .premium-woo-product-align-center .premium-woo-skin-grid-5 .premium-woo-product-actions-wrapper {
8963
- -webkit-box-pack: center;
8964
- -webkit-justify-content: center;
8965
- -moz-box-pack: center;
8966
- -ms-flex-pack: center;
8967
- justify-content: center;
8968
- }
8969
-
8970
- /**
8971
- * Skin 6
8972
- */
8973
- .premium-woo-skin-grid-6 .premium-woo-qv-btn {
8974
- position: absolute;
8975
- top: 50%;
8976
- right: 50%;
8977
- min-width: 40%;
8978
- text-align: center;
8979
- padding: 5px;
8980
- background: rgba(2, 2, 2, 0.5);
8981
- color: #fff;
8982
- -webkit-transform: translate(50%, -50%);
8983
- -ms-transform: translate(50%, -50%);
8984
- transform: translate(50%, -50%);
8985
- opacity: 0;
8986
- visibility: hidden;
8987
- -webkit-transition: all 0.3s ease-in-out;
8988
- transition: all 0.3s ease-in-out;
8989
- cursor: pointer;
8990
- z-index: 2;
8991
- }
8992
-
8993
- .premium-woo-skin-grid-6 li.product:hover .premium-woo-qv-btn {
8994
- opacity: 1;
8995
- visibility: visible;
8996
- }
8997
-
8998
- .premium-woo-product-align-right .premium-woo-skin-grid-6 li.product .premium-woo-product-info .star-rating,
8999
- .premium-woo-product-align-left .premium-woo-skin-grid-6 li.product .premium-woo-product-info .star-rating,
9000
- .premium-woo-product-align-right .premium-woo-skin-grid-7 li.product .premium-woo-product-info .star-rating,
9001
- .premium-woo-product-align-left .premium-woo-skin-grid-7 li.product .premium-woo-product-info .star-rating {
9002
- margin: 0;
9003
- }
9004
-
9005
- .premium-woo-skin-grid-6 li.product .premium-woo-product-info {
9006
- -js-display: flex;
9007
- display: -webkit-box;
9008
- display: -webkit-flex;
9009
- display: -moz-box;
9010
- display: -ms-flexbox;
9011
- display: flex;
9012
- -webkit-box-pack: justify;
9013
- -webkit-justify-content: space-between;
9014
- -moz-box-pack: justify;
9015
- -ms-flex-pack: justify;
9016
- justify-content: space-between;
9017
- }
9018
-
9019
- .premium-woo-product-align-center .premium-woocommerce li.product .premium-woo-product-info {
9020
- -webkit-box-orient: vertical;
9021
- -webkit-box-direction: normal;
9022
- -webkit-flex-direction: column;
9023
- -moz-box-orient: vertical;
9024
- -moz-box-direction: normal;
9025
- -ms-flex-direction: column;
9026
- flex-direction: column;
9027
- }
9028
-
9029
- .premium-woo-product-align-right .premium-woocommerce li.product .premium-woo-product-info {
9030
- -webkit-box-orient: horizontal;
9031
- -webkit-box-direction: reverse;
9032
- -webkit-flex-direction: row-reverse;
9033
- -moz-box-orient: horizontal;
9034
- -moz-box-direction: reverse;
9035
- -ms-flex-direction: row-reverse;
9036
- flex-direction: row-reverse;
9037
- }
9038
-
9039
- .premium-woo-skin-grid-6 li.product .premium-woo-product-gallery-images {
9040
- -js-display: flex;
9041
- display: -webkit-box;
9042
- display: -webkit-flex;
9043
- display: -moz-box;
9044
- display: -ms-flexbox;
9045
- display: flex;
9046
- position: absolute;
9047
- bottom: 10px;
9048
- width: 100%;
9049
- -webkit-box-pack: center;
9050
- -webkit-justify-content: center;
9051
- -moz-box-pack: center;
9052
- -ms-flex-pack: center;
9053
- justify-content: center;
9054
- }
9055
-
9056
- .premium-woo-product-gallery-images .premium-woo-product__gallery_image {
9057
- width: 20%;
9058
- margin: 0 0.2em;
9059
- border: 2px solid #aaa;
9060
- cursor: pointer;
9061
- }
9062
-
9063
- /**
9064
- * Metro
9065
- */
9066
- /*.premium-woo-grid-style1 ul.products li.product {
9067
- width: 25%;
9068
- }*/
9069
- .premium-woo-products-metro li.product .premium-woo-product-thumbnail img,
9070
- .premium-woo-products-metro li.product .premium-woo-product-wrapper,
9071
- .premium-woo-products-metro li.product .premium-woo-product-thumbnail,
9072
- .premium-woo-products-metro li.product .woocommerce-LoopProduct-link {
9073
- height: 100%;
9074
- }
9075
-
9076
- .premium-woo-products-metro ul.products li.product {
9077
- margin-bottom: 0;
9078
- }
9079
-
9080
- .premium-woo-products-metro li.product .premium-woo-product-thumbnail img {
9081
- -o-object-fit: cover;
9082
- object-fit: cover;
9083
- }
9084
-
9085
- /*
9086
- * Carousel
9087
- */
9088
- .premium-woocommerce:not(.premium-woo-skin-grid-7) .slick-arrow {
9089
- -webkit-border-radius: 50%;
9090
- border-radius: 50%;
9091
- }
9092
-
9093
- .premium-woocommerce ul.slick-dots {
9094
- width: 100%;
9095
- }
9096
-
9097
- /*
9098
- * Quick View Html/body
9099
- */
9100
- html.premium-woo-qv-opened,
9101
- html.premium-woo-qv-opened body {
9102
- overflow: hidden;
9103
- }
9104
-
9105
- /**
9106
- * Quick View Modal
9107
- */
9108
- .premium-woo-quick-view-back {
9109
- position: fixed;
9110
- visibility: hidden;
9111
- overflow: hidden;
9112
- background: rgba(2, 2, 2, 0.5);
9113
- opacity: 0;
9114
- -webkit-transition: opacity 0.25s;
9115
- transition: opacity 0.25s;
9116
- z-index: 999;
9117
- }
9118
-
9119
- .premium-woo-quick-view-active {
9120
- top: 0;
9121
- right: 0;
9122
- width: 100%;
9123
- height: 100%;
9124
- opacity: 1;
9125
- visibility: visible;
9126
- }
9127
-
9128
- #premium-woo-quick-view-modal {
9129
- position: fixed;
9130
- visibility: hidden;
9131
- opacity: 0;
9132
- top: 0;
9133
- right: 0;
9134
- width: 100%;
9135
- height: 100%;
9136
- z-index: 1400;
9137
- text-align: center;
9138
- -webkit-transition: all 0.3s;
9139
- transition: all 0.3s;
9140
- overflow-x: hidden;
9141
- overflow-y: auto;
9142
  }
9143
 
9144
- #premium-woo-quick-view-modal.active {
9145
- visibility: visible;
9146
- opacity: 1;
 
 
 
9147
  }
9148
 
9149
- #premium-woo-quick-view-modal.active .premium-woo-content-main {
9150
- -webkit-transform: translateY(0);
9151
- -ms-transform: translateY(0);
9152
- transform: translateY(0);
9153
- opacity: 1;
9154
- width: 100%;
9155
  }
9156
 
9157
- #premium-woo-quick-view-modal .premium-woo-content-main-wrapper {
9158
- position: absolute;
9159
- width: 100%;
9160
- height: 100%;
9161
- top: 0;
9162
- right: 0;
9163
- text-align: center;
9164
- padding: 30px;
9165
- }
9166
 
9167
- #premium-woo-quick-view-modal .premium-woo-content-main-wrapper::before {
9168
- content: "";
9169
- display: inline-block;
9170
- vertical-align: middle;
9171
- height: 100%;
9172
  }
9173
 
9174
- #premium-woo-quick-view-modal .premium-woo-content-main {
9175
- position: relative;
9176
- pointer-events: none;
9177
- max-width: 100%;
9178
- text-align: right;
9179
- z-index: 1045;
9180
- -webkit-transform: translateY(-30px);
9181
- -ms-transform: translateY(-30px);
9182
- transform: translateY(-30px);
9183
- opacity: 0;
9184
- -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
9185
- transition: opacity 0.3s, -webkit-transform 0.5s;
9186
- transition: transform 0.5s, opacity 0.3s;
9187
- transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
9188
- margin: 0 auto;
9189
- display: inline-block;
9190
- vertical-align: middle;
9191
- }
9192
 
9193
- #premium-woo-quick-view-modal .premium-woo-lightbox-content {
9194
- position: relative;
9195
- display: table;
9196
- pointer-events: auto;
9197
- background-color: #fff;
9198
- max-width: 975px;
9199
- margin: 20px auto;
9200
- -webkit-transform: translateZ(0);
9201
- transform: translateZ(0);
9202
- -webkit-box-shadow: -3px 3px 20px 0 rgba(0, 0, 0, 0.15);
9203
- box-shadow: -3px 3px 20px 0 rgba(0, 0, 0, 0.15);
9204
- overflow: hidden;
9205
  }
9206
 
9207
- #premium-woo-quick-view-modal .summary {
9208
- width: 50%;
9209
- margin: 0;
9210
- padding: 30px;
9211
- float: right;
9212
- -webkit-box-sizing: border-box;
9213
- -moz-box-sizing: border-box;
9214
- box-sizing: border-box;
9215
- }
9216
 
9217
- #premium-woo-quick-view-modal .summary .quantity {
9218
- min-width: auto;
 
 
9219
  }
9220
 
9221
- #premium-woo-quick-view-modal .summary .quantity input.qty {
9222
- width: 54px;
9223
- -webkit-appearance: button;
9224
- -moz-appearance: button;
9225
- appearance: button;
9226
- }
9227
 
9228
- #premium-woo-quick-view-modal .woocommerce-product-details__short-description p {
9229
- margin: 0;
 
 
9230
  }
9231
 
9232
- #premium-woo-quick-view-close {
9233
- position: absolute;
9234
- font-size: 22px;
9235
- top: 10px;
9236
- left: 10px;
9237
- width: 22px;
9238
- height: 22px;
9239
- line-height: 22px;
9240
- opacity: 0.7;
9241
- text-align: center;
9242
- z-index: 2;
9243
- color: #000;
9244
- }
9245
 
9246
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider {
9247
- position: relative;
 
 
9248
  }
9249
 
9250
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider li {
9251
- list-style: none;
9252
- }
 
 
9253
 
9254
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav {
9255
- margin: 0;
9256
- padding: 0;
9257
- width: 100%;
9258
- position: absolute;
9259
- bottom: 10px;
9260
- text-align: center;
9261
- direction: ltr;
9262
  }
9263
 
9264
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li {
9265
- margin: 0 6px;
9266
- display: inline-block;
9267
- vertical-align: middle;
9268
- }
9269
 
9270
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a {
9271
- width: 11px;
9272
- height: 11px;
9273
- display: block;
9274
- background: #666;
9275
- background: rgba(0, 0, 0, 0.5);
9276
- cursor: pointer;
9277
- text-indent: -9999px;
9278
- -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
9279
- box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
9280
- -webkit-border-radius: 20px;
9281
- border-radius: 20px;
9282
  }
9283
 
9284
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a.flex-active {
9285
- background: rgba(0, 0, 0, 0.9);
9286
- cursor: default;
 
 
 
 
 
 
 
9287
  }
9288
 
9289
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a:focus {
9290
- outline: none;
 
 
 
 
 
 
 
 
 
9291
  }
9292
 
9293
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider img {
9294
- -o-object-fit: cover;
9295
- object-fit: cover;
 
9296
  }
9297
 
9298
- #premium-woo-quick-view-content div.images {
9299
- width: 50%;
9300
- float: right;
9301
- opacity: 1 !important;
9302
- margin: 0;
 
 
 
9303
  }
9304
 
9305
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav {
9306
- margin: 0;
9307
- padding: 0;
9308
- list-style: none;
9309
- direction: ltr;
 
9310
  }
9311
 
9312
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav a {
9313
- text-decoration: none;
9314
- display: block;
9315
- width: 14px;
9316
- height: 32px;
9317
- font-size: 32px;
9318
- line-height: 32px;
9319
- margin: -20px 0 0;
9320
- position: absolute;
9321
- top: 50%;
9322
- z-index: 10;
9323
- overflow: hidden;
9324
- cursor: pointer;
9325
- color: rgba(0, 0, 0, 0.8);
9326
- text-shadow: -1px 1px 0 rgba(255, 255, 255, 0.3);
9327
- -webkit-transition: all 0.3s ease-in-out;
9328
- transition: all 0.3s ease-in-out;
9329
  }
9330
 
9331
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next,
9332
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev {
9333
- display: inline-block;
9334
- font-family: "Font Awesome 5 Free";
9335
- font-weight: 900;
9336
- text-rendering: auto;
9337
- -webkit-font-smoothing: antialiased;
9338
- -moz-osx-font-smoothing: grayscale;
9339
  }
9340
 
9341
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev {
9342
- left: 10px;
 
 
9343
  }
9344
 
9345
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next {
9346
- right: 10px;
 
 
 
 
9347
  }
9348
 
9349
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev::before {
9350
- content: "\f104";
 
9351
  }
9352
 
9353
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next::before {
9354
- content: "\f105";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9355
  }
9356
 
9357
- .premium-woocommerce li.product .added_to_cart.wc-forward {
9358
- display: none;
 
9359
  }
9360
 
9361
- .premium-woo-atc-button .add_to_cart_button span {
9362
- -webkit-animation: spin 2s linear infinite;
9363
- animation: spin 2s linear infinite;
9364
- margin-right: 5px;
9365
- vertical-align: baseline;
9366
  }
9367
 
9368
- @media (min-width: 545px) {
9369
- #premium-woo-quick-view-content div.summary {
9370
- content: "544";
9371
- overflow-y: auto;
 
 
 
 
9372
  }
9373
  }
9374
 
9375
- @media (max-width: 544px) {
9376
- #premium-woo-quick-view-content .premium-woo-lightbox-content {
9377
- display: block;
 
9378
  }
9379
 
9380
- #premium-woo-quick-view-content div.images,
9381
- #premium-woo-quick-view-content div.summary {
9382
- width: 100%;
9383
- float: none;
9384
  }
9385
  }
9386
 
 
9387
  .premium-error-notice {
9388
  width: 100%;
9389
  padding: 10px;
@@ -9391,4 +9231,21 @@ html.premium-woo-qv-opened body {
9391
  background-color: #f2dede;
9392
  border-color: #eed3d7;
9393
  text-align: center;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9394
  }
1
+ @charset "UTF-8";
2
+ @font-face {
3
+ font-family: "pa-elements";
4
+ src: url("../../editor/fonts/pa-elements.eot?9e1efm");
5
+ src: url("../../editor/fonts/pa-elements.eot?9e1efm#iefix") format("embedded-opentype"), url("../../editor/fonts/pa-elements.ttf?9e1efm") format("truetype"), url("../../editor/fonts/pa-elements.woff?9e1efm") format("woff"), url("../../editor/fonts/pa-elements.svg?9e1efm#pa-elements") format("svg");
6
+ font-weight: normal;
7
+ font-style: normal;
 
 
8
  }
 
9
  /**************** Premium Banner ****************/
10
  /************************************************/
11
  .elementor-widget-premium-addon-banner {
1485
  -webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
1486
  transform: translate3d(-10px, 0, 0) scale(1.1);
1487
  }
1488
+ /**************** Premium Blog *****************/
1489
+ /***********************************************/
1490
+ .premium-blog-thumb-effect-wrapper {
1491
+ position: relative;
1492
+ overflow: hidden;
1493
+ }
1494
 
1495
+ .premium-blog-effect-container:not(.premium-blog-bordered-effect) .premium-blog-post-link {
1496
+ position: absolute;
1497
+ top: 0;
1498
+ right: 0;
1499
+ width: 100%;
1500
+ height: 100%;
1501
+ z-index: 2;
1502
+ padding: 20px;
 
 
1503
  }
1504
 
1505
+ .premium-blog-bordered-effect .premium-blog-post-link {
1506
+ display: block;
1507
+ height: 100%;
1508
+ position: relative;
1509
  }
1510
 
1511
+ /*Thumbnail Img*/
1512
+ .premium-blog-thumbnail-container {
1513
+ overflow: hidden;
 
 
 
 
 
 
 
 
 
 
 
 
1514
  }
1515
 
1516
+ .premium-blog-thumbnail-container img,
1517
+ .premium-blog-thumbnail-container .below-entry-meta {
1518
+ width: 100%;
1519
+ height: 100%;
1520
+ margin: 0 !important;
1521
+ -webkit-transition: all 0.4s ease-in-out;
1522
+ transition: all 0.4s ease-in-out;
1523
  }
1524
 
1525
+ .premium-blog-thumb-effect-wrapper .premium-blog-zoomout-effect img,
1526
+ .premium-blog-thumb-effect-wrapper .premium-blog-scale-effect img {
1527
+ -webkit-transform: scale(1.2);
1528
+ -ms-transform: scale(1.2);
1529
+ transform: scale(1.2);
1530
  }
1531
 
1532
+ .premium-blog-thumb-effect-wrapper .premium-blog-sepia-effect img {
1533
+ -webkit-filter: sepia(30%);
1534
+ filter: sepia(30%);
1535
  }
1536
 
1537
+ .premium-blog-thumb-effect-wrapper .premium-blog-bright-effect img {
1538
+ -webkit-filter: brightness(1);
1539
+ filter: brightness(1);
 
1540
  }
1541
 
1542
+ .premium-blog-thumb-effect-wrapper .premium-blog-trans-effect img {
1543
+ -webkit-transform: translateX(15px) scale(1.1);
1544
+ -ms-transform: translateX(15px) scale(1.1);
1545
+ transform: translateX(15px) scale(1.1);
1546
  }
1547
 
1548
+ .premium-blog-post-outer-container:hover .premium-blog-zoomin-effect img {
1549
+ -webkit-transform: scale(1.2);
1550
+ -ms-transform: scale(1.2);
1551
+ transform: scale(1.2);
 
1552
  }
1553
 
1554
+ .premium-blog-post-outer-container:hover .premium-blog-zoomout-effect img {
1555
+ -webkit-transform: scale(1.1);
1556
+ -ms-transform: scale(1.1);
1557
+ transform: scale(1.1);
1558
  }
1559
 
1560
+ .premium-blog-post-outer-container:hover .premium-blog-scale-effect img {
1561
+ -webkit-transform: scale(1.3) rotate(-5deg);
1562
+ -ms-transform: scale(1.3) rotate(-5deg);
1563
+ transform: scale(1.3) rotate(-5deg);
1564
  }
1565
 
1566
+ .premium-blog-post-outer-container:hover .premium-blog-gray-effect img {
1567
+ -webkit-filter: grayscale(100%);
1568
+ filter: grayscale(100%);
1569
  }
1570
 
1571
+ .premium-blog-post-outer-container:hover .premium-blog-blur-effect img {
1572
+ -webkit-filter: blur(3px);
1573
+ filter: blur(3px);
1574
  }
1575
 
1576
+ .premium-blog-post-outer-container:hover .premium-blog-sepia-effect img {
1577
+ -webkit-filter: sepia(0%);
1578
+ filter: sepia(0%);
 
 
 
 
 
 
 
 
 
 
 
 
 
1579
  }
1580
 
1581
+ .premium-blog-post-outer-container:hover .premium-blog-bright-effect img {
1582
+ -webkit-filter: brightness(1.2);
1583
+ filter: brightness(1.2);
1584
  }
1585
 
1586
+ .premium-blog-post-outer-container:hover .premium-blog-trans-effect img {
1587
+ -webkit-transform: translateX(0px) scale(1.1);
1588
+ -ms-transform: translateX(0px) scale(1.1);
1589
+ transform: translateX(0px) scale(1.1);
1590
  }
1591
 
1592
+ .premium-blog-post-container {
1593
+ overflow: hidden;
 
 
 
 
 
 
 
 
1594
  }
1595
 
1596
+ .premium-blog-post-container .premium-blog-inner-container {
1597
+ -js-display: flex;
1598
+ display: -webkit-box;
1599
+ display: -webkit-flex;
1600
+ display: -moz-box;
1601
+ display: -ms-flexbox;
1602
+ display: flex;
1603
+ direction: rtl;
1604
  }
1605
 
1606
+ .premium-blog-post-container .premium-blog-post-content {
1607
+ line-height: 1.5em;
1608
+ color: #777;
1609
+ font-size: 14px;
1610
+ margin-bottom: 10px;
 
1611
  }
1612
 
1613
+ .premium-blog-post-container ul.post-categories a:hover,
1614
+ .premium-blog-post-container ul.post-categories a:focus,
1615
+ .premium-blog-post-container .premium-blog-post-link:hover,
1616
+ .premium-blog-post-container .premium-blog-post-link:focus {
1617
+ -webkit-box-shadow: none !important;
1618
+ box-shadow: none !important;
1619
+ outline: none !important;
 
 
1620
  }
1621
 
1622
+ .premium-blog-post-container .premium-blog-entry-title {
1623
+ font-size: 18px;
1624
+ margin-bottom: 5px;
1625
  }
1626
 
1627
+ .premium-blog-post-container.premium-blog-skin-modern .premium-blog-content-wrapper {
1628
+ position: relative;
1629
+ z-index: 3;
1630
+ top: -50px;
 
 
 
 
 
1631
  }
1632
 
1633
+ .premium-blog-post-container .premium-blog-content-wrapper {
1634
+ background-color: #f5f5f5;
1635
+ padding: 30px;
 
 
 
 
 
 
 
1636
  }
1637
 
1638
+ .premium-blog-post-container .premium-blog-content-wrapper.empty-thumb {
1639
+ top: 0;
 
 
 
 
1640
  }
1641
 
1642
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before,
1643
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:after {
1644
+ position: absolute;
1645
+ content: "";
1646
+ z-index: 1;
1647
+ top: 50%;
1648
+ right: 50%;
1649
+ opacity: 0;
1650
+ -webkit-transform: translate(50%, -50%);
1651
+ -ms-transform: translate(50%, -50%);
1652
+ transform: translate(50%, -50%);
1653
+ -webkit-transition: all 0.4s linear 0s;
1654
+ transition: all 0.4s linear 0s;
1655
+ height: 1px;
1656
+ width: 100%;
1657
+ background-color: #fff;
1658
  }
1659
 
1660
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before {
1661
+ width: 1px;
1662
+ height: 100%;
 
 
 
1663
  }
1664
 
1665
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-container:after {
1666
+ width: 20px;
1667
+ opacity: 1;
 
 
 
 
 
 
 
1668
  }
1669
 
1670
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-container:before {
1671
+ height: 20px;
1672
+ opacity: 1;
 
 
1673
  }
1674
 
1675
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-content-wrapper {
1676
+ margin: 0px 10px 20px;
1677
+ clear: both;
 
 
 
 
 
 
 
1678
  }
1679
 
1680
+ .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay,
1681
+ .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay,
1682
+ .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay {
1683
+ position: absolute;
1684
+ top: 0;
1685
+ right: 0;
1686
+ width: 100%;
1687
+ height: 100%;
1688
+ -webkit-transition: all 0.3s ease-in-out;
1689
+ transition: all 0.3s ease-in-out;
1690
+ opacity: 0;
1691
  }
1692
 
1693
+ .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay a,
1694
+ .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay a,
1695
+ .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay a {
1696
+ -js-display: flex;
1697
+ display: -webkit-box;
1698
+ display: -webkit-flex;
1699
+ display: -moz-box;
1700
+ display: -ms-flexbox;
1701
+ display: flex;
1702
+ -webkit-box-pack: center;
1703
+ -webkit-justify-content: center;
1704
+ -moz-box-pack: center;
1705
+ -ms-flex-pack: center;
1706
+ justify-content: center;
1707
+ -webkit-box-align: center;
1708
+ -webkit-align-items: center;
1709
+ -moz-box-align: center;
1710
+ -ms-flex-align: center;
1711
+ align-items: center;
1712
+ width: 100%;
1713
+ height: 100%;
1714
  }
1715
 
1716
+ .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay span,
1717
+ .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay i,
1718
+ .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay span,
1719
+ .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay i,
1720
+ .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay span,
1721
+ .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay i {
1722
+ -webkit-transition: all 0.3s ease-in-out;
1723
+ transition: all 0.3s ease-in-out;
1724
  }
1725
 
1726
+ .premium-blog-post-container.premium-blog-skin-side {
1727
+ -js-display: flex;
1728
+ display: -webkit-box;
1729
+ display: -webkit-flex;
1730
+ display: -moz-box;
1731
+ display: -ms-flexbox;
1732
+ display: flex;
1733
  }
1734
 
1735
+ .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-container {
1736
+ height: 100%;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1737
  }
1738
 
1739
+ .premium-blog-post-container.premium-blog-skin-side .premium-blog-content-wrapper {
1740
+ -webkit-box-flex: 1;
1741
+ -webkit-flex: 1;
1742
+ -moz-box-flex: 1;
1743
+ -ms-flex: 1;
1744
+ flex: 1;
1745
  }
1746
 
1747
+ .premium-blog-post-container.premium-blog-skin-banner {
1748
+ position: relative;
1749
  }
1750
 
1751
+ .premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper {
1752
+ position: absolute;
1753
+ width: 100%;
1754
+ bottom: 0;
1755
+ -js-display: flex;
1756
+ display: -webkit-box;
1757
+ display: -webkit-flex;
1758
+ display: -moz-box;
1759
+ display: -ms-flexbox;
1760
+ display: flex;
1761
+ -webkit-box-orient: vertical;
1762
+ -webkit-box-direction: normal;
1763
+ -webkit-flex-direction: column;
1764
+ -moz-box-orient: vertical;
1765
+ -moz-box-direction: normal;
1766
+ -ms-flex-direction: column;
1767
+ flex-direction: column;
1768
+ background-color: transparent;
1769
+ z-index: 3;
1770
  }
1771
 
1772
+ .premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper-inner {
1773
+ -webkit-transition: -webkit-transform 0.3s ease-in-out;
1774
+ transition: -webkit-transform 0.3s ease-in-out;
1775
+ transition: transform 0.3s ease-in-out;
1776
+ transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
1777
  }
1778
 
1779
+ .premium-blog-post-container.premium-blog-skin-banner:hover .premium-blog-content-wrapper-inner {
1780
+ -webkit-transform: translateY(-5px);
1781
+ -ms-transform: translateY(-5px);
1782
+ transform: translateY(-5px);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1783
  }
1784
 
1785
+ .premium-blog-post-container .premium-blog-cats-container ul.post-categories {
1786
+ margin: 0;
1787
+ padding: 0;
1788
+ list-style: none;
1789
+ -js-display: flex;
1790
+ display: -webkit-box;
1791
+ display: -webkit-flex;
1792
+ display: -moz-box;
1793
+ display: -ms-flexbox;
1794
+ display: flex;
1795
  }
1796
 
1797
+ .premium-blog-post-container .premium-blog-cats-container a {
1798
+ display: block;
1799
+ font-size: 12px;
1800
+ color: #fff;
1801
+ background-color: #777;
1802
+ margin: 0 0 10px 3px;
1803
+ padding: 5px;
1804
+ -webkit-transition: all 0.3s ease-in-out;
1805
+ transition: all 0.3s ease-in-out;
1806
  }
1807
 
1808
+ /*
1809
+ * Diagonal Effect
1810
+ */
1811
+ .premium-blog-diagonal-container {
1812
+ position: absolute;
1813
+ top: 0;
1814
+ right: 0;
1815
+ width: 100%;
1816
+ height: 100%;
1817
  }
1818
 
1819
+ .premium-blog-diagonal-effect:before {
1820
+ position: absolute;
1821
+ top: 0px;
1822
+ right: 0px;
1823
+ width: 100%;
1824
+ height: 100%;
1825
+ content: " ";
1826
+ z-index: 1;
1827
+ background: rgba(255, 255, 255, 0.2);
1828
+ -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
1829
+ transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
1830
+ -webkit-transition: all 0.3s linear 0s;
1831
+ transition: all 0.3s linear 0s;
1832
  }
1833
 
1834
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-diagonal-effect:before {
1835
+ -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
1836
+ transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
1837
  }
1838
 
1839
+ /*
1840
+ * Framed Effect
1841
+ */
1842
+ .premium-blog-framed-effect {
1843
+ position: absolute;
1844
+ width: -webkit-calc(100% - 30px);
1845
+ width: calc(100% - 30px);
1846
+ height: -webkit-calc(100% - 30px);
1847
+ height: calc(100% - 30px);
1848
+ top: 15px;
1849
+ right: 15px;
1850
+ opacity: 0;
1851
+ -webkit-transform: scale(0.3);
1852
+ -ms-transform: scale(0.3);
1853
+ transform: scale(0.3);
1854
+ -webkit-transition: all 0.3s linear 0s;
1855
+ transition: all 0.3s linear 0s;
1856
  }
1857
 
1858
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-framed-effect {
1859
+ opacity: 0.99;
1860
+ -webkit-transform: scale(1);
1861
+ -ms-transform: scale(1);
1862
+ transform: scale(1);
1863
  }
1864
 
1865
+ /*
1866
+ * Bordered Effect
1867
+ */
1868
+ .premium-blog-bordered-effect {
1869
+ position: absolute;
1870
+ top: 0;
1871
+ right: 0;
1872
+ width: 100%;
1873
+ height: 100%;
1874
+ opacity: 0;
1875
+ padding: 15px;
1876
+ -webkit-transition: all 0.3s linear 0s;
1877
+ transition: all 0.3s linear 0s;
1878
  }
1879
 
1880
+ .premium-blog-bordered-effect .premium-blog-post-link:before,
1881
+ .premium-blog-bordered-effect .premium-blog-post-link:after {
1882
+ content: "";
1883
+ display: block;
1884
+ position: absolute;
1885
+ top: 0;
1886
+ right: 0;
1887
+ width: 100%;
1888
+ height: 100%;
1889
+ -webkit-transition: all 0.5s linear 0s;
1890
+ transition: all 0.5s linear 0s;
1891
+ -webkit-transition-delay: 0s;
1892
+ transition-delay: 0s;
1893
+ border-color: rgba(255, 255, 255, 0.45);
1894
  }
1895
 
1896
+ .premium-blog-bordered-effect .premium-blog-post-link:before {
1897
+ border-left: 2px solid;
1898
+ border-right: 2px solid;
1899
+ -webkit-transform: scale(1, 0);
1900
+ -ms-transform: scale(1, 0);
1901
+ transform: scale(1, 0);
1902
+ -webkit-transform-origin: 0% 0;
1903
+ -ms-transform-origin: 0% 0;
1904
+ transform-origin: 0% 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1905
  }
1906
 
1907
+ .premium-blog-bordered-effect .premium-blog-post-link:after {
1908
+ border-top: 2px solid;
1909
+ border-bottom: 2px solid;
1910
+ -webkit-transform: scale(0, 1);
1911
+ -ms-transform: scale(0, 1);
1912
+ transform: scale(0, 1);
1913
+ -webkit-transform-origin: 100% 0;
1914
+ -ms-transform-origin: 100% 0;
1915
+ transform-origin: 100% 0;
1916
  }
1917
 
1918
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect {
1919
+ opacity: 0.99;
 
 
1920
  }
1921
 
1922
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect .premium-blog-post-link:before,
1923
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect .premium-blog-post-link:after {
1924
+ -webkit-transition-delay: 0.15s;
1925
+ transition-delay: 0.15s;
1926
+ opacity: 1;
1927
+ -webkit-transform: scale(1);
1928
+ -ms-transform: scale(1);
1929
+ transform: scale(1);
1930
+ }
1931
 
1932
+ /*
1933
+ * Squares Effect
1934
+ */
1935
+ .premium-blog-squares-effect,
1936
+ .premium-blog-squares-square-container {
1937
+ position: absolute;
1938
+ top: 0;
1939
+ right: 0;
1940
+ width: 100%;
1941
+ height: 100%;
1942
  }
1943
 
1944
+ .premium-blog-squares-effect:before,
1945
+ .premium-blog-squares-effect:after {
1946
+ position: absolute;
1947
+ content: "";
1948
+ top: 0;
1949
+ right: 0;
1950
+ width: 50%;
1951
+ height: 50%;
1952
+ -webkit-transform: translate(100%, -100%);
1953
+ -ms-transform: translate(100%, -100%);
1954
+ transform: translate(100%, -100%);
1955
+ opacity: 0.7;
1956
+ -webkit-transition: all 0.3s linear 0s;
1957
+ transition: all 0.3s linear 0s;
1958
+ }
1959
 
1960
+ .premium-blog-squares-square-container:before,
1961
+ .premium-blog-squares-square-container:after {
1962
+ position: absolute;
1963
+ content: "";
1964
+ top: 0;
1965
+ right: 0;
1966
+ width: 50%;
1967
+ height: 50%;
1968
+ -webkit-transform: translate(100%, -100%);
1969
+ -ms-transform: translate(100%, -100%);
1970
+ transform: translate(100%, -100%);
1971
+ opacity: 0.7;
1972
+ -webkit-transition: all 0.3s linear 0s;
1973
+ transition: all 0.3s linear 0s;
1974
  }
1975
 
1976
+ .premium-blog-squares-square-container:before,
1977
+ .premium-blog-squares-square-container:after {
1978
+ opacity: 0.8;
1979
  }
1980
 
1981
+ .premium-blog-squares-effect:after {
1982
+ -webkit-transform: translate(-200%, 200%);
1983
+ -ms-transform: translate(-200%, 200%);
1984
+ transform: translate(-200%, 200%);
1985
  }
1986
 
1987
+ .premium-blog-squares-square-container:before {
1988
+ -webkit-transform: translate(100%, 200%);
1989
+ -ms-transform: translate(100%, 200%);
1990
+ transform: translate(100%, 200%);
1991
  }
1992
 
1993
+ .premium-blog-squares-square-container:after {
1994
+ -webkit-transform: translate(-200%, -100%);
1995
+ -ms-transform: translate(-200%, -100%);
1996
+ transform: translate(-200%, -100%);
 
 
 
 
 
 
 
 
 
 
1997
  }
1998
 
1999
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:before {
2000
+ -webkit-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
2001
+ -ms-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
2002
+ transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
2003
  }
2004
 
2005
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:after {
2006
+ -webkit-transform: translate(-100%, 100%) scaleY(1.003) scaleX(1.003);
2007
+ -ms-transform: translate(-100%, 100%) scaleY(1.003) scaleX(1.003);
2008
+ transform: translate(-100%, 100%) scaleY(1.003) scaleX(1.003);
2009
  }
2010
 
2011
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:before {
2012
+ -webkit-transform: translate(0, 100%);
2013
+ -ms-transform: translate(0, 100%);
2014
+ transform: translate(0, 100%);
 
 
2015
  }
2016
 
2017
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:after {
2018
+ -webkit-transform: translate(-100%, 0%);
2019
+ -ms-transform: translate(-100%, 0%);
2020
+ transform: translate(-100%, 0%);
2021
  }
2022
 
2023
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay {
2024
+ opacity: 1;
2025
  }
2026
 
2027
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay a {
2028
+ opacity: 1;
2029
+ -webkit-transform: scale(1);
2030
+ -ms-transform: scale(1);
2031
+ transform: scale(1);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2032
  }
2033
 
2034
+ .premium-blog-clear-fix {
2035
+ clear: both;
 
 
 
 
 
 
2036
  }
2037
 
2038
+ .premium-blog-masked .premium-blog-thumbnail-container {
2039
+ position: relative;
2040
+ overflow: visible;
 
 
 
 
 
2041
  }
2042
 
2043
+ .premium-blog-masked .premium-blog-thumbnail-container svg {
2044
+ position: absolute;
2045
+ height: 100px;
2046
+ width: 100%;
2047
+ bottom: -5px;
2048
+ right: 0;
2049
+ fill: #f5f5f5;
2050
+ z-index: 99;
2051
  }
2052
 
2053
+ .premium-blog-masked .premium-blog-thumbnail-container svg.premium-blog-shape-divider-svg {
2054
+ -webkit-transform: rotate(180deg);
2055
+ -ms-transform: rotate(180deg);
2056
+ transform: rotate(180deg);
2057
  }
2058
 
2059
+ .premium-blog-masked .premium-blog-author-thumbnail,
2060
+ .premium-blog-masked .premium-blog-skin-banner .premium-blog-content-wrapper {
2061
+ z-index: 999 !important;
2062
  }
2063
 
2064
+ /*Post Format Container*/
2065
+ .premium-blog-format-link {
2066
+ padding: 5px;
2067
+ line-height: 0;
2068
  }
2069
 
2070
+ /*Post Format Icon*/
2071
+ /*Post Format Content Margin */
2072
+ .premium-blog-entry-meta {
2073
+ line-height: 1.3em;
2074
+ font-size: 12px;
2075
+ margin-bottom: 13px;
2076
+ color: #adadad;
2077
  }
2078
 
2079
+ .premium-blog-entry-meta i {
2080
+ margin-left: 3px;
2081
+ -webkit-transition: all 0.3s ease-in-out;
2082
+ transition: all 0.3s ease-in-out;
2083
  }
2084
 
2085
+ .premium-blog-meta-data {
2086
+ display: inline-block;
2087
  }
2088
 
2089
+ .premium-blog-meta-data .premium-blog-meta-separator {
2090
+ margin: 0 5px;
 
2091
  }
2092
 
2093
+ .premium-blog-meta-data a,
2094
+ .premium-blog-meta-data span {
2095
+ color: inherit;
2096
+ -webkit-transition: all 0.3s ease-in-out;
2097
+ transition: all 0.3s ease-in-out;
 
 
 
 
 
 
 
2098
  }
2099
 
2100
+ .premium-blog-author-thumbnail {
2101
+ position: relative;
2102
+ padding: 0 30px;
2103
+ width: 100%;
2104
+ top: -10px;
2105
+ height: 0;
2106
+ pointer-events: none;
2107
  }
2108
 
2109
+ .premium-blog-author-thumbnail img {
2110
+ -webkit-border-radius: 50%;
2111
+ border-radius: 50%;
2112
+ width: 60px;
2113
+ pointer-events: all;
2114
+ -webkit-transform: translateY(-50%);
2115
+ -ms-transform: translateY(-50%);
2116
+ transform: translateY(-50%);
2117
  }
2118
 
2119
+ .premium-blog-entry-title a,
2120
+ .premium-blog-post-tags-container a,
2121
+ .premium-blog-post-content .premium-blog-excerpt-link {
2122
+ -webkit-transition: all 0.3s ease-in-out;
2123
+ transition: all 0.3s ease-in-out;
2124
  }
2125
 
2126
+ .premium-blog-excerpt-link-wrap a.premium-blog-excerpt-link {
2127
+ background-color: transparent;
2128
+ color: #54595f;
2129
+ padding: 0;
2130
  }
2131
 
2132
+ .premium-blog-cta-full-yes .premium-blog-excerpt-link {
2133
+ width: 100%;
2134
  }
2135
 
2136
+ .premium-blog-post-tags-container {
2137
+ margin-top: 8px;
2138
+ -js-display: flex;
2139
+ display: -webkit-box;
2140
+ display: -webkit-flex;
2141
+ display: -moz-box;
2142
+ display: -ms-flexbox;
2143
+ display: flex;
2144
+ -webkit-box-align: center;
2145
+ -webkit-align-items: center;
2146
+ -moz-box-align: center;
2147
+ -ms-flex-align: center;
2148
+ align-items: center;
2149
+ -webkit-flex-wrap: wrap;
2150
+ -ms-flex-wrap: wrap;
2151
+ flex-wrap: wrap;
2152
  }
2153
 
2154
+ .premium-blog-post-tags-container a {
2155
+ color: inherit;
2156
+ margin-right: 5px;
 
 
 
2157
  }
2158
 
2159
+ .premium-blog-align-center .post-categories,
2160
+ .premium-blog-align-center .premium-blog-inner-container,
2161
+ .premium-blog-align-center .premium-blog-post-tags-container {
2162
+ -webkit-box-pack: center;
2163
+ -webkit-justify-content: center;
2164
+ -moz-box-pack: center;
2165
+ -ms-flex-pack: center;
2166
+ justify-content: center;
 
2167
  }
2168
 
2169
+ .premium-blog-align-left .premium-blog-post-container .post-categories,
2170
+ .premium-blog-align-left .premium-blog-post-container .premium-blog-inner-container,
2171
+ .premium-blog-align-left .premium-blog-post-container .premium-blog-post-tags-container {
2172
+ -webkit-box-pack: end;
2173
+ -webkit-justify-content: flex-end;
2174
+ -moz-box-pack: end;
2175
+ -ms-flex-pack: end;
2176
+ justify-content: flex-end;
 
 
2177
  }
2178
 
2179
+ /* .premium-blog-align-left .premium-blog-post-container.premium-blog-skin-cards .post-categories,
2180
+ .premium-blog-align-left .premium-blog-post-container.premium-blog-skin-cards .premium-blog-inner-container,
2181
+ .premium-blog-align-left .premium-blog-post-container.premium-blog-skin-cards .premium-blog-post-tags-container {
2182
+ -webkit-box-pack: start;
2183
+ -webkit-justify-content: flex-start;
2184
+ -moz-box-pack: start;
2185
+ -ms-flex-pack: start;
2186
+ justify-content: flex-start;
2187
+ } */
2188
+
2189
+ .premium-blog-align-right .premium-blog-post-container .post-categories,
2190
+ .premium-blog-align-right .premium-blog-post-container .premium-blog-inner-container,
2191
+ .premium-blog-align-right .premium-blog-post-container .premium-blog-post-tags-container {
2192
+ -webkit-box-pack: start;
2193
+ -webkit-justify-content: flex-start;
2194
+ -moz-box-pack: start;
2195
+ -ms-flex-pack: start;
2196
+ justify-content: flex-start;
2197
  }
2198
 
2199
+ /* .premium-blog-align-right .premium-blog-post-container.premium-blog-skin-cards .post-categories,
2200
+ .premium-blog-align-right .premium-blog-post-container.premium-blog-skin-cards .premium-blog-inner-container,
2201
+ .premium-blog-align-right .premium-blog-post-container.premium-blog-skin-cards .premium-blog-post-tags-container {
2202
+ -webkit-box-pack: end;
2203
+ -webkit-justify-content: flex-end;
2204
+ -moz-box-pack: end;
2205
+ -ms-flex-pack: end;
2206
+ justify-content: flex-end;
2207
+ } */
2208
+
2209
+ /* Pagination */
2210
+ .premium-blog-pagination-container {
2211
+ text-align: left;
2212
  }
2213
 
2214
+ .premium-blog-pagination-container span {
2215
+ cursor: default;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2216
  }
2217
 
2218
+ .premium-blog-pagination-container .page-numbers {
2219
+ display: inline-block;
2220
+ color: #000;
2221
+ line-height: 1;
2222
+ font-size: 1em;
2223
+ font-weight: 400;
2224
+ text-decoration: none;
2225
+ padding: 0.75em;
2226
+ margin: 0 0 0.4em 0.4em;
2227
+ -webkit-transition: all 0.2s ease-in-out;
2228
+ transition: all 0.2s ease-in-out;
2229
  }
2230
 
2231
+ .premium-blog-wrap .premium-loading-feed {
2232
+ display: block;
2233
+ position: absolute;
2234
+ width: 100%;
2235
+ height: 100%;
2236
+ top: 0px;
2237
+ right: 0px;
2238
+ bottom: 0px;
2239
+ left: 0px;
2240
+ background: rgba(255, 255, 255, 0.2);
2241
+ -js-display: flex;
2242
+ display: -webkit-box;
2243
+ display: -webkit-flex;
2244
+ display: -moz-box;
2245
+ display: -ms-flexbox;
2246
+ display: flex;
2247
+ -webkit-box-align: center;
2248
+ -webkit-align-items: center;
2249
+ -moz-box-align: center;
2250
+ -ms-flex-align: center;
2251
+ align-items: center;
2252
+ z-index: 99;
2253
  }
2254
 
2255
+ .premium-blog-wrap {
2256
+ -js-display: flex;
2257
+ display: -webkit-box;
2258
+ display: -webkit-flex;
2259
+ display: -moz-box;
2260
+ display: -ms-flexbox;
2261
+ display: flex;
2262
+ -webkit-flex-wrap: wrap;
2263
+ -ms-flex-wrap: wrap;
2264
+ flex-wrap: wrap;
2265
  }
2266
 
2267
+ .premium-blog-wrap ul.slick-dots {
2268
+ width: 100%;
 
 
 
2269
  }
2270
 
2271
+ /**
2272
+ * Even Layout
2273
+ */
2274
+ .premium-blog-even .premium-blog-post-container {
2275
+ height: 100%;
 
2276
  }
2277
 
2278
+ .premium-blog-even .slick-track {
2279
+ -js-display: flex;
2280
+ display: -webkit-box;
2281
+ display: -webkit-flex;
2282
+ display: -moz-box;
2283
+ display: -ms-flexbox;
2284
+ display: flex;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2285
  }
2286
 
2287
+ .premium-blog-even .slick-slide {
2288
+ height: inherit !important;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2289
  }
2290
 
2291
+ /**
2292
+ * Responsive Style
2293
+ */
2294
+ @media (max-width: 768px) {
2295
+ .premium-blog-content-wrapper {
2296
+ top: 0;
2297
+ margin: 0;
2298
+ padding: 15px;
2299
+ }
2300
+
2301
+ .premium-blog-thumb-effect-wrapper {
2302
+ margin-bottom: 15px;
2303
+ }
2304
  }
2305
 
2306
+ [dir="rtl"] .premium-blog-wrap.slick-slider .slick-list,
2307
+ [dir="rtl"] .premium-blog-wrap.slick-slider .slick-track {
2308
+ direction: ltr;
2309
+ }
2310
+ /**************** Premium Button ***********************/
2311
+ /*******************************************************/
2312
+ .premium-button {
2313
+ -js-display: inline-flex;
2314
+ display: -webkit-inline-box;
2315
+ display: -webkit-inline-flex;
2316
+ display: -moz-inline-box;
2317
+ display: -ms-inline-flexbox;
2318
+ display: inline-flex;
2319
+ position: relative;
2320
+ overflow: hidden;
2321
+ -webkit-backface-visibility: hidden;
2322
+ backface-visibility: hidden;
2323
+ -webkit-transform: translate3d(0, 0, 0);
2324
+ transform: translate3d(0, 0, 0);
2325
+ cursor: pointer;
2326
+ -webkit-transition: all 0.2s ease-in-out !important;
2327
+ transition: all 0.2s ease-in-out !important;
2328
  }
2329
 
2330
+ .premium-button-style1,
2331
+ .premium-button-style2,
2332
+ .premium-button-style5,
2333
+ .premium-button-style7 {
2334
+ display: inline-block;
2335
+ vertical-align: middle;
2336
+ -webkit-transform: perspective(1px) translateZ(0);
2337
+ transform: perspective(1px) translateZ(0);
2338
+ -webkit-box-shadow: 0 0 1px transparent;
2339
+ box-shadow: 0 0 1px transparent;
2340
+ position: relative;
2341
+ -webkit-transition-property: color;
2342
+ transition-property: color;
2343
+ -webkit-transition-duration: 0.15s;
2344
+ transition-duration: 0.15s;
2345
  }
2346
 
2347
+ .premium-button-style1:before,
2348
+ .premium-button-style2:before,
2349
+ .premium-button-style5:before {
2350
+ content: "";
2351
+ position: absolute;
2352
+ z-index: -1;
2353
+ top: 0;
2354
+ right: 0;
2355
+ left: 0;
2356
+ bottom: 0;
2357
+ -webkit-transform: scaleY(0);
2358
+ -ms-transform: scaleY(0);
2359
+ transform: scaleY(0);
2360
+ -webkit-transform-origin: 50% 0;
2361
+ -ms-transform-origin: 50% 0;
2362
+ transform-origin: 50% 0;
2363
+ -webkit-transition-property: -webkit-transform;
2364
+ transition-property: -webkit-transform;
2365
+ transition-property: transform;
2366
+ transition-property: transform, -webkit-transform;
2367
+ -webkit-transition-duration: 0.15s;
2368
+ transition-duration: 0.15s;
2369
+ -webkit-transition-timing-function: ease-out;
2370
+ transition-timing-function: ease-out;
2371
  }
2372
 
2373
+ .premium-button-style5-radialin:before,
2374
+ .premium-button-style5-radialout:before {
2375
+ -webkit-transform-origin: 50%;
2376
+ -ms-transform-origin: 50%;
2377
+ transform-origin: 50%;
2378
+ -webkit-border-radius: 100%;
2379
+ border-radius: 100%;
2380
+ -webkit-transform: scale(0);
2381
+ -ms-transform: scale(0);
2382
+ transform: scale(0);
2383
  }
2384
 
2385
+ .premium-button-style5-radialin:before {
2386
+ -webkit-transform: scale(2);
2387
+ -ms-transform: scale(2);
2388
+ transform: scale(2);
2389
  }
2390
 
2391
+ .premium-button-style5-rectin:before {
2392
+ -webkit-transform-origin: 50%;
2393
+ -ms-transform-origin: 50%;
2394
+ transform-origin: 50%;
2395
+ -webkit-transform: scale(1);
2396
+ -ms-transform: scale(1);
2397
+ transform: scale(1);
2398
  }
2399
 
2400
+ .premium-button-style5-rectout:before {
2401
+ -webkit-transform-origin: 50%;
2402
+ -ms-transform-origin: 50%;
2403
+ transform-origin: 50%;
2404
+ -webkit-transform: scale(0);
2405
+ -ms-transform: scale(0);
2406
+ transform: scale(0);
 
 
 
 
 
 
 
 
 
 
 
 
2407
  }
2408
 
2409
+ .premium-button-style5-rectout:hover:before {
2410
+ -webkit-transform: scale(1);
2411
+ -ms-transform: scale(1);
2412
+ transform: scale(1);
2413
  }
2414
 
2415
+ .premium-button-style5-rectin:hover:before {
2416
+ -webkit-transform: scale(0);
2417
+ -ms-transform: scale(0);
2418
+ transform: scale(0);
 
 
 
 
 
 
 
 
 
 
2419
  }
2420
 
2421
+ .premium-button-style5-radialout:hover:before {
2422
+ -webkit-transform: scale(2);
2423
+ -ms-transform: scale(2);
2424
+ transform: scale(2);
2425
  }
2426
 
2427
+ .premium-button-style5-radialin:hover:before {
2428
+ -webkit-transform: scale(0);
2429
+ -ms-transform: scale(0);
2430
+ transform: scale(0);
2431
  }
2432
 
2433
+ .premium-button-style1-top:before {
2434
+ -webkit-transform-origin: 50% 100%;
2435
+ -ms-transform-origin: 50% 100%;
2436
+ transform-origin: 50% 100%;
2437
  }
2438
 
2439
+ .premium-button-style1-right:before {
2440
+ -webkit-transform: scaleX(0);
2441
+ -ms-transform: scaleX(0);
2442
+ transform: scaleX(0);
2443
+ -webkit-transform-origin: 100% 50%;
2444
+ -ms-transform-origin: 100% 50%;
2445
+ transform-origin: 100% 50%;
2446
  }
2447
 
2448
+ .premium-button-style1-left:before {
2449
+ -webkit-transform: scaleX(0);
2450
+ -ms-transform: scaleX(0);
2451
+ transform: scaleX(0);
2452
+ -webkit-transform-origin: 0% 50%;
2453
+ -ms-transform-origin: 0% 50%;
2454
+ transform-origin: 0% 50%;
2455
  }
2456
 
2457
+ .premium-button-style2-shutouthor:before,
2458
+ .premium-button-style2-scshutoutver:before {
2459
+ -webkit-transform: scaleY(0);
2460
+ -ms-transform: scaleY(0);
2461
+ transform: scaleY(0);
2462
+ -webkit-transform-origin: 0% 50%;
2463
+ -ms-transform-origin: 0% 50%;
2464
+ transform-origin: 0% 50%;
2465
  }
2466
 
2467
+ .premium-button-style2-shutoutver:before,
2468
+ .premium-button-style2-scshutouthor:before {
2469
+ -webkit-transform: scaleX(0);
2470
+ -ms-transform: scaleX(0);
2471
+ transform: scaleX(0);
2472
+ -webkit-transform-origin: 50% 50%;
2473
+ -ms-transform-origin: 50% 50%;
2474
+ transform-origin: 50% 50%;
 
 
 
 
 
 
 
 
2475
  }
2476
 
2477
+ .premium-button-style2-shutinhor:before {
2478
+ -webkit-transform: scaleX(1);
2479
+ -ms-transform: scaleX(1);
2480
+ transform: scaleX(1);
2481
+ -webkit-transform-origin: 50%;
2482
+ -ms-transform-origin: 50%;
2483
+ transform-origin: 50%;
2484
  }
2485
 
2486
+ .premium-button-style2-shutinver:before {
2487
+ -webkit-transform: scaleY(1);
2488
+ -ms-transform: scaleY(1);
2489
+ transform: scaleY(1);
2490
+ -webkit-transform-origin: 50%;
2491
+ -ms-transform-origin: 50%;
2492
+ transform-origin: 50%;
2493
  }
2494
 
2495
+ .premium-button-style1-bottom:hover:before,
2496
+ .premium-button-style1-top:hover:before {
2497
+ -webkit-transform: scaleY(1);
2498
+ -ms-transform: scaleY(1);
2499
+ transform: scaleY(1);
 
2500
  }
2501
 
2502
+ .premium-button-style1-left:hover:before,
2503
+ .premium-button-style1-right:hover:before,
2504
+ .premium-button-style2-shutouthor:hover:before,
2505
+ .premium-button-style2-shutoutver:hover:before {
2506
+ -webkit-transform: scaleX(1);
2507
+ -ms-transform: scaleX(1);
2508
+ transform: scaleX(1);
2509
  }
2510
 
2511
+ .premium-button-style2-shutinhor:hover:before {
2512
+ -webkit-transform: scaleX(0);
2513
+ -ms-transform: scaleX(0);
2514
+ transform: scaleX(0);
2515
  }
2516
 
2517
+ .premium-button-style2-shutinver:hover:before {
2518
+ -webkit-transform: scaleY(0);
2519
+ -ms-transform: scaleY(0);
2520
+ transform: scaleY(0);
2521
  }
2522
 
2523
+ .premium-button-style2-scshutouthor:hover:before {
2524
+ -webkit-transform: scaleX(0.9);
2525
+ -ms-transform: scaleX(0.9);
2526
+ transform: scaleX(0.9);
 
 
 
2527
  }
2528
 
2529
+ .premium-button-style2-scshutoutver:hover:before {
2530
+ -webkit-transform: scaleY(0.8);
2531
+ -ms-transform: scaleY(0.8);
2532
+ transform: scaleY(0.8);
 
 
2533
  }
2534
 
2535
+ /*Diagonal*/
2536
+ .premium-button-style2-dshutinhor:before {
2537
+ top: 50%;
2538
+ right: 50%;
2539
+ width: 120%;
2540
+ height: 0%;
2541
+ -webkit-transform: translateX(50%) translateY(-50%) rotate(45deg);
2542
+ -ms-transform: translateX(50%) translateY(-50%) rotate(45deg);
2543
+ transform: translateX(50%) translateY(-50%) rotate(45deg);
2544
+ -webkit-transform-origin: 50%;
2545
+ -ms-transform-origin: 50%;
2546
+ transform-origin: 50%;
2547
+ -webkit-transition-property: all;
2548
+ transition-property: all;
2549
  }
2550
 
2551
+ .premium-button-style2-dshutinver:before {
2552
+ top: 50%;
2553
+ right: 50%;
2554
+ width: 120%;
2555
+ height: 0%;
2556
+ -webkit-transform-origin: 50%;
2557
+ -ms-transform-origin: 50%;
2558
+ transform-origin: 50%;
2559
+ -webkit-transition-property: all;
2560
+ transition-property: all;
2561
+ -webkit-transform: translateX(50%) translateY(-50%) rotate(-45deg);
2562
+ -ms-transform: translateX(50%) translateY(-50%) rotate(-45deg);
2563
+ transform: translateX(50%) translateY(-50%) rotate(-45deg);
2564
  }
2565
 
2566
+ .premium-button-style2-dshutinhor:hover:before,
2567
+ .premium-button-style2-dshutinver:hover:before {
2568
+ height: 220%;
 
2569
  }
2570
 
2571
+ .premium-button-style3-before i,
2572
+ .premium-button-style3-before svg {
2573
+ opacity: 0;
2574
+ -webkit-transform: translateX(5px);
2575
+ -ms-transform: translateX(5px);
2576
+ transform: translateX(5px);
2577
+ -webkit-transition: all 0.5s ease-in-out;
2578
+ transition: all 0.5s ease-in-out;
 
 
 
2579
  }
2580
 
2581
+ .premium-button-style3-after i,
2582
+ .premium-button-style3-after svg {
2583
+ opacity: 0;
2584
+ -webkit-transform: translateX(5px);
2585
+ -ms-transform: translateX(5px);
2586
+ transform: translateX(5px);
2587
+ -webkit-transition: all 0.5s ease-in-out;
2588
+ transition: all 0.5s ease-in-out;
2589
+ -webkit-transform: translateX(-5px);
2590
+ -ms-transform: translateX(-5px);
2591
+ transform: translateX(-5px);
 
2592
  }
2593
 
2594
+ .premium-button-style3-after:hover i,
2595
+ .premium-button-style3-after:hover svg {
2596
+ opacity: 1;
 
 
 
 
 
2597
  }
2598
 
2599
+ .premium-button-style3-before:hover i,
2600
+ .premium-button-style3-before:hover svg {
2601
+ opacity: 1;
2602
  }
2603
 
2604
+ .premium-button-text-icon-wrapper {
2605
+ width: 100%;
2606
+ -js-display: flex;
2607
+ display: -webkit-box;
2608
+ display: -webkit-flex;
2609
+ display: -moz-box;
2610
+ display: -ms-flexbox;
2611
+ display: flex;
2612
+ -webkit-box-pack: center;
2613
+ -webkit-justify-content: center;
2614
+ -moz-box-pack: center;
2615
+ -ms-flex-pack: center;
2616
+ justify-content: center;
2617
+ -webkit-box-align: center;
2618
+ -webkit-align-items: center;
2619
+ -moz-box-align: center;
2620
+ -ms-flex-align: center;
2621
+ align-items: center;
2622
+ -webkit-transition: all 0.2s ease-in-out;
2623
+ transition: all 0.2s ease-in-out;
2624
  }
2625
 
2626
+ .premium-button-text-icon-wrapper span,
2627
+ .premium-button-text-icon-wrapper i,
2628
+ .premium-button-text-icon-wrapper svg {
2629
+ -webkit-transition: all 0.2s ease-in-out;
2630
+ transition: all 0.2s ease-in-out;
2631
  }
2632
 
2633
+ .premium-button-style4-icon-wrapper {
2634
+ position: absolute;
2635
+ z-index: 2;
2636
+ width: 100%;
2637
+ text-align: center;
2638
+ -js-display: flex;
2639
+ display: -webkit-box;
2640
+ display: -webkit-flex;
2641
+ display: -moz-box;
2642
+ display: -ms-flexbox;
2643
+ display: flex;
2644
+ -webkit-box-align: center;
2645
+ -webkit-align-items: center;
2646
+ -moz-box-align: center;
2647
+ -ms-flex-align: center;
2648
+ align-items: center;
2649
+ -webkit-box-pack: center;
2650
+ -webkit-justify-content: center;
2651
+ -moz-box-pack: center;
2652
+ -ms-flex-pack: center;
2653
+ justify-content: center;
2654
+ height: 100%;
2655
+ opacity: 0;
2656
+ -webkit-transition: all 0.3s ease-in-out;
2657
+ transition: all 0.3s ease-in-out;
2658
  }
2659
 
2660
+ .premium-button-style4-icon-wrapper.top {
2661
+ bottom: -100%;
2662
+ right: 0;
 
 
 
2663
  }
2664
 
2665
+ .premium-button-style4-icon-wrapper.bottom {
2666
+ top: -100%;
2667
+ right: 0;
 
 
 
 
 
 
 
2668
  }
2669
 
2670
+ .premium-button-style4-icon-wrapper.left {
2671
+ top: 0;
2672
+ right: -100%;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2673
  }
2674
 
2675
+ .premium-button-style4-icon-wrapper.right {
2676
+ top: 0;
2677
+ left: -100%;
2678
  }
2679
 
2680
+ .premium-button-style4-bottom:hover .premium-button-style4-icon-wrapper {
2681
+ top: 0;
2682
+ opacity: 1;
 
 
2683
  }
2684
 
2685
+ .premium-button-style4-top:hover .premium-button-style4-icon-wrapper {
2686
+ bottom: 0;
2687
+ opacity: 1;
 
2688
  }
2689
 
2690
+ .premium-button-style4-left:hover .premium-button-style4-icon-wrapper {
2691
+ right: 0;
2692
+ opacity: 1;
2693
  }
2694
 
2695
+ .premium-button-style4-right:hover .premium-button-style4-icon-wrapper {
2696
+ left: 0;
2697
+ opacity: 1;
2698
  }
2699
 
2700
+ .premium-button-style4-bottom:hover .premium-button-text-icon-wrapper {
2701
+ -webkit-transform: translateY(100%);
2702
+ -ms-transform: translateY(100%);
2703
+ transform: translateY(100%);
2704
+ opacity: 0;
2705
  }
2706
 
2707
+ .premium-button-style4-top:hover .premium-button-text-icon-wrapper {
2708
+ -webkit-transform: translateY(-100%);
2709
+ -ms-transform: translateY(-100%);
2710
+ transform: translateY(-100%);
2711
+ opacity: 0;
2712
  }
2713
 
2714
+ .premium-button-style4-left:hover .premium-button-text-icon-wrapper {
2715
+ -webkit-transform: translateX(-100%);
2716
+ -ms-transform: translateX(-100%);
2717
+ transform: translateX(-100%);
2718
+ opacity: 0;
 
 
 
2719
  }
2720
 
2721
+ .premium-button-style4-right:hover .premium-button-text-icon-wrapper {
2722
+ -webkit-transform: translateX(100%);
2723
+ -ms-transform: translateX(100%);
2724
+ transform: translateX(100%);
2725
+ opacity: 0;
2726
  }
2727
 
2728
+ .premium-button-style6:before {
2729
+ content: "";
2730
+ position: absolute;
2731
+ right: 50%;
2732
+ top: 50%;
2733
+ width: 100px;
2734
+ height: 100px;
2735
+ -webkit-border-radius: 100%;
2736
+ border-radius: 100%;
2737
+ -webkit-transform: translate(50%, -50%) scale(0);
2738
+ -ms-transform: translate(50%, -50%) scale(0);
2739
+ transform: translate(50%, -50%) scale(0);
2740
+ -webkit-transition: all 0.3s ease-in-out;
2741
+ transition: all 0.3s ease-in-out;
2742
  }
2743
 
2744
+ .premium-button-style6:hover:before {
2745
+ -webkit-transform: translate(50%, -50%) scale(3);
2746
+ -ms-transform: translate(50%, -50%) scale(3);
2747
+ transform: translate(50%, -50%) scale(3);
 
 
 
 
 
 
2748
  }
2749
 
2750
+ .premium-button-style6 .premium-button-text-icon-wrapper {
2751
+ position: relative;
2752
+ z-index: 1;
 
 
2753
  }
2754
 
2755
+ .premium-button-style7-right .premium-button-text-icon-wrapper:before,
2756
+ .premium-button-style7-left .premium-button-text-icon-wrapper:before {
2757
+ -webkit-transition: width 0.3s ease-out 0.15s;
2758
+ transition: width 0.3s ease-out 0.15s;
 
 
 
 
2759
  }
2760
 
2761
+ .premium-button-style7-right .premium-button-text-icon-wrapper:after,
2762
+ .premium-button-style7-left .premium-button-text-icon-wrapper:after {
2763
+ -webkit-transition: width 0.3s ease-out 0s;
2764
+ transition: width 0.3s ease-out 0s;
 
 
 
 
2765
  }
2766
 
2767
+ .premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
2768
+ .premium-button-style7-top .premium-button-text-icon-wrapper:before {
2769
+ -webkit-transition: height 0.3s ease-out 0.15s;
2770
+ transition: height 0.3s ease-out 0.15s;
 
 
 
 
 
 
 
 
 
2771
  }
2772
 
2773
+ .premium-button-style7-bottom .premium-button-text-icon-wrapper:after,
2774
+ .premium-button-style7-top .premium-button-text-icon-wrapper:after {
2775
+ -webkit-transition: height 0.3s ease-out 0s;
2776
+ transition: height 0.3s ease-out 0s;
2777
  }
2778
 
2779
+ .premium-button[class*="style7"]:hover .premium-button-text-icon-wrapper:before {
2780
+ -webkit-transition-delay: 0s;
2781
+ transition-delay: 0s;
 
 
2782
  }
2783
 
2784
+ .premium-button[class*="style7"]:hover .premium-button-text-icon-wrapper:after {
2785
+ -webkit-transition-delay: 0.15s;
2786
+ transition-delay: 0.15s;
 
 
 
2787
  }
2788
 
2789
+ .premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
2790
+ .premium-button-style7-bottom .premium-button-text-icon-wrapper:after {
2791
+ content: "";
2792
+ position: absolute;
2793
+ left: 0;
2794
+ top: 0;
2795
+ right: 0;
2796
+ height: 0;
2797
+ z-index: -1;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2798
  }
2799
 
2800
+ .premium-button-style7-top .premium-button-text-icon-wrapper:after,
2801
+ .premium-button-style7-top .premium-button-text-icon-wrapper:before {
2802
+ content: "";
2803
+ position: absolute;
2804
+ left: 0;
2805
+ bottom: 0;
2806
+ right: 0;
2807
+ height: 0;
2808
+ z-index: -1;
2809
  }
2810
 
2811
+ .premium-button-style7-right .premium-button-text-icon-wrapper:after,
2812
+ .premium-button-style7-right .premium-button-text-icon-wrapper:before {
2813
+ content: "";
2814
+ position: absolute;
2815
+ right: 0;
2816
+ top: 0;
2817
+ bottom: 0;
2818
+ width: 0;
2819
+ z-index: -1;
2820
+ }
2821
 
2822
+ .premium-button-style7-left .premium-button-text-icon-wrapper:after,
2823
+ .premium-button-style7-left .premium-button-text-icon-wrapper:before {
2824
+ content: "";
2825
+ position: absolute;
2826
+ left: 0;
2827
+ top: 0;
2828
+ bottom: 0;
2829
+ width: 0;
2830
+ z-index: -1;
2831
  }
2832
 
2833
+ .premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:after,
2834
+ .premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:before {
2835
+ height: 100%;
2836
+ top: 0;
2837
+ }
2838
 
2839
+ .premium-button-style7-top:hover .premium-button-text-icon-wrapper:after,
2840
+ .premium-button-style7-top:hover .premium-button-text-icon-wrapper:before {
2841
+ height: 100%;
2842
+ bottom: 0;
2843
  }
2844
 
2845
+ .premium-button-style7-left:hover .premium-button-text-icon-wrapper:after,
2846
+ .premium-button-style7-left:hover .premium-button-text-icon-wrapper:before {
2847
+ width: 100%;
2848
+ left: 0;
2849
+ }
2850
 
2851
+ .premium-button-style7-right:hover .premium-button-text-icon-wrapper:after,
2852
+ .premium-button-style7-right:hover .premium-button-text-icon-wrapper:before {
2853
+ width: 100%;
2854
+ right: 0;
2855
+ }
2856
+ /**************** Premium Carousel **************/
2857
+ /************************************************/
2858
+ .premium-carousel-wrapper a.carousel-arrow svg,
2859
+ .premium-carousel-wrapper a.ver-carousel-arrow svg {
2860
+ -webkit-transition: all 0.3s ease-in-out;
2861
+ transition: all 0.3s ease-in-out;
2862
+ }
2863
 
2864
+ .premium-carousel-wrapper a.slick-arrow:hover {
2865
+ -webkit-box-shadow: none !important;
2866
+ box-shadow: none !important;
2867
  }
2868
 
2869
+ .premium-carousel-wrapper .premium-carousel-content-hidden {
2870
+ visibility: hidden;
2871
+ }
 
2872
 
2873
+ .premium-carousel-wrapper a.ver-carousel-arrow {
2874
+ right: 50%;
2875
+ -webkit-transform: translateX(50%);
2876
+ -ms-transform: translateX(50%);
2877
+ transform: translateX(50%);
2878
+ }
2879
 
2880
+ .premium-carousel-dots-above ul.slick-dots {
2881
+ position: absolute;
2882
+ display: -ms-flexbox;
2883
+ display: -webkit-flex;
2884
+ display: -moz-flex;
2885
+ display: -ms-flex;
2886
+ -js-display: flex;
2887
+ display: -webkit-box;
2888
+ display: -moz-box;
2889
+ display: flex;
2890
+ top: 50%;
2891
+ -webkit-transform: translateY(-50%);
2892
+ -ms-transform: translateY(-50%);
2893
+ transform: translateY(-50%);
2894
+ -webkit-flex-direction: column;
2895
+ -webkit-box-orient: vertical;
2896
+ -webkit-box-direction: normal;
2897
+ -moz-box-orient: vertical;
2898
+ -moz-box-direction: normal;
2899
+ -ms-flex-direction: column;
2900
+ flex-direction: column;
2901
  }
2902
 
2903
+ /*
2904
+ * Custom Navigation Dot
2905
+ */
2906
+ .premium-carousel-wrapper .premium-carousel-nav-dot,
2907
+ .premium-carousel-wrapper .premium-carousel-nav-arrow-prev,
2908
+ .premium-carousel-wrapper .premium-carousel-nav-arrow-next {
2909
+ display: none;
2910
  }
2911
 
2912
+ .premium-carousel-wrapper ul.slick-dots svg {
2913
+ width: 20px;
2914
+ height: 20px;
2915
+ outline: none !important;
 
 
 
 
 
 
 
 
 
 
 
 
 
2916
  }
2917
 
2918
+ /* Ripple Out */
2919
+ @-webkit-keyframes hvr-ripple-out {
2920
+ 0% {
2921
+ -webkit-transform: scale(1);
2922
+ transform: scale(1);
2923
+ opacity: 1;
2924
+ }
2925
+
2926
+ 100% {
2927
+ -webkit-transform: scale(1.5);
2928
+ transform: scale(1.5);
2929
+ opacity: 0;
2930
+ }
2931
  }
2932
 
2933
+ @keyframes hvr-ripple-out {
2934
+ 0% {
2935
+ -webkit-transform: scale(1);
2936
+ transform: scale(1);
2937
+ opacity: 1;
2938
+ }
2939
+
2940
+ 100% {
2941
+ -webkit-transform: scale(1.5);
2942
+ transform: scale(1.5);
2943
+ opacity: 0;
2944
+ }
2945
  }
2946
 
2947
+ .premium-carousel-ripple-yes .premium-carousel-wrapper {
2948
+ padding-bottom: 1px;
 
 
 
2949
  }
2950
 
2951
+ .premium-carousel-ripple-yes ul.slick-dots li,
2952
+ .premium-carousel-ripple-yes ul.slick-dots li i {
2953
+ position: relative;
2954
  }
2955
 
2956
+ .premium-carousel-ripple-yes ul.slick-dots li i {
2957
+ z-index: 1;
 
2958
  }
2959
 
2960
+ .premium-carousel-ripple-yes ul.slick-dots li:hover:before {
2961
+ content: "";
2962
+ position: absolute;
2963
+ -webkit-transform: scale(1);
2964
+ -ms-transform: scale(1);
2965
+ transform: scale(1);
2966
+ top: 0;
2967
+ left: 0;
2968
+ bottom: 0;
2969
+ right: 0;
2970
+ -webkit-border-radius: 50%;
2971
+ border-radius: 50%;
2972
+ pointer-events: none;
2973
+ background-color: rgba(0, 0, 0, 0.15);
2974
  }
2975
 
2976
+ .premium-carousel-ripple-yes ul.slick-dots li.slick-active:hover:before {
2977
+ background-color: rgba(0, 0, 0, 0.3);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2978
  }
2979
 
2980
+ .premium-carousel-ripple-yes ul.slick-dots li:hover:before {
2981
+ -webkit-animation: hvr-ripple-out 1.3s infinite;
2982
+ animation: hvr-ripple-out 1.3s infinite;
2983
  }
2984
 
2985
+ .premium-carousel-wrapper.premium-carousel-scale .slick-slide {
2986
+ -webkit-transform: scale(1.25, 1.25);
2987
+ -ms-transform: scale(1.25, 1.25);
2988
+ transform: scale(1.25, 1.25);
2989
+ -webkit-transition: all 0.3s ease-in-out !important;
2990
+ transition: all 0.3s ease-in-out !important;
2991
  }
2992
 
2993
+ .premium-carousel-wrapper.premium-carousel-scale div.slick-active {
2994
+ -webkit-transform: scale(1, 1);
2995
+ -ms-transform: scale(1, 1);
2996
+ transform: scale(1, 1);
 
 
 
 
 
 
 
2997
  }
2998
 
2999
+ [dir="rtl"] .premium-carousel-inner .slick-slide {
3000
+ float: right;
3001
+ }
3002
+ /**************** Premium Contact Form7 **********/
3003
+ /*************************************************/
3004
+ .premium-contact-form-anim-yes .wpcf7-span::after {
3005
+ display: block;
3006
+ height: 2px;
3007
+ content: "";
3008
+ top: -2px;
3009
+ position: relative;
3010
+ width: 0px;
3011
+ -webkit-transition: all ease-in-out 0.3s;
3012
+ transition: all ease-in-out 0.3s;
3013
  }
3014
 
3015
+ .premium-contact-form-anim-yes .wpcf7-span.is-focused::after {
3016
+ width: 100%;
 
 
 
3017
  }
3018
 
3019
+ .premium-cf7-container input.wpcf7-submit {
3020
+ -webkit-transition: all 0.3s ease-in-out;
3021
+ transition: all 0.3s ease-in-out;
3022
+ }
3023
+ /************ Premium Countdown ************/
3024
+ /*******************************************/
3025
+ .premium-countdown {
3026
+ -js-display: flex;
3027
+ display: -webkit-box;
3028
+ display: -webkit-flex;
3029
+ display: -moz-box;
3030
+ display: -ms-flexbox;
3031
+ display: flex;
3032
+ text-align: center;
3033
+ }
3034
 
3035
+ .countdown-row {
3036
+ display: block;
3037
+ text-align: center;
 
3038
  }
3039
 
3040
+ .countdown .countdown-section {
3041
+ display: inline-block;
3042
+ max-width: 100%;
3043
+ margin-bottom: 15px;
3044
+ -js-display: inline-flex;
3045
+ display: -webkit-inline-box;
3046
+ display: -webkit-inline-flex;
3047
+ display: -moz-inline-box;
3048
+ display: -ms-inline-flexbox;
3049
+ display: inline-flex;
3050
+ -webkit-box-align: center;
3051
+ -webkit-align-items: center;
3052
+ -moz-box-align: center;
3053
+ -ms-flex-align: center;
3054
+ align-items: center;
3055
  }
3056
 
3057
+ .countdown .countdown-section:last-child {
3058
+ margin-left: 0;
3059
+ }
 
3060
 
3061
+ .countdown span.countdown-amount {
3062
+ font-size: 70px;
3063
+ line-height: 1;
3064
+ padding: 40px;
3065
+ }
3066
 
3067
+ .countdown .pre_time-mid {
3068
+ display: block;
 
3069
  }
3070
 
3071
+ .premium-countdown-separator-yes .countdown_separator {
3072
+ display: block;
3073
+ margin: 0 50px;
3074
+ font-size: 30px;
3075
+ }
3076
 
3077
+ .premium-countdown-separator-yes .countdown-row .countdown-section:last-child .countdown_separator,
3078
+ .premium-countdown-separator-yes .premium-countdown-block:last-child .countdown_separator {
3079
+ display: none;
3080
+ }
3081
 
3082
+ /**
3083
+ * Digit and unit styles
3084
+ */
3085
+ .side .countdown-section .countdown-period {
3086
+ vertical-align: bottom;
3087
  }
3088
 
3089
+ .countdown .countdown-section .countdown-period {
3090
+ font-size: 17px;
3091
+ line-height: 3em;
 
 
 
 
3092
  }
3093
 
3094
+ .side .countdown-section .countdown-amount,
3095
+ .side .countdown-section .countdown-period {
3096
+ display: inline-block;
 
3097
  }
3098
 
3099
+ .side .countdown-section .countdown-amount {
3100
+ margin-left: 5px;
 
 
 
 
3101
  }
3102
 
3103
+ .down .countdown-section .countdown-amount,
3104
+ .down .countdown-section .countdown-period {
3105
+ display: block;
3106
  }
3107
 
3108
+ /**
3109
+ * Flip Layout
3110
+ */
3111
+ .premium-countdown-flip .premium-countdown-block {
3112
+ text-align: center;
3113
+ -js-display: inline-flex;
3114
+ display: -webkit-inline-box;
3115
+ display: -webkit-inline-flex;
3116
+ display: -moz-inline-box;
3117
+ display: -ms-inline-flexbox;
3118
+ display: inline-flex;
3119
+ -webkit-box-align: center;
3120
+ -webkit-align-items: center;
3121
+ -moz-box-align: center;
3122
+ -ms-flex-align: center;
3123
+ align-items: center;
3124
  }
3125
 
3126
+ .premium-countdown-flip .premium-countdown-block:last-child {
3127
+ margin-left: 0;
 
 
 
 
3128
  }
3129
 
3130
+ .premium-countdown-flip .premium-countdown-label {
3131
+ overflow: hidden;
3132
+ color: #1a1a1a;
3133
+ text-transform: uppercase;
 
 
 
3134
  }
3135
 
3136
+ .premium-countdown-flip .premium-countdown-figure {
3137
+ position: relative;
3138
+ height: 110px;
3139
+ width: 100px;
3140
+ line-height: 107px;
3141
+ background-color: #fff;
3142
+ -webkit-border-radius: 10px;
3143
+ border-radius: 10px;
3144
+ -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset -2px 4px 0 0 rgba(255, 255, 255, 0.08);
3145
+ box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset -2px 4px 0 0 rgba(255, 255, 255, 0.08);
3146
  }
3147
 
3148
+ .premium-countdown-flip .premium-countdown-figure:last-child {
3149
+ margin-left: 0;
3150
  }
3151
 
3152
+ .premium-countdown-flip .premium-countdown-figure>span {
3153
+ position: absolute;
3154
+ right: 0;
3155
+ left: 0;
3156
+ margin: auto;
3157
+ font-weight: 700;
 
 
3158
  }
3159
 
3160
+ .premium-countdown-flip .premium-countdown-figure .top {
3161
+ z-index: 3;
3162
+ -webkit-transform-origin: 50% 100%;
3163
+ -ms-transform-origin: 50% 100%;
3164
+ transform-origin: 50% 100%;
3165
+ -webkit-transform: perspective(200px);
3166
+ transform: perspective(200px);
3167
+ -webkit-backface-visibility: hidden;
3168
+ backface-visibility: hidden;
 
 
 
3169
  }
3170
 
3171
+ .premium-countdown-flip .premium-countdown-figure .bottom {
3172
+ z-index: 1;
 
 
 
 
 
 
 
 
 
 
 
 
3173
  }
3174
 
3175
+ .premium-countdown-flip .premium-countdown-figure .bottom::before {
3176
+ content: "";
3177
+ position: absolute;
3178
+ display: block;
3179
+ top: 0;
3180
+ right: 0;
3181
+ width: 100%;
3182
+ height: 50%;
3183
+ background-color: rgba(0, 0, 0, 0.02);
 
 
 
3184
  }
3185
 
3186
+ .premium-countdown-flip .premium-countdown-figure .top-back {
3187
+ -webkit-backface-visibility: hidden;
3188
+ backface-visibility: hidden;
3189
+ z-index: 4;
3190
+ bottom: 0;
3191
+ -webkit-transform-origin: 50% 0;
3192
+ -ms-transform-origin: 50% 0;
3193
+ transform-origin: 50% 0;
3194
+ -webkit-transform: perspective(200px) rotateX(180deg);
3195
+ transform: perspective(200px) rotateX(180deg);
3196
  }
3197
 
3198
+ .premium-countdown-flip .premium-countdown-figure .top-back span {
3199
+ position: absolute;
3200
+ top: -100%;
3201
+ right: 0;
3202
+ left: 0;
3203
+ margin: auto;
3204
  }
3205
 
3206
+ .premium-countdown-flip .premium-countdown-figure .bottom-back {
3207
+ z-index: 2;
3208
+ top: 0;
 
 
 
 
 
3209
  }
3210
 
3211
+ .premium-countdown-flip .premium-countdown-figure .bottom-back span {
3212
+ position: absolute;
3213
+ top: 0;
3214
+ right: 0;
3215
+ left: 0;
3216
+ margin: auto;
 
 
3217
  }
3218
 
3219
+ .premium-countdown-flip .premium-countdown-figure .top,
3220
+ .premium-countdown-flip .premium-countdown-figure .bottom-back,
3221
+ .premium-countdown-flip .premium-countdown-figure .top-back {
3222
+ height: 50%;
3223
+ overflow: hidden;
3224
+ background-color: #f7f7f7;
3225
+ -webkit-border-top-right-radius: 10px;
3226
+ border-top-right-radius: 10px;
3227
+ -webkit-border-top-left-radius: 10px;
3228
+ border-top-left-radius: 10px;
3229
  }
3230
 
3231
+ .premium-countdown-flip .premium-countdown-figure .top-back {
3232
+ -webkit-border-bottom-right-radius: 10px;
3233
+ border-bottom-right-radius: 10px;
3234
+ -webkit-border-bottom-left-radius: 10px;
3235
+ border-bottom-left-radius: 10px;
 
 
 
 
 
 
 
 
 
 
 
 
 
3236
  }
3237
 
3238
+ .premium-countdown-flip .premium-countdown-figure .top::after,
3239
+ .premium-countdown-flip .premium-countdown-figure .bottom-back::after {
3240
+ content: "";
3241
+ position: absolute;
3242
+ z-index: -1;
3243
+ right: 0;
3244
+ bottom: 0;
3245
+ width: 100%;
3246
+ height: 100%;
3247
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1);
3248
  }
3249
 
3250
+ .side .premium-countdown-figure,
3251
+ .side .premium-countdown-label {
3252
+ display: inline-block;
 
 
 
 
 
 
3253
  }
3254
 
3255
+ .side .premium-countdown-figure {
3256
+ margin-left: 5px;
 
 
3257
  }
3258
 
3259
+ .down .premium-countdown-figure,
3260
+ .down .premium-countdown-label {
3261
+ display: block;
3262
+ }
3263
 
3264
+ .down .premium-countdown-label {
3265
+ width: 100%;
3266
+ }
3267
+ /**************** Premium Counter ***************/
3268
+ /************************************************/
3269
+ .premium-counter-area {
3270
+ padding: 10px 0;
3271
+ -js-display: flex;
3272
+ display: -webkit-box;
3273
+ display: -webkit-flex;
3274
+ display: -moz-box;
3275
+ display: -ms-flexbox;
3276
+ display: flex;
3277
+ -webkit-box-pack: center;
3278
+ -webkit-justify-content: center;
3279
+ -moz-box-pack: center;
3280
+ -ms-flex-pack: center;
3281
+ justify-content: center;
3282
+ -webkit-box-align: center;
3283
+ -webkit-align-items: center;
3284
+ -moz-box-align: center;
3285
+ -ms-flex-align: center;
3286
+ align-items: center;
3287
  }
3288
 
3289
+ .premium-counter-area.top {
3290
+ -webkit-box-orient: vertical;
3291
+ -webkit-box-direction: normal;
3292
+ -webkit-flex-direction: column;
3293
+ -moz-box-orient: vertical;
3294
+ -moz-box-direction: normal;
3295
+ -ms-flex-direction: column;
3296
+ flex-direction: column;
3297
+ }
3298
 
3299
+ .premium-counter-area.right {
3300
+ -webkit-box-orient: horizontal;
3301
+ -webkit-box-direction: reverse;
3302
+ -webkit-flex-direction: row-reverse;
3303
+ -moz-box-orient: horizontal;
3304
+ -moz-box-direction: reverse;
3305
+ -ms-flex-direction: row-reverse;
3306
+ flex-direction: row-reverse;
3307
  }
3308
 
3309
+ .premium-counter-area.right .premium-counter-icon {
3310
+ padding-right: 20px;
3311
+ }
 
 
3312
 
3313
+ .premium-counter-area.left .premium-counter-icon {
3314
+ padding-left: 20px;
 
3315
  }
3316
 
3317
+ .premium-counter-area .premium-counter-icon .icon i.fa:before {
3318
+ vertical-align: text-top;
 
 
 
 
 
 
 
3319
  }
3320
 
3321
+ .premium-counter-area .premium-counter-icon span.icon {
3322
+ text-align: center;
3323
+ display: inline-block;
3324
+ vertical-align: middle;
 
 
 
 
 
 
 
 
3325
  }
3326
 
3327
+ .premium-counter-area .premium-counter-icon .circle {
3328
+ -webkit-border-radius: 100%;
3329
+ border-radius: 100%;
 
 
 
 
 
 
 
 
 
3330
  }
3331
 
3332
+ .premium-counter-area .premium-counter-icon img,
3333
+ .premium-counter-area .premium-counter-icon svg {
3334
+ width: 80px;
 
 
 
 
 
 
3335
  }
3336
 
3337
+ .premium-counter-area .premium-counter-icon .premium-counter-animation svg {
3338
+ height: 80px;
 
 
 
3339
  }
3340
 
3341
+ .premium-counter-area .premium-counter-title p {
3342
+ padding: 0;
3343
+ margin: 0;
3344
  }
3345
 
3346
+ .premium-counter-area .premium-counter-value-wrap {
3347
+ -js-display: flex;
3348
+ display: -webkit-box;
3349
+ display: -webkit-flex;
3350
+ display: -moz-box;
3351
+ display: -ms-flexbox;
3352
+ display: flex;
3353
+ -webkit-box-align: center;
3354
+ -webkit-align-items: center;
3355
+ -moz-box-align: center;
3356
+ -ms-flex-align: center;
3357
+ align-items: center;
3358
  }
3359
 
3360
+ .premium-init-wrapper {
3361
+ -js-display: flex;
3362
+ display: -webkit-box;
3363
+ display: -webkit-flex;
3364
+ display: -moz-box;
3365
+ display: -ms-flexbox;
3366
+ display: flex;
 
 
 
3367
  }
3368
 
3369
+ .premium-init-wrapper.row {
3370
+ -webkit-box-align: center;
3371
+ -webkit-align-items: center;
3372
+ -moz-box-align: center;
3373
+ -ms-flex-align: center;
3374
+ align-items: center;
3375
  }
3376
 
3377
+ .premium-init-wrapper.right {
3378
+ text-align: right;
 
 
 
 
3379
  }
3380
 
3381
+ span.icon.flex-width {
3382
+ width: auto !important;
3383
+ height: auto !important;
 
 
 
3384
  }
3385
 
3386
+ .premium-counter-area .premium-counter-init {
3387
+ font-size: 35px;
3388
+ }
3389
+ /**************** Premium Dual Heading *****************/
3390
+ /*******************************************************/
3391
+ .premium-dual-header-first-header,
3392
+ .premium-dual-header-second-header {
3393
+ position: relative;
3394
+ padding: 0;
3395
+ margin: 0;
3396
+ display: inline-block;
3397
+ -webkit-transform: translate(0, 0);
3398
+ -ms-transform: translate(0, 0);
3399
+ transform: translate(0, 0);
3400
  }
3401
 
3402
+ .premium-dual-header-first-clip .premium-dual-header-first-span,
3403
+ .premium-dual-header-second-clip {
3404
+ -webkit-text-fill-color: transparent;
3405
+ -webkit-background-clip: text;
3406
+ }
3407
 
3408
+ .premium-dual-header-first-clip.stroke .premium-dual-header-first-span,
3409
+ .premium-dual-header-second-clip.stroke {
3410
+ -webkit-text-stroke-color: transparent;
3411
+ -webkit-text-fill-color: #fafafa;
3412
+ -webkit-text-stroke-width: 2px;
3413
  }
3414
 
3415
+ @media (max-width: 500px) {
 
 
 
 
3416
 
3417
+ .premium-dual-header-first-header,
3418
+ .premium-dual-header-second-header {
3419
+ word-wrap: break-word;
3420
+ }
3421
  }
3422
 
3423
+ .premium-dual-header-first-header.gradient .premium-dual-header-first-span,
3424
+ .premium-dual-header-second-header.gradient {
3425
+ -webkit-background-size: 300% 300% !important;
3426
+ background-size: 300% 300% !important;
3427
+ -webkit-animation: Gradient 10s ease-in-out infinite;
3428
+ animation: Gradient 10s ease-in-out infinite;
 
 
 
 
3429
  }
3430
 
3431
+ @-webkit-keyframes Gradient {
3432
+ 0% {
3433
+ background-position: 100% 50%;
3434
+ }
 
3435
 
3436
+ 50% {
3437
+ background-position: 0% 50%;
3438
+ }
3439
+
3440
+ 100% {
3441
+ background-position: 100% 50%;
3442
+ }
3443
  }
3444
 
3445
+ @keyframes Gradient {
3446
+ 0% {
3447
+ background-position: 100% 50%;
3448
+ }
 
3449
 
3450
+ 50% {
3451
+ background-position: 0% 50%;
3452
+ }
3453
+
3454
+ 100% {
3455
+ background-position: 100% 50%;
3456
+ }
3457
+ }
3458
+ /**************** Premium Fancy Text *******************/
3459
+ /*******************************************************/
3460
+ .premium-suffix-text,
3461
+ .premium-fancy-text,
3462
+ .premium-prefix-text {
3463
+ font-size: 40px;
3464
  }
3465
 
3466
+ .premium-fancy-text-wrapper:not(.typing) .premium-fancy-text,
3467
+ .premium-fancy-item-hidden {
3468
+ opacity: 0;
3469
+ }
 
3470
 
3471
+ .premium-fancy-text-wrapper .premium-fancy-list-items {
3472
+ list-style: none;
 
 
3473
  }
3474
 
3475
+ .premium-fancy-text-wrapper .premium-fancy-text-span-align {
3476
+ vertical-align: top;
3477
+ }
 
 
3478
 
3479
+ .premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-text-items-wrapper {
3480
+ margin: 0;
3481
+ padding: 0;
3482
+ border: none;
3483
+ position: relative;
3484
  }
3485
 
3486
+ .premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-list-items {
3487
+ position: absolute;
3488
+ top: 0;
3489
+ left: 0;
3490
+ display: inline-block;
3491
+ }
3492
 
3493
+ .premium-fancy-text-wrapper.zoomout .premium-fancy-item-hidden {
3494
+ -webkit-animation: pa-zoom-out 0.8s;
3495
+ animation: pa-zoom-out 0.8s;
 
3496
  }
3497
 
3498
+ .premium-fancy-text-wrapper.zoomout .premium-fancy-item-visible {
3499
+ position: relative !important;
3500
+ -webkit-animation: pa-zoom-in 0.8s;
3501
+ animation: pa-zoom-in 0.8s;
 
 
3502
  }
3503
 
3504
+ .premium-fancy-text-wrapper.zoomout .premium-fancy-text-items-wrapper {
3505
+ -webkit-perspective: 300px;
3506
+ perspective: 300px;
 
 
 
 
 
 
 
 
 
 
 
3507
  }
3508
 
3509
+ .premium-fancy-text-wrapper.rotate .premium-fancy-list-items {
3510
+ -webkit-transform-origin: 50% 100%;
3511
+ -ms-transform-origin: 50% 100%;
3512
+ transform-origin: 50% 100%;
3513
  }
3514
 
3515
+ .premium-fancy-text-wrapper.rotate .premium-fancy-item-hidden {
3516
+ -webkit-transform: rotateX(180deg);
3517
+ transform: rotateX(180deg);
3518
+ -webkit-animation: pa-rotate-out 1.2s;
3519
+ animation: pa-rotate-out 1.2s;
3520
  }
3521
 
3522
+ .premium-fancy-text-wrapper.rotate .premium-fancy-item-visible {
3523
+ position: relative !important;
3524
+ -webkit-transform: rotateX(0deg);
3525
+ transform: rotateX(0deg);
3526
+ -webkit-animation: pa-rotate-in 1.2s;
3527
+ animation: pa-rotate-in 1.2s;
3528
  }
3529
 
3530
+ .premium-fancy-text-wrapper.custom .premium-fancy-item-visible {
3531
+ position: relative !important;
3532
  }
3533
 
3534
+ .premium-fancy-text-wrapper.auto-fade .premium-fancy-text {
3535
+ display: inline-block;
3536
+ width: 200px;
3537
+ font-weight: 400;
3538
  }
3539
 
3540
+ .premium-fancy-text-wrapper.auto-fade .premium-fancy-svg-text {
3541
+ position: relative;
3542
+ vertical-align: sub;
3543
  }
3544
 
3545
+ .premium-fancy-text-wrapper.auto-fade g>text {
3546
+ text-anchor: start;
3547
+ shape-rendering: crispEdges;
3548
+ opacity: 0;
3549
+ font-size: 300px;
3550
+ -webkit-animation-name: pa-auto-fade;
3551
+ animation-name: pa-auto-fade;
3552
+ -moz-animation-name: pa-auto-fade;
3553
+ -webkit-animation-duration: 9s;
3554
+ animation-duration: 9s;
3555
+ -webkit-animation-timing-function: linear;
3556
+ animation-timing-function: linear;
3557
+ -webkit-animation-iteration-count: infinite;
3558
+ animation-iteration-count: infinite;
3559
  }
3560
 
3561
+ .premium-fancy-text-wrapper.auto-fade g>text:nth-child(1) {
3562
+ -webkit-animation-delay: 0s;
3563
+ animation-delay: 0s;
 
 
 
 
 
 
 
 
 
 
 
 
3564
  }
3565
 
3566
+ .premium-fancy-text-wrapper.auto-fade g>text:nth-child(2) {
3567
+ -webkit-animation-delay: 3s;
3568
+ animation-delay: 3s;
 
 
 
 
 
3569
  }
3570
 
3571
+ .premium-fancy-text-wrapper.auto-fade g>text:nth-child(3) {
3572
+ -webkit-animation-delay: 6s;
3573
+ animation-delay: 6s;
 
 
 
 
 
 
3574
  }
3575
 
3576
+ .premium-fancy-text-wrapper.loading .premium-fancy-text {
3577
+ position: relative;
 
 
3578
  }
3579
 
3580
+ .premium-fancy-text-wrapper.loading .premium-fancy-text .premium-loading-bar {
3581
+ position: absolute;
3582
+ width: 100%;
3583
+ height: 3px;
3584
+ bottom: 0;
3585
+ left: 0;
3586
+ animation: pa-loading-bar 2.5s ease-out infinite;
3587
+ -webkit-animation: pa-loading-bar 2.5s ease-out infinite;
3588
  }
3589
 
3590
+ .premium-fancy-text-wrapper.loading.pause .premium-fancy-text:hover .premium-loading-bar {
3591
+ -webkit-animation-play-state: paused;
3592
+ animation-play-state: paused;
 
 
 
 
 
 
 
 
3593
  }
3594
 
3595
+ @-webkit-keyframes pa-auto-fade {
3596
+ 0% {
3597
+ opacity: 0;
3598
+ }
3599
 
3600
+ 20% {
3601
+ opacity: 1;
3602
+ }
 
 
 
 
 
3603
 
3604
+ 35% {
3605
+ opacity: 0;
3606
+ }
 
 
 
 
 
 
 
 
3607
 
3608
+ 100% {
3609
+ opacity: 0;
3610
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
3611
  }
3612
 
3613
+ @keyframes pa-auto-fade {
3614
+ 0% {
3615
+ opacity: 0;
3616
+ }
 
 
 
 
 
 
 
 
3617
 
3618
+ 20% {
3619
+ opacity: 1;
3620
+ }
3621
+
3622
+ 35% {
3623
+ opacity: 0;
3624
+ }
3625
+
3626
+ 100% {
3627
+ opacity: 0;
3628
+ }
3629
  }
3630
 
3631
+ @-webkit-keyframes pa-loading-bar {
3632
+ 0% {
3633
+ width: 0;
3634
+ }
3635
+
3636
+ 100% {
3637
+ width: 100;
3638
+ }
3639
  }
3640
 
3641
+ @keyframes pa-loading-bar {
3642
+ 0% {
3643
+ width: 0;
3644
+ }
3645
+
3646
+ 100% {
3647
+ width: 100;
3648
+ }
 
 
 
3649
  }
3650
 
3651
+ @-webkit-keyframes pa-zoom-in {
3652
+ 0% {
3653
+ opacity: 0;
3654
+ -webkit-transform: translateZ(100px);
3655
+ transform: translateZ(100px);
3656
+ }
3657
+
3658
+ 100% {
3659
+ opacity: 1;
3660
+ -webkit-transform: translateZ(0);
3661
+ transform: translateZ(0);
3662
+ }
3663
  }
3664
 
3665
+ @keyframes pa-zoom-in {
3666
+ 0% {
3667
+ opacity: 0;
3668
+ -webkit-transform: translateZ(100px);
3669
+ transform: translateZ(100px);
3670
+ }
3671
+
3672
+ 100% {
3673
+ opacity: 1;
3674
+ -webkit-transform: translateZ(0);
3675
+ transform: translateZ(0);
3676
+ }
3677
  }
3678
 
3679
+ @-webkit-keyframes pa-zoom-out {
3680
+ 0% {
3681
+ opacity: 1;
3682
+ -webkit-transform: translateZ(0);
3683
+ transform: translateZ(0);
3684
+ }
3685
+
3686
+ 100% {
3687
+ opacity: 0;
3688
+ -webkit-transform: translateZ(-100px);
3689
+ transform: translateZ(-100px);
3690
+ }
3691
  }
3692
 
3693
+ @keyframes pa-zoom-out {
3694
+ 0% {
3695
+ opacity: 1;
3696
+ -webkit-transform: translateZ(0);
3697
+ transform: translateZ(0);
3698
+ }
3699
+
3700
+ 100% {
3701
+ opacity: 0;
3702
+ -webkit-transform: translateZ(-100px);
3703
+ transform: translateZ(-100px);
3704
+ }
3705
  }
3706
 
3707
+ @-webkit-keyframes pa-rotate-in {
3708
+ 0% {
3709
+ opacity: 0;
3710
+ -webkit-transform: rotateX(180deg);
3711
+ transform: rotateX(180deg);
3712
+ }
3713
+
3714
+ 35% {
3715
+ opacity: 0;
3716
+ -webkit-transform: rotateX(120deg);
3717
+ transform: rotateX(120deg);
3718
+ }
3719
+
3720
+ 65% {
3721
+ opacity: 0;
3722
+ }
3723
+
3724
+ 100% {
3725
+ opacity: 1;
3726
+ -webkit-transform: rotateX(360deg);
3727
+ transform: rotateX(360deg);
3728
+ }
3729
  }
3730
 
3731
+ @keyframes pa-rotate-in {
3732
+ 0% {
3733
+ opacity: 0;
3734
+ -webkit-transform: rotateX(180deg);
3735
+ transform: rotateX(180deg);
3736
+ }
3737
+
3738
+ 35% {
3739
+ opacity: 0;
3740
+ -webkit-transform: rotateX(120deg);
3741
+ transform: rotateX(120deg);
3742
+ }
3743
+
3744
+ 65% {
3745
+ opacity: 0;
3746
+ }
3747
+
3748
+ 100% {
3749
+ opacity: 1;
3750
+ -webkit-transform: rotateX(360deg);
3751
+ transform: rotateX(360deg);
3752
+ }
3753
  }
3754
 
3755
+ @-webkit-keyframes pa-rotate-out {
3756
+ 0% {
3757
+ opacity: 1;
3758
+ -webkit-transform: rotateX(0deg);
3759
+ transform: rotateX(0deg);
3760
+ }
3761
+
3762
+ 35% {
3763
+ opacity: 1;
3764
+ -webkit-transform: rotateX(-40deg);
3765
+ transform: rotateX(-40deg);
3766
+ }
3767
+
3768
+ 65% {
3769
+ opacity: 0;
3770
+ }
3771
+
3772
+ 100% {
3773
+ opacity: 0;
3774
+ -webkit-transform: rotateX(180deg);
3775
+ transform: rotateX(180deg);
3776
+ }
3777
  }
3778
 
3779
+ @keyframes pa-rotate-out {
3780
+ 0% {
3781
+ opacity: 1;
3782
+ -webkit-transform: rotateX(0deg);
3783
+ transform: rotateX(0deg);
3784
+ }
3785
+
3786
+ 35% {
3787
+ opacity: 1;
3788
+ -webkit-transform: rotateX(-40deg);
3789
+ transform: rotateX(-40deg);
3790
+ }
3791
+
3792
+ 65% {
3793
+ opacity: 0;
3794
+ }
3795
+
3796
+ 100% {
3797
+ opacity: 0;
3798
+ -webkit-transform: rotateX(180deg);
3799
+ transform: rotateX(180deg);
3800
+ }
3801
+ }
3802
+ /**************** Premium Bullet List *****************/
3803
+ /******************************************************/
3804
+ .premium-bullet-list-box {
3805
+ -js-display: flex;
3806
+ display: -webkit-box;
3807
+ display: -webkit-flex;
3808
+ display: -moz-box;
3809
+ display: -ms-flexbox;
3810
+ display: flex;
3811
+ -webkit-flex-wrap: wrap;
3812
+ -ms-flex-wrap: wrap;
3813
+ flex-wrap: wrap;
3814
+ -webkit-box-orient: vertical;
3815
+ -webkit-box-direction: normal;
3816
+ -webkit-flex-direction: column;
3817
+ -moz-box-orient: vertical;
3818
+ -moz-box-direction: normal;
3819
+ -ms-flex-direction: column;
3820
+ flex-direction: column;
3821
  }
3822
 
3823
+ .premium-bullet-list-box .premium-bullet-list-content-grow-lc {
3824
+ -webkit-transform-origin: right center;
3825
+ -ms-transform-origin: right center;
3826
+ transform-origin: right center;
3827
  }
3828
 
3829
+ .premium-bullet-list-box .premium-bullet-list-content-grow-rc {
3830
+ -webkit-transform-origin: left center;
3831
+ -ms-transform-origin: left center;
3832
+ transform-origin: left center;
3833
  }
3834
 
3835
+ .premium-bullet-list-box .premium-bullet-list-content-grow-cc {
3836
+ -webkit-transform-origin: center center;
3837
+ -ms-transform-origin: center center;
3838
+ transform-origin: center center;
3839
  }
3840
 
3841
+ .premium-bullet-list-content {
3842
+ -js-display: flex;
3843
+ display: -webkit-box;
3844
+ display: -webkit-flex;
3845
+ display: -moz-box;
3846
+ display: -ms-flexbox;
3847
+ display: flex;
3848
+ -webkit-transition: all 0.3s ease-in-out;
3849
+ transition: all 0.3s ease-in-out;
3850
+ width: auto;
3851
+ position: relative;
3852
  }
3853
 
3854
+ .premium-bullet-list-content .premium-bullet-list-text span,
3855
+ .premium-bullet-list-content .premium-bullet-list-wrapper {
3856
+ display: inline-block;
3857
+ -webkit-align-self: center;
3858
+ -ms-flex-item-align: center;
3859
+ align-self: center;
3860
+ -webkit-transition: all 0.3s ease-in-out;
3861
+ transition: all 0.3s ease-in-out;
3862
  }
3863
 
3864
+ .premium-bullet-list-content .premium-bullet-list-text span {
3865
+ margin: 0 5px;
 
3866
  }
3867
 
3868
+ .premium-bullet-list-content .premium-bullet-list-icon-text p {
3869
+ font-size: 18px;
3870
+ background-color: #eee;
3871
+ padding: 1px 5px;
3872
+ -webkit-border-radius: 2px;
3873
+ border-radius: 2px;
3874
  }
3875
 
3876
+ .premium-bullet-list-content .premium-bullet-list-text span,
3877
+ .premium-bullet-list-content .premium-bullet-list-icon-text p,
3878
+ .premium-bullet-list-content .premium-bullet-list-wrapper img,
3879
+ .premium-bullet-list-content .premium-bullet-list-wrapper svg,
3880
+ .premium-bullet-list-content .premium-bullet-list-wrapper i {
3881
+ -webkit-transition: all 0.3s ease-in-out;
3882
+ transition: all 0.3s ease-in-out;
3883
  }
3884
 
3885
+ .premium-bullet-list-content .premium-bullet-list-wrapper {
3886
+ position: relative;
3887
+ line-height: 0;
3888
  }
3889
 
3890
+ .premium-bullet-list-content .premium-bullet-list-wrapper img,
3891
+ .premium-bullet-list-content .premium-bullet-list-wrapper svg {
3892
+ width: 30px !important;
3893
+ height: 30px !important;
3894
+ position: relative;
3895
+ z-index: 500;
3896
  }
3897
 
3898
+ .premium-bullet-list-content .premium-bullet-list-wrapper i {
3899
+ width: 1.25em;
 
 
 
 
3900
  }
3901
 
3902
+ .premium-bullet-list-content .premium-bullet-list-wrapper i,
3903
+ .premium-bullet-list-content .premium-bullet-list-wrapper .premium-bullet-list-icon-text {
3904
+ position: relative;
3905
+ z-index: 500;
3906
  }
3907
 
3908
+ .premium-bullet-list-content .premium-bullet-list-link {
3909
+ position: absolute;
3910
+ top: 0;
3911
+ right: 0;
3912
+ width: 100%;
3913
+ height: 100%;
3914
+ z-index: 1000;
3915
  }
3916
 
3917
+ .premium-bullet-list-content:not(:last-of-type) .premium-bullet-list-connector {
3918
+ width: 100%;
3919
+ height: 100%;
3920
+ position: absolute;
3921
+ top: 0.5em;
3922
+ z-index: 100;
3923
+ -js-display: flex;
3924
+ display: -webkit-box;
3925
+ display: -webkit-flex;
3926
+ display: -moz-box;
3927
+ display: -ms-flexbox;
3928
+ display: flex;
3929
+ -webkit-box-pack: center;
3930
+ -webkit-justify-content: center;
3931
+ -moz-box-pack: center;
3932
+ -ms-flex-pack: center;
3933
+ justify-content: center;
3934
  }
3935
 
3936
+ .premium-bullet-list-content:not(:last-of-type) .premium-bullet-list-connector .premium-icon-connector-content:after {
3937
+ content: "";
3938
+ border-left-width: 1px;
3939
+ border-left-style: solid;
3940
+ border-color: #333333;
3941
+ display: block;
3942
+ height: 100%;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3943
  }
3944
 
3945
+ li.premium-bullet-list-content.premium-bullet-list-content-inline {
3946
+ -webkit-align-self: center;
3947
+ -ms-flex-item-align: center;
3948
+ align-self: center;
3949
+ z-index: 2;
 
 
3950
  }
3951
 
3952
+ li.premium-bullet-list-content.premium-bullet-list-content-inline:not(:first-child) {
3953
+ margin: 0 3px;
 
3954
  }
3955
 
3956
+ li.premium-bullet-list-content.premium-bullet-list-content-inline:first-child {
3957
+ margin: 0 0 0 3px;
 
 
 
 
 
 
 
3958
  }
3959
 
3960
+ .premium-bullet-list-divider:not(:last-child) {
3961
+ width: 100%;
3962
+ -webkit-box-flex: 0;
3963
+ -webkit-flex: 0 0 100%;
3964
+ -moz-box-flex: 0;
3965
+ -ms-flex: 0 0 100%;
3966
+ flex: 0 0 100%;
3967
+ overflow: hidden;
3968
  }
3969
 
3970
+ .premium-bullet-list-divider:not(:last-child):after {
3971
+ content: "";
3972
+ display: block;
3973
+ border-top-style: solid;
3974
+ border-top-width: 1px;
3975
  }
3976
 
3977
+ .premium-bullet-list-divider-inline:not(:last-child) {
3978
+ float: left;
3979
+ display: inline-block;
3980
+ position: relative;
3981
+ height: 100%;
3982
+ overflow: hidden;
3983
+ -webkit-align-self: center;
3984
+ -ms-flex-item-align: center;
3985
+ align-self: center;
3986
+ margin: 0 3px;
3987
  }
3988
 
3989
+ .premium-bullet-list-divider-inline:not(:last-child):after {
3990
+ content: "";
3991
+ display: block;
3992
+ border-right-width: 1px;
3993
+ height: 33px;
3994
+ border-right-style: solid;
3995
  }
3996
 
3997
+ .premium-bullet-list-icon-text {
3998
+ line-height: 1.5;
 
 
3999
  }
4000
 
4001
+ .premium-bullet-list-icon-text p,
4002
+ ul.premium-bullet-list-box,
4003
+ li.premium-bullet-list-content {
4004
+ margin: 0;
 
 
 
4005
  }
4006
 
4007
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper i,
4008
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-text span,
4009
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-icon-text p {
4010
+ color: transparent !important;
4011
+ text-shadow: 0 0 3px #aaa;
 
 
4012
  }
4013
 
4014
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-icon-connector-content,
4015
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper .premium-lottie-animation svg,
4016
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper img,
4017
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-badge {
4018
+ -webkit-filter: blur(3px);
4019
+ filter: blur(3px);
4020
  }
4021
 
4022
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper i,
4023
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-text span,
4024
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-icon-text p {
4025
+ color: #aaa !important;
4026
+ text-shadow: 0 0px 0 transparent;
4027
  }
4028
 
4029
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-icon-connector-content,
4030
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper .premium-lottie-animation svg,
4031
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper img,
4032
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-badge {
4033
+ -webkit-filter: none;
4034
+ filter: none;
4035
  }
4036
 
4037
+ .premium-bullet-list-content .premium-bullet-list-badge {
4038
+ font-size: 11px;
4039
+ top: auto;
4040
+ min-width: -webkit-max-content;
4041
+ min-width: -moz-max-content;
4042
+ min-width: max-content;
4043
+ height: -webkit-fit-content;
4044
+ height: -moz-fit-content;
4045
+ height: fit-content;
4046
  }
4047
 
4048
+ .premium-bullet-list-content .premium-bullet-list-icon-text p {
4049
+ font-size: 13px;
 
 
 
4050
  }
4051
 
4052
+ .premium-bullet-list-gradient-effect[data-text] {
4053
+ display: inline-block;
4054
+ position: relative;
4055
+ text-decoration: none;
 
 
 
 
4056
  }
4057
 
4058
+ .premium-bullet-list-gradient-effect[data-text]::before {
4059
+ content: attr(data-text);
4060
+ position: absolute;
4061
+ z-index: 1;
4062
+ overflow: hidden;
4063
+ -webkit-clip-path: polygon(100% 100%, 100% 100%, 50% 50%);
4064
+ clip-path: polygon(100% 100%, 100% 100%, 50% 50%);
4065
+ -webkit-background-clip: text;
4066
+ background-clip: text;
4067
+ -webkit-text-fill-color: transparent;
4068
+ -webkit-transition: all 0.4s ease;
4069
+ transition: all 0.4s ease;
4070
  }
4071
 
4072
+ .premium-bullet-list-content:hover .premium-bullet-list-gradient-effect[data-text]::before,
4073
+ .premium-bullet-list-content:focus .premium-bullet-list-gradient-effect[data-text]::before {
4074
+ -webkit-animation: rtlgradient 1s forwards;
4075
+ animation: rtlgradient 1s forwards;
4076
  }
4077
 
4078
+ @-webkit-keyframes rtlgradient {
4079
+ 0% {
4080
+ -webkit-clip-path: circle(0% at 150% 50%);
4081
+ clip-path: circle(0% at 150% 50%);
4082
+ }
 
 
 
4083
 
4084
+ 100% {
4085
+ -webkit-clip-path: circle(100% at 50% 50%);
4086
+ clip-path: circle(100% at 50% 50%);
4087
+ }
 
4088
  }
4089
 
4090
+ @keyframes rtlgradient {
4091
+ 0% {
4092
+ -webkit-clip-path: circle(0% at 150% 50%);
4093
+ clip-path: circle(0% at 150% 50%);
4094
+ }
4095
 
4096
+ 100% {
4097
+ -webkit-clip-path: circle(100% at 50% 50%);
4098
+ clip-path: circle(100% at 50% 50%);
4099
+ }
4100
  }
4101
 
4102
+ ul[data-list-animation*="animated-"] .premium-bullet-list-divider,
4103
+ ul[data-list-animation*="animated-"] .premium-bullet-list-content,
4104
+ ul[data-list-animation*="animated-"] .premium-bullet-list-divider-inline {
4105
+ opacity: 0;
4106
  }
4107
 
4108
+ .premium-bullet-list-content-grow-effect:hover {
4109
+ -webkit-transform: scale(1.07);
4110
+ -ms-transform: scale(1.07);
4111
+ transform: scale(1.07);
4112
  }
4113
 
4114
+ @-webkit-keyframes spin {
4115
+ 100% {
4116
+ -webkit-transform: rotate(360deg);
4117
+ transform: rotate(360deg);
4118
+ }
4119
  }
4120
 
4121
+ @keyframes spin {
4122
+ 100% {
4123
+ -webkit-transform: rotate(360deg);
4124
+ transform: rotate(360deg);
4125
+ }
4126
+ }
4127
+ /**************** Premium Image Button ***********/
4128
+ /*************************************************/
4129
+ .premium-image-button {
4130
+ -js-display: inline-flex;
4131
+ display: -webkit-inline-box;
4132
+ display: -webkit-inline-flex;
4133
+ display: -moz-inline-box;
4134
+ display: -ms-inline-flexbox;
4135
+ display: inline-flex;
4136
+ position: relative;
4137
+ overflow: hidden;
4138
+ background-color: #eee;
4139
+ cursor: pointer;
4140
+ -webkit-transition: all 0.2s ease-in-out !important;
4141
+ transition: all 0.2s ease-in-out !important;
4142
  }
4143
 
4144
+ .premium-image-button .premium-button-style6-bg,
4145
+ .premium-image-button.premium-button-style6:before,
4146
+ .premium-image-button:not(.premium-image-button-style6):hover {
4147
+ background-color: #54595f;
4148
  }
4149
 
4150
+ /*Default background for slide styles*/
4151
+ .premium-image-button:hover,
4152
+ .premium-image-button-style4-icon-wrapper,
4153
+ .premium-image-button-style1-top:before,
4154
+ .premium-image-button-style1-bottom:before,
4155
+ .premium-image-button-style1-left:before,
4156
+ .premium-image-button-style1-right:before {
4157
+ background-color: #54595f;
4158
  }
4159
 
4160
+ .premium-image-button-text-icon-wrapper {
4161
+ width: 100%;
4162
+ -js-display: flex;
4163
+ display: -webkit-box;
4164
+ display: -webkit-flex;
4165
+ display: -moz-box;
4166
+ display: -ms-flexbox;
4167
+ display: flex;
4168
+ -webkit-box-pack: center;
4169
+ -webkit-justify-content: center;
4170
+ -moz-box-pack: center;
4171
+ -ms-flex-pack: center;
4172
+ justify-content: center;
4173
+ -webkit-box-align: center;
4174
+ -webkit-align-items: center;
4175
+ -moz-box-align: center;
4176
+ -ms-flex-align: center;
4177
+ align-items: center;
4178
+ position: relative;
4179
+ z-index: 3;
4180
+ -webkit-transition: all 0.2s ease-in-out;
4181
+ transition: all 0.2s ease-in-out;
4182
  }
4183
 
4184
+ .premium-image-button-text-icon-wrapper span,
4185
+ .premium-image-button-text-icon-wrapper,
4186
+ .premium-image-button-text-icon-wrapper i,
4187
+ .premium-image-button-text-icon-wrapper svg {
4188
+ -webkit-transition: all 0.2s ease-in-out;
4189
+ transition: all 0.2s ease-in-out;
4190
  }
4191
 
4192
+ .premium-image-button-style1-bottom:before,
4193
+ .premium-image-button-style1-top:before,
4194
+ .premium-image-button-style1-left:before,
4195
+ .premium-image-button-style1-right:before {
4196
+ -webkit-transition: all 0.2s ease-in-out;
4197
+ transition: all 0.2s ease-in-out;
4198
  }
4199
 
4200
+ .premium-image-button-style1-bottom:before {
4201
+ content: "";
4202
+ position: absolute;
4203
+ width: 100%;
4204
+ height: 0;
4205
+ top: 0;
4206
+ right: 0;
4207
  }
4208
 
4209
+ .premium-image-button-style1-top:before {
4210
+ content: "";
4211
+ position: absolute;
4212
+ width: 100%;
4213
+ height: 0;
4214
+ bottom: 0;
4215
+ right: 0;
 
4216
  }
4217
 
4218
+ .premium-image-button-style1-right:before {
4219
+ content: "";
4220
+ position: absolute;
4221
+ width: 0;
4222
+ height: 100%;
4223
+ bottom: 0;
4224
+ right: 0;
4225
  }
4226
 
4227
+ .premium-image-button-style1-left:before {
4228
+ content: "";
4229
+ position: absolute;
4230
+ width: 0;
4231
+ height: 100%;
4232
+ top: 0;
4233
+ left: 0;
4234
  }
4235
 
4236
+ .premium-image-button-style1-bottom:hover:before {
4237
+ height: 100%;
 
4238
  }
4239
 
4240
+ .premium-image-button-style1-top:hover:before {
4241
+ height: 100%;
 
 
4242
  }
4243
 
4244
+ .premium-image-button-style1-right:hover:before {
4245
+ width: 100%;
 
4246
  }
4247
 
4248
+ .premium-image-button-style1-left:hover:before {
4249
+ width: 100%;
4250
  }
4251
 
4252
+ .premium-image-button-diagonal-top,
4253
+ .premium-image-button-diagonal-bottom,
4254
+ .premium-image-button-diagonal-left,
4255
+ .premium-image-button-diagonal-right {
4256
+ z-index: 10;
 
 
 
 
 
 
 
 
 
 
 
4257
  }
4258
 
4259
+ .premium-image-button-diagonal-top:before,
4260
+ .premium-image-button-diagonal-bottom:before,
4261
+ .premium-image-button-diagonal-left:before,
4262
+ .premium-image-button-diagonal-right:before {
4263
+ position: absolute;
4264
+ top: 0px;
4265
+ right: 0px;
4266
+ width: 100%;
4267
+ height: 100%;
4268
+ content: "";
4269
+ z-index: 1;
4270
+ background: rgba(255, 255, 255, 0.2);
4271
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
4272
+ -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
4273
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
4274
+ -webkit-transition: all 0.8s ease-out;
4275
+ transition: all 0.8s ease-out;
4276
  }
4277
 
4278
+ .premium-image-button-diagonal-right:hover:before,
4279
+ .premium-image-button-diagonal-left:before {
4280
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
4281
+ -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
4282
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
4283
  }
4284
 
4285
+ .premium-image-button-diagonal-left:hover:before,
4286
+ .premium-image-button-diagonal-right:before {
4287
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
4288
+ -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
4289
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
4290
  }
4291
 
4292
+ .premium-image-button-diagonal-top:hover:before,
4293
+ .premium-image-button-diagonal-bottom:before {
4294
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
4295
+ -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
4296
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
4297
  }
4298
 
4299
+ .premium-image-button-diagonal-bottom:hover:before,
4300
+ .premium-image-button-diagonal-top:before {
4301
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
4302
+ -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
4303
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
 
 
 
 
 
 
4304
  }
4305
 
4306
+ .premium-image-button-style4-icon-wrapper {
4307
+ position: absolute;
4308
+ z-index: 2;
4309
+ width: 100%;
4310
+ text-align: center;
4311
+ display: -webkit-box;
4312
+ display: -webkit-flex;
4313
+ display: -ms-flexbox;
4314
+ -js-display: flex;
4315
+ display: -moz-box;
4316
+ display: flex;
4317
+ -webkit-box-align: center;
4318
+ -webkit-align-items: center;
4319
+ -moz-box-align: center;
4320
+ -ms-flex-align: center;
4321
+ align-items: center;
4322
+ -webkit-box-pack: center;
4323
+ -webkit-justify-content: center;
4324
+ -moz-box-pack: center;
4325
+ -ms-flex-pack: center;
4326
+ justify-content: center;
4327
+ height: 100%;
4328
+ opacity: 0;
4329
+ -webkit-transition: all 0.3s ease-in-out;
4330
+ transition: all 0.3s ease-in-out;
4331
  }
4332
 
4333
+ .premium-image-button-style4-icon-wrapper.top {
4334
+ bottom: -100%;
4335
+ right: 0;
 
 
 
 
 
4336
  }
4337
 
4338
+ .premium-image-button-style4-icon-wrapper.bottom {
4339
+ top: -100%;
4340
+ right: 0;
 
 
 
 
4341
  }
4342
 
4343
+ .premium-image-button-style4-icon-wrapper.left {
4344
+ top: 0;
4345
+ right: -100%;
4346
  }
4347
 
4348
+ .premium-image-button-style4-icon-wrapper.right {
4349
+ top: 0;
4350
+ left: -100%;
 
 
 
4351
  }
4352
 
4353
+ .premium-image-button-style4-bottom:hover .premium-image-button-style4-icon-wrapper {
4354
+ top: 0;
4355
+ opacity: 1;
4356
  }
4357
 
4358
+ .premium-image-button-style4-top:hover .premium-image-button-style4-icon-wrapper {
4359
+ bottom: 0;
4360
+ opacity: 1;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4361
  }
4362
 
4363
+ .premium-image-button-style4-left:hover .premium-image-button-style4-icon-wrapper {
4364
+ right: 0;
4365
+ opacity: 1;
 
 
4366
  }
4367
 
4368
+ .premium-image-button-style4-right:hover .premium-image-button-style4-icon-wrapper {
4369
+ left: 0;
4370
+ opacity: 1;
 
4371
  }
4372
 
4373
+ .premium-image-button-style4-bottom:hover .premium-image-button-text-icon-wrapper {
4374
+ -webkit-transform: translateY(100%);
4375
+ -ms-transform: translateY(100%);
4376
+ transform: translateY(100%);
4377
+ opacity: 0;
 
 
 
 
 
4378
  }
4379
 
4380
+ .premium-image-button-style4-top:hover .premium-image-button-text-icon-wrapper {
4381
+ -webkit-transform: translateY(-100%);
4382
+ -ms-transform: translateY(-100%);
4383
+ transform: translateY(-100%);
4384
+ opacity: 0;
 
 
 
 
4385
  }
4386
 
4387
+ .premium-image-button-style4-left:hover .premium-image-button-text-icon-wrapper {
4388
+ -webkit-transform: translateX(-100%);
4389
+ -ms-transform: translateX(-100%);
4390
+ transform: translateX(-100%);
4391
+ opacity: 0;
 
 
 
 
4392
  }
4393
 
4394
+ .premium-image-button-style4-right:hover .premium-image-button-text-icon-wrapper {
4395
+ -webkit-transform: translateX(100%);
4396
+ -ms-transform: translateX(100%);
4397
+ transform: translateX(100%);
4398
+ opacity: 0;
 
 
 
 
 
 
 
 
4399
  }
4400
 
4401
+ .premium-image-button-overlap-effect-horizontal:before,
4402
+ .premium-image-button-overlap-effect-vertical:before {
4403
+ position: absolute;
4404
+ content: "";
4405
+ top: 0;
4406
+ right: 0;
4407
+ width: 100%;
4408
+ height: 100%;
4409
+ opacity: 0;
4410
+ -webkit-transition: all 1s ease-in-out;
4411
+ transition: all 1s ease-in-out;
4412
+ background: rgba(255, 255, 255, 0.2);
4413
+ -webkit-animation-name: premium-overlap-effect-done;
4414
+ animation-name: premium-overlap-effect-done;
4415
+ -webkit-animation-duration: 1s;
4416
+ animation-duration: 1s;
4417
  }
4418
 
4419
+ .premium-image-button-overlap-effect-vertical:before {
4420
+ -webkit-animation-name: premium-overlap-ver-effect-done;
4421
+ animation-name: premium-overlap-ver-effect-done;
4422
+ -webkit-animation-duration: 1s;
4423
+ animation-duration: 1s;
 
 
 
 
 
 
 
 
 
 
 
 
4424
  }
4425
 
4426
+ .premium-image-button-overlap-effect-horizontal:hover:before {
4427
+ -webkit-animation-name: premium-overlap-effect;
4428
+ animation-name: premium-overlap-effect;
4429
+ -webkit-animation-duration: 1s;
4430
+ animation-duration: 1s;
4431
  }
4432
 
4433
+ .premium-image-button-overlap-effect-vertical:hover:before {
4434
+ -webkit-animation-name: premium-overlap-ver-effect;
4435
+ animation-name: premium-overlap-ver-effect;
4436
+ -webkit-animation-duration: 1s;
4437
+ animation-duration: 1s;
 
 
 
 
 
 
 
 
4438
  }
4439
 
4440
+ @-webkit-keyframes premium-overlap-effect {
4441
+ 0% {
4442
+ opacity: 0;
4443
+ -webkit-transform: rotateY(0deg);
4444
+ transform: rotateY(0deg);
4445
+ }
4446
+
4447
+ 50% {
4448
+ opacity: 1;
4449
+ -webkit-transform: rotateY(180deg);
4450
+ transform: rotateY(180deg);
4451
+ }
4452
+
4453
+ 100% {
4454
+ opacity: 0;
4455
+ -webkit-transform: rotateY(360deg);
4456
+ transform: rotateY(360deg);
4457
+ }
4458
  }
4459
 
4460
+ @keyframes premium-overlap-effect {
4461
+ 0% {
4462
+ opacity: 0;
4463
+ -webkit-transform: rotateY(0deg);
4464
+ transform: rotateY(0deg);
4465
+ }
4466
+
4467
+ 50% {
4468
+ opacity: 1;
4469
+ -webkit-transform: rotateY(180deg);
4470
+ transform: rotateY(180deg);
4471
+ }
4472
+
4473
+ 100% {
4474
+ opacity: 0;
4475
+ -webkit-transform: rotateY(360deg);
4476
+ transform: rotateY(360deg);
4477
+ }
4478
  }
4479
 
4480
+ @-webkit-keyframes premium-overlap-effect-done {
4481
+ 0% {
4482
+ opacity: 0;
4483
+ -webkit-transform: rotateY(0deg);
4484
+ transform: rotateY(0deg);
4485
+ }
4486
+
4487
+ 50% {
4488
+ opacity: 1;
4489
+ -webkit-transform: rotateY(180deg);
4490
+ transform: rotateY(180deg);
4491
+ }
4492
+
4493
+ 100% {
4494
+ opacity: 0;
4495
+ -webkit-transform: rotateY(360deg);
4496
+ transform: rotateY(360deg);
4497
+ }
4498
  }
4499
 
4500
+ @keyframes premium-overlap-effect-done {
4501
+ 0% {
4502
+ opacity: 0;
4503
+ -webkit-transform: rotateY(0deg);
4504
+ transform: rotateY(0deg);
4505
+ }
4506
+
4507
+ 50% {
4508
+ opacity: 1;
4509
+ -webkit-transform: rotateY(180deg);
4510
+ transform: rotateY(180deg);
4511
+ }
4512
+
4513
+ 100% {
4514
+ opacity: 0;
4515
+ -webkit-transform: rotateY(360deg);
4516
+ transform: rotateY(360deg);
4517
+ }
4518
  }
4519
 
4520
+ @-webkit-keyframes premium-overlap-ver-effect {
4521
+ 0% {
4522
+ opacity: 0;
4523
+ -webkit-transform: rotateX(0deg);
4524
+ transform: rotateX(0deg);
4525
+ }
4526
+
4527
+ 50% {
4528
+ opacity: 1;
4529
+ -webkit-transform: rotateX(180deg);
4530
+ transform: rotateX(180deg);
4531
+ }
4532
+
4533
+ 100% {
4534
+ opacity: 0;
4535
+ -webkit-transform: rotateX(360deg);
4536
+ transform: rotateX(360deg);
4537
+ }
4538
  }
4539
 
4540
+ @keyframes premium-overlap-ver-effect {
4541
+ 0% {
4542
+ opacity: 0;
4543
+ -webkit-transform: rotateX(0deg);
4544
+ transform: rotateX(0deg);
4545
+ }
4546
+
4547
+ 50% {
4548
+ opacity: 1;
4549
+ -webkit-transform: rotateX(180deg);
4550
+ transform: rotateX(180deg);
4551
+ }
4552
+
4553
+ 100% {
4554
+ opacity: 0;
4555
+ -webkit-transform: rotateX(360deg);
4556
+ transform: rotateX(360deg);
4557
+ }
4558
  }
4559
 
4560
+ @-webkit-keyframes premium-overlap-ver-effect-done {
4561
+ 0% {
4562
+ opacity: 0;
4563
+ -webkit-transform: rotateX(0deg);
4564
+ transform: rotateX(0deg);
4565
+ }
4566
+
4567
+ 50% {
4568
+ opacity: 1;
4569
+ -webkit-transform: rotateX(180deg);
4570
+ transform: rotateX(180deg);
4571
+ }
4572
+
4573
+ 100% {
4574
+ opacity: 0;
4575
+ -webkit-transform: rotateX(360deg);
4576
+ transform: rotateX(360deg);
4577
+ }
4578
  }
4579
 
4580
+ @keyframes premium-overlap-ver-effect-done {
4581
+ 0% {
4582
+ opacity: 0;
4583
+ -webkit-transform: rotateX(0deg);
4584
+ transform: rotateX(0deg);
4585
+ }
4586
+
4587
+ 50% {
4588
+ opacity: 1;
4589
+ -webkit-transform: rotateX(180deg);
4590
+ transform: rotateX(180deg);
4591
+ }
4592
+
4593
+ 100% {
4594
+ opacity: 0;
4595
+ -webkit-transform: rotateX(360deg);
4596
+ transform: rotateX(360deg);
4597
+ }
4598
+ }
4599
+ /************ Premium Image Scroll ***************/
4600
+ /*************************************************/
4601
+ .premium-image-scroll-section,
4602
+ .premium-image-scroll-container {
4603
+ -webkit-transition: all 0.3s ease-in-out;
4604
+ transition: all 0.3s ease-in-out;
4605
  }
4606
 
4607
+ .premium-image-scroll-section {
4608
+ position: relative;
4609
+ overflow: hidden;
4610
+ width: 100%;
4611
+ -webkit-mask-image: -webkit-radial-gradient(white, black);
4612
  }
4613
 
4614
+ .premium-image-scroll-container {
4615
+ width: 100%;
 
 
4616
  }
4617
 
4618
+ .premium-image-scroll-container .premium-image-scroll-mask-media {
4619
+ -webkit-mask-repeat: no-repeat;
4620
+ mask-repeat: no-repeat;
4621
+ -webkit-mask-position: center;
4622
+ mask-position: center;
4623
  }
4624
 
4625
+ .premium-container-scroll {
4626
+ overflow: auto;
 
 
4627
  }
4628
 
4629
+ .premium-image-scroll-container .premium-image-scroll-horizontal {
4630
+ position: relative;
4631
+ width: 100%;
4632
+ height: 100%;
4633
  }
4634
 
4635
+ .premium-image-scroll-container .premium-image-scroll-horizontal img {
4636
+ max-width: none;
4637
+ height: 100%;
 
4638
  }
4639
 
4640
+ .premium-image-scroll-container .premium-image-scroll-vertical img {
4641
+ width: 100%;
4642
+ max-width: 100%;
4643
+ height: auto;
4644
  }
4645
 
4646
+ .premium-image-scroll-ver {
4647
+ position: relative;
 
 
4648
  }
4649
 
4650
+ .premium-image-scroll-container .premium-image-scroll-overlay {
4651
+ background: rgba(2, 2, 2, 0.3);
4652
  }
4653
 
4654
+ .premium-image-scroll-container .premium-image-scroll-link,
4655
+ .premium-image-scroll-container .premium-image-scroll-overlay {
4656
+ position: absolute;
4657
+ top: 0;
4658
+ bottom: 0;
4659
+ right: 0;
4660
+ left: 0;
4661
+ z-index: 4;
4662
  }
4663
 
4664
+ .premium-image-scroll-content {
4665
+ display: inline-block;
4666
+ position: absolute;
4667
+ height: auto;
4668
+ top: 50%;
4669
+ right: 50%;
4670
+ text-align: center;
4671
+ z-index: 5;
4672
+ -webkit-transform: translate(50%, -50%);
4673
+ -ms-transform: translate(50%, -50%);
4674
+ transform: translate(50%, -50%);
4675
  }
4676
 
4677
+ .premium-container-scroll-instant .premium-image-scroll-image {
4678
+ -webkit-transition: all 0s ease-in-out !important;
4679
+ transition: all 0s ease-in-out !important;
4680
  }
4681
 
4682
+ .premium-image-scroll-container img {
4683
+ -webkit-transition: -webkit-transform 3s ease-in-out;
4684
+ transition: -webkit-transform 3s ease-in-out;
4685
+ transition: transform 3s ease-in-out;
4686
+ transition: transform 3s ease-in-out, -webkit-transform 3s ease-in-out;
 
 
 
4687
  }
4688
 
4689
+ .premium-image-scroll-container .premium-image-scroll-overlay,
4690
+ .premium-image-scroll-container .premium-image-scroll-content {
4691
+ -webkit-transition: all 0.3s ease-in-out;
4692
+ transition: all 0.3s ease-in-out;
4693
+ opacity: 1;
4694
  }
4695
 
4696
+ .premium-image-scroll-container:hover .premium-image-scroll-overlay {
4697
+ opacity: 0;
 
4698
  }
4699
 
4700
+ .premium-image-scroll-container:hover .premium-image-scroll-content {
4701
+ opacity: 0;
4702
+ visibility: hidden;
 
4703
  }
4704
 
4705
+ .premium-image-scroll-content .premium-image-scroll-icon {
4706
+ display: inline-block;
4707
+ font-family: "pa-elements" !important;
4708
+ speak: none;
4709
+ font-style: normal;
4710
+ font-weight: normal;
4711
+ font-variant: normal;
4712
+ text-transform: none;
4713
+ line-height: 1;
4714
+ -webkit-font-smoothing: antialiased;
4715
+ -moz-osx-font-smoothing: grayscale;
4716
+ -webkit-animation-duration: 0.5s;
4717
+ animation-duration: 0.5s;
4718
+ -webkit-animation-iteration-count: infinite;
4719
+ animation-iteration-count: infinite;
4720
+ -webkit-animation-direction: alternate;
4721
+ animation-direction: alternate;
4722
+ -webkit-animation-timing-function: ease-in-out;
4723
+ animation-timing-function: ease-in-out;
4724
  }
4725
 
4726
+ .pa-horizontal-mouse-scroll:before {
4727
+ content: "\e917";
 
 
4728
  }
4729
 
4730
+ .pa-vertical-mouse-scroll:before {
4731
+ content: "\e918";
4732
  }
4733
 
4734
+ .pa-horizontal-mouse-scroll {
4735
+ -webkit-animation-name: pa-scroll-horizontal;
4736
+ animation-name: pa-scroll-horizontal;
4737
  }
4738
 
4739
+ .pa-vertical-mouse-scroll {
4740
+ -webkit-animation-name: pa-scroll-vertical;
4741
+ animation-name: pa-scroll-vertical;
 
 
4742
  }
4743
 
4744
+ @-webkit-keyframes pa-scroll-vertical {
4745
+ 0% {
4746
+ -webkit-transform: translateY(0px);
4747
+ transform: translateY(0px);
4748
+ }
4749
+
4750
+ 100% {
4751
+ -webkit-transform: translateY(5px);
4752
+ transform: translateY(5px);
4753
+ }
4754
  }
4755
 
4756
+ @keyframes pa-scroll-vertical {
4757
+ 0% {
4758
+ -webkit-transform: translateY(0px);
4759
+ transform: translateY(0px);
4760
+ }
4761
+
4762
+ 100% {
4763
+ -webkit-transform: translateY(5px);
4764
+ transform: translateY(5px);
4765
+ }
4766
  }
4767
 
4768
+ @-webkit-keyframes pa-scroll-horizontal {
4769
+ 0% {
4770
+ -webkit-transform: translateX(0px);
4771
+ transform: translateX(0px);
4772
+ }
4773
+
4774
+ 100% {
4775
+ -webkit-transform: translateX(-5px);
4776
+ transform: translateX(-5px);
4777
+ }
4778
  }
4779
 
4780
+ @keyframes pa-scroll-horizontal {
4781
+ 0% {
4782
+ -webkit-transform: translateX(0px);
4783
+ transform: translateX(0px);
4784
+ }
4785
+
4786
+ 100% {
4787
+ -webkit-transform: translateX(-5px);
4788
+ transform: translateX(-5px);
4789
+ }
4790
+ }
4791
+ /**************** Premium Image Separator ****************/
4792
+ /*********************************************************/
4793
+ /*Image Separator Container Style*/
4794
+ .premium-image-separator-container {
4795
+ position: absolute;
4796
+ width: 100%;
4797
+ z-index: 2;
4798
+ top: auto;
4799
  }
4800
 
4801
+ .premium-image-separator-container img {
4802
+ display: inline-block !important;
4803
+ -webkit-mask-repeat: no-repeat;
4804
+ mask-repeat: no-repeat;
4805
+ -webkit-mask-position: center;
4806
+ mask-position: center;
4807
  }
4808
 
4809
+ /*Link on Image Style*/
4810
+ .premium-image-separator-link {
4811
+ position: absolute;
4812
+ z-index: 9999;
4813
+ top: 0;
4814
+ right: 0;
4815
+ width: 100%;
4816
+ height: 100%;
4817
+ text-decoration: none;
 
 
 
 
 
 
 
4818
  }
4819
 
4820
+ /*Important to override Theme options*/
4821
+ a.premium-image-separator-link:hover,
4822
+ a.premium-image-separator-link:visited,
4823
+ a.premium-image-separator-link:focus,
4824
+ a.premium-image-separator-link:active {
4825
+ -webkit-box-shadow: none !important;
4826
+ box-shadow: none !important;
4827
+ outline: none !important;
4828
+ border: none !important;
4829
+ text-decoration: none !important;
4830
  }
4831
 
4832
+ .premium-image-separator-container .img-responsive {
4833
+ display: inline-block;
 
 
 
 
 
 
4834
  }
4835
 
4836
+ .premium-image-separator-container i,
4837
+ .premium-image-separator-container>svg {
4838
+ padding: 20px;
4839
+ -webkit-transition: all 0.3s ease-in-out;
4840
+ transition: all 0.3s ease-in-out;
4841
+ }
4842
+ /******** Premium Media Grid ********/
4843
+ /************************************/
4844
+ .premium-img-gallery-filter,
4845
+ .premium-blog-filter {
4846
+ display: -webkit-box;
4847
+ display: -webkit-flex;
4848
+ display: -ms-flexbox;
4849
+ -js-display: flex;
4850
+ display: -moz-box;
4851
+ display: flex;
4852
+ -webkit-box-align: center;
4853
+ -webkit-align-items: center;
4854
+ -moz-box-align: center;
4855
+ -ms-flex-align: center;
4856
+ align-items: center;
4857
+ -webkit-box-pack: center;
4858
+ -webkit-justify-content: center;
4859
+ -moz-box-pack: center;
4860
+ -ms-flex-pack: center;
4861
+ justify-content: center;
4862
  }
4863
 
4864
+ .premium-img-gallery {
4865
+ clear: both;
4866
+ overflow: hidden;
4867
+ }
 
 
 
 
 
4868
 
4869
+ .premium-gallery-container .premium-gallery-item {
4870
+ padding: 10px;
4871
+ float: right;
4872
+ /* Google Chrome isotope issue */
 
 
 
 
4873
  }
4874
 
4875
+ .premium-gallery-container .grid-sizer {
4876
+ width: 33.33%;
4877
+ }
 
 
 
 
 
 
4878
 
4879
+ .premium-img-gallery-filter .premium-gallery-cats-container li a.category,
4880
+ .premium-blog-filter .premium-blog-filters-container li a.category {
4881
+ outline: none;
4882
+ text-decoration: none;
4883
+ -webkit-border-radius: 75px;
4884
+ border-radius: 75px;
4885
+ margin: 15px 5px 20px;
4886
+ padding: 7px 20px;
4887
+ -webkit-transition: all 0.3s ease-in-out;
4888
+ transition: all 0.3s ease-in-out;
4889
  }
4890
 
4891
+ .premium-img-gallery-filter .premium-gallery-cats-container li a.category span {
4892
+ -webkit-transition: all 0.3s ease-in-out;
4893
+ transition: all 0.3s ease-in-out;
4894
  }
4895
 
4896
+ .pa-gallery-img {
4897
+ position: relative;
 
 
 
 
 
 
 
 
 
4898
  }
4899
 
4900
+ .pa-gallery-img .pa-gallery-whole-link {
4901
+ position: absolute;
4902
+ top: 0;
4903
+ right: 0;
4904
+ width: 100%;
4905
+ height: 100%;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4906
  }
4907
 
4908
+ .pa-gallery-img.style2 .pa-gallery-whole-link {
4909
+ z-index: 99;
 
 
 
 
 
 
 
 
4910
  }
4911
 
4912
+ .pa-gallery-img-container {
4913
+ overflow: hidden;
4914
+ -webkit-backface-visibility: hidden;
4915
+ -moz-backface-visibility: hidden;
4916
+ -webkit-transform: translate3d(0, 0, 0);
4917
+ transform: translate3d(0, 0, 0);
4918
  }
4919
 
4920
+ .pa-gallery-img-container img {
4921
+ display: block;
4922
+ width: 100%;
4923
+ -webkit-transition: all 0.3s ease-in-out;
4924
+ transition: all 0.3s ease-in-out;
4925
  }
4926
 
4927
+ .premium-img-gallery.gray img {
4928
+ -webkit-filter: grayscale(100%);
4929
+ filter: grayscale(100%);
 
 
 
 
4930
  }
4931
 
4932
+ .premium-img-gallery.zoomout img,
4933
+ .premium-img-gallery.scale img {
4934
+ -webkit-transform: scale(1.2);
4935
+ -ms-transform: scale(1.2);
4936
+ transform: scale(1.2);
4937
  }
4938
 
4939
+ .premium-img-gallery.sepia img {
4940
+ -webkit-filter: sepia(30%);
4941
+ filter: sepia(30%);
 
 
 
 
 
 
 
 
 
 
4942
  }
4943
 
4944
+ .premium-img-gallery.bright img {
4945
+ -webkit-filter: brightness(1);
4946
+ filter: brightness(1);
4947
  }
4948
 
4949
+ .premium-img-gallery.trans img {
4950
+ -webkit-transform: translateX(15px) scale(1.1);
4951
+ -ms-transform: translateX(15px) scale(1.1);
4952
+ transform: translateX(15px) scale(1.1);
4953
  }
4954
 
4955
+ .pa-gallery-img .pa-gallery-magnific-image,
4956
+ .pa-gallery-img .pa-gallery-img-link {
4957
+ outline: none;
 
4958
  }
4959
 
4960
+ .pa-gallery-img .pa-gallery-magnific-image i,
4961
+ .pa-gallery-img .pa-gallery-magnific-image svg,
4962
+ .pa-gallery-img .pa-gallery-img-link i,
4963
+ .pa-gallery-img .pa-gallery-img-link svg {
4964
+ -webkit-transition: all 0.3s ease-in-out;
4965
+ transition: all 0.3s ease-in-out;
4966
  }
4967
 
4968
+ .pa-gallery-img .pa-gallery-magnific-image span,
4969
+ .pa-gallery-img .pa-gallery-img-link span {
4970
+ line-height: 1;
4971
+ display: inline-block;
4972
+ opacity: 0;
4973
+ margin: 0 5px;
4974
+ padding: 15px;
4975
+ -webkit-border-radius: 50%;
4976
+ border-radius: 50%;
4977
  }
4978
 
4979
+ .pa-gallery-img.style2 .pa-gallery-magnific-image span,
4980
+ .pa-gallery-img.style2 .pa-gallery-img-link span {
4981
+ margin: 0 5px 20px;
4982
  }
4983
 
4984
+ .pa-gallery-img:hover .pa-gallery-magnific-image span {
4985
+ -webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
4986
+ transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
4987
  }
4988
 
4989
+ .pa-gallery-img:hover .pa-gallery-img-link span {
4990
+ -webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
4991
+ transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
 
4992
  }
4993
 
4994
+ .pa-gallery-img:hover .pa-gallery-magnific-image span,
4995
+ .pa-gallery-img:hover .pa-gallery-img-link span,
4996
+ .premium-gallery-icon-show a.pa-gallery-video-icon span {
4997
+ opacity: 1;
4998
  }
4999
 
5000
+ .premium-img-gallery-filter ul.premium-gallery-cats-container,
5001
+ .premium-blog-filter ul.premium-blog-filters-container {
5002
+ text-align: center;
5003
+ margin: 0;
5004
+ padding: 0;
5005
  }
5006
 
5007
+ .premium-img-gallery-filter .premium-gallery-cats-container li,
5008
+ .premium-blog-filter .premium-blog-filters-container li {
5009
+ list-style: none;
5010
+ display: -webkit-inline-box;
5011
+ display: -webkit-inline-flex;
5012
+ display: -ms-inline-flexbox;
5013
+ -js-display: inline-flex;
5014
+ display: -moz-inline-box;
5015
+ display: inline-flex;
5016
  }
5017
 
5018
+ .premium-img-gallery.zoomin .pa-gallery-img:hover img {
5019
+ -webkit-transform: scale(1.1);
5020
+ -ms-transform: scale(1.1);
5021
+ transform: scale(1.1);
5022
  }
5023
 
5024
+ .premium-img-gallery.zoomout .pa-gallery-img:hover img {
5025
+ -webkit-transform: scale(1);
5026
+ -ms-transform: scale(1);
5027
+ transform: scale(1);
5028
  }
5029
 
5030
+ .premium-img-gallery.scale .pa-gallery-img:hover img {
5031
+ -webkit-transform: scale(1.3) rotate(-5deg);
5032
+ -ms-transform: scale(1.3) rotate(-5deg);
5033
+ transform: scale(1.3) rotate(-5deg);
5034
  }
5035
 
5036
+ .premium-img-gallery.gray .pa-gallery-img:hover img {
5037
+ -webkit-filter: grayscale(0%);
5038
+ filter: grayscale(0%);
5039
  }
5040
 
5041
+ .premium-img-gallery.blur .pa-gallery-img:hover img {
5042
+ -webkit-filter: blur(3px);
5043
+ filter: blur(3px);
 
5044
  }
5045
 
5046
+ .premium-img-gallery.sepia .pa-gallery-img:hover img {
5047
+ -webkit-filter: sepia(0%);
5048
+ filter: sepia(0%);
 
 
 
 
5049
  }
5050
 
5051
+ .premium-img-gallery.trans .pa-gallery-img:hover img {
5052
+ -webkit-transform: translateX(0px) scale(1.1);
5053
+ -ms-transform: translateX(0px) scale(1.1);
5054
+ transform: translateX(0px) scale(1.1);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5055
  }
5056
 
5057
+ .premium-img-gallery.bright .pa-gallery-img:hover img {
5058
+ -webkit-filter: brightness(1.2);
5059
+ filter: brightness(1.2);
5060
  }
5061
 
5062
+ .pa-gallery-img .premium-gallery-caption {
5063
+ padding: 10px;
5064
  }
5065
 
5066
+ .pa-gallery-img .premium-gallery-caption .premium-gallery-img-name {
5067
+ margin-bottom: 0;
 
 
 
 
 
5068
  }
5069
 
5070
+ .pa-gallery-img.style1 {
5071
+ overflow: hidden;
 
 
 
5072
  }
5073
 
5074
+ .pa-gallery-img:not(.style2) .pa-gallery-icons-wrapper {
5075
+ position: absolute;
5076
+ top: 0;
5077
+ right: 0;
5078
+ width: 100%;
5079
+ height: 100%;
5080
+ -webkit-transition: all 0.3s ease-in-out;
5081
+ transition: all 0.3s ease-in-out;
5082
  }
5083
 
5084
+ .pa-gallery-img:not(.style2) .pa-gallery-icons-inner-container {
5085
+ position: absolute;
5086
+ top: 33.33%;
5087
+ width: 100%;
5088
+ text-align: center;
5089
+ -webkit-transform: translateY(-50%);
5090
+ -ms-transform: translateY(-50%);
5091
+ transform: translateY(-50%);
5092
+ z-index: 999;
5093
  }
5094
 
5095
+ .premium-blog-post-container .premium-blog-entry-container {
5096
+ margin: 0 !important;
 
5097
  }
5098
 
5099
+ .pa-gallery-img.style1 .premium-gallery-caption {
5100
+ position: absolute;
5101
+ top: auto;
5102
+ left: 0;
5103
+ right: 0;
5104
+ width: 100%;
5105
+ -webkit-transition: all 500ms ease 0s;
5106
+ transition: all 500ms ease 0s;
5107
+ -webkit-transform: translate3d(0, 100%, 0);
5108
+ -ms-transform: translate3d(0, 100%, 0);
5109
+ transform: translate3d(0, 100%, 0);
5110
  }
5111
 
5112
+ .pa-gallery-img.default .premium-gallery-caption {
5113
+ position: absolute;
5114
+ top: auto;
5115
+ left: 0;
5116
+ right: 0;
5117
+ width: 100%;
5118
+ bottom: 0;
5119
  }
5120
 
5121
+ .pa-gallery-img.style1:hover .premium-gallery-caption {
5122
+ -webkit-transform: translate3d(0, 0, 0);
5123
+ -ms-transform: translate3d(0, 0, 0);
5124
+ transform: translate3d(0, 0, 0);
5125
+ bottom: -1px !important;
5126
  }
5127
 
5128
+ .pa-gallery-img.style2 .pa-gallery-icons-caption-container {
5129
+ position: absolute;
5130
+ top: 0;
5131
+ right: 0;
5132
+ width: 100%;
5133
+ height: 100%;
5134
+ opacity: 0;
5135
+ -webkit-backface-visibility: hidden;
5136
+ backface-visibility: hidden;
5137
+ -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
5138
+ -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
5139
+ transition: opacity 0.3s, -webkit-transform 0.3s;
5140
+ transition: transform 0.3s, opacity 0.3s;
5141
+ transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
5142
+ z-index: 1;
5143
+ background-color: rgba(108, 191, 226, 0.68);
5144
+ display: -webkit-box;
5145
+ display: -webkit-flex;
5146
+ display: -ms-flexbox;
5147
+ -js-display: flex;
5148
+ display: -moz-box;
5149
+ display: flex;
5150
+ text-align: center;
5151
+ -webkit-box-align: center;
5152
+ -webkit-align-items: center;
5153
+ -moz-box-align: center;
5154
+ -ms-flex-align: center;
5155
+ align-items: center;
5156
  }
5157
 
5158
+ .pa-gallery-img.style2 .pa-gallery-icons-caption-cell {
5159
+ width: 100%;
 
 
 
5160
  }
5161
 
5162
+ .pa-gallery-img.style2:hover .pa-gallery-icons-caption-container {
5163
+ opacity: 1;
5164
+ -webkit-transform: translate(-15px, 15px);
5165
+ -ms-transform: translate(-15px, 15px);
5166
+ transform: translate(-15px, 15px);
5167
  }
5168
 
5169
+ .premium-clearfix {
5170
+ clear: both;
5171
  }
5172
 
5173
+ .premium-gallery-container .pa-gallery-item {
5174
+ padding: 10px;
5175
  }
5176
 
5177
+ /**
5178
+ * Metro Layout
5179
+ */
5180
+ .premium-img-gallery-metro .premium-gallery-item {
5181
+ overflow: hidden;
5182
  }
5183
 
5184
+ .premium-img-gallery-metro .pa-gallery-img {
5185
+ height: 100%;
5186
  }
5187
 
5188
+ .premium-img-gallery-metro .pa-gallery-img-container {
5189
+ height: 100%;
5190
  }
5191
 
5192
+ .premium-img-gallery-metro .pa-gallery-img-container img {
5193
+ min-height: 100%;
5194
+ width: 100%;
5195
+ -o-object-fit: fill;
5196
+ object-fit: fill;
5197
  }
5198
 
5199
+ .premium-img-gallery .premium-gallery-item-hidden {
5200
+ visibility: hidden;
5201
+ width: 0 !important;
5202
+ height: 0 !important;
5203
+ margin: 0 !important;
5204
+ padding: 0 !important;
5205
  }
5206
 
5207
+ .premium-gallery-load-more .premium-gallery-load-more-btn {
5208
+ -webkit-box-shadow: none;
5209
+ box-shadow: none;
5210
+ text-shadow: none;
5211
+ border: none;
5212
+ outline: none;
5213
+ -webkit-box-align: center;
5214
+ -ms-flex-align: center;
5215
+ -webkit-align-items: center;
5216
+ -moz-box-align: center;
5217
+ align-items: center;
5218
+ vertical-align: bottom;
5219
+ cursor: pointer;
5220
+ line-height: 1;
5221
+ font-style: normal;
5222
+ font-weight: normal;
5223
+ background-image: none;
5224
+ color: #fff;
5225
+ -webkit-transition: all 0.3s ease-in-out;
5226
+ transition: all 0.3s ease-in-out;
5227
  }
5228
 
5229
+ .premium-gallery-load-more-btn {
5230
+ display: -webkit-inline-box;
5231
+ display: -webkit-inline-flex;
5232
+ display: -ms-inline-flexbox;
5233
+ -js-display: inline-flex;
5234
+ display: -moz-inline-box;
5235
+ display: inline-flex;
5236
+ -webkit-box-align: center;
5237
+ -webkit-align-items: center;
5238
+ -moz-box-align: center;
5239
+ -ms-flex-align: center;
5240
+ align-items: center;
5241
  }
5242
 
5243
+ .premium-gallery-load-more-btn div {
5244
+ margin-right: 3px;
5245
  }
5246
 
5247
+ .premium-gallery-load-more-btn .premium-loader {
5248
+ display: inline-block;
5249
+ width: 20px;
5250
+ height: 20px;
5251
  }
5252
 
5253
+ /** * Video */
5254
+ .pa-gallery-img .pa-gallery-lightbox-wrap {
5255
+ display: inline-block;
5256
  }
5257
 
5258
+ .premium-img-gallery-no-lightbox .premium-gallery-video-item .pa-gallery-img,
5259
+ .pa-gallery-img .pa-gallery-video-icon {
5260
+ cursor: pointer;
5261
  }
5262
 
5263
+ .pa-gallery-img-container iframe,
5264
+ .pa-gallery-img-container video {
5265
+ position: absolute;
5266
+ visibility: hidden;
5267
+ top: 0;
5268
+ right: 0;
5269
+ max-width: 100%;
5270
+ width: 100%;
5271
+ height: 100%;
5272
+ margin: 0;
5273
+ line-height: 1;
5274
+ border: none;
5275
  }
5276
 
5277
+ .pa-gallery-img-container video {
5278
+ -o-object-fit: contain;
5279
+ object-fit: contain;
 
5280
  }
5281
 
5282
+ .pa-gallery-icons-inner-container svg,
5283
+ .pa-gallery-icons-caption-cell svg {
5284
+ width: 14px;
5285
+ height: 14px;
5286
  }
5287
 
5288
+ .premium-gallery-gradient-layer {
5289
+ position: absolute;
5290
+ bottom: 40px;
5291
+ width: 100%;
5292
+ height: 20px;
5293
+ background: -webkit-gradient(linear, left bottom, left top, from(#17181f), to(rgba(255, 255, 255, 0)));
5294
+ background: -webkit-linear-gradient(bottom, #17181f 0%, rgba(255, 255, 255, 0) 100%);
5295
+ background: linear-gradient(to top, #17181f 0%, rgba(255, 255, 255, 0) 100%);
 
 
 
 
5296
  }
5297
 
5298
+ /********* Premium Lottie Animations **********/
5299
+ /**********************************************/
5300
+ .elementor-widget-premium-lottie .premium-lottie-animation {
5301
+ position: relative;
5302
+ -js-display: inline-flex;
5303
+ display: -webkit-inline-box;
5304
+ display: -webkit-inline-flex;
5305
+ display: -moz-inline-box;
5306
+ display: -ms-inline-flexbox;
5307
+ display: inline-flex;
5308
+ -webkit-transition: all 0.3s ease-in-out;
5309
+ transition: all 0.3s ease-in-out;
5310
  }
5311
 
5312
+ .elementor-widget-premium-lottie .premium-lottie-animation a {
5313
+ position: absolute;
5314
+ left: 0;
5315
+ top: 0;
5316
+ width: 100%;
5317
+ height: 100%;
5318
+ z-index: 2;
5319
  }
5320
+ /**************** Premium Google Maps ******************/
5321
+ /*******************************************************/
5322
+ .premium-maps-info-container {
5323
+ margin-top: 10px;
5324
+ margin-bottom: 10px;
 
 
 
 
 
5325
  }
5326
 
5327
+ .premium-maps-info-title,
5328
+ .premium-maps-info-desc {
5329
+ margin: 0;
5330
+ padding: 0;
5331
  }
5332
 
5333
+ .premium-maps-container .gm-style-iw {
5334
+ text-align: center;
5335
+ direction: ltr;
5336
  }
5337
 
5338
+ .premium-maps-container .gm-style img {
5339
+ max-width: none !important;
5340
+ }
5341
+ /**************** Premium Modal Box ****************/
5342
+ /***************************************************/
5343
+ .premium-modal-trigger-btn,
5344
+ .premium-modal-box-modal-lower-close {
5345
+ display: inline-block;
5346
+ padding: 6px 12px;
5347
+ margin-bottom: 0;
5348
+ font-size: 14px;
5349
+ font-weight: normal;
5350
+ line-height: 1.42857143;
5351
+ text-align: center;
5352
+ white-space: nowrap;
5353
+ vertical-align: middle;
5354
+ -ms-touch-action: manipulation;
5355
+ touch-action: manipulation;
5356
+ cursor: pointer;
5357
+ -webkit-user-select: none;
5358
+ -moz-user-select: none;
5359
+ -ms-user-select: none;
5360
+ user-select: none;
5361
+ background-image: none;
5362
+ border: 1px solid transparent;
5363
  }
5364
 
5365
+ .premium-modal-trigger-btn>svg,
5366
+ .premium-modal-trigger-btn .premium-modal-box-icon {
5367
+ -webkit-transition: all 0.3s ease-in-out;
5368
+ transition: all 0.3s ease-in-out;
 
 
 
5369
  }
5370
 
5371
+ .premium-modal-trigger-btn>svg {
5372
+ width: 30px;
5373
+ height: 30px;
5374
  }
5375
 
5376
+ .premium-modal-box-modal-close {
5377
+ float: left;
5378
+ font-size: 21px;
5379
+ font-weight: bold;
5380
+ line-height: 1;
5381
+ color: #000;
5382
  }
5383
 
5384
+ .premium-modal-box-modal-close:hover,
5385
+ .premium-modal-box-modal-close:focus {
5386
+ color: #000;
5387
+ text-decoration: none;
5388
+ cursor: pointer;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5389
  }
5390
 
5391
+ button.premium-modal-box-modal-close {
5392
+ -webkit-appearance: none;
5393
+ padding: 0;
5394
+ cursor: pointer;
5395
+ background: transparent;
5396
+ border: 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5397
  }
5398
 
5399
+ .premium-modal-box-modal {
5400
+ position: fixed;
5401
+ top: 0;
5402
+ left: 0;
5403
+ bottom: 0;
5404
+ right: 0;
5405
+ z-index: 1050;
5406
+ display: none;
5407
+ -webkit-overflow-scrolling: touch;
5408
+ outline: 0;
5409
+ padding: 0 !important;
5410
+ background: rgba(0, 0, 0, 0.5);
5411
+ -webkit-box-align: center;
5412
+ -webkit-align-items: center;
5413
+ -moz-box-align: center;
5414
+ -ms-flex-align: center;
5415
+ align-items: center;
5416
+ -webkit-box-pack: center;
5417
+ -webkit-justify-content: center;
5418
+ -moz-box-pack: center;
5419
+ -ms-flex-pack: center;
5420
+ justify-content: center;
5421
  }
5422
 
5423
+ .premium-modal-box-modal .premium-modal-box-modal-dialog {
5424
+ position: absolute;
5425
+ max-height: -webkit-calc(100vh - 150px);
5426
+ max-height: calc(100vh - 150px);
5427
+ -js-display: flex;
5428
+ display: -webkit-box;
5429
+ display: -webkit-flex;
5430
+ display: -moz-box;
5431
+ display: -ms-flexbox;
5432
+ display: flex;
5433
+ -webkit-box-orient: vertical;
5434
+ -webkit-box-direction: normal;
5435
+ -webkit-flex-direction: column;
5436
+ -moz-box-orient: vertical;
5437
+ -moz-box-direction: normal;
5438
+ -ms-flex-direction: column;
5439
+ flex-direction: column;
5440
+ opacity: 0;
5441
+ background-color: #fff;
5442
+ border: 1px solid rgba(0, 0, 0, 0.2);
5443
+ -webkit-border-radius: 6px;
5444
+ border-radius: 6px;
5445
  }
5446
 
5447
+ .premium-modal-box-modal-content {
5448
+ background-clip: padding-box;
5449
+ outline: 0;
5450
+ overflow-x: hidden;
5451
  }
5452
 
5453
+ .premium-modal-backdrop.premium-in {
5454
+ filter: alpha(opacity=50);
5455
+ opacity: 0.5 !important;
5456
  }
5457
 
5458
+ .premium-modal-fade.premium-in {
5459
+ opacity: 1;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5460
  }
5461
 
5462
+ .premium-modal-backdrop {
5463
+ position: fixed;
5464
+ top: 0;
5465
+ left: 0;
5466
+ bottom: 0;
5467
+ right: 0;
5468
+ z-index: 1040;
5469
+ background-color: #000;
5470
  }
5471
 
5472
+ .premium-modal-backdrop.premium-modal-fade {
5473
+ filter: alpha(opacity=0);
5474
+ opacity: 0;
5475
  }
5476
 
5477
+ .premium-modal-fade {
5478
+ opacity: 0;
5479
  }
5480
 
5481
+ .premium-in {
5482
+ -js-display: flex !important;
5483
+ display: -webkit-box !important;
5484
+ display: -webkit-flex !important;
5485
+ display: -moz-box !important;
5486
+ display: -ms-flexbox !important;
5487
+ display: flex !important;
5488
  }
5489
 
5490
+ .premium-modal-box-modal-header {
5491
+ -js-display: flex;
5492
+ display: -webkit-box;
5493
+ display: -webkit-flex;
5494
+ display: -moz-box;
5495
+ display: -ms-flexbox;
5496
+ display: flex;
5497
+ -webkit-box-pack: justify;
5498
+ -webkit-justify-content: space-between;
5499
+ -moz-box-pack: justify;
5500
+ -ms-flex-pack: justify;
5501
+ justify-content: space-between;
5502
+ -webkit-box-align: center;
5503
+ -webkit-align-items: center;
5504
+ -moz-box-align: center;
5505
+ -ms-flex-align: center;
5506
+ align-items: center;
5507
+ padding: 5px 15px;
5508
+ border-bottom: 1px solid #e5e5e5;
5509
  }
5510
 
5511
+ .premium-modal-box-modal-header .premium-modal-box-modal-close {
5512
+ margin-top: -2px;
 
 
5513
  }
5514
 
5515
+ .premium-modal-box-modal-header .premium-modal-box-modal-title {
5516
+ -js-display: flex;
5517
+ display: -webkit-box;
5518
+ display: -webkit-flex;
5519
+ display: -moz-box;
5520
+ display: -ms-flexbox;
5521
+ display: flex;
5522
+ -webkit-box-align: center;
5523
+ -webkit-align-items: center;
5524
+ -moz-box-align: center;
5525
+ -ms-flex-align: center;
5526
+ align-items: center;
5527
+ margin: 0;
5528
+ padding: 0;
5529
  }
5530
 
5531
+ .premium-modal-box-modal-header .premium-modal-box-modal-title svg {
5532
+ width: 50px;
5533
+ height: 60px;
 
5534
  }
5535
 
5536
+ .premium-modal-box-modal-body {
5537
+ position: relative;
5538
+ padding: 15px;
 
 
 
5539
  }
5540
 
5541
+ .premium-modal-box-modal-footer {
5542
+ padding: 15px;
5543
+ text-align: left;
5544
+ border-top: 1px solid #e5e5e5;
5545
  }
5546
 
5547
+ .premium-modal-scrollbar-measure {
5548
+ position: absolute;
5549
+ top: -9999px;
5550
+ width: 50px;
5551
+ height: 50px;
5552
+ overflow: scroll;
5553
  }
5554
 
5555
+ .premium-modal-trigger-text {
5556
+ background: none !important;
5557
+ display: inline-block;
5558
  }
5559
 
5560
+ .premium-modal-box-container {
5561
+ width: 100% !important;
 
 
 
5562
  }
5563
 
5564
+ /*Open Modal Button Style*/
5565
+ .premium-modal-trigger-container .premium-modal-trigger-btn {
5566
+ -js-display: inline-flex;
5567
+ display: -webkit-inline-box;
5568
+ display: -webkit-inline-flex;
5569
+ display: -moz-inline-box;
5570
+ display: -ms-inline-flexbox;
5571
+ display: inline-flex;
5572
+ -webkit-box-align: center;
5573
+ -webkit-align-items: center;
5574
+ -moz-box-align: center;
5575
+ -ms-flex-align: center;
5576
+ align-items: center;
5577
+ border: none;
5578
+ -webkit-transition: all 0.3s ease-in-out;
5579
+ transition: all 0.3s ease-in-out;
5580
  }
5581
 
5582
+ .premium-modal-trigger-container .premium-modal-trigger-btn.premium-btn-block {
5583
+ -webkit-box-pack: center;
5584
+ -webkit-justify-content: center;
5585
+ -moz-box-pack: center;
5586
+ -ms-flex-pack: center;
5587
+ justify-content: center;
5588
  }
5589
 
5590
+ .premium-modal-trigger-container .premium-modal-trigger-img,
5591
+ .premium-modal-trigger-container .premium-modal-trigger-text,
5592
+ .premium-modal-trigger-container .premium-modal-trigger-animation {
5593
+ cursor: pointer;
5594
  }
5595
 
5596
+ .premium-modal-trigger-container .premium-modal-trigger-animation {
5597
+ display: inline-block;
5598
+ width: 200px;
5599
+ height: 200px;
5600
+ -webkit-transition: all 0.3s ease-in-out;
5601
+ transition: all 0.3s ease-in-out;
5602
  }
5603
 
5604
+ /*Image on Modal Header Style*/
5605
+ .premium-modal-box-modal-header img {
5606
+ width: 48px;
5607
+ padding-left: 5px;
5608
  }
5609
 
5610
+ .premium-modal-box-modal-header i,
5611
+ .premium-modal-box-modal-header svg {
5612
+ padding-left: 6px;
 
 
5613
  }
5614
 
5615
+ .premium-modal-box-modal-close {
5616
+ position: relative;
5617
+ z-index: 99;
 
 
 
5618
  }
5619
 
5620
+ .premium-modal-trigger-img,
5621
+ .premium-modal-trigger-text,
5622
+ .premium-modal-box-close-button-container,
5623
+ .premium-modal-box-modal-close,
5624
+ .premium-modal-box-modal-lower-close {
5625
+ -webkit-transition: all 0.3s ease-in-out;
5626
+ transition: all 0.3s ease-in-out;
5627
  }
5628
 
5629
+ @media (min-width: 768px) {
5630
+ .premium-modal-box-modal-dialog {
5631
+ width: 700px;
5632
+ max-height: 600px;
5633
+ overflow: auto;
5634
+ }
5635
  }
5636
 
5637
+ @media (max-width: 767px) {
5638
+ .premium-modal-box-modal-dialog {
5639
+ width: 100%;
5640
+ max-height: 500px;
5641
+ overflow: auto;
5642
+ }
5643
  }
5644
 
5645
+ .premium-modal-box-container[data-modal-animation*="animated-"] {
5646
+ opacity: 0;
5647
+ }
5648
+ /************ Premium Team Members ************/
5649
+ /*********************************************/
5650
+ .premium-person-container {
5651
+ position: relative;
 
 
 
 
 
 
 
5652
  }
5653
 
5654
+ .premium-person-image-container {
5655
+ position: relative;
5656
+ text-align: center;
5657
+ overflow: hidden;
5658
  }
5659
 
5660
+ .premium-person-image-container .premium-person-image-wrap {
5661
+ overflow: hidden;
 
5662
  }
5663
 
5664
+ .premium-person-zoomout-effect .premium-person-image-container img,
5665
+ .premium-person-scale-effect .premium-person-image-container img {
5666
+ -webkit-transform: scale(1.2);
5667
+ -ms-transform: scale(1.2);
5668
+ transform: scale(1.2);
5669
  }
5670
 
5671
+ .premium-person-sepia-effect .premium-person-image-container img {
5672
+ -webkit-filter: sepia(30%);
5673
+ filter: sepia(30%);
5674
  }
5675
 
5676
+ .premium-person-bright-effect .premium-person-image-container img {
5677
+ -webkit-filter: brightness(1);
5678
+ filter: brightness(1);
 
 
 
 
 
5679
  }
5680
 
5681
+ .premium-person-trans-effect .premium-person-image-container img {
5682
+ -webkit-transform: translateX(15px) scale(1.1);
5683
+ -ms-transform: translateX(15px) scale(1.1);
5684
+ transform: translateX(15px) scale(1.1);
5685
  }
5686
 
5687
+ .premium-person-zoomin-effect:hover .premium-person-image-container img {
5688
+ -webkit-transform: scale(1.2);
5689
+ -ms-transform: scale(1.2);
5690
+ transform: scale(1.2);
5691
+ }
5692
 
5693
+ .premium-person-zoomout-effect:hover .premium-person-image-container img {
5694
+ -webkit-transform: scale(1.1);
5695
+ -ms-transform: scale(1.1);
5696
+ transform: scale(1.1);
5697
+ }
5698
 
5699
+ .premium-person-scale-effect:hover .premium-person-image-container img {
5700
+ -webkit-transform: scale(1.3) rotate(-5deg);
5701
+ -ms-transform: scale(1.3) rotate(-5deg);
5702
+ transform: scale(1.3) rotate(-5deg);
5703
+ }
5704
 
5705
+ .premium-person-grayscale-effect:hover .premium-person-image-container img {
5706
+ -webkit-filter: grayscale(100%);
5707
+ filter: grayscale(100%);
5708
  }
5709
 
5710
+ .premium-person-blur-effect:hover .premium-person-image-container img {
5711
+ -webkit-filter: blur(3px);
5712
+ filter: blur(3px);
5713
+ }
5714
 
5715
+ .premium-person-sepia-effect:hover .premium-person-image-container img {
5716
+ -webkit-filter: sepia(0%);
5717
+ filter: sepia(0%);
5718
+ }
5719
 
5720
+ .premium-person-bright-effect:hover .premium-person-image-container img {
5721
+ -webkit-filter: brightness(1.2);
5722
+ filter: brightness(1.2);
5723
+ }
5724
 
5725
+ .premium-person-trans-effect:hover .premium-person-image-container img {
5726
+ -webkit-transform: translateX(0px) scale(1.1);
5727
+ -ms-transform: translateX(0px) scale(1.1);
5728
+ transform: translateX(0px) scale(1.1);
5729
  }
5730
 
5731
+ .premium-person-container .premium-person-image-container img {
5732
+ width: 100%;
5733
+ height: 100%;
5734
+ -o-object-fit: cover;
5735
+ object-fit: cover;
5736
+ -webkit-transition: all 0.5s ease-in-out;
5737
+ transition: all 0.5s ease-in-out;
5738
+ }
5739
 
5740
+ .premium-person-style2 .premium-person-social {
5741
+ position: absolute;
5742
+ top: 0;
5743
+ right: 0;
5744
+ width: 100%;
5745
+ height: 100%;
5746
+ z-index: 2;
5747
+ -js-display: flex;
5748
+ display: -webkit-box;
5749
+ display: -webkit-flex;
5750
+ display: -moz-box;
5751
+ display: -ms-flexbox;
5752
+ display: flex;
5753
+ -webkit-box-pack: center;
5754
+ -webkit-justify-content: center;
5755
+ -moz-box-pack: center;
5756
+ -ms-flex-pack: center;
5757
+ justify-content: center;
5758
+ -webkit-box-align: center;
5759
+ -webkit-align-items: center;
5760
+ -moz-box-align: center;
5761
+ -ms-flex-align: center;
5762
+ align-items: center;
5763
+ -webkit-box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
5764
+ box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
5765
+ -webkit-transition: all 0.5s linear 0s;
5766
+ transition: all 0.5s linear 0s;
5767
+ opacity: 0;
5768
  }
5769
 
5770
+ .premium-person-style2 .premium-person-image-container:hover .premium-person-social {
5771
+ opacity: 1;
5772
+ }
 
5773
 
5774
+ .premium-person-list-item a {
5775
+ display: inline-block;
 
5776
  }
5777
 
5778
+ .premium-person-style2 .premium-person-list-item a {
5779
+ opacity: 0;
5780
+ -webkit-transform: scale(0);
5781
+ -ms-transform: scale(0);
5782
+ transform: scale(0);
5783
+ -webkit-transition: all 0.5s ease-in-out 0s;
5784
+ transition: all 0.5s ease-in-out 0s;
5785
+ }
5786
 
5787
+ .premium-person-style2 .premium-person-image-container:hover .premium-person-list-item a {
5788
+ opacity: 1;
5789
+ -webkit-transform: scale(1);
5790
+ -ms-transform: scale(1);
5791
+ transform: scale(1);
5792
  }
5793
 
5794
+ .premium-person-info-container {
5795
+ padding: 30px 15px;
5796
+ }
 
 
 
5797
 
5798
+ .premium-person-name {
5799
+ margin: 0 0 5px;
5800
+ font-weight: 700;
 
 
5801
  }
5802
 
5803
+ .premium-person-title {
5804
+ margin: 0 0 20px;
5805
+ padding: 0;
5806
+ }
 
 
5807
 
5808
+ .premium-person-content {
5809
+ margin: 0 0 30px;
 
 
 
5810
  }
5811
 
5812
+ /*Override Theme List Margin*/
5813
+ ul.premium-person-social-list {
5814
+ margin: 0px !important;
5815
+ padding: 0;
5816
+ }
 
5817
 
5818
+ .premium-person-social-list .premium-person-list-item {
5819
+ display: inline;
5820
+ list-style: none;
 
 
5821
  }
5822
 
5823
+ .premium-person-social-list li {
5824
+ position: relative;
5825
+ bottom: 0px;
5826
+ -webkit-transition: all 0.2s ease-in-out;
5827
+ transition: all 0.2s ease-in-out;
5828
+ }
5829
 
5830
+ .premium-person-social-list li i {
5831
+ position: relative;
5832
+ bottom: 0px;
5833
+ -webkit-transition: all 0.2s ease-in-out;
5834
+ transition: all 0.2s ease-in-out;
5835
+ }
5836
 
5837
+ .premium-person-defaults-yes li.premium-person-facebook:hover a {
5838
+ background-color: #3b5998 !important;
5839
+ }
5840
 
5841
+ .premium-person-defaults-yes li.premium-person-twitter:hover a {
5842
+ background-color: #55acee !important;
 
 
 
5843
  }
5844
 
5845
+ .premium-person-defaults-yes li.premium-person-linkedin:hover a {
5846
+ background-color: #0077b5 !important;
5847
+ }
 
 
 
5848
 
5849
+ .premium-person-defaults-yes li.premium-person-google:hover a {
5850
+ background-color: #dc4e41 !important;
5851
+ }
 
 
5852
 
5853
+ .premium-person-defaults-yes li.premium-person-youtube:hover a {
5854
+ background-color: #b31217 !important;
5855
+ }
5856
 
5857
+ .premium-person-defaults-yes li.premium-person-instagram:hover a {
5858
+ background-color: #e4405f !important;
 
 
 
5859
  }
5860
 
5861
+ .premium-person-defaults-yes li.premium-person-skype:hover a {
5862
+ background-color: #00aff0 !important;
5863
+ }
 
 
 
5864
 
5865
+ .premium-person-defaults-yes li.premium-person-pinterest:hover a {
5866
+ background-color: #bd081c !important;
5867
+ }
 
 
5868
 
5869
+ .premium-person-defaults-yes li.premium-person-dribbble:hover a {
5870
+ background-color: #ea4c89 !important;
5871
+ }
5872
 
5873
+ .premium-person-defaults-yes li.premium-person-mail:hover a {
5874
+ background-color: #b23121 !important;
 
 
 
5875
  }
5876
 
5877
+ .premium-person-defaults-yes li.premium-person-behance:hover a {
5878
+ background-color: #1769ff !important;
5879
+ }
 
 
 
5880
 
5881
+ .premium-person-defaults-yes li.premium-person-whatsapp:hover a {
5882
+ background-color: #25d366 !important;
5883
+ }
 
 
5884
 
5885
+ .premium-person-defaults-yes li.premium-person-telegram:hover a {
5886
+ background-color: #0088cc !important;
5887
+ }
5888
 
5889
+ .premium-person-defaults-yes li.premium-person-site:hover a {
5890
+ background-color: #0055a5 !important;
5891
+ }
5892
+
5893
+ .premium-person-social-list li:hover a {
5894
+ -webkit-box-shadow: none;
5895
+ box-shadow: none;
5896
+ }
5897
+
5898
+ .premium-person-social-list li a:focus {
5899
+ -webkit-box-shadow: none;
5900
+ box-shadow: none;
5901
+ outline: none;
5902
+ }
5903
+
5904
+ .premium-person-social-list li i {
5905
+ font-size: 18px;
5906
+ }
5907
+
5908
+ .elementor-widget-premium-addon-person .elementor-widget-container {
5909
+ -js-display: flex;
5910
+ display: -webkit-box;
5911
+ display: -webkit-flex;
5912
+ display: -moz-box;
5913
+ display: -ms-flexbox;
5914
+ display: flex;
5915
+ -webkit-box-pack: center;
5916
+ -webkit-justify-content: center;
5917
+ -moz-box-pack: center;
5918
+ -ms-flex-pack: center;
5919
+ justify-content: center;
5920
+ }
5921
+
5922
+ .premium-persons-container.multiple-persons {
5923
+ -js-display: flex;
5924
+ display: -webkit-box;
5925
+ display: -webkit-flex;
5926
+ display: -moz-box;
5927
+ display: -ms-flexbox;
5928
+ display: flex;
5929
+ -webkit-flex-wrap: wrap;
5930
+ -ms-flex-wrap: wrap;
5931
+ flex-wrap: wrap;
5932
+ width: 100%;
5933
+ }
5934
+
5935
+ .premium-person-style1 .premium-person-container {
5936
+ overflow: hidden;
5937
+ }
5938
+
5939
+ .premium-person-style1 .premium-person-container .premium-person-info {
5940
+ position: absolute;
5941
+ top: auto;
5942
+ left: 0;
5943
+ right: 0;
5944
+ -webkit-transition: all 500ms ease 0s;
5945
+ transition: all 500ms ease 0s;
5946
+ -webkit-transform: translate3d(0, 100%, 0);
5947
+ transform: translate3d(0, 100%, 0);
5948
+ }
5949
+
5950
+ .premium-person-style1 .premium-person-container:hover .premium-person-info {
5951
+ -webkit-transform: translate3d(0, 0, 0);
5952
+ transform: translate3d(0, 0, 0);
5953
+ bottom: -1px !important;
5954
+ }
5955
+
5956
+ .premium-person-style1 .premium-person-social-list li:hover {
5957
+ bottom: 5px;
5958
+ }
5959
+
5960
+ .premium-person-style1.multiple-persons:not([data-persons-equal="yes"]) {
5961
+ -webkit-box-align: start;
5962
+ -webkit-align-items: flex-start;
5963
+ -moz-box-align: start;
5964
+ -ms-flex-align: start;
5965
+ align-items: flex-start;
5966
+ }
5967
+
5968
+ .premium-person-style1 .slick-track {
5969
+ -js-display: flex;
5970
+ display: -webkit-box;
5971
+ display: -webkit-flex;
5972
+ display: -moz-box;
5973
+ display: -ms-flexbox;
5974
+ display: flex;
5975
+ }
5976
+
5977
+ .premium-person-style1 .slick-slide {
5978
+ height: inherit !important;
5979
+ }
5980
+
5981
+ .premium-person-style1.multiple-persons[data-persons-equal="yes"] .premium-person-image-container,
5982
+ .premium-person-style1.multiple-persons[data-persons-equal="yes"] .premium-person-image-wrap {
5983
+ height: 100%;
5984
+ }
5985
+
5986
+ .premium-person-style3 .premium-person-info-container {
5987
+ position: absolute;
5988
+ top: 0;
5989
+ right: 0;
5990
+ width: 100%;
5991
+ height: 100%;
5992
+ -js-display: flex;
5993
+ display: -webkit-box;
5994
+ display: -webkit-flex;
5995
+ display: -moz-box;
5996
+ display: -ms-flexbox;
5997
+ display: flex;
5998
+ -webkit-box-orient: vertical;
5999
+ -webkit-box-direction: normal;
6000
+ -webkit-flex-direction: column;
6001
+ -moz-box-orient: vertical;
6002
+ -moz-box-direction: normal;
6003
+ -ms-flex-direction: column;
6004
+ flex-direction: column;
6005
+ -webkit-box-pack: justify;
6006
+ -webkit-justify-content: space-between;
6007
+ -moz-box-pack: justify;
6008
+ -ms-flex-pack: justify;
6009
+ justify-content: space-between;
6010
+ }
6011
+
6012
+ .premium-person-style3 .premium-person-title-desc-wrap {
6013
+ -js-display: flex;
6014
+ display: -webkit-box;
6015
+ display: -webkit-flex;
6016
+ display: -moz-box;
6017
+ display: -ms-flexbox;
6018
+ display: flex;
6019
+ -webkit-box-orient: horizontal;
6020
+ -webkit-box-direction: reverse;
6021
+ -webkit-flex-direction: row-reverse;
6022
+ -moz-box-orient: horizontal;
6023
+ -moz-box-direction: reverse;
6024
+ -ms-flex-direction: row-reverse;
6025
+ flex-direction: row-reverse;
6026
+ -webkit-box-pack: justify;
6027
+ -webkit-justify-content: space-between;
6028
+ -moz-box-pack: justify;
6029
+ -ms-flex-pack: justify;
6030
+ justify-content: space-between;
6031
+ -webkit-box-align: start;
6032
+ -webkit-align-items: flex-start;
6033
+ -moz-box-align: start;
6034
+ -ms-flex-align: start;
6035
+ align-items: flex-start;
6036
+ }
6037
+
6038
+ .premium-person-style3 .premium-person-name-icons-wrap {
6039
+ -js-display: flex;
6040
+ display: -webkit-box;
6041
+ display: -webkit-flex;
6042
+ display: -moz-box;
6043
+ display: -ms-flexbox;
6044
+ display: flex;
6045
+ -webkit-box-pack: justify;
6046
+ -webkit-justify-content: space-between;
6047
+ -moz-box-pack: justify;
6048
+ -ms-flex-pack: justify;
6049
+ justify-content: space-between;
6050
+ -webkit-box-align: end;
6051
+ -webkit-align-items: flex-end;
6052
+ -moz-box-align: end;
6053
+ -ms-flex-align: end;
6054
+ align-items: flex-end;
6055
+ }
6056
+
6057
+ .premium-person-style3 .premium-person-title {
6058
+ opacity: 0;
6059
+ -webkit-transition: all 0.3s ease;
6060
+ transition: all 0.3s ease;
6061
+ width: 0;
6062
+ }
6063
+
6064
+ .premium-person-style3 .premium-person-title span {
6065
+ display: inline-block;
6066
+ }
6067
+
6068
+ .premium-person-style3 .premium-person-name {
6069
+ padding-right: 10px;
6070
+ }
6071
+
6072
+ .premium-person-style3 .premium-person-social-list {
6073
+ -js-display: flex;
6074
+ display: -webkit-box;
6075
+ display: -webkit-flex;
6076
+ display: -moz-box;
6077
+ display: -ms-flexbox;
6078
+ display: flex;
6079
+ -webkit-box-orient: vertical;
6080
+ -webkit-box-direction: normal;
6081
+ -webkit-flex-direction: column;
6082
+ -moz-box-orient: vertical;
6083
+ -moz-box-direction: normal;
6084
+ -ms-flex-direction: column;
6085
+ flex-direction: column;
6086
+ -webkit-transform: translateY(20px);
6087
+ -ms-transform: translateY(20px);
6088
+ transform: translateY(20px);
6089
+ opacity: 0;
6090
+ -webkit-transition: all 0.3s ease;
6091
+ transition: all 0.3s ease;
6092
+ }
6093
+
6094
+ .premium-person-style3 .premium-person-list-item {
6095
+ line-height: 0;
6096
+ }
6097
+
6098
+ .premium-person-style3 .premium-person-list-item a {
6099
+ padding: 5px 0 0 10px;
6100
+ margin: 5px 0;
6101
+ }
6102
+
6103
+ .premium-person-style3 .premium-person-container:hover .premium-person-title {
6104
+ opacity: 1;
6105
  }
6106
 
6107
+ .premium-person-style3 .premium-person-container:hover .premium-person-social-list {
6108
+ opacity: 1;
6109
+ -webkit-transform: translateY(0);
6110
+ -ms-transform: translateY(0);
6111
+ transform: translateY(0);
6112
+ }
6113
+
6114
+ .premium-persons-title-cw .premium-person-title {
6115
+ -webkit-transform: translateX(-15px) rotate(-90deg);
6116
+ -ms-transform: translateX(-15px) rotate(-90deg);
6117
+ transform: translateX(-15px) rotate(-90deg);
6118
+ -webkit-transform-origin: top;
6119
+ -ms-transform-origin: top;
6120
+ transform-origin: top;
6121
+ }
6122
+
6123
+ .premium-persons-title-cw .premium-person-container:hover .premium-person-title {
6124
+ -webkit-transform: translateX(0) rotate(-90deg);
6125
+ -ms-transform: translateX(0) rotate(-90deg);
6126
+ transform: translateX(0) rotate(-90deg);
6127
+ }
6128
+
6129
+ .premium-persons-title-ccw .premium-person-title {
6130
+ width: auto;
6131
+ margin-left: 20px;
6132
+ -webkit-transform: translateX(-15px) rotate(90deg);
6133
+ -ms-transform: translateX(-15px) rotate(90deg);
6134
+ transform: translateX(-15px) rotate(90deg);
6135
+ -webkit-transform-origin: center left;
6136
+ -ms-transform-origin: center left;
6137
+ transform-origin: center left;
6138
+ }
6139
+
6140
+ .premium-persons-title-ccw .premium-person-container:hover .premium-person-title {
6141
+ -webkit-transform: translateX(0) rotate(90deg);
6142
+ -ms-transform: translateX(0) rotate(90deg);
6143
+ transform: translateX(0) rotate(90deg);
6144
+ }
6145
  /**************** Premium Pricing Table ****************/
6146
  /*******************************************************/
6147
  .premium-pricing-table-container {
6148
+ position: relative;
6149
+ overflow: hidden;
6150
+ text-align: center;
6151
+ -webkit-transition: all 0.3s ease-in-out;
6152
+ transition: all 0.3s ease-in-out;
6153
  }
6154
 
6155
  .premium-pricing-icon-container {
6156
+ -js-display: flex;
6157
+ display: -webkit-box;
6158
+ display: -webkit-flex;
6159
+ display: -moz-box;
6160
+ display: -ms-flexbox;
6161
+ display: flex;
6162
+ -webkit-box-pack: center;
6163
+ -webkit-justify-content: center;
6164
+ -moz-box-pack: center;
6165
+ -ms-flex-pack: center;
6166
+ justify-content: center;
6167
+ line-height: 0;
6168
  }
6169
 
6170
  .premium-pricing-icon-container .premium-pricing-icon {
6171
+ display: inline-block;
6172
  }
6173
 
6174
  .premium-pricing-icon-container .premium-pricing-image {
6175
+ overflow: hidden;
6176
  }
6177
 
6178
  .premium-pricing-icon-container .premium-pricing-image img {
6179
+ width: 25px;
6180
+ height: 25px;
6181
+ -o-object-fit: cover;
6182
+ object-fit: cover;
6183
  }
6184
 
6185
  .premium-badge-left {
6186
+ position: absolute;
6187
+ top: 0;
6188
  }
6189
 
6190
  .premium-badge-right {
6191
+ position: absolute;
6192
+ top: 0;
6193
+ right: 0;
6194
  }
6195
 
6196
  .premium-badge-left {
6197
+ left: 0;
6198
  }
6199
 
6200
  .premium-badge-triangle.premium-badge-left .corner {
6201
+ width: 0;
6202
+ height: 0;
6203
+ border-top: 150px solid;
6204
+ border-bottom: 150px solid transparent;
6205
+ border-right: 150px solid transparent;
6206
  }
6207
 
6208
  .premium-badge-triangle.premium-badge-right .corner {
6209
+ width: 0;
6210
+ height: 0;
6211
+ border-bottom: 150px solid transparent;
6212
+ border-right: 150px solid;
6213
+ border-left: 150px solid transparent;
6214
  }
6215
 
6216
  .premium-badge-triangle span {
6217
+ position: absolute;
6218
+ top: 35px;
6219
+ width: 100px;
6220
+ text-align: center;
6221
+ -webkit-transform: rotate(-45deg);
6222
+ -ms-transform: rotate(-45deg);
6223
+ transform: rotate(-45deg);
6224
+ display: block;
6225
+ text-transform: uppercase;
6226
  }
6227
 
6228
  .premium-badge-triangle.premium-badge-right span {
6229
+ -webkit-transform: rotate(45deg);
6230
+ -ms-transform: rotate(45deg);
6231
+ transform: rotate(45deg);
6232
+ right: 0;
6233
  }
6234
 
6235
  .premium-badge-circle {
6236
+ min-width: 4em;
6237
+ min-height: 4em;
6238
+ line-height: 4em;
6239
+ text-align: center;
6240
+ -webkit-border-radius: 100%;
6241
+ border-radius: 100%;
6242
+ position: absolute;
6243
+ z-index: 1;
6244
  }
6245
 
6246
  .premium-badge-stripe {
6247
+ position: absolute;
6248
+ -webkit-transform: rotate(90deg);
6249
+ -ms-transform: rotate(90deg);
6250
+ transform: rotate(90deg);
6251
+ width: 15em;
6252
+ overflow: hidden;
6253
+ height: 15em;
6254
  }
6255
 
6256
  .premium-badge-stripe.premium-badge-left {
6257
+ -webkit-transform: rotate(0);
6258
+ -ms-transform: rotate(0);
6259
+ transform: rotate(0);
6260
  }
6261
 
6262
  .premium-badge-stripe .corner {
6263
+ text-align: center;
6264
+ left: 0;
6265
+ width: 150%;
6266
+ -webkit-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
6267
+ -ms-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
6268
+ transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
6269
+ margin-top: 35px;
6270
+ font-size: 13px;
6271
+ line-height: 2;
6272
+ font-weight: 800;
6273
+ text-transform: uppercase;
6274
  }
6275
 
6276
  .premium-badge-flag .corner {
6277
+ text-align: center;
6278
+ -webkit-border-radius: 4px 4px 0 4px;
6279
+ border-radius: 4px 4px 0 4px;
6280
+ padding: 3px 15px;
6281
+ position: absolute;
6282
+ top: 10%;
6283
+ right: -8px;
6284
  }
6285
 
6286
  .premium-badge-flag .corner::before,
6287
  .premium-badge-flag .corner::after {
6288
+ content: "";
6289
+ display: block;
6290
+ position: absolute;
6291
+ width: 0;
6292
+ height: 0;
6293
+ top: 100%;
6294
+ right: 0;
6295
+ border-bottom: 8px solid transparent;
6296
  }
6297
 
6298
  .elementor-widget-premium-addon-pricing-table .elementor-widget-container {
6299
+ overflow: visible !important;
6300
  }
6301
 
6302
  .premium-badge-flag .corner::after {
6303
+ border-left: 8px solid rgba(0, 0, 0, 0.2);
6304
  }
6305
 
6306
  .premium-pricing-price-currency {
6307
+ position: relative;
6308
  }
6309
 
6310
  .premium-pricing-button-container {
6311
+ display: block;
6312
+ }
6313
+
6314
+ .premium-pricing-list {
6315
+ -js-display: flex;
6316
+ display: -webkit-box;
6317
+ display: -webkit-flex;
6318
+ display: -moz-box;
6319
+ display: -ms-flexbox;
6320
+ display: flex;
6321
+ -webkit-box-orient: vertical;
6322
+ -webkit-box-direction: normal;
6323
+ -webkit-flex-direction: column;
6324
+ -moz-box-orient: vertical;
6325
+ -moz-box-direction: normal;
6326
+ -ms-flex-direction: column;
6327
+ flex-direction: column;
6328
+ list-style-type: none;
6329
+ margin: 0;
6330
+ }
6331
+
6332
+ .premium-pricing-list .premium-pricing-list-item {
6333
+ -js-display: flex;
6334
+ display: -webkit-box;
6335
+ display: -webkit-flex;
6336
+ display: -moz-box;
6337
+ display: -ms-flexbox;
6338
+ display: flex;
6339
+ -webkit-box-align: center;
6340
+ -webkit-align-items: center;
6341
+ -moz-box-align: center;
6342
+ -ms-flex-align: center;
6343
+ align-items: center;
6344
+ }
6345
+
6346
+ .premium-pricing-list .premium-pricing-list-item svg {
6347
+ width: 50px;
6348
+ height: 50px;
6349
+ }
6350
+
6351
+ .premium-pricing-list .premium-pricing-list-item img {
6352
+ width: 30px;
6353
+ height: 30px;
6354
+ -o-object-fit: cover;
6355
+ object-fit: cover;
6356
+ }
6357
+
6358
+ .premium-pricing-list .premium-pricing-list-span {
6359
+ position: relative;
6360
+ }
6361
+
6362
+ .premium-pricing-list .list-item-tooltip {
6363
+ border-bottom: 1px dotted;
6364
+ }
6365
+
6366
+ .premium-pricing-list .premium-pricing-list-tooltip {
6367
+ position: absolute;
6368
+ top: -webkit-calc(100% + 1px);
6369
+ top: calc(100% + 1px);
6370
+ right: 0;
6371
+ visibility: hidden;
6372
+ padding: 15px 20px;
6373
+ -webkit-border-radius: 5px;
6374
+ border-radius: 5px;
6375
+ min-width: 200px;
6376
+ overflow: hidden;
6377
+ text-align: right;
6378
+ font-size: 0.8rem;
6379
+ color: #fff;
6380
+ background-color: #aaa;
6381
  }
6382
 
6383
+ .premium-pricing-features-left .premium-pricing-list-span {
6384
+ text-align: right;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6385
  }
6386
 
6387
+ .premium-pricing-features-center .premium-pricing-list-span {
6388
+ text-align: center;
 
 
 
 
 
 
 
 
 
 
6389
  }
6390
 
6391
+ .premium-pricing-features-right .premium-pricing-list-span {
6392
+ text-align: left;
 
6393
  }
6394
 
6395
+ .premium-pricing-list-span:hover .premium-pricing-list-tooltip {
6396
+ z-index: 99;
6397
+ visibility: visible;
6398
+ opacity: 1;
 
6399
  }
6400
 
6401
+ .premium-pricing-slashed-price-value {
6402
+ display: inline-block;
6403
+ font-size: 20px;
6404
+ font-weight: 400;
6405
+ margin-left: 5px;
6406
  }
6407
 
6408
+ .premium-pricing-price-value {
6409
+ font-size: 70px;
6410
  }
6411
 
6412
+ .premium-pricing-description-container li {
6413
+ list-style-position: inside;
6414
+ text-indent: -40px;
 
 
 
 
 
 
 
 
 
 
 
 
6415
  }
6416
 
6417
+ @-moz-document url-prefix() {
6418
+ .premium-pricing-description-container li {
6419
+ text-indent: 0px;
6420
+ }
6421
  }
6422
 
6423
+ .premium-pricing-price-button {
6424
+ display: block;
6425
+ padding: 6px 12px;
6426
+ line-height: 1.42857143;
6427
+ text-align: center;
6428
+ color: #fff;
6429
+ background: #6ec1e4;
6430
+ margin-bottom: 0;
6431
+ -webkit-transition: all 0.3s ease-in-out;
6432
+ transition: all 0.3s ease-in-out;
6433
+ }
6434
+ /**************** Premium Progress Bar ****************/
6435
+ /******************************************************/
6436
+ .premium-progressbar-container {
6437
+ position: relative;
6438
  }
6439
 
6440
+ .premium-progressbar-bar-wrap {
6441
+ position: relative;
6442
+ text-align: right;
6443
+ overflow: hidden;
6444
+ height: 25px;
6445
+ margin-bottom: 50px;
6446
+ background-color: #f5f5f5;
6447
+ -webkit-border-radius: 4px;
6448
+ border-radius: 4px;
6449
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
6450
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
6451
  }
6452
 
6453
+ .premium-progressbar-bar-wrap.premium-progressbar-dots {
6454
+ background-color: transparent;
6455
+ width: 100%;
6456
+ -js-display: flex;
6457
+ display: -webkit-box;
6458
+ display: -webkit-flex;
6459
+ display: -moz-box;
6460
+ display: -ms-flexbox;
6461
+ display: flex;
6462
+ height: auto;
6463
+ -webkit-box-shadow: none;
6464
+ box-shadow: none;
6465
  }
6466
 
6467
+ .premium-progressbar-bar-wrap .progress-segment {
6468
+ position: relative;
6469
+ width: 25px;
6470
+ height: 25px;
6471
+ -webkit-border-radius: 50%;
6472
+ border-radius: 50%;
6473
+ overflow: hidden;
6474
+ background-color: #f5f5f5;
6475
  }
6476
 
6477
+ .premium-progressbar-bar-wrap .progress-segment.filled {
6478
+ background: #6ec1e4;
6479
  }
6480
 
6481
+ .premium-progressbar-bar-wrap .progress-segment:not(:first-child):not(:last-child) {
6482
+ margin: 0 4px;
 
6483
  }
6484
 
6485
+ .premium-progressbar-bar-wrap .progress-segment:first-child {
6486
+ margin-left: 4px;
 
 
6487
  }
6488
 
6489
+ .premium-progressbar-bar-wrap .progress-segment:last-child {
6490
+ margin-right: 4px;
 
 
 
 
 
 
 
 
6491
  }
6492
 
6493
+ .premium-progressbar-bar-wrap .progress-segment .segment-inner {
6494
+ position: absolute;
6495
+ top: 0;
6496
+ right: 0;
6497
+ height: 100%;
6498
+ background-color: #6ec1e4;
6499
  }
6500
 
6501
+ .premium-progressbar-bar {
6502
+ float: right;
6503
+ width: 0%;
6504
+ height: 100%;
6505
+ font-size: 12px;
6506
+ line-height: 20px;
6507
+ background: #6ec1e4;
6508
+ text-align: center;
6509
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
6510
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
6511
  }
6512
 
6513
+ .premium-progressbar-striped .premium-progressbar-bar {
6514
+ background-image: -webkit-linear-gradient(-135deg,
6515
+ rgba(255, 255, 255, 0.15) 25%,
6516
+ transparent 25%,
6517
+ transparent 50%,
6518
+ rgba(255, 255, 255, 0.15) 50%,
6519
+ rgba(255, 255, 255, 0.15) 75%,
6520
+ transparent 75%,
6521
+ transparent);
6522
+ background-image: -webkit-linear-gradient(45deg,
6523
+ rgba(255, 255, 255, 0.15) 25%,
6524
+ transparent 25%,
6525
+ transparent 50%,
6526
+ rgba(255, 255, 255, 0.15) 50%,
6527
+ rgba(255, 255, 255, 0.15) 75%,
6528
+ transparent 75%,
6529
+ transparent);
6530
+ background-image: linear-gradient(45deg,
6531
+ rgba(255, 255, 255, 0.15) 25%,
6532
+ transparent 25%,
6533
+ transparent 50%,
6534
+ rgba(255, 255, 255, 0.15) 50%,
6535
+ rgba(255, 255, 255, 0.15) 75%,
6536
+ transparent 75%,
6537
+ transparent);
6538
+ -webkit-background-size: 40px 40px;
6539
+ background-size: 40px 40px;
6540
  }
6541
 
6542
+ .premium-progressbar-active .premium-progressbar-bar {
6543
+ -webkit-animation: progress-bar-stripes 2s linear infinite;
6544
+ animation: progress-bar-stripes 2s linear infinite;
6545
  }
6546
 
6547
+ .premium-progressbar-gradient .premium-progressbar-bar {
6548
+ -webkit-background-size: 400% 400% !important;
6549
+ background-size: 400% 400% !important;
6550
+ -webkit-animation: progress-bar-gradient 10s ease-in-out infinite;
6551
+ animation: progress-bar-gradient 10s ease-in-out infinite;
 
 
 
 
 
 
 
 
 
 
 
 
 
6552
  }
6553
 
6554
+ .premium-progressbar-bar {
6555
+ position: absolute;
6556
+ overflow: hidden;
6557
+ line-height: 20px;
 
 
 
 
6558
  }
6559
 
6560
+ .premium-progressbar-container .clearfix {
6561
+ clear: both;
 
 
6562
  }
6563
 
6564
+ .premium-progressbar-bar {
6565
+ -webkit-transition: width 0s ease-in-out !important;
6566
+ transition: width 0s ease-in-out !important;
 
 
 
 
 
6567
  }
6568
 
6569
+ .premium-progressbar-container p:first-of-type {
6570
+ margin: 0;
6571
+ float: right;
 
 
 
6572
  }
6573
 
6574
+ .premium-progressbar-container p:nth-of-type(2) {
6575
+ margin: 0;
6576
+ float: left;
 
6577
  }
6578
 
6579
+ .premium-progressbar-name {
6580
+ right: 50%;
6581
+ top: 0;
6582
+ left: 0;
6583
+ -webkit-transform: translateX(12.5px);
6584
+ -ms-transform: translateX(12.5px);
6585
+ transform: translateX(12.5px);
6586
+ z-index: 1;
6587
  }
6588
 
6589
+ .premium-progressbar-multiple-label {
6590
+ position: relative;
6591
+ float: right;
6592
+ width: 0;
6593
+ right: 50%;
6594
  }
6595
 
6596
+ .premium-progressbar-center-label {
6597
+ position: relative;
6598
+ white-space: nowrap;
 
 
 
6599
  }
6600
 
6601
+ .premium-progressbar-arrow {
6602
+ height: 15px;
6603
+ right: 50%;
6604
+ display: inline-block;
6605
+ border-right: 7px solid transparent;
6606
+ border-left: 7px solid transparent;
6607
+ border-top: 11px solid;
6608
+ -webkit-transform: translateX(50%);
6609
+ -ms-transform: translateX(50%);
6610
+ transform: translateX(50%);
6611
  }
6612
 
6613
+ .premium-progressbar-pin {
6614
+ border-right: 1px solid;
6615
+ height: 12px;
6616
+ right: 50%;
6617
+ display: inline-block;
 
 
 
 
 
 
 
 
 
 
6618
  }
6619
 
6620
+ /**
6621
+ * Circle Progress Bar
6622
+ */
6623
+ .premium-progressbar-circle-wrap {
6624
+ width: 200px;
6625
+ height: 200px;
6626
+ position: relative;
6627
+ margin: 0 auto;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6628
  }
6629
 
6630
+ .premium-progressbar-circle-wrap .premium-progressbar-circle {
6631
+ position: absolute;
6632
+ top: 0;
6633
+ right: 0;
6634
+ width: 100%;
6635
+ height: 100%;
6636
+ -webkit-clip-path: inset(0 0 0 50%);
6637
+ clip-path: inset(0 0 0 50%);
 
 
6638
  }
6639
 
6640
+ .premium-progressbar-circle-wrap .premium-progressbar-circle div {
6641
+ position: absolute;
6642
+ right: 0;
6643
+ top: 0;
6644
+ height: 100%;
6645
+ width: 100%;
6646
+ border-width: 6px;
6647
+ border-style: solid;
6648
+ border-color: #54595f;
6649
+ -webkit-border-radius: 50%;
6650
+ border-radius: 50%;
6651
+ -webkit-clip-path: inset(0 50% 0 0);
6652
+ clip-path: inset(0 50% 0 0);
6653
  }
6654
 
6655
+ .premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-left {
6656
+ -webkit-transform: rotate(0);
6657
+ -ms-transform: rotate(0);
6658
+ transform: rotate(0);
 
 
 
6659
  }
6660
 
6661
+ .premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-right {
6662
+ -webkit-transform: rotate(-180deg);
6663
+ -ms-transform: rotate(-180deg);
6664
+ transform: rotate(-180deg);
6665
+ visibility: hidden;
 
 
6666
  }
6667
 
6668
+ .premium-progressbar-circle-wrap .premium-progressbar-circle-base {
6669
+ width: 100%;
6670
+ height: 100%;
6671
+ border: 6px solid #eee;
6672
+ -webkit-border-radius: 50%;
6673
+ border-radius: 50%;
6674
  }
6675
 
6676
+ .premium-progressbar-circle-wrap .premium-progressbar-circle-content {
6677
+ position: absolute;
6678
+ top: 0;
6679
+ right: 0;
6680
+ width: 100%;
6681
+ height: 100%;
6682
+ -js-display: flex;
6683
+ display: -webkit-box;
6684
+ display: -webkit-flex;
6685
+ display: -moz-box;
6686
+ display: -ms-flexbox;
6687
+ display: flex;
6688
+ -webkit-box-orient: vertical;
6689
+ -webkit-box-direction: normal;
6690
+ -webkit-flex-direction: column;
6691
+ -moz-box-orient: vertical;
6692
+ -moz-box-direction: normal;
6693
+ -ms-flex-direction: column;
6694
+ flex-direction: column;
6695
+ -webkit-box-pack: center;
6696
+ -webkit-justify-content: center;
6697
+ -moz-box-pack: center;
6698
+ -ms-flex-pack: center;
6699
+ justify-content: center;
6700
+ -webkit-box-align: center;
6701
+ -webkit-align-items: center;
6702
+ -moz-box-align: center;
6703
+ -ms-flex-align: center;
6704
+ align-items: center;
6705
  }
6706
 
6707
+ .premium-progressbar-circle-wrap .premium-lottie-animation {
6708
+ line-height: 1;
 
 
6709
  }
6710
 
6711
+ @-webkit-keyframes progress-bar-stripes {
6712
+ from {
6713
+ background-position: 100% 0;
6714
+ }
6715
+
6716
+ to {
6717
+ background-position: 40px 0;
6718
+ }
6719
  }
6720
 
6721
+ @keyframes progress-bar-stripes {
6722
+ from {
6723
+ background-position: 100% 0;
6724
+ }
6725
+
6726
+ to {
6727
+ background-position: 40px 0;
6728
+ }
6729
  }
6730
 
6731
+ @-webkit-keyframes progress-bar-gradient {
6732
+ 0% {
6733
+ background-position: 100% 50%;
6734
+ }
6735
+
6736
+ 50% {
6737
+ background-position: 0% 50%;
6738
+ }
6739
+
6740
+ 100% {
6741
+ background-position: 100% 50%;
6742
+ }
6743
  }
6744
 
6745
+ @keyframes progress-bar-gradient {
6746
+ 0% {
6747
+ background-position: 100% 50%;
6748
+ }
6749
+
6750
+ 50% {
6751
+ background-position: 0% 50%;
6752
+ }
6753
+
6754
+ 100% {
6755
+ background-position: 100% 50%;
6756
+ }
6757
+ }
6758
+ /**************** Premium Testimonials ****************/
6759
+ /******************************************************/
6760
+ .premium-testimonial-box {
6761
+ width: 100%;
6762
+ background: transparent;
6763
+ -webkit-transition: all 0.3s ease-in-out;
6764
+ transition: all 0.3s ease-in-out;
6765
  }
6766
 
6767
+ .premium-testimonial-box .premium-testimonial-author-info {
6768
+ -js-display: flex;
6769
+ display: -webkit-box;
6770
+ display: -webkit-flex;
6771
+ display: -moz-box;
6772
+ display: -ms-flexbox;
6773
+ display: flex;
6774
+ -webkit-box-pack: center;
6775
+ -webkit-justify-content: center;
6776
+ -moz-box-pack: center;
6777
+ -ms-flex-pack: center;
6778
+ justify-content: center;
6779
+ -webkit-box-align: center;
6780
+ -webkit-align-items: center;
6781
+ -moz-box-align: center;
6782
+ -ms-flex-align: center;
6783
+ align-items: center;
6784
  }
6785
 
6786
+ .premium-testimonial-box .premium-testimonial-person-name,
6787
+ .premium-testimonial-box .premium-testimonial-company-name {
6788
+ font-weight: 600;
6789
+ margin: 0;
 
 
 
 
6790
  }
6791
 
6792
+ .premium-testimonial-container {
6793
+ position: relative;
 
 
 
 
 
6794
  }
6795
 
6796
+ .premium-testimonial-img-wrapper {
6797
+ margin-right: auto;
6798
+ margin-left: auto;
6799
+ overflow: hidden;
6800
+ border-style: solid !important;
 
 
6801
  }
6802
 
6803
+ .premium-testimonial-img-wrapper.circle {
6804
+ -webkit-border-radius: 50%;
6805
+ border-radius: 50%;
 
 
6806
  }
6807
 
6808
+ .premium-testimonial-img-wrapper.rounded {
6809
+ -webkit-border-radius: 15px;
6810
+ border-radius: 15px;
 
 
 
 
6811
  }
6812
 
6813
+ .premium-testimonial-img-wrapper img {
6814
+ -o-object-fit: cover;
6815
+ object-fit: cover;
6816
+ width: 100%;
6817
+ height: 100% !important;
6818
  }
6819
 
6820
+ .premium-testimonial-content-wrapper {
6821
+ position: relative;
6822
+ display: -ms-flexbox;
6823
+ display: -webkit-flex;
6824
+ display: -moz-flex;
6825
+ display: -ms-flex;
6826
+ -js-display: flex;
6827
+ display: -webkit-box;
6828
+ display: -moz-box;
6829
+ display: flex;
6830
+ -webkit-box-orient: vertical;
6831
+ -webkit-box-direction: normal;
6832
+ -webkit-flex-direction: column;
6833
+ -moz-box-orient: vertical;
6834
+ -moz-box-direction: normal;
6835
+ -ms-flex-direction: column;
6836
+ flex-direction: column;
6837
+ z-index: 2;
6838
+ width: 100%;
6839
+ padding: 20px;
6840
+ text-align: center;
6841
  }
6842
 
6843
+ .premium-testimonial-clear-float {
6844
+ clear: both;
 
 
6845
  }
6846
 
6847
+ .premium-testimonial-upper-quote,
6848
+ .premium-testimonial-lower-quote {
6849
+ position: absolute;
6850
+ z-index: 1;
6851
+ }
6852
+ /**************** Premium Title ****************/
6853
+ /***********************************************/
6854
+ .premium-title-container {
6855
+ position: relative;
6856
+ width: 100%;
6857
+ clear: both;
6858
+ overflow: hidden;
6859
  }
6860
 
6861
+ .premium-title-container .premium-title-header {
6862
+ position: relative;
6863
+ margin: 0;
6864
+ padding: 10px;
 
 
 
 
 
 
 
 
 
 
6865
  }
6866
 
6867
+ .premium-title-container .premium-title-header:not(.premium-title-style7) {
6868
+ -webkit-box-align: center;
6869
+ -webkit-align-items: center;
6870
+ -moz-box-align: center;
6871
+ -ms-flex-align: center;
6872
+ align-items: center;
 
 
 
 
 
 
 
6873
  }
6874
 
6875
+ .premium-title-container .premium-title-header svg {
6876
+ width: 40px;
6877
+ height: 40px;
6878
  }
6879
 
6880
+ .premium-title-container .premium-title-header img {
6881
+ width: 40px;
6882
+ height: 40px;
6883
+ -o-object-fit: cover;
6884
+ object-fit: cover;
 
 
 
6885
  }
6886
 
6887
+ .premium-title-container .premium-title-header a {
6888
+ position: absolute;
6889
+ top: 0;
6890
+ right: 0;
6891
+ width: 100%;
6892
+ height: 100%;
 
 
 
 
 
6893
  }
6894
 
6895
+ .premium-title-container .premium-lottie-animation {
6896
+ -js-display: flex;
6897
+ display: -webkit-box;
6898
+ display: -webkit-flex;
6899
+ display: -moz-box;
6900
+ display: -ms-flexbox;
6901
+ display: flex;
6902
  }
6903
 
6904
+ .premium-title-icon-row .premium-title-icon {
6905
+ margin-left: 10px;
 
6906
  }
6907
 
6908
+ .premium-title-icon-row-reverse .premium-title-icon {
6909
+ margin-right: 10px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6910
  }
6911
 
6912
+ .premium-title-style3,
6913
+ .premium-title-style4 {
6914
+ -js-display: flex;
6915
+ display: -webkit-box;
6916
+ display: -webkit-flex;
6917
+ display: -moz-box;
6918
+ display: -ms-flexbox;
6919
+ display: flex;
6920
  }
6921
 
6922
+ .premium-title-style1,
6923
+ .premium-title-style2,
6924
+ .premium-title-style5,
6925
+ .premium-title-style6,
6926
+ .premium-title-style8,
6927
+ .premium-title-style9 {
6928
+ -js-display: inline-flex;
6929
+ display: -webkit-inline-box;
6930
+ display: -webkit-inline-flex;
6931
+ display: -moz-inline-box;
6932
+ display: -ms-inline-flexbox;
6933
+ display: inline-flex;
 
 
 
 
 
 
 
 
 
 
 
 
 
6934
  }
6935
 
6936
+ .premium-title-style7 {
6937
+ -js-display: inline-flex;
6938
+ display: -webkit-inline-box;
6939
+ display: -webkit-inline-flex;
6940
+ display: -moz-inline-box;
6941
+ display: -ms-inline-flexbox;
6942
+ display: inline-flex;
6943
+ -webkit-box-orient: vertical;
6944
+ -webkit-box-direction: normal;
6945
+ -webkit-flex-direction: column;
6946
+ -moz-box-orient: vertical;
6947
+ -moz-box-direction: normal;
6948
+ -ms-flex-direction: column;
6949
+ flex-direction: column;
6950
  }
6951
 
6952
+ .premium-title-style7 .premium-title-style7-inner {
6953
+ -js-display: flex;
6954
+ display: -webkit-box;
6955
+ display: -webkit-flex;
6956
+ display: -moz-box;
6957
+ display: -ms-flexbox;
6958
+ display: flex;
6959
+ -webkit-box-align: center;
6960
+ -webkit-align-items: center;
6961
+ -moz-box-align: center;
6962
+ -ms-flex-align: center;
6963
+ align-items: center;
6964
  }
6965
 
6966
+ .premium-title-style1 {
6967
+ border-width: 0;
6968
+ border-right: 3px solid #6ec1e4;
6969
  }
6970
 
6971
+ .premium-title-container.style2,
6972
+ .premium-title-container.style4,
6973
+ .premium-title-container.style5,
6974
+ .premium-title-container.style6 {
6975
+ border-bottom: 3px solid #6ec1e4;
6976
  }
6977
 
6978
+ /*Style 6 Header*/
6979
+ .premium-title-style6:before {
6980
+ position: absolute;
6981
+ right: 50%;
6982
+ bottom: 0;
6983
+ margin-right: -2px;
6984
+ content: "";
6985
+ border: 3px solid transparent;
6986
  }
6987
 
6988
+ /*Style 6 Trinagle*/
6989
+ .premium-title-style7-stripe-wrap {
6990
+ -js-display: flex;
6991
+ display: -webkit-box;
6992
+ display: -webkit-flex;
6993
+ display: -moz-box;
6994
+ display: -ms-flexbox;
6995
+ display: flex;
6996
  }
6997
 
6998
+ .premium-title-style7:before {
6999
+ display: none;
 
7000
  }
7001
 
7002
+ .premium-title-style8 .premium-title-text[data-animation="shiny"] {
7003
+ -webkit-background-size: 125px 125px !important;
7004
+ background-size: 125px !important;
7005
+ color: rgba(255, 255, 255, 0);
7006
+ -webkit-background-clip: text !important;
7007
+ background-clip: text !important;
7008
+ -webkit-animation-name: pa-shinny-text !important;
7009
+ animation-name: pa-shinny-text !important;
7010
+ -webkit-animation-duration: var(--animation-speed) !important;
7011
+ animation-duration: var(--animation-speed) !important;
7012
+ -webkit-animation-iteration-count: infinite !important;
7013
+ animation-iteration-count: infinite !important;
7014
+ background: var(--base-color) -webkit-gradient(linear,
7015
+ left top,
7016
+ right top,
7017
+ from(var(--base-color)),
7018
+ to(var(--base-color)),
7019
+ color-stop(0.5, var(--shiny-color))) 0 0 no-repeat;
7020
  }
7021
 
7022
+ .premium-title-style9[data-animation-blur="process"] .premium-title-style9-letter {
7023
+ -webkit-animation: pa-blur-shadow 2s 1 alternate;
7024
+ animation: pa-blur-shadow 2s 1 alternate;
 
 
7025
  }
7026
 
7027
+ .premium-title-gradient-yes .premium-title-text,
7028
+ .premium-title-gradient-yes .premium-title-icon {
7029
+ -webkit-background-clip: text;
7030
+ -webkit-text-fill-color: transparent;
7031
+ background-image: -webkit-gradient(linear, left top, right top, from(#ffa648), color-stop(#f17cc1), to(#4da9fd));
7032
+ background-image: -webkit-linear-gradient(left, #ffa648, #f17cc1, #4da9fd);
7033
+ background-image: linear-gradient(to right, #ffa648, #f17cc1, #4da9fd);
7034
+ -webkit-animation: pa-text-gradient 8s infinite;
7035
+ animation: pa-text-gradient 8s infinite;
7036
  }
7037
 
7038
+ .premium-title-clipped .premium-title-header {
7039
+ -webkit-text-fill-color: transparent;
7040
+ -webkit-background-clip: text;
7041
+ background-clip: text;
 
7042
  }
7043
 
7044
+ @-webkit-keyframes pa-shinny-text {
7045
+ 0% {
7046
+ background-position: 100%;
7047
+ }
7048
+
7049
+ 100% {
7050
+ background-position: -100%;
7051
+ }
7052
  }
7053
 
7054
+ @keyframes pa-shinny-text {
7055
+ 0% {
7056
+ background-position: 100%;
7057
+ }
7058
+
7059
+ 100% {
7060
+ background-position: -100%;
7061
+ }
 
 
 
 
 
 
7062
  }
7063
 
7064
+ @-webkit-keyframes pa-blur-shadow {
7065
+ from {
7066
+ text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
7067
+ color: transparent;
7068
+ }
7069
+
7070
+ to {
7071
+ text-shadow: 0;
7072
+ }
7073
  }
7074
 
7075
+ @keyframes pa-blur-shadow {
7076
+ from {
7077
+ text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
7078
+ color: transparent;
7079
+ }
7080
+
7081
+ to {
7082
+ text-shadow: 0;
7083
+ }
7084
  }
7085
 
7086
+ @-webkit-keyframes pa-text-gradient {
7087
+ 0%,
7088
+ 100% {
7089
+ -webkit-filter: hue-rotate(0deg);
7090
+ filter: hue-rotate(0deg);
7091
+ }
7092
+
7093
+ 50% {
7094
+ -webkit-filter: hue-rotate(360deg);
7095
+ filter: hue-rotate(360deg);
7096
+ }
 
 
 
 
7097
  }
7098
 
7099
+ @keyframes pa-text-gradient {
7100
+ 0%,
7101
+ 100% {
7102
+ -webkit-filter: hue-rotate(0deg);
7103
+ filter: hue-rotate(0deg);
7104
+ }
7105
+
7106
+ 50% {
7107
+ -webkit-filter: hue-rotate(360deg);
7108
+ filter: hue-rotate(360deg);
7109
+ }
7110
+ }
7111
+ /**************** Premium Video Box ************/
7112
+ /***********************************************/
7113
+ .premium-video-box-transform {
7114
+ -webkit-transform: none !important;
7115
+ -ms-transform: none !important;
7116
+ transform: none !important;
7117
  }
7118
 
7119
+ .premium-video-box-container {
7120
+ -js-display: flex;
7121
+ display: -webkit-box;
7122
+ display: -webkit-flex;
7123
+ display: -moz-box;
7124
+ display: -ms-flexbox;
7125
+ display: flex;
7126
+ -webkit-box-orient: vertical;
7127
+ -webkit-box-direction: normal;
7128
+ -webkit-flex-direction: column;
7129
+ -moz-box-orient: vertical;
7130
+ -moz-box-direction: normal;
7131
+ -ms-flex-direction: column;
7132
+ flex-direction: column;
7133
  }
7134
 
7135
+ .premium-video-box-container>div {
7136
+ position: relative;
7137
+ overflow: hidden;
 
7138
  }
7139
 
7140
+ .pa-aspect-ratio-11 .premium-video-box-container>div {
7141
+ padding-bottom: 100%;
 
 
7142
  }
7143
 
7144
+ .pa-aspect-ratio-169 .premium-video-box-container>div {
7145
+ padding-bottom: 56.25%;
 
 
7146
  }
7147
 
7148
+ .pa-aspect-ratio-43 .premium-video-box-container>div {
7149
+ padding-bottom: 75%;
 
 
7150
  }
7151
 
7152
+ .pa-aspect-ratio-32 .premium-video-box-container>div {
7153
+ padding-bottom: 66.6666%;
 
7154
  }
7155
 
7156
+ .pa-aspect-ratio-219 .premium-video-box-container>div {
7157
+ padding-bottom: 42.8571%;
 
7158
  }
7159
 
7160
+ .pa-aspect-ratio-916 .premium-video-box-container>div {
7161
+ padding-bottom: 177.8%;
 
 
 
 
 
 
 
7162
  }
7163
 
7164
+ .premium-video-box-image-container {
7165
+ position: absolute;
7166
+ top: 0;
7167
+ right: 0;
7168
+ bottom: 0;
7169
+ left: 0;
7170
+ width: 100%;
7171
+ height: 100%;
7172
+ -webkit-background-size: cover;
7173
+ background-size: cover;
7174
+ background-position: 50%;
7175
+ cursor: pointer;
7176
+ margin: auto;
7177
+ -webkit-transition: 0.2s all;
7178
+ transition: 0.2s all;
7179
  }
7180
 
7181
+ .premium-video-box-play-icon-container {
7182
+ position: absolute;
7183
+ z-index: 2;
7184
+ cursor: pointer;
7185
+ -webkit-transform: translate(50%, -50%);
7186
+ -ms-transform: translate(50%, -50%);
7187
+ transform: translate(50%, -50%);
7188
+ background: rgba(252, 252, 252, 0.35);
 
7189
  }
7190
 
7191
+ .premium-video-box-description-container {
7192
+ position: absolute;
7193
+ z-index: 2;
7194
+ padding: 5px;
7195
+ text-align: center;
7196
+ cursor: pointer;
7197
+ -webkit-transform: translate(50%, -50%);
7198
+ -ms-transform: translate(50%, -50%);
7199
+ transform: translate(50%, -50%);
7200
  }
7201
 
7202
+ .premium-video-box-text {
7203
+ margin-bottom: 0 !important;
7204
+ -webkit-transition: all 0.3s ease-in-out;
7205
+ transition: all 0.3s ease-in-out;
7206
  }
7207
 
7208
+ .premium-video-box-play-icon {
7209
+ padding: 15px;
7210
+ -webkit-transform: translateX(-4%);
7211
+ -ms-transform: translateX(-4%);
7212
+ transform: translateX(-4%);
7213
+ -webkit-transition: all 0.3s ease-in-out;
7214
+ transition: all 0.3s ease-in-out;
7215
  }
7216
 
7217
+ .premium-video-box-video-container {
7218
+ position: absolute;
7219
+ top: 0;
7220
+ right: 0;
7221
+ z-index: 2;
7222
+ width: 100%;
7223
+ height: 100%;
7224
+ -webkit-transition: opacity 0.8s ease-in-out;
7225
+ transition: opacity 0.8s ease-in-out;
7226
+ overflow: hidden;
7227
+ cursor: pointer;
7228
  }
7229
 
7230
+ .premium-video-box-container[data-overlay="true"][data-type="self"] .premium-video-box-video-container {
7231
+ opacity: 0;
7232
+ visibility: hidden;
 
7233
  }
7234
 
7235
+ .premium-video-box-video-container iframe {
7236
+ max-width: 100%;
7237
+ width: 100%;
7238
+ height: 100%;
7239
+ margin: 0;
7240
+ line-height: 1;
7241
+ border: none;
 
 
 
 
7242
  }
7243
 
7244
+ .premium-video-box-video-container video {
7245
+ max-width: 100%;
7246
+ width: 100%;
7247
+ height: 100%;
7248
+ margin: 0;
7249
+ line-height: 1;
7250
+ border: none;
7251
+ background-color: #000;
7252
+ -o-object-fit: contain;
7253
+ object-fit: contain;
7254
  }
7255
 
7256
+ .premium-video-box-container .premium-video-box-vimeo-wrap {
7257
+ -js-display: flex;
7258
+ display: -webkit-box;
7259
+ display: -webkit-flex;
7260
+ display: -moz-box;
7261
+ display: -ms-flexbox;
7262
+ display: flex;
7263
+ position: absolute;
7264
+ top: 0;
7265
+ right: 0;
7266
+ z-index: 3;
7267
+ margin: 10px;
7268
+ margin-left: 10px;
7269
+ -webkit-transition: opacity 0.2s ease-out;
7270
+ transition: opacity 0.2s ease-out;
7271
+ margin-left: 4.6em;
7272
  }
7273
 
7274
+ .premium-video-box-vimeo-wrap .premium-video-box-vimeo-portrait {
7275
+ width: 60px;
7276
+ height: 60px;
7277
+ background: rgba(23, 35, 34, 0.75);
7278
+ margin-left: 1px;
7279
+ -webkit-box-flex: 1;
7280
+ -webkit-flex: 1 0 auto;
7281
+ -moz-box-flex: 1;
7282
+ -ms-flex: 1 0 auto;
7283
+ flex: 1 0 auto;
7284
+ padding: 0;
 
 
 
 
7285
  }
7286
 
7287
+ .premium-video-box-vimeo-portrait img {
7288
+ width: 50px;
7289
+ height: 50px;
7290
+ margin: 5px;
7291
+ padding: 0;
7292
+ border: 0;
7293
+ -webkit-border-radius: 50%;
7294
+ border-radius: 50%;
7295
  }
7296
 
7297
+ .premium-video-box-vimeo-wrap .premium-video-box-vimeo-headers {
7298
+ font-size: 10px;
 
 
 
 
 
 
7299
  }
7300
 
7301
+ .premium-video-box-vimeo-wrap .premium-video-box-vimeo-title {
7302
+ max-width: 100%;
7303
+ font-size: 2em !important;
7304
+ font-weight: 700;
7305
+ margin: 0;
7306
+ padding: 0.1em 0.2em;
7307
+ background: rgba(23, 35, 34, 0.75);
7308
+ display: inline-block;
7309
+ text-transform: none;
7310
+ line-height: normal;
7311
+ letter-spacing: normal;
 
 
 
 
 
 
 
 
 
 
 
7312
  }
7313
 
7314
+ .premium-video-box-vimeo-wrap .premium-video-box-vimeo-byline {
7315
+ font-size: 1.2em !important;
7316
+ font-weight: 400;
7317
+ color: #fff;
7318
+ margin-top: 0.1em;
7319
+ padding: 0.2em 0.5em;
7320
+ background: rgba(23, 35, 34, 0.75);
7321
+ text-transform: none;
7322
+ line-height: normal;
7323
+ letter-spacing: normal;
7324
  }
7325
 
7326
+ .premium-video-box-playlist-container {
7327
+ -js-display: flex;
7328
+ display: -webkit-box;
7329
+ display: -webkit-flex;
7330
+ display: -moz-box;
7331
+ display: -ms-flexbox;
7332
+ display: flex;
7333
+ -webkit-flex-wrap: wrap;
7334
+ -ms-flex-wrap: wrap;
7335
+ flex-wrap: wrap;
7336
  }
7337
 
7338
+ .premium-video-box-playlist-container .premium-video-box-container {
7339
+ height: 100%;
7340
+ overflow: hidden;
 
 
 
 
7341
  }
7342
 
7343
+ .premium-video-box-container:hover .premium-video-box-image-container.zoomin {
7344
+ -webkit-transform: scale(1.1);
7345
+ -ms-transform: scale(1.1);
7346
+ transform: scale(1.1);
 
 
 
7347
  }
7348
 
7349
+ .premium-video-box-container:hover .premium-video-box-image-container.zoomout {
7350
+ -webkit-transform: scale(1);
7351
+ -ms-transform: scale(1);
7352
+ transform: scale(1);
 
 
 
7353
  }
7354
 
7355
+ .premium-video-box-container:hover .premium-video-box-image-container.scale {
7356
+ -webkit-transform: scale(1.3) rotate(-5deg);
7357
+ -ms-transform: scale(1.3) rotate(-5deg);
7358
+ transform: scale(1.3) rotate(-5deg);
 
 
 
7359
  }
7360
 
7361
+ .premium-video-box-container:hover .premium-video-box-image-container.gray {
7362
+ -webkit-filter: grayscale(0%);
7363
+ filter: grayscale(0%);
7364
  }
7365
 
7366
+ .premium-video-box-container:hover .premium-video-box-image-container.blur {
7367
+ -webkit-filter: blur(3px);
7368
+ filter: blur(3px);
7369
  }
7370
 
7371
+ .premium-video-box-container:hover .premium-video-box-image-container.sepia {
7372
+ -webkit-filter: sepia(0%);
7373
+ filter: sepia(0%);
7374
  }
7375
 
7376
+ .premium-video-box-container:hover .premium-video-box-image-container.trans {
7377
+ -webkit-transform: translateX(0px) scale(1.1);
7378
+ -ms-transform: translateX(0px) scale(1.1);
7379
+ transform: translateX(0px) scale(1.1);
7380
  }
7381
 
7382
+ .premium-video-box-container:hover .premium-video-box-image-container.bright {
7383
+ -webkit-filter: brightness(1.2);
7384
+ filter: brightness(1.2);
 
 
7385
  }
7386
 
7387
+ .premium-video-box-image-container.gray {
7388
+ -webkit-filter: grayscale(100%);
7389
+ filter: grayscale(100%);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7390
  }
7391
 
7392
+ .premium-video-box-image-container.zoomout,
7393
+ .premium-video-box-image-container.scale {
7394
+ -webkit-transform: scale(1.2);
7395
+ -ms-transform: scale(1.2);
7396
+ transform: scale(1.2);
7397
  }
7398
 
7399
+ .premium-video-box-image-container.sepia {
7400
+ -webkit-filter: sepia(30%);
7401
+ filter: sepia(30%);
 
 
7402
  }
7403
 
7404
+ .premium-video-box-image-container.bright {
7405
+ -webkit-filter: brightness(1);
7406
+ filter: brightness(1);
 
 
7407
  }
7408
 
7409
+ .premium-video-box-image-container.trans {
7410
+ -webkit-transform: translateX(15px) scale(1.1);
7411
+ -ms-transform: translateX(15px) scale(1.1);
7412
+ transform: translateX(15px) scale(1.1);
 
7413
  }
7414
 
7415
+ .premium-video-box-mask-media {
7416
+ -webkit-mask-repeat: no-repeat;
7417
+ mask-repeat: no-repeat;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7418
  }
7419
 
7420
+ /* Sticky Video Option */
7421
+ .premium-video-box-container.premium-video-box-sticky-apply {
7422
+ z-index: 99;
7423
+ overflow: unset;
7424
  }
7425
 
7426
+ .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
7427
+ position: fixed !important;
7428
+ z-index: 99999;
7429
+ height: 225px;
7430
+ width: 400px;
7431
+ background: #fff;
7432
  }
7433
 
7434
+ .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-vimeo-wrap,
7435
+ .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-container:before {
7436
+ visibility: hidden;
7437
  }
7438
 
7439
+ .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
7440
+ -webkit-box-shadow: unset;
7441
+ box-shadow: unset;
7442
  }
7443
 
7444
+ .premium-video-box-sticky-close,
7445
+ .premium-video-box-sticky-infobar {
7446
+ display: none;
7447
  }
7448
 
7449
+ .premium-video-box-sticky-apply .premium-video-box-sticky-close {
7450
+ position: absolute;
7451
+ padding: 5px;
7452
+ cursor: pointer;
7453
+ z-index: 99999;
7454
+ height: 14px;
7455
+ width: 14px;
7456
+ -webkit-box-sizing: content-box;
7457
+ -moz-box-sizing: content-box;
7458
+ box-sizing: content-box;
7459
+ -webkit-border-radius: 100%;
7460
+ border-radius: 100%;
7461
+ -js-display: flex;
7462
+ display: -webkit-box;
7463
+ display: -webkit-flex;
7464
+ display: -moz-box;
7465
+ display: -ms-flexbox;
7466
+ display: flex;
7467
+ -webkit-box-pack: center;
7468
+ -webkit-justify-content: center;
7469
+ -moz-box-pack: center;
7470
+ -ms-flex-pack: center;
7471
+ justify-content: center;
7472
+ -webkit-box-align: center;
7473
+ -webkit-align-items: center;
7474
+ -moz-box-align: center;
7475
+ -ms-flex-align: center;
7476
+ align-items: center;
7477
  }
7478
 
7479
+ .premium-video-box-sticky-apply .premium-video-box-play-icon-container {
7480
+ -js-display: flex;
7481
+ display: -webkit-box;
7482
+ display: -webkit-flex;
7483
+ display: -moz-box;
7484
+ display: -ms-flexbox;
7485
+ display: flex;
7486
  }
7487
 
7488
+ .premium-video-box-sticky-apply .premium-video-box-play-icon {
7489
+ -webkit-transition: none;
7490
+ transition: none;
7491
  }
7492
 
7493
+ .premium-video-box-sticky-apply .premium-video-box-sticky-infobar {
7494
+ display: block;
7495
+ position: relative;
7496
+ top: 100%;
7497
+ width: 100%;
7498
+ padding: 5px;
7499
+ text-align: center;
7500
+ z-index: 9999;
7501
+ margin-top: -1px;
7502
  }
7503
 
7504
+ .premium-video-box-sticky-apply .premium-video-box-inner-wrap.ui-draggable {
7505
+ cursor: move;
 
 
 
7506
  }
7507
 
7508
+ .premium-video-sticky-top-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
7509
+ left: auto;
7510
+ right: 20px;
7511
+ top: 20px;
 
7512
  }
7513
 
7514
+ .premium-video-sticky-bottom-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
7515
+ left: auto;
7516
+ right: 20px;
7517
+ bottom: 20px;
 
7518
  }
7519
 
7520
+ .premium-video-sticky-top-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
7521
+ right: auto;
7522
+ left: 20px;
7523
+ top: 20px;
 
 
 
 
 
 
 
 
 
 
 
 
7524
  }
7525
 
7526
+ .premium-video-sticky-bottom-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
7527
+ right: auto;
7528
+ left: 20px;
7529
+ bottom: 20px;
 
7530
  }
7531
 
7532
+ .premium-video-sticky-center-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
7533
+ left: auto;
7534
+ right: 20px;
7535
+ top: 50%;
7536
+ -webkit-transform: translateY(-50%);
7537
+ -ms-transform: translateY(-50%);
7538
+ transform: translateY(-50%);
7539
  }
7540
 
7541
+ .premium-video-sticky-center-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
7542
+ right: auto;
7543
+ left: 20px;
7544
+ top: 50%;
7545
+ -webkit-transform: translateY(-50%);
7546
+ -ms-transform: translateY(-50%);
7547
+ transform: translateY(-50%);
7548
  }
7549
 
7550
+ .premium-video-sticky-bottom-right .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap,
7551
+ .premium-video-sticky-bottom-left .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
7552
+ bottom: 55px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7553
  }
7554
 
7555
+ .premium-video-sticky-top-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
7556
+ .premium-video-sticky-bottom-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
7557
+ .premium-video-sticky-center-left .premium-video-box-sticky-apply .premium-video-box-sticky-close {
7558
+ top: -10px;
7559
+ left: -10px;
 
 
 
 
 
 
 
 
 
 
 
 
 
7560
  }
7561
 
7562
+ .premium-video-sticky-top-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
7563
+ .premium-video-sticky-bottom-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
7564
+ .premium-video-sticky-center-right .premium-video-box-sticky-apply .premium-video-box-sticky-close {
7565
+ top: -10px;
7566
+ right: -10px;
 
 
 
 
 
 
 
 
 
 
 
 
 
7567
  }
7568
 
7569
+ .premium-video-box-filter-sticky {
7570
+ -webkit-filter: none !important;
7571
+ filter: none !important;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7572
  }
7573
+ /************ Premium Vertical Scroll ************/
7574
+ /*************************************************/
7575
+ .premium-vscroll-inner {
7576
+ position: relative;
7577
+ /* overflow: hidden;
7578
+ */
7579
+ min-height: 100%;
 
 
 
 
 
 
 
 
 
 
 
 
7580
  }
7581
 
7582
+ .premium-vscroll-inner .premium-vscroll-dots {
7583
+ position: fixed;
7584
+ z-index: 100;
7585
+ opacity: 1;
7586
+ margin-top: -32px;
7587
+ -webkit-transition: all 0.3s ease-in-out;
7588
+ transition: all 0.3s ease-in-out;
 
 
 
 
 
 
 
 
 
 
 
7589
  }
7590
 
7591
+ .premium-vscroll-wrap .premium-vscroll-nav-menu {
7592
+ opacity: 1;
7593
+ -webkit-transition: all 0.3s ease-in-out;
7594
+ transition: all 0.3s ease-in-out;
7595
+ }
 
7596
 
7597
+ .premium-vscroll-inner .premium-vscroll-dots,
7598
+ .premium-vscroll-wrap .premium-vscroll-dots-hide {
7599
+ opacity: 0;
7600
+ visibility: hidden;
7601
+ }
7602
 
7603
+ .premium-vscroll-nav-dots-yes .premium-vscroll-inner .premium-vscroll-dots {
7604
+ opacity: 1;
7605
+ visibility: visible;
 
 
7606
  }
7607
 
7608
+ .premium-vscroll-dots.middle {
7609
+ top: 50%;
7610
+ }
 
 
 
7611
 
7612
+ .premium-vscroll-dots.top {
7613
+ top: 40px;
7614
+ }
 
 
7615
 
7616
+ .premium-vscroll-dots.bottom {
7617
+ bottom: 30px;
 
 
 
7618
  }
7619
 
7620
+ .premium-vscroll-dots.right {
7621
+ left: 17px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7622
  }
7623
 
7624
+ .premium-vscroll-dots.left {
7625
+ right: 17px;
 
7626
  }
7627
 
7628
+ .premium-vscroll-inner ul.premium-vscroll-dots-list,
7629
+ .premium-vscroll-wrap .premium-vscroll-nav-menu {
7630
+ margin: 0 !important;
7631
+ padding: 0;
7632
  }
7633
 
7634
+ .premium-vscroll-inner ul.premium-vscroll-dots-list li {
7635
+ width: 14px;
7636
+ height: 13px;
7637
+ margin: 7px;
7638
+ position: relative;
7639
+ display: -webkit-box;
7640
+ display: -webkit-flex;
7641
+ display: -ms-flexbox;
7642
+ -js-display: flex;
7643
+ display: -moz-box;
7644
+ display: flex;
7645
+ -webkit-box-pack: center;
7646
+ -ms-flex-pack: center;
7647
+ -webkit-justify-content: center;
7648
+ -moz-box-pack: center;
7649
+ justify-content: center;
7650
+ -webkit-box-align: center;
7651
+ -ms-flex-align: center;
7652
+ -webkit-align-items: center;
7653
+ -moz-box-align: center;
7654
+ align-items: center;
7655
+ overflow: visible;
7656
  }
7657
 
7658
+ .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link {
7659
+ display: block;
7660
+ position: relative;
7661
+ z-index: 1;
7662
+ width: 100%;
7663
+ height: 100%;
7664
+ cursor: pointer;
7665
+ text-decoration: none;
 
 
7666
  }
7667
 
7668
+ .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link span {
7669
+ top: 2px;
7670
+ right: 2.5px;
7671
+ width: 8px;
7672
+ height: 8px;
7673
+ border: 1px solid #000;
7674
+ -webkit-border-radius: 50%;
7675
+ border-radius: 50%;
7676
+ position: absolute;
7677
+ z-index: 1;
7678
+ -webkit-transition: all 0.3s ease-in-out;
7679
+ transition: all 0.3s ease-in-out;
7680
  }
7681
 
7682
+ .premium-vscroll-inner .premium-vscroll-dot-item.active .premium-vscroll-nav-link span {
7683
+ -webkit-transform: scale(1.6);
7684
+ -ms-transform: scale(1.6);
7685
+ transform: scale(1.6);
7686
  }
7687
 
7688
+ .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-tooltip {
7689
+ position: absolute;
7690
+ color: #fff;
7691
+ font-size: 14px;
7692
+ font-family: arial, helvetica, sans-serif;
7693
+ white-space: nowrap;
7694
+ max-width: 220px;
7695
+ padding-right: 0.4em;
7696
+ padding-left: 0.4em;
7697
  }
7698
 
7699
+ .premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip {
7700
+ left: 27px;
7701
  }
7702
 
7703
+ /* * Lines */
7704
+ .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item {
7705
+ width: 4px;
7706
+ height: 30px;
 
 
7707
  }
7708
 
7709
+ .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item span {
7710
+ width: 100%;
7711
+ height: 100%;
7712
+ -webkit-border-radius: 0;
7713
+ border-radius: 0;
7714
  }
7715
 
7716
+ .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item.active span {
7717
+ -webkit-transform: scale(1);
7718
+ -ms-transform: scale(1);
7719
+ transform: scale(1);
7720
  }
7721
 
7722
+ @media (max-width: 768px) {
7723
+ .premium-vscroll-dots.right {
7724
+ left: 7px;
7725
+ }
7726
+
7727
+ .premium-vscroll-dots.left {
7728
+ right: 7px;
7729
+ }
7730
  }
7731
 
7732
+ .premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip::after {
7733
+ position: absolute;
7734
+ top: 50%;
7735
+ content: "";
7736
+ right: -webkit-calc(100% - 1px);
7737
+ right: calc(100% - 1px);
7738
+ width: 10px;
7739
+ height: 0;
7740
+ border-top: 6px solid transparent;
7741
+ border-bottom: 6px solid transparent;
7742
+ border-right: 6px solid;
7743
+ -webkit-transform: translateY(-50%);
7744
+ -ms-transform: translateY(-50%);
7745
+ transform: translateY(-50%);
7746
  }
7747
 
7748
+ .premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip::after {
7749
+ position: absolute;
7750
+ top: 50%;
7751
+ content: "";
7752
+ left: -webkit-calc(100% - 1px);
7753
+ left: calc(100% - 1px);
7754
+ width: 10px;
7755
+ height: 0;
7756
+ border-top: 6px solid transparent;
7757
+ border-bottom: 6px solid transparent;
7758
+ border-left: 6px solid;
7759
+ -webkit-transform: translateY(-50%);
7760
+ -ms-transform: translateY(-50%);
7761
+ transform: translateY(-50%);
7762
  }
7763
 
7764
+ .premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip {
7765
+ right: 27px;
 
 
7766
  }
7767
 
7768
+ .premium-vscroll-nav-menu {
7769
+ position: fixed;
7770
+ top: 20px;
7771
+ height: 40px;
7772
+ z-index: 100;
7773
+ padding: 0;
7774
+ margin: 0;
7775
  }
7776
 
7777
+ .premium-vscroll-nav-menu.left {
7778
+ right: 0;
 
 
 
 
7779
  }
7780
 
7781
+ .premium-vscroll-nav-menu.right {
7782
+ left: 0;
 
 
 
 
 
 
 
7783
  }
7784
 
7785
+ .premium-vscroll-nav-menu .premium-vscroll-nav-item {
7786
+ display: inline-block;
7787
+ margin: 10px;
7788
+ color: #000;
7789
+ background: #fff;
7790
+ background: rgba(255, 255, 255, 0.3);
7791
  }
7792
 
7793
+ .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link {
7794
+ padding: 9px 18px;
7795
+ display: block;
7796
+ cursor: pointer;
7797
  }
7798
 
7799
+ .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link,
7800
+ .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:hover {
7801
+ color: #000;
7802
  }
7803
 
7804
+ .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:focus,
7805
+ .multiscroll-nav li a:focus {
7806
+ outline: none;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7807
  }
7808
 
7809
+ .premium-vscroll-temp .slimScrollBar {
7810
+ visibility: hidden;
7811
+ }
7812
+ /********** Premium Woo Products **********/
7813
+ /******************************************/
7814
+ .ast-single-post .entry-content .premium-woocommerce a {
7815
+ text-decoration: none;
7816
+ }
7817
+
7818
+ .premium-woocommerce .premium-woo-qv-btn {
7819
+ cursor: pointer;
7820
+ }
7821
+
7822
+ .premium-woocommerce:not(.premium-woo-skin-grid-7) li.product .star-rating {
7823
+ margin: 0 auto 0.5em;
7824
+ }
7825
+
7826
+ .premium-woocommerce:not(.premium-woo-skin-grid-10) .premium-woo-product-sale-wrap .premium-woo-product-onsale,
7827
+ .premium-woocommerce:not(.premium-woo-skin-grid-10) .premium-woo-product-featured-wrap .premium-woo-product-featured {
7828
+ display: block;
7829
+ text-align: center;
7830
+ color: #fff;
7831
+ min-width: 2em;
7832
+ min-height: 2em;
7833
+ line-height: 2em;
7834
+ padding: 0.3em 0.6em;
7835
+ margin: 0.5em 0.6em;
7836
+ }
7837
+
7838
+ .premium-woocommerce .pa-out-of-stock {
7839
+ display: block;
7840
+ text-align: center;
7841
+ color: #fff;
7842
+ min-width: 2em;
7843
+ min-height: 2em;
7844
+ line-height: 2em;
7845
+ padding: 0.3em 0.6em;
7846
+ margin: 0.5em 0.6em;
7847
+ }
7848
+
7849
+ .premium-woocommerce .premium-woo-products-inner ul.products {
7850
+ -js-display: flex;
7851
+ display: -webkit-box;
7852
+ display: -webkit-flex;
7853
+ display: -moz-box;
7854
+ display: -ms-flexbox;
7855
+ display: flex;
7856
+ margin: 0;
7857
+ padding: 0;
7858
+ -webkit-flex-wrap: wrap;
7859
+ -ms-flex-wrap: wrap;
7860
+ flex-wrap: wrap;
7861
+ list-style: none outside;
7862
+ -webkit-column-gap: 0;
7863
+ -moz-column-gap: 0;
7864
+ column-gap: 0;
7865
+ }
7866
+
7867
+ .premium-woocommerce .premium-woo-products-inner ul.products li.product {
7868
+ margin: 0 0 10px;
7869
+ padding: 0 10px;
7870
+ }
7871
+
7872
+ .premium-woocommerce.premium-woo-products-inner ul.products li.product .premium-woo-product-wrapper {
7873
+ overflow: hidden;
7874
+ -webkit-transition: all 0.3s ease-in-out;
7875
+ transition: all 0.3s ease-in-out;
7876
+ }
7877
+
7878
+ .premium-woocommerce .premium-woo-product-category {
7879
+ display: block;
7880
+ font-size: 0.85em;
7881
+ margin-bottom: 0.5em;
7882
+ line-height: 1.3;
7883
+ }
7884
+
7885
+ .premium-woocommerce .woocommerce-loop-product__title {
7886
+ margin-bottom: 0.5em;
7887
+ font-size: 1em;
7888
+ -webkit-transition: all 0.3s ease-in-out;
7889
+ transition: all 0.3s ease-in-out;
7890
+ }
7891
+
7892
+ .premium-woocommerce .woocommerce-loop-product__link {
7893
+ position: relative;
7894
+ display: block !important;
7895
+ overflow: hidden;
7896
+ -webkit-transition: all 0.3s ease-in-out;
7897
+ transition: all 0.3s ease-in-out;
7898
+ }
7899
+
7900
+ .premium-woocommerce .premium-woo-ribbon-container,
7901
+ .premium-woocommerce .pa-out-of-stock {
7902
+ position: absolute;
7903
+ z-index: 9;
7904
+ }
7905
+
7906
+ .premium-woocommerce .premium-woo-ribbon-container {
7907
+ top: 0;
7908
+ right: 0;
7909
+ }
7910
+
7911
+ .premium-woocommerce .pa-out-of-stock {
7912
+ top: 7px;
7913
+ right: 9px;
7914
+ margin: 0;
7915
+ }
7916
+
7917
+ .premium-woocommerce .star-rating {
7918
+ display: block;
7919
+ float: none;
7920
+ margin: 0 auto 0.5em;
7921
+ -webkit-backface-visibility: hidden;
7922
+ backface-visibility: hidden;
7923
+ overflow: hidden;
7924
+ position: relative;
7925
+ height: 1em;
7926
+ line-height: 1;
7927
+ font-size: 0.857em;
7928
+ width: 5.4em;
7929
+ font-family: star;
7930
+ }
7931
+
7932
+ .premium-woocommerce .star-rating::before {
7933
+ content: "\73\73\73\73\73";
7934
+ color: #54595f;
7935
+ float: right;
7936
+ top: 0;
7937
+ right: 0;
7938
+ position: absolute;
7939
+ }
7940
+
7941
+ .premium-woocommerce .premium-woo-products-inner ul.products .star-rating span {
7942
+ overflow: hidden;
7943
+ float: right;
7944
+ top: 0;
7945
+ right: 0;
7946
+ position: absolute;
7947
+ padding-top: 1.5em;
7948
+ }
7949
+
7950
+ .premium-woocommerce .star-rating span::before {
7951
+ content: "\53\53\53\53\53";
7952
+ color: inherit;
7953
+ top: 0;
7954
+ position: absolute;
7955
+ right: 0;
7956
+ }
7957
+
7958
+ .premium-woo-product-thumbnail {
7959
+ position: relative;
7960
+ overflow: hidden;
7961
+ }
7962
+
7963
+ .premium-woo-product-thumbnail .woocommerce-loop-product__link img {
7964
+ margin: 0;
7965
+ width: 100%;
7966
+ }
7967
+
7968
+ .premium-woo-product-sale-wrap,
7969
+ .premium-woo-product-featured-wrap {
7970
+ margin: 0;
7971
+ }
7972
+
7973
+ .premium-woocommerce .premium-woo-products-details-wrap {
7974
+ padding: 1em 1.2em;
7975
+ }
7976
+
7977
+ .premium-woocommerce .premium-woo-products-details-wrap .button {
7978
+ display: inline-block;
7979
+ background-color: #6ec1e4;
7980
+ color: #fff;
7981
+ margin: 0.5em 0;
7982
+ line-height: 1.3;
7983
+ padding: 10px 40px;
7984
+ font-size: 100%;
7985
+ cursor: pointer;
7986
+ text-decoration: none;
7987
+ overflow: visible;
7988
+ font-weight: 700;
7989
+ background-image: none;
7990
+ border: none;
7991
+ -webkit-border-radius: 0px;
7992
+ border-radius: 0px;
7993
+ -webkit-box-shadow: none;
7994
+ box-shadow: none;
7995
+ text-shadow: none;
7996
+ -webkit-transition: all 0.3s ease-in-out;
7997
+ transition: all 0.3s ease-in-out;
7998
+ }
7999
+
8000
+ .premium-woocommerce li.product .price {
8001
+ display: block;
8002
+ line-height: 1.3;
8003
+ font-weight: 700;
8004
+ margin-bottom: 0.5em;
8005
+ font-size: 0.9em;
8006
+ }
8007
+
8008
+ .premium-woocommerce li.product .price del {
8009
+ display: inline-block;
8010
+ font-weight: 400;
8011
+ background: transparent;
8012
+ opacity: 1;
8013
+ }
8014
+
8015
+ .premium-woocommerce li.product .price ins {
8016
+ display: inline-block;
8017
+ background: transparent;
8018
+ text-decoration: none;
8019
+ font-weight: inherit;
8020
+ }
8021
+
8022
+ .premium-woocommerce li.product .price .amount {
8023
+ color: inherit !important;
8024
+ }
8025
+
8026
+ .premium-woocommerce li.product .premium-woo-product-desc p {
8027
+ margin: 0;
8028
+ }
8029
+
8030
+ .premium-woo-product-align-left .premium-woocommerce li.product .star-rating {
8031
+ margin-right: auto;
8032
+ margin-left: 0;
8033
+ }
8034
+
8035
+ .premium-woo-product-align-center .premium-woocommerce li.product .star-rating {
8036
+ margin-right: auto;
8037
+ margin-left: auto;
8038
+ }
8039
+
8040
+ .premium-woo-product-align-right .premium-woocommerce li.product .star-rating {
8041
+ margin-right: 0;
8042
+ margin-left: auto;
8043
+ }
8044
+
8045
+ .premium-woo-products-pagination ul.page-numbers {
8046
+ -js-display: flex;
8047
+ display: -webkit-box;
8048
+ display: -webkit-flex;
8049
+ display: -moz-box;
8050
+ display: -ms-flexbox;
8051
+ display: flex;
8052
+ list-style-type: none;
8053
+ margin: 0;
8054
+ margin-top: 10px;
8055
+ padding: 0;
8056
+ border: none;
8057
+ -webkit-box-pack: center;
8058
+ -webkit-justify-content: center;
8059
+ -moz-box-pack: center;
8060
+ -ms-flex-pack: center;
8061
+ justify-content: center;
8062
+ }
8063
+
8064
+ .premium-woo-products-pagination ul.page-numbers li {
8065
+ margin: 0 0 0.4em 0.4em;
8066
+ padding: 0;
8067
+ text-align: center;
8068
+ }
8069
+
8070
+ .premium-woo-products-pagination ul.page-numbers li .page-numbers {
8071
+ margin: 0;
8072
+ text-decoration: none;
8073
+ color: #000;
8074
+ border: 1px solid #54595f;
8075
+ padding: 0;
8076
+ line-height: 1;
8077
+ font-size: 1em;
8078
+ font-weight: 400;
8079
+ padding: 0.75em;
8080
+ display: block;
8081
+ min-width: 2.5em;
8082
+ -webkit-transition: all 0.3s ease-in-out;
8083
+ transition: all 0.3s ease-in-out;
8084
+ }
8085
+
8086
+ .premium-woo-products-pagination ul.page-numbers li .page-numbers:hover,
8087
+ .premium-woo-products-pagination ul.page-numbers li .page-numbers.current {
8088
+ background-color: #54595f;
8089
+ color: #fff;
8090
+ outline: none;
8091
+ }
8092
+
8093
+ .premium-woocommerce .premium-loading-feed,
8094
+ .premium-woo-quick-view-loader .premium-loading-feed {
8095
+ display: block;
8096
+ position: absolute;
8097
+ width: 100%;
8098
+ height: 100%;
8099
+ top: 0px;
8100
+ right: 0px;
8101
+ bottom: 0px;
8102
+ left: 0px;
8103
+ background: rgba(255, 255, 255, 0.2);
8104
+ -js-display: flex;
8105
+ display: -webkit-box;
8106
+ display: -webkit-flex;
8107
+ display: -moz-box;
8108
+ display: -ms-flexbox;
8109
+ display: flex;
8110
+ -webkit-box-align: center;
8111
+ -webkit-align-items: center;
8112
+ -moz-box-align: center;
8113
+ -ms-flex-align: center;
8114
+ align-items: center;
8115
+ }
8116
+
8117
+ /**
8118
+ * Image Hover Effects
8119
+ */
8120
+ .premium-woocommerce .woocommerce-loop-product__link img {
8121
+ -webkit-transition: all 0.3s ease-in-out;
8122
+ transition: all 0.3s ease-in-out;
8123
+ }
8124
+
8125
+ .premium-woo-product__hover-zoomout .woocommerce-loop-product__link img {
8126
+ -webkit-transform: scale(1.2);
8127
+ -ms-transform: scale(1.2);
8128
+ transform: scale(1.2);
8129
+ }
8130
+
8131
+ .premium-woo-product__hover-zoomout li.product:hover .woocommerce-loop-product__link img {
8132
+ -webkit-transform: none;
8133
+ -ms-transform: none;
8134
+ transform: none;
8135
+ }
8136
+
8137
+ .premium-woo-product__hover-zoomin .woocommerce-loop-product__link img {
8138
+ -webkit-transform: none;
8139
+ -ms-transform: none;
8140
+ transform: none;
8141
+ }
8142
+
8143
+ .premium-woo-product__hover-zoomin li.product:hover .woocommerce-loop-product__link img {
8144
+ -webkit-transform: scale(1.2);
8145
+ -ms-transform: scale(1.2);
8146
+ transform: scale(1.2);
8147
+ }
8148
+
8149
+ .premium-woo-product__hover-gray .woocommerce-loop-product__link img {
8150
+ -webkit-filter: grayscale(100%);
8151
+ filter: grayscale(100%);
8152
+ }
8153
+
8154
+ .premium-woo-product__hover-gray li.product:hover .woocommerce-loop-product__link img {
8155
+ -webkit-filter: grayscale(0%);
8156
+ filter: grayscale(0%);
8157
+ }
8158
+
8159
+ .premium-woo-product__hover-sepia .woocommerce-loop-product__link img {
8160
+ -webkit-filter: sepia(30%);
8161
+ filter: sepia(30%);
8162
+ }
8163
+
8164
+ .premium-woo-product__hover-sepia li.product:hover .woocommerce-loop-product__link img {
8165
+ -webkit-filter: sepia(0%);
8166
+ filter: sepia(0%);
8167
+ }
8168
+
8169
+ .premium-woo-product__hover-bright .woocommerce-loop-product__link img {
8170
+ -webkit-filter: brightness(1);
8171
+ filter: brightness(1);
8172
+ }
8173
+
8174
+ .premium-woo-product__hover-bright li.product:hover .woocommerce-loop-product__link img {
8175
+ -webkit-filter: brightness(1.2);
8176
+ filter: brightness(1.2);
8177
+ }
8178
+
8179
+ .premium-woo-product__hover-trans .woocommerce-loop-product__link img {
8180
+ -webkit-transform: translateX(15px) scale(1.1);
8181
+ -ms-transform: translateX(15px) scale(1.1);
8182
+ transform: translateX(15px) scale(1.1);
8183
+ }
8184
+
8185
+ .premium-woo-product__hover-trans li.product:hover .woocommerce-loop-product__link img {
8186
+ -webkit-transform: translateX(0px) scale(1.1);
8187
+ -ms-transform: translateX(0px) scale(1.1);
8188
+ transform: translateX(0px) scale(1.1);
8189
+ }
8190
+
8191
+ .premium-woo-product__hover-scale li.product:hover .woocommerce-loop-product__link img {
8192
+ -webkit-transform: scaleX(1.3) scaleY(1.3) rotate(-5deg);
8193
+ -ms-transform: scaleX(1.3) scaleY(1.3) rotate(-5deg);
8194
+ transform: scaleX(1.3) scaleY(1.3) rotate(-5deg);
8195
+ }
8196
+
8197
+ .premium-woocommerce .premium-woo-product__on_hover {
8198
+ position: absolute;
8199
+ top: 0;
8200
+ left: 0;
8201
+ bottom: 0;
8202
+ right: 0;
8203
+ height: 100%;
8204
+ opacity: 0;
8205
+ }
8206
+
8207
+ .premium-woo-product__hover-swap li.product:hover .premium-woo-product__on_hover {
8208
+ opacity: 1;
8209
+ }
8210
+
8211
+ .premium-woo-skin-grid-1 .premium-woo-qv-btn,
8212
+ .premium-woo-skin-grid-3 .premium-woo-qv-btn,
8213
+ .premium-woo-skin-grid-4 .premium-woo-qv-btn {
8214
+ position: absolute;
8215
+ bottom: 0;
8216
+ right: 0;
8217
+ width: 100%;
8218
+ text-align: center;
8219
+ padding: 5px;
8220
+ background: rgba(2, 2, 2, 0.5);
8221
+ color: #fff;
8222
+ -webkit-transition: all 0.3s ease-in-out;
8223
+ transition: all 0.3s ease-in-out;
8224
+ z-index: 2;
8225
+ -webkit-transform: translateY(100%);
8226
+ -ms-transform: translateY(100%);
8227
+ transform: translateY(100%);
8228
+ }
8229
+
8230
+ .premium-woo-skin-grid-4 .premium-woo-qv-btn {
8231
+ -webkit-transition-delay: 0.1s;
8232
+ transition-delay: 0.1s;
8233
+ }
8234
+
8235
+ .premium-woo-skin-grid-1 .premium-woo-qv-icon,
8236
+ .premium-woo-skin-grid-3 .premium-woo-qv-icon,
8237
+ .premium-woo-skin-grid-4 .premium-woo-qv-icon,
8238
+ .premium-woo-skin-grid-6 .premium-woo-qv-icon {
8239
+ margin-right: 0.5em;
8240
+ }
8241
+
8242
+ .premium-woo-product-thumbnail:hover .premium-woo-qv-btn-translate {
8243
+ -webkit-transform: translateY(0);
8244
+ -ms-transform: translateY(0);
8245
+ transform: translateY(0);
8246
+ }
8247
+
8248
+ .premium-woo-product-wrapper .premium-woo-qv-data {
8249
+ position: absolute;
8250
+ top: 0;
8251
+ right: 0;
8252
+ width: 100%;
8253
+ height: 100%;
8254
+ z-index: 1;
8255
+ overflow: hidden;
8256
+ cursor: pointer;
8257
+ }
8258
+
8259
+ /**
8260
+ * Skin 1,4
8261
+ */
8262
+ .premium-woo-skin-grid-1 .premium-woo-product-actions-wrapper,
8263
+ .premium-woo-skin-grid-4 .premium-woo-product-actions-wrapper {
8264
+ position: absolute;
8265
+ top: 0.7em;
8266
+ left: 1em;
8267
+ -webkit-transform: translate3d(-15px, 0, 0);
8268
+ transform: translate3d(-15px, 0, 0);
8269
+ -webkit-transition: all 0.3s ease-in-out;
8270
+ transition: all 0.3s ease-in-out;
8271
+ opacity: 0;
8272
+ z-index: 9;
8273
+ }
8274
+
8275
+ .premium-woocommerce .premium-woo-product-actions-wrapper .premium-woo-cart-btn {
8276
+ position: relative;
8277
+ display: block;
8278
+ margin: 0 0 3px;
8279
+ background: #fff;
8280
+ text-align: center;
8281
+ outline: 0;
8282
+ -webkit-transition: all 0.3s ease-in-out;
8283
+ transition: all 0.3s ease-in-out;
8284
+ }
8285
+
8286
+ .premium-woocommerce .premium-woo-product-actions-wrapper .premium-woo-add-cart-icon {
8287
+ display: block;
8288
+ color: #54595f;
8289
+ width: 30px;
8290
+ line-height: 30px;
8291
+ height: 30px;
8292
+ cursor: pointer;
8293
+ -webkit-transition: all 0.3s ease-in-out;
8294
+ transition: all 0.3s ease-in-out;
8295
+ }
8296
+
8297
+ .premium-woo-skin-grid-1 li.product:hover .premium-woo-product-actions-wrapper,
8298
+ .premium-woo-skin-grid-4 li.product:hover .premium-woo-product-actions-wrapper {
8299
+ -webkit-transform: translate3d(-5px, 0, 0);
8300
+ transform: translate3d(-5px, 0, 0);
8301
+ opacity: 1;
8302
+ }
8303
+
8304
+ .premium-woocommerce .premium-woo-cart-btn.adding .premium-woo-add-cart-icon {
8305
+ -webkit-animation: spin 2s linear infinite;
8306
+ animation: spin 2s linear infinite;
8307
+ }
8308
+
8309
+ .premium-woocommerce .premium-woo-cart-btn.adding .premium-woo-add-cart-icon::before {
8310
+ content: "\f013";
8311
+ }
8312
+
8313
+ .premium-woocommerce .premium-woo-cart-btn.added .premium-woo-add-cart-icon::before {
8314
+ content: "\f00c";
8315
+ }
8316
+
8317
+ /**
8318
+ * Skin 2
8319
+ */
8320
+ .premium-woo-skin-grid-2 li.product .premium-woo-products-details-wrap {
8321
+ position: absolute;
8322
+ background: #fff;
8323
+ bottom: 0;
8324
+ right: 0;
8325
+ width: 100%;
8326
+ z-index: 2;
8327
+ padding: 0;
8328
+ opacity: 0;
8329
+ -webkit-transition: opacity 0.2s, -webkit-transform 0.4s;
8330
+ transition: opacity 0.2s, -webkit-transform 0.4s;
8331
+ transition: transform 0.4s, opacity 0.2s;
8332
+ transition: transform 0.4s, opacity 0.2s, -webkit-transform 0.4s;
8333
+ -webkit-transform: translateZ(0) translateY(5px);
8334
+ transform: translateZ(0) translateY(5px);
8335
+ }
8336
+
8337
+ .premium-woo-skin-grid-2 .premium-woo-product-details {
8338
+ padding: 15px 0;
8339
+ }
8340
+
8341
+ .premium-woo-skin-grid-2 li.product:hover .premium-woo-products-details-wrap {
8342
+ opacity: 1;
8343
+ -webkit-transform: translateZ(0) translateY(0);
8344
+ transform: translateZ(0) translateY(0);
8345
+ }
8346
+
8347
+ .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper {
8348
+ position: static;
8349
+ -js-display: flex;
8350
+ display: -webkit-box;
8351
+ display: -webkit-flex;
8352
+ display: -moz-box;
8353
+ display: -ms-flexbox;
8354
+ display: flex;
8355
+ -webkit-box-orient: horizontal;
8356
+ -webkit-box-direction: reverse;
8357
+ -webkit-flex-direction: row-reverse;
8358
+ -moz-box-orient: horizontal;
8359
+ -moz-box-direction: reverse;
8360
+ -ms-flex-direction: row-reverse;
8361
+ flex-direction: row-reverse;
8362
+ }
8363
+
8364
+ .premium-woo-skin-grid-2 .premium-woo-product-actions-wrapper>* {
8365
+ -webkit-box-flex: 1;
8366
+ -webkit-flex: 1;
8367
+ -moz-box-flex: 1;
8368
+ -ms-flex: 1;
8369
+ flex: 1;
8370
+ min-width: 50%;
8371
+ }
8372
+
8373
+ .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper .button {
8374
+ -js-display: flex;
8375
+ display: -webkit-box;
8376
+ display: -webkit-flex;
8377
+ display: -moz-box;
8378
+ display: -ms-flexbox;
8379
+ display: flex;
8380
+ margin: 0;
8381
+ text-align: center;
8382
+ -webkit-box-pack: center;
8383
+ -webkit-justify-content: center;
8384
+ -moz-box-pack: center;
8385
+ -ms-flex-pack: center;
8386
+ justify-content: center;
8387
+ -webkit-box-align: center;
8388
+ -webkit-align-items: center;
8389
+ -moz-box-align: center;
8390
+ -ms-flex-align: center;
8391
+ align-items: center;
8392
+ }
8393
+
8394
+ .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper .premium-woo-qv-btn {
8395
+ background-color: #54595f;
8396
+ }
8397
+
8398
+ /**
8399
+ * Skin 4
8400
+ */
8401
+ .premium-woo-skin-grid-4 li.product .premium-woo-products-details-wrap {
8402
+ position: absolute;
8403
+ right: 0;
8404
+ left: 0;
8405
+ top: 50%;
8406
+ -webkit-transform: scale(0.9) translateZ(0) translateY(-50%);
8407
+ transform: scale(0.9) translateZ(0) translateY(-50%);
8408
+ text-align: center;
8409
+ z-index: 2;
8410
+ opacity: 0;
8411
+ -webkit-transition: opacity 0.5s, -webkit-transform 0.3s;
8412
+ transition: opacity 0.5s, -webkit-transform 0.3s;
8413
+ transition: opacity 0.5s, transform 0.3s;
8414
+ transition: opacity 0.5s, transform 0.3s, -webkit-transform 0.3s;
8415
+ }
8416
+
8417
+ .premium-woo-skin-grid-4 li.product .premium-woo-product-overlay,
8418
+ .premium-woo-skin-grid-8 li.product .premium-woo-product-overlay {
8419
+ position: absolute;
8420
+ top: 0;
8421
+ right: 0;
8422
+ width: 100%;
8423
+ height: 100%;
8424
+ opacity: 0;
8425
+ visibility: hidden;
8426
+ background-color: rgba(27, 27, 23, 0.3);
8427
+ -webkit-transition: all 0.25s ease-in-out;
8428
+ transition: all 0.25s ease-in-out;
8429
+ }
8430
+
8431
+ .premium-woo-skin-grid-4 li.product:hover .premium-woo-product-overlay,
8432
+ .premium-woo-skin-grid-8 li.product:hover .premium-woo-product-overlay {
8433
+ opacity: 1;
8434
+ visibility: visible;
8435
+ z-index: 1;
8436
+ }
8437
+
8438
+ .premium-woo-skin-grid-4 li.product:hover .premium-woo-products-details-wrap {
8439
+ -webkit-transform: scale(1) translateZ(0) translateY(-50%);
8440
+ transform: scale(1) translateZ(0) translateY(-50%);
8441
+ opacity: 1;
8442
+ }
8443
+
8444
+ /**
8445
+ * Skin 5
8446
+ */
8447
+ .premium-woo-skin-grid-5 li.product .premium-woo-product-actions-wrapper {
8448
+ -js-display: flex;
8449
+ display: -webkit-box;
8450
+ display: -webkit-flex;
8451
+ display: -moz-box;
8452
+ display: -ms-flexbox;
8453
+ display: flex;
8454
+ }
8455
+
8456
+ .premium-woo-skin-grid-5 li.product .premium-woo-product-actions-wrapper .premium-woo-qv-btn {
8457
+ -js-display: flex;
8458
+ display: -webkit-box;
8459
+ display: -webkit-flex;
8460
+ display: -moz-box;
8461
+ display: -ms-flexbox;
8462
+ display: flex;
8463
+ -webkit-box-align: center;
8464
+ -webkit-align-items: center;
8465
+ -moz-box-align: center;
8466
+ -ms-flex-align: center;
8467
+ align-items: center;
8468
+ background-color: #54595f;
8469
+ padding: 10px;
8470
+ -webkit-transition: all 0.25s ease 0s;
8471
+ transition: all 0.25s ease 0s;
8472
+ }
8473
+
8474
+ .premium-woo-skin-grid-5 li.product .premium-woo-products-details-wrap {
8475
+ width: 75%;
8476
+ }
8477
+
8478
+ .premium-woo-skin-grid-5 .premium-woo-product-wrapper {
8479
+ -js-display: flex;
8480
+ display: -webkit-box;
8481
+ display: -webkit-flex;
8482
+ display: -moz-box;
8483
+ display: -ms-flexbox;
8484
+ display: flex;
8485
+ -webkit-box-align: center;
8486
+ -webkit-align-items: center;
8487
+ -moz-box-align: center;
8488
+ -ms-flex-align: center;
8489
+ align-items: center;
8490
+ }
8491
+
8492
+ .premium-woo-product-align-right .premium-woo-skin-grid-5 .premium-woo-product-actions-wrapper {
8493
+ -webkit-box-pack: end;
8494
+ -webkit-justify-content: flex-end;
8495
+ -moz-box-pack: end;
8496
+ -ms-flex-pack: end;
8497
+ justify-content: flex-end;
8498
+ }
8499
+
8500
+ .premium-woo-product-align-center .premium-woo-skin-grid-5 .premium-woo-product-actions-wrapper {
8501
+ -webkit-box-pack: center;
8502
+ -webkit-justify-content: center;
8503
+ -moz-box-pack: center;
8504
+ -ms-flex-pack: center;
8505
+ justify-content: center;
8506
+ }
8507
+
8508
+ /**
8509
+ * Skin 6
8510
+ */
8511
+ .premium-woo-skin-grid-6 .premium-woo-qv-btn {
8512
+ position: absolute;
8513
+ top: 50%;
8514
+ right: 50%;
8515
+ min-width: 40%;
8516
+ text-align: center;
8517
+ padding: 5px;
8518
+ background: rgba(2, 2, 2, 0.5);
8519
+ color: #fff;
8520
+ -webkit-transform: translate(50%, -50%);
8521
+ -ms-transform: translate(50%, -50%);
8522
+ transform: translate(50%, -50%);
8523
+ opacity: 0;
8524
+ visibility: hidden;
8525
+ -webkit-transition: all 0.3s ease-in-out;
8526
+ transition: all 0.3s ease-in-out;
8527
+ cursor: pointer;
8528
+ z-index: 2;
8529
+ }
8530
+
8531
+ .premium-woo-skin-grid-6 li.product:hover .premium-woo-qv-btn {
8532
+ opacity: 1;
8533
+ visibility: visible;
8534
+ }
8535
+
8536
+ .premium-woo-product-align-right .premium-woo-skin-grid-6 li.product .premium-woo-product-info .star-rating,
8537
+ .premium-woo-product-align-left .premium-woo-skin-grid-6 li.product .premium-woo-product-info .star-rating,
8538
+ .premium-woo-product-align-right .premium-woo-skin-grid-7 li.product .premium-woo-product-info .star-rating,
8539
+ .premium-woo-product-align-left .premium-woo-skin-grid-7 li.product .premium-woo-product-info .star-rating {
8540
+ margin: 0;
8541
+ }
8542
+
8543
+ .premium-woo-skin-grid-6 li.product .premium-woo-product-info {
8544
+ -js-display: flex;
8545
+ display: -webkit-box;
8546
+ display: -webkit-flex;
8547
+ display: -moz-box;
8548
+ display: -ms-flexbox;
8549
+ display: flex;
8550
+ -webkit-box-pack: justify;
8551
+ -webkit-justify-content: space-between;
8552
+ -moz-box-pack: justify;
8553
+ -ms-flex-pack: justify;
8554
+ justify-content: space-between;
8555
+ }
8556
+
8557
+ .premium-woo-product-align-center .premium-woocommerce li.product .premium-woo-product-info {
8558
+ -webkit-box-orient: vertical;
8559
+ -webkit-box-direction: normal;
8560
+ -webkit-flex-direction: column;
8561
+ -moz-box-orient: vertical;
8562
+ -moz-box-direction: normal;
8563
+ -ms-flex-direction: column;
8564
+ flex-direction: column;
8565
+ }
8566
+
8567
+ .premium-woo-product-align-right .premium-woocommerce li.product .premium-woo-product-info {
8568
+ -webkit-box-orient: horizontal;
8569
+ -webkit-box-direction: reverse;
8570
+ -webkit-flex-direction: row-reverse;
8571
+ -moz-box-orient: horizontal;
8572
+ -moz-box-direction: reverse;
8573
+ -ms-flex-direction: row-reverse;
8574
+ flex-direction: row-reverse;
8575
+ }
8576
+
8577
+ .premium-woo-skin-grid-6 li.product .premium-woo-product-gallery-images {
8578
+ -js-display: flex;
8579
+ display: -webkit-box;
8580
+ display: -webkit-flex;
8581
+ display: -moz-box;
8582
+ display: -ms-flexbox;
8583
+ display: flex;
8584
+ position: absolute;
8585
+ bottom: 10px;
8586
+ width: 100%;
8587
+ -webkit-box-pack: center;
8588
+ -webkit-justify-content: center;
8589
+ -moz-box-pack: center;
8590
+ -ms-flex-pack: center;
8591
+ justify-content: center;
8592
+ }
8593
+
8594
+ .premium-woo-product-gallery-images .premium-woo-product__gallery_image {
8595
+ width: 20%;
8596
+ margin: 0 0.2em;
8597
+ border: 2px solid #aaa;
8598
+ cursor: pointer;
8599
+ }
8600
+
8601
+ /**
8602
+ * Metro
8603
+ */
8604
+ /*.premium-woo-grid-style1 ul.products li.product {
8605
+ width: 25%;
8606
+ }*/
8607
+ .premium-woo-products-metro li.product .premium-woo-product-thumbnail img,
8608
+ .premium-woo-products-metro li.product .premium-woo-product-wrapper,
8609
+ .premium-woo-products-metro li.product .premium-woo-product-thumbnail,
8610
+ .premium-woo-products-metro li.product .woocommerce-LoopProduct-link {
8611
+ height: 100%;
8612
+ }
8613
+
8614
+ .premium-woo-products-metro ul.products li.product {
8615
+ margin-bottom: 0;
8616
+ }
8617
+
8618
+ .premium-woo-products-metro li.product .premium-woo-product-thumbnail img {
8619
+ -o-object-fit: cover;
8620
+ object-fit: cover;
8621
+ }
8622
+
8623
+ /*
8624
+ * Carousel
8625
+ */
8626
+ .premium-woocommerce:not(.premium-woo-skin-grid-7) .slick-arrow {
8627
+ -webkit-border-radius: 50%;
8628
+ border-radius: 50%;
8629
+ }
8630
+
8631
+ .premium-woocommerce ul.slick-dots {
8632
+ width: 100%;
8633
+ }
8634
+
8635
+ /*
8636
+ * Quick View Html/body
8637
+ */
8638
+ html.premium-woo-qv-opened,
8639
+ html.premium-woo-qv-opened body {
8640
+ overflow: hidden;
8641
+ }
8642
+
8643
+ /**
8644
+ * Quick View Modal
8645
+ */
8646
+ .premium-woo-quick-view-back {
8647
+ position: fixed;
8648
+ visibility: hidden;
8649
+ overflow: hidden;
8650
+ background: rgba(2, 2, 2, 0.5);
8651
+ opacity: 0;
8652
+ -webkit-transition: opacity 0.25s;
8653
+ transition: opacity 0.25s;
8654
+ z-index: 999;
8655
+ }
8656
+
8657
+ .premium-woo-quick-view-active {
8658
+ top: 0;
8659
+ right: 0;
8660
+ width: 100%;
8661
+ height: 100%;
8662
+ opacity: 1;
8663
+ visibility: visible;
8664
+ }
8665
+
8666
+ #premium-woo-quick-view-modal {
8667
+ position: fixed;
8668
+ visibility: hidden;
8669
+ opacity: 0;
8670
+ top: 0;
8671
+ right: 0;
8672
+ width: 100%;
8673
+ height: 100%;
8674
+ z-index: 1400;
8675
+ text-align: center;
8676
+ -webkit-transition: all 0.3s;
8677
+ transition: all 0.3s;
8678
+ overflow-x: hidden;
8679
+ overflow-y: auto;
8680
+ }
8681
+
8682
+ #premium-woo-quick-view-modal.active {
8683
+ visibility: visible;
8684
+ opacity: 1;
8685
+ }
8686
+
8687
+ #premium-woo-quick-view-modal.active .premium-woo-content-main {
8688
+ -webkit-transform: translateY(0);
8689
+ -ms-transform: translateY(0);
8690
+ transform: translateY(0);
8691
+ opacity: 1;
8692
+ width: 100%;
8693
+ }
8694
+
8695
+ #premium-woo-quick-view-modal .premium-woo-content-main-wrapper {
8696
+ position: absolute;
8697
+ width: 100%;
8698
+ height: 100%;
8699
+ top: 0;
8700
+ right: 0;
8701
+ text-align: center;
8702
+ padding: 30px;
8703
+ -js-display: flex;
8704
+ display: -webkit-box;
8705
+ display: -webkit-flex;
8706
+ display: -moz-box;
8707
+ display: -ms-flexbox;
8708
+ display: flex;
8709
+ -webkit-box-align: center;
8710
+ -webkit-align-items: center;
8711
+ -moz-box-align: center;
8712
+ -ms-flex-align: center;
8713
+ align-items: center;
8714
+ }
8715
+
8716
+ #premium-woo-quick-view-modal .premium-woo-content-main {
8717
+ position: relative;
8718
+ pointer-events: none;
8719
+ max-width: 100%;
8720
+ text-align: right;
8721
+ z-index: 1045;
8722
+ -webkit-transform: translateY(-30px);
8723
+ -ms-transform: translateY(-30px);
8724
+ transform: translateY(-30px);
8725
+ opacity: 0;
8726
+ -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
8727
+ transition: opacity 0.3s, -webkit-transform 0.5s;
8728
+ transition: transform 0.5s, opacity 0.3s;
8729
+ transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
8730
+ margin: 0 auto;
8731
+ }
8732
+
8733
+ #premium-woo-quick-view-modal .premium-woo-lightbox-content {
8734
+ position: relative;
8735
+ display: table;
8736
+ pointer-events: auto;
8737
+ background-color: #fff;
8738
+ max-width: 975px;
8739
+ margin: 20px auto;
8740
+ -webkit-transform: translateZ(0);
8741
+ transform: translateZ(0);
8742
+ -webkit-box-shadow: -3px 3px 20px 0 rgba(0, 0, 0, 0.15);
8743
+ box-shadow: -3px 3px 20px 0 rgba(0, 0, 0, 0.15);
8744
+ overflow: hidden;
8745
+ }
8746
+
8747
+ #premium-woo-quick-view-modal .summary {
8748
+ width: 50%;
8749
+ margin: 0;
8750
+ padding: 30px;
8751
+ float: right;
8752
+ -webkit-box-sizing: border-box;
8753
+ -moz-box-sizing: border-box;
8754
+ box-sizing: border-box;
8755
+ }
8756
+
8757
+ #premium-woo-quick-view-modal .summary .quantity {
8758
+ min-width: auto;
8759
+ }
8760
+
8761
+ #premium-woo-quick-view-modal .summary .quantity input.qty {
8762
+ width: 54px;
8763
+ -webkit-appearance: button;
8764
+ -moz-appearance: button;
8765
+ appearance: button;
8766
+ }
8767
+
8768
+ #premium-woo-quick-view-modal .summary .quantity input[type="number"]::-webkit-inner-spin-button,
8769
+ #premium-woo-quick-view-modal .summary .quantity input[type="number"]::-webkit-outer-spin-button {
8770
+ display: unset;
8771
+ }
8772
+
8773
+ #premium-woo-quick-view-modal .woocommerce-product-details__short-description p {
8774
+ margin: 0;
8775
+ }
8776
+
8777
+ #premium-woo-quick-view-close {
8778
+ position: absolute;
8779
+ font-size: 22px;
8780
+ top: 10px;
8781
+ left: 10px;
8782
+ width: 22px;
8783
+ height: 22px;
8784
+ line-height: 22px;
8785
+ opacity: 0.7;
8786
+ text-align: center;
8787
+ z-index: 2;
8788
+ color: #000;
8789
+ }
8790
+
8791
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider {
8792
+ position: relative;
8793
+ }
8794
+
8795
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider li {
8796
+ list-style: none;
8797
+ }
8798
+
8799
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav {
8800
+ margin: 0;
8801
+ padding: 0;
8802
+ width: 100%;
8803
+ position: absolute;
8804
+ bottom: 10px;
8805
+ text-align: center;
8806
+ direction: ltr;
8807
+ }
8808
+
8809
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li {
8810
+ margin: 0 6px;
8811
+ display: inline-block;
8812
+ vertical-align: middle;
8813
+ }
8814
+
8815
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a {
8816
+ width: 11px;
8817
+ height: 11px;
8818
+ display: block;
8819
+ background: #666;
8820
+ background: rgba(0, 0, 0, 0.5);
8821
+ cursor: pointer;
8822
+ text-indent: -9999px;
8823
+ -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
8824
+ box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
8825
+ -webkit-border-radius: 20px;
8826
+ border-radius: 20px;
8827
+ }
8828
+
8829
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a.flex-active {
8830
+ background: rgba(0, 0, 0, 0.9);
8831
+ cursor: default;
8832
+ }
8833
+
8834
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a:focus {
8835
+ outline: none;
8836
+ }
8837
+
8838
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider img {
8839
+ -o-object-fit: cover;
8840
+ object-fit: cover;
8841
+ }
8842
+
8843
+ #premium-woo-quick-view-content div.images {
8844
+ width: 50%;
8845
+ float: right;
8846
+ opacity: 1 !important;
8847
+ margin: 0;
8848
+ }
8849
+
8850
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav {
8851
+ margin: 0;
8852
+ padding: 0;
8853
+ list-style: none;
8854
+ direction: ltr;
8855
+ }
8856
+
8857
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav a {
8858
+ text-decoration: none;
8859
+ display: block;
8860
+ width: 14px;
8861
+ height: 32px;
8862
+ font-size: 32px;
8863
+ line-height: 32px;
8864
+ margin: -20px 0 0;
8865
+ position: absolute;
8866
+ top: 50%;
8867
+ z-index: 10;
8868
+ overflow: hidden;
8869
+ cursor: pointer;
8870
+ color: rgba(0, 0, 0, 0.8);
8871
+ text-shadow: -1px 1px 0 rgba(255, 255, 255, 0.3);
8872
+ -webkit-transition: all 0.3s ease-in-out;
8873
+ transition: all 0.3s ease-in-out;
8874
+ }
8875
+
8876
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next,
8877
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev {
8878
+ display: inline-block;
8879
+ font-family: "Font Awesome 5 Free";
8880
+ font-weight: 900;
8881
+ text-rendering: auto;
8882
+ -webkit-font-smoothing: antialiased;
8883
+ -moz-osx-font-smoothing: grayscale;
8884
+ }
8885
+
8886
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev {
8887
+ left: 10px;
8888
+ }
8889
+
8890
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next {
8891
+ right: 10px;
8892
+ }
8893
+
8894
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev::before {
8895
+ content: "\f104";
8896
+ }
8897
+
8898
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next::before {
8899
+ content: "\f105";
8900
+ }
8901
+
8902
+ .premium-woocommerce li.product .added_to_cart.wc-forward {
8903
+ display: none;
8904
+ }
8905
+
8906
+ .premium-woo-atc-button .add_to_cart_button span {
8907
+ -webkit-animation: spin 2s linear infinite;
8908
+ animation: spin 2s linear infinite;
8909
+ margin-right: 5px;
8910
+ vertical-align: baseline;
8911
+ }
8912
+
8913
+ @media (min-width: 545px) {
8914
+ #premium-woo-quick-view-content div.summary {
8915
+ content: "544";
8916
+ overflow-y: auto;
8917
+ }
8918
+ }
8919
+
8920
+ @media (max-width: 544px) {
8921
+ #premium-woo-quick-view-content .premium-woo-lightbox-content {
8922
+ display: block;
8923
+ }
8924
+
8925
+ #premium-woo-quick-view-content div.images,
8926
+ #premium-woo-quick-view-content div.summary {
8927
+ width: 100%;
8928
+ float: none;
8929
+ }
8930
  }
8931
+ /*
8932
+ * Common Title/Dual Heading
8933
+ */
8934
+ .premium-title-bg-text:before {
8935
  position: absolute;
8936
+ content: attr(data-background);
8937
  top: 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8938
  left: 0;
8939
+ text-align: left;
 
 
 
 
 
 
 
 
 
8940
  }
8941
 
8942
+ .premium-bg-text-yes .elementor-widget-container:before {
8943
  position: absolute;
8944
  top: 0;
8945
+ left: 0;
8946
+ text-align: left;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8947
  }
8948
 
8949
+ .premium-mask-yes .premium-dual-header-first-clip .premium-dual-header-first-span .premium-mask-span,
8950
+ .premium-mask-yes .premium-dual-header-second-clip .premium-mask-span {
8951
+ background: inherit;
8952
  }
8953
 
8954
+ .premium-mask-yes .premium-mask-span {
8955
+ position: relative;
 
 
8956
  overflow: hidden;
8957
+ -js-display: inline-flex !important;
8958
+ display: -webkit-inline-box !important;
8959
+ display: -webkit-inline-flex !important;
8960
+ display: -moz-inline-box !important;
8961
+ display: -ms-inline-flexbox !important;
8962
+ display: inline-flex !important;
8963
  }
8964
 
8965
+ .premium-mask-yes .premium-mask-span::after {
8966
+ content: "";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8967
  position: absolute;
 
8968
  top: 0;
8969
+ right: 0px;
 
8970
  width: 100%;
8971
  height: 100%;
8972
+ background-color: currentColor;
8973
+ -webkit-backface-visibility: visible;
8974
+ backface-visibility: visible;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8975
  }
8976
 
8977
+ .premium-mask-active.premium-mask-tr .premium-mask-span::after {
8978
+ -webkit-animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
8979
+ animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
8980
+ -webkit-transform: translateX(-103%);
8981
+ -ms-transform: translateX(-103%);
8982
+ transform: translateX(-103%);
 
 
8983
  }
8984
 
8985
+ .premium-mask-active.premium-mask-tl .premium-mask-span::after {
8986
+ -webkit-animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
8987
+ animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
8988
+ -webkit-transform: translateX(103%);
8989
+ -ms-transform: translateX(103%);
8990
+ transform: translateX(103%);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8991
  }
8992
 
8993
+ .premium-mask-active.premium-mask-tb .premium-mask-span::after {
8994
+ -webkit-animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
8995
+ animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
8996
+ -webkit-transform: translateY(-103%);
8997
+ -ms-transform: translateY(-103%);
8998
+ transform: translateY(-103%);
8999
  }
9000
 
9001
+ .premium-mask-active.premium-mask-tt .premium-mask-span::after {
9002
+ -webkit-animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
9003
+ animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
9004
+ -webkit-transform: translateY(103%);
9005
+ -ms-transform: translateY(103%);
9006
+ transform: translateY(103%);
9007
  }
9008
 
9009
+ @-webkit-keyframes pa-mask-tr {
9010
+ 0% {
9011
+ -webkit-transform: translateX(0%);
9012
+ transform: translateX(0%);
9013
+ }
 
 
 
 
9014
 
9015
+ 100% {
9016
+ -webkit-transform: translateX(103%);
9017
+ transform: translateX(103%);
9018
+ }
 
9019
  }
9020
 
9021
+ @keyframes pa-mask-tr {
9022
+ 0% {
9023
+ -webkit-transform: translateX(0%);
9024
+ transform: translateX(0%);
9025
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
9026
 
9027
+ 100% {
9028
+ -webkit-transform: translateX(103%);
9029
+ transform: translateX(103%);
9030
+ }
 
 
 
 
 
 
 
 
9031
  }
9032
 
9033
+ @-webkit-keyframes pa-mask-tl {
9034
+ 0% {
9035
+ -webkit-transform: translateX(0%);
9036
+ transform: translateX(0%);
9037
+ }
 
 
 
 
9038
 
9039
+ 100% {
9040
+ -webkit-transform: translateX(-103%);
9041
+ transform: translateX(-103%);
9042
+ }
9043
  }
9044
 
9045
+ @keyframes pa-mask-tl {
9046
+ 0% {
9047
+ -webkit-transform: translateX(0%);
9048
+ transform: translateX(0%);
9049
+ }
 
9050
 
9051
+ 100% {
9052
+ -webkit-transform: translateX(-103%);
9053
+ transform: translateX(-103%);
9054
+ }
9055
  }
9056
 
9057
+ @-webkit-keyframes pa-mask-tb {
9058
+ 0% {
9059
+ -webkit-transform: translateY(0%);
9060
+ transform: translateY(0%);
9061
+ }
 
 
 
 
 
 
 
 
9062
 
9063
+ 100% {
9064
+ -webkit-transform: translateY(103%);
9065
+ transform: translateY(103%);
9066
+ }
9067
  }
9068
 
9069
+ @keyframes pa-mask-tb {
9070
+ 0% {
9071
+ -webkit-transform: translateY(0%);
9072
+ transform: translateY(0%);
9073
+ }
9074
 
9075
+ 100% {
9076
+ -webkit-transform: translateY(103%);
9077
+ transform: translateY(103%);
9078
+ }
 
 
 
 
9079
  }
9080
 
9081
+ @-webkit-keyframes pa-mask-tt {
9082
+ 0% {
9083
+ -webkit-transform: translateY(0%);
9084
+ transform: translateY(0%);
9085
+ }
9086
 
9087
+ 100% {
9088
+ -webkit-transform: translateY(-103%);
9089
+ transform: translateY(-103%);
9090
+ }
 
 
 
 
 
 
 
 
9091
  }
9092
 
9093
+ @keyframes pa-mask-tt {
9094
+ 0% {
9095
+ -webkit-transform: translateY(0%);
9096
+ transform: translateY(0%);
9097
+ }
9098
+
9099
+ 100% {
9100
+ -webkit-transform: translateY(-103%);
9101
+ transform: translateY(-103%);
9102
+ }
9103
  }
9104
 
9105
+ /*
9106
+ * Common Button style.
9107
+ */
9108
+ .premium-button .premium-lottie-animation,
9109
+ .premium-image-button .premium-lottie-animation {
9110
+ -js-display: flex;
9111
+ display: -webkit-box;
9112
+ display: -webkit-flex;
9113
+ display: -moz-box;
9114
+ display: -ms-flexbox;
9115
+ display: flex;
9116
  }
9117
 
9118
+ .premium-button svg,
9119
+ .premium-image-button svg {
9120
+ width: 30px;
9121
+ height: 30px;
9122
  }
9123
 
9124
+ .premium-btn-sm,
9125
+ .premium-btn-md,
9126
+ .premium-btn-lg,
9127
+ .premium-btn-block {
9128
+ background-color: #eee;
9129
+ color: #042551;
9130
+ margin: 0px;
9131
+ text-decoration: none;
9132
  }
9133
 
9134
+ .premium-btn-sm:hover,
9135
+ .premium-btn-md:hover,
9136
+ .premium-btn-lg:hover,
9137
+ .premium-btn-block:hover {
9138
+ background-color: #54595f;
9139
+ color: #eee;
9140
  }
9141
 
9142
+ .premium-btn-sm {
9143
+ padding: 12px 24px;
9144
+ font-size: 14px;
9145
+ line-height: 1;
 
 
 
 
 
 
 
 
 
 
 
 
 
9146
  }
9147
 
9148
+ .premium-btn-md {
9149
+ padding: 14px 26px;
9150
+ font-size: 16px;
9151
+ line-height: 1.2;
 
 
 
 
9152
  }
9153
 
9154
+ .premium-btn-lg {
9155
+ padding: 16px 28px;
9156
+ font-size: 18px;
9157
+ line-height: 1.3333;
9158
  }
9159
 
9160
+ .premium-btn-block {
9161
+ font-size: 18px;
9162
+ line-height: 1;
9163
+ padding: 20px 0px;
9164
+ width: 100%;
9165
+ text-align: center;
9166
  }
9167
 
9168
+ .premium-button-text {
9169
+ display: inline-block;
9170
+ width: 100%;
9171
  }
9172
 
9173
+ /*
9174
+ * Common Button/Image Button Mouse Detect Effect.
9175
+ */
9176
+ .premium-mouse-detect-yes .premium-button-style6 .premium-button-style6-bg {
9177
+ position: absolute;
9178
+ z-index: 0;
9179
+ top: 0;
9180
+ right: 0;
9181
+ width: 0px;
9182
+ height: 0px;
9183
+ -webkit-border-radius: 50%;
9184
+ border-radius: 50%;
9185
+ display: block;
9186
+ -webkit-transform: translate(50%, -50%);
9187
+ -ms-transform: translate(50%, -50%);
9188
+ transform: translate(50%, -50%);
9189
+ -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
9190
+ transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
9191
  }
9192
 
9193
+ .premium-mouse-detect-yes .premium-button-style6:hover .premium-button-style6-bg {
9194
+ width: 225%;
9195
+ height: 560px;
9196
  }
9197
 
9198
+ .premium-mouse-detect-yes .premium-button-style6:before {
9199
+ width: 0;
9200
+ height: 0;
 
 
9201
  }
9202
 
9203
+ /**Animation*/
9204
+ @-webkit-keyframes spin {
9205
+ 0% {
9206
+ -webkit-transform: rotate(0deg);
9207
+ }
9208
+
9209
+ 100% {
9210
+ -webkit-transform: rotate(-360deg);
9211
  }
9212
  }
9213
 
9214
+ @keyframes spin {
9215
+ 0% {
9216
+ -webkit-transform: rotate(0deg);
9217
+ transform: rotate(0deg);
9218
  }
9219
 
9220
+ 100% {
9221
+ -webkit-transform: rotate(-360deg);
9222
+ transform: rotate(-360deg);
 
9223
  }
9224
  }
9225
 
9226
+ /** Notice*/
9227
  .premium-error-notice {
9228
  width: 100%;
9229
  padding: 10px;
9231
  background-color: #f2dede;
9232
  border-color: #eed3d7;
9233
  text-align: center;
9234
+ }
9235
+
9236
+ /**Loader*/
9237
+ .premium-loader {
9238
+ border: 3px solid #f3f3f3;
9239
+ border-top-width: 3px;
9240
+ border-top-style: solid;
9241
+ border-top-color: rgb(243, 243, 243);
9242
+ -webkit-border-radius: 50%;
9243
+ border-radius: 50%;
9244
+ border-top: 3px solid;
9245
+ border-top-color: #bbb;
9246
+ width: 30px;
9247
+ height: 30px;
9248
+ -webkit-animation: spin 2s linear infinite;
9249
+ animation: spin 2s linear infinite;
9250
+ margin: 0 auto;
9251
  }
assets/frontend/css/premium-addons.css CHANGED
@@ -1,7735 +1,7693 @@
1
- @font-face {
2
- font-family: "pa-elements";
3
- src: url("../../editor/fonts/pa-elements.eot?9e1efm");
4
- src: url("../../editor/fonts/pa-elements.eot?9e1efm#iefix") format("embedded-opentype"), url("../../editor/fonts/pa-elements.ttf?9e1efm") format("truetype"), url("../../editor/fonts/pa-elements.woff?9e1efm") format("woff"), url("../../editor/fonts/pa-elements.svg?9e1efm#pa-elements") format("svg");
5
- font-weight: normal;
6
- font-style: normal; }
7
-
8
- /**************** Premium Banner ****************/
9
- /************************************************/
10
- .elementor-widget-premium-addon-banner {
11
- overflow: hidden; }
12
-
13
- .premium-banner-ib {
14
- display: block;
15
- position: relative;
16
- z-index: 1;
17
- overflow: hidden;
18
- margin: 0;
19
- text-align: center;
20
- -webkit-box-sizing: border-box;
21
- -moz-box-sizing: border-box;
22
- box-sizing: border-box; }
23
- .premium-banner-ib img {
24
- display: block;
25
- position: relative; }
26
-
27
- .premium-banner-img-wrap {
28
- -js-display: flex;
29
- display: -webkit-box;
30
- display: -webkit-flex;
31
- display: -moz-box;
32
- display: -ms-flexbox;
33
- display: flex;
34
- height: 100%; }
35
- .premium-banner-img-wrap .premium-banner-ib-img {
36
- -webkit-flex-shrink: 0;
37
- -ms-flex-negative: 0;
38
- flex-shrink: 0; }
39
-
40
- .premium-banner-ib-desc .premium-banner-read-more {
41
- z-index: 100; }
42
-
43
- .elementor-widget-premium-addon-banner .premium-banner-ib-title {
44
- background: transparent; }
45
-
46
- .premium-banner-ib *,
47
- .premium-banner-ib .premium-banner-ib-desc {
48
- -webkit-box-sizing: border-box;
49
- -moz-box-sizing: border-box;
50
- box-sizing: border-box; }
51
-
52
- .premium-banner-ib img {
53
- min-width: 100%;
54
- max-width: 100%;
55
- -webkit-transition: opacity 0.35s;
56
- transition: opacity 0.35s; }
57
-
58
- .premium-banner-ib .premium-banner-ib-desc {
59
- padding: 15px;
60
- -webkit-backface-visibility: hidden;
61
- backface-visibility: hidden;
62
- -webkit-box-sizing: border-box;
63
- -moz-box-sizing: border-box;
64
- box-sizing: border-box;
65
- position: absolute;
66
- top: 0;
67
- left: 0;
68
- width: 100%;
69
- height: 100%; }
70
-
71
- .premium-banner-ib .premium-banner-ib-link {
72
- position: absolute;
73
- top: 0;
74
- left: 0;
75
- width: 100%;
76
- height: 100%;
77
- z-index: 1000;
78
- text-indent: 200%;
79
- white-space: nowrap;
80
- font-size: 0;
81
- opacity: 0; }
82
-
83
- .premium-banner-ib a.premium-banner-ib-link {
84
- display: block;
85
- background: 0 0; }
86
-
87
- .premium-banner-animation1 img {
88
- width: -webkit-calc(100% + 50px) !important;
89
- width: calc(100% + 50px) !important;
90
- max-width: -webkit-calc(100% + 50px) !important;
91
- max-width: calc(100% + 50px) !important;
92
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
93
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
94
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
95
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
96
- -webkit-transform: translate3d(-40px, 0, 0);
97
- transform: translate3d(-40px, 0, 0); }
98
-
99
- .premium-banner-animation2 .premium-banner-ib-title {
100
- padding: 15px; }
101
-
102
- .premium-banner-animation1 .premium-banner-ib-desc {
103
- top: auto;
104
- bottom: 0;
105
- min-height: 25%;
106
- height: auto;
107
- max-height: 100%;
108
- text-align: left; }
109
-
110
- .premium-banner-animation1 .premium-banner-ib-content,
111
- .premium-banner-animation1 .premium-banner-ib-title,
112
- .premium-banner-animation1 .premium-banner-read-more {
113
- -webkit-transform: translate3d(0, 40px, 0);
114
- transform: translate3d(0, 40px, 0);
115
- -webkit-transition-delay: 0.05s;
116
- transition-delay: 0.05s;
117
- -webkit-transition-duration: 0.35s;
118
- transition-duration: 0.35s; }
119
-
120
- .premium-banner-animation1 .premium-banner-ib-title {
121
- -webkit-transition: -webkit-transform 0.35s;
122
- transition: -webkit-transform 0.35s;
123
- transition: transform 0.35s;
124
- transition: transform 0.35s, -webkit-transform 0.35s; }
125
-
126
- .premium-banner-animation1 .premium-banner-ib-content,
127
- .premium-banner-animation1 .premium-banner-read-more {
128
- margin-top: 10px;
129
- opacity: 0;
130
- -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
131
- transition: opacity 0.2s, -webkit-transform 0.35s;
132
- transition: opacity 0.2s, transform 0.35s;
133
- transition: opacity 0.2s, transform 0.35s, -webkit-transform 0.35s; }
134
-
135
- .premium-banner-animation1:hover .premium-banner-ib-content,
136
- .premium-banner-animation1.active .premium-banner-ib-content,
137
- .premium-banner-animation1:hover .premium-banner-read-more,
138
- .premium-banner-animation1.active .premium-banner-read-more {
139
- opacity: 1;
140
- -webkit-transition-delay: 0.05s;
141
- transition-delay: 0.05s;
142
- -webkit-transition-duration: 0.35s;
143
- transition-duration: 0.35s; }
144
-
145
- .premium-banner-animation1:hover .premium-banner-ib-content,
146
- .premium-banner-animation1.active .premium-banner-ib-content,
147
- .premium-banner-animation1:hover .premium-banner-read-more,
148
- .premium-banner-animation1.active .premium-banner-read-more,
149
- .premium-banner-animation1:hover .premium-banner-ib-title,
150
- .premium-banner-animation1.active .premium-banner-ib-title,
151
- .premium-banner-animation1:hover img,
152
- .premium-banner-animation1.active img {
153
- -webkit-transform: translate3d(0, 0, 0);
154
- transform: translate3d(0, 0, 0);
155
- -webkit-transition-delay: 0.05s;
156
- transition-delay: 0.05s;
157
- -webkit-transition-duration: 0.35s;
158
- transition-duration: 0.35s; }
159
-
160
- .premium-banner-animation1.zoomout img,
161
- .premium-banner-animation1.scale img {
162
- -webkit-transform: translate3d(-40px, 0, 0) scale(1.1);
163
- transform: translate3d(-40px, 0, 0) scale(1.1); }
164
-
165
- .premium-banner-ib.sepia img {
166
- -webkit-filter: sepia(30%);
167
- filter: sepia(30%); }
168
-
169
- .premium-banner-ib.bright img {
170
- -webkit-filter: brightness(1);
171
- filter: brightness(1); }
172
-
173
- .premium-banner-ib.sepia:hover img {
174
- -webkit-filter: sepia(0%);
175
- filter: sepia(0%); }
176
-
177
- .premium-banner-ib.bright:hover img {
178
- -webkit-filter: brightness(1.2);
179
- filter: brightness(1.2); }
180
-
181
- .premium-banner-animation1.premium-banner-min-height img,
182
- .premium-banner-animation2.premium-banner-min-height img,
183
- .premium-banner-animation4.premium-banner-min-height img,
184
- .premium-banner-animation5.premium-banner-min-height img,
185
- .premium-banner-animation6.premium-banner-min-height img,
186
- .premium-banner-animation13.premium-banner-min-height img {
187
- height: auto; }
188
-
189
- .premium-banner-animation2 img {
190
- width: 100%; }
191
-
192
- .premium-banner-animation2 .premium-banner-ib-desc::before {
193
- position: absolute;
194
- content: "";
195
- top: 0;
196
- left: 0;
197
- width: 100%;
198
- height: 100%;
199
- opacity: 0;
200
- -webkit-transform: translate3d(0, 50%, 0);
201
- transform: translate3d(0, 50%, 0); }
202
-
203
- .premium-banner-animation2 .premium-banner-ib-title {
204
- position: absolute;
205
- top: 50%;
206
- left: 0;
207
- width: 100%;
208
- -webkit-transition: color 0.35s, -webkit-transform 0.35s;
209
- transition: color 0.35s, -webkit-transform 0.35s;
210
- transition: transform 0.35s, color 0.35s;
211
- transition: transform 0.35s, color 0.35s, -webkit-transform 0.35s;
212
- -webkit-transform: translate3d(0, -50%, 0);
213
- transform: translate3d(0, -50%, 0); }
214
-
215
- .premium-banner-animation2 .premium-banner-ib-content,
216
- .premium-banner-animation2 .premium-banner-read-more,
217
- .premium-banner-animation2 .premium-banner-ib-desc::before {
218
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
219
- transition: opacity 0.35s, -webkit-transform 0.35s;
220
- transition: opacity 0.35s, transform 0.35s;
221
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
222
-
223
- .premium-banner-animation2 .premium-banner-ib-content,
224
- .premium-banner-animation2 .premium-banner-read-more {
225
- position: absolute;
226
- bottom: 0;
227
- left: 0;
228
- padding: 15px;
229
- width: 100%;
230
- max-height: 50%;
231
- opacity: 0;
232
- -webkit-transform: translate3d(0, 10px, 0);
233
- transform: translate3d(0, 10px, 0); }
234
-
235
- .premium-banner-animation2:hover .premium-banner-ib-title,
236
- .premium-banner-animation2.active .premium-banner-ib-title {
237
- -webkit-transform: translate3d(0, -40px, 0);
238
- transform: translate3d(0, -40px, 0); }
239
-
240
- .premium-banner-animation2:hover .premium-banner-read-more,
241
- .premium-banner-animation2.active .premium-banner-read-more,
242
- .premium-banner-animation2:hover .premium-banner-ib-desc::before,
243
- .premium-banner-animation2.active .premium-banner-ib-desc::before {
244
- opacity: 1;
245
- -webkit-transform: translate3d(0, 0, 0);
246
- transform: translate3d(0, 0, 0); }
247
-
248
- .premium-banner-animation2:hover .premium-banner-ib-content,
249
- .premium-banner-animation2.active .premium-banner-ib-content {
250
- opacity: 1;
251
- -webkit-transform: translate3d(0, -30px, 0);
252
- transform: translate3d(0, -30px, 0); }
253
-
254
- .premium-banner-animation3 .premium-banner-ib-title {
255
- position: absolute;
256
- bottom: 0;
257
- left: 0;
258
- padding: 15px;
259
- width: 100%;
260
- text-align: left;
261
- -webkit-transform: translate3d(0, -30px, 0);
262
- transform: translate3d(0, -30px, 0); }
263
-
264
- .premium-banner-animation3 .premium-banner-ib-desc::before,
265
- .premium-banner-animation3 .premium-banner-ib-title {
266
- -webkit-transition: -webkit-transform 0.35s;
267
- transition: -webkit-transform 0.35s;
268
- transition: transform 0.35s;
269
- transition: transform 0.35s, -webkit-transform 0.35s; }
270
-
271
- .premium-banner-animation3:hover .premium-banner-ib-desc::before,
272
- .premium-banner-animation3.active .premium-banner-ib-desc::before,
273
- .premium-banner-animation3:hover .premium-banner-ib-title,
274
- .premium-banner-animation3.active .premium-banner-ib-title {
275
- opacity: 1;
276
- -webkit-transform: translate3d(0, 0, 0);
277
- transform: translate3d(0, 0, 0); }
278
-
279
- .premium-banner-animation3 .premium-banner-ib-content {
280
- max-height: -webkit-calc(100% - 60px - 1.5em);
281
- max-height: calc(100% - 60px - 1.5em);
282
- overflow: hidden; }
283
-
284
- .premium-banner-animation4 img {
285
- width: -webkit-calc(100% + 40px) !important;
286
- width: calc(100% + 40px) !important;
287
- max-width: -webkit-calc(100% + 40px) !important;
288
- max-width: calc(100% + 40px) !important; }
289
-
290
- .premium-banner-animation4 .premium-banner-ib-desc {
291
- padding: 30px; }
292
- .premium-banner-animation4 .premium-banner-ib-desc::after {
293
- position: absolute;
294
- content: "";
295
- opacity: 0; }
296
- .premium-banner-animation4 .premium-banner-ib-desc::before {
297
- position: absolute;
298
- content: "";
299
- opacity: 0;
300
- top: 50px;
301
- right: 30px;
302
- bottom: 50px;
303
- left: 30px;
304
- border-top: 1px solid #fff;
305
- border-bottom: 1px solid #fff;
306
- -webkit-transform: scale(0, 1);
307
- -ms-transform: scale(0, 1);
308
- transform: scale(0, 1);
309
- -webkit-transform-origin: 0 0;
310
- -ms-transform-origin: 0 0;
311
- transform-origin: 0 0; }
312
- .premium-banner-animation4 .premium-banner-ib-desc::after {
313
- top: 30px;
314
- right: 50px;
315
- bottom: 30px;
316
- left: 50px;
317
- border-right: 1px solid #fff;
318
- border-left: 1px solid #fff;
319
- -webkit-transform: scale(1, 0);
320
- -ms-transform: scale(1, 0);
321
- transform: scale(1, 0);
322
- -webkit-transform-origin: 100% 0;
323
- -ms-transform-origin: 100% 0;
324
- transform-origin: 100% 0; }
325
-
326
- .premium-banner-animation4 .premium-banner-ib-title {
327
- padding: 50px 30px 0 30px;
328
- -webkit-transition: -webkit-transform 0.35s;
329
- transition: -webkit-transform 0.35s;
330
- transition: transform 0.35s;
331
- transition: transform 0.35s, -webkit-transform 0.35s; }
332
-
333
- .premium-banner-animation4 .premium-banner-ib-content,
334
- .premium-banner-animation4 .premium-banner-read-more {
335
- padding: 10px 30px;
336
- opacity: 0;
337
- overflow: hidden;
338
- -webkit-transform: translate3d(0, -10px, 0);
339
- transform: translate3d(0, -10px, 0); }
340
-
341
- .premium-banner-animation4 .premium-banner-ib-title,
342
- .premium-banner-animation4 img {
343
- -webkit-transform: translate3d(-30px, 0, 0);
344
- transform: translate3d(-30px, 0, 0); }
345
-
346
- .premium-banner-animation4.zoomout img,
347
- .premium-banner-animation4.scale img {
348
- -webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
349
- transform: translate3d(-30px, 0, 0) scale(1.1); }
350
-
351
- .premium-banner-animation4 .premium-banner-ib-content,
352
- .premium-banner-animation4 .premium-banner-read-more {
353
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
354
- transition: opacity 0.35s, -webkit-transform 0.35s;
355
- transition: opacity 0.35s, transform 0.35s;
356
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
357
-
358
- .premium-banner-animation4 .premium-banner-ib-desc::after, .premium-banner-animation4 .premium-banner-ib-desc::before {
359
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
360
- transition: opacity 0.35s, -webkit-transform 0.35s;
361
- transition: opacity 0.35s, transform 0.35s;
362
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
363
-
364
- .premium-banner-animation4 img {
365
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
366
- transition: opacity 0.35s, -webkit-transform 0.35s;
367
- transition: opacity 0.35s, transform 0.35s;
368
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
369
-
370
- .premium-banner-animation4:hover .premium-banner-ib-desc::after,
371
- .premium-banner-animation4.active .premium-banner-ib-desc::after,
372
- .premium-banner-animation4:hover .premium-banner-ib-desc::before,
373
- .premium-banner-animation4.active .premium-banner-ib-desc::before {
374
- opacity: 1;
375
- -webkit-transform: scale(1);
376
- -ms-transform: scale(1);
377
- transform: scale(1); }
378
-
379
- .premium-banner-animation4:hover .premium-banner-ib-content,
380
- .premium-banner-animation4.active .premium-banner-ib-content,
381
- .premium-banner-animation4:hover .premium-banner-read-more,
382
- .premium-banner-animation4.active .premium-banner-read-more,
383
- .premium-banner-animation4:hover .premium-banner-ib-title,
384
- .premium-banner-animation4.active .premium-banner-ib-title {
385
- opacity: 1;
386
- -webkit-transform: translate3d(0, 0, 0);
387
- transform: translate3d(0, 0, 0); }
388
-
389
- .premium-banner-animation4:hover .premium-banner-ib-content,
390
- .premium-banner-animation4:hover .premium-banner-ib-desc::after,
391
- .premium-banner-animation4:hover .premium-banner-ib-title,
392
- .premium-banner-animation4:hover img {
393
- -webkit-transition-delay: 0.15s;
394
- transition-delay: 0.15s; }
395
-
396
- .premium-banner-animation5 .premium-banner-ib-desc {
397
- top: auto;
398
- bottom: 0;
399
- padding: 15px;
400
- height: auto;
401
- background: #f2f2f2;
402
- color: #3c4a50;
403
- -webkit-transition: -webkit-transform 0.35s;
404
- transition: -webkit-transform 0.35s;
405
- transition: transform 0.35s;
406
- transition: transform 0.35s, -webkit-transform 0.35s;
407
- -webkit-transform: translate3d(0, 100%, 0);
408
- transform: translate3d(0, 100%, 0); }
409
-
410
- .premium-banner-animation5 .premium-banner-ib-content {
411
- position: absolute;
412
- top: auto;
413
- bottom: 100%;
414
- left: 0;
415
- width: 100%;
416
- padding: 15px;
417
- opacity: 0;
418
- -webkit-transition: opacity 0.35s;
419
- transition: opacity 0.35s; }
420
-
421
- .premium-banner-animation5 .premium-banner-ib-title,
422
- .premium-banner-animation5 .premium-banner-read-more {
423
- -webkit-transition: -webkit-transform 0.35s;
424
- transition: -webkit-transform 0.35s;
425
- transition: transform 0.35s;
426
- transition: transform 0.35s, -webkit-transform 0.35s;
427
- -webkit-transform: translate3d(0, 200%, 0);
428
- transform: translate3d(0, 200%, 0);
429
- text-align: center; }
430
-
431
- .premium-banner-animation5 .premium-banner-ib-title {
432
- margin: 10px 0; }
433
-
434
- .premium-banner-animation5:hover .premium-banner-ib-content,
435
- .premium-banner-animation5.active .premium-banner-ib-content,
436
- .premium-banner-animation5:hover .premium-banner-ib-content *,
437
- .premium-banner-animation5.active .premium-banner-ib-content * {
438
- opacity: 1 !important;
439
- z-index: 99 !important;
440
- -webkit-backface-visibility: hidden !important;
441
- backface-visibility: hidden !important; }
442
-
443
- .premium-banner-animation5:hover .premium-banner-ib-desc,
444
- .premium-banner-animation5.active .premium-banner-ib-desc,
445
- .premium-banner-animation5:hover .premium-banner-ib-title,
446
- .premium-banner-animation5.active .premium-banner-ib-title,
447
- .premium-banner-animation5:hover .premium-banner-read-more,
448
- .premium-banner-animation5.active .premium-banner-read-more {
449
- -webkit-transform: translateY(0);
450
- -ms-transform: translateY(0);
451
- transform: translateY(0); }
452
-
453
- .premium-banner-animation5:hover .premium-banner-ib-title {
454
- -webkit-transition-delay: 0.05s;
455
- transition-delay: 0.05s; }
456
-
457
- .premium-banner-animation5 img {
458
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
459
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
460
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
461
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
462
-
463
- .premium-banner-animation2 img,
464
- .premium-banner-animation4 img,
465
- .premium-banner-animation6 img {
466
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
467
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
468
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
469
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
470
-
471
- .premium-banner-animation5.zoomout img,
472
- .premium-banner-animation5.scale img {
473
- -webkit-transform: scale(1.1);
474
- -ms-transform: scale(1.1);
475
- transform: scale(1.1); }
476
-
477
- .premium-banner-animation2.zoomout img,
478
- .premium-banner-animation2.scale img {
479
- -webkit-transform: scale(1.1);
480
- -ms-transform: scale(1.1);
481
- transform: scale(1.1); }
482
-
483
- .premium-banner-animation6.zoomout img,
484
- .premium-banner-animation6.scale img {
485
- -webkit-transform: scale(1.1);
486
- -ms-transform: scale(1.1);
487
- transform: scale(1.1); }
488
-
489
- .premium-banner-animation5.zoomin:hover img,
490
- .premium-banner-animation2.zoomin:hover img,
491
- .premium-banner-animation6.zoomin:hover img {
492
- -webkit-transform: scale(1.1);
493
- -ms-transform: scale(1.1);
494
- transform: scale(1.1); }
495
-
496
- .premium-banner-animation5.zoomout:hover img,
497
- .premium-banner-animation2.zoomout:hover img,
498
- .premium-banner-animation6.zoomout:hover img {
499
- -webkit-transform: scale(1);
500
- -ms-transform: scale(1);
501
- transform: scale(1); }
502
-
503
- .premium-banner-animation5.scale:hover img,
504
- .premium-banner-animation2.scale:hover img,
505
- .premium-banner-animation6.scale:hover img {
506
- -webkit-transform: scale(1.2) rotate(5deg);
507
- -ms-transform: scale(1.2) rotate(5deg);
508
- transform: scale(1.2) rotate(5deg); }
509
-
510
- .premium-banner-animation5.grayscale:hover img,
511
- .premium-banner-animation2.grayscale:hover img,
512
- .premium-banner-animation6.grayscale:hover img {
513
- -webkit-filter: grayscale(100%);
514
- filter: grayscale(100%); }
515
-
516
- .premium-banner-animation5.blur:hover img,
517
- .premium-banner-animation2.blur:hover img {
518
- -webkit-filter: blur(3px);
519
- filter: blur(3px); }
520
-
521
- .premium-banner-animation6.blur:hover img {
522
- -webkit-filter: blur(3px);
523
- filter: blur(3px); }
524
-
525
- .premium-banner-animation6 .premium-banner-ib-desc {
526
- padding: 45px; }
527
- .premium-banner-animation6 .premium-banner-ib-desc::before {
528
- position: absolute;
529
- content: "";
530
- top: 30px;
531
- right: 30px;
532
- bottom: 30px;
533
- left: 30px;
534
- border: 1px solid #fff; }
535
-
536
- .premium-banner-animation6 .premium-banner-ib-title {
537
- margin: 20px 0 10px;
538
- -webkit-transition: -webkit-transform 0.35s;
539
- transition: -webkit-transform 0.35s;
540
- transition: transform 0.35s;
541
- transition: transform 0.35s, -webkit-transform 0.35s;
542
- -webkit-transform: translate3d(0, 100%, 0);
543
- transform: translate3d(0, 100%, 0); }
544
-
545
- .premium-banner-animation6 .premium-banner-ib-content,
546
- .premium-banner-animation6 .premium-banner-read-more,
547
- .premium-banner-animation6 .premium-banner-ib-desc::before {
548
- opacity: 0;
549
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
550
- transition: opacity 0.35s, -webkit-transform 0.35s;
551
- transition: opacity 0.35s, transform 0.35s;
552
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
553
- -webkit-transform: scale(0);
554
- -ms-transform: scale(0);
555
- transform: scale(0); }
556
-
557
- .premium-banner-animation6 .premium-banner-read-more {
558
- margin-top: 10px; }
559
-
560
- .premium-banner-animation6:hover .premium-banner-ib-title,
561
- .premium-banner-animation6.active .premium-banner-ib-title {
562
- -webkit-transform: translate3d(0, 0, 0);
563
- transform: translate3d(0, 0, 0); }
564
-
565
- .premium-banner-animation6:hover .premium-banner-ib-content,
566
- .premium-banner-animation6.active .premium-banner-ib-content,
567
- .premium-banner-animation6:hover .premium-banner-read-more,
568
- .premium-banner-animation6.active .premium-banner-read-more,
569
- .premium-banner-animation6:hover .premium-banner-ib-desc::before,
570
- .premium-banner-animation6.active .premium-banner-ib-desc::before {
571
- opacity: 1;
572
- -webkit-transform: scale(1);
573
- -ms-transform: scale(1);
574
- transform: scale(1); }
575
-
576
- .premium-banner-animation12 .premium-banner-ib-desc::after {
577
- position: absolute;
578
- content: "";
579
- right: 30px;
580
- bottom: 30px;
581
- left: 30px;
582
- height: -webkit-calc(50% - 30px);
583
- height: calc(50% - 30px);
584
- border: 7px solid #fff;
585
- -webkit-transition: -webkit-transform 0.35s;
586
- transition: -webkit-transform 0.35s;
587
- transition: transform 0.35s;
588
- transition: transform 0.35s, -webkit-transform 0.35s;
589
- -webkit-transform: translate3d(0, -100%, 0);
590
- transform: translate3d(0, -100%, 0); }
591
-
592
- .premium-banner-animation12:hover .premium-banner-ib-desc::after,
593
- .premium-banner-animation12.active .premium-banner-ib-desc::after {
594
- -webkit-transform: translate3d(0, 0, 0);
595
- transform: translate3d(0, 0, 0); }
596
-
597
- .premium-banner-animation12 .premium-banner-ib-desc {
598
- padding: 45px;
599
- text-align: left; }
600
-
601
- .premium-banner-animation12 .premium-banner-ib-content {
602
- position: absolute;
603
- right: 60px;
604
- bottom: 60px;
605
- left: 60px;
606
- opacity: 0;
607
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
608
- transition: opacity 0.35s, -webkit-transform 0.35s;
609
- transition: opacity 0.35s, transform 0.35s;
610
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
611
- -webkit-transform: translate3d(0, -100px, 0);
612
- transform: translate3d(0, -100px, 0); }
613
-
614
- .premium-banner-animation12:hover .premium-banner-ib-content,
615
- .premium-banner-animation12.active .premium-banner-ib-content {
616
- opacity: 1;
617
- -webkit-transform: translate3d(0, 0, 0);
618
- transform: translate3d(0, 0, 0); }
619
-
620
- .premium-banner-animation13 img {
621
- width: -webkit-calc(100% + 20px) !important;
622
- width: calc(100% + 20px) !important;
623
- max-width: -webkit-calc(100% + 20px) !important;
624
- max-width: calc(100% + 20px) !important;
625
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
626
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
627
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
628
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
629
- -webkit-transform: translate3d(-10px, 0, 0);
630
- transform: translate3d(-10px, 0, 0);
631
- -webkit-backface-visibility: hidden;
632
- backface-visibility: hidden; }
633
-
634
- .premium-banner-animation13.zoomout img,
635
- .premium-banner-animation13.scale img {
636
- -webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
637
- transform: translate3d(-10px, 0, 0) scale(1.1); }
638
-
639
- .premium-banner-animation13.none:hover img {
640
- -webkit-transform: translate3d(0, 0, 0);
641
- transform: translate3d(0, 0, 0); }
642
-
643
- .premium-banner-animation1.none:hover img,
644
- .premium-banner-animation4.none:hover img {
645
- -webkit-transform: translate3d(0, 0, 0);
646
- transform: translate3d(0, 0, 0); }
647
-
648
- .premium-banner-animation13.zoomin:hover img,
649
- .premium-banner-animation1.zoomin:hover img,
650
- .premium-banner-animation4.zoomin:hover img,
651
- .premium-banner-animation8.zoomin:hover img,
652
- .premium-banner-animation7.zoomin:hover img,
653
- .premium-banner-animation9.zoomin:hover img,
654
- .premium-banner-animation10.zoomin:hover img,
655
- .premium-banner-animation11.zoomin:hover img {
656
- -webkit-transform: translate3d(0, 0, 0) scale(1.1);
657
- transform: translate3d(0, 0, 0) scale(1.1); }
658
-
659
- .premium-banner-animation13.zoomout:hover img,
660
- .premium-banner-animation1.zoomout:hover img,
661
- .premium-banner-animation4.zoomout:hover img,
662
- .premium-banner-animation8.zoomout:hover img,
663
- .premium-banner-animation7.zoomout:hover img,
664
- .premium-banner-animation9.zoomout:hover img,
665
- .premium-banner-animation10.zoomout:hover img,
666
- .premium-banner-animation11.zoomout:hover img {
667
- -webkit-transform: translate3d(0, 0, 0) scale(1);
668
- transform: translate3d(0, 0, 0) scale(1); }
669
-
670
- .premium-banner-animation13.scale:hover img,
671
- .premium-banner-animation1.scale:hover img,
672
- .premium-banner-animation4.scale:hover img,
673
- .premium-banner-animation8.scale:hover img,
674
- .premium-banner-animation7.scale:hover img,
675
- .premium-banner-animation9.scale:hover img,
676
- .premium-banner-animation10.scale:hover img,
677
- .premium-banner-animation11.scale:hover img {
678
- -webkit-transform: translate3d(0, 0, 0) scale(1.2) rotate(5deg);
679
- transform: translate3d(0, 0, 0) scale(1.2) rotate(5deg); }
680
-
681
- .premium-banner-animation13.grayscale:hover img,
682
- .premium-banner-animation1.grayscale:hover img,
683
- .premium-banner-animation4.grayscale:hover img,
684
- .premium-banner-animation8.grayscale:hover img,
685
- .premium-banner-animation7.grayscale:hover img,
686
- .premium-banner-animation9.grayscale:hover img,
687
- .premium-banner-animation10.grayscale:hover img,
688
- .premium-banner-animation11.grayscale:hover img {
689
- -webkit-transform: translate3d(0, 0, 0);
690
- transform: translate3d(0, 0, 0);
691
- -webkit-filter: grayscale(100%);
692
- filter: grayscale(100%); }
693
-
694
- .premium-banner-animation13.blur:hover img,
695
- .premium-banner-animation1.blur:hover img,
696
- .premium-banner-animation4.blur:hover,
697
- .premium-banner-animation8.blur:hover img,
698
- .premium-banner-animation7.blur:hover img,
699
- .premium-banner-animation9.blur:hover img,
700
- .premium-banner-animation10.blur:hover img,
701
- .premium-banner-animation11.blur:hover img {
702
- -webkit-transform: translate3d(0, 0, 0);
703
- transform: translate3d(0, 0, 0);
704
- -webkit-filter: blur(3px);
705
- filter: blur(3px); }
706
-
707
- .premium-banner-animation13 .premium-banner-ib-desc {
708
- text-align: left; }
709
-
710
- .premium-banner-animation13 .premium-banner-ib-title {
711
- position: relative;
712
- overflow: hidden;
713
- padding: 5px 0 10px; }
714
- .premium-banner-animation13 .premium-banner-ib-title::after {
715
- position: absolute;
716
- content: "";
717
- bottom: 0;
718
- left: 0;
719
- width: 100%;
720
- height: 2px;
721
- background: #fff;
722
- -webkit-transition: -webkit-transform 0.35s;
723
- transition: -webkit-transform 0.35s;
724
- transition: transform 0.35s;
725
- transition: transform 0.35s, -webkit-transform 0.35s;
726
- -webkit-transform: translate3d(-101%, 0, 0);
727
- transform: translate3d(-101%, 0, 0); }
728
-
729
- .premium-banner-animation13:hover .premium-banner-ib-title::after,
730
- .premium-banner-animation13.active .premium-banner-ib-title::after {
731
- -webkit-transform: translate3d(0, 0, 0);
732
- transform: translate3d(0, 0, 0); }
733
-
734
- .premium-banner-animation13 .premium-banner-ib-content,
735
- .premium-banner-animation13 .premium-banner-read-more {
736
- padding: 15px 0;
737
- opacity: 0;
738
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
739
- transition: opacity 0.35s, -webkit-transform 0.35s;
740
- transition: opacity 0.35s, transform 0.35s;
741
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
742
- -webkit-transform: translate3d(100%, 0, 0);
743
- transform: translate3d(100%, 0, 0); }
744
-
745
- .premium-banner-animation13:hover .premium-banner-ib-content,
746
- .premium-banner-animation13.active .premium-banner-ib-content,
747
- .premium-banner-animation13:hover .premium-banner-read-more,
748
- .premium-banner-animation13.active .premium-banner-read-more {
749
- opacity: 1;
750
- -webkit-transform: translate3d(0, 0, 0);
751
- transform: translate3d(0, 0, 0); }
752
-
753
- .premium-banner-ib.premium-banner-animation5 .premium-banner-toggle-size {
754
- left: 50%;
755
- width: auto !important;
756
- height: 100%;
757
- max-width: none;
758
- -webkit-transform: translateX(-50%);
759
- -ms-transform: translateX(-50%);
760
- transform: translateX(-50%); }
761
-
762
- .premium-banner-ib img {
763
- border: none;
764
- padding: 0;
765
- margin: 0; }
766
-
767
- .premium-banner-animation7 img {
768
- width: -webkit-calc(100% + 40px) !important;
769
- width: calc(100% + 40px) !important;
770
- max-width: -webkit-calc(100% + 40px) !important;
771
- max-width: calc(100% + 40px) !important;
772
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
773
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
774
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
775
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
776
-
777
- .premium-banner-animation7 .premium-banner-brlr {
778
- width: 7px; }
779
-
780
- .premium-banner-animation7 .premium-banner-brtb {
781
- height: 7px; }
782
-
783
- .premium-banner-animation7 .premium-banner-br {
784
- position: absolute;
785
- z-index: 1;
786
- background-color: white;
787
- -webkit-transition: all 0.3s ease-in-out;
788
- transition: all 0.3s ease-in-out;
789
- -webkit-transition-delay: 0.2s;
790
- transition-delay: 0.2s; }
791
-
792
- .premium-banner-animation7 .premium-banner-bleft {
793
- left: 30px;
794
- top: -webkit-calc(100% - 150px);
795
- top: calc(100% - 150px);
796
- height: 0; }
797
-
798
- .premium-banner-animation7 .premium-banner-bright {
799
- right: 30px;
800
- bottom: -webkit-calc(100% - 150px);
801
- bottom: calc(100% - 150px);
802
- height: 0; }
803
-
804
- .premium-banner-animation7 .premium-banner-bottom {
805
- right: -webkit-calc(100% - 150px);
806
- right: calc(100% - 150px);
807
- bottom: 30px;
808
- width: 0; }
809
-
810
- .premium-banner-animation7 .premium-banner-btop {
811
- left: -webkit-calc(100% - 150px);
812
- left: calc(100% - 150px);
813
- top: 30px;
814
- width: 0; }
815
-
816
- .premium-banner-animation7 .premium-banner-ib-desc {
817
- padding: 70px;
818
- display: table; }
819
- .premium-banner-animation7 .premium-banner-ib-desc .premium-banner-desc-centered {
820
- display: table-cell;
821
- vertical-align: middle; }
822
-
823
- .premium-banner-animation7 .premium-banner-ib-title {
824
- margin-top: 0; }
825
-
826
- .premium-banner-animation7 .premium-banner-ib-title,
827
- .premium-banner-animation7 img {
828
- -webkit-transform: translate3d(-30px, 0, 0);
829
- transform: translate3d(-30px, 0, 0); }
830
-
831
- .premium-banner-animation7.zoomout img,
832
- .premium-banner-animation7.scale img {
833
- -webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
834
- transform: translate3d(-30px, 0, 0) scale(1.1); }
835
-
836
- .premium-banner-animation7 .premium-banner-ib-content,
837
- .premium-banner-animation7 .premium-banner-read-more {
838
- margin-top: 10px; }
839
-
840
- .premium-banner-animation7 .premium-banner-ib-desc::after, .premium-banner-animation7 .premium-banner-ib-desc::before {
841
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
842
- transition: opacity 0.35s, -webkit-transform 0.35s;
843
- transition: opacity 0.35s, transform 0.35s;
844
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
845
-
846
- .premium-banner-animation7 .premium-banner-ib-title,
847
- .premium-banner-animation7 .premium-banner-ib-content,
848
- .premium-banner-animation7 .premium-banner-read-more {
849
- opacity: 0;
850
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
851
- transition: opacity 0.35s, -webkit-transform 0.35s;
852
- transition: opacity 0.35s, transform 0.35s;
853
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
854
-
855
- .premium-banner-animation7:hover .premium-banner-ib-content,
856
- .premium-banner-animation7.active .premium-banner-ib-content,
857
- .premium-banner-animation7:hover .premium-banner-read-more,
858
- .premium-banner-animation7.active .premium-banner-read-more,
859
- .premium-banner-animation7:hover .premium-banner-ib-title,
860
- .premium-banner-animation7.active .premium-banner-ib-title {
861
- opacity: 1;
862
- -webkit-transform: translate3d(0, 0, 0);
863
- transform: translate3d(0, 0, 0); }
864
-
865
- .premium-banner-animation7:hover .premium-banner-bleft, .premium-banner-animation7.active .premium-banner-bleft {
866
- top: 30px;
867
- height: 70px; }
868
-
869
- .premium-banner-animation7:hover .premium-banner-bright, .premium-banner-animation7.active .premium-banner-bright {
870
- bottom: 30px;
871
- height: 70px; }
872
-
873
- .premium-banner-animation7:hover .premium-banner-bottom, .premium-banner-animation7.active .premium-banner-bottom {
874
- right: 30px;
875
- width: 70px; }
876
-
877
- .premium-banner-animation7:hover .premium-banner-btop, .premium-banner-animation7.active .premium-banner-btop {
878
- left: 30px;
879
- width: 70px; }
880
-
881
- .premium-banner-animation7:hover .premium-banner-ib-content,
882
- .premium-banner-animation7:hover .premium-banner-read-more,
883
- .premium-banner-animation7:hover .premium-banner-ib-title,
884
- .premium-banner-animation7:hover img {
885
- -webkit-transition-delay: 0.15s;
886
- transition-delay: 0.15s; }
887
-
888
- .premium-banner-animation8 img {
889
- width: -webkit-calc(100% + 40px) !important;
890
- width: calc(100% + 40px) !important;
891
- max-width: -webkit-calc(100% + 40px) !important;
892
- max-width: calc(100% + 40px) !important;
893
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
894
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
895
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
896
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
897
-
898
- .premium-banner-animation8 .premium-banner-brlr {
899
- width: 7px; }
900
-
901
- .premium-banner-animation8 .premium-banner-brtb {
902
- height: 7px; }
903
-
904
- .premium-banner-animation8 .premium-banner-br {
905
- position: absolute;
906
- z-index: 1;
907
- background-color: white;
908
- -webkit-transition: all 0.3s ease-in-out;
909
- transition: all 0.3s ease-in-out;
910
- -webkit-transition-delay: 0.2s;
911
- transition-delay: 0.2s; }
912
-
913
- .premium-banner-animation8 .premium-banner-bleft {
914
- left: 30px;
915
- top: 50%;
916
- -webkit-transform: translateY(-50%);
917
- -ms-transform: translateY(-50%);
918
- transform: translateY(-50%);
919
- height: 0; }
920
-
921
- .premium-banner-animation8 .premium-banner-bright {
922
- right: 30px;
923
- top: 50%;
924
- -webkit-transform: translateY(-50%);
925
- -ms-transform: translateY(-50%);
926
- transform: translateY(-50%);
927
- height: 0; }
928
-
929
- .premium-banner-animation8 .premium-banner-bottom {
930
- left: 50%;
931
- -webkit-transform: translateX(-50%);
932
- -ms-transform: translateX(-50%);
933
- transform: translateX(-50%);
934
- bottom: 30px;
935
- width: 0; }
936
-
937
- .premium-banner-animation8 .premium-banner-btop {
938
- left: 50%;
939
- -webkit-transform: translateX(-50%);
940
- -ms-transform: translateX(-50%);
941
- transform: translateX(-50%);
942
- top: 30px;
943
- width: 0; }
944
-
945
- .premium-banner-animation8 .premium-banner-ib-desc {
946
- padding: 70px;
947
- display: table; }
948
- .premium-banner-animation8 .premium-banner-ib-desc .premium-banner-desc-centered {
949
- display: table-cell;
950
- vertical-align: middle; }
951
-
952
- .premium-banner-animation8 .premium-banner-ib-title {
953
- margin-top: 0; }
954
-
955
- .premium-banner-animation8 .premium-banner-ib-title,
956
- .premium-banner-animation8 img {
957
- -webkit-transform: translate3d(-30px, 0, 0);
958
- transform: translate3d(-30px, 0, 0); }
959
-
960
- .premium-banner-animation8.zoomout img,
961
- .premium-banner-animation8.scale img {
962
- -webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
963
- transform: translate3d(-30px, 0, 0) scale(1.1); }
964
-
965
- .premium-banner-animation8 .premium-banner-ib-content,
966
- .premium-banner-animation8 .premium-banner-read-more {
967
- margin-top: 10px; }
968
-
969
- .premium-banner-animation8 .premium-banner-ib-desc::after, .premium-banner-animation8 .premium-banner-ib-desc::before {
970
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
971
- transition: opacity 0.35s, -webkit-transform 0.35s;
972
- transition: opacity 0.35s, transform 0.35s;
973
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
974
-
975
- .premium-banner-animation8 .premium-banner-ib-title,
976
- .premium-banner-animation8 .premium-banner-ib-content,
977
- .premium-banner-animation8 .premium-banner-read-more {
978
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
979
- transition: opacity 0.35s, -webkit-transform 0.35s;
980
- transition: opacity 0.35s, transform 0.35s;
981
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
982
- opacity: 0; }
983
-
984
- .premium-banner-animation8:hover .premium-banner-ib-content,
985
- .premium-banner-animation8.active .premium-banner-ib-content,
986
- .premium-banner-animation8:hover .premium-banner-read-more,
987
- .premium-banner-animation8.active .premium-banner-read-more,
988
- .premium-banner-animation8:hover .premium-banner-ib-title,
989
- .premium-banner-animation8.active .premium-banner-ib-title {
990
- opacity: 1;
991
- -webkit-transform: translate3d(0, 0, 0);
992
- transform: translate3d(0, 0, 0); }
993
-
994
- .premium-banner-animation8:hover .premium-banner-bleft, .premium-banner-animation8.active .premium-banner-bleft {
995
- height: -webkit-calc(100% - 61px);
996
- height: calc(100% - 61px); }
997
-
998
- .premium-banner-animation8:hover .premium-banner-bright, .premium-banner-animation8.active .premium-banner-bright {
999
- height: -webkit-calc(100% - 61px);
1000
- height: calc(100% - 61px); }
1001
-
1002
- .premium-banner-animation8:hover .premium-banner-bottom, .premium-banner-animation8.active .premium-banner-bottom {
1003
- width: -webkit-calc(100% - 61px);
1004
- width: calc(100% - 61px); }
1005
-
1006
- .premium-banner-animation8:hover .premium-banner-btop, .premium-banner-animation8.active .premium-banner-btop {
1007
- width: -webkit-calc(100% - 61px);
1008
- width: calc(100% - 61px); }
1009
-
1010
- .premium-banner-animation8:hover .premium-banner-ib-content,
1011
- .premium-banner-animation8:hover .premium-banner-ib-title,
1012
- .premium-banner-animation8:hover .premium-banner-read-more,
1013
- .premium-banner-animation8:hover img {
1014
- -webkit-transition-delay: 0.15s;
1015
- transition-delay: 0.15s; }
1016
-
1017
- .premium-banner-animation9 img {
1018
- width: -webkit-calc(100% + 20px) !important;
1019
- width: calc(100% + 20px) !important;
1020
- max-width: -webkit-calc(100% + 20px) !important;
1021
- max-width: calc(100% + 20px) !important;
1022
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1023
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1024
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
1025
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1026
- -webkit-transform: scale(1.2);
1027
- -ms-transform: scale(1.2);
1028
- transform: scale(1.2); }
1029
-
1030
- .premium-banner-animation9 .premium-banner-ib-desc {
1031
- width: 100%;
1032
- height: 100%; }
1033
- .premium-banner-animation9 .premium-banner-ib-desc::before {
1034
- position: absolute;
1035
- top: 50%;
1036
- left: 50%;
1037
- width: 80%;
1038
- height: 1px;
1039
- background: #fff;
1040
- content: "";
1041
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1042
- transition: opacity 0.35s, -webkit-transform 0.35s;
1043
- transition: opacity 0.35s, transform 0.35s;
1044
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1045
- -webkit-transform: translate3d(-50%, -50%, 0);
1046
- transform: translate3d(-50%, -50%, 0); }
1047
- .premium-banner-animation9 .premium-banner-ib-desc::after {
1048
- position: absolute;
1049
- top: 50%;
1050
- left: 50%;
1051
- width: 80%;
1052
- height: 1px;
1053
- background: #fff;
1054
- content: "";
1055
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1056
- transition: opacity 0.35s, -webkit-transform 0.35s;
1057
- transition: opacity 0.35s, transform 0.35s;
1058
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1059
- -webkit-transform: translate3d(-50%, -50%, 0);
1060
- transform: translate3d(-50%, -50%, 0); }
1061
-
1062
- .premium-banner-animation9 .premium-banner-ib-title {
1063
- position: absolute;
1064
- top: 50%;
1065
- left: 0;
1066
- width: 100%;
1067
- -webkit-transition: -webkit-transform 0.35s;
1068
- transition: -webkit-transform 0.35s;
1069
- transition: transform 0.35s;
1070
- transition: transform 0.35s, -webkit-transform 0.35s;
1071
- -webkit-transform: translate3d(0, -70px, 0);
1072
- transform: translate3d(0, -70px, 0);
1073
- margin-top: 0;
1074
- padding: 0 10%; }
1075
-
1076
- .premium-banner-animation9:hover .premium-banner-ib-title,
1077
- .premium-banner-animation9.active .premium-banner-ib-title {
1078
- -webkit-transform: translate3d(0, -80px, 0);
1079
- transform: translate3d(0, -80px, 0); }
1080
-
1081
- .premium-banner-animation9 .premium-banner-ib-content,
1082
- .premium-banner-animation9 .premium-banner-read-more {
1083
- position: absolute;
1084
- top: 50%;
1085
- left: 0;
1086
- width: 100%;
1087
- -webkit-transition: -webkit-transform 0.35s;
1088
- transition: -webkit-transform 0.35s;
1089
- transition: transform 0.35s;
1090
- transition: transform 0.35s, -webkit-transform 0.35s;
1091
- padding: 0 10%;
1092
- -webkit-transform: translate3d(0, 35px, 0);
1093
- transform: translate3d(0, 35px, 0); }
1094
-
1095
- .premium-banner-animation9 .premium-banner-read-more {
1096
- top: 75%; }
1097
-
1098
- .premium-banner-animation9:hover .premium-banner-ib-content,
1099
- .premium-banner-animation9.active .premium-banner-ib-content,
1100
- .premium-banner-animation9:hover .premium-banner-read-more,
1101
- .premium-banner-animation9.active .premium-banner-read-more {
1102
- -webkit-transform: translate3d(0, 45px, 0);
1103
- transform: translate3d(0, 45px, 0); }
1104
-
1105
- .premium-banner-animation9:hover .premium-banner-ib-desc::before,
1106
- .premium-banner-animation9.active .premium-banner-ib-desc::before {
1107
- opacity: 0.5;
1108
- -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
1109
- transform: translate3d(-50%, -50%, 0) rotate(45deg); }
1110
-
1111
- .premium-banner-animation9:hover .premium-banner-ib-desc::after,
1112
- .premium-banner-animation9.active .premium-banner-ib-desc::after {
1113
- opacity: 0.5;
1114
- -webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
1115
- transform: translate3d(-50%, -50%, 0) rotate(-45deg); }
1116
-
1117
- .premium-banner-animation9:hover img {
1118
- -webkit-transform: scale(1);
1119
- -ms-transform: scale(1);
1120
- transform: scale(1); }
1121
-
1122
- .premium-banner-animation10 img {
1123
- width: -webkit-calc(100% + 20px) !important;
1124
- width: calc(100% + 20px) !important;
1125
- max-width: -webkit-calc(100% + 20px) !important;
1126
- max-width: calc(100% + 20px) !important;
1127
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1128
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1129
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
1130
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
1131
-
1132
- .premium-banner-animation10 .premium-banner-ib-title {
1133
- position: relative;
1134
- overflow: hidden;
1135
- padding: 5px 0 15px;
1136
- -webkit-transition: -webkit-transform 0.35s;
1137
- transition: -webkit-transform 0.35s;
1138
- transition: transform 0.35s;
1139
- transition: transform 0.35s, -webkit-transform 0.35s;
1140
- -webkit-transform: translate3d(0, 20px, 0);
1141
- transform: translate3d(0, 20px, 0);
1142
- margin-bottom: 0; }
1143
- .premium-banner-animation10 .premium-banner-ib-title::after {
1144
- position: absolute;
1145
- content: "";
1146
- bottom: 0;
1147
- left: 0;
1148
- width: 100%;
1149
- height: 3px;
1150
- background: #fff;
1151
- opacity: 0;
1152
- -webkit-transform: translate3d(0, 100%, 0);
1153
- transform: translate3d(0, 100%, 0);
1154
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1155
- transition: opacity 0.35s, -webkit-transform 0.35s;
1156
- transition: opacity 0.35s, transform 0.35s;
1157
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
1158
-
1159
- .premium-banner-animation10:hover .premium-banner-ib-title,
1160
- .premium-banner-animation10.active .premium-banner-ib-title {
1161
- -webkit-transform: translate3d(0, 0, 0);
1162
- transform: translate3d(0, 0, 0); }
1163
-
1164
- .premium-banner-animation10:hover .premium-banner-ib-title::after,
1165
- .premium-banner-animation10.active .premium-banner-ib-title::after {
1166
- opacity: 1;
1167
- -webkit-transform: translate3d(0, 0, 0);
1168
- transform: translate3d(0, 0, 0); }
1169
-
1170
- .premium-banner-animation10.zoomout img,
1171
- .premium-banner-animation10.scale img {
1172
- -webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
1173
- transform: translate3d(-10px, 0, 0) scale(1.1); }
1174
-
1175
- .premium-banner-animation10 .premium-banner-ib-content,
1176
- .premium-banner-animation10 .premium-banner-read-more {
1177
- padding-top: 15px;
1178
- opacity: 0;
1179
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1180
- transition: opacity 0.35s, -webkit-transform 0.35s;
1181
- transition: opacity 0.35s, transform 0.35s;
1182
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1183
- -webkit-transform: translate3d(0, 100%, 0);
1184
- transform: translate3d(0, 100%, 0); }
1185
-
1186
- .premium-banner-animation10 .premium-banner-read-more {
1187
- padding: 0; }
1188
-
1189
- .premium-banner-animation10:hover .premium-banner-ib-content,
1190
- .premium-banner-animation10.active .premium-banner-ib-content,
1191
- .premium-banner-animation10:hover .premium-banner-read-more,
1192
- .premium-banner-animation10.active .premium-banner-read-more {
1193
- opacity: 1;
1194
- -webkit-transform: translate3d(0, 0, 0);
1195
- transform: translate3d(0, 0, 0); }
1196
-
1197
- .premium-banner-animation11 {
1198
- -webkit-transition: -webkit-transform 1s ease-out;
1199
- transition: -webkit-transform 1s ease-out;
1200
- transition: transform 1s ease-out;
1201
- transition: transform 1s ease-out, -webkit-transform 1s ease-out;
1202
- -webkit-transition-delay: 0.125s;
1203
- transition-delay: 0.125s; }
1204
- .premium-banner-animation11 .premium-banner-ib-desc {
1205
- position: absolute;
1206
- z-index: 5;
1207
- -webkit-transform: translate3d(-30px, 0, 0);
1208
- transform: translate3d(-30px, 0, 0);
1209
- opacity: 0;
1210
- top: auto;
1211
- bottom: 0;
1212
- min-height: 25%;
1213
- height: auto;
1214
- max-height: 100%;
1215
- text-align: left;
1216
- padding: 30px;
1217
- -webkit-transition: all 0.6s ease-out;
1218
- transition: all 0.6s ease-out; }
1219
- .premium-banner-animation11 img {
1220
- width: 100%;
1221
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1222
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1223
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
1224
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
1225
- .premium-banner-animation11 .premium-banner-ib-title {
1226
- margin-bottom: 10px; }
1227
- .premium-banner-animation11 .premium-banner-gradient {
1228
- position: absolute;
1229
- left: 0;
1230
- top: 0;
1231
- right: 0;
1232
- bottom: 0; }
1233
- .premium-banner-animation11 .premium-banner-gradient:after,
1234
- .premium-banner-animation11 .premium-banner-gradient:before {
1235
- position: absolute;
1236
- content: "";
1237
- left: 0;
1238
- top: 0;
1239
- right: 0;
1240
- bottom: 0;
1241
- -webkit-transform: translate3d(-100%, 0, 0);
1242
- transform: translate3d(-100%, 0, 0);
1243
- background-image: -webkit-linear-gradient(40deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
1244
- background-image: linear-gradient(50deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
1245
- z-index: 2; }
1246
- .premium-banner-animation11 .premium-banner-gradient:before {
1247
- mix-blend-mode: color; }
1248
- .premium-banner-animation11 .premium-banner-gradient:after {
1249
- mix-blend-mode: multiply; }
1250
- .premium-banner-animation11:hover .premium-banner-ib-desc,
1251
- .premium-banner-animation11.active .premium-banner-ib-desc {
1252
- opacity: 1;
1253
- -webkit-transform: translate3d(0, 0, 0);
1254
- transform: translate3d(0, 0, 0); }
1255
- .premium-banner-animation11:hover .premium-banner-gradient:after,
1256
- .premium-banner-animation11:hover .premium-banner-gradient:before,
1257
- .premium-banner-animation11.active .premium-banner-gradient:after,
1258
- .premium-banner-animation11.active .premium-banner-gradient:before {
1259
- -webkit-transform: translate3d(0, 0, 0);
1260
- transform: translate3d(0, 0, 0); }
1261
- .premium-banner-animation11.zoomout img,
1262
- .premium-banner-animation11.scale img {
1263
- -webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
1264
- transform: translate3d(-10px, 0, 0) scale(1.1); }
1265
-
1266
- /**************** Premium CountDown *************/
1267
- /************************************************/
1268
- .premium-countdown {
1269
- -js-display: flex;
1270
- display: -webkit-box;
1271
- display: -webkit-flex;
1272
- display: -moz-box;
1273
- display: -ms-flexbox;
1274
- display: flex;
1275
- text-align: center; }
1276
-
1277
- .countdown-row {
1278
- display: block;
1279
- text-align: center; }
1280
-
1281
- .countdown .countdown-section {
1282
- display: inline-block;
1283
- max-width: 100%;
1284
- margin-bottom: 15px;
1285
- -js-display: inline-flex;
1286
- display: -webkit-inline-box;
1287
- display: -webkit-inline-flex;
1288
- display: -moz-inline-box;
1289
- display: -ms-inline-flexbox;
1290
- display: inline-flex;
1291
- -webkit-box-align: center;
1292
- -webkit-align-items: center;
1293
- -moz-box-align: center;
1294
- -ms-flex-align: center;
1295
- align-items: center; }
1296
- .countdown .countdown-section:last-child {
1297
- margin-right: 0; }
1298
-
1299
- .countdown span.countdown-amount {
1300
- font-size: 70px;
1301
- line-height: 1;
1302
- padding: 40px; }
1303
-
1304
- .countdown .pre_time-mid {
1305
- display: block; }
1306
-
1307
- .premium-countdown-separator-yes .countdown_separator {
1308
- display: block;
1309
- margin: 0 50px;
1310
- font-size: 30px; }
1311
-
1312
- .premium-countdown-separator-yes .countdown-row .countdown-section:last-child .countdown_separator,
1313
- .premium-countdown-separator-yes .premium-countdown-block:last-child .countdown_separator {
1314
- display: none; }
1315
-
1316
- /**
1317
- * Digit and unit styles
1318
- */
1319
- .side .countdown-section .countdown-period {
1320
- vertical-align: bottom; }
1321
-
1322
- .countdown .countdown-section .countdown-period {
1323
- font-size: 17px;
1324
- line-height: 3em; }
1325
-
1326
- .side .countdown-section .countdown-amount,
1327
- .side .countdown-section .countdown-period {
1328
- display: inline-block; }
1329
-
1330
- .side .countdown-section .countdown-amount {
1331
- margin-right: 5px; }
1332
-
1333
- .down .countdown-section .countdown-amount,
1334
- .down .countdown-section .countdown-period {
1335
- display: block; }
1336
-
1337
- /**
1338
- * Flip Layout
1339
- */
1340
- .premium-countdown-flip .premium-countdown-block {
1341
- text-align: center;
1342
- -js-display: inline-flex;
1343
- display: -webkit-inline-box;
1344
- display: -webkit-inline-flex;
1345
- display: -moz-inline-box;
1346
- display: -ms-inline-flexbox;
1347
- display: inline-flex;
1348
- -webkit-box-align: center;
1349
- -webkit-align-items: center;
1350
- -moz-box-align: center;
1351
- -ms-flex-align: center;
1352
- align-items: center; }
1353
- .premium-countdown-flip .premium-countdown-block:last-child {
1354
- margin-right: 0; }
1355
-
1356
- .premium-countdown-flip .premium-countdown-label {
1357
- overflow: hidden;
1358
- color: #1a1a1a;
1359
- text-transform: uppercase; }
1360
-
1361
- .premium-countdown-flip .premium-countdown-figure {
1362
- position: relative;
1363
- height: 110px;
1364
- width: 100px;
1365
- line-height: 107px;
1366
- background-color: #fff;
1367
- -webkit-border-radius: 10px;
1368
- border-radius: 10px;
1369
- -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
1370
- box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08); }
1371
- .premium-countdown-flip .premium-countdown-figure:last-child {
1372
- margin-right: 0; }
1373
- .premium-countdown-flip .premium-countdown-figure > span {
1374
- position: absolute;
1375
- left: 0;
1376
- right: 0;
1377
- margin: auto;
1378
- font-weight: 700; }
1379
- .premium-countdown-flip .premium-countdown-figure .top {
1380
- z-index: 3;
1381
- -webkit-transform-origin: 50% 100%;
1382
- -ms-transform-origin: 50% 100%;
1383
- transform-origin: 50% 100%;
1384
- -webkit-transform: perspective(200px);
1385
- transform: perspective(200px);
1386
- -webkit-backface-visibility: hidden;
1387
- backface-visibility: hidden; }
1388
- .premium-countdown-flip .premium-countdown-figure .bottom {
1389
- z-index: 1; }
1390
- .premium-countdown-flip .premium-countdown-figure .bottom::before {
1391
- content: "";
1392
- position: absolute;
1393
- display: block;
1394
- top: 0;
1395
- left: 0;
1396
- width: 100%;
1397
- height: 50%;
1398
- background-color: rgba(0, 0, 0, 0.02); }
1399
- .premium-countdown-flip .premium-countdown-figure .top-back {
1400
- -webkit-backface-visibility: hidden;
1401
- backface-visibility: hidden;
1402
- z-index: 4;
1403
- bottom: 0;
1404
- -webkit-transform-origin: 50% 0;
1405
- -ms-transform-origin: 50% 0;
1406
- transform-origin: 50% 0;
1407
- -webkit-transform: perspective(200px) rotateX(180deg);
1408
- transform: perspective(200px) rotateX(180deg); }
1409
- .premium-countdown-flip .premium-countdown-figure .top-back span {
1410
- position: absolute;
1411
- top: -100%;
1412
- left: 0;
1413
- right: 0;
1414
- margin: auto; }
1415
- .premium-countdown-flip .premium-countdown-figure .bottom-back {
1416
- z-index: 2;
1417
- top: 0; }
1418
- .premium-countdown-flip .premium-countdown-figure .bottom-back span {
1419
- position: absolute;
1420
- top: 0;
1421
- left: 0;
1422
- right: 0;
1423
- margin: auto; }
1424
- .premium-countdown-flip .premium-countdown-figure .top,
1425
- .premium-countdown-flip .premium-countdown-figure .bottom-back,
1426
- .premium-countdown-flip .premium-countdown-figure .top-back {
1427
- height: 50%;
1428
- overflow: hidden;
1429
- background-color: #f7f7f7;
1430
- -webkit-border-top-left-radius: 10px;
1431
- border-top-left-radius: 10px;
1432
- -webkit-border-top-right-radius: 10px;
1433
- border-top-right-radius: 10px; }
1434
- .premium-countdown-flip .premium-countdown-figure .top-back {
1435
- -webkit-border-bottom-left-radius: 10px;
1436
- border-bottom-left-radius: 10px;
1437
- -webkit-border-bottom-right-radius: 10px;
1438
- border-bottom-right-radius: 10px; }
1439
- .premium-countdown-flip .premium-countdown-figure .top::after,
1440
- .premium-countdown-flip .premium-countdown-figure .bottom-back::after {
1441
- content: "";
1442
- position: absolute;
1443
- z-index: -1;
1444
- left: 0;
1445
- bottom: 0;
1446
- width: 100%;
1447
- height: 100%;
1448
- border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
1449
-
1450
- .side .premium-countdown-figure,
1451
- .side .premium-countdown-label {
1452
- display: inline-block; }
1453
-
1454
- .side .premium-countdown-figure {
1455
- margin-right: 5px; }
1456
-
1457
- .down .premium-countdown-figure,
1458
- .down .premium-countdown-label {
1459
- display: block; }
1460
-
1461
- .down .premium-countdown-label {
1462
- width: 100%; }
1463
-
1464
- /**************** Premium Carousel ****************/
1465
- /**************************************************/
1466
- .premium-carousel-wrapper a.carousel-arrow, .premium-carousel-wrapper a.ver-carousel-arrow {
1467
- -js-display: flex;
1468
- display: -webkit-box;
1469
- display: -webkit-flex;
1470
- display: -moz-box;
1471
- display: -ms-flexbox;
1472
- display: flex;
1473
- -webkit-box-align: center;
1474
- -webkit-align-items: center;
1475
- -moz-box-align: center;
1476
- -ms-flex-align: center;
1477
- align-items: center;
1478
- -webkit-box-pack: center;
1479
- -webkit-justify-content: center;
1480
- -moz-box-pack: center;
1481
- -ms-flex-pack: center;
1482
- justify-content: center;
1483
- width: 2em;
1484
- height: 2em;
1485
- line-height: 0;
1486
- text-align: center;
1487
- position: absolute;
1488
- z-index: 99;
1489
- cursor: pointer;
1490
- -webkit-transition: all 0.3s ease-in-out;
1491
- transition: all 0.3s ease-in-out;
1492
- -webkit-appearance: inherit;
1493
- border: none;
1494
- -webkit-box-shadow: none;
1495
- box-shadow: none; }
1496
- .premium-carousel-wrapper a.carousel-arrow svg, .premium-carousel-wrapper a.ver-carousel-arrow svg {
1497
- -webkit-transition: all 0.3s ease-in-out;
1498
- transition: all 0.3s ease-in-out; }
1499
-
1500
- .premium-tabs-nav-list a.carousel-arrow,
1501
- .premium-fb-rev-container a.carousel-arrow,
1502
- .premium-blog-wrap a.carousel-arrow,
1503
- .premium-hscroll-wrap a.carousel-arrow,
1504
- .premium-twitter-feed-wrapper a.carousel-arrow,
1505
- .premium-facebook-feed-wrapper a.carousel-arrow,
1506
- .premium-instafeed-container a.carousel-arrow,
1507
- .premium-persons-container a.carousel-arrow,
1508
- .premium-woocommerce a.carousel-arrow {
1509
- -js-display: flex;
1510
- display: -webkit-box;
1511
- display: -webkit-flex;
1512
- display: -moz-box;
1513
- display: -ms-flexbox;
1514
- display: flex;
1515
- -webkit-box-align: center;
1516
- -webkit-align-items: center;
1517
- -moz-box-align: center;
1518
- -ms-flex-align: center;
1519
- align-items: center;
1520
- -webkit-box-pack: center;
1521
- -webkit-justify-content: center;
1522
- -moz-box-pack: center;
1523
- -ms-flex-pack: center;
1524
- justify-content: center;
1525
- width: 2em;
1526
- height: 2em;
1527
- line-height: 0;
1528
- text-align: center;
1529
- position: absolute;
1530
- z-index: 99;
1531
- cursor: pointer;
1532
- -webkit-transition: all 0.3s ease-in-out;
1533
- transition: all 0.3s ease-in-out;
1534
- -webkit-appearance: inherit;
1535
- border: none;
1536
- -webkit-box-shadow: none;
1537
- box-shadow: none; }
1538
-
1539
- div[class^="premium-"] .slick-arrow i {
1540
- display: block; }
1541
-
1542
- .ver-carousel-arrow.carousel-next i {
1543
- margin-bottom: -3px; }
1544
-
1545
- .premium-carousel-wrapper a.slick-arrow:hover {
1546
- -webkit-box-shadow: none !important;
1547
- box-shadow: none !important; }
1548
-
1549
- .premium-carousel-wrapper .premium-carousel-content-hidden {
1550
- visibility: hidden; }
1551
-
1552
- .premium-carousel-wrapper a.carousel-arrow {
1553
- top: 50%; }
1554
-
1555
- .premium-tabs-nav-list a.carousel-arrow,
1556
- .premium-fb-rev-container a.carousel-arrow,
1557
- .premium-blog-wrap a.carousel-arrow,
1558
- .premium-hscroll-wrap a.carousel-arrow,
1559
- .premium-twitter-feed-wrapper a.carousel-arrow,
1560
- .premium-facebook-feed-wrapper a.carousel-arrow,
1561
- .premium-instafeed-container a.carousel-arrow,
1562
- .premium-persons-container a.carousel-arrow,
1563
- .premium-woocommerce a.carousel-arrow {
1564
- top: 50%;
1565
- -webkit-transform: translateY(-50%);
1566
- -ms-transform: translateY(-50%);
1567
- transform: translateY(-50%); }
1568
-
1569
- .premium-carousel-wrapper a.ver-carousel-arrow {
1570
- left: 50%;
1571
- -webkit-transform: translateX(-50%);
1572
- -ms-transform: translateX(-50%);
1573
- transform: translateX(-50%); }
1574
-
1575
- a.carousel-arrow.carousel-next {
1576
- left: auto;
1577
- right: -20px; }
1578
-
1579
- a.carousel-arrow.carousel-prev {
1580
- left: -20px;
1581
- right: auto; }
1582
-
1583
- a.ver-carousel-arrow.carousel-next {
1584
- bottom: -56px; }
1585
-
1586
- a.ver-carousel-arrow.carousel-prev {
1587
- top: -45px; }
1588
-
1589
- a.circle-bg {
1590
- -webkit-border-radius: 100%;
1591
- border-radius: 100%; }
1592
-
1593
- a.circle-border {
1594
- -webkit-border-radius: 100%;
1595
- border-radius: 100%;
1596
- border: solid black; }
1597
-
1598
- a.square-border {
1599
- border: solid black; }
1600
-
1601
- .premium-woocommerce ul.slick-dots,
1602
- .premium-carousel-dots-below ul.slick-dots,
1603
- .premium-blog-wrap ul.slick-dots,
1604
- .premium-fb-rev-reviews ul.slick-dots {
1605
- position: relative;
1606
- bottom: 0;
1607
- list-style: none;
1608
- text-align: center;
1609
- margin: 0;
1610
- padding: 0; }
1611
-
1612
- .premium-carousel-dots-above ul.slick-dots {
1613
- position: absolute;
1614
- -js-display: flex;
1615
- display: -webkit-box;
1616
- display: -webkit-flex;
1617
- display: -moz-box;
1618
- display: -ms-flexbox;
1619
- display: flex;
1620
- width: auto;
1621
- top: 50%;
1622
- bottom: auto;
1623
- -webkit-transform: translateY(-50%);
1624
- -ms-transform: translateY(-50%);
1625
- transform: translateY(-50%);
1626
- -webkit-box-orient: vertical;
1627
- -webkit-box-direction: normal;
1628
- -webkit-flex-direction: column;
1629
- -moz-box-orient: vertical;
1630
- -moz-box-direction: normal;
1631
- -ms-flex-direction: column;
1632
- flex-direction: column; }
1633
-
1634
- ul.slick-dots li {
1635
- font-size: 10px;
1636
- -js-display: inline-flex;
1637
- display: -webkit-inline-box;
1638
- display: -webkit-inline-flex;
1639
- display: -moz-inline-box;
1640
- display: -ms-inline-flexbox;
1641
- display: inline-flex;
1642
- -webkit-box-pack: center;
1643
- -webkit-justify-content: center;
1644
- -moz-box-pack: center;
1645
- -ms-flex-pack: center;
1646
- justify-content: center;
1647
- -webkit-box-align: center;
1648
- -webkit-align-items: center;
1649
- -moz-box-align: center;
1650
- -ms-flex-align: center;
1651
- align-items: center;
1652
- margin: 5px;
1653
- width: 20px;
1654
- height: 20px;
1655
- cursor: pointer; }
1656
-
1657
- /*
1658
- * Custom Navigation Dot
1659
- */
1660
- .premium-carousel-wrapper .premium-carousel-nav-dot,
1661
- .premium-carousel-wrapper .premium-carousel-nav-arrow-prev,
1662
- .premium-carousel-wrapper .premium-carousel-nav-arrow-next {
1663
- display: none; }
1664
-
1665
- .premium-carousel-wrapper ul.slick-dots svg {
1666
- width: 20px;
1667
- height: 20px;
1668
- outline: none !important; }
1669
-
1670
- /* Ripple Out */
1671
- @-webkit-keyframes hvr-ripple-out {
1672
- 0% {
1673
- -webkit-transform: scale(1);
1674
- transform: scale(1);
1675
- opacity: 1; }
1676
- 100% {
1677
- -webkit-transform: scale(1.5);
1678
- transform: scale(1.5);
1679
- opacity: 0; } }
1680
- @keyframes hvr-ripple-out {
1681
- 0% {
1682
- -webkit-transform: scale(1);
1683
- transform: scale(1);
1684
- opacity: 1; }
1685
- 100% {
1686
- -webkit-transform: scale(1.5);
1687
- transform: scale(1.5);
1688
- opacity: 0; } }
1689
-
1690
- .premium-carousel-ripple-yes .premium-carousel-wrapper {
1691
- padding-bottom: 1px; }
1692
-
1693
- .premium-carousel-ripple-yes ul.slick-dots li {
1694
- position: relative; }
1695
- .premium-carousel-ripple-yes ul.slick-dots li i {
1696
- position: relative;
1697
- z-index: 1; }
1698
- .premium-carousel-ripple-yes ul.slick-dots li:hover:before {
1699
- content: "";
1700
- position: absolute;
1701
- -webkit-transform: scale(1);
1702
- -ms-transform: scale(1);
1703
- transform: scale(1);
1704
- top: 0;
1705
- right: 0;
1706
- bottom: 0;
1707
- left: 0;
1708
- -webkit-border-radius: 50%;
1709
- border-radius: 50%;
1710
- pointer-events: none;
1711
- background-color: rgba(0, 0, 0, 0.15); }
1712
- .premium-carousel-ripple-yes ul.slick-dots li.slick-active:hover:before {
1713
- background-color: rgba(0, 0, 0, 0.3); }
1714
- .premium-carousel-ripple-yes ul.slick-dots li:hover:before {
1715
- -webkit-animation: hvr-ripple-out 1.3s infinite;
1716
- animation: hvr-ripple-out 1.3s infinite; }
1717
-
1718
- .premium-carousel-wrapper.premium-carousel-scale .slick-slide {
1719
- -webkit-transform: scale(1.25, 1.25);
1720
- -ms-transform: scale(1.25, 1.25);
1721
- transform: scale(1.25, 1.25);
1722
- -webkit-transition: all 0.3s ease-in-out !important;
1723
- transition: all 0.3s ease-in-out !important; }
1724
-
1725
- .premium-carousel-wrapper.premium-carousel-scale div.slick-active {
1726
- -webkit-transform: scale(1, 1);
1727
- -ms-transform: scale(1, 1);
1728
- transform: scale(1, 1); }
1729
-
1730
- [dir="rtl"] .premium-carousel-inner .slick-slide {
1731
- float: right; }
1732
-
1733
- /**************** Premium Counter ***************/
1734
- /************************************************/
1735
- .premium-counter-area {
1736
- padding: 10px 0;
1737
- -js-display: flex;
1738
- display: -webkit-box;
1739
- display: -webkit-flex;
1740
- display: -moz-box;
1741
- display: -ms-flexbox;
1742
- display: flex;
1743
- -webkit-box-pack: center;
1744
- -webkit-justify-content: center;
1745
- -moz-box-pack: center;
1746
- -ms-flex-pack: center;
1747
- justify-content: center;
1748
- -webkit-box-align: center;
1749
- -webkit-align-items: center;
1750
- -moz-box-align: center;
1751
- -ms-flex-align: center;
1752
- align-items: center; }
1753
- .premium-counter-area.top {
1754
- -webkit-box-orient: vertical;
1755
- -webkit-box-direction: normal;
1756
- -webkit-flex-direction: column;
1757
- -moz-box-orient: vertical;
1758
- -moz-box-direction: normal;
1759
- -ms-flex-direction: column;
1760
- flex-direction: column; }
1761
- .premium-counter-area.right {
1762
- -webkit-box-orient: horizontal;
1763
- -webkit-box-direction: reverse;
1764
- -webkit-flex-direction: row-reverse;
1765
- -moz-box-orient: horizontal;
1766
- -moz-box-direction: reverse;
1767
- -ms-flex-direction: row-reverse;
1768
- flex-direction: row-reverse; }
1769
- .premium-counter-area.right .premium-counter-icon {
1770
- padding-left: 20px; }
1771
- .premium-counter-area.left .premium-counter-icon {
1772
- padding-right: 20px; }
1773
- .premium-counter-area .premium-counter-icon .icon i.fa:before {
1774
- vertical-align: text-top; }
1775
- .premium-counter-area .premium-counter-icon span.icon {
1776
- text-align: center;
1777
- display: inline-block;
1778
- vertical-align: middle; }
1779
- .premium-counter-area .premium-counter-icon .circle {
1780
- -webkit-border-radius: 100%;
1781
- border-radius: 100%; }
1782
- .premium-counter-area .premium-counter-icon img,
1783
- .premium-counter-area .premium-counter-icon svg {
1784
- width: 80px; }
1785
- .premium-counter-area .premium-counter-icon .premium-counter-animation svg {
1786
- height: 80px; }
1787
- .premium-counter-area .premium-counter-title p {
1788
- padding: 0;
1789
- margin: 0; }
1790
- .premium-counter-area .premium-counter-value-wrap {
1791
- -js-display: flex;
1792
- display: -webkit-box;
1793
- display: -webkit-flex;
1794
- display: -moz-box;
1795
- display: -ms-flexbox;
1796
- display: flex;
1797
- -webkit-box-align: center;
1798
- -webkit-align-items: center;
1799
- -moz-box-align: center;
1800
- -ms-flex-align: center;
1801
- align-items: center; }
1802
-
1803
- .premium-init-wrapper {
1804
- -js-display: flex;
1805
- display: -webkit-box;
1806
- display: -webkit-flex;
1807
- display: -moz-box;
1808
- display: -ms-flexbox;
1809
- display: flex; }
1810
- .premium-init-wrapper.row {
1811
- -webkit-box-align: center;
1812
- -webkit-align-items: center;
1813
- -moz-box-align: center;
1814
- -ms-flex-align: center;
1815
- align-items: center; }
1816
- .premium-init-wrapper.right {
1817
- text-align: right; }
1818
-
1819
- span.icon.flex-width {
1820
- width: auto !important;
1821
- height: auto !important; }
1822
-
1823
- .premium-counter-area .premium-counter-init {
1824
- font-size: 35px; }
1825
-
1826
- /**************** Premium Image Separator ****************/
1827
- /*********************************************************/
1828
- .premium-image-separator-container {
1829
- position: absolute;
1830
- width: 100%;
1831
- z-index: 2;
1832
- top: auto;
1833
- -webkit-transition: all 0.3s ease-in-out;
1834
- transition: all 0.3s ease-in-out; }
1835
- .premium-image-separator-container svg,
1836
- .premium-image-separator-container img {
1837
- display: inline-block !important;
1838
- -webkit-mask-repeat: no-repeat;
1839
- mask-repeat: no-repeat;
1840
- -webkit-mask-position: center;
1841
- mask-position: center; }
1842
- .premium-image-separator-container .premium-image-separator-link {
1843
- position: absolute;
1844
- z-index: 9999;
1845
- top: 0;
1846
- left: 0;
1847
- width: 100%;
1848
- height: 100%;
1849
- text-decoration: none; }
1850
- .premium-image-separator-container .premium-image-separator-link:hover, .premium-image-separator-container .premium-image-separator-link:visited, .premium-image-separator-container .premium-image-separator-link:focus, .premium-image-separator-container .premium-image-separator-link:active {
1851
- -webkit-box-shadow: none !important;
1852
- box-shadow: none !important;
1853
- outline: none !important;
1854
- border: none !important;
1855
- text-decoration: none !important; }
1856
- .premium-image-separator-container i,
1857
- .premium-image-separator-container > svg {
1858
- padding: 20px;
1859
- -webkit-transition: all 0.3s ease-in-out;
1860
- transition: all 0.3s ease-in-out; }
1861
-
1862
- /**************** Premium Modal Box ****************/
1863
- /***************************************************/
1864
- .premium-modal-trigger-btn,
1865
- .premium-modal-box-modal-lower-close {
1866
- display: inline-block;
1867
- padding: 6px 12px;
1868
- margin-bottom: 0;
1869
- font-size: 14px;
1870
- font-weight: normal;
1871
- line-height: 1.42857143;
1872
- text-align: center;
1873
- white-space: nowrap;
1874
- vertical-align: middle;
1875
- -ms-touch-action: manipulation;
1876
- touch-action: manipulation;
1877
- cursor: pointer;
1878
- -webkit-user-select: none;
1879
- -moz-user-select: none;
1880
- -ms-user-select: none;
1881
- user-select: none;
1882
- background-image: none;
1883
- border: 1px solid transparent; }
1884
-
1885
- .premium-modal-trigger-btn > svg,
1886
- .premium-modal-trigger-btn .premium-modal-box-icon {
1887
- -webkit-transition: all 0.3s ease-in-out;
1888
- transition: all 0.3s ease-in-out; }
1889
-
1890
- .premium-modal-trigger-btn > svg {
1891
- width: 30px;
1892
- height: 30px; }
1893
-
1894
- .premium-modal-box-modal-close {
1895
- float: right;
1896
- font-size: 21px;
1897
- font-weight: bold;
1898
- line-height: 1;
1899
- color: #000; }
1900
- .premium-modal-box-modal-close:hover, .premium-modal-box-modal-close:focus {
1901
- color: #000;
1902
- text-decoration: none;
1903
- cursor: pointer; }
1904
-
1905
- button.premium-modal-box-modal-close {
1906
- -webkit-appearance: none;
1907
- padding: 0;
1908
- cursor: pointer;
1909
- background: transparent;
1910
- border: 0; }
1911
-
1912
- .premium-modal-box-modal {
1913
- position: fixed;
1914
- top: 0;
1915
- right: 0;
1916
- bottom: 0;
1917
- left: 0;
1918
- z-index: 1050;
1919
- display: none;
1920
- -webkit-overflow-scrolling: touch;
1921
- outline: 0;
1922
- padding: 0 !important;
1923
- background: rgba(0, 0, 0, 0.5);
1924
- -webkit-box-align: center;
1925
- -webkit-align-items: center;
1926
- -moz-box-align: center;
1927
- -ms-flex-align: center;
1928
- align-items: center;
1929
- -webkit-box-pack: center;
1930
- -webkit-justify-content: center;
1931
- -moz-box-pack: center;
1932
- -ms-flex-pack: center;
1933
- justify-content: center; }
1934
- .premium-modal-box-modal .premium-modal-box-modal-dialog {
1935
- position: absolute;
1936
- max-height: -webkit-calc(100vh - 150px);
1937
- max-height: calc(100vh - 150px);
1938
- -js-display: flex;
1939
- display: -webkit-box;
1940
- display: -webkit-flex;
1941
- display: -moz-box;
1942
- display: -ms-flexbox;
1943
- display: flex;
1944
- -webkit-box-orient: vertical;
1945
- -webkit-box-direction: normal;
1946
- -webkit-flex-direction: column;
1947
- -moz-box-orient: vertical;
1948
- -moz-box-direction: normal;
1949
- -ms-flex-direction: column;
1950
- flex-direction: column;
1951
- opacity: 0;
1952
- background-color: #fff;
1953
- border: 1px solid rgba(0, 0, 0, 0.2);
1954
- -webkit-border-radius: 6px;
1955
- border-radius: 6px; }
1956
-
1957
- .premium-modal-box-modal-content {
1958
- background-clip: padding-box;
1959
- outline: 0;
1960
- overflow-x: hidden; }
1961
-
1962
- .premium-modal-backdrop.premium-in {
1963
- filter: alpha(opacity=50);
1964
- opacity: 0.5 !important; }
1965
-
1966
- .premium-in {
1967
- opacity: 1; }
1968
-
1969
- .premium-modal-backdrop {
1970
- position: fixed;
1971
- top: 0;
1972
- right: 0;
1973
- bottom: 0;
1974
- left: 0;
1975
- z-index: 1040;
1976
- background-color: #000; }
1977
-
1978
- .premium-in {
1979
- -js-display: flex !important;
1980
- display: -webkit-box !important;
1981
- display: -webkit-flex !important;
1982
- display: -moz-box !important;
1983
- display: -ms-flexbox !important;
1984
- display: flex !important; }
1985
-
1986
- .premium-modal-box-modal-header {
1987
- -js-display: flex;
1988
- display: -webkit-box;
1989
- display: -webkit-flex;
1990
- display: -moz-box;
1991
- display: -ms-flexbox;
1992
- display: flex;
1993
- -webkit-box-pack: justify;
1994
- -webkit-justify-content: space-between;
1995
- -moz-box-pack: justify;
1996
- -ms-flex-pack: justify;
1997
- justify-content: space-between;
1998
- -webkit-box-align: center;
1999
- -webkit-align-items: center;
2000
- -moz-box-align: center;
2001
- -ms-flex-align: center;
2002
- align-items: center;
2003
- padding: 5px 15px;
2004
- border-bottom: 1px solid #e5e5e5; }
2005
- .premium-modal-box-modal-header .premium-modal-box-modal-close {
2006
- margin-top: -2px; }
2007
- .premium-modal-box-modal-header .premium-modal-box-modal-title {
2008
- -js-display: flex;
2009
- display: -webkit-box;
2010
- display: -webkit-flex;
2011
- display: -moz-box;
2012
- display: -ms-flexbox;
2013
- display: flex;
2014
- -webkit-box-align: center;
2015
- -webkit-align-items: center;
2016
- -moz-box-align: center;
2017
- -ms-flex-align: center;
2018
- align-items: center;
2019
- margin: 0;
2020
- padding: 0; }
2021
- .premium-modal-box-modal-header .premium-modal-box-modal-title svg {
2022
- width: 50px;
2023
- height: 60px; }
2024
-
2025
- .premium-modal-box-modal-body {
2026
- position: relative;
2027
- padding: 15px; }
2028
-
2029
- .premium-modal-box-modal-footer {
2030
- padding: 15px;
2031
- text-align: right;
2032
- border-top: 1px solid #e5e5e5; }
2033
-
2034
- .premium-modal-scrollbar-measure {
2035
- position: absolute;
2036
- top: -9999px;
2037
- width: 50px;
2038
- height: 50px;
2039
- overflow: scroll; }
2040
-
2041
- .premium-modal-trigger-text {
2042
- background: none !important;
2043
- display: inline-block; }
2044
-
2045
- .premium-modal-box-container {
2046
- width: 100% !important; }
2047
-
2048
- /*Open Modal Button Style*/
2049
- .premium-modal-trigger-container .premium-modal-trigger-btn {
2050
- -js-display: inline-flex;
2051
- display: -webkit-inline-box;
2052
- display: -webkit-inline-flex;
2053
- display: -moz-inline-box;
2054
- display: -ms-inline-flexbox;
2055
- display: inline-flex;
2056
- -webkit-box-align: center;
2057
- -webkit-align-items: center;
2058
- -moz-box-align: center;
2059
- -ms-flex-align: center;
2060
- align-items: center;
2061
- border: none;
2062
- -webkit-transition: all 0.3s ease-in-out;
2063
- transition: all 0.3s ease-in-out; }
2064
- .premium-modal-trigger-container .premium-modal-trigger-btn.premium-btn-block {
2065
- -webkit-box-pack: center;
2066
- -webkit-justify-content: center;
2067
- -moz-box-pack: center;
2068
- -ms-flex-pack: center;
2069
- justify-content: center; }
2070
-
2071
- .premium-modal-trigger-container .premium-modal-trigger-img,
2072
- .premium-modal-trigger-container .premium-modal-trigger-text,
2073
- .premium-modal-trigger-container .premium-modal-trigger-animation {
2074
- cursor: pointer; }
2075
-
2076
- .premium-modal-trigger-container .premium-modal-trigger-animation {
2077
- display: inline-block;
2078
- width: 200px;
2079
- height: 200px;
2080
- -webkit-transition: all 0.3s ease-in-out;
2081
- transition: all 0.3s ease-in-out; }
2082
-
2083
- /*Image on Modal Header Style*/
2084
- .premium-modal-box-modal-header img {
2085
- width: 48px;
2086
- padding-right: 5px; }
2087
-
2088
- .premium-modal-box-modal-header i,
2089
- .premium-modal-box-modal-header svg {
2090
- padding-right: 6px; }
2091
-
2092
- .premium-modal-box-modal-close {
2093
- position: relative;
2094
- z-index: 99; }
2095
-
2096
- .premium-modal-trigger-img,
2097
- .premium-modal-trigger-text,
2098
- .premium-modal-box-close-button-container,
2099
- .premium-modal-box-modal-close,
2100
- .premium-modal-box-modal-lower-close {
2101
- -webkit-transition: all 0.3s ease-in-out;
2102
- transition: all 0.3s ease-in-out; }
2103
-
2104
- @media (min-width: 768px) {
2105
- .premium-modal-box-modal-dialog {
2106
- width: 700px;
2107
- max-height: 600px;
2108
- overflow: auto; } }
2109
-
2110
- @media (max-width: 767px) {
2111
- .premium-modal-box-modal-dialog {
2112
- width: 100%;
2113
- max-height: 500px;
2114
- overflow: auto; } }
2115
-
2116
- .premium-modal-box-container[data-modal-animation*="animated-"] {
2117
- opacity: 0; }
2118
-
2119
- /**************** Premium Progress Bar ****************/
2120
- /******************************************************/
2121
- .premium-progressbar-container {
2122
- position: relative; }
2123
-
2124
- .premium-progressbar-bar-wrap {
2125
- position: relative;
2126
- text-align: left;
2127
- overflow: hidden;
2128
- height: 25px;
2129
- margin-bottom: 50px;
2130
- background-color: #f5f5f5;
2131
- -webkit-border-radius: 4px;
2132
- border-radius: 4px;
2133
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
2134
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }
2135
- .premium-progressbar-bar-wrap.premium-progressbar-dots {
2136
- background-color: transparent;
2137
- width: 100%;
2138
- -js-display: flex;
2139
- display: -webkit-box;
2140
- display: -webkit-flex;
2141
- display: -moz-box;
2142
- display: -ms-flexbox;
2143
- display: flex;
2144
- height: auto;
2145
- -webkit-box-shadow: none;
2146
- box-shadow: none; }
2147
- .premium-progressbar-bar-wrap .progress-segment {
2148
- position: relative;
2149
- width: 25px;
2150
- height: 25px;
2151
- -webkit-border-radius: 50%;
2152
- border-radius: 50%;
2153
- overflow: hidden;
2154
- background-color: #f5f5f5; }
2155
- .premium-progressbar-bar-wrap .progress-segment.filled {
2156
- background: #6ec1e4; }
2157
- .premium-progressbar-bar-wrap .progress-segment:not(:first-child):not(:last-child) {
2158
- margin: 0 4px; }
2159
- .premium-progressbar-bar-wrap .progress-segment:first-child {
2160
- margin-right: 4px; }
2161
- .premium-progressbar-bar-wrap .progress-segment:last-child {
2162
- margin-left: 4px; }
2163
- .premium-progressbar-bar-wrap .progress-segment .segment-inner {
2164
- position: absolute;
2165
- top: 0;
2166
- left: 0;
2167
- height: 100%;
2168
- background-color: #6ec1e4; }
2169
-
2170
- .premium-progressbar-bar {
2171
- float: left;
2172
- width: 0%;
2173
- height: 100%;
2174
- font-size: 12px;
2175
- line-height: 20px;
2176
- background: #6ec1e4;
2177
- text-align: center;
2178
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
2179
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); }
2180
-
2181
- .premium-progressbar-striped .premium-progressbar-bar {
2182
- background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
2183
- background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
2184
- -webkit-background-size: 40px 40px;
2185
- background-size: 40px 40px; }
2186
-
2187
- .premium-progressbar-active .premium-progressbar-bar {
2188
- -webkit-animation: progress-bar-stripes 2s linear infinite;
2189
- animation: progress-bar-stripes 2s linear infinite; }
2190
-
2191
- .premium-progressbar-gradient .premium-progressbar-bar {
2192
- -webkit-background-size: 400% 400% !important;
2193
- background-size: 400% 400% !important;
2194
- -webkit-animation: progress-bar-gradient 10s ease-in-out infinite;
2195
- animation: progress-bar-gradient 10s ease-in-out infinite; }
2196
-
2197
- .premium-progressbar-bar {
2198
- position: absolute;
2199
- overflow: hidden;
2200
- line-height: 20px; }
2201
-
2202
- .premium-progressbar-container .clearfix {
2203
- clear: both; }
2204
-
2205
- .premium-progressbar-bar {
2206
- -webkit-transition: width 0s ease-in-out !important;
2207
- transition: width 0s ease-in-out !important; }
2208
-
2209
- .premium-progressbar-container p:first-of-type {
2210
- margin: 0;
2211
- float: left; }
2212
-
2213
- .premium-progressbar-container p:nth-of-type(2) {
2214
- margin: 0;
2215
- float: right; }
2216
-
2217
- .premium-progressbar-name {
2218
- left: 50%;
2219
- top: 0;
2220
- right: 0;
2221
- -webkit-transform: translateX(-12.5px);
2222
- -ms-transform: translateX(-12.5px);
2223
- transform: translateX(-12.5px);
2224
- z-index: 1; }
2225
-
2226
- .premium-progressbar-multiple-label {
2227
- position: relative;
2228
- float: left;
2229
- width: 0;
2230
- left: 50%; }
2231
-
2232
- .premium-progressbar-center-label {
2233
- position: relative;
2234
- white-space: nowrap; }
2235
-
2236
- .premium-progressbar-arrow {
2237
- height: 15px;
2238
- left: 50%;
2239
- display: inline-block;
2240
- border-left: 7px solid transparent;
2241
- border-right: 7px solid transparent;
2242
- border-top: 11px solid;
2243
- -webkit-transform: translateX(-50%);
2244
- -ms-transform: translateX(-50%);
2245
- transform: translateX(-50%); }
2246
-
2247
- .premium-progressbar-pin {
2248
- border-left: 1px solid;
2249
- height: 12px;
2250
- left: 50%;
2251
- display: inline-block; }
2252
-
2253
- /**
2254
- * Circle Progress Bar
2255
- */
2256
- .premium-progressbar-circle-wrap {
2257
- width: 200px;
2258
- height: 200px;
2259
- position: relative;
2260
- margin: 0 auto; }
2261
- .premium-progressbar-circle-wrap .premium-progressbar-circle {
2262
- position: absolute;
2263
- top: 0;
2264
- left: 0;
2265
- width: 100%;
2266
- height: 100%;
2267
- -webkit-clip-path: inset(0 0 0 50%);
2268
- clip-path: inset(0 0 0 50%); }
2269
- .premium-progressbar-circle-wrap .premium-progressbar-circle div {
2270
- position: absolute;
2271
- left: 0;
2272
- top: 0;
2273
- height: 100%;
2274
- width: 100%;
2275
- border-width: 6px;
2276
- border-style: solid;
2277
- border-color: #54595f;
2278
- -webkit-border-radius: 50%;
2279
- border-radius: 50%;
2280
- -webkit-clip-path: inset(0 50% 0 0);
2281
- clip-path: inset(0 50% 0 0); }
2282
- .premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-left {
2283
- -webkit-transform: rotate(0);
2284
- -ms-transform: rotate(0);
2285
- transform: rotate(0); }
2286
- .premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-right {
2287
- -webkit-transform: rotate(180deg);
2288
- -ms-transform: rotate(180deg);
2289
- transform: rotate(180deg);
2290
- visibility: hidden; }
2291
- .premium-progressbar-circle-wrap .premium-progressbar-circle-base {
2292
- width: 100%;
2293
- height: 100%;
2294
- border: 6px solid #eee;
2295
- -webkit-border-radius: 50%;
2296
- border-radius: 50%; }
2297
- .premium-progressbar-circle-wrap .premium-progressbar-circle-content {
2298
- position: absolute;
2299
- top: 0;
2300
- left: 0;
2301
- width: 100%;
2302
- height: 100%;
2303
- -js-display: flex;
2304
- display: -webkit-box;
2305
- display: -webkit-flex;
2306
- display: -moz-box;
2307
- display: -ms-flexbox;
2308
- display: flex;
2309
- -webkit-box-orient: vertical;
2310
- -webkit-box-direction: normal;
2311
- -webkit-flex-direction: column;
2312
- -moz-box-orient: vertical;
2313
- -moz-box-direction: normal;
2314
- -ms-flex-direction: column;
2315
- flex-direction: column;
2316
- -webkit-box-pack: center;
2317
- -webkit-justify-content: center;
2318
- -moz-box-pack: center;
2319
- -ms-flex-pack: center;
2320
- justify-content: center;
2321
- -webkit-box-align: center;
2322
- -webkit-align-items: center;
2323
- -moz-box-align: center;
2324
- -ms-flex-align: center;
2325
- align-items: center; }
2326
- .premium-progressbar-circle-wrap .premium-lottie-animation {
2327
- line-height: 1; }
2328
-
2329
- @-webkit-keyframes progress-bar-stripes {
2330
- from {
2331
- background-position: 0 0; }
2332
- to {
2333
- background-position: 40px 0; } }
2334
-
2335
- @keyframes progress-bar-stripes {
2336
- from {
2337
- background-position: 0 0; }
2338
- to {
2339
- background-position: 40px 0; } }
2340
-
2341
- @-webkit-keyframes progress-bar-gradient {
2342
- 0% {
2343
- background-position: 0% 50%; }
2344
- 50% {
2345
- background-position: 100% 50%; }
2346
- 100% {
2347
- background-position: 0% 50%; } }
2348
-
2349
- @keyframes progress-bar-gradient {
2350
- 0% {
2351
- background-position: 0% 50%; }
2352
- 50% {
2353
- background-position: 100% 50%; }
2354
- 100% {
2355
- background-position: 0% 50%; } }
2356
-
2357
- /**************** Premium Testimonials ****************/
2358
- /******************************************************/
2359
- .premium-testimonial-box {
2360
- width: 100%;
2361
- background: transparent;
2362
- -webkit-transition: all 0.3s ease-in-out;
2363
- transition: all 0.3s ease-in-out; }
2364
- .premium-testimonial-box .premium-testimonial-author-info {
2365
- -js-display: flex;
2366
- display: -webkit-box;
2367
- display: -webkit-flex;
2368
- display: -moz-box;
2369
- display: -ms-flexbox;
2370
- display: flex;
2371
- -webkit-box-pack: center;
2372
- -webkit-justify-content: center;
2373
- -moz-box-pack: center;
2374
- -ms-flex-pack: center;
2375
- justify-content: center;
2376
- -webkit-box-align: center;
2377
- -webkit-align-items: center;
2378
- -moz-box-align: center;
2379
- -ms-flex-align: center;
2380
- align-items: center; }
2381
- .premium-testimonial-box .premium-testimonial-person-name,
2382
- .premium-testimonial-box .premium-testimonial-company-name {
2383
- font-weight: 600;
2384
- margin: 0; }
2385
-
2386
- .premium-testimonial-container {
2387
- position: relative; }
2388
-
2389
- .premium-testimonial-img-wrapper {
2390
- margin-left: auto;
2391
- margin-right: auto;
2392
- overflow: hidden;
2393
- border-style: solid !important; }
2394
- .premium-testimonial-img-wrapper.circle {
2395
- -webkit-border-radius: 50%;
2396
- border-radius: 50%; }
2397
- .premium-testimonial-img-wrapper.rounded {
2398
- -webkit-border-radius: 15px;
2399
- border-radius: 15px; }
2400
- .premium-testimonial-img-wrapper img {
2401
- -o-object-fit: cover;
2402
- object-fit: cover;
2403
- width: 100%;
2404
- height: 100% !important; }
2405
-
2406
- .premium-testimonial-content-wrapper {
2407
- position: relative;
2408
- -js-display: flex;
2409
- display: -webkit-box;
2410
- display: -webkit-flex;
2411
- display: -moz-box;
2412
- display: -ms-flexbox;
2413
- display: flex;
2414
- -webkit-box-orient: vertical;
2415
- -webkit-box-direction: normal;
2416
- -webkit-flex-direction: column;
2417
- -moz-box-orient: vertical;
2418
- -moz-box-direction: normal;
2419
- -ms-flex-direction: column;
2420
- flex-direction: column;
2421
- z-index: 2;
2422
- width: 100%;
2423
- padding: 20px;
2424
- text-align: center; }
2425
-
2426
- .premium-testimonial-clear-float {
2427
- clear: both; }
2428
-
2429
- .premium-testimonial-upper-quote,
2430
- .premium-testimonial-lower-quote {
2431
- position: absolute;
2432
- z-index: 1; }
2433
-
2434
- /**************** Premium Dual Heading *****************/
2435
- /*******************************************************/
2436
- .premium-dual-header-first-header,
2437
- .premium-dual-header-second-header {
2438
- position: relative;
2439
- padding: 0;
2440
- margin: 0;
2441
- display: inline-block;
2442
- -webkit-transform: translate(0, 0);
2443
- -ms-transform: translate(0, 0);
2444
- transform: translate(0, 0); }
2445
-
2446
- .premium-dual-header-first-clip .premium-dual-header-first-span,
2447
- .premium-dual-header-second-clip {
2448
- -webkit-text-fill-color: transparent;
2449
- -webkit-background-clip: text;
2450
- background-clip: text; }
2451
-
2452
- .premium-dual-header-first-clip.stroke .premium-dual-header-first-span,
2453
- .premium-dual-header-second-clip.stroke {
2454
- -webkit-text-stroke-color: transparent;
2455
- -webkit-text-fill-color: #fafafa;
2456
- -webkit-text-stroke-width: 2px; }
2457
-
2458
- @media (max-width: 500px) {
2459
- .premium-dual-header-first-header,
2460
- .premium-dual-header-second-header {
2461
- word-wrap: break-word; } }
2462
-
2463
- .premium-dual-header-first-header.gradient .premium-dual-header-first-span,
2464
- .premium-dual-header-second-header.gradient {
2465
- -webkit-background-size: 300% 300% !important;
2466
- background-size: 300% 300% !important;
2467
- -webkit-animation: Gradient 10s ease-in-out infinite;
2468
- animation: Gradient 10s ease-in-out infinite; }
2469
-
2470
- @-webkit-keyframes Gradient {
2471
- 0% {
2472
- background-position: 0% 50%; }
2473
- 50% {
2474
- background-position: 100% 50%; }
2475
- 100% {
2476
- background-position: 0% 50%; } }
2477
-
2478
- @keyframes Gradient {
2479
- 0% {
2480
- background-position: 0% 50%; }
2481
- 50% {
2482
- background-position: 100% 50%; }
2483
- 100% {
2484
- background-position: 0% 50%; } }
2485
-
2486
- .premium-mask-yes.premium-header-inline .premium-dual-header-first-span,
2487
- .premium-mask-yes.premium-header-inline .premium-dual-header-first-span {
2488
- display: inline-block !important; }
2489
-
2490
- /**************** Premium Title ****************/
2491
- /***********************************************/
2492
- .premium-title-container {
2493
- position: relative;
2494
- width: 100%;
2495
- clear: both; }
2496
- .premium-title-container .premium-title-header {
2497
- position: relative;
2498
- margin: 0;
2499
- padding: 10px; }
2500
- .premium-title-container .premium-title-header:not(.premium-title-style7) {
2501
- -webkit-box-align: center;
2502
- -webkit-align-items: center;
2503
- -moz-box-align: center;
2504
- -ms-flex-align: center;
2505
- align-items: center; }
2506
- .premium-title-container .premium-title-header svg {
2507
- width: 40px;
2508
- height: 40px; }
2509
- .premium-title-container .premium-title-header img {
2510
- width: 40px;
2511
- height: 40px;
2512
- -o-object-fit: cover;
2513
- object-fit: cover; }
2514
- .premium-title-container .premium-title-header a {
2515
- position: absolute;
2516
- top: 0;
2517
- left: 0;
2518
- width: 100%;
2519
- height: 100%; }
2520
- .premium-title-container .premium-lottie-animation {
2521
- -js-display: flex;
2522
- display: -webkit-box;
2523
- display: -webkit-flex;
2524
- display: -moz-box;
2525
- display: -ms-flexbox;
2526
- display: flex; }
2527
-
2528
- .premium-title-icon-row .premium-title-icon {
2529
- margin-right: 10px; }
2530
-
2531
- .premium-title-icon-row-reverse .premium-title-icon {
2532
- margin-left: 10px; }
2533
-
2534
- .premium-title-style3,
2535
- .premium-title-style4 {
2536
- -js-display: flex;
2537
- display: -webkit-box;
2538
- display: -webkit-flex;
2539
- display: -moz-box;
2540
- display: -ms-flexbox;
2541
- display: flex; }
2542
-
2543
- .premium-title-style1,
2544
- .premium-title-style2,
2545
- .premium-title-style5,
2546
- .premium-title-style6,
2547
- .premium-title-style8,
2548
- .premium-title-style9 {
2549
- -js-display: inline-flex;
2550
- display: -webkit-inline-box;
2551
- display: -webkit-inline-flex;
2552
- display: -moz-inline-box;
2553
- display: -ms-inline-flexbox;
2554
- display: inline-flex; }
2555
-
2556
- .premium-title-style7 {
2557
- -js-display: inline-flex;
2558
- display: -webkit-inline-box;
2559
- display: -webkit-inline-flex;
2560
- display: -moz-inline-box;
2561
- display: -ms-inline-flexbox;
2562
- display: inline-flex;
2563
- -webkit-box-orient: vertical;
2564
- -webkit-box-direction: normal;
2565
- -webkit-flex-direction: column;
2566
- -moz-box-orient: vertical;
2567
- -moz-box-direction: normal;
2568
- -ms-flex-direction: column;
2569
- flex-direction: column; }
2570
- .premium-title-style7 .premium-title-style7-inner {
2571
- -js-display: flex;
2572
- display: -webkit-box;
2573
- display: -webkit-flex;
2574
- display: -moz-box;
2575
- display: -ms-flexbox;
2576
- display: flex;
2577
- -webkit-box-align: center;
2578
- -webkit-align-items: center;
2579
- -moz-box-align: center;
2580
- -ms-flex-align: center;
2581
- align-items: center; }
2582
-
2583
- .premium-title-style1 {
2584
- border-width: 0;
2585
- border-left: 3px solid #6ec1e4; }
2586
-
2587
- .premium-title-container.style2, .premium-title-container.style4, .premium-title-container.style5, .premium-title-container.style6 {
2588
- border-bottom: 3px solid #6ec1e4; }
2589
-
2590
- /*Style 6 Header*/
2591
- .premium-title-style6:before {
2592
- position: absolute;
2593
- left: 50%;
2594
- bottom: 0;
2595
- margin-left: -2px;
2596
- content: "";
2597
- border: 3px solid transparent; }
2598
-
2599
- /*Style 6 Trinagle*/
2600
- .premium-title-style7-stripe-wrap {
2601
- -js-display: flex;
2602
- display: -webkit-box;
2603
- display: -webkit-flex;
2604
- display: -moz-box;
2605
- display: -ms-flexbox;
2606
- display: flex; }
2607
-
2608
- .premium-title-style7:before {
2609
- display: none; }
2610
-
2611
- .premium-title-style8 .premium-title-text[data-animation="shiny"] {
2612
- -webkit-background-size: 125px 125px !important;
2613
- background-size: 125px !important;
2614
- color: rgba(255, 255, 255, 0);
2615
- -webkit-background-clip: text !important;
2616
- background-clip: text !important;
2617
- -webkit-animation-name: pa-shinny-text !important;
2618
- animation-name: pa-shinny-text !important;
2619
- -webkit-animation-duration: var(--animation-speed) !important;
2620
- animation-duration: var(--animation-speed) !important;
2621
- -webkit-animation-iteration-count: infinite !important;
2622
- animation-iteration-count: infinite !important;
2623
- background: var(--base-color) -webkit-gradient(linear, left top, right top, from(var(--base-color)), to(var(--base-color)), color-stop(0.5, var(--shiny-color))) 0 0 no-repeat; }
2624
-
2625
- @-webkit-keyframes pa-shinny-text {
2626
- 0% {
2627
- background-position: 0%; }
2628
- 100% {
2629
- background-position: 200%; } }
2630
-
2631
- @keyframes pa-shinny-text {
2632
- 0% {
2633
- background-position: 0%; }
2634
- 100% {
2635
- background-position: 200%; } }
2636
-
2637
- .premium-title-style9[data-animation-blur="process"] .premium-title-style9-letter {
2638
- -webkit-animation: pa-blur-shadow 2s 1 alternate;
2639
- animation: pa-blur-shadow 2s 1 alternate; }
2640
-
2641
- @-webkit-keyframes pa-blur-shadow {
2642
- from {
2643
- text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
2644
- color: transparent; }
2645
- to {
2646
- text-shadow: 0; } }
2647
-
2648
- @keyframes pa-blur-shadow {
2649
- from {
2650
- text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
2651
- color: transparent; }
2652
- to {
2653
- text-shadow: 0; } }
2654
-
2655
- .premium-title-gradient-yes .premium-title-text,
2656
- .premium-title-gradient-yes .premium-title-icon {
2657
- -webkit-background-clip: text;
2658
- -webkit-text-fill-color: transparent;
2659
- background-image: -webkit-gradient(linear, left top, right top, from(#ffa648), color-stop(#f17cc1), to(#4da9fd));
2660
- background-image: -webkit-linear-gradient(left, #ffa648, #f17cc1, #4da9fd);
2661
- background-image: linear-gradient(to right, #ffa648, #f17cc1, #4da9fd);
2662
- -webkit-animation: pa-text-gradient 8s infinite;
2663
- animation: pa-text-gradient 8s infinite; }
2664
-
2665
- .premium-title-clipped .premium-title-header {
2666
- -webkit-text-fill-color: transparent;
2667
- -webkit-background-clip: text;
2668
- background-clip: text; }
2669
-
2670
- @-webkit-keyframes pa-text-gradient {
2671
- 0%,
2672
- 100% {
2673
- -webkit-filter: hue-rotate(0deg);
2674
- filter: hue-rotate(0deg); }
2675
- 50% {
2676
- -webkit-filter: hue-rotate(360deg);
2677
- filter: hue-rotate(360deg); } }
2678
-
2679
- @keyframes pa-text-gradient {
2680
- 0%,
2681
- 100% {
2682
- -webkit-filter: hue-rotate(0deg);
2683
- filter: hue-rotate(0deg); }
2684
- 50% {
2685
- -webkit-filter: hue-rotate(360deg);
2686
- filter: hue-rotate(360deg); } }
2687
-
2688
- /*
2689
- * Common Title/Dual Heading
2690
- */
2691
- .premium-title-bg-text:before {
2692
- position: absolute;
2693
- content: attr(data-background);
2694
- top: 0;
2695
- left: 0;
2696
- text-align: left; }
2697
-
2698
- .premium-bg-text-yes .elementor-widget-container:before {
2699
- position: absolute;
2700
- top: 0;
2701
- left: 0;
2702
- text-align: left; }
2703
-
2704
- .premium-mask-yes .premium-dual-header-first-clip .premium-dual-header-first-span .premium-mask-span,
2705
- .premium-mask-yes .premium-dual-header-second-clip .premium-mask-span {
2706
- background: inherit; }
2707
-
2708
- .premium-mask-yes .premium-mask-span {
2709
- position: relative;
2710
- overflow: hidden;
2711
- -js-display: inline-flex !important;
2712
- display: -webkit-inline-box !important;
2713
- display: -webkit-inline-flex !important;
2714
- display: -moz-inline-box !important;
2715
- display: -ms-inline-flexbox !important;
2716
- display: inline-flex !important; }
2717
- .premium-mask-yes .premium-mask-span::after {
2718
- content: "";
2719
- position: absolute;
2720
- top: 0;
2721
- right: 0px;
2722
- width: 100%;
2723
- height: 100%;
2724
- background-color: currentColor;
2725
- -webkit-backface-visibility: visible;
2726
- backface-visibility: visible; }
2727
-
2728
- .premium-mask-active.premium-mask-tr .premium-mask-span::after {
2729
- -webkit-animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
2730
- animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
2731
- -webkit-transform: translateX(-103%);
2732
- -ms-transform: translateX(-103%);
2733
- transform: translateX(-103%); }
2734
-
2735
- .premium-mask-active.premium-mask-tl .premium-mask-span::after {
2736
- -webkit-animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
2737
- animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
2738
- -webkit-transform: translateX(103%);
2739
- -ms-transform: translateX(103%);
2740
- transform: translateX(103%); }
2741
-
2742
- .premium-mask-active.premium-mask-tb .premium-mask-span::after {
2743
- -webkit-animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
2744
- animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
2745
- -webkit-transform: translateY(-103%);
2746
- -ms-transform: translateY(-103%);
2747
- transform: translateY(-103%); }
2748
-
2749
- .premium-mask-active.premium-mask-tt .premium-mask-span::after {
2750
- -webkit-animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
2751
- animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
2752
- -webkit-transform: translateY(103%);
2753
- -ms-transform: translateY(103%);
2754
- transform: translateY(103%); }
2755
-
2756
- @-webkit-keyframes pa-mask-tr {
2757
- 0% {
2758
- -webkit-transform: translateX(0%);
2759
- transform: translateX(0%); }
2760
- 100% {
2761
- -webkit-transform: translateX(103%);
2762
- transform: translateX(103%); } }
2763
-
2764
- @keyframes pa-mask-tr {
2765
- 0% {
2766
- -webkit-transform: translateX(0%);
2767
- transform: translateX(0%); }
2768
- 100% {
2769
- -webkit-transform: translateX(103%);
2770
- transform: translateX(103%); } }
2771
-
2772
- @-webkit-keyframes pa-mask-tl {
2773
- 0% {
2774
- -webkit-transform: translateX(0%);
2775
- transform: translateX(0%); }
2776
- 100% {
2777
- -webkit-transform: translateX(-103%);
2778
- transform: translateX(-103%); } }
2779
-
2780
- @keyframes pa-mask-tl {
2781
- 0% {
2782
- -webkit-transform: translateX(0%);
2783
- transform: translateX(0%); }
2784
- 100% {
2785
- -webkit-transform: translateX(-103%);
2786
- transform: translateX(-103%); } }
2787
-
2788
- @-webkit-keyframes pa-mask-tb {
2789
- 0% {
2790
- -webkit-transform: translateY(0%);
2791
- transform: translateY(0%); }
2792
- 100% {
2793
- -webkit-transform: translateY(103%);
2794
- transform: translateY(103%); } }
2795
-
2796
- @keyframes pa-mask-tb {
2797
- 0% {
2798
- -webkit-transform: translateY(0%);
2799
- transform: translateY(0%); }
2800
- 100% {
2801
- -webkit-transform: translateY(103%);
2802
- transform: translateY(103%); } }
2803
-
2804
- @-webkit-keyframes pa-mask-tt {
2805
- 0% {
2806
- -webkit-transform: translateY(0%);
2807
- transform: translateY(0%); }
2808
- 100% {
2809
- -webkit-transform: translateY(-103%);
2810
- transform: translateY(-103%); } }
2811
-
2812
- @keyframes pa-mask-tt {
2813
- 0% {
2814
- -webkit-transform: translateY(0%);
2815
- transform: translateY(0%); }
2816
- 100% {
2817
- -webkit-transform: translateY(-103%);
2818
- transform: translateY(-103%); } }
2819
-
2820
- /**************** Premium Video Box ************/
2821
- /***********************************************/
2822
- .premium-video-box-transform {
2823
- -webkit-transform: none !important;
2824
- -ms-transform: none !important;
2825
- transform: none !important; }
2826
-
2827
- .premium-video-box-container {
2828
- -js-display: flex;
2829
- display: -webkit-box;
2830
- display: -webkit-flex;
2831
- display: -moz-box;
2832
- display: -ms-flexbox;
2833
- display: flex;
2834
- -webkit-box-orient: vertical;
2835
- -webkit-box-direction: normal;
2836
- -webkit-flex-direction: column;
2837
- -moz-box-orient: vertical;
2838
- -moz-box-direction: normal;
2839
- -ms-flex-direction: column;
2840
- flex-direction: column; }
2841
-
2842
- .premium-video-box-container > div {
2843
- position: relative;
2844
- overflow: hidden; }
2845
-
2846
- .pa-aspect-ratio-11 .premium-video-box-container > div {
2847
- padding-bottom: 100%; }
2848
-
2849
- .pa-aspect-ratio-169 .premium-video-box-container > div {
2850
- padding-bottom: 56.25%; }
2851
-
2852
- .pa-aspect-ratio-43 .premium-video-box-container > div {
2853
- padding-bottom: 75%; }
2854
-
2855
- .pa-aspect-ratio-32 .premium-video-box-container > div {
2856
- padding-bottom: 66.6666%; }
2857
-
2858
- .pa-aspect-ratio-219 .premium-video-box-container > div {
2859
- padding-bottom: 42.8571%; }
2860
-
2861
- .pa-aspect-ratio-916 .premium-video-box-container > div {
2862
- padding-bottom: 177.8%; }
2863
-
2864
- .premium-video-box-image-container {
2865
- position: absolute;
2866
- top: 0;
2867
- left: 0;
2868
- bottom: 0;
2869
- right: 0;
2870
- width: 100%;
2871
- height: 100%;
2872
- -webkit-background-size: cover;
2873
- background-size: cover;
2874
- background-position: 50%;
2875
- cursor: pointer;
2876
- margin: auto;
2877
- -webkit-transition: 0.2s all;
2878
- transition: 0.2s all; }
2879
-
2880
- .premium-video-box-play-icon-container {
2881
- position: absolute;
2882
- z-index: 2;
2883
- cursor: pointer;
2884
- -webkit-transform: translate(-50%, -50%);
2885
- -ms-transform: translate(-50%, -50%);
2886
- transform: translate(-50%, -50%);
2887
- background: rgba(252, 252, 252, 0.35); }
2888
-
2889
- .premium-video-box-description-container {
2890
- position: absolute;
2891
- z-index: 2;
2892
- padding: 5px;
2893
- text-align: center;
2894
- cursor: pointer;
2895
- -webkit-transform: translate(-50%, -50%);
2896
- -ms-transform: translate(-50%, -50%);
2897
- transform: translate(-50%, -50%); }
2898
-
2899
- .premium-video-box-text {
2900
- margin-bottom: 0 !important;
2901
- -webkit-transition: all 0.3s ease-in-out;
2902
- transition: all 0.3s ease-in-out; }
2903
-
2904
- .premium-video-box-play-icon {
2905
- padding: 15px;
2906
- -webkit-transform: translateX(4%);
2907
- -ms-transform: translateX(4%);
2908
- transform: translateX(4%);
2909
- -webkit-transition: all 0.3s ease-in-out;
2910
- transition: all 0.3s ease-in-out; }
2911
-
2912
- .premium-video-box-video-container {
2913
- position: absolute;
2914
- top: 0;
2915
- left: 0;
2916
- z-index: 2;
2917
- width: 100%;
2918
- height: 100%;
2919
- -webkit-transition: opacity 0.8s ease-in-out;
2920
- transition: opacity 0.8s ease-in-out;
2921
- overflow: hidden;
2922
- cursor: pointer; }
2923
-
2924
- .premium-video-box-container[data-overlay="true"][data-type="self"] .premium-video-box-video-container {
2925
- opacity: 0;
2926
- visibility: hidden; }
2927
-
2928
- .premium-video-box-video-container iframe {
2929
- max-width: 100%;
2930
- width: 100%;
2931
- height: 100%;
2932
- margin: 0;
2933
- line-height: 1;
2934
- border: none; }
2935
-
2936
- .premium-video-box-video-container video {
2937
- max-width: 100%;
2938
- width: 100%;
2939
- height: 100%;
2940
- margin: 0;
2941
- line-height: 1;
2942
- border: none;
2943
- background-color: #000;
2944
- -o-object-fit: contain;
2945
- object-fit: contain; }
2946
-
2947
- .premium-video-box-container .premium-video-box-vimeo-wrap {
2948
- -js-display: flex;
2949
- display: -webkit-box;
2950
- display: -webkit-flex;
2951
- display: -moz-box;
2952
- display: -ms-flexbox;
2953
- display: flex;
2954
- position: absolute;
2955
- top: 0;
2956
- left: 0;
2957
- z-index: 3;
2958
- margin: 10px;
2959
- margin-right: 10px;
2960
- -webkit-transition: opacity 0.2s ease-out;
2961
- transition: opacity 0.2s ease-out;
2962
- margin-right: 4.6em; }
2963
-
2964
- .premium-video-box-vimeo-wrap .premium-video-box-vimeo-portrait {
2965
- width: 60px;
2966
- height: 60px;
2967
- background: rgba(23, 35, 34, 0.75);
2968
- margin-right: 1px;
2969
- -webkit-box-flex: 1;
2970
- -webkit-flex: 1 0 auto;
2971
- -moz-box-flex: 1;
2972
- -ms-flex: 1 0 auto;
2973
- flex: 1 0 auto;
2974
- padding: 0; }
2975
-
2976
- .premium-video-box-vimeo-portrait img {
2977
- width: 50px;
2978
- height: 50px;
2979
- margin: 5px;
2980
- padding: 0;
2981
- border: 0;
2982
- -webkit-border-radius: 50%;
2983
- border-radius: 50%; }
2984
-
2985
- .premium-video-box-vimeo-wrap .premium-video-box-vimeo-headers {
2986
- font-size: 10px; }
2987
-
2988
- .premium-video-box-vimeo-wrap .premium-video-box-vimeo-title {
2989
- max-width: 100%;
2990
- font-size: 2em !important;
2991
- font-weight: 700;
2992
- margin: 0;
2993
- padding: 0.1em 0.2em;
2994
- background: rgba(23, 35, 34, 0.75);
2995
- display: inline-block;
2996
- text-transform: none;
2997
- line-height: normal;
2998
- letter-spacing: normal; }
2999
-
3000
- .premium-video-box-vimeo-wrap .premium-video-box-vimeo-byline {
3001
- font-size: 1.2em !important;
3002
- font-weight: 400;
3003
- color: #fff;
3004
- margin-top: 0.1em;
3005
- padding: 0.2em 0.5em;
3006
- background: rgba(23, 35, 34, 0.75);
3007
- text-transform: none;
3008
- line-height: normal;
3009
- letter-spacing: normal; }
3010
-
3011
- .premium-video-box-playlist-container {
3012
- -js-display: flex;
3013
- display: -webkit-box;
3014
- display: -webkit-flex;
3015
- display: -moz-box;
3016
- display: -ms-flexbox;
3017
- display: flex;
3018
- -webkit-flex-wrap: wrap;
3019
- -ms-flex-wrap: wrap;
3020
- flex-wrap: wrap; }
3021
- .premium-video-box-playlist-container .premium-video-box-container {
3022
- height: 100%;
3023
- overflow: hidden; }
3024
-
3025
- .premium-video-box-container:hover .premium-video-box-image-container.zoomin {
3026
- -webkit-transform: scale(1.1);
3027
- -ms-transform: scale(1.1);
3028
- transform: scale(1.1); }
3029
-
3030
- .premium-video-box-container:hover .premium-video-box-image-container.zoomout {
3031
- -webkit-transform: scale(1);
3032
- -ms-transform: scale(1);
3033
- transform: scale(1); }
3034
-
3035
- .premium-video-box-container:hover .premium-video-box-image-container.scale {
3036
- -webkit-transform: scale(1.3) rotate(5deg);
3037
- -ms-transform: scale(1.3) rotate(5deg);
3038
- transform: scale(1.3) rotate(5deg); }
3039
-
3040
- .premium-video-box-container:hover .premium-video-box-image-container.gray {
3041
- -webkit-filter: grayscale(0%);
3042
- filter: grayscale(0%); }
3043
-
3044
- .premium-video-box-container:hover .premium-video-box-image-container.blur {
3045
- -webkit-filter: blur(3px);
3046
- filter: blur(3px); }
3047
-
3048
- .premium-video-box-container:hover .premium-video-box-image-container.sepia {
3049
- -webkit-filter: sepia(0%);
3050
- filter: sepia(0%); }
3051
-
3052
- .premium-video-box-container:hover .premium-video-box-image-container.trans {
3053
- -webkit-transform: translateX(0px) scale(1.1);
3054
- -ms-transform: translateX(0px) scale(1.1);
3055
- transform: translateX(0px) scale(1.1); }
3056
-
3057
- .premium-video-box-container:hover .premium-video-box-image-container.bright {
3058
- -webkit-filter: brightness(1.2);
3059
- filter: brightness(1.2); }
3060
-
3061
- .premium-video-box-image-container.gray {
3062
- -webkit-filter: grayscale(100%);
3063
- filter: grayscale(100%); }
3064
-
3065
- .premium-video-box-image-container.zoomout, .premium-video-box-image-container.scale {
3066
- -webkit-transform: scale(1.2);
3067
- -ms-transform: scale(1.2);
3068
- transform: scale(1.2); }
3069
-
3070
- .premium-video-box-image-container.sepia {
3071
- -webkit-filter: sepia(30%);
3072
- filter: sepia(30%); }
3073
-
3074
- .premium-video-box-image-container.bright {
3075
- -webkit-filter: brightness(1);
3076
- filter: brightness(1); }
3077
-
3078
- .premium-video-box-image-container.trans {
3079
- -webkit-transform: translateX(-15px) scale(1.1);
3080
- -ms-transform: translateX(-15px) scale(1.1);
3081
- transform: translateX(-15px) scale(1.1); }
3082
-
3083
- .premium-video-box-mask-media {
3084
- -webkit-mask-repeat: no-repeat;
3085
- mask-repeat: no-repeat; }
3086
-
3087
- /* Sticky Video Option */
3088
- .premium-video-box-container.premium-video-box-sticky-apply {
3089
- z-index: 99;
3090
- overflow: unset; }
3091
- .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3092
- position: fixed !important;
3093
- z-index: 99999;
3094
- height: 225px;
3095
- width: 400px;
3096
- background: #fff; }
3097
- .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-vimeo-wrap,
3098
- .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-container:before {
3099
- visibility: hidden; }
3100
- .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
3101
- -webkit-box-shadow: unset;
3102
- box-shadow: unset; }
3103
-
3104
- .premium-video-box-sticky-close,
3105
- .premium-video-box-sticky-infobar {
3106
- display: none; }
3107
-
3108
- .premium-video-box-sticky-apply .premium-video-box-sticky-close {
3109
- position: absolute;
3110
- padding: 5px;
3111
- cursor: pointer;
3112
- z-index: 99999;
3113
- height: 14px;
3114
- width: 14px;
3115
- -webkit-box-sizing: content-box;
3116
- -moz-box-sizing: content-box;
3117
- box-sizing: content-box;
3118
- -webkit-border-radius: 100%;
3119
- border-radius: 100%;
3120
- -js-display: flex;
3121
- display: -webkit-box;
3122
- display: -webkit-flex;
3123
- display: -moz-box;
3124
- display: -ms-flexbox;
3125
- display: flex;
3126
- -webkit-box-pack: center;
3127
- -webkit-justify-content: center;
3128
- -moz-box-pack: center;
3129
- -ms-flex-pack: center;
3130
- justify-content: center;
3131
- -webkit-box-align: center;
3132
- -webkit-align-items: center;
3133
- -moz-box-align: center;
3134
- -ms-flex-align: center;
3135
- align-items: center; }
3136
-
3137
- .premium-video-box-sticky-apply .premium-video-box-play-icon-container {
3138
- -js-display: flex;
3139
- display: -webkit-box;
3140
- display: -webkit-flex;
3141
- display: -moz-box;
3142
- display: -ms-flexbox;
3143
- display: flex; }
3144
-
3145
- .premium-video-box-sticky-apply .premium-video-box-play-icon {
3146
- -webkit-transition: none;
3147
- transition: none; }
3148
-
3149
- .premium-video-box-sticky-apply .premium-video-box-sticky-infobar {
3150
- display: block;
3151
- position: relative;
3152
- top: 100%;
3153
- width: 100%;
3154
- padding: 5px;
3155
- text-align: center;
3156
- z-index: 9999;
3157
- margin-top: -1px; }
3158
-
3159
- .premium-video-box-sticky-apply .premium-video-box-inner-wrap.ui-draggable {
3160
- cursor: move; }
3161
-
3162
- .premium-video-sticky-top-left
3163
- .premium-video-box-container.premium-video-box-sticky-apply
3164
- .premium-video-box-inner-wrap {
3165
- right: auto;
3166
- left: 20px;
3167
- top: 20px; }
3168
-
3169
- .premium-video-sticky-bottom-left
3170
- .premium-video-box-container.premium-video-box-sticky-apply
3171
- .premium-video-box-inner-wrap {
3172
- right: auto;
3173
- left: 20px;
3174
- bottom: 20px; }
3175
-
3176
- .premium-video-sticky-top-right
3177
- .premium-video-box-container.premium-video-box-sticky-apply
3178
- .premium-video-box-inner-wrap {
3179
- left: auto;
3180
- right: 20px;
3181
- top: 20px; }
3182
-
3183
- .premium-video-sticky-bottom-right
3184
- .premium-video-box-container.premium-video-box-sticky-apply
3185
- .premium-video-box-inner-wrap {
3186
- left: auto;
3187
- right: 20px;
3188
- bottom: 20px; }
3189
-
3190
- .premium-video-sticky-center-left
3191
- .premium-video-box-container.premium-video-box-sticky-apply
3192
- .premium-video-box-inner-wrap {
3193
- right: auto;
3194
- left: 20px;
3195
- top: 50%;
3196
- -webkit-transform: translateY(-50%);
3197
- -ms-transform: translateY(-50%);
3198
- transform: translateY(-50%); }
3199
-
3200
- .premium-video-sticky-center-right
3201
- .premium-video-box-container.premium-video-box-sticky-apply
3202
- .premium-video-box-inner-wrap {
3203
- left: auto;
3204
- right: 20px;
3205
- top: 50%;
3206
- -webkit-transform: translateY(-50%);
3207
- -ms-transform: translateY(-50%);
3208
- transform: translateY(-50%); }
3209
-
3210
- .premium-video-sticky-bottom-right
3211
- .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply
3212
- .premium-video-box-inner-wrap,
3213
- .premium-video-sticky-bottom-left
3214
- .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply
3215
- .premium-video-box-inner-wrap {
3216
- bottom: 55px; }
3217
-
3218
- .premium-video-sticky-top-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
3219
- .premium-video-sticky-bottom-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
3220
- .premium-video-sticky-center-left .premium-video-box-sticky-apply .premium-video-box-sticky-close {
3221
- top: -10px;
3222
- right: -10px; }
3223
-
3224
- .premium-video-sticky-top-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
3225
- .premium-video-sticky-bottom-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
3226
- .premium-video-sticky-center-right .premium-video-box-sticky-apply .premium-video-box-sticky-close {
3227
- top: -10px;
3228
- left: -10px; }
3229
-
3230
- .premium-video-box-filter-sticky {
3231
- -webkit-filter: none !important;
3232
- filter: none !important; }
3233
-
3234
- /**************** Premium Blog *****************/
3235
- /***********************************************/
3236
- .premium-blog-thumb-effect-wrapper {
3237
- position: relative;
3238
- overflow: hidden; }
3239
-
3240
- .premium-blog-effect-container:not(.premium-blog-bordered-effect) .premium-blog-post-link {
3241
- position: absolute;
3242
- top: 0;
3243
- left: 0;
3244
- width: 100%;
3245
- height: 100%;
3246
- z-index: 2;
3247
- padding: 20px; }
3248
-
3249
- .premium-blog-bordered-effect .premium-blog-post-link {
3250
- display: block;
3251
- height: 100%;
3252
- position: relative; }
3253
-
3254
- /*Thumbnail Img*/
3255
- .premium-blog-thumbnail-container {
3256
- overflow: hidden; }
3257
- .premium-blog-thumbnail-container img,
3258
- .premium-blog-thumbnail-container .below-entry-meta {
3259
- width: 100%;
3260
- height: 100%;
3261
- margin: 0 !important;
3262
- -webkit-transition: all 0.4s ease-in-out;
3263
- transition: all 0.4s ease-in-out; }
3264
-
3265
- .premium-blog-thumb-effect-wrapper .premium-blog-zoomout-effect img,
3266
- .premium-blog-thumb-effect-wrapper .premium-blog-scale-effect img {
3267
- -webkit-transform: scale(1.2);
3268
- -ms-transform: scale(1.2);
3269
- transform: scale(1.2); }
3270
-
3271
- .premium-blog-thumb-effect-wrapper .premium-blog-sepia-effect img {
3272
- -webkit-filter: sepia(30%);
3273
- filter: sepia(30%); }
3274
-
3275
- .premium-blog-thumb-effect-wrapper .premium-blog-bright-effect img {
3276
- -webkit-filter: brightness(1);
3277
- filter: brightness(1); }
3278
-
3279
- .premium-blog-thumb-effect-wrapper .premium-blog-trans-effect img {
3280
- -webkit-transform: translateX(-15px) scale(1.1);
3281
- -ms-transform: translateX(-15px) scale(1.1);
3282
- transform: translateX(-15px) scale(1.1); }
3283
-
3284
- .premium-blog-post-outer-container:hover .premium-blog-zoomin-effect img {
3285
- -webkit-transform: scale(1.2);
3286
- -ms-transform: scale(1.2);
3287
- transform: scale(1.2); }
3288
-
3289
- .premium-blog-post-outer-container:hover .premium-blog-zoomout-effect img {
3290
- -webkit-transform: scale(1.1);
3291
- -ms-transform: scale(1.1);
3292
- transform: scale(1.1); }
3293
-
3294
- .premium-blog-post-outer-container:hover .premium-blog-scale-effect img {
3295
- -webkit-transform: scale(1.3) rotate(5deg);
3296
- -ms-transform: scale(1.3) rotate(5deg);
3297
- transform: scale(1.3) rotate(5deg); }
3298
-
3299
- .premium-blog-post-outer-container:hover .premium-blog-gray-effect img {
3300
- -webkit-filter: grayscale(100%);
3301
- filter: grayscale(100%); }
3302
-
3303
- .premium-blog-post-outer-container:hover .premium-blog-blur-effect img {
3304
- -webkit-filter: blur(3px);
3305
- filter: blur(3px); }
3306
-
3307
- .premium-blog-post-outer-container:hover .premium-blog-sepia-effect img {
3308
- -webkit-filter: sepia(0%);
3309
- filter: sepia(0%); }
3310
-
3311
- .premium-blog-post-outer-container:hover .premium-blog-bright-effect img {
3312
- -webkit-filter: brightness(1.2);
3313
- filter: brightness(1.2); }
3314
-
3315
- .premium-blog-post-outer-container:hover .premium-blog-trans-effect img {
3316
- -webkit-transform: translateX(0px) scale(1.1);
3317
- -ms-transform: translateX(0px) scale(1.1);
3318
- transform: translateX(0px) scale(1.1); }
3319
-
3320
- .premium-blog-post-container {
3321
- overflow: hidden; }
3322
- .premium-blog-post-container .premium-blog-inner-container {
3323
- -js-display: flex;
3324
- display: -webkit-box;
3325
- display: -webkit-flex;
3326
- display: -moz-box;
3327
- display: -ms-flexbox;
3328
- display: flex; }
3329
- .premium-blog-post-container .premium-blog-entry-container {
3330
- margin: 0 !important; }
3331
- .premium-blog-post-container .premium-blog-post-content {
3332
- line-height: 1.5em;
3333
- color: #777;
3334
- font-size: 14px;
3335
- margin-bottom: 10px; }
3336
- .premium-blog-post-container ul.post-categories a:hover, .premium-blog-post-container ul.post-categories a:focus,
3337
- .premium-blog-post-container .premium-blog-post-link:hover,
3338
- .premium-blog-post-container .premium-blog-post-link:focus {
3339
- -webkit-box-shadow: none !important;
3340
- box-shadow: none !important;
3341
- outline: none !important; }
3342
- .premium-blog-post-container .premium-blog-entry-title {
3343
- font-size: 18px;
3344
- margin-bottom: 5px; }
3345
- .premium-blog-post-container.premium-blog-skin-modern .premium-blog-content-wrapper {
3346
- position: relative;
3347
- z-index: 3;
3348
- top: -50px; }
3349
- .premium-blog-post-container .premium-blog-content-wrapper {
3350
- background-color: #f5f5f5;
3351
- padding: 30px; }
3352
- .premium-blog-post-container .premium-blog-content-wrapper.empty-thumb {
3353
- top: 0; }
3354
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before, .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:after {
3355
- position: absolute;
3356
- content: "";
3357
- z-index: 1;
3358
- top: 50%;
3359
- left: 50%;
3360
- opacity: 0;
3361
- -webkit-transform: translate(-50%, -50%);
3362
- -ms-transform: translate(-50%, -50%);
3363
- transform: translate(-50%, -50%);
3364
- -webkit-transition: all 0.4s linear 0s;
3365
- transition: all 0.4s linear 0s;
3366
- height: 1px;
3367
- width: 100%;
3368
- background-color: #fff; }
3369
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before {
3370
- width: 1px;
3371
- height: 100%; }
3372
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-container:after {
3373
- width: 20px;
3374
- opacity: 1; }
3375
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-container:before {
3376
- height: 20px;
3377
- opacity: 1; }
3378
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-content-wrapper {
3379
- margin: 0px 10px 20px;
3380
- clear: both; }
3381
- .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay, .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay, .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay {
3382
- position: absolute;
3383
- top: 0;
3384
- left: 0;
3385
- width: 100%;
3386
- height: 100%;
3387
- -webkit-transition: all 0.3s ease-in-out;
3388
- transition: all 0.3s ease-in-out;
3389
- opacity: 0; }
3390
- .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay a, .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay a, .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay a {
3391
- -js-display: flex;
3392
- display: -webkit-box;
3393
- display: -webkit-flex;
3394
- display: -moz-box;
3395
- display: -ms-flexbox;
3396
- display: flex;
3397
- -webkit-box-pack: center;
3398
- -webkit-justify-content: center;
3399
- -moz-box-pack: center;
3400
- -ms-flex-pack: center;
3401
- justify-content: center;
3402
- -webkit-box-align: center;
3403
- -webkit-align-items: center;
3404
- -moz-box-align: center;
3405
- -ms-flex-align: center;
3406
- align-items: center;
3407
- width: 100%;
3408
- height: 100%; }
3409
- .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay span,
3410
- .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay i, .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay span,
3411
- .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay i, .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay span,
3412
- .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay i {
3413
- -webkit-transition: all 0.3s ease-in-out;
3414
- transition: all 0.3s ease-in-out; }
3415
- .premium-blog-post-container.premium-blog-skin-side {
3416
- -js-display: flex;
3417
- display: -webkit-box;
3418
- display: -webkit-flex;
3419
- display: -moz-box;
3420
- display: -ms-flexbox;
3421
- display: flex; }
3422
- .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-container {
3423
- height: 100%; }
3424
- .premium-blog-post-container.premium-blog-skin-side .premium-blog-content-wrapper {
3425
- -webkit-box-flex: 1;
3426
- -webkit-flex: 1;
3427
- -moz-box-flex: 1;
3428
- -ms-flex: 1;
3429
- flex: 1; }
3430
- .premium-blog-post-container.premium-blog-skin-banner {
3431
- position: relative; }
3432
- .premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper {
3433
- position: absolute;
3434
- width: 100%;
3435
- bottom: 0;
3436
- -js-display: flex;
3437
- display: -webkit-box;
3438
- display: -webkit-flex;
3439
- display: -moz-box;
3440
- display: -ms-flexbox;
3441
- display: flex;
3442
- -webkit-box-orient: vertical;
3443
- -webkit-box-direction: normal;
3444
- -webkit-flex-direction: column;
3445
- -moz-box-orient: vertical;
3446
- -moz-box-direction: normal;
3447
- -ms-flex-direction: column;
3448
- flex-direction: column;
3449
- background-color: transparent;
3450
- z-index: 3; }
3451
- .premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper-inner {
3452
- -webkit-transition: -webkit-transform 0.3s ease-in-out;
3453
- transition: -webkit-transform 0.3s ease-in-out;
3454
- transition: transform 0.3s ease-in-out;
3455
- transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; }
3456
- .premium-blog-post-container.premium-blog-skin-banner:hover .premium-blog-content-wrapper-inner {
3457
- -webkit-transform: translateY(-5px);
3458
- -ms-transform: translateY(-5px);
3459
- transform: translateY(-5px); }
3460
- .premium-blog-post-container .premium-blog-cats-container ul.post-categories {
3461
- margin: 0;
3462
- padding: 0;
3463
- list-style: none;
3464
- -js-display: flex;
3465
- display: -webkit-box;
3466
- display: -webkit-flex;
3467
- display: -moz-box;
3468
- display: -ms-flexbox;
3469
- display: flex; }
3470
- .premium-blog-post-container .premium-blog-cats-container a {
3471
- display: block;
3472
- font-size: 12px;
3473
- color: #fff;
3474
- background-color: #777;
3475
- margin: 0 3px 10px 0;
3476
- padding: 5px;
3477
- -webkit-transition: all 0.3s ease-in-out;
3478
- transition: all 0.3s ease-in-out; }
3479
-
3480
- /*
3481
- * Diagonal Effect
3482
- */
3483
- .premium-blog-diagonal-container {
3484
- position: absolute;
3485
- top: 0;
3486
- left: 0;
3487
- width: 100%;
3488
- height: 100%; }
3489
-
3490
- .premium-blog-diagonal-effect:before {
3491
- position: absolute;
3492
- top: 0px;
3493
- left: 0px;
3494
- width: 100%;
3495
- height: 100%;
3496
- content: " ";
3497
- z-index: 1;
3498
- background: rgba(255, 255, 255, 0.2);
3499
- -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
3500
- transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
3501
- -webkit-transition: all 0.3s linear 0s;
3502
- transition: all 0.3s linear 0s; }
3503
-
3504
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-diagonal-effect:before {
3505
- -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
3506
- transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0); }
3507
-
3508
- /*
3509
- * Framed Effect
3510
- */
3511
- .premium-blog-framed-effect {
3512
- position: absolute;
3513
- width: -webkit-calc(100% - 30px);
3514
- width: calc(100% - 30px);
3515
- height: -webkit-calc(100% - 30px);
3516
- height: calc(100% - 30px);
3517
- top: 15px;
3518
- left: 15px;
3519
- opacity: 0;
3520
- -webkit-transform: scale(0.3);
3521
- -ms-transform: scale(0.3);
3522
- transform: scale(0.3);
3523
- -webkit-transition: all 0.3s linear 0s;
3524
- transition: all 0.3s linear 0s; }
3525
-
3526
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-framed-effect {
3527
- opacity: 0.99;
3528
- -webkit-transform: scale(1);
3529
- -ms-transform: scale(1);
3530
- transform: scale(1); }
3531
-
3532
- /*
3533
- * Bordered Effect
3534
- */
3535
- .premium-blog-bordered-effect {
3536
- position: absolute;
3537
- top: 0;
3538
- left: 0;
3539
- width: 100%;
3540
- height: 100%;
3541
- opacity: 0;
3542
- padding: 15px;
3543
- -webkit-transition: all 0.3s linear 0s;
3544
- transition: all 0.3s linear 0s; }
3545
- .premium-blog-bordered-effect .premium-blog-post-link:before, .premium-blog-bordered-effect .premium-blog-post-link:after {
3546
- content: "";
3547
- display: block;
3548
- position: absolute;
3549
- top: 0;
3550
- left: 0;
3551
- width: 100%;
3552
- height: 100%;
3553
- -webkit-transition: all 0.5s linear 0s;
3554
- transition: all 0.5s linear 0s;
3555
- -webkit-transition-delay: 0s;
3556
- transition-delay: 0s;
3557
- border-color: rgba(255, 255, 255, 0.45); }
3558
- .premium-blog-bordered-effect .premium-blog-post-link:before {
3559
- border-right: 2px solid;
3560
- border-left: 2px solid;
3561
- -webkit-transform: scale(1, 0);
3562
- -ms-transform: scale(1, 0);
3563
- transform: scale(1, 0);
3564
- -webkit-transform-origin: 100% 0;
3565
- -ms-transform-origin: 100% 0;
3566
- transform-origin: 100% 0; }
3567
- .premium-blog-bordered-effect .premium-blog-post-link:after {
3568
- border-top: 2px solid;
3569
- border-bottom: 2px solid;
3570
- -webkit-transform: scale(0, 1);
3571
- -ms-transform: scale(0, 1);
3572
- transform: scale(0, 1);
3573
- -webkit-transform-origin: 0 0;
3574
- -ms-transform-origin: 0 0;
3575
- transform-origin: 0 0; }
3576
-
3577
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect {
3578
- opacity: 0.99; }
3579
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect .premium-blog-post-link:before, .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect .premium-blog-post-link:after {
3580
- -webkit-transition-delay: 0.15s;
3581
- transition-delay: 0.15s;
3582
- opacity: 1;
3583
- -webkit-transform: scale(1);
3584
- -ms-transform: scale(1);
3585
- transform: scale(1); }
3586
-
3587
- /*
3588
- * Squares Effect
3589
- */
3590
- .premium-blog-squares-effect,
3591
- .premium-blog-squares-square-container {
3592
- position: absolute;
3593
- top: 0;
3594
- left: 0;
3595
- width: 100%;
3596
- height: 100%; }
3597
-
3598
- .premium-blog-squares-effect:before, .premium-blog-squares-effect:after {
3599
- position: absolute;
3600
- content: "";
3601
- top: 0;
3602
- left: 0;
3603
- width: 50%;
3604
- height: 50%;
3605
- -webkit-transform: translate(-100%, -100%);
3606
- -ms-transform: translate(-100%, -100%);
3607
- transform: translate(-100%, -100%);
3608
- opacity: 0.7;
3609
- -webkit-transition: all 0.3s linear 0s;
3610
- transition: all 0.3s linear 0s; }
3611
-
3612
- .premium-blog-squares-square-container:before, .premium-blog-squares-square-container:after {
3613
- position: absolute;
3614
- content: "";
3615
- top: 0;
3616
- left: 0;
3617
- width: 50%;
3618
- height: 50%;
3619
- -webkit-transform: translate(-100%, -100%);
3620
- -ms-transform: translate(-100%, -100%);
3621
- transform: translate(-100%, -100%);
3622
- opacity: 0.7;
3623
- -webkit-transition: all 0.3s linear 0s;
3624
- transition: all 0.3s linear 0s; }
3625
-
3626
- .premium-blog-squares-square-container:before, .premium-blog-squares-square-container:after {
3627
- opacity: 0.8; }
3628
-
3629
- .premium-blog-squares-effect:after {
3630
- -webkit-transform: translate(200%, 200%);
3631
- -ms-transform: translate(200%, 200%);
3632
- transform: translate(200%, 200%); }
3633
-
3634
- .premium-blog-squares-square-container:before {
3635
- -webkit-transform: translate(-100%, 200%);
3636
- -ms-transform: translate(-100%, 200%);
3637
- transform: translate(-100%, 200%); }
3638
-
3639
- .premium-blog-squares-square-container:after {
3640
- -webkit-transform: translate(200%, -100%);
3641
- -ms-transform: translate(200%, -100%);
3642
- transform: translate(200%, -100%); }
3643
-
3644
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:before {
3645
- -webkit-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
3646
- -ms-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
3647
- transform: translate(0, 0%) scaleY(1.003) scaleX(1.003); }
3648
-
3649
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:after {
3650
- -webkit-transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003);
3651
- -ms-transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003);
3652
- transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003); }
3653
-
3654
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:before {
3655
- -webkit-transform: translate(0, 100%);
3656
- -ms-transform: translate(0, 100%);
3657
- transform: translate(0, 100%); }
3658
-
3659
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:after {
3660
- -webkit-transform: translate(100%, 0%);
3661
- -ms-transform: translate(100%, 0%);
3662
- transform: translate(100%, 0%); }
3663
-
3664
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay {
3665
- opacity: 1; }
3666
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay a {
3667
- opacity: 1;
3668
- -webkit-transform: scale(1);
3669
- -ms-transform: scale(1);
3670
- transform: scale(1); }
3671
-
3672
- .premium-blog-clear-fix {
3673
- clear: both; }
3674
-
3675
- .premium-blog-masked .premium-blog-thumbnail-container {
3676
- position: relative;
3677
- overflow: visible; }
3678
- .premium-blog-masked .premium-blog-thumbnail-container svg {
3679
- position: absolute;
3680
- height: 100px;
3681
- width: 100%;
3682
- bottom: -5px;
3683
- left: 0;
3684
- fill: #f5f5f5;
3685
- z-index: 99; }
3686
- .premium-blog-masked .premium-blog-thumbnail-container svg.premium-blog-shape-divider-svg {
3687
- -webkit-transform: rotate(180deg);
3688
- -ms-transform: rotate(180deg);
3689
- transform: rotate(180deg); }
3690
-
3691
- .premium-blog-masked .premium-blog-author-thumbnail,
3692
- .premium-blog-masked .premium-blog-skin-banner .premium-blog-content-wrapper {
3693
- z-index: 999 !important; }
3694
-
3695
- .premium-blog-format-link {
3696
- padding: 5px;
3697
- line-height: 0; }
3698
-
3699
- .premium-blog-entry-meta {
3700
- line-height: 1.3em;
3701
- font-size: 12px;
3702
- margin-bottom: 13px;
3703
- color: #adadad; }
3704
- .premium-blog-entry-meta i {
3705
- margin-right: 3px;
3706
- -webkit-transition: all 0.3s ease-in-out;
3707
- transition: all 0.3s ease-in-out; }
3708
-
3709
- .premium-blog-meta-data {
3710
- display: inline-block; }
3711
- .premium-blog-meta-data .premium-blog-meta-separator {
3712
- margin: 0 5px; }
3713
- .premium-blog-meta-data a,
3714
- .premium-blog-meta-data span {
3715
- color: inherit;
3716
- -webkit-transition: all 0.3s ease-in-out;
3717
- transition: all 0.3s ease-in-out; }
3718
-
3719
- .premium-blog-author-thumbnail {
3720
- position: relative;
3721
- padding: 0 30px;
3722
- width: 100%;
3723
- top: -10px;
3724
- height: 0;
3725
- pointer-events: none; }
3726
- .premium-blog-author-thumbnail img {
3727
- -webkit-border-radius: 50%;
3728
- border-radius: 50%;
3729
- width: 60px;
3730
- pointer-events: all;
3731
- -webkit-transform: translateY(-50%);
3732
- -ms-transform: translateY(-50%);
3733
- transform: translateY(-50%); }
3734
-
3735
- .premium-blog-entry-title a,
3736
- .premium-blog-post-tags-container a,
3737
- .premium-blog-post-content .premium-blog-excerpt-link {
3738
- -webkit-transition: all 0.3s ease-in-out;
3739
- transition: all 0.3s ease-in-out; }
3740
-
3741
- .premium-blog-excerpt-link-wrap a.premium-blog-excerpt-link {
3742
- background-color: transparent;
3743
- color: #54595f;
3744
- padding: 0; }
3745
-
3746
- .premium-blog-cta-full-yes .premium-blog-excerpt-link {
3747
- width: 100%; }
3748
-
3749
- .premium-blog-post-tags-container {
3750
- margin-top: 8px;
3751
- -js-display: flex;
3752
- display: -webkit-box;
3753
- display: -webkit-flex;
3754
- display: -moz-box;
3755
- display: -ms-flexbox;
3756
- display: flex;
3757
- -webkit-box-align: center;
3758
- -webkit-align-items: center;
3759
- -moz-box-align: center;
3760
- -ms-flex-align: center;
3761
- align-items: center;
3762
- -webkit-flex-wrap: wrap;
3763
- -ms-flex-wrap: wrap;
3764
- flex-wrap: wrap; }
3765
- .premium-blog-post-tags-container a {
3766
- color: inherit;
3767
- margin-left: 5px; }
3768
-
3769
- /*Tags align*/
3770
- .premium-blog-align-left .post-categories,
3771
- .premium-blog-align-left .premium-blog-inner-container,
3772
- .premium-blog-align-left .premium-blog-post-tags-container {
3773
- -webkit-box-pack: start;
3774
- -webkit-justify-content: flex-start;
3775
- -moz-box-pack: start;
3776
- -ms-flex-pack: start;
3777
- justify-content: flex-start; }
3778
-
3779
- .premium-blog-align-center .post-categories,
3780
- .premium-blog-align-center .premium-blog-inner-container,
3781
- .premium-blog-align-center .premium-blog-post-tags-container {
3782
- -webkit-box-pack: center;
3783
- -webkit-justify-content: center;
3784
- -moz-box-pack: center;
3785
- -ms-flex-pack: center;
3786
- justify-content: center; }
3787
-
3788
- .premium-blog-align-right .post-categories,
3789
- .premium-blog-align-right .premium-blog-inner-container,
3790
- .premium-blog-align-right .premium-blog-post-tags-container {
3791
- -webkit-box-pack: end;
3792
- -webkit-justify-content: flex-end;
3793
- -moz-box-pack: end;
3794
- -ms-flex-pack: end;
3795
- justify-content: flex-end; }
3796
-
3797
- /* Pagination */
3798
- .premium-blog-pagination-container {
3799
- text-align: right; }
3800
- .premium-blog-pagination-container span {
3801
- cursor: default; }
3802
- .premium-blog-pagination-container .page-numbers {
3803
- display: inline-block;
3804
- color: #000;
3805
- line-height: 1;
3806
- font-size: 1em;
3807
- font-weight: 400;
3808
- text-decoration: none;
3809
- padding: 0.75em;
3810
- margin: 0 0.4em 0.4em 0;
3811
- -webkit-transition: all 0.3s ease-in-out;
3812
- transition: all 0.3s ease-in-out; }
3813
-
3814
- .premium-blog-wrap .premium-loading-feed {
3815
- display: block;
3816
- position: absolute;
3817
- width: 100%;
3818
- height: 100%;
3819
- top: 0px;
3820
- left: 0px;
3821
- bottom: 0px;
3822
- right: 0px;
3823
- background: rgba(255, 255, 255, 0.2);
3824
- -js-display: flex;
3825
- display: -webkit-box;
3826
- display: -webkit-flex;
3827
- display: -moz-box;
3828
- display: -ms-flexbox;
3829
- display: flex;
3830
- -webkit-box-align: center;
3831
- -webkit-align-items: center;
3832
- -moz-box-align: center;
3833
- -ms-flex-align: center;
3834
- align-items: center;
3835
- z-index: 99; }
3836
-
3837
- .premium-blog-wrap {
3838
- -js-display: flex;
3839
- display: -webkit-box;
3840
- display: -webkit-flex;
3841
- display: -moz-box;
3842
- display: -ms-flexbox;
3843
- display: flex;
3844
- -webkit-flex-wrap: wrap;
3845
- -ms-flex-wrap: wrap;
3846
- flex-wrap: wrap; }
3847
- .premium-blog-wrap ul.slick-dots {
3848
- width: 100%; }
3849
-
3850
- /*
3851
- * List Layout
3852
- */
3853
- .premium-blog-list .premium-blog-post-outer-container {
3854
- width: 100%; }
3855
-
3856
- /**
3857
- * Even Layout
3858
- */
3859
- .premium-blog-even .premium-blog-post-container {
3860
- height: 100%; }
3861
-
3862
- .premium-blog-even .slick-track {
3863
- -js-display: flex;
3864
- display: -webkit-box;
3865
- display: -webkit-flex;
3866
- display: -moz-box;
3867
- display: -ms-flexbox;
3868
- display: flex; }
3869
-
3870
- .premium-blog-even .slick-slide {
3871
- height: inherit !important; }
3872
-
3873
- /**
3874
- * Responsive Style
3875
- */
3876
- @media (max-width: 768px) {
3877
- .premium-blog-content-wrapper {
3878
- top: 0;
3879
- margin: 0;
3880
- padding: 15px; }
3881
- .premium-blog-skin-side {
3882
- -webkit-box-orient: vertical;
3883
- -webkit-box-direction: normal;
3884
- -webkit-flex-direction: column;
3885
- -moz-box-orient: vertical;
3886
- -moz-box-direction: normal;
3887
- -ms-flex-direction: column;
3888
- flex-direction: column; } }
3889
-
3890
- /************ Premium Team Members ************/
3891
- /**********************************************/
3892
- .premium-person-container {
3893
- position: relative; }
3894
-
3895
- .premium-person-image-container {
3896
- position: relative;
3897
- text-align: center;
3898
- overflow: hidden; }
3899
- .premium-person-image-container .premium-person-image-wrap {
3900
- overflow: hidden; }
3901
-
3902
- .premium-person-zoomout-effect .premium-person-image-container img,
3903
- .premium-person-scale-effect .premium-person-image-container img {
3904
- -webkit-transform: scale(1.2);
3905
- -ms-transform: scale(1.2);
3906
- transform: scale(1.2); }
3907
-
3908
- .premium-person-sepia-effect .premium-person-image-container img {
3909
- -webkit-filter: sepia(30%);
3910
- filter: sepia(30%); }
3911
-
3912
- .premium-person-bright-effect .premium-person-image-container img {
3913
- -webkit-filter: brightness(1);
3914
- filter: brightness(1); }
3915
-
3916
- .premium-person-trans-effect .premium-person-image-container img {
3917
- -webkit-transform: translateX(-15px) scale(1.1);
3918
- -ms-transform: translateX(-15px) scale(1.1);
3919
- transform: translateX(-15px) scale(1.1); }
3920
-
3921
- .premium-person-zoomin-effect:hover .premium-person-image-container img {
3922
- -webkit-transform: scale(1.2);
3923
- -ms-transform: scale(1.2);
3924
- transform: scale(1.2); }
3925
-
3926
- .premium-person-zoomout-effect:hover .premium-person-image-container img {
3927
- -webkit-transform: scale(1.1);
3928
- -ms-transform: scale(1.1);
3929
- transform: scale(1.1); }
3930
-
3931
- .premium-person-scale-effect:hover .premium-person-image-container img {
3932
- -webkit-transform: scale(1.3) rotate(5deg);
3933
- -ms-transform: scale(1.3) rotate(5deg);
3934
- transform: scale(1.3) rotate(5deg); }
3935
-
3936
- .premium-person-grayscale-effect:hover .premium-person-image-container img {
3937
- -webkit-filter: grayscale(100%);
3938
- filter: grayscale(100%); }
3939
-
3940
- .premium-person-blur-effect:hover .premium-person-image-container img {
3941
- -webkit-filter: blur(3px);
3942
- filter: blur(3px); }
3943
-
3944
- .premium-person-sepia-effect:hover .premium-person-image-container img {
3945
- -webkit-filter: sepia(0%);
3946
- filter: sepia(0%); }
3947
-
3948
- .premium-person-bright-effect:hover .premium-person-image-container img {
3949
- -webkit-filter: brightness(1.2);
3950
- filter: brightness(1.2); }
3951
-
3952
- .premium-person-trans-effect:hover .premium-person-image-container img {
3953
- -webkit-transform: translateX(0px) scale(1.1);
3954
- -ms-transform: translateX(0px) scale(1.1);
3955
- transform: translateX(0px) scale(1.1); }
3956
-
3957
- .premium-person-container .premium-person-image-container img {
3958
- width: 100%;
3959
- height: 100%;
3960
- -o-object-fit: cover;
3961
- object-fit: cover;
3962
- -webkit-transition: all 0.5s ease-in-out;
3963
- transition: all 0.5s ease-in-out; }
3964
-
3965
- .premium-person-style2 .premium-person-social {
3966
- position: absolute;
3967
- top: 0;
3968
- left: 0;
3969
- width: 100%;
3970
- height: 100%;
3971
- z-index: 2;
3972
- -js-display: flex;
3973
- display: -webkit-box;
3974
- display: -webkit-flex;
3975
- display: -moz-box;
3976
- display: -ms-flexbox;
3977
- display: flex;
3978
- -webkit-box-pack: center;
3979
- -webkit-justify-content: center;
3980
- -moz-box-pack: center;
3981
- -ms-flex-pack: center;
3982
- justify-content: center;
3983
- -webkit-box-align: center;
3984
- -webkit-align-items: center;
3985
- -moz-box-align: center;
3986
- -ms-flex-align: center;
3987
- align-items: center;
3988
- -webkit-box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
3989
- box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
3990
- -webkit-transition: all 0.5s linear 0s;
3991
- transition: all 0.5s linear 0s;
3992
- opacity: 0; }
3993
-
3994
- .premium-person-style2 .premium-person-image-container:hover .premium-person-social {
3995
- opacity: 1; }
3996
-
3997
- .premium-person-list-item a {
3998
- display: inline-block; }
3999
-
4000
- .premium-person-style2 .premium-person-list-item a {
4001
- opacity: 0;
4002
- -webkit-transform: scale(0);
4003
- -ms-transform: scale(0);
4004
- transform: scale(0);
4005
- -webkit-transition: all 0.5s ease-in-out 0s;
4006
- transition: all 0.5s ease-in-out 0s; }
4007
-
4008
- .premium-person-style2 .premium-person-image-container:hover .premium-person-list-item a {
4009
- opacity: 1;
4010
- -webkit-transform: scale(1);
4011
- -ms-transform: scale(1);
4012
- transform: scale(1); }
4013
-
4014
- .premium-person-info-container {
4015
- padding: 30px 15px; }
4016
-
4017
- .premium-person-name {
4018
- margin: 0 0 5px;
4019
- font-weight: 700; }
4020
-
4021
- .premium-person-title {
4022
- margin: 0 0 20px;
4023
- padding: 0; }
4024
-
4025
- .premium-person-content {
4026
- margin: 0 0 30px; }
4027
-
4028
- /*Override Theme List Margin*/
4029
- ul.premium-person-social-list {
4030
- margin: 0px !important;
4031
- padding: 0; }
4032
-
4033
- .premium-person-social-list .premium-person-list-item {
4034
- display: inline;
4035
- list-style: none; }
4036
-
4037
- .premium-person-social-list li {
4038
- position: relative;
4039
- bottom: 0px;
4040
- -webkit-transition: all 0.2s ease-in-out;
4041
- transition: all 0.2s ease-in-out; }
4042
- .premium-person-social-list li i {
4043
- position: relative;
4044
- bottom: 0px;
4045
- -webkit-transition: all 0.2s ease-in-out;
4046
- transition: all 0.2s ease-in-out; }
4047
-
4048
- .premium-person-defaults-yes li.premium-person-facebook:hover a {
4049
- background-color: #3b5998 !important; }
4050
-
4051
- .premium-person-defaults-yes li.premium-person-twitter:hover a {
4052
- background-color: #55acee !important; }
4053
-
4054
- .premium-person-defaults-yes li.premium-person-linkedin:hover a {
4055
- background-color: #0077b5 !important; }
4056
-
4057
- .premium-person-defaults-yes li.premium-person-google:hover a {
4058
- background-color: #dc4e41 !important; }
4059
-
4060
- .premium-person-defaults-yes li.premium-person-youtube:hover a {
4061
- background-color: #b31217 !important; }
4062
-
4063
- .premium-person-defaults-yes li.premium-person-instagram:hover a {
4064
- background-color: #e4405f !important; }
4065
-
4066
- .premium-person-defaults-yes li.premium-person-skype:hover a {
4067
- background-color: #00aff0 !important; }
4068
-
4069
- .premium-person-defaults-yes li.premium-person-pinterest:hover a {
4070
- background-color: #bd081c !important; }
4071
-
4072
- .premium-person-defaults-yes li.premium-person-dribbble:hover a {
4073
- background-color: #ea4c89 !important; }
4074
-
4075
- .premium-person-defaults-yes li.premium-person-mail:hover a {
4076
- background-color: #b23121 !important; }
4077
-
4078
- .premium-person-defaults-yes li.premium-person-behance:hover a {
4079
- background-color: #1769ff !important; }
4080
-
4081
- .premium-person-defaults-yes li.premium-person-whatsapp:hover a {
4082
- background-color: #25d366 !important; }
4083
-
4084
- .premium-person-defaults-yes li.premium-person-telegram:hover a {
4085
- background-color: #0088cc !important; }
4086
-
4087
- .premium-person-defaults-yes li.premium-person-site:hover a {
4088
- background-color: #0055a5 !important; }
4089
-
4090
- .premium-person-social-list li:hover a {
4091
- -webkit-box-shadow: none;
4092
- box-shadow: none; }
4093
-
4094
- .premium-person-social-list li a:focus {
4095
- -webkit-box-shadow: none;
4096
- box-shadow: none;
4097
- outline: none; }
4098
-
4099
- .premium-person-social-list li i {
4100
- font-size: 18px; }
4101
-
4102
- .elementor-widget-premium-addon-person .elementor-widget-container {
4103
- -js-display: flex;
4104
- display: -webkit-box;
4105
- display: -webkit-flex;
4106
- display: -moz-box;
4107
- display: -ms-flexbox;
4108
- display: flex;
4109
- -webkit-box-pack: center;
4110
- -webkit-justify-content: center;
4111
- -moz-box-pack: center;
4112
- -ms-flex-pack: center;
4113
- justify-content: center; }
4114
-
4115
- .premium-persons-container.multiple-persons {
4116
- -js-display: flex;
4117
- display: -webkit-box;
4118
- display: -webkit-flex;
4119
- display: -moz-box;
4120
- display: -ms-flexbox;
4121
- display: flex;
4122
- -webkit-flex-wrap: wrap;
4123
- -ms-flex-wrap: wrap;
4124
- flex-wrap: wrap;
4125
- width: 100%; }
4126
-
4127
- .premium-person-style1 .premium-person-container {
4128
- overflow: hidden; }
4129
- .premium-person-style1 .premium-person-container .premium-person-info {
4130
- position: absolute;
4131
- top: auto;
4132
- right: 0;
4133
- left: 0;
4134
- -webkit-transition: all 500ms ease 0s;
4135
- transition: all 500ms ease 0s;
4136
- -webkit-transform: translate3d(0, 100%, 0);
4137
- transform: translate3d(0, 100%, 0); }
4138
- .premium-person-style1 .premium-person-container:hover .premium-person-info {
4139
- -webkit-transform: translate3d(0, 0, 0);
4140
- transform: translate3d(0, 0, 0);
4141
- bottom: -1px !important; }
4142
-
4143
- .premium-person-style1 .premium-person-social-list li:hover {
4144
- bottom: 5px; }
4145
-
4146
- .premium-person-style1.multiple-persons:not([data-persons-equal="yes"]) {
4147
- -webkit-box-align: start;
4148
- -webkit-align-items: flex-start;
4149
- -moz-box-align: start;
4150
- -ms-flex-align: start;
4151
- align-items: flex-start; }
4152
-
4153
- .premium-person-style1 .slick-track {
4154
- -js-display: flex;
4155
- display: -webkit-box;
4156
- display: -webkit-flex;
4157
- display: -moz-box;
4158
- display: -ms-flexbox;
4159
- display: flex; }
4160
-
4161
- .premium-person-style1 .slick-slide {
4162
- height: inherit !important; }
4163
-
4164
- .premium-person-style1.multiple-persons[data-persons-equal="yes"] .premium-person-image-container,
4165
- .premium-person-style1.multiple-persons[data-persons-equal="yes"] .premium-person-image-wrap {
4166
- height: 100%; }
4167
-
4168
- .premium-person-style3 .premium-person-info-container {
4169
- position: absolute;
4170
- top: 0;
4171
- left: 0;
4172
- width: 100%;
4173
- height: 100%;
4174
- -js-display: flex;
4175
- display: -webkit-box;
4176
- display: -webkit-flex;
4177
- display: -moz-box;
4178
- display: -ms-flexbox;
4179
- display: flex;
4180
- -webkit-box-orient: vertical;
4181
- -webkit-box-direction: normal;
4182
- -webkit-flex-direction: column;
4183
- -moz-box-orient: vertical;
4184
- -moz-box-direction: normal;
4185
- -ms-flex-direction: column;
4186
- flex-direction: column;
4187
- -webkit-box-pack: justify;
4188
- -webkit-justify-content: space-between;
4189
- -moz-box-pack: justify;
4190
- -ms-flex-pack: justify;
4191
- justify-content: space-between; }
4192
-
4193
- .premium-person-style3 .premium-person-title-desc-wrap {
4194
- -js-display: flex;
4195
- display: -webkit-box;
4196
- display: -webkit-flex;
4197
- display: -moz-box;
4198
- display: -ms-flexbox;
4199
- display: flex;
4200
- -webkit-box-orient: horizontal;
4201
- -webkit-box-direction: reverse;
4202
- -webkit-flex-direction: row-reverse;
4203
- -moz-box-orient: horizontal;
4204
- -moz-box-direction: reverse;
4205
- -ms-flex-direction: row-reverse;
4206
- flex-direction: row-reverse;
4207
- -webkit-box-pack: justify;
4208
- -webkit-justify-content: space-between;
4209
- -moz-box-pack: justify;
4210
- -ms-flex-pack: justify;
4211
- justify-content: space-between;
4212
- -webkit-box-align: start;
4213
- -webkit-align-items: flex-start;
4214
- -moz-box-align: start;
4215
- -ms-flex-align: start;
4216
- align-items: flex-start; }
4217
-
4218
- .premium-person-style3 .premium-person-name-icons-wrap {
4219
- -js-display: flex;
4220
- display: -webkit-box;
4221
- display: -webkit-flex;
4222
- display: -moz-box;
4223
- display: -ms-flexbox;
4224
- display: flex;
4225
- -webkit-box-pack: justify;
4226
- -webkit-justify-content: space-between;
4227
- -moz-box-pack: justify;
4228
- -ms-flex-pack: justify;
4229
- justify-content: space-between;
4230
- -webkit-box-align: end;
4231
- -webkit-align-items: flex-end;
4232
- -moz-box-align: end;
4233
- -ms-flex-align: end;
4234
- align-items: flex-end; }
4235
-
4236
- .premium-person-style3 .premium-person-title {
4237
- opacity: 0;
4238
- -webkit-transition: all 0.3s ease;
4239
- transition: all 0.3s ease;
4240
- width: 0; }
4241
- .premium-person-style3 .premium-person-title span {
4242
- display: inline-block; }
4243
-
4244
- .premium-person-style3 .premium-person-name {
4245
- padding-left: 10px; }
4246
-
4247
- .premium-person-style3 .premium-person-social-list {
4248
- -js-display: flex;
4249
- display: -webkit-box;
4250
- display: -webkit-flex;
4251
- display: -moz-box;
4252
- display: -ms-flexbox;
4253
- display: flex;
4254
- -webkit-box-orient: vertical;
4255
- -webkit-box-direction: normal;
4256
- -webkit-flex-direction: column;
4257
- -moz-box-orient: vertical;
4258
- -moz-box-direction: normal;
4259
- -ms-flex-direction: column;
4260
- flex-direction: column;
4261
- -webkit-transform: translateY(20px);
4262
- -ms-transform: translateY(20px);
4263
- transform: translateY(20px);
4264
- opacity: 0;
4265
- -webkit-transition: all 0.3s ease;
4266
- transition: all 0.3s ease; }
4267
-
4268
- .premium-person-style3 .premium-person-list-item {
4269
- line-height: 0; }
4270
- .premium-person-style3 .premium-person-list-item a {
4271
- padding: 5px 10px 0 0;
4272
- margin: 5px 0; }
4273
-
4274
- .premium-person-style3 .premium-person-container:hover .premium-person-title {
4275
- opacity: 1; }
4276
-
4277
- .premium-person-style3 .premium-person-container:hover .premium-person-social-list {
4278
- opacity: 1;
4279
- -webkit-transform: translateY(0);
4280
- -ms-transform: translateY(0);
4281
- transform: translateY(0); }
4282
-
4283
- .premium-persons-title-cw .premium-person-title {
4284
- -webkit-transform: translateX(15px) rotate(90deg);
4285
- -ms-transform: translateX(15px) rotate(90deg);
4286
- transform: translateX(15px) rotate(90deg);
4287
- -webkit-transform-origin: top;
4288
- -ms-transform-origin: top;
4289
- transform-origin: top; }
4290
-
4291
- .premium-persons-title-cw .premium-person-container:hover .premium-person-title {
4292
- -webkit-transform: translateX(0) rotate(90deg);
4293
- -ms-transform: translateX(0) rotate(90deg);
4294
- transform: translateX(0) rotate(90deg); }
4295
-
4296
- .premium-persons-title-ccw .premium-person-title {
4297
- width: auto;
4298
- margin-right: 20px;
4299
- -webkit-transform: translateX(15px) rotate(-90deg);
4300
- -ms-transform: translateX(15px) rotate(-90deg);
4301
- transform: translateX(15px) rotate(-90deg);
4302
- -webkit-transform-origin: center right;
4303
- -ms-transform-origin: center right;
4304
- transform-origin: center right; }
4305
-
4306
- .premium-persons-title-ccw .premium-person-container:hover .premium-person-title {
4307
- -webkit-transform: translateX(0) rotate(-90deg);
4308
- -ms-transform: translateX(0) rotate(-90deg);
4309
- transform: translateX(0) rotate(-90deg); }
4310
-
4311
- /**************** Premium Fancy Text *******************/
4312
- /*******************************************************/
4313
- .premium-suffix-text,
4314
- .premium-fancy-text,
4315
- .premium-prefix-text {
4316
- font-size: 40px; }
4317
-
4318
- .premium-fancy-text-wrapper:not(.typing) .premium-fancy-text,
4319
- .premium-fancy-item-hidden {
4320
- opacity: 0; }
4321
-
4322
- .premium-fancy-text-wrapper .premium-fancy-list-items {
4323
- list-style: none; }
4324
-
4325
- .premium-fancy-text-wrapper .premium-fancy-text-span-align {
4326
- vertical-align: top; }
4327
-
4328
- .premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-text-items-wrapper {
4329
- margin: 0;
4330
- padding: 0;
4331
- border: none;
4332
- position: relative; }
4333
-
4334
- .premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-list-items {
4335
- position: absolute;
4336
- top: 0;
4337
- left: 0;
4338
- display: inline-block; }
4339
-
4340
- .premium-fancy-text-wrapper.zoomout .premium-fancy-item-hidden {
4341
- -webkit-animation: pa-zoom-out 0.8s;
4342
- animation: pa-zoom-out 0.8s; }
4343
-
4344
- .premium-fancy-text-wrapper.zoomout .premium-fancy-item-visible {
4345
- position: relative !important;
4346
- -webkit-animation: pa-zoom-in 0.8s;
4347
- animation: pa-zoom-in 0.8s; }
4348
-
4349
- .premium-fancy-text-wrapper.zoomout .premium-fancy-text-items-wrapper {
4350
- -webkit-perspective: 300px;
4351
- perspective: 300px; }
4352
-
4353
- .premium-fancy-text-wrapper.rotate .premium-fancy-list-items {
4354
- -webkit-transform-origin: 50% 100%;
4355
- -ms-transform-origin: 50% 100%;
4356
- transform-origin: 50% 100%; }
4357
-
4358
- .premium-fancy-text-wrapper.rotate .premium-fancy-item-hidden {
4359
- -webkit-transform: rotateX(180deg);
4360
- transform: rotateX(180deg);
4361
- -webkit-animation: pa-rotate-out 1.2s;
4362
- animation: pa-rotate-out 1.2s; }
4363
-
4364
- .premium-fancy-text-wrapper.rotate .premium-fancy-item-visible {
4365
- position: relative !important;
4366
- -webkit-transform: rotateX(0deg);
4367
- transform: rotateX(0deg);
4368
- -webkit-animation: pa-rotate-in 1.2s;
4369
- animation: pa-rotate-in 1.2s; }
4370
-
4371
- .premium-fancy-text-wrapper.custom .premium-fancy-item-visible {
4372
- position: relative !important; }
4373
-
4374
- .premium-fancy-text-wrapper.auto-fade .premium-fancy-text {
4375
- display: inline-block;
4376
- width: 200px;
4377
- font-weight: 400; }
4378
-
4379
- .premium-fancy-text-wrapper.auto-fade .premium-fancy-svg-text {
4380
- position: relative;
4381
- vertical-align: sub; }
4382
-
4383
- .premium-fancy-text-wrapper.auto-fade g > text {
4384
- text-anchor: start;
4385
- shape-rendering: crispEdges;
4386
- opacity: 0;
4387
- font-size: 300px;
4388
- -webkit-animation-name: pa-auto-fade;
4389
- animation-name: pa-auto-fade;
4390
- -moz-animation-name: pa-auto-fade;
4391
- -webkit-animation-duration: 9s;
4392
- animation-duration: 9s;
4393
- -webkit-animation-timing-function: linear;
4394
- animation-timing-function: linear;
4395
- -webkit-animation-iteration-count: infinite;
4396
- animation-iteration-count: infinite; }
4397
-
4398
- .premium-fancy-text-wrapper.auto-fade g > text:nth-child(1) {
4399
- -webkit-animation-delay: 0s;
4400
- animation-delay: 0s; }
4401
-
4402
- .premium-fancy-text-wrapper.auto-fade g > text:nth-child(2) {
4403
- -webkit-animation-delay: 3s;
4404
- animation-delay: 3s; }
4405
-
4406
- .premium-fancy-text-wrapper.auto-fade g > text:nth-child(3) {
4407
- -webkit-animation-delay: 6s;
4408
- animation-delay: 6s; }
4409
-
4410
- .premium-fancy-text-wrapper.loading .premium-fancy-text {
4411
- position: relative; }
4412
- .premium-fancy-text-wrapper.loading .premium-fancy-text .premium-loading-bar {
4413
- position: absolute;
4414
- width: 100%;
4415
- height: 3px;
4416
- bottom: 0;
4417
- left: 0;
4418
- animation: pa-loading-bar 2.5s ease-out infinite;
4419
- -webkit-animation: pa-loading-bar 2.5s ease-out infinite; }
4420
-
4421
- .premium-fancy-text-wrapper.loading.pause .premium-fancy-text:hover .premium-loading-bar {
4422
- -webkit-animation-play-state: paused;
4423
- animation-play-state: paused; }
4424
-
4425
- @-webkit-keyframes pa-auto-fade {
4426
- 0% {
4427
- opacity: 0; }
4428
- 20% {
4429
- opacity: 1; }
4430
- 35% {
4431
- opacity: 0; }
4432
- 100% {
4433
- opacity: 0; } }
4434
-
4435
- @keyframes pa-auto-fade {
4436
- 0% {
4437
- opacity: 0; }
4438
- 20% {
4439
- opacity: 1; }
4440
- 35% {
4441
- opacity: 0; }
4442
- 100% {
4443
- opacity: 0; } }
4444
-
4445
- @-webkit-keyframes pa-loading-bar {
4446
- 0% {
4447
- width: 0; }
4448
- 100% {
4449
- width: 100; } }
4450
-
4451
- @keyframes pa-loading-bar {
4452
- 0% {
4453
- width: 0; }
4454
- 100% {
4455
- width: 100; } }
4456
-
4457
- @-webkit-keyframes pa-zoom-in {
4458
- 0% {
4459
- opacity: 0;
4460
- -webkit-transform: translateZ(100px);
4461
- transform: translateZ(100px); }
4462
- 100% {
4463
- opacity: 1;
4464
- -webkit-transform: translateZ(0);
4465
- transform: translateZ(0); } }
4466
-
4467
- @keyframes pa-zoom-in {
4468
- 0% {
4469
- opacity: 0;
4470
- -webkit-transform: translateZ(100px);
4471
- transform: translateZ(100px); }
4472
- 100% {
4473
- opacity: 1;
4474
- -webkit-transform: translateZ(0);
4475
- transform: translateZ(0); } }
4476
-
4477
- @-webkit-keyframes pa-zoom-out {
4478
- 0% {
4479
- opacity: 1;
4480
- -webkit-transform: translateZ(0);
4481
- transform: translateZ(0); }
4482
- 100% {
4483
- opacity: 0;
4484
- -webkit-transform: translateZ(-100px);
4485
- transform: translateZ(-100px); } }
4486
-
4487
- @keyframes pa-zoom-out {
4488
- 0% {
4489
- opacity: 1;
4490
- -webkit-transform: translateZ(0);
4491
- transform: translateZ(0); }
4492
- 100% {
4493
- opacity: 0;
4494
- -webkit-transform: translateZ(-100px);
4495
- transform: translateZ(-100px); } }
4496
-
4497
- @-webkit-keyframes pa-rotate-in {
4498
- 0% {
4499
- opacity: 0;
4500
- -webkit-transform: rotateX(180deg);
4501
- transform: rotateX(180deg); }
4502
- 35% {
4503
- opacity: 0;
4504
- -webkit-transform: rotateX(120deg);
4505
- transform: rotateX(120deg); }
4506
- 65% {
4507
- opacity: 0; }
4508
- 100% {
4509
- opacity: 1;
4510
- -webkit-transform: rotateX(360deg);
4511
- transform: rotateX(360deg); } }
4512
-
4513
- @keyframes pa-rotate-in {
4514
- 0% {
4515
- opacity: 0;
4516
- -webkit-transform: rotateX(180deg);
4517
- transform: rotateX(180deg); }
4518
- 35% {
4519
- opacity: 0;
4520
- -webkit-transform: rotateX(120deg);
4521
- transform: rotateX(120deg); }
4522
- 65% {
4523
- opacity: 0; }
4524
- 100% {
4525
- opacity: 1;
4526
- -webkit-transform: rotateX(360deg);
4527
- transform: rotateX(360deg); } }
4528
-
4529
- @-webkit-keyframes pa-rotate-out {
4530
- 0% {
4531
- opacity: 1;
4532
- -webkit-transform: rotateX(0deg);
4533
- transform: rotateX(0deg); }
4534
- 35% {
4535
- opacity: 1;
4536
- -webkit-transform: rotateX(-40deg);
4537
- transform: rotateX(-40deg); }
4538
- 65% {
4539
- opacity: 0; }
4540
- 100% {
4541
- opacity: 0;
4542
- -webkit-transform: rotateX(180deg);
4543
- transform: rotateX(180deg); } }
4544
-
4545
- @keyframes pa-rotate-out {
4546
- 0% {
4547
- opacity: 1;
4548
- -webkit-transform: rotateX(0deg);
4549
- transform: rotateX(0deg); }
4550
- 35% {
4551
- opacity: 1;
4552
- -webkit-transform: rotateX(-40deg);
4553
- transform: rotateX(-40deg); }
4554
- 65% {
4555
- opacity: 0; }
4556
- 100% {
4557
- opacity: 0;
4558
- -webkit-transform: rotateX(180deg);
4559
- transform: rotateX(180deg); } }
4560
-
4561
- /**************** Premium Pricing Table ****************/
4562
- /*******************************************************/
4563
- .premium-pricing-table-container {
4564
- position: relative;
4565
- overflow: hidden;
4566
- text-align: center;
4567
- -webkit-transition: all 0.3s ease-in-out;
4568
- transition: all 0.3s ease-in-out; }
4569
-
4570
- .premium-pricing-icon-container {
4571
- -js-display: flex;
4572
- display: -webkit-box;
4573
- display: -webkit-flex;
4574
- display: -moz-box;
4575
- display: -ms-flexbox;
4576
- display: flex;
4577
- -webkit-box-pack: center;
4578
- -webkit-justify-content: center;
4579
- -moz-box-pack: center;
4580
- -ms-flex-pack: center;
4581
- justify-content: center;
4582
- line-height: 0; }
4583
- .premium-pricing-icon-container .premium-pricing-icon {
4584
- display: inline-block; }
4585
- .premium-pricing-icon-container .premium-pricing-image {
4586
- overflow: hidden; }
4587
- .premium-pricing-icon-container .premium-pricing-image img {
4588
- width: 25px;
4589
- height: 25px;
4590
- -o-object-fit: cover;
4591
- object-fit: cover; }
4592
-
4593
- .premium-badge-left {
4594
- position: absolute;
4595
- top: 0; }
4596
-
4597
- .premium-badge-right {
4598
- position: absolute;
4599
- top: 0;
4600
- right: 0; }
4601
-
4602
- .premium-badge-left {
4603
- left: 0; }
4604
-
4605
- .premium-badge-triangle.premium-badge-left .corner {
4606
- width: 0;
4607
- height: 0;
4608
- border-top: 150px solid;
4609
- border-bottom: 150px solid transparent;
4610
- border-right: 150px solid transparent; }
4611
-
4612
- .premium-badge-triangle.premium-badge-right .corner {
4613
- width: 0;
4614
- height: 0;
4615
- border-bottom: 150px solid transparent;
4616
- border-right: 150px solid;
4617
- border-left: 150px solid transparent; }
4618
-
4619
- .premium-badge-triangle span {
4620
- position: absolute;
4621
- top: 35px;
4622
- width: 100px;
4623
- text-align: center;
4624
- -webkit-transform: rotate(-45deg);
4625
- -ms-transform: rotate(-45deg);
4626
- transform: rotate(-45deg);
4627
- display: block;
4628
- text-transform: uppercase; }
4629
-
4630
- .premium-badge-triangle.premium-badge-right span {
4631
- -webkit-transform: rotate(45deg);
4632
- -ms-transform: rotate(45deg);
4633
- transform: rotate(45deg);
4634
- right: 0; }
4635
-
4636
- .premium-badge-circle {
4637
- min-width: 4em;
4638
- min-height: 4em;
4639
- line-height: 4em;
4640
- text-align: center;
4641
- -webkit-border-radius: 100%;
4642
- border-radius: 100%;
4643
- position: absolute;
4644
- z-index: 1; }
4645
-
4646
- .premium-badge-stripe {
4647
- position: absolute;
4648
- -webkit-transform: rotate(90deg);
4649
- -ms-transform: rotate(90deg);
4650
- transform: rotate(90deg);
4651
- width: 15em;
4652
- overflow: hidden;
4653
- height: 15em; }
4654
- .premium-badge-stripe.premium-badge-left {
4655
- -webkit-transform: rotate(0);
4656
- -ms-transform: rotate(0);
4657
- transform: rotate(0); }
4658
- .premium-badge-stripe .corner {
4659
- text-align: center;
4660
- left: 0;
4661
- width: 150%;
4662
- -webkit-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
4663
- -ms-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
4664
- transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
4665
- margin-top: 35px;
4666
- font-size: 13px;
4667
- line-height: 2;
4668
- font-weight: 800;
4669
- text-transform: uppercase; }
4670
-
4671
- .premium-badge-flag .corner {
4672
- text-align: center;
4673
- -webkit-border-radius: 4px 4px 0 4px;
4674
- border-radius: 4px 4px 0 4px;
4675
- padding: 3px 15px;
4676
- position: absolute;
4677
- top: 10%;
4678
- right: -8px; }
4679
- .premium-badge-flag .corner::before, .premium-badge-flag .corner::after {
4680
- content: "";
4681
- display: block;
4682
- position: absolute;
4683
- width: 0;
4684
- height: 0;
4685
- top: 100%;
4686
- right: 0;
4687
- border-bottom: 8px solid transparent; }
4688
-
4689
- .elementor-widget-premium-addon-pricing-table .elementor-widget-container {
4690
- overflow: visible !important; }
4691
-
4692
- .premium-badge-flag .corner::after {
4693
- border-left: 8px solid rgba(0, 0, 0, 0.2); }
4694
-
4695
- .premium-pricing-price-currency {
4696
- position: relative; }
4697
-
4698
- .premium-pricing-button-container {
4699
- display: block; }
4700
-
4701
- .premium-pricing-list {
4702
- -js-display: flex;
4703
- display: -webkit-box;
4704
- display: -webkit-flex;
4705
- display: -moz-box;
4706
- display: -ms-flexbox;
4707
- display: flex;
4708
- -webkit-box-orient: vertical;
4709
- -webkit-box-direction: normal;
4710
- -webkit-flex-direction: column;
4711
- -moz-box-orient: vertical;
4712
- -moz-box-direction: normal;
4713
- -ms-flex-direction: column;
4714
- flex-direction: column;
4715
- list-style-type: none;
4716
- margin: 0; }
4717
- .premium-pricing-list .premium-pricing-list-item {
4718
- -js-display: flex;
4719
- display: -webkit-box;
4720
- display: -webkit-flex;
4721
- display: -moz-box;
4722
- display: -ms-flexbox;
4723
- display: flex;
4724
- -webkit-box-align: center;
4725
- -webkit-align-items: center;
4726
- -moz-box-align: center;
4727
- -ms-flex-align: center;
4728
- align-items: center; }
4729
- .premium-pricing-list .premium-pricing-list-item svg {
4730
- width: 50px;
4731
- height: 50px; }
4732
- .premium-pricing-list .premium-pricing-list-item img {
4733
- width: 30px;
4734
- height: 30px;
4735
- -o-object-fit: cover;
4736
- object-fit: cover; }
4737
- .premium-pricing-list .premium-pricing-list-span {
4738
- position: relative; }
4739
- .premium-pricing-list .list-item-tooltip {
4740
- border-bottom: 1px dotted; }
4741
- .premium-pricing-list .premium-pricing-list-tooltip {
4742
- position: absolute;
4743
- top: -webkit-calc(100% + 1px);
4744
- top: calc(100% + 1px);
4745
- left: 0;
4746
- visibility: hidden;
4747
- padding: 15px 20px;
4748
- -webkit-border-radius: 5px;
4749
- border-radius: 5px;
4750
- min-width: 200px;
4751
- overflow: hidden;
4752
- text-align: left;
4753
- font-size: 0.8rem;
4754
- color: #fff;
4755
- background-color: #aaa; }
4756
-
4757
- .premium-pricing-features-left .premium-pricing-list-span {
4758
- text-align: left; }
4759
-
4760
- .premium-pricing-features-center .premium-pricing-list-span {
4761
- text-align: center; }
4762
-
4763
- .premium-pricing-features-right .premium-pricing-list-span {
4764
- text-align: right; }
4765
-
4766
- .premium-pricing-list-span:hover .premium-pricing-list-tooltip {
4767
- z-index: 99;
4768
- visibility: visible;
4769
- opacity: 1; }
4770
-
4771
- .premium-pricing-slashed-price-value {
4772
- display: inline-block;
4773
- font-size: 20px;
4774
- font-weight: 400;
4775
- margin-right: 5px; }
4776
-
4777
- .premium-pricing-price-value {
4778
- font-size: 70px; }
4779
-
4780
- .premium-pricing-description-container li {
4781
- list-style-position: inside;
4782
- text-indent: -40px; }
4783
-
4784
- @-moz-document url-prefix() {
4785
- .premium-pricing-description-container li {
4786
- text-indent: 0px; } }
4787
-
4788
- .premium-pricing-price-button {
4789
- display: block;
4790
- padding: 6px 12px;
4791
- line-height: 1.42857143;
4792
- text-align: center;
4793
- color: #fff;
4794
- background: #6ec1e4;
4795
- margin-bottom: 0;
4796
- -webkit-transition: all 0.3s ease-in-out;
4797
- transition: all 0.3s ease-in-out; }
4798
-
4799
- /**************** Premium Google Maps ******************/
4800
- /*******************************************************/
4801
- .premium-maps-info-container {
4802
- margin-top: 10px;
4803
- margin-bottom: 10px; }
4804
-
4805
- .premium-maps-info-title,
4806
- .premium-maps-info-desc {
4807
- margin: 0;
4808
- padding: 0; }
4809
-
4810
- .premium-maps-container .gm-style-iw {
4811
- text-align: center; }
4812
-
4813
- .premium-maps-container .gm-style img {
4814
- max-width: none !important; }
4815
-
4816
- /**************** Premium Button ***********************/
4817
- /*******************************************************/
4818
- .premium-button {
4819
- -js-display: inline-flex;
4820
- display: -webkit-inline-box;
4821
- display: -webkit-inline-flex;
4822
- display: -moz-inline-box;
4823
- display: -ms-inline-flexbox;
4824
- display: inline-flex;
4825
- position: relative;
4826
- overflow: hidden;
4827
- -webkit-backface-visibility: hidden;
4828
- backface-visibility: hidden;
4829
- -webkit-transform: translate3d(0, 0, 0);
4830
- transform: translate3d(0, 0, 0);
4831
- cursor: pointer;
4832
- -webkit-transition: all 0.2s ease-in-out !important;
4833
- transition: all 0.2s ease-in-out !important; }
4834
-
4835
- .premium-button .premium-lottie-animation,
4836
- .premium-image-button .premium-lottie-animation {
4837
- -js-display: flex;
4838
- display: -webkit-box;
4839
- display: -webkit-flex;
4840
- display: -moz-box;
4841
- display: -ms-flexbox;
4842
- display: flex; }
4843
-
4844
- .premium-button svg,
4845
- .premium-image-button svg {
4846
- width: 30px;
4847
- height: 30px; }
4848
-
4849
- .premium-btn-sm,
4850
- .premium-btn-md,
4851
- .premium-btn-lg,
4852
- .premium-btn-block {
4853
- background-color: #eee;
4854
- color: #042551;
4855
- margin: 0px;
4856
- text-decoration: none; }
4857
- .premium-btn-sm:hover,
4858
- .premium-btn-md:hover,
4859
- .premium-btn-lg:hover,
4860
- .premium-btn-block:hover {
4861
- background-color: #54595f;
4862
- color: #eee; }
4863
-
4864
- .premium-btn-sm {
4865
- padding: 12px 24px;
4866
- font-size: 14px;
4867
- line-height: 1; }
4868
-
4869
- .premium-btn-md {
4870
- padding: 14px 26px;
4871
- font-size: 16px;
4872
- line-height: 1.2; }
4873
-
4874
- .premium-btn-lg {
4875
- padding: 16px 28px;
4876
- font-size: 18px;
4877
- line-height: 1.3333; }
4878
-
4879
- .premium-btn-block {
4880
- font-size: 18px;
4881
- line-height: 1;
4882
- padding: 20px 0px;
4883
- width: 100%;
4884
- text-align: center; }
4885
-
4886
- .premium-button-text {
4887
- display: inline-block;
4888
- width: 100%; }
4889
-
4890
- .premium-button-style1,
4891
- .premium-button-style2,
4892
- .premium-button-style5,
4893
- .premium-button-style7 {
4894
- display: inline-block;
4895
- vertical-align: middle;
4896
- -webkit-transform: perspective(1px) translateZ(0);
4897
- transform: perspective(1px) translateZ(0);
4898
- -webkit-box-shadow: 0 0 1px transparent;
4899
- box-shadow: 0 0 1px transparent;
4900
- position: relative;
4901
- -webkit-transition-property: color;
4902
- transition-property: color;
4903
- -webkit-transition-duration: 0.15s;
4904
- transition-duration: 0.15s; }
4905
-
4906
- .premium-button-style1:before,
4907
- .premium-button-style2:before,
4908
- .premium-button-style5:before {
4909
- content: "";
4910
- position: absolute;
4911
- z-index: -1;
4912
- top: 0;
4913
- left: 0;
4914
- right: 0;
4915
- bottom: 0;
4916
- -webkit-transform: scaleY(0);
4917
- -ms-transform: scaleY(0);
4918
- transform: scaleY(0);
4919
- -webkit-transform-origin: 50% 0;
4920
- -ms-transform-origin: 50% 0;
4921
- transform-origin: 50% 0;
4922
- -webkit-transition-property: -webkit-transform;
4923
- transition-property: -webkit-transform;
4924
- transition-property: transform;
4925
- transition-property: transform, -webkit-transform;
4926
- -webkit-transition-duration: 0.15s;
4927
- transition-duration: 0.15s;
4928
- -webkit-transition-timing-function: ease-out;
4929
- transition-timing-function: ease-out; }
4930
-
4931
- .premium-button-style5-radialin:before,
4932
- .premium-button-style5-radialout:before {
4933
- -webkit-transform-origin: 50%;
4934
- -ms-transform-origin: 50%;
4935
- transform-origin: 50%;
4936
- -webkit-border-radius: 100%;
4937
- border-radius: 100%;
4938
- -webkit-transform: scale(0);
4939
- -ms-transform: scale(0);
4940
- transform: scale(0); }
4941
-
4942
- .premium-button-style5-radialin:before {
4943
- -webkit-transform: scale(2);
4944
- -ms-transform: scale(2);
4945
- transform: scale(2); }
4946
-
4947
- .premium-button-style5-rectin:before {
4948
- -webkit-transform-origin: 50%;
4949
- -ms-transform-origin: 50%;
4950
- transform-origin: 50%;
4951
- -webkit-transform: scale(1);
4952
- -ms-transform: scale(1);
4953
- transform: scale(1); }
4954
-
4955
- .premium-button-style5-rectout:before {
4956
- -webkit-transform-origin: 50%;
4957
- -ms-transform-origin: 50%;
4958
- transform-origin: 50%;
4959
- -webkit-transform: scale(0);
4960
- -ms-transform: scale(0);
4961
- transform: scale(0); }
4962
-
4963
- .premium-button-style5-rectout:hover:before {
4964
- -webkit-transform: scale(1);
4965
- -ms-transform: scale(1);
4966
- transform: scale(1); }
4967
-
4968
- .premium-button-style5-rectin:hover:before {
4969
- -webkit-transform: scale(0);
4970
- -ms-transform: scale(0);
4971
- transform: scale(0); }
4972
-
4973
- .premium-button-style5-radialout:hover:before {
4974
- -webkit-transform: scale(2);
4975
- -ms-transform: scale(2);
4976
- transform: scale(2); }
4977
-
4978
- .premium-button-style5-radialin:hover:before {
4979
- -webkit-transform: scale(0);
4980
- -ms-transform: scale(0);
4981
- transform: scale(0); }
4982
-
4983
- .premium-button-style1-top:before {
4984
- -webkit-transform-origin: 50% 100%;
4985
- -ms-transform-origin: 50% 100%;
4986
- transform-origin: 50% 100%; }
4987
-
4988
- .premium-button-style1-right:before {
4989
- -webkit-transform: scaleX(0);
4990
- -ms-transform: scaleX(0);
4991
- transform: scaleX(0);
4992
- -webkit-transform-origin: 0% 50%;
4993
- -ms-transform-origin: 0% 50%;
4994
- transform-origin: 0% 50%; }
4995
-
4996
- .premium-button-style1-left:before {
4997
- -webkit-transform: scaleX(0);
4998
- -ms-transform: scaleX(0);
4999
- transform: scaleX(0);
5000
- -webkit-transform-origin: 100% 50%;
5001
- -ms-transform-origin: 100% 50%;
5002
- transform-origin: 100% 50%; }
5003
-
5004
- .premium-button-style2-shutouthor:before,
5005
- .premium-button-style2-scshutoutver:before {
5006
- -webkit-transform: scaleY(0);
5007
- -ms-transform: scaleY(0);
5008
- transform: scaleY(0);
5009
- -webkit-transform-origin: 100% 50%;
5010
- -ms-transform-origin: 100% 50%;
5011
- transform-origin: 100% 50%; }
5012
-
5013
- .premium-button-style2-shutoutver:before,
5014
- .premium-button-style2-scshutouthor:before {
5015
- -webkit-transform: scaleX(0);
5016
- -ms-transform: scaleX(0);
5017
- transform: scaleX(0);
5018
- -webkit-transform-origin: 50% 50%;
5019
- -ms-transform-origin: 50% 50%;
5020
- transform-origin: 50% 50%; }
5021
-
5022
- .premium-button-style2-shutinhor:before {
5023
- -webkit-transform: scaleX(1);
5024
- -ms-transform: scaleX(1);
5025
- transform: scaleX(1);
5026
- -webkit-transform-origin: 50%;
5027
- -ms-transform-origin: 50%;
5028
- transform-origin: 50%; }
5029
-
5030
- .premium-button-style2-shutinver:before {
5031
- -webkit-transform: scaleY(1);
5032
- -ms-transform: scaleY(1);
5033
- transform: scaleY(1);
5034
- -webkit-transform-origin: 50%;
5035
- -ms-transform-origin: 50%;
5036
- transform-origin: 50%; }
5037
-
5038
- .premium-button-style1-bottom:hover:before,
5039
- .premium-button-style1-top:hover:before {
5040
- -webkit-transform: scaleY(1);
5041
- -ms-transform: scaleY(1);
5042
- transform: scaleY(1); }
5043
-
5044
- .premium-button-style1-left:hover:before,
5045
- .premium-button-style1-right:hover:before,
5046
- .premium-button-style2-shutouthor:hover:before,
5047
- .premium-button-style2-shutoutver:hover:before {
5048
- -webkit-transform: scaleX(1);
5049
- -ms-transform: scaleX(1);
5050
- transform: scaleX(1); }
5051
-
5052
- .premium-button-style2-shutinhor:hover:before {
5053
- -webkit-transform: scaleX(0);
5054
- -ms-transform: scaleX(0);
5055
- transform: scaleX(0); }
5056
-
5057
- .premium-button-style2-shutinver:hover:before {
5058
- -webkit-transform: scaleY(0);
5059
- -ms-transform: scaleY(0);
5060
- transform: scaleY(0); }
5061
-
5062
- .premium-button-style2-scshutouthor:hover:before {
5063
- -webkit-transform: scaleX(0.9);
5064
- -ms-transform: scaleX(0.9);
5065
- transform: scaleX(0.9); }
5066
-
5067
- .premium-button-style2-scshutoutver:hover:before {
5068
- -webkit-transform: scaleY(0.8);
5069
- -ms-transform: scaleY(0.8);
5070
- transform: scaleY(0.8); }
5071
-
5072
- /*Diagonal*/
5073
- .premium-button-style2-dshutinhor:before {
5074
- top: 50%;
5075
- left: 50%;
5076
- width: 120%;
5077
- height: 0%;
5078
- -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
5079
- -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
5080
- transform: translateX(-50%) translateY(-50%) rotate(-45deg);
5081
- -webkit-transform-origin: 50%;
5082
- -ms-transform-origin: 50%;
5083
- transform-origin: 50%;
5084
- -webkit-transition-property: all;
5085
- transition-property: all; }
5086
-
5087
- .premium-button-style2-dshutinver:before {
5088
- top: 50%;
5089
- left: 50%;
5090
- width: 120%;
5091
- height: 0%;
5092
- -webkit-transform-origin: 50%;
5093
- -ms-transform-origin: 50%;
5094
- transform-origin: 50%;
5095
- -webkit-transition-property: all;
5096
- transition-property: all;
5097
- -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
5098
- -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
5099
- transform: translateX(-50%) translateY(-50%) rotate(45deg); }
5100
-
5101
- .premium-button-style2-dshutinhor:hover:before,
5102
- .premium-button-style2-dshutinver:hover:before {
5103
- height: 220%; }
5104
-
5105
- .premium-button-style3-before i,
5106
- .premium-button-style3-before svg {
5107
- opacity: 0;
5108
- -webkit-transform: translateX(-5px);
5109
- -ms-transform: translateX(-5px);
5110
- transform: translateX(-5px);
5111
- -webkit-transition: all 0.5s ease-in-out;
5112
- transition: all 0.5s ease-in-out; }
5113
-
5114
- .premium-button-style3-after i,
5115
- .premium-button-style3-after svg {
5116
- opacity: 0;
5117
- -webkit-transform: translateX(-5px);
5118
- -ms-transform: translateX(-5px);
5119
- transform: translateX(-5px);
5120
- -webkit-transition: all 0.5s ease-in-out;
5121
- transition: all 0.5s ease-in-out;
5122
- -webkit-transform: translateX(5px);
5123
- -ms-transform: translateX(5px);
5124
- transform: translateX(5px); }
5125
-
5126
- .premium-button-style3-after:hover i,
5127
- .premium-button-style3-after:hover svg {
5128
- opacity: 1; }
5129
-
5130
- .premium-button-style3-before:hover i,
5131
- .premium-button-style3-before:hover svg {
5132
- opacity: 1; }
5133
-
5134
- .premium-button-text-icon-wrapper {
5135
- width: 100%;
5136
- -js-display: flex;
5137
- display: -webkit-box;
5138
- display: -webkit-flex;
5139
- display: -moz-box;
5140
- display: -ms-flexbox;
5141
- display: flex;
5142
- -webkit-box-pack: center;
5143
- -webkit-justify-content: center;
5144
- -moz-box-pack: center;
5145
- -ms-flex-pack: center;
5146
- justify-content: center;
5147
- -webkit-box-align: center;
5148
- -webkit-align-items: center;
5149
- -moz-box-align: center;
5150
- -ms-flex-align: center;
5151
- align-items: center;
5152
- -webkit-transition: all 0.2s ease-in-out;
5153
- transition: all 0.2s ease-in-out; }
5154
- .premium-button-text-icon-wrapper span,
5155
- .premium-button-text-icon-wrapper i,
5156
- .premium-button-text-icon-wrapper svg {
5157
- -webkit-transition: all 0.2s ease-in-out;
5158
- transition: all 0.2s ease-in-out; }
5159
-
5160
- .premium-button-style4-icon-wrapper {
5161
- position: absolute;
5162
- z-index: 2;
5163
- width: 100%;
5164
- text-align: center;
5165
- -js-display: flex;
5166
- display: -webkit-box;
5167
- display: -webkit-flex;
5168
- display: -moz-box;
5169
- display: -ms-flexbox;
5170
- display: flex;
5171
- -webkit-box-align: center;
5172
- -webkit-align-items: center;
5173
- -moz-box-align: center;
5174
- -ms-flex-align: center;
5175
- align-items: center;
5176
- -webkit-box-pack: center;
5177
- -webkit-justify-content: center;
5178
- -moz-box-pack: center;
5179
- -ms-flex-pack: center;
5180
- justify-content: center;
5181
- height: 100%;
5182
- opacity: 0;
5183
- -webkit-transition: all 0.3s ease-in-out;
5184
- transition: all 0.3s ease-in-out; }
5185
- .premium-button-style4-icon-wrapper.top {
5186
- bottom: -100%;
5187
- left: 0; }
5188
- .premium-button-style4-icon-wrapper.bottom {
5189
- top: -100%;
5190
- left: 0; }
5191
- .premium-button-style4-icon-wrapper.left {
5192
- top: 0;
5193
- left: -100%; }
5194
- .premium-button-style4-icon-wrapper.right {
5195
- top: 0;
5196
- right: -100%; }
5197
-
5198
- .premium-button-style4-bottom:hover .premium-button-style4-icon-wrapper {
5199
- top: 0;
5200
- opacity: 1; }
5201
-
5202
- .premium-button-style4-top:hover .premium-button-style4-icon-wrapper {
5203
- bottom: 0;
5204
- opacity: 1; }
5205
-
5206
- .premium-button-style4-left:hover .premium-button-style4-icon-wrapper {
5207
- left: 0;
5208
- opacity: 1; }
5209
-
5210
- .premium-button-style4-right:hover .premium-button-style4-icon-wrapper {
5211
- right: 0;
5212
- opacity: 1; }
5213
-
5214
- .premium-button-style4-bottom:hover .premium-button-text-icon-wrapper {
5215
- -webkit-transform: translateY(100%);
5216
- -ms-transform: translateY(100%);
5217
- transform: translateY(100%);
5218
- opacity: 0; }
5219
-
5220
- .premium-button-style4-top:hover .premium-button-text-icon-wrapper {
5221
- -webkit-transform: translateY(-100%);
5222
- -ms-transform: translateY(-100%);
5223
- transform: translateY(-100%);
5224
- opacity: 0; }
5225
-
5226
- .premium-button-style4-left:hover .premium-button-text-icon-wrapper {
5227
- -webkit-transform: translateX(100%);
5228
- -ms-transform: translateX(100%);
5229
- transform: translateX(100%);
5230
- opacity: 0; }
5231
-
5232
- .premium-button-style4-right:hover .premium-button-text-icon-wrapper {
5233
- -webkit-transform: translateX(-100%);
5234
- -ms-transform: translateX(-100%);
5235
- transform: translateX(-100%);
5236
- opacity: 0; }
5237
-
5238
- .premium-button-style6:before {
5239
- content: "";
5240
- position: absolute;
5241
- left: 50%;
5242
- top: 50%;
5243
- width: 100px;
5244
- height: 100px;
5245
- -webkit-border-radius: 100%;
5246
- border-radius: 100%;
5247
- -webkit-transform: translate(-50%, -50%) scale(0);
5248
- -ms-transform: translate(-50%, -50%) scale(0);
5249
- transform: translate(-50%, -50%) scale(0);
5250
- -webkit-transition: all 0.3s ease-in-out;
5251
- transition: all 0.3s ease-in-out; }
5252
-
5253
- .premium-button-style6:hover:before {
5254
- -webkit-transform: translate(-50%, -50%) scale(3);
5255
- -ms-transform: translate(-50%, -50%) scale(3);
5256
- transform: translate(-50%, -50%) scale(3); }
5257
-
5258
- .premium-button-style6 .premium-button-text-icon-wrapper {
5259
- position: relative;
5260
- z-index: 1; }
5261
-
5262
- .premium-mouse-detect-yes .premium-button-style6 .premium-button-style6-bg {
5263
- position: absolute;
5264
- z-index: 0;
5265
- top: 0;
5266
- left: 0;
5267
- width: 0px;
5268
- height: 0px;
5269
- -webkit-border-radius: 50%;
5270
- border-radius: 50%;
5271
- display: block;
5272
- -webkit-transform: translate(-50%, -50%);
5273
- -ms-transform: translate(-50%, -50%);
5274
- transform: translate(-50%, -50%);
5275
- -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
5276
- transition: width 0.4s ease-in-out, height 0.4s ease-in-out; }
5277
-
5278
- .premium-mouse-detect-yes .premium-button-style6:hover .premium-button-style6-bg {
5279
- width: 225%;
5280
- height: 560px; }
5281
-
5282
- .premium-mouse-detect-yes .premium-button-style6:before {
5283
- width: 0;
5284
- height: 0; }
5285
-
5286
- .premium-button-style7-right .premium-button-text-icon-wrapper:before,
5287
- .premium-button-style7-left .premium-button-text-icon-wrapper:before {
5288
- -webkit-transition: width 0.3s ease-out 0.15s;
5289
- transition: width 0.3s ease-out 0.15s; }
5290
-
5291
- .premium-button-style7-right .premium-button-text-icon-wrapper:after,
5292
- .premium-button-style7-left .premium-button-text-icon-wrapper:after {
5293
- -webkit-transition: width 0.3s ease-out 0s;
5294
- transition: width 0.3s ease-out 0s; }
5295
-
5296
- .premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
5297
- .premium-button-style7-top .premium-button-text-icon-wrapper:before {
5298
- -webkit-transition: height 0.3s ease-out 0.15s;
5299
- transition: height 0.3s ease-out 0.15s; }
5300
-
5301
- .premium-button-style7-bottom .premium-button-text-icon-wrapper:after,
5302
- .premium-button-style7-top .premium-button-text-icon-wrapper:after {
5303
- -webkit-transition: height 0.3s ease-out 0s;
5304
- transition: height 0.3s ease-out 0s; }
5305
-
5306
- .premium-button-style7:hover .premium-button-text-icon-wrapper:before {
5307
- -webkit-transition-delay: 0s;
5308
- transition-delay: 0s; }
5309
-
5310
- .premium-button-style7:hover .premium-button-text-icon-wrapper:after {
5311
- -webkit-transition-delay: 0.15s;
5312
- transition-delay: 0.15s; }
5313
-
5314
- .premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
5315
- .premium-button-style7-bottom .premium-button-text-icon-wrapper:after {
5316
- content: "";
5317
- position: absolute;
5318
- right: 0;
5319
- top: 0;
5320
- left: 0;
5321
- height: 0;
5322
- z-index: -1; }
5323
-
5324
- .premium-button-style7-top .premium-button-text-icon-wrapper:after,
5325
- .premium-button-style7-top .premium-button-text-icon-wrapper:before {
5326
- content: "";
5327
- position: absolute;
5328
- right: 0;
5329
- bottom: 0;
5330
- left: 0;
5331
- height: 0;
5332
- z-index: -1; }
5333
-
5334
- .premium-button-style7-right .premium-button-text-icon-wrapper:after,
5335
- .premium-button-style7-right .premium-button-text-icon-wrapper:before {
5336
- content: "";
5337
- position: absolute;
5338
- right: 0;
5339
- top: 0;
5340
- bottom: 0;
5341
- width: 0;
5342
- z-index: -1; }
5343
-
5344
- .premium-button-style7-left .premium-button-text-icon-wrapper:after,
5345
- .premium-button-style7-left .premium-button-text-icon-wrapper:before {
5346
- content: "";
5347
- position: absolute;
5348
- left: 0;
5349
- top: 0;
5350
- bottom: 0;
5351
- width: 0;
5352
- z-index: -1; }
5353
-
5354
- .premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:after,
5355
- .premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:before {
5356
- height: 100%;
5357
- top: 0; }
5358
-
5359
- .premium-button-style7-top:hover .premium-button-text-icon-wrapper:after,
5360
- .premium-button-style7-top:hover .premium-button-text-icon-wrapper:before {
5361
- height: 100%;
5362
- bottom: 0; }
5363
-
5364
- .premium-button-style7-left:hover .premium-button-text-icon-wrapper:after,
5365
- .premium-button-style7-left:hover .premium-button-text-icon-wrapper:before {
5366
- width: 100%;
5367
- left: 0; }
5368
-
5369
- .premium-button-style7-right:hover .premium-button-text-icon-wrapper:after,
5370
- .premium-button-style7-right:hover .premium-button-text-icon-wrapper:before {
5371
- width: 100%;
5372
- right: 0; }
5373
-
5374
- /**************** Premium Contact Form7 **********/
5375
- /*************************************************/
5376
- .premium-contact-form-anim-yes .wpcf7-span::after {
5377
- display: block;
5378
- height: 2px;
5379
- content: "";
5380
- top: -2px;
5381
- position: relative;
5382
- width: 0px;
5383
- -webkit-transition: all ease-in-out 0.3s;
5384
- transition: all ease-in-out 0.3s; }
5385
-
5386
- .premium-contact-form-anim-yes .wpcf7-span.is-focused::after {
5387
- width: 100%; }
5388
-
5389
- .premium-cf7-container input.wpcf7-submit {
5390
- -webkit-transition: all 0.3s ease-in-out;
5391
- transition: all 0.3s ease-in-out; }
5392
-
5393
- /**************** Premium Image Button ***********/
5394
- /*************************************************/
5395
- .premium-image-button {
5396
- -js-display: inline-flex;
5397
- display: -webkit-inline-box;
5398
- display: -webkit-inline-flex;
5399
- display: -moz-inline-box;
5400
- display: -ms-inline-flexbox;
5401
- display: inline-flex;
5402
- position: relative;
5403
- overflow: hidden;
5404
- background-color: #eee;
5405
- cursor: pointer;
5406
- -webkit-transition: all 0.2s ease-in-out !important;
5407
- transition: all 0.2s ease-in-out !important; }
5408
- .premium-image-button .premium-button-style6-bg, .premium-image-button.premium-button-style6:before, .premium-image-button:not(.premium-image-button-style6):hover {
5409
- background-color: #54595f; }
5410
-
5411
- /*Default background for slide styles*/
5412
- .premium-image-button-style4-icon-wrapper,
5413
- .premium-image-button-style1:before {
5414
- background-color: #54595f; }
5415
-
5416
- .premium-image-button-text-icon-wrapper {
5417
- width: 100%;
5418
- -js-display: flex;
5419
- display: -webkit-box;
5420
- display: -webkit-flex;
5421
- display: -moz-box;
5422
- display: -ms-flexbox;
5423
- display: flex;
5424
- -webkit-box-pack: center;
5425
- -webkit-justify-content: center;
5426
- -moz-box-pack: center;
5427
- -ms-flex-pack: center;
5428
- justify-content: center;
5429
- -webkit-box-align: center;
5430
- -webkit-align-items: center;
5431
- -moz-box-align: center;
5432
- -ms-flex-align: center;
5433
- align-items: center;
5434
- position: relative;
5435
- z-index: 3;
5436
- -webkit-transition: all 0.2s ease-in-out;
5437
- transition: all 0.2s ease-in-out; }
5438
- .premium-image-button-text-icon-wrapper span,
5439
- .premium-image-button-text-icon-wrapper i,
5440
- .premium-image-button-text-icon-wrapper svg {
5441
- -webkit-transition: all 0.2s ease-in-out;
5442
- transition: all 0.2s ease-in-out; }
5443
-
5444
- .premium-image-button-style1:before {
5445
- position: absolute;
5446
- content: "";
5447
- -webkit-transition: all 0.2s ease-in-out;
5448
- transition: all 0.2s ease-in-out; }
5449
-
5450
- .premium-image-button-style1-bottom:before {
5451
- width: 100%;
5452
- height: 0;
5453
- top: 0;
5454
- left: 0; }
5455
-
5456
- .premium-image-button-style1-top:before {
5457
- width: 100%;
5458
- height: 0;
5459
- bottom: 0;
5460
- left: 0; }
5461
-
5462
- .premium-image-button-style1-right:before {
5463
- width: 0;
5464
- height: 100%;
5465
- bottom: 0;
5466
- left: 0; }
5467
-
5468
- .premium-image-button-style1-left:before {
5469
- width: 0;
5470
- height: 100%;
5471
- top: 0;
5472
- right: 0; }
5473
-
5474
- .premium-image-button-style1-bottom:hover:before,
5475
- .premium-image-button-style1-top:hover:before {
5476
- height: 100%; }
5477
-
5478
- .premium-image-button-style1-right:hover:before,
5479
- .premium-image-button-style1-left:hover:before {
5480
- width: 100%; }
5481
-
5482
- .premium-image-button-style3 {
5483
- z-index: 10; }
5484
- .premium-image-button-style3:before {
5485
- position: absolute;
5486
- top: 0px;
5487
- left: 0px;
5488
- width: 100%;
5489
- height: 100%;
5490
- content: "";
5491
- z-index: 1;
5492
- background: rgba(255, 255, 255, 0.2);
5493
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
5494
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
5495
- -webkit-transition: all 0.8s ease-out;
5496
- transition: all 0.8s ease-out; }
5497
-
5498
- .premium-image-button-diagonal-right:before {
5499
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
5500
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0); }
5501
-
5502
- .premium-image-button-diagonal-right:hover:before {
5503
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
5504
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0); }
5505
-
5506
- .premium-image-button-diagonal-left:before {
5507
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
5508
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0); }
5509
-
5510
- .premium-image-button-diagonal-left:hover:before {
5511
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
5512
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0); }
5513
-
5514
- .premium-image-button-diagonal-bottom:before {
5515
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
5516
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0); }
5517
-
5518
- .premium-image-button-diagonal-bottom:hover:before {
5519
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
5520
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0); }
5521
-
5522
- .premium-image-button-diagonal-top:before {
5523
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
5524
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0); }
5525
-
5526
- .premium-image-button-diagonal-top:hover:before {
5527
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
5528
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0); }
5529
-
5530
- .premium-image-button-style4-icon-wrapper {
5531
- position: absolute;
5532
- z-index: 2;
5533
- width: 100%;
5534
- text-align: center;
5535
- -js-display: flex;
5536
- display: -webkit-box;
5537
- display: -webkit-flex;
5538
- display: -moz-box;
5539
- display: -ms-flexbox;
5540
- display: flex;
5541
- -webkit-box-align: center;
5542
- -webkit-align-items: center;
5543
- -moz-box-align: center;
5544
- -ms-flex-align: center;
5545
- align-items: center;
5546
- -webkit-box-pack: center;
5547
- -webkit-justify-content: center;
5548
- -moz-box-pack: center;
5549
- -ms-flex-pack: center;
5550
- justify-content: center;
5551
- height: 100%;
5552
- opacity: 0;
5553
- -webkit-transition: all 0.3s ease-in-out;
5554
- transition: all 0.3s ease-in-out; }
5555
- .premium-image-button-style4-icon-wrapper.top {
5556
- bottom: -100%;
5557
- left: 0; }
5558
- .premium-image-button-style4-icon-wrapper.bottom {
5559
- top: -100%;
5560
- left: 0; }
5561
- .premium-image-button-style4-icon-wrapper.left {
5562
- top: 0;
5563
- left: -100%; }
5564
- .premium-image-button-style4-icon-wrapper.right {
5565
- top: 0;
5566
- right: -100%; }
5567
-
5568
- .premium-image-button-style4-bottom:hover .premium-image-button-style4-icon-wrapper {
5569
- top: 0;
5570
- opacity: 1; }
5571
-
5572
- .premium-image-button-style4-bottom:hover .premium-image-button-text-icon-wrapper {
5573
- -webkit-transform: translateY(100%);
5574
- -ms-transform: translateY(100%);
5575
- transform: translateY(100%);
5576
- opacity: 0; }
5577
-
5578
- .premium-image-button-style4-top:hover .premium-image-button-style4-icon-wrapper {
5579
- bottom: 0;
5580
- opacity: 1; }
5581
-
5582
- .premium-image-button-style4-top:hover .premium-image-button-text-icon-wrapper {
5583
- -webkit-transform: translateY(-100%);
5584
- -ms-transform: translateY(-100%);
5585
- transform: translateY(-100%);
5586
- opacity: 0; }
5587
-
5588
- .premium-image-button-style4-left:hover .premium-image-button-style4-icon-wrapper {
5589
- left: 0;
5590
- opacity: 1; }
5591
-
5592
- .premium-image-button-style4-left:hover .premium-image-button-text-icon-wrapper {
5593
- -webkit-transform: translateX(100%);
5594
- -ms-transform: translateX(100%);
5595
- transform: translateX(100%);
5596
- opacity: 0; }
5597
-
5598
- .premium-image-button-style4-right:hover .premium-image-button-style4-icon-wrapper {
5599
- right: 0;
5600
- opacity: 1; }
5601
-
5602
- .premium-image-button-style4-right:hover .premium-image-button-text-icon-wrapper {
5603
- -webkit-transform: translateX(-100%);
5604
- -ms-transform: translateX(-100%);
5605
- transform: translateX(-100%);
5606
- opacity: 0; }
5607
-
5608
- .premium-image-button-style5:before {
5609
- position: absolute;
5610
- content: "";
5611
- top: 0;
5612
- left: 0;
5613
- width: 100%;
5614
- height: 100%;
5615
- opacity: 0;
5616
- -webkit-transition: all 1s ease-in-out;
5617
- transition: all 1s ease-in-out;
5618
- background: rgba(255, 255, 255, 0.2);
5619
- -webkit-animation-name: premium-overlap-effect-done;
5620
- animation-name: premium-overlap-effect-done;
5621
- -webkit-animation-duration: 1s;
5622
- animation-duration: 1s; }
5623
-
5624
- .premium-image-button-overlap-effect-vertical:before {
5625
- -webkit-animation-name: premium-overlap-ver-effect-done;
5626
- animation-name: premium-overlap-ver-effect-done; }
5627
-
5628
- .premium-image-button-overlap-effect-horizontal:hover:before {
5629
- -webkit-animation-name: premium-overlap-effect;
5630
- animation-name: premium-overlap-effect; }
5631
-
5632
- .premium-image-button-overlap-effect-vertical:hover:before {
5633
- -webkit-animation-name: premium-overlap-ver-effect;
5634
- animation-name: premium-overlap-ver-effect; }
5635
-
5636
- @-webkit-keyframes premium-overlap-effect {
5637
- 0% {
5638
- opacity: 0;
5639
- -webkit-transform: rotateY(0deg);
5640
- transform: rotateY(0deg); }
5641
- 50% {
5642
- opacity: 1;
5643
- -webkit-transform: rotateY(180deg);
5644
- transform: rotateY(180deg); }
5645
- 100% {
5646
- opacity: 0;
5647
- -webkit-transform: rotateY(360deg);
5648
- transform: rotateY(360deg); } }
5649
-
5650
- @keyframes premium-overlap-effect {
5651
- 0% {
5652
- opacity: 0;
5653
- -webkit-transform: rotateY(0deg);
5654
- transform: rotateY(0deg); }
5655
- 50% {
5656
- opacity: 1;
5657
- -webkit-transform: rotateY(180deg);
5658
- transform: rotateY(180deg); }
5659
- 100% {
5660
- opacity: 0;
5661
- -webkit-transform: rotateY(360deg);
5662
- transform: rotateY(360deg); } }
5663
-
5664
- @-webkit-keyframes premium-overlap-effect-done {
5665
- 0% {
5666
- opacity: 0;
5667
- -webkit-transform: rotateY(0deg);
5668
- transform: rotateY(0deg); }
5669
- 50% {
5670
- opacity: 1;
5671
- -webkit-transform: rotateY(180deg);
5672
- transform: rotateY(180deg); }
5673
- 100% {
5674
- opacity: 0;
5675
- -webkit-transform: rotateY(360deg);
5676
- transform: rotateY(360deg); } }
5677
-
5678
- @keyframes premium-overlap-effect-done {
5679
- 0% {
5680
- opacity: 0;
5681
- -webkit-transform: rotateY(0deg);
5682
- transform: rotateY(0deg); }
5683
- 50% {
5684
- opacity: 1;
5685
- -webkit-transform: rotateY(180deg);
5686
- transform: rotateY(180deg); }
5687
- 100% {
5688
- opacity: 0;
5689
- -webkit-transform: rotateY(360deg);
5690
- transform: rotateY(360deg); } }
5691
-
5692
- @-webkit-keyframes premium-overlap-ver-effect {
5693
- 0% {
5694
- opacity: 0;
5695
- -webkit-transform: rotateX(0deg);
5696
- transform: rotateX(0deg); }
5697
- 50% {
5698
- opacity: 1;
5699
- -webkit-transform: rotateX(180deg);
5700
- transform: rotateX(180deg); }
5701
- 100% {
5702
- opacity: 0;
5703
- -webkit-transform: rotateX(360deg);
5704
- transform: rotateX(360deg); } }
5705
-
5706
- @keyframes premium-overlap-ver-effect {
5707
- 0% {
5708
- opacity: 0;
5709
- -webkit-transform: rotateX(0deg);
5710
- transform: rotateX(0deg); }
5711
- 50% {
5712
- opacity: 1;
5713
- -webkit-transform: rotateX(180deg);
5714
- transform: rotateX(180deg); }
5715
- 100% {
5716
- opacity: 0;
5717
- -webkit-transform: rotateX(360deg);
5718
- transform: rotateX(360deg); } }
5719
-
5720
- @-webkit-keyframes premium-overlap-ver-effect-done {
5721
- 0% {
5722
- opacity: 0;
5723
- -webkit-transform: rotateX(0deg);
5724
- transform: rotateX(0deg); }
5725
- 50% {
5726
- opacity: 1;
5727
- -webkit-transform: rotateX(180deg);
5728
- transform: rotateX(180deg); }
5729
- 100% {
5730
- opacity: 0;
5731
- -webkit-transform: rotateX(360deg);
5732
- transform: rotateX(360deg); } }
5733
-
5734
- @keyframes premium-overlap-ver-effect-done {
5735
- 0% {
5736
- opacity: 0;
5737
- -webkit-transform: rotateX(0deg);
5738
- transform: rotateX(0deg); }
5739
- 50% {
5740
- opacity: 1;
5741
- -webkit-transform: rotateX(180deg);
5742
- transform: rotateX(180deg); }
5743
- 100% {
5744
- opacity: 0;
5745
- -webkit-transform: rotateX(360deg);
5746
- transform: rotateX(360deg); } }
5747
-
5748
- /******** Premium Media Grid ********/
5749
- /************************************/
5750
- .premium-img-gallery-filter,
5751
- .premium-blog-filter {
5752
- -js-display: flex;
5753
- display: -webkit-box;
5754
- display: -webkit-flex;
5755
- display: -moz-box;
5756
- display: -ms-flexbox;
5757
- display: flex;
5758
- -webkit-box-align: center;
5759
- -webkit-align-items: center;
5760
- -moz-box-align: center;
5761
- -ms-flex-align: center;
5762
- align-items: center;
5763
- -webkit-box-pack: center;
5764
- -webkit-justify-content: center;
5765
- -moz-box-pack: center;
5766
- -ms-flex-pack: center;
5767
- justify-content: center; }
5768
-
5769
- .premium-img-gallery {
5770
- clear: both;
5771
- overflow: hidden; }
5772
-
5773
- .premium-gallery-container .premium-gallery-item {
5774
- padding: 10px;
5775
- float: left; }
5776
-
5777
- .premium-gallery-container .grid-sizer {
5778
- width: 33.33%; }
5779
-
5780
- .premium-gallery-container .pa-gallery-item {
5781
- padding: 10px; }
5782
-
5783
- .premium-img-gallery-filter .premium-gallery-cats-container li a.category,
5784
- .premium-blog-filter .premium-blog-filters-container li a.category {
5785
- outline: none;
5786
- text-decoration: none;
5787
- -webkit-border-radius: 75px;
5788
- border-radius: 75px;
5789
- margin: 15px 5px 20px;
5790
- padding: 7px 20px;
5791
- -webkit-transition: all 0.3s ease-in-out;
5792
- transition: all 0.3s ease-in-out; }
5793
-
5794
- .premium-img-gallery-filter .premium-gallery-cats-container li a.category span {
5795
- -webkit-transition: all 0.3s ease-in-out;
5796
- transition: all 0.3s ease-in-out; }
5797
-
5798
- .pa-gallery-img {
5799
- position: relative; }
5800
- .pa-gallery-img .pa-gallery-whole-link {
5801
- position: absolute;
5802
- top: 0;
5803
- left: 0;
5804
- width: 100%;
5805
- height: 100%; }
5806
- .pa-gallery-img.style2 .pa-gallery-whole-link {
5807
- z-index: 99; }
5808
-
5809
- .pa-gallery-img-container {
5810
- overflow: hidden;
5811
- -webkit-backface-visibility: hidden;
5812
- backface-visibility: hidden;
5813
- -webkit-transform: translate3d(0, 0, 0);
5814
- transform: translate3d(0, 0, 0); }
5815
- .pa-gallery-img-container img {
5816
- display: block;
5817
- width: 100%;
5818
- -webkit-transition: all 0.3s ease-in-out;
5819
- transition: all 0.3s ease-in-out; }
5820
-
5821
- .premium-img-gallery.gray img {
5822
- -webkit-filter: grayscale(100%);
5823
- filter: grayscale(100%); }
5824
-
5825
- .premium-img-gallery.zoomout img,
5826
- .premium-img-gallery.scale img {
5827
- -webkit-transform: scale(1.2);
5828
- -ms-transform: scale(1.2);
5829
- transform: scale(1.2); }
5830
-
5831
- .premium-img-gallery.sepia img {
5832
- -webkit-filter: sepia(30%);
5833
- filter: sepia(30%); }
5834
-
5835
- .premium-img-gallery.bright img {
5836
- -webkit-filter: brightness(1);
5837
- filter: brightness(1); }
5838
-
5839
- .premium-img-gallery.trans img {
5840
- -webkit-transform: translateX(-15px) scale(1.1);
5841
- -ms-transform: translateX(-15px) scale(1.1);
5842
- transform: translateX(-15px) scale(1.1); }
5843
-
5844
- .pa-gallery-img .pa-gallery-magnific-image,
5845
- .pa-gallery-img .pa-gallery-img-link {
5846
- outline: none; }
5847
- .pa-gallery-img .pa-gallery-magnific-image i,
5848
- .pa-gallery-img .pa-gallery-magnific-image svg,
5849
- .pa-gallery-img .pa-gallery-img-link i,
5850
- .pa-gallery-img .pa-gallery-img-link svg {
5851
- -webkit-transition: all 0.3s ease-in-out;
5852
- transition: all 0.3s ease-in-out; }
5853
-
5854
- .pa-gallery-img .pa-gallery-magnific-image span,
5855
- .pa-gallery-img .pa-gallery-img-link span {
5856
- line-height: 1;
5857
- display: inline-block;
5858
- opacity: 0;
5859
- margin: 0 5px;
5860
- padding: 15px;
5861
- -webkit-border-radius: 50%;
5862
- border-radius: 50%; }
5863
-
5864
- .pa-gallery-img.style2 .pa-gallery-magnific-image span,
5865
- .pa-gallery-img.style2 .pa-gallery-img-link span {
5866
- margin: 0 5px 20px; }
5867
-
5868
- .pa-gallery-img:hover .pa-gallery-magnific-image span {
5869
- -webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
5870
- transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s; }
5871
-
5872
- .pa-gallery-img:hover .pa-gallery-img-link span {
5873
- -webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
5874
- transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s; }
5875
-
5876
- .pa-gallery-img:hover .pa-gallery-magnific-image span,
5877
- .pa-gallery-img:hover .pa-gallery-img-link span {
5878
- opacity: 1; }
5879
-
5880
- .premium-gallery-icon-show a.pa-gallery-video-icon span {
5881
- opacity: 1; }
5882
-
5883
- .premium-img-gallery-filter ul.premium-gallery-cats-container,
5884
- .premium-blog-filter ul.premium-blog-filters-container {
5885
- text-align: center;
5886
- margin: 0;
5887
- padding: 0; }
5888
-
5889
- .premium-img-gallery-filter .premium-gallery-cats-container li,
5890
- .premium-blog-filter .premium-blog-filters-container li {
5891
- list-style: none;
5892
- -js-display: inline-flex;
5893
- display: -webkit-inline-box;
5894
- display: -webkit-inline-flex;
5895
- display: -moz-inline-box;
5896
- display: -ms-inline-flexbox;
5897
- display: inline-flex; }
5898
-
5899
- .premium-img-gallery.zoomin .pa-gallery-img:hover img {
5900
- -webkit-transform: scale(1.1);
5901
- -ms-transform: scale(1.1);
5902
- transform: scale(1.1); }
5903
-
5904
- .premium-img-gallery.zoomout .pa-gallery-img:hover img {
5905
- -webkit-transform: scale(1);
5906
- -ms-transform: scale(1);
5907
- transform: scale(1); }
5908
-
5909
- .premium-img-gallery.scale .pa-gallery-img:hover img {
5910
- -webkit-transform: scale(1.3) rotate(5deg);
5911
- -ms-transform: scale(1.3) rotate(5deg);
5912
- transform: scale(1.3) rotate(5deg); }
5913
-
5914
- .premium-img-gallery.gray .pa-gallery-img:hover img {
5915
- -webkit-filter: grayscale(0%);
5916
- filter: grayscale(0%); }
5917
-
5918
- .premium-img-gallery.blur .pa-gallery-img:hover img {
5919
- -webkit-filter: blur(3px);
5920
- filter: blur(3px); }
5921
-
5922
- .premium-img-gallery.sepia .pa-gallery-img:hover img {
5923
- -webkit-filter: sepia(0%);
5924
- filter: sepia(0%); }
5925
-
5926
- .premium-img-gallery.trans .pa-gallery-img:hover img {
5927
- -webkit-transform: translateX(0px) scale(1.1);
5928
- -ms-transform: translateX(0px) scale(1.1);
5929
- transform: translateX(0px) scale(1.1); }
5930
-
5931
- .premium-img-gallery.bright .pa-gallery-img:hover img {
5932
- -webkit-filter: brightness(1.2);
5933
- filter: brightness(1.2); }
5934
-
5935
- .pa-gallery-img .premium-gallery-caption {
5936
- padding: 10px; }
5937
- .pa-gallery-img .premium-gallery-caption .premium-gallery-img-name {
5938
- margin-bottom: 0; }
5939
-
5940
- .pa-gallery-img.style1 {
5941
- overflow: hidden; }
5942
-
5943
- .pa-gallery-img:not(.style2) .pa-gallery-icons-wrapper {
5944
- position: absolute;
5945
- top: 0;
5946
- left: 0;
5947
- width: 100%;
5948
- height: 100%;
5949
- -webkit-transition: all 0.3s ease-in-out;
5950
- transition: all 0.3s ease-in-out; }
5951
-
5952
- .pa-gallery-img:not(.style2) .pa-gallery-icons-inner-container {
5953
- position: absolute;
5954
- top: 33.33%;
5955
- width: 100%;
5956
- text-align: center;
5957
- -webkit-transform: translateY(-50%);
5958
- -ms-transform: translateY(-50%);
5959
- transform: translateY(-50%);
5960
- z-index: 999; }
5961
-
5962
- .pa-gallery-img.style1 .premium-gallery-caption {
5963
- position: absolute;
5964
- top: auto;
5965
- right: 0;
5966
- bottom: -1px;
5967
- left: 0;
5968
- width: 100%;
5969
- -webkit-transition: all 500ms ease 0s;
5970
- transition: all 500ms ease 0s;
5971
- -webkit-transform: translate3d(0, 100%, 0);
5972
- transform: translate3d(0, 100%, 0); }
5973
-
5974
- .pa-gallery-img.style1:hover .premium-gallery-caption {
5975
- -webkit-transform: translate3d(0, 0, 0);
5976
- transform: translate3d(0, 0, 0);
5977
- bottom: -1px !important; }
5978
-
5979
- .pa-gallery-img.default .premium-gallery-caption {
5980
- position: absolute;
5981
- top: auto;
5982
- right: 0;
5983
- left: 0;
5984
- width: 100%;
5985
- bottom: 0; }
5986
-
5987
- .pa-gallery-img.style2 .pa-gallery-icons-caption-container {
5988
- position: absolute;
5989
- top: 0;
5990
- left: 0;
5991
- width: 100%;
5992
- height: 100%;
5993
- opacity: 0;
5994
- -webkit-backface-visibility: hidden;
5995
- backface-visibility: hidden;
5996
- -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
5997
- transition: opacity 0.3s, -webkit-transform 0.3s;
5998
- transition: transform 0.3s, opacity 0.3s;
5999
- transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
6000
- z-index: 1;
6001
- background-color: rgba(108, 191, 226, 0.68);
6002
- -js-display: flex;
6003
- display: -webkit-box;
6004
- display: -webkit-flex;
6005
- display: -moz-box;
6006
- display: -ms-flexbox;
6007
- display: flex;
6008
- text-align: center;
6009
- -webkit-box-align: center;
6010
- -webkit-align-items: center;
6011
- -moz-box-align: center;
6012
- -ms-flex-align: center;
6013
- align-items: center; }
6014
-
6015
- .pa-gallery-img.style2 .pa-gallery-icons-caption-cell {
6016
- width: 100%; }
6017
-
6018
- .pa-gallery-img.style2:hover .pa-gallery-icons-caption-container {
6019
- opacity: 1;
6020
- -webkit-transform: translate(15px, 15px);
6021
- -ms-transform: translate(15px, 15px);
6022
- transform: translate(15px, 15px); }
6023
-
6024
- .premium-clearfix {
6025
- clear: both; }
6026
-
6027
- /**
6028
- * Metro Layout
6029
- */
6030
- .premium-img-gallery-metro .premium-gallery-item {
6031
- overflow: hidden; }
6032
-
6033
- .premium-img-gallery-metro .pa-gallery-img {
6034
- height: 100%; }
6035
-
6036
- .premium-img-gallery-metro .pa-gallery-img-container {
6037
- height: 100%; }
6038
- .premium-img-gallery-metro .pa-gallery-img-container img {
6039
- min-height: 100%;
6040
- width: 100%;
6041
- -o-object-fit: fill;
6042
- object-fit: fill; }
6043
-
6044
- .premium-img-gallery .premium-gallery-item-hidden {
6045
- visibility: hidden;
6046
- width: 0 !important;
6047
- height: 0 !important;
6048
- margin: 0 !important;
6049
- padding: 0 !important; }
6050
-
6051
- .premium-gallery-load-more {
6052
- position: relative; }
6053
- .premium-gallery-load-more .premium-gallery-load-more-btn {
6054
- -webkit-box-shadow: none;
6055
- box-shadow: none;
6056
- text-shadow: none;
6057
- border: none;
6058
- outline: none;
6059
- -webkit-box-align: center;
6060
- -webkit-align-items: center;
6061
- -moz-box-align: center;
6062
- -ms-flex-align: center;
6063
- align-items: center;
6064
- vertical-align: bottom;
6065
- cursor: pointer;
6066
- line-height: 1;
6067
- font-style: normal;
6068
- font-weight: normal;
6069
- background-image: none;
6070
- color: #fff;
6071
- -webkit-transition: all 0.3s ease-in-out;
6072
- transition: all 0.3s ease-in-out; }
6073
-
6074
- .premium-gallery-load-more-btn {
6075
- -js-display: inline-flex;
6076
- display: -webkit-inline-box;
6077
- display: -webkit-inline-flex;
6078
- display: -moz-inline-box;
6079
- display: -ms-inline-flexbox;
6080
- display: inline-flex;
6081
- -webkit-box-align: center;
6082
- -webkit-align-items: center;
6083
- -moz-box-align: center;
6084
- -ms-flex-align: center;
6085
- align-items: center; }
6086
-
6087
- .premium-loader {
6088
- border: 3px solid #f3f3f3;
6089
- border-top-width: 3px;
6090
- border-top-style: solid;
6091
- border-top-color: #f3f3f3;
6092
- -webkit-border-radius: 50%;
6093
- border-radius: 50%;
6094
- border-top: 3px solid;
6095
- border-top-color: #bbb;
6096
- width: 30px;
6097
- height: 30px;
6098
- -webkit-animation: spin 2s linear infinite;
6099
- animation: spin 2s linear infinite;
6100
- margin: 0 auto; }
6101
-
6102
- .premium-gallery-load-more-btn div {
6103
- margin-left: 3px; }
6104
-
6105
- .premium-gallery-load-more-btn .premium-loader {
6106
- display: inline-block;
6107
- width: 20px;
6108
- height: 20px; }
6109
-
6110
- .pa-gallery-img .pa-gallery-lightbox-wrap {
6111
- display: inline-block; }
6112
-
6113
- .premium-img-gallery-no-lightbox .premium-gallery-video-item .pa-gallery-img,
6114
- .pa-gallery-img .pa-gallery-video-icon {
6115
- cursor: pointer; }
6116
-
6117
- .pa-gallery-img-container iframe {
6118
- position: absolute;
6119
- visibility: hidden;
6120
- top: 0;
6121
- left: 0;
6122
- max-width: 100%;
6123
- width: 100%;
6124
- height: 100%;
6125
- margin: 0;
6126
- line-height: 1;
6127
- border: none; }
6128
-
6129
- .pa-gallery-img-container video {
6130
- position: absolute;
6131
- visibility: hidden;
6132
- top: 0;
6133
- left: 0;
6134
- max-width: 100%;
6135
- width: 100%;
6136
- height: 100%;
6137
- margin: 0;
6138
- line-height: 1;
6139
- border: none;
6140
- -o-object-fit: contain;
6141
- object-fit: contain; }
6142
-
6143
- .pa-gallery-icons-inner-container svg,
6144
- .pa-gallery-icons-caption-cell svg {
6145
- width: 14px;
6146
- height: 14px; }
6147
-
6148
- .premium-gallery-gradient-layer {
6149
- position: absolute;
6150
- bottom: 40px;
6151
- width: 100%;
6152
- height: 20px;
6153
- background: -webkit-gradient(linear, left bottom, left top, from(#17181f), to(rgba(255, 255, 255, 0)));
6154
- background: -webkit-linear-gradient(bottom, #17181f 0%, rgba(255, 255, 255, 0) 100%);
6155
- background: linear-gradient(to top, #17181f 0%, rgba(255, 255, 255, 0) 100%); }
6156
-
6157
- @-webkit-keyframes spin {
6158
- 0% {
6159
- -webkit-transform: rotate(0deg);
6160
- transform: rotate(0deg); }
6161
- 100% {
6162
- -webkit-transform: rotate(360deg);
6163
- transform: rotate(360deg); } }
6164
-
6165
- @keyframes spin {
6166
- 0% {
6167
- -webkit-transform: rotate(0deg);
6168
- transform: rotate(0deg); }
6169
- 100% {
6170
- -webkit-transform: rotate(360deg);
6171
- transform: rotate(360deg); } }
6172
-
6173
- /************ Premium Vertical Scroll ************/
6174
- /*************************************************/
6175
- .premium-vscroll-inner {
6176
- position: relative;
6177
- min-height: 100%; }
6178
- .premium-vscroll-inner .premium-vscroll-dots {
6179
- position: fixed;
6180
- z-index: 100;
6181
- opacity: 1;
6182
- margin-top: -32px;
6183
- -webkit-transition: all 0.3s ease-in-out;
6184
- transition: all 0.3s ease-in-out; }
6185
-
6186
- .premium-vscroll-wrap .premium-vscroll-nav-menu {
6187
- opacity: 1;
6188
- -webkit-transition: all 0.3s ease-in-out;
6189
- transition: all 0.3s ease-in-out; }
6190
-
6191
- .premium-vscroll-inner .premium-vscroll-dots,
6192
- .premium-vscroll-wrap .premium-vscroll-dots-hide {
6193
- opacity: 0;
6194
- visibility: hidden; }
6195
-
6196
- .premium-vscroll-nav-dots-yes .premium-vscroll-inner .premium-vscroll-dots:not(.premium-vscroll-dots-hide) {
6197
- opacity: 1;
6198
- visibility: visible; }
6199
-
6200
- .premium-vscroll-dots.middle {
6201
- top: 50%; }
6202
-
6203
- .premium-vscroll-dots.top {
6204
- top: 40px; }
6205
-
6206
- .premium-vscroll-dots.bottom {
6207
- bottom: 30px; }
6208
-
6209
- .premium-vscroll-dots.right {
6210
- right: 17px; }
6211
-
6212
- .premium-vscroll-dots.left {
6213
- left: 17px; }
6214
-
6215
- .premium-vscroll-inner ul.premium-vscroll-dots-list,
6216
- .premium-vscroll-wrap .premium-vscroll-nav-menu {
6217
- margin: 0 !important;
6218
- padding: 0; }
6219
-
6220
- .premium-vscroll-inner ul.premium-vscroll-dots-list li {
6221
- width: 14px;
6222
- height: 13px;
6223
- margin: 7px;
6224
- position: relative;
6225
- -js-display: flex;
6226
- display: -webkit-box;
6227
- display: -webkit-flex;
6228
- display: -moz-box;
6229
- display: -ms-flexbox;
6230
- display: flex;
6231
- -webkit-box-pack: center;
6232
- -webkit-justify-content: center;
6233
- -moz-box-pack: center;
6234
- -ms-flex-pack: center;
6235
- justify-content: center;
6236
- -webkit-box-align: center;
6237
- -webkit-align-items: center;
6238
- -moz-box-align: center;
6239
- -ms-flex-align: center;
6240
- align-items: center;
6241
- overflow: visible; }
6242
-
6243
- .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link {
6244
- display: block;
6245
- position: relative;
6246
- z-index: 1;
6247
- width: 100%;
6248
- height: 100%;
6249
- cursor: pointer;
6250
- text-decoration: none; }
6251
- .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link span {
6252
- top: 2px;
6253
- left: 2.5px;
6254
- width: 8px;
6255
- height: 8px;
6256
- border: 1px solid #000;
6257
- -webkit-border-radius: 50%;
6258
- border-radius: 50%;
6259
- position: absolute;
6260
- z-index: 1;
6261
- -webkit-transition: all 0.3s ease-in-out;
6262
- transition: all 0.3s ease-in-out; }
6263
-
6264
- .premium-vscroll-inner .premium-vscroll-dot-item.active .premium-vscroll-nav-link span {
6265
- -webkit-transform: scale(1.6);
6266
- -ms-transform: scale(1.6);
6267
- transform: scale(1.6); }
6268
-
6269
- .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-tooltip {
6270
- position: absolute;
6271
- color: #fff;
6272
- font-size: 14px;
6273
- font-family: arial, helvetica, sans-serif;
6274
- white-space: nowrap;
6275
- max-width: 220px;
6276
- padding-left: 0.4em;
6277
- padding-right: 0.4em; }
6278
-
6279
- .premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip {
6280
- right: 27px; }
6281
-
6282
- .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item {
6283
- width: 4px;
6284
- height: 30px; }
6285
- .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item span {
6286
- width: 100%;
6287
- height: 100%;
6288
- -webkit-border-radius: 0;
6289
- border-radius: 0; }
6290
- .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item.active span {
6291
- -webkit-transform: scale(1);
6292
- -ms-transform: scale(1);
6293
- transform: scale(1); }
6294
-
6295
- .premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip::after {
6296
- position: absolute;
6297
- top: 50%;
6298
- content: "";
6299
- left: -webkit-calc(100% - 1px);
6300
- left: calc(100% - 1px);
6301
- width: 10px;
6302
- height: 0;
6303
- border-top: 6px solid transparent;
6304
- border-bottom: 6px solid transparent;
6305
- border-left: 6px solid;
6306
- -webkit-transform: translateY(-50%);
6307
- -ms-transform: translateY(-50%);
6308
- transform: translateY(-50%); }
6309
-
6310
- .premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip {
6311
- left: 27px; }
6312
- .premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip::after {
6313
- position: absolute;
6314
- top: 50%;
6315
- content: "";
6316
- right: -webkit-calc(100% - 1px);
6317
- right: calc(100% - 1px);
6318
- width: 10px;
6319
- height: 0;
6320
- border-top: 6px solid transparent;
6321
- border-bottom: 6px solid transparent;
6322
- border-right: 6px solid;
6323
- -webkit-transform: translateY(-50%);
6324
- -ms-transform: translateY(-50%);
6325
- transform: translateY(-50%); }
6326
-
6327
- /* * Lines */
6328
- @media (max-width: 768px) {
6329
- .premium-vscroll-dots.right {
6330
- right: 7px; }
6331
- .premium-vscroll-dots.left {
6332
- left: 7px; } }
6333
-
6334
- .premium-vscroll-nav-menu {
6335
- position: fixed;
6336
- top: 20px;
6337
- height: 40px;
6338
- z-index: 100;
6339
- padding: 0;
6340
- margin: 0; }
6341
- .premium-vscroll-nav-menu.left {
6342
- left: 0; }
6343
- .premium-vscroll-nav-menu.right {
6344
- right: 0; }
6345
- .premium-vscroll-nav-menu .premium-vscroll-nav-item {
6346
- display: inline-block;
6347
- margin: 10px;
6348
- color: #000;
6349
- background: #fff;
6350
- background: rgba(255, 255, 255, 0.3); }
6351
- .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link {
6352
- padding: 9px 18px;
6353
- display: block;
6354
- cursor: pointer;
6355
- color: #000; }
6356
- .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:hover {
6357
- color: #000; }
6358
- .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:focus {
6359
- outline: none; }
6360
-
6361
- .multiscroll-nav li a:focus {
6362
- outline: none; }
6363
-
6364
- .premium-vscroll-temp .slimScrollBar {
6365
- visibility: hidden; }
6366
-
6367
- /************ Premium Image Scroll ************/
6368
- /**********************************************/
6369
- .premium-image-scroll-section,
6370
- .premium-image-scroll-container {
6371
- -webkit-transition: all 0.3s ease-in-out;
6372
- transition: all 0.3s ease-in-out; }
6373
-
6374
- .premium-image-scroll-section {
6375
- position: relative;
6376
- overflow: hidden;
6377
- width: 100%;
6378
- -webkit-mask-image: -webkit-radial-gradient(white, black); }
6379
-
6380
- .premium-image-scroll-container {
6381
- width: 100%; }
6382
- .premium-image-scroll-container .premium-image-scroll-mask-media {
6383
- -webkit-mask-repeat: no-repeat;
6384
- mask-repeat: no-repeat;
6385
- -webkit-mask-position: center;
6386
- mask-position: center; }
6387
-
6388
- .premium-container-scroll {
6389
- overflow: auto; }
6390
-
6391
- .premium-image-scroll-container .premium-image-scroll-horizontal {
6392
- position: relative;
6393
- width: 100%;
6394
- height: 100%; }
6395
- .premium-image-scroll-container .premium-image-scroll-horizontal img {
6396
- max-width: none;
6397
- height: 100%; }
6398
-
6399
- .premium-image-scroll-container .premium-image-scroll-vertical img {
6400
- width: 100%;
6401
- max-width: 100%;
6402
- height: auto; }
6403
-
6404
- .premium-image-scroll-ver {
6405
- position: relative; }
6406
-
6407
- .premium-image-scroll-container .premium-image-scroll-overlay {
6408
- background: rgba(2, 2, 2, 0.3); }
6409
-
6410
- .premium-image-scroll-container .premium-image-scroll-link,
6411
- .premium-image-scroll-container .premium-image-scroll-overlay {
6412
- position: absolute;
6413
- top: 0;
6414
- bottom: 0;
6415
- left: 0;
6416
- right: 0;
6417
- z-index: 4; }
6418
-
6419
- .premium-image-scroll-content {
6420
- display: inline-block;
6421
- position: absolute;
6422
- height: auto;
6423
- top: 50%;
6424
- left: 50%;
6425
- text-align: center;
6426
- z-index: 5;
6427
- -webkit-transform: translate(-50%, -50%);
6428
- -ms-transform: translate(-50%, -50%);
6429
- transform: translate(-50%, -50%); }
6430
-
6431
- .premium-container-scroll-instant .premium-image-scroll-image {
6432
- -webkit-transition: all 0s ease-in-out !important;
6433
- transition: all 0s ease-in-out !important; }
6434
-
6435
- .premium-image-scroll-container img {
6436
- -webkit-transition: -webkit-transform 3s ease-in-out;
6437
- transition: -webkit-transform 3s ease-in-out;
6438
- transition: transform 3s ease-in-out;
6439
- transition: transform 3s ease-in-out, -webkit-transform 3s ease-in-out; }
6440
-
6441
- .premium-image-scroll-container .premium-image-scroll-overlay,
6442
- .premium-image-scroll-container .premium-image-scroll-content {
6443
- -webkit-transition: all 0.3s ease-in-out;
6444
- transition: all 0.3s ease-in-out;
6445
- opacity: 1; }
6446
-
6447
- .premium-image-scroll-container:hover .premium-image-scroll-overlay {
6448
- opacity: 0; }
6449
-
6450
- .premium-image-scroll-container:hover .premium-image-scroll-content {
6451
- opacity: 0;
6452
- visibility: hidden; }
6453
-
6454
- .premium-image-scroll-content .premium-image-scroll-icon {
6455
- display: inline-block;
6456
- font-family: "pa-elements" !important;
6457
- speak: none;
6458
- font-style: normal;
6459
- font-weight: normal;
6460
- font-variant: normal;
6461
- text-transform: none;
6462
- line-height: 1;
6463
- -webkit-font-smoothing: antialiased;
6464
- -moz-osx-font-smoothing: grayscale;
6465
- -webkit-animation-duration: 0.5s;
6466
- animation-duration: 0.5s;
6467
- -webkit-animation-iteration-count: infinite;
6468
- animation-iteration-count: infinite;
6469
- -webkit-animation-direction: alternate;
6470
- animation-direction: alternate;
6471
- -webkit-animation-timing-function: ease-in-out;
6472
- animation-timing-function: ease-in-out; }
6473
-
6474
- .pa-horizontal-mouse-scroll:before {
6475
- content: "\e921"; }
6476
-
6477
- .pa-vertical-mouse-scroll:before {
6478
- content: "\e922"; }
6479
-
6480
- .pa-horizontal-mouse-scroll {
6481
- -webkit-animation-name: pa-scroll-horizontal;
6482
- animation-name: pa-scroll-horizontal; }
6483
-
6484
- .pa-vertical-mouse-scroll {
6485
- -webkit-animation-name: pa-scroll-vertical;
6486
- animation-name: pa-scroll-vertical; }
6487
-
6488
- @-webkit-keyframes pa-scroll-vertical {
6489
- 0% {
6490
- -webkit-transform: translateY(0px);
6491
- transform: translateY(0px); }
6492
- 100% {
6493
- -webkit-transform: translateY(5px);
6494
- transform: translateY(5px); } }
6495
-
6496
- @keyframes pa-scroll-vertical {
6497
- 0% {
6498
- -webkit-transform: translateY(0px);
6499
- transform: translateY(0px); }
6500
- 100% {
6501
- -webkit-transform: translateY(5px);
6502
- transform: translateY(5px); } }
6503
-
6504
- @-webkit-keyframes pa-scroll-horizontal {
6505
- 0% {
6506
- -webkit-transform: translateX(0px);
6507
- transform: translateX(0px); }
6508
- 100% {
6509
- -webkit-transform: translateX(5px);
6510
- transform: translateX(5px); } }
6511
-
6512
- @keyframes pa-scroll-horizontal {
6513
- 0% {
6514
- -webkit-transform: translateX(0px);
6515
- transform: translateX(0px); }
6516
- 100% {
6517
- -webkit-transform: translateX(5px);
6518
- transform: translateX(5px); } }
6519
-
6520
- /********* Premium Lottie Animations *********/
6521
- /*********************************************/
6522
- .elementor-widget-premium-lottie .premium-lottie-animation {
6523
- position: relative;
6524
- -js-display: inline-flex;
6525
- display: -webkit-inline-box;
6526
- display: -webkit-inline-flex;
6527
- display: -moz-inline-box;
6528
- display: -ms-inline-flexbox;
6529
- display: inline-flex;
6530
- -webkit-transition: all 0.3s ease-in-out;
6531
- transition: all 0.3s ease-in-out; }
6532
- .elementor-widget-premium-lottie .premium-lottie-animation a {
6533
- position: absolute;
6534
- left: 0;
6535
- top: 0;
6536
- width: 100%;
6537
- height: 100%;
6538
- z-index: 2; }
6539
-
6540
- /**************** Premium Bullet List ****************/
6541
- /*****************************************************/
6542
- .premium-bullet-list-box {
6543
- -js-display: flex;
6544
- display: -webkit-box;
6545
- display: -webkit-flex;
6546
- display: -moz-box;
6547
- display: -ms-flexbox;
6548
- display: flex;
6549
- -webkit-flex-wrap: wrap;
6550
- -ms-flex-wrap: wrap;
6551
- flex-wrap: wrap;
6552
- -webkit-box-orient: vertical;
6553
- -webkit-box-direction: normal;
6554
- -webkit-flex-direction: column;
6555
- -moz-box-orient: vertical;
6556
- -moz-box-direction: normal;
6557
- -ms-flex-direction: column;
6558
- flex-direction: column; }
6559
- .premium-bullet-list-box .premium-bullet-list-content-grow-lc {
6560
- -webkit-transform-origin: left center;
6561
- -ms-transform-origin: left center;
6562
- transform-origin: left center; }
6563
- .premium-bullet-list-box .premium-bullet-list-content-grow-rc {
6564
- -webkit-transform-origin: right center;
6565
- -ms-transform-origin: right center;
6566
- transform-origin: right center; }
6567
- .premium-bullet-list-box .premium-bullet-list-content-grow-cc {
6568
- -webkit-transform-origin: center center;
6569
- -ms-transform-origin: center center;
6570
- transform-origin: center center; }
6571
-
6572
- .premium-bullet-list-content {
6573
- -js-display: flex;
6574
- display: -webkit-box;
6575
- display: -webkit-flex;
6576
- display: -moz-box;
6577
- display: -ms-flexbox;
6578
- display: flex;
6579
- -webkit-transition: all 0.3s ease-in-out;
6580
- transition: all 0.3s ease-in-out;
6581
- width: auto;
6582
- position: relative; }
6583
- .premium-bullet-list-content .premium-bullet-list-text span,
6584
- .premium-bullet-list-content .premium-bullet-list-wrapper {
6585
- display: inline-block;
6586
- -webkit-align-self: center;
6587
- -ms-flex-item-align: center;
6588
- align-self: center;
6589
- -webkit-transition: all 0.3s ease-in-out;
6590
- transition: all 0.3s ease-in-out; }
6591
- .premium-bullet-list-content .premium-bullet-list-text span {
6592
- margin: 0 5px; }
6593
- .premium-bullet-list-content .premium-bullet-list-icon-text p {
6594
- font-size: 18px;
6595
- background-color: #eee;
6596
- padding: 1px 5px;
6597
- -webkit-border-radius: 2px;
6598
- border-radius: 2px; }
6599
- .premium-bullet-list-content .premium-bullet-list-text span,
6600
- .premium-bullet-list-content .premium-bullet-list-icon-text p,
6601
- .premium-bullet-list-content .premium-bullet-list-wrapper img,
6602
- .premium-bullet-list-content .premium-bullet-list-wrapper svg,
6603
- .premium-bullet-list-content .premium-bullet-list-wrapper i {
6604
- -webkit-transition: all 0.3s ease-in-out;
6605
- transition: all 0.3s ease-in-out; }
6606
- .premium-bullet-list-content .premium-bullet-list-wrapper {
6607
- position: relative;
6608
- line-height: 0; }
6609
- .premium-bullet-list-content .premium-bullet-list-wrapper img,
6610
- .premium-bullet-list-content .premium-bullet-list-wrapper svg {
6611
- width: 30px !important;
6612
- height: 30px !important;
6613
- position: relative;
6614
- z-index: 500; }
6615
- .premium-bullet-list-content .premium-bullet-list-wrapper i,
6616
- .premium-bullet-list-content .premium-bullet-list-wrapper .premium-bullet-list-icon-text {
6617
- position: relative;
6618
- z-index: 500; }
6619
- .premium-bullet-list-content .premium-bullet-list-wrapper i {
6620
- width: 1.25em; }
6621
- .premium-bullet-list-content .premium-bullet-list-link {
6622
- position: absolute;
6623
- top: 0;
6624
- left: 0;
6625
- width: 100%;
6626
- height: 100%;
6627
- z-index: 1000; }
6628
-
6629
- .premium-bullet-list-content:not(:last-of-type) .premium-bullet-list-connector {
6630
- width: 100%;
6631
- height: 100%;
6632
- position: absolute;
6633
- top: 0.5em;
6634
- z-index: 100;
6635
- -js-display: flex;
6636
- display: -webkit-box;
6637
- display: -webkit-flex;
6638
- display: -moz-box;
6639
- display: -ms-flexbox;
6640
- display: flex;
6641
- -webkit-box-pack: center;
6642
- -webkit-justify-content: center;
6643
- -moz-box-pack: center;
6644
- -ms-flex-pack: center;
6645
- justify-content: center; }
6646
- .premium-bullet-list-content:not(:last-of-type) .premium-bullet-list-connector .premium-icon-connector-content:after {
6647
- content: "";
6648
- border-right-width: 1px;
6649
- border-right-style: solid;
6650
- border-color: #333333;
6651
- display: block;
6652
- height: 100%; }
6653
-
6654
- li.premium-bullet-list-content.premium-bullet-list-content-inline {
6655
- -webkit-align-self: center;
6656
- -ms-flex-item-align: center;
6657
- align-self: center;
6658
- z-index: 2; }
6659
-
6660
- li.premium-bullet-list-content.premium-bullet-list-content-inline:not(:first-child) {
6661
- margin: 0 3px; }
6662
-
6663
- li.premium-bullet-list-content.premium-bullet-list-content-inline:first-child {
6664
- margin: 0 3px 0 0; }
6665
-
6666
- .premium-bullet-list-divider:not(:last-child) {
6667
- width: 100%;
6668
- -webkit-box-flex: 0;
6669
- -webkit-flex: 0 0 100%;
6670
- -moz-box-flex: 0;
6671
- -ms-flex: 0 0 100%;
6672
- flex: 0 0 100%;
6673
- overflow: hidden; }
6674
-
6675
- .premium-bullet-list-divider:not(:last-child):after {
6676
- content: "";
6677
- display: block;
6678
- border-top-style: solid;
6679
- border-top-width: 1px; }
6680
-
6681
- .premium-bullet-list-divider-inline:not(:last-child) {
6682
- float: right;
6683
- display: inline-block;
6684
- position: relative;
6685
- height: 100%;
6686
- overflow: hidden;
6687
- -webkit-align-self: center;
6688
- -ms-flex-item-align: center;
6689
- align-self: center;
6690
- margin: 0 3px; }
6691
-
6692
- .premium-bullet-list-divider-inline:not(:last-child):after {
6693
- content: "";
6694
- display: block;
6695
- border-left-width: 1px;
6696
- height: 33px;
6697
- border-left-style: solid; }
6698
-
6699
- .premium-bullet-list-icon-text {
6700
- line-height: 1.5; }
6701
-
6702
- .premium-bullet-list-icon-text p,
6703
- ul.premium-bullet-list-box,
6704
- li.premium-bullet-list-content {
6705
- margin: 0; }
6706
-
6707
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper i,
6708
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-text span,
6709
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-icon-text p {
6710
- color: transparent !important;
6711
- text-shadow: 0 0 3px #aaa; }
6712
-
6713
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-icon-connector-content,
6714
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper .premium-lottie-animation svg,
6715
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper img,
6716
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-badge {
6717
- -webkit-filter: blur(3px);
6718
- filter: blur(3px); }
6719
-
6720
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper i,
6721
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-text span,
6722
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-icon-text p {
6723
- color: #aaa !important;
6724
- text-shadow: 0 0px 0 transparent; }
6725
-
6726
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-icon-connector-content,
6727
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper .premium-lottie-animation svg,
6728
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper img,
6729
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-badge {
6730
- -webkit-filter: none;
6731
- filter: none; }
6732
-
6733
- .premium-bullet-list-content .premium-bullet-list-badge {
6734
- font-size: 11px;
6735
- top: auto;
6736
- min-width: -webkit-max-content;
6737
- min-width: -moz-max-content;
6738
- min-width: max-content;
6739
- height: -webkit-fit-content;
6740
- height: -moz-fit-content;
6741
- height: fit-content; }
6742
-
6743
- .premium-bullet-list-content .premium-bullet-list-icon-text p {
6744
- font-size: 13px; }
6745
-
6746
- .premium-bullet-list-gradient-effect[data-text] {
6747
- display: inline-block;
6748
- position: relative;
6749
- text-decoration: none; }
6750
-
6751
- .premium-bullet-list-gradient-effect[data-text]::before {
6752
- content: attr(data-text);
6753
- position: absolute;
6754
- z-index: 1;
6755
- overflow: hidden;
6756
- -webkit-clip-path: polygon(0 0, 1px 0, 1px 100%, 0 100%);
6757
- clip-path: polygon(0 0, 1px 0, 1px 100%, 0 100%);
6758
- -webkit-background-clip: text;
6759
- background-clip: text;
6760
- -webkit-text-fill-color: transparent;
6761
- -webkit-transition: all 0.4s ease;
6762
- transition: all 0.4s ease; }
6763
-
6764
- .premium-bullet-list-content:hover .premium-bullet-list-gradient-effect[data-text]::before,
6765
- .premium-bullet-list-content:focus .premium-bullet-list-gradient-effect[data-text]::before {
6766
- -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
6767
- clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
6768
-
6769
- ul[data-list-animation*="animated-"] .premium-bullet-list-divider,
6770
- ul[data-list-animation*="animated-"] .premium-bullet-list-content,
6771
- ul[data-list-animation*="animated-"] .premium-bullet-list-divider-inline {
6772
- opacity: 0; }
6773
-
6774
- .premium-bullet-list-content-grow-effect:hover {
6775
- -webkit-transform: scale(1.07);
6776
- -ms-transform: scale(1.07);
6777
- transform: scale(1.07); }
6778
-
6779
- @keyframes spin {
6780
- 100% {
6781
- -webkit-transform: rotate(360deg);
6782
- transform: rotate(360deg); } }
6783
-
6784
- /********** Premium Woo Products **********/
6785
- /******************************************/
6786
- .ast-single-post .entry-content .premium-woocommerce a {
6787
- text-decoration: none; }
6788
-
6789
- .premium-woocommerce .premium-woo-qv-btn {
6790
- cursor: pointer; }
6791
-
6792
- .premium-woocommerce:not(.premium-woo-skin-grid-7) li.product .star-rating {
6793
- margin: 0 auto 0.5em; }
6794
-
6795
- .premium-woocommerce:not(.premium-woo-skin-grid-10) .premium-woo-product-sale-wrap .premium-woo-product-onsale,
6796
- .premium-woocommerce:not(.premium-woo-skin-grid-10) .premium-woo-product-featured-wrap .premium-woo-product-featured {
6797
- display: block;
6798
- text-align: center;
6799
- color: #fff;
6800
- min-width: 2em;
6801
- min-height: 2em;
6802
- line-height: 2em;
6803
- padding: 0.3em 0.6em;
6804
- margin: 0.5em 0.6em; }
6805
-
6806
- .premium-woocommerce .pa-out-of-stock {
6807
- display: block;
6808
- text-align: center;
6809
- color: #fff;
6810
- min-width: 2em;
6811
- min-height: 2em;
6812
- line-height: 2em;
6813
- padding: 0.3em 0.6em;
6814
- margin: 0.5em 0.6em; }
6815
-
6816
- .premium-woocommerce .woocommerce-loop-product__title {
6817
- margin-bottom: 0.5em;
6818
- font-size: 1em;
6819
- -webkit-transition: all 0.3s ease-in-out;
6820
- transition: all 0.3s ease-in-out; }
6821
-
6822
- .premium-woocommerce .premium-woo-product-category {
6823
- display: block;
6824
- font-size: 0.85em;
6825
- margin-bottom: 0.5em;
6826
- line-height: 1.3; }
6827
-
6828
- .premium-woocommerce .star-rating {
6829
- display: block;
6830
- float: none;
6831
- -webkit-backface-visibility: hidden;
6832
- backface-visibility: hidden;
6833
- overflow: hidden;
6834
- position: relative;
6835
- height: 1em;
6836
- line-height: 1;
6837
- font-size: 0.857em;
6838
- width: 5.4em;
6839
- font-family: "star"; }
6840
- .premium-woocommerce .star-rating::before {
6841
- content: "\73\73\73\73\73";
6842
- color: #54595f;
6843
- float: left;
6844
- top: 0;
6845
- left: 0;
6846
- position: absolute; }
6847
- .premium-woocommerce .star-rating span {
6848
- overflow: hidden;
6849
- float: left;
6850
- top: 0;
6851
- left: 0;
6852
- position: absolute;
6853
- padding-top: 1.5em; }
6854
- .premium-woocommerce .star-rating span::before {
6855
- content: "\53\53\53\53\53";
6856
- color: inherit;
6857
- top: 0;
6858
- position: absolute;
6859
- left: 0; }
6860
-
6861
- .premium-woocommerce .premium-woo-products-inner ul.products {
6862
- -js-display: flex;
6863
- display: -webkit-box;
6864
- display: -webkit-flex;
6865
- display: -moz-box;
6866
- display: -ms-flexbox;
6867
- display: flex;
6868
- margin: 0;
6869
- padding: 0;
6870
- -webkit-flex-wrap: wrap;
6871
- -ms-flex-wrap: wrap;
6872
- flex-wrap: wrap;
6873
- list-style: none outside;
6874
- -webkit-column-gap: 0;
6875
- -moz-column-gap: 0;
6876
- column-gap: 0; }
6877
- .premium-woocommerce .premium-woo-products-inner ul.products li.product {
6878
- margin: 0 0 10px;
6879
- padding: 0 10px; }
6880
- .premium-woocommerce .premium-woo-products-inner ul.products li.product .premium-woo-product-wrapper {
6881
- overflow: hidden;
6882
- -webkit-transition: all 0.3s ease-in-out;
6883
- transition: all 0.3s ease-in-out; }
6884
-
6885
- .premium-woocommerce .woocommerce-loop-product__link {
6886
- position: relative;
6887
- display: block !important;
6888
- overflow: hidden;
6889
- -webkit-transition: all 0.3s ease-in-out;
6890
- transition: all 0.3s ease-in-out; }
6891
-
6892
- .premium-woocommerce .premium-woo-ribbon-container,
6893
- .premium-woocommerce .pa-out-of-stock {
6894
- position: absolute;
6895
- z-index: 9; }
6896
-
6897
- .premium-woocommerce .premium-woo-ribbon-container {
6898
- top: 0;
6899
- left: 0; }
6900
-
6901
- .premium-woocommerce .pa-out-of-stock {
6902
- top: 7px;
6903
- left: 9px;
6904
- margin: 0; }
6905
-
6906
- .premium-woo-product-thumbnail {
6907
- position: relative;
6908
- overflow: hidden; }
6909
- .premium-woo-product-thumbnail .woocommerce-loop-product__link img {
6910
- margin: 0;
6911
- width: 100%; }
6912
-
6913
- .premium-woo-product-sale-wrap,
6914
- .premium-woo-product-featured-wrap {
6915
- margin: 0; }
6916
-
6917
- .premium-woocommerce .premium-woo-products-details-wrap {
6918
- padding: 1em 1.2em; }
6919
- .premium-woocommerce .premium-woo-products-details-wrap .button {
6920
- display: inline-block;
6921
- background-color: #6ec1e4;
6922
- color: #fff;
6923
- margin: 0.5em 0;
6924
- line-height: 1.3;
6925
- padding: 10px 40px;
6926
- font-size: 100%;
6927
- cursor: pointer;
6928
- text-decoration: none;
6929
- overflow: visible;
6930
- font-weight: 700;
6931
- background-image: none;
6932
- border: none;
6933
- -webkit-border-radius: 0px;
6934
- border-radius: 0px;
6935
- -webkit-box-shadow: none;
6936
- box-shadow: none;
6937
- text-shadow: none;
6938
- -webkit-transition: all 0.3s ease-in-out;
6939
- transition: all 0.3s ease-in-out; }
6940
-
6941
- .premium-woocommerce li.product .price {
6942
- display: block;
6943
- line-height: 1.3;
6944
- font-weight: 700;
6945
- margin-bottom: 0.5em;
6946
- font-size: 0.9em; }
6947
- .premium-woocommerce li.product .price del {
6948
- display: inline-block;
6949
- font-weight: 400;
6950
- background: transparent;
6951
- opacity: 1; }
6952
- .premium-woocommerce li.product .price ins {
6953
- display: inline-block;
6954
- background: transparent;
6955
- text-decoration: none;
6956
- font-weight: inherit; }
6957
- .premium-woocommerce li.product .price .amount {
6958
- color: inherit !important; }
6959
-
6960
- .premium-woocommerce li.product .premium-woo-product-desc p {
6961
- margin: 0; }
6962
-
6963
- .premium-woo-product-align-left .premium-woocommerce li.product .star-rating {
6964
- margin-left: 0;
6965
- margin-right: auto; }
6966
-
6967
- .premium-woo-product-align-center .premium-woocommerce li.product .star-rating {
6968
- margin-left: auto;
6969
- margin-right: auto; }
6970
-
6971
- .premium-woo-product-align-right .premium-woocommerce li.product .star-rating {
6972
- margin-left: auto;
6973
- margin-right: 0; }
6974
-
6975
- .premium-woo-products-pagination ul.page-numbers {
6976
- -js-display: flex;
6977
- display: -webkit-box;
6978
- display: -webkit-flex;
6979
- display: -moz-box;
6980
- display: -ms-flexbox;
6981
- display: flex;
6982
- list-style-type: none;
6983
- margin: 0;
6984
- margin-top: 10px;
6985
- padding: 0;
6986
- border: none;
6987
- -webkit-box-pack: center;
6988
- -webkit-justify-content: center;
6989
- -moz-box-pack: center;
6990
- -ms-flex-pack: center;
6991
- justify-content: center; }
6992
- .premium-woo-products-pagination ul.page-numbers li {
6993
- margin: 0 0.4em 0.4em 0;
6994
- padding: 0;
6995
- text-align: center; }
6996
- .premium-woo-products-pagination ul.page-numbers li .page-numbers {
6997
- margin: 0;
6998
- text-decoration: none;
6999
- color: #000;
7000
- border: 1px solid #54595f;
7001
- padding: 0;
7002
- line-height: 1;
7003
- font-size: 1em;
7004
- font-weight: 400;
7005
- padding: 0.75em;
7006
- display: block;
7007
- min-width: 2.5em;
7008
- -webkit-transition: all 0.3s ease-in-out;
7009
- transition: all 0.3s ease-in-out; }
7010
- .premium-woo-products-pagination ul.page-numbers li .page-numbers:hover, .premium-woo-products-pagination ul.page-numbers li .page-numbers.current {
7011
- background-color: #54595f;
7012
- color: #fff;
7013
- outline: none; }
7014
-
7015
- .premium-woocommerce .premium-loading-feed,
7016
- .premium-woo-quick-view-loader .premium-loading-feed {
7017
- display: block;
7018
- position: absolute;
7019
- width: 100%;
7020
- height: 100%;
7021
- top: 0px;
7022
- left: 0px;
7023
- bottom: 0px;
7024
- right: 0px;
7025
- background: rgba(255, 255, 255, 0.2);
7026
- -js-display: flex;
7027
- display: -webkit-box;
7028
- display: -webkit-flex;
7029
- display: -moz-box;
7030
- display: -ms-flexbox;
7031
- display: flex;
7032
- -webkit-box-align: center;
7033
- -webkit-align-items: center;
7034
- -moz-box-align: center;
7035
- -ms-flex-align: center;
7036
- align-items: center; }
7037
-
7038
- /**
7039
- * Image Hover Effects
7040
- */
7041
- .premium-woocommerce .woocommerce-loop-product__link img {
7042
- -webkit-transition: all 0.3s ease-in-out;
7043
- transition: all 0.3s ease-in-out; }
7044
-
7045
- .premium-woo-product__hover-zoomout .woocommerce-loop-product__link img {
7046
- -webkit-transform: scale(1.2);
7047
- -ms-transform: scale(1.2);
7048
- transform: scale(1.2); }
7049
-
7050
- .premium-woo-product__hover-zoomout li.product:hover .woocommerce-loop-product__link img {
7051
- -webkit-transform: none;
7052
- -ms-transform: none;
7053
- transform: none; }
7054
-
7055
- .premium-woo-product__hover-zoomin .woocommerce-loop-product__link img {
7056
- -webkit-transform: none;
7057
- -ms-transform: none;
7058
- transform: none; }
7059
-
7060
- .premium-woo-product__hover-zoomin li.product:hover .woocommerce-loop-product__link img {
7061
- -webkit-transform: scale(1.2);
7062
- -ms-transform: scale(1.2);
7063
- transform: scale(1.2); }
7064
-
7065
- .premium-woo-product__hover-gray .woocommerce-loop-product__link img {
7066
- -webkit-filter: grayscale(100%);
7067
- filter: grayscale(100%); }
7068
-
7069
- .premium-woo-product__hover-gray li.product:hover .woocommerce-loop-product__link img {
7070
- -webkit-filter: grayscale(0%);
7071
- filter: grayscale(0%); }
7072
-
7073
- .premium-woo-product__hover-sepia .woocommerce-loop-product__link img {
7074
- -webkit-filter: sepia(30%);
7075
- filter: sepia(30%); }
7076
-
7077
- .premium-woo-product__hover-sepia li.product:hover .woocommerce-loop-product__link img {
7078
- -webkit-filter: sepia(0%);
7079
- filter: sepia(0%); }
7080
-
7081
- .premium-woo-product__hover-bright .woocommerce-loop-product__link img {
7082
- -webkit-filter: brightness(1);
7083
- filter: brightness(1); }
7084
-
7085
- .premium-woo-product__hover-bright li.product:hover .woocommerce-loop-product__link img {
7086
- -webkit-filter: brightness(1.2);
7087
- filter: brightness(1.2); }
7088
-
7089
- .premium-woo-product__hover-trans .woocommerce-loop-product__link img {
7090
- -webkit-transform: translateX(-15px) scale(1.1);
7091
- -ms-transform: translateX(-15px) scale(1.1);
7092
- transform: translateX(-15px) scale(1.1); }
7093
-
7094
- .premium-woo-product__hover-trans li.product:hover .woocommerce-loop-product__link img {
7095
- -webkit-transform: translateX(0px) scale(1.1);
7096
- -ms-transform: translateX(0px) scale(1.1);
7097
- transform: translateX(0px) scale(1.1); }
7098
-
7099
- .premium-woo-product__hover-scale li.product:hover .woocommerce-loop-product__link img {
7100
- -webkit-transform: scaleX(1.3) scaleY(1.3) rotate(5deg);
7101
- -ms-transform: scaleX(1.3) scaleY(1.3) rotate(5deg);
7102
- transform: scaleX(1.3) scaleY(1.3) rotate(5deg); }
7103
-
7104
- .premium-woocommerce .premium-woo-product__on_hover {
7105
- position: absolute;
7106
- top: 0;
7107
- right: 0;
7108
- bottom: 0;
7109
- left: 0;
7110
- height: 100%;
7111
- opacity: 0; }
7112
-
7113
- .premium-woo-product__hover-swap li.product:hover .premium-woo-product__on_hover {
7114
- opacity: 1; }
7115
-
7116
- .premium-woo-skin-grid-1 .premium-woo-qv-btn,
7117
- .premium-woo-skin-grid-3 .premium-woo-qv-btn,
7118
- .premium-woo-skin-grid-4 .premium-woo-qv-btn {
7119
- position: absolute;
7120
- bottom: 0;
7121
- left: 0;
7122
- width: 100%;
7123
- text-align: center;
7124
- padding: 5px;
7125
- background: rgba(2, 2, 2, 0.5);
7126
- color: #fff;
7127
- -webkit-transition: all 0.3s ease-in-out;
7128
- transition: all 0.3s ease-in-out;
7129
- z-index: 2;
7130
- -webkit-transform: translateY(100%);
7131
- -ms-transform: translateY(100%);
7132
- transform: translateY(100%); }
7133
-
7134
- .premium-woo-skin-grid-4 .premium-woo-qv-btn {
7135
- -webkit-transition-delay: 0.1s;
7136
- transition-delay: 0.1s; }
7137
-
7138
- .premium-woo-skin-grid-1 .premium-woo-qv-icon,
7139
- .premium-woo-skin-grid-3 .premium-woo-qv-icon,
7140
- .premium-woo-skin-grid-4 .premium-woo-qv-icon,
7141
- .premium-woo-skin-grid-6 .premium-woo-qv-icon {
7142
- margin-left: 0.5em; }
7143
-
7144
- .premium-woo-product-thumbnail:hover .premium-woo-qv-btn-translate {
7145
- -webkit-transform: translateY(0);
7146
- -ms-transform: translateY(0);
7147
- transform: translateY(0); }
7148
-
7149
- .premium-woo-product-wrapper .premium-woo-qv-data {
7150
- position: absolute;
7151
- top: 0;
7152
- left: 0;
7153
- width: 100%;
7154
- height: 100%;
7155
- z-index: 1;
7156
- overflow: hidden;
7157
- cursor: pointer; }
7158
-
7159
  /**
7160
- * Skin 1,4
7161
- */
7162
- .premium-woo-skin-grid-1 .premium-woo-product-actions-wrapper,
7163
- .premium-woo-skin-grid-4 .premium-woo-product-actions-wrapper {
7164
- position: absolute;
7165
- top: 0.7em;
7166
- right: 1em;
7167
- -webkit-transform: translate3d(15px, 0, 0);
7168
- transform: translate3d(15px, 0, 0);
7169
- -webkit-transition: all 0.3s ease-in-out;
7170
- transition: all 0.3s ease-in-out;
7171
- opacity: 0;
7172
- z-index: 9; }
7173
-
7174
- .premium-woocommerce .premium-woo-product-actions-wrapper .premium-woo-cart-btn {
7175
- position: relative;
7176
- display: block;
7177
- margin: 0 0 3px;
7178
- background: #fff;
7179
- text-align: center;
7180
- outline: 0;
7181
- -webkit-transition: all 0.3s ease-in-out;
7182
- transition: all 0.3s ease-in-out; }
7183
-
7184
- .premium-woocommerce .premium-woo-product-actions-wrapper .premium-woo-add-cart-icon {
7185
- display: block;
7186
- color: #54595f;
7187
- width: 30px;
7188
- line-height: 30px;
7189
- height: 30px;
7190
- cursor: pointer;
7191
- -webkit-transition: all 0.3s ease-in-out;
7192
- transition: all 0.3s ease-in-out; }
7193
-
7194
- .premium-woo-skin-grid-1 li.product:hover .premium-woo-product-actions-wrapper,
7195
- .premium-woo-skin-grid-4 li.product:hover .premium-woo-product-actions-wrapper {
7196
- -webkit-transform: translate3d(5px, 0, 0);
7197
- transform: translate3d(5px, 0, 0);
7198
- opacity: 1; }
7199
-
7200
- .premium-woocommerce .premium-woo-cart-btn.adding .premium-woo-add-cart-icon {
7201
- -webkit-animation: spin 2s linear infinite;
7202
- animation: spin 2s linear infinite; }
7203
-
7204
- .premium-woocommerce .premium-woo-cart-btn.adding .premium-woo-add-cart-icon::before {
7205
- content: "\f013"; }
7206
-
7207
- .premium-woocommerce .premium-woo-cart-btn.added .premium-woo-add-cart-icon::before {
7208
- content: "\f00c"; }
7209
-
 
 
 
 
 
 
 
 
7210
  /**
7211
- * Skin 2
7212
- */
7213
- .premium-woo-skin-grid-2 li.product .premium-woo-products-details-wrap {
7214
- position: absolute;
7215
- background: #fff;
7216
- bottom: 0;
7217
- left: 0;
7218
- width: 100%;
7219
- z-index: 2;
7220
- padding: 0;
7221
- opacity: 0;
7222
- -webkit-transition: opacity 0.2s, -webkit-transform 0.4s;
7223
- transition: opacity 0.2s, -webkit-transform 0.4s;
7224
- transition: transform 0.4s, opacity 0.2s;
7225
- transition: transform 0.4s, opacity 0.2s, -webkit-transform 0.4s;
7226
- -webkit-transform: translateZ(0) translateY(5px);
7227
- transform: translateZ(0) translateY(5px); }
7228
-
7229
- .premium-woo-skin-grid-2 .premium-woo-product-details {
7230
- padding: 15px 0; }
7231
-
7232
- .premium-woo-skin-grid-2 li.product:hover .premium-woo-products-details-wrap {
7233
- opacity: 1;
7234
- -webkit-transform: translateZ(0) translateY(0);
7235
- transform: translateZ(0) translateY(0); }
7236
-
7237
- .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper {
7238
- position: static;
7239
- -js-display: flex;
7240
- display: -webkit-box;
7241
- display: -webkit-flex;
7242
- display: -moz-box;
7243
- display: -ms-flexbox;
7244
- display: flex;
7245
- -webkit-box-orient: horizontal;
7246
- -webkit-box-direction: reverse;
7247
- -webkit-flex-direction: row-reverse;
7248
- -moz-box-orient: horizontal;
7249
- -moz-box-direction: reverse;
7250
- -ms-flex-direction: row-reverse;
7251
- flex-direction: row-reverse; }
7252
-
7253
- .premium-woo-skin-grid-2 .premium-woo-product-actions-wrapper > * {
7254
- -webkit-box-flex: 1;
7255
- -webkit-flex: 1;
7256
- -moz-box-flex: 1;
7257
- -ms-flex: 1;
7258
- flex: 1;
7259
- min-width: 50%; }
7260
-
7261
- .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper .button {
7262
- -js-display: flex;
7263
- display: -webkit-box;
7264
- display: -webkit-flex;
7265
- display: -moz-box;
7266
- display: -ms-flexbox;
7267
- display: flex;
7268
- margin: 0;
7269
- text-align: center;
7270
- -webkit-box-pack: center;
7271
- -webkit-justify-content: center;
7272
- -moz-box-pack: center;
7273
- -ms-flex-pack: center;
7274
- justify-content: center;
7275
- -webkit-box-align: center;
7276
- -webkit-align-items: center;
7277
- -moz-box-align: center;
7278
- -ms-flex-align: center;
7279
- align-items: center; }
7280
-
7281
- .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper .premium-woo-qv-btn {
7282
- background-color: #54595f; }
7283
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7284
  /**
7285
- * Skin 4
7286
- */
7287
- .premium-woo-skin-grid-4 li.product .premium-woo-products-details-wrap {
7288
- position: absolute;
7289
- left: 0;
7290
- right: 0;
7291
- top: 50%;
7292
- -webkit-transform: scale(0.9) translateZ(0) translateY(-50%);
7293
- transform: scale(0.9) translateZ(0) translateY(-50%);
7294
- text-align: center;
7295
- z-index: 2;
7296
- opacity: 0;
7297
- -webkit-transition: opacity 0.5s, -webkit-transform 0.3s;
7298
- transition: opacity 0.5s, -webkit-transform 0.3s;
7299
- transition: opacity 0.5s, transform 0.3s;
7300
- transition: opacity 0.5s, transform 0.3s, -webkit-transform 0.3s; }
7301
-
7302
- .premium-woo-skin-grid-4 li.product .premium-woo-product-overlay,
7303
- .premium-woo-skin-grid-8 li.product .premium-woo-product-overlay {
7304
- position: absolute;
7305
- top: 0;
7306
- left: 0;
7307
- width: 100%;
7308
- height: 100%;
7309
- opacity: 0;
7310
- visibility: hidden;
7311
- background-color: rgba(27, 27, 23, 0.3);
7312
- -webkit-transition: all 0.25s ease-in-out;
7313
- transition: all 0.25s ease-in-out; }
7314
-
7315
- .premium-woo-skin-grid-4 li.product:hover .premium-woo-product-overlay,
7316
- .premium-woo-skin-grid-8 li.product:hover .premium-woo-product-overlay {
7317
- opacity: 1;
7318
- visibility: visible;
7319
- z-index: 1; }
7320
-
7321
- .premium-woo-skin-grid-4 li.product:hover .premium-woo-products-details-wrap {
7322
- -webkit-transform: scale(1) translateZ(0) translateY(-50%);
7323
- transform: scale(1) translateZ(0) translateY(-50%);
7324
- opacity: 1; }
7325
-
7326
  /**
7327
- * Skin 5
7328
- */
7329
- .premium-woo-skin-grid-5 li.product .premium-woo-product-actions-wrapper {
7330
- -js-display: flex;
7331
- display: -webkit-box;
7332
- display: -webkit-flex;
7333
- display: -moz-box;
7334
- display: -ms-flexbox;
7335
- display: flex; }
7336
- .premium-woo-skin-grid-5 li.product .premium-woo-product-actions-wrapper .premium-woo-qv-btn {
7337
- -js-display: flex;
7338
- display: -webkit-box;
7339
- display: -webkit-flex;
7340
- display: -moz-box;
7341
- display: -ms-flexbox;
7342
- display: flex;
7343
- -webkit-box-align: center;
7344
- -webkit-align-items: center;
7345
- -moz-box-align: center;
7346
- -ms-flex-align: center;
7347
- align-items: center;
7348
- background-color: #54595f;
7349
- padding: 10px;
7350
- -webkit-transition: all 0.25s ease 0s;
7351
- transition: all 0.25s ease 0s; }
7352
-
7353
- .premium-woo-skin-grid-5 li.product .premium-woo-products-details-wrap {
7354
- width: 75%; }
7355
-
7356
- .premium-woo-skin-grid-5 .premium-woo-product-wrapper {
7357
- -js-display: flex;
7358
- display: -webkit-box;
7359
- display: -webkit-flex;
7360
- display: -moz-box;
7361
- display: -ms-flexbox;
7362
- display: flex;
7363
- -webkit-box-align: center;
7364
- -webkit-align-items: center;
7365
- -moz-box-align: center;
7366
- -ms-flex-align: center;
7367
- align-items: center; }
7368
-
7369
- .premium-woo-product-align-right .premium-woo-skin-grid-5 .premium-woo-product-actions-wrapper {
7370
- -webkit-box-pack: end;
7371
- -webkit-justify-content: flex-end;
7372
- -moz-box-pack: end;
7373
- -ms-flex-pack: end;
7374
- justify-content: flex-end; }
7375
-
7376
- .premium-woo-product-align-center .premium-woo-skin-grid-5 .premium-woo-product-actions-wrapper {
7377
- -webkit-box-pack: center;
7378
- -webkit-justify-content: center;
7379
- -moz-box-pack: center;
7380
- -ms-flex-pack: center;
7381
- justify-content: center; }
7382
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7383
  /**
7384
- * Skin 6
7385
- */
7386
- .premium-woo-skin-grid-6 .premium-woo-qv-btn {
7387
- position: absolute;
7388
- top: 50%;
7389
- left: 50%;
7390
- min-width: 40%;
7391
- text-align: center;
7392
- padding: 5px;
7393
- background: rgba(2, 2, 2, 0.5);
7394
- color: #fff;
7395
- -webkit-transform: translate(-50%, -50%);
7396
- -ms-transform: translate(-50%, -50%);
7397
- transform: translate(-50%, -50%);
7398
- opacity: 0;
7399
- visibility: hidden;
7400
- -webkit-transition: all 0.3s ease-in-out;
7401
- transition: all 0.3s ease-in-out;
7402
- cursor: pointer;
7403
- z-index: 2; }
7404
-
7405
- .premium-woo-skin-grid-6 li.product:hover .premium-woo-qv-btn {
7406
- opacity: 1;
7407
- visibility: visible; }
7408
-
7409
- .premium-woo-product-align-right .premium-woo-skin-grid-6 li.product .premium-woo-product-info .star-rating,
7410
- .premium-woo-product-align-left .premium-woo-skin-grid-6 li.product .premium-woo-product-info .star-rating,
7411
- .premium-woo-product-align-right .premium-woo-skin-grid-7 li.product .premium-woo-product-info .star-rating,
7412
- .premium-woo-product-align-left .premium-woo-skin-grid-7 li.product .premium-woo-product-info .star-rating {
7413
- margin: 0; }
7414
-
7415
- .premium-woo-skin-grid-6 li.product .premium-woo-product-info {
7416
- -js-display: flex;
7417
- display: -webkit-box;
7418
- display: -webkit-flex;
7419
- display: -moz-box;
7420
- display: -ms-flexbox;
7421
- display: flex;
7422
- -webkit-box-pack: justify;
7423
- -webkit-justify-content: space-between;
7424
- -moz-box-pack: justify;
7425
- -ms-flex-pack: justify;
7426
- justify-content: space-between; }
7427
-
7428
- .premium-woo-product-align-center .premium-woocommerce li.product .premium-woo-product-info {
7429
- -webkit-box-orient: vertical;
7430
- -webkit-box-direction: normal;
7431
- -webkit-flex-direction: column;
7432
- -moz-box-orient: vertical;
7433
- -moz-box-direction: normal;
7434
- -ms-flex-direction: column;
7435
- flex-direction: column; }
7436
-
7437
- .premium-woo-product-align-right .premium-woocommerce li.product .premium-woo-product-info {
7438
- -webkit-box-orient: horizontal;
7439
- -webkit-box-direction: reverse;
7440
- -webkit-flex-direction: row-reverse;
7441
- -moz-box-orient: horizontal;
7442
- -moz-box-direction: reverse;
7443
- -ms-flex-direction: row-reverse;
7444
- flex-direction: row-reverse; }
7445
-
7446
- .premium-woo-skin-grid-6 li.product .premium-woo-product-gallery-images {
7447
- -js-display: flex;
7448
- display: -webkit-box;
7449
- display: -webkit-flex;
7450
- display: -moz-box;
7451
- display: -ms-flexbox;
7452
- display: flex;
7453
- position: absolute;
7454
- bottom: 10px;
7455
- width: 100%;
7456
- -webkit-box-pack: center;
7457
- -webkit-justify-content: center;
7458
- -moz-box-pack: center;
7459
- -ms-flex-pack: center;
7460
- justify-content: center; }
7461
-
7462
- .premium-woo-product-gallery-images .premium-woo-product__gallery_image {
7463
- width: 20%;
7464
- margin: 0 0.2em;
7465
- border: 2px solid #aaa;
7466
- cursor: pointer; }
7467
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @charset "UTF-8";
2
+ @font-face {
3
+ font-family: "pa-elements";
4
+ src: url("../../editor/fonts/pa-elements.eot?9e1efm");
5
+ src: url("../../editor/fonts/pa-elements.eot?9e1efm#iefix") format("embedded-opentype"), url("../../editor/fonts/pa-elements.ttf?9e1efm") format("truetype"), url("../../editor/fonts/pa-elements.woff?9e1efm") format("woff"), url("../../editor/fonts/pa-elements.svg?9e1efm#pa-elements") format("svg");
6
+ font-weight: normal;
7
+ font-style: normal;
8
+ }
9
+ /**************** Premium Banner ****************/
10
+ /************************************************/
11
+ .elementor-widget-premium-addon-banner {
12
+ overflow: hidden; }
13
+
14
+ .premium-banner-ib {
15
+ display: block;
16
+ position: relative;
17
+ z-index: 1;
18
+ overflow: hidden;
19
+ margin: 0;
20
+ text-align: center;
21
+ -webkit-box-sizing: border-box;
22
+ -moz-box-sizing: border-box;
23
+ box-sizing: border-box; }
24
+ .premium-banner-ib img {
25
+ display: block;
26
+ position: relative; }
27
+
28
+ .premium-banner-img-wrap {
29
+ -js-display: flex;
30
+ display: -webkit-box;
31
+ display: -webkit-flex;
32
+ display: -moz-box;
33
+ display: -ms-flexbox;
34
+ display: flex;
35
+ height: 100%; }
36
+ .premium-banner-img-wrap .premium-banner-ib-img {
37
+ -webkit-flex-shrink: 0;
38
+ -ms-flex-negative: 0;
39
+ flex-shrink: 0; }
40
+
41
+ .premium-banner-ib-desc .premium-banner-read-more {
42
+ z-index: 100; }
43
+
44
+ .elementor-widget-premium-addon-banner .premium-banner-ib-title {
45
+ background: transparent; }
46
+
47
+ .premium-banner-ib *,
48
+ .premium-banner-ib .premium-banner-ib-desc {
49
+ -webkit-box-sizing: border-box;
50
+ -moz-box-sizing: border-box;
51
+ box-sizing: border-box; }
52
+
53
+ .premium-banner-ib img {
54
+ min-width: 100%;
55
+ max-width: 100%;
56
+ -webkit-transition: opacity 0.35s;
57
+ transition: opacity 0.35s; }
58
+
59
+ .premium-banner-ib .premium-banner-ib-desc {
60
+ padding: 15px;
61
+ -webkit-backface-visibility: hidden;
62
+ backface-visibility: hidden;
63
+ -webkit-box-sizing: border-box;
64
+ -moz-box-sizing: border-box;
65
+ box-sizing: border-box;
66
+ position: absolute;
67
+ top: 0;
68
+ left: 0;
69
+ width: 100%;
70
+ height: 100%; }
71
+
72
+ .premium-banner-ib .premium-banner-ib-link {
73
+ position: absolute;
74
+ top: 0;
75
+ left: 0;
76
+ width: 100%;
77
+ height: 100%;
78
+ z-index: 1000;
79
+ text-indent: 200%;
80
+ white-space: nowrap;
81
+ font-size: 0;
82
+ opacity: 0; }
83
+
84
+ .premium-banner-ib a.premium-banner-ib-link {
85
+ display: block;
86
+ background: 0 0; }
87
+
88
+ .premium-banner-animation1 img {
89
+ width: -webkit-calc(100% + 50px) !important;
90
+ width: calc(100% + 50px) !important;
91
+ max-width: -webkit-calc(100% + 50px) !important;
92
+ max-width: calc(100% + 50px) !important;
93
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
94
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
95
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
96
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
97
+ -webkit-transform: translate3d(-40px, 0, 0);
98
+ transform: translate3d(-40px, 0, 0); }
99
+
100
+ .premium-banner-animation2 .premium-banner-ib-title {
101
+ padding: 15px; }
102
+
103
+ .premium-banner-animation1 .premium-banner-ib-desc {
104
+ top: auto;
105
+ bottom: 0;
106
+ min-height: 25%;
107
+ height: auto;
108
+ max-height: 100%;
109
+ text-align: left; }
110
+
111
+ .premium-banner-animation1 .premium-banner-ib-content,
112
+ .premium-banner-animation1 .premium-banner-ib-title,
113
+ .premium-banner-animation1 .premium-banner-read-more {
114
+ -webkit-transform: translate3d(0, 40px, 0);
115
+ transform: translate3d(0, 40px, 0);
116
+ -webkit-transition-delay: 0.05s;
117
+ transition-delay: 0.05s;
118
+ -webkit-transition-duration: 0.35s;
119
+ transition-duration: 0.35s; }
120
+
121
+ .premium-banner-animation1 .premium-banner-ib-title {
122
+ -webkit-transition: -webkit-transform 0.35s;
123
+ transition: -webkit-transform 0.35s;
124
+ transition: transform 0.35s;
125
+ transition: transform 0.35s, -webkit-transform 0.35s; }
126
+
127
+ .premium-banner-animation1 .premium-banner-ib-content,
128
+ .premium-banner-animation1 .premium-banner-read-more {
129
+ margin-top: 10px;
130
+ opacity: 0;
131
+ -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
132
+ transition: opacity 0.2s, -webkit-transform 0.35s;
133
+ transition: opacity 0.2s, transform 0.35s;
134
+ transition: opacity 0.2s, transform 0.35s, -webkit-transform 0.35s; }
135
+
136
+ .premium-banner-animation1:hover .premium-banner-ib-content,
137
+ .premium-banner-animation1.active .premium-banner-ib-content,
138
+ .premium-banner-animation1:hover .premium-banner-read-more,
139
+ .premium-banner-animation1.active .premium-banner-read-more {
140
+ opacity: 1;
141
+ -webkit-transition-delay: 0.05s;
142
+ transition-delay: 0.05s;
143
+ -webkit-transition-duration: 0.35s;
144
+ transition-duration: 0.35s; }
145
+
146
+ .premium-banner-animation1:hover .premium-banner-ib-content,
147
+ .premium-banner-animation1.active .premium-banner-ib-content,
148
+ .premium-banner-animation1:hover .premium-banner-read-more,
149
+ .premium-banner-animation1.active .premium-banner-read-more,
150
+ .premium-banner-animation1:hover .premium-banner-ib-title,
151
+ .premium-banner-animation1.active .premium-banner-ib-title,
152
+ .premium-banner-animation1:hover img,
153
+ .premium-banner-animation1.active img {
154
+ -webkit-transform: translate3d(0, 0, 0);
155
+ transform: translate3d(0, 0, 0);
156
+ -webkit-transition-delay: 0.05s;
157
+ transition-delay: 0.05s;
158
+ -webkit-transition-duration: 0.35s;
159
+ transition-duration: 0.35s; }
160
+
161
+ .premium-banner-animation1.zoomout img,
162
+ .premium-banner-animation1.scale img {
163
+ -webkit-transform: translate3d(-40px, 0, 0) scale(1.1);
164
+ transform: translate3d(-40px, 0, 0) scale(1.1); }
165
+
166
+ .premium-banner-ib.sepia img {
167
+ -webkit-filter: sepia(30%);
168
+ filter: sepia(30%); }
169
+
170
+ .premium-banner-ib.bright img {
171
+ -webkit-filter: brightness(1);
172
+ filter: brightness(1); }
173
+
174
+ .premium-banner-ib.sepia:hover img {
175
+ -webkit-filter: sepia(0%);
176
+ filter: sepia(0%); }
177
+
178
+ .premium-banner-ib.bright:hover img {
179
+ -webkit-filter: brightness(1.2);
180
+ filter: brightness(1.2); }
181
+
182
+ .premium-banner-animation1.premium-banner-min-height img,
183
+ .premium-banner-animation2.premium-banner-min-height img,
184
+ .premium-banner-animation4.premium-banner-min-height img,
185
+ .premium-banner-animation5.premium-banner-min-height img,
186
+ .premium-banner-animation6.premium-banner-min-height img,
187
+ .premium-banner-animation13.premium-banner-min-height img {
188
+ height: auto; }
189
+
190
+ .premium-banner-animation2 img {
191
+ width: 100%; }
192
+
193
+ .premium-banner-animation2 .premium-banner-ib-desc::before {
194
+ position: absolute;
195
+ content: "";
196
+ top: 0;
197
+ left: 0;
198
+ width: 100%;
199
+ height: 100%;
200
+ opacity: 0;
201
+ -webkit-transform: translate3d(0, 50%, 0);
202
+ transform: translate3d(0, 50%, 0); }
203
+
204
+ .premium-banner-animation2 .premium-banner-ib-title {
205
+ position: absolute;
206
+ top: 50%;
207
+ left: 0;
208
+ width: 100%;
209
+ -webkit-transition: color 0.35s, -webkit-transform 0.35s;
210
+ transition: color 0.35s, -webkit-transform 0.35s;
211
+ transition: transform 0.35s, color 0.35s;
212
+ transition: transform 0.35s, color 0.35s, -webkit-transform 0.35s;
213
+ -webkit-transform: translate3d(0, -50%, 0);
214
+ transform: translate3d(0, -50%, 0); }
215
+
216
+ .premium-banner-animation2 .premium-banner-ib-content,
217
+ .premium-banner-animation2 .premium-banner-read-more,
218
+ .premium-banner-animation2 .premium-banner-ib-desc::before {
219
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
220
+ transition: opacity 0.35s, -webkit-transform 0.35s;
221
+ transition: opacity 0.35s, transform 0.35s;
222
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
223
+
224
+ .premium-banner-animation2 .premium-banner-ib-content,
225
+ .premium-banner-animation2 .premium-banner-read-more {
226
+ position: absolute;
227
+ bottom: 0;
228
+ left: 0;
229
+ padding: 15px;
230
+ width: 100%;
231
+ max-height: 50%;
232
+ opacity: 0;
233
+ -webkit-transform: translate3d(0, 10px, 0);
234
+ transform: translate3d(0, 10px, 0); }
235
+
236
+ .premium-banner-animation2:hover .premium-banner-ib-title,
237
+ .premium-banner-animation2.active .premium-banner-ib-title {
238
+ -webkit-transform: translate3d(0, -40px, 0);
239
+ transform: translate3d(0, -40px, 0); }
240
+
241
+ .premium-banner-animation2:hover .premium-banner-read-more,
242
+ .premium-banner-animation2.active .premium-banner-read-more,
243
+ .premium-banner-animation2:hover .premium-banner-ib-desc::before,
244
+ .premium-banner-animation2.active .premium-banner-ib-desc::before {
245
+ opacity: 1;
246
+ -webkit-transform: translate3d(0, 0, 0);
247
+ transform: translate3d(0, 0, 0); }
248
+
249
+ .premium-banner-animation2:hover .premium-banner-ib-content,
250
+ .premium-banner-animation2.active .premium-banner-ib-content {
251
+ opacity: 1;
252
+ -webkit-transform: translate3d(0, -30px, 0);
253
+ transform: translate3d(0, -30px, 0); }
254
+
255
+ .premium-banner-animation3 .premium-banner-ib-title {
256
+ position: absolute;
257
+ bottom: 0;
258
+ left: 0;
259
+ padding: 15px;
260
+ width: 100%;
261
+ text-align: left;
262
+ -webkit-transform: translate3d(0, -30px, 0);
263
+ transform: translate3d(0, -30px, 0); }
264
+
265
+ .premium-banner-animation3 .premium-banner-ib-desc::before,
266
+ .premium-banner-animation3 .premium-banner-ib-title {
267
+ -webkit-transition: -webkit-transform 0.35s;
268
+ transition: -webkit-transform 0.35s;
269
+ transition: transform 0.35s;
270
+ transition: transform 0.35s, -webkit-transform 0.35s; }
271
+
272
+ .premium-banner-animation3:hover .premium-banner-ib-desc::before,
273
+ .premium-banner-animation3.active .premium-banner-ib-desc::before,
274
+ .premium-banner-animation3:hover .premium-banner-ib-title,
275
+ .premium-banner-animation3.active .premium-banner-ib-title {
276
+ opacity: 1;
277
+ -webkit-transform: translate3d(0, 0, 0);
278
+ transform: translate3d(0, 0, 0); }
279
+
280
+ .premium-banner-animation3 .premium-banner-ib-content {
281
+ max-height: -webkit-calc(100% - 60px - 1.5em);
282
+ max-height: calc(100% - 60px - 1.5em);
283
+ overflow: hidden; }
284
+
285
+ .premium-banner-animation4 img {
286
+ width: -webkit-calc(100% + 40px) !important;
287
+ width: calc(100% + 40px) !important;
288
+ max-width: -webkit-calc(100% + 40px) !important;
289
+ max-width: calc(100% + 40px) !important; }
290
+
291
+ .premium-banner-animation4 .premium-banner-ib-desc {
292
+ padding: 30px; }
293
+ .premium-banner-animation4 .premium-banner-ib-desc::after {
294
+ position: absolute;
295
+ content: "";
296
+ opacity: 0; }
297
+ .premium-banner-animation4 .premium-banner-ib-desc::before {
298
+ position: absolute;
299
+ content: "";
300
+ opacity: 0;
301
+ top: 50px;
302
+ right: 30px;
303
+ bottom: 50px;
304
+ left: 30px;
305
+ border-top: 1px solid #fff;
306
+ border-bottom: 1px solid #fff;
307
+ -webkit-transform: scale(0, 1);
308
+ -ms-transform: scale(0, 1);
309
+ transform: scale(0, 1);
310
+ -webkit-transform-origin: 0 0;
311
+ -ms-transform-origin: 0 0;
312
+ transform-origin: 0 0; }
313
+ .premium-banner-animation4 .premium-banner-ib-desc::after {
314
+ top: 30px;
315
+ right: 50px;
316
+ bottom: 30px;
317
+ left: 50px;
318
+ border-right: 1px solid #fff;
319
+ border-left: 1px solid #fff;
320
+ -webkit-transform: scale(1, 0);
321
+ -ms-transform: scale(1, 0);
322
+ transform: scale(1, 0);
323
+ -webkit-transform-origin: 100% 0;
324
+ -ms-transform-origin: 100% 0;
325
+ transform-origin: 100% 0; }
326
+
327
+ .premium-banner-animation4 .premium-banner-ib-title {
328
+ padding: 50px 30px 0 30px;
329
+ -webkit-transition: -webkit-transform 0.35s;
330
+ transition: -webkit-transform 0.35s;
331
+ transition: transform 0.35s;
332
+ transition: transform 0.35s, -webkit-transform 0.35s; }
333
+
334
+ .premium-banner-animation4 .premium-banner-ib-content,
335
+ .premium-banner-animation4 .premium-banner-read-more {
336
+ padding: 10px 30px;
337
+ opacity: 0;
338
+ overflow: hidden;
339
+ -webkit-transform: translate3d(0, -10px, 0);
340
+ transform: translate3d(0, -10px, 0); }
341
+
342
+ .premium-banner-animation4 .premium-banner-ib-title,
343
+ .premium-banner-animation4 img {
344
+ -webkit-transform: translate3d(-30px, 0, 0);
345
+ transform: translate3d(-30px, 0, 0); }
346
+
347
+ .premium-banner-animation4.zoomout img,
348
+ .premium-banner-animation4.scale img {
349
+ -webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
350
+ transform: translate3d(-30px, 0, 0) scale(1.1); }
351
+
352
+ .premium-banner-animation4 .premium-banner-ib-content,
353
+ .premium-banner-animation4 .premium-banner-read-more {
354
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
355
+ transition: opacity 0.35s, -webkit-transform 0.35s;
356
+ transition: opacity 0.35s, transform 0.35s;
357
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
358
+
359
+ .premium-banner-animation4 .premium-banner-ib-desc::after, .premium-banner-animation4 .premium-banner-ib-desc::before {
360
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
361
+ transition: opacity 0.35s, -webkit-transform 0.35s;
362
+ transition: opacity 0.35s, transform 0.35s;
363
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
364
+
365
+ .premium-banner-animation4 img {
366
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
367
+ transition: opacity 0.35s, -webkit-transform 0.35s;
368
+ transition: opacity 0.35s, transform 0.35s;
369
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
370
+
371
+ .premium-banner-animation4:hover .premium-banner-ib-desc::after,
372
+ .premium-banner-animation4.active .premium-banner-ib-desc::after,
373
+ .premium-banner-animation4:hover .premium-banner-ib-desc::before,
374
+ .premium-banner-animation4.active .premium-banner-ib-desc::before {
375
+ opacity: 1;
376
+ -webkit-transform: scale(1);
377
+ -ms-transform: scale(1);
378
+ transform: scale(1); }
379
+
380
+ .premium-banner-animation4:hover .premium-banner-ib-content,
381
+ .premium-banner-animation4.active .premium-banner-ib-content,
382
+ .premium-banner-animation4:hover .premium-banner-read-more,
383
+ .premium-banner-animation4.active .premium-banner-read-more,
384
+ .premium-banner-animation4:hover .premium-banner-ib-title,
385
+ .premium-banner-animation4.active .premium-banner-ib-title {
386
+ opacity: 1;
387
+ -webkit-transform: translate3d(0, 0, 0);
388
+ transform: translate3d(0, 0, 0); }
389
+
390
+ .premium-banner-animation4:hover .premium-banner-ib-content,
391
+ .premium-banner-animation4:hover .premium-banner-ib-desc::after,
392
+ .premium-banner-animation4:hover .premium-banner-ib-title,
393
+ .premium-banner-animation4:hover img {
394
+ -webkit-transition-delay: 0.15s;
395
+ transition-delay: 0.15s; }
396
+
397
+ .premium-banner-animation5 .premium-banner-ib-desc {
398
+ top: auto;
399
+ bottom: 0;
400
+ padding: 15px;
401
+ height: auto;
402
+ background: #f2f2f2;
403
+ color: #3c4a50;
404
+ -webkit-transition: -webkit-transform 0.35s;
405
+ transition: -webkit-transform 0.35s;
406
+ transition: transform 0.35s;
407
+ transition: transform 0.35s, -webkit-transform 0.35s;
408
+ -webkit-transform: translate3d(0, 100%, 0);
409
+ transform: translate3d(0, 100%, 0); }
410
+
411
+ .premium-banner-animation5 .premium-banner-ib-content {
412
+ position: absolute;
413
+ top: auto;
414
+ bottom: 100%;
415
+ left: 0;
416
+ width: 100%;
417
+ padding: 15px;
418
+ opacity: 0;
419
+ -webkit-transition: opacity 0.35s;
420
+ transition: opacity 0.35s; }
421
+
422
+ .premium-banner-animation5 .premium-banner-ib-title,
423
+ .premium-banner-animation5 .premium-banner-read-more {
424
+ -webkit-transition: -webkit-transform 0.35s;
425
+ transition: -webkit-transform 0.35s;
426
+ transition: transform 0.35s;
427
+ transition: transform 0.35s, -webkit-transform 0.35s;
428
+ -webkit-transform: translate3d(0, 200%, 0);
429
+ transform: translate3d(0, 200%, 0);
430
+ text-align: center; }
431
+
432
+ .premium-banner-animation5 .premium-banner-ib-title {
433
+ margin: 10px 0; }
434
+
435
+ .premium-banner-animation5:hover .premium-banner-ib-content,
436
+ .premium-banner-animation5.active .premium-banner-ib-content,
437
+ .premium-banner-animation5:hover .premium-banner-ib-content *,
438
+ .premium-banner-animation5.active .premium-banner-ib-content * {
439
+ opacity: 1 !important;
440
+ z-index: 99 !important;
441
+ -webkit-backface-visibility: hidden !important;
442
+ backface-visibility: hidden !important; }
443
+
444
+ .premium-banner-animation5:hover .premium-banner-ib-desc,
445
+ .premium-banner-animation5.active .premium-banner-ib-desc,
446
+ .premium-banner-animation5:hover .premium-banner-ib-title,
447
+ .premium-banner-animation5.active .premium-banner-ib-title,
448
+ .premium-banner-animation5:hover .premium-banner-read-more,
449
+ .premium-banner-animation5.active .premium-banner-read-more {
450
+ -webkit-transform: translateY(0);
451
+ -ms-transform: translateY(0);
452
+ transform: translateY(0); }
453
+
454
+ .premium-banner-animation5:hover .premium-banner-ib-title {
455
+ -webkit-transition-delay: 0.05s;
456
+ transition-delay: 0.05s; }
457
+
458
+ .premium-banner-animation5 img {
459
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
460
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
461
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
462
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
463
+
464
+ .premium-banner-animation2 img,
465
+ .premium-banner-animation4 img,
466
+ .premium-banner-animation6 img {
467
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
468
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
469
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
470
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
471
+
472
+ .premium-banner-animation5.zoomout img,
473
+ .premium-banner-animation5.scale img {
474
+ -webkit-transform: scale(1.1);
475
+ -ms-transform: scale(1.1);
476
+ transform: scale(1.1); }
477
+
478
+ .premium-banner-animation2.zoomout img,
479
+ .premium-banner-animation2.scale img {
480
+ -webkit-transform: scale(1.1);
481
+ -ms-transform: scale(1.1);
482
+ transform: scale(1.1); }
483
+
484
+ .premium-banner-animation6.zoomout img,
485
+ .premium-banner-animation6.scale img {
486
+ -webkit-transform: scale(1.1);
487
+ -ms-transform: scale(1.1);
488
+ transform: scale(1.1); }
489
+
490
+ .premium-banner-animation5.zoomin:hover img,
491
+ .premium-banner-animation2.zoomin:hover img,
492
+ .premium-banner-animation6.zoomin:hover img {
493
+ -webkit-transform: scale(1.1);
494
+ -ms-transform: scale(1.1);
495
+ transform: scale(1.1); }
496
+
497
+ .premium-banner-animation5.zoomout:hover img,
498
+ .premium-banner-animation2.zoomout:hover img,
499
+ .premium-banner-animation6.zoomout:hover img {
500
+ -webkit-transform: scale(1);
501
+ -ms-transform: scale(1);
502
+ transform: scale(1); }
503
+
504
+ .premium-banner-animation5.scale:hover img,
505
+ .premium-banner-animation2.scale:hover img,
506
+ .premium-banner-animation6.scale:hover img {
507
+ -webkit-transform: scale(1.2) rotate(5deg);
508
+ -ms-transform: scale(1.2) rotate(5deg);
509
+ transform: scale(1.2) rotate(5deg); }
510
+
511
+ .premium-banner-animation5.grayscale:hover img,
512
+ .premium-banner-animation2.grayscale:hover img,
513
+ .premium-banner-animation6.grayscale:hover img {
514
+ -webkit-filter: grayscale(100%);
515
+ filter: grayscale(100%); }
516
+
517
+ .premium-banner-animation5.blur:hover img,
518
+ .premium-banner-animation2.blur:hover img {
519
+ -webkit-filter: blur(3px);
520
+ filter: blur(3px); }
521
+
522
+ .premium-banner-animation6.blur:hover img {
523
+ -webkit-filter: blur(3px);
524
+ filter: blur(3px); }
525
+
526
+ .premium-banner-animation6 .premium-banner-ib-desc {
527
+ padding: 45px; }
528
+ .premium-banner-animation6 .premium-banner-ib-desc::before {
529
+ position: absolute;
530
+ content: "";
531
+ top: 30px;
532
+ right: 30px;
533
+ bottom: 30px;
534
+ left: 30px;
535
+ border: 1px solid #fff; }
536
+
537
+ .premium-banner-animation6 .premium-banner-ib-title {
538
+ margin: 20px 0 10px;
539
+ -webkit-transition: -webkit-transform 0.35s;
540
+ transition: -webkit-transform 0.35s;
541
+ transition: transform 0.35s;
542
+ transition: transform 0.35s, -webkit-transform 0.35s;
543
+ -webkit-transform: translate3d(0, 100%, 0);
544
+ transform: translate3d(0, 100%, 0); }
545
+
546
+ .premium-banner-animation6 .premium-banner-ib-content,
547
+ .premium-banner-animation6 .premium-banner-read-more,
548
+ .premium-banner-animation6 .premium-banner-ib-desc::before {
549
+ opacity: 0;
550
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
551
+ transition: opacity 0.35s, -webkit-transform 0.35s;
552
+ transition: opacity 0.35s, transform 0.35s;
553
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
554
+ -webkit-transform: scale(0);
555
+ -ms-transform: scale(0);
556
+ transform: scale(0); }
557
+
558
+ .premium-banner-animation6 .premium-banner-read-more {
559
+ margin-top: 10px; }
560
+
561
+ .premium-banner-animation6:hover .premium-banner-ib-title,
562
+ .premium-banner-animation6.active .premium-banner-ib-title {
563
+ -webkit-transform: translate3d(0, 0, 0);
564
+ transform: translate3d(0, 0, 0); }
565
+
566
+ .premium-banner-animation6:hover .premium-banner-ib-content,
567
+ .premium-banner-animation6.active .premium-banner-ib-content,
568
+ .premium-banner-animation6:hover .premium-banner-read-more,
569
+ .premium-banner-animation6.active .premium-banner-read-more,
570
+ .premium-banner-animation6:hover .premium-banner-ib-desc::before,
571
+ .premium-banner-animation6.active .premium-banner-ib-desc::before {
572
+ opacity: 1;
573
+ -webkit-transform: scale(1);
574
+ -ms-transform: scale(1);
575
+ transform: scale(1); }
576
+
577
+ .premium-banner-animation12 .premium-banner-ib-desc::after {
578
+ position: absolute;
579
+ content: "";
580
+ right: 30px;
581
+ bottom: 30px;
582
+ left: 30px;
583
+ height: -webkit-calc(50% - 30px);
584
+ height: calc(50% - 30px);
585
+ border: 7px solid #fff;
586
+ -webkit-transition: -webkit-transform 0.35s;
587
+ transition: -webkit-transform 0.35s;
588
+ transition: transform 0.35s;
589
+ transition: transform 0.35s, -webkit-transform 0.35s;
590
+ -webkit-transform: translate3d(0, -100%, 0);
591
+ transform: translate3d(0, -100%, 0); }
592
+
593
+ .premium-banner-animation12:hover .premium-banner-ib-desc::after,
594
+ .premium-banner-animation12.active .premium-banner-ib-desc::after {
595
+ -webkit-transform: translate3d(0, 0, 0);
596
+ transform: translate3d(0, 0, 0); }
597
+
598
+ .premium-banner-animation12 .premium-banner-ib-desc {
599
+ padding: 45px;
600
+ text-align: left; }
601
+
602
+ .premium-banner-animation12 .premium-banner-ib-content {
603
+ position: absolute;
604
+ right: 60px;
605
+ bottom: 60px;
606
+ left: 60px;
607
+ opacity: 0;
608
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
609
+ transition: opacity 0.35s, -webkit-transform 0.35s;
610
+ transition: opacity 0.35s, transform 0.35s;
611
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
612
+ -webkit-transform: translate3d(0, -100px, 0);
613
+ transform: translate3d(0, -100px, 0); }
614
+
615
+ .premium-banner-animation12:hover .premium-banner-ib-content,
616
+ .premium-banner-animation12.active .premium-banner-ib-content {
617
+ opacity: 1;
618
+ -webkit-transform: translate3d(0, 0, 0);
619
+ transform: translate3d(0, 0, 0); }
620
+
621
+ .premium-banner-animation13 img {
622
+ width: -webkit-calc(100% + 20px) !important;
623
+ width: calc(100% + 20px) !important;
624
+ max-width: -webkit-calc(100% + 20px) !important;
625
+ max-width: calc(100% + 20px) !important;
626
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
627
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
628
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
629
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
630
+ -webkit-transform: translate3d(-10px, 0, 0);
631
+ transform: translate3d(-10px, 0, 0);
632
+ -webkit-backface-visibility: hidden;
633
+ backface-visibility: hidden; }
634
+
635
+ .premium-banner-animation13.zoomout img,
636
+ .premium-banner-animation13.scale img {
637
+ -webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
638
+ transform: translate3d(-10px, 0, 0) scale(1.1); }
639
+
640
+ .premium-banner-animation13.none:hover img {
641
+ -webkit-transform: translate3d(0, 0, 0);
642
+ transform: translate3d(0, 0, 0); }
643
+
644
+ .premium-banner-animation1.none:hover img,
645
+ .premium-banner-animation4.none:hover img {
646
+ -webkit-transform: translate3d(0, 0, 0);
647
+ transform: translate3d(0, 0, 0); }
648
+
649
+ .premium-banner-animation13.zoomin:hover img,
650
+ .premium-banner-animation1.zoomin:hover img,
651
+ .premium-banner-animation4.zoomin:hover img,
652
+ .premium-banner-animation8.zoomin:hover img,
653
+ .premium-banner-animation7.zoomin:hover img,
654
+ .premium-banner-animation9.zoomin:hover img,
655
+ .premium-banner-animation10.zoomin:hover img,
656
+ .premium-banner-animation11.zoomin:hover img {
657
+ -webkit-transform: translate3d(0, 0, 0) scale(1.1);
658
+ transform: translate3d(0, 0, 0) scale(1.1); }
659
+
660
+ .premium-banner-animation13.zoomout:hover img,
661
+ .premium-banner-animation1.zoomout:hover img,
662
+ .premium-banner-animation4.zoomout:hover img,
663
+ .premium-banner-animation8.zoomout:hover img,
664
+ .premium-banner-animation7.zoomout:hover img,
665
+ .premium-banner-animation9.zoomout:hover img,
666
+ .premium-banner-animation10.zoomout:hover img,
667
+ .premium-banner-animation11.zoomout:hover img {
668
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
669
+ transform: translate3d(0, 0, 0) scale(1); }
670
+
671
+ .premium-banner-animation13.scale:hover img,
672
+ .premium-banner-animation1.scale:hover img,
673
+ .premium-banner-animation4.scale:hover img,
674
+ .premium-banner-animation8.scale:hover img,
675
+ .premium-banner-animation7.scale:hover img,
676
+ .premium-banner-animation9.scale:hover img,
677
+ .premium-banner-animation10.scale:hover img,
678
+ .premium-banner-animation11.scale:hover img {
679
+ -webkit-transform: translate3d(0, 0, 0) scale(1.2) rotate(5deg);
680
+ transform: translate3d(0, 0, 0) scale(1.2) rotate(5deg); }
681
+
682
+ .premium-banner-animation13.grayscale:hover img,
683
+ .premium-banner-animation1.grayscale:hover img,
684
+ .premium-banner-animation4.grayscale:hover img,
685
+ .premium-banner-animation8.grayscale:hover img,
686
+ .premium-banner-animation7.grayscale:hover img,
687
+ .premium-banner-animation9.grayscale:hover img,
688
+ .premium-banner-animation10.grayscale:hover img,
689
+ .premium-banner-animation11.grayscale:hover img {
690
+ -webkit-transform: translate3d(0, 0, 0);
691
+ transform: translate3d(0, 0, 0);
692
+ -webkit-filter: grayscale(100%);
693
+ filter: grayscale(100%); }
694
+
695
+ .premium-banner-animation13.blur:hover img,
696
+ .premium-banner-animation1.blur:hover img,
697
+ .premium-banner-animation4.blur:hover,
698
+ .premium-banner-animation8.blur:hover img,
699
+ .premium-banner-animation7.blur:hover img,
700
+ .premium-banner-animation9.blur:hover img,
701
+ .premium-banner-animation10.blur:hover img,
702
+ .premium-banner-animation11.blur:hover img {
703
+ -webkit-transform: translate3d(0, 0, 0);
704
+ transform: translate3d(0, 0, 0);
705
+ -webkit-filter: blur(3px);
706
+ filter: blur(3px); }
707
+
708
+ .premium-banner-animation13 .premium-banner-ib-desc {
709
+ text-align: left; }
710
+
711
+ .premium-banner-animation13 .premium-banner-ib-title {
712
+ position: relative;
713
+ overflow: hidden;
714
+ padding: 5px 0 10px; }
715
+ .premium-banner-animation13 .premium-banner-ib-title::after {
716
+ position: absolute;
717
+ content: "";
718
+ bottom: 0;
719
+ left: 0;
720
+ width: 100%;
721
+ height: 2px;
722
+ background: #fff;
723
+ -webkit-transition: -webkit-transform 0.35s;
724
+ transition: -webkit-transform 0.35s;
725
+ transition: transform 0.35s;
726
+ transition: transform 0.35s, -webkit-transform 0.35s;
727
+ -webkit-transform: translate3d(-101%, 0, 0);
728
+ transform: translate3d(-101%, 0, 0); }
729
+
730
+ .premium-banner-animation13:hover .premium-banner-ib-title::after,
731
+ .premium-banner-animation13.active .premium-banner-ib-title::after {
732
+ -webkit-transform: translate3d(0, 0, 0);
733
+ transform: translate3d(0, 0, 0); }
734
+
735
+ .premium-banner-animation13 .premium-banner-ib-content,
736
+ .premium-banner-animation13 .premium-banner-read-more {
737
+ padding: 15px 0;
738
+ opacity: 0;
739
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
740
+ transition: opacity 0.35s, -webkit-transform 0.35s;
741
+ transition: opacity 0.35s, transform 0.35s;
742
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
743
+ -webkit-transform: translate3d(100%, 0, 0);
744
+ transform: translate3d(100%, 0, 0); }
745
+
746
+ .premium-banner-animation13:hover .premium-banner-ib-content,
747
+ .premium-banner-animation13.active .premium-banner-ib-content,
748
+ .premium-banner-animation13:hover .premium-banner-read-more,
749
+ .premium-banner-animation13.active .premium-banner-read-more {
750
+ opacity: 1;
751
+ -webkit-transform: translate3d(0, 0, 0);
752
+ transform: translate3d(0, 0, 0); }
753
+
754
+ .premium-banner-ib.premium-banner-animation5 .premium-banner-toggle-size {
755
+ left: 50%;
756
+ width: auto !important;
757
+ height: 100%;
758
+ max-width: none;
759
+ -webkit-transform: translateX(-50%);
760
+ -ms-transform: translateX(-50%);
761
+ transform: translateX(-50%); }
762
+
763
+ .premium-banner-ib img {
764
+ border: none;
765
+ padding: 0;
766
+ margin: 0; }
767
+
768
+ .premium-banner-animation7 img {
769
+ width: -webkit-calc(100% + 40px) !important;
770
+ width: calc(100% + 40px) !important;
771
+ max-width: -webkit-calc(100% + 40px) !important;
772
+ max-width: calc(100% + 40px) !important;
773
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
774
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
775
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
776
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
777
+
778
+ .premium-banner-animation7 .premium-banner-brlr {
779
+ width: 7px; }
780
+
781
+ .premium-banner-animation7 .premium-banner-brtb {
782
+ height: 7px; }
783
+
784
+ .premium-banner-animation7 .premium-banner-br {
785
+ position: absolute;
786
+ z-index: 1;
787
+ background-color: white;
788
+ -webkit-transition: all 0.3s ease-in-out;
789
+ transition: all 0.3s ease-in-out;
790
+ -webkit-transition-delay: 0.2s;
791
+ transition-delay: 0.2s; }
792
+
793
+ .premium-banner-animation7 .premium-banner-bleft {
794
+ left: 30px;
795
+ top: -webkit-calc(100% - 150px);
796
+ top: calc(100% - 150px);
797
+ height: 0; }
798
+
799
+ .premium-banner-animation7 .premium-banner-bright {
800
+ right: 30px;
801
+ bottom: -webkit-calc(100% - 150px);
802
+ bottom: calc(100% - 150px);
803
+ height: 0; }
804
+
805
+ .premium-banner-animation7 .premium-banner-bottom {
806
+ right: -webkit-calc(100% - 150px);
807
+ right: calc(100% - 150px);
808
+ bottom: 30px;
809
+ width: 0; }
810
+
811
+ .premium-banner-animation7 .premium-banner-btop {
812
+ left: -webkit-calc(100% - 150px);
813
+ left: calc(100% - 150px);
814
+ top: 30px;
815
+ width: 0; }
816
+
817
+ .premium-banner-animation7 .premium-banner-ib-desc {
818
+ padding: 70px;
819
+ display: table; }
820
+ .premium-banner-animation7 .premium-banner-ib-desc .premium-banner-desc-centered {
821
+ display: table-cell;
822
+ vertical-align: middle; }
823
+
824
+ .premium-banner-animation7 .premium-banner-ib-title {
825
+ margin-top: 0; }
826
+
827
+ .premium-banner-animation7 .premium-banner-ib-title,
828
+ .premium-banner-animation7 img {
829
+ -webkit-transform: translate3d(-30px, 0, 0);
830
+ transform: translate3d(-30px, 0, 0); }
831
+
832
+ .premium-banner-animation7.zoomout img,
833
+ .premium-banner-animation7.scale img {
834
+ -webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
835
+ transform: translate3d(-30px, 0, 0) scale(1.1); }
836
+
837
+ .premium-banner-animation7 .premium-banner-ib-content,
838
+ .premium-banner-animation7 .premium-banner-read-more {
839
+ margin-top: 10px; }
840
+
841
+ .premium-banner-animation7 .premium-banner-ib-desc::after, .premium-banner-animation7 .premium-banner-ib-desc::before {
842
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
843
+ transition: opacity 0.35s, -webkit-transform 0.35s;
844
+ transition: opacity 0.35s, transform 0.35s;
845
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
846
+
847
+ .premium-banner-animation7 .premium-banner-ib-title,
848
+ .premium-banner-animation7 .premium-banner-ib-content,
849
+ .premium-banner-animation7 .premium-banner-read-more {
850
+ opacity: 0;
851
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
852
+ transition: opacity 0.35s, -webkit-transform 0.35s;
853
+ transition: opacity 0.35s, transform 0.35s;
854
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
855
+
856
+ .premium-banner-animation7:hover .premium-banner-ib-content,
857
+ .premium-banner-animation7.active .premium-banner-ib-content,
858
+ .premium-banner-animation7:hover .premium-banner-read-more,
859
+ .premium-banner-animation7.active .premium-banner-read-more,
860
+ .premium-banner-animation7:hover .premium-banner-ib-title,
861
+ .premium-banner-animation7.active .premium-banner-ib-title {
862
+ opacity: 1;
863
+ -webkit-transform: translate3d(0, 0, 0);
864
+ transform: translate3d(0, 0, 0); }
865
+
866
+ .premium-banner-animation7:hover .premium-banner-bleft, .premium-banner-animation7.active .premium-banner-bleft {
867
+ top: 30px;
868
+ height: 70px; }
869
+
870
+ .premium-banner-animation7:hover .premium-banner-bright, .premium-banner-animation7.active .premium-banner-bright {
871
+ bottom: 30px;
872
+ height: 70px; }
873
+
874
+ .premium-banner-animation7:hover .premium-banner-bottom, .premium-banner-animation7.active .premium-banner-bottom {
875
+ right: 30px;
876
+ width: 70px; }
877
+
878
+ .premium-banner-animation7:hover .premium-banner-btop, .premium-banner-animation7.active .premium-banner-btop {
879
+ left: 30px;
880
+ width: 70px; }
881
+
882
+ .premium-banner-animation7:hover .premium-banner-ib-content,
883
+ .premium-banner-animation7:hover .premium-banner-read-more,
884
+ .premium-banner-animation7:hover .premium-banner-ib-title,
885
+ .premium-banner-animation7:hover img {
886
+ -webkit-transition-delay: 0.15s;
887
+ transition-delay: 0.15s; }
888
+
889
+ .premium-banner-animation8 img {
890
+ width: -webkit-calc(100% + 40px) !important;
891
+ width: calc(100% + 40px) !important;
892
+ max-width: -webkit-calc(100% + 40px) !important;
893
+ max-width: calc(100% + 40px) !important;
894
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
895
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
896
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
897
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
898
+
899
+ .premium-banner-animation8 .premium-banner-brlr {
900
+ width: 7px; }
901
+
902
+ .premium-banner-animation8 .premium-banner-brtb {
903
+ height: 7px; }
904
+
905
+ .premium-banner-animation8 .premium-banner-br {
906
+ position: absolute;
907
+ z-index: 1;
908
+ background-color: white;
909
+ -webkit-transition: all 0.3s ease-in-out;
910
+ transition: all 0.3s ease-in-out;
911
+ -webkit-transition-delay: 0.2s;
912
+ transition-delay: 0.2s; }
913
+
914
+ .premium-banner-animation8 .premium-banner-bleft {
915
+ left: 30px;
916
+ top: 50%;
917
+ -webkit-transform: translateY(-50%);
918
+ -ms-transform: translateY(-50%);
919
+ transform: translateY(-50%);
920
+ height: 0; }
921
+
922
+ .premium-banner-animation8 .premium-banner-bright {
923
+ right: 30px;
924
+ top: 50%;
925
+ -webkit-transform: translateY(-50%);
926
+ -ms-transform: translateY(-50%);
927
+ transform: translateY(-50%);
928
+ height: 0; }
929
+
930
+ .premium-banner-animation8 .premium-banner-bottom {
931
+ left: 50%;
932
+ -webkit-transform: translateX(-50%);
933
+ -ms-transform: translateX(-50%);
934
+ transform: translateX(-50%);
935
+ bottom: 30px;
936
+ width: 0; }
937
+
938
+ .premium-banner-animation8 .premium-banner-btop {
939
+ left: 50%;
940
+ -webkit-transform: translateX(-50%);
941
+ -ms-transform: translateX(-50%);
942
+ transform: translateX(-50%);
943
+ top: 30px;
944
+ width: 0; }
945
+
946
+ .premium-banner-animation8 .premium-banner-ib-desc {
947
+ padding: 70px;
948
+ display: table; }
949
+ .premium-banner-animation8 .premium-banner-ib-desc .premium-banner-desc-centered {
950
+ display: table-cell;
951
+ vertical-align: middle; }
952
+
953
+ .premium-banner-animation8 .premium-banner-ib-title {
954
+ margin-top: 0; }
955
+
956
+ .premium-banner-animation8 .premium-banner-ib-title,
957
+ .premium-banner-animation8 img {
958
+ -webkit-transform: translate3d(-30px, 0, 0);
959
+ transform: translate3d(-30px, 0, 0); }
960
+
961
+ .premium-banner-animation8.zoomout img,
962
+ .premium-banner-animation8.scale img {
963
+ -webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
964
+ transform: translate3d(-30px, 0, 0) scale(1.1); }
965
+
966
+ .premium-banner-animation8 .premium-banner-ib-content,
967
+ .premium-banner-animation8 .premium-banner-read-more {
968
+ margin-top: 10px; }
969
+
970
+ .premium-banner-animation8 .premium-banner-ib-desc::after, .premium-banner-animation8 .premium-banner-ib-desc::before {
971
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
972
+ transition: opacity 0.35s, -webkit-transform 0.35s;
973
+ transition: opacity 0.35s, transform 0.35s;
974
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
975
+
976
+ .premium-banner-animation8 .premium-banner-ib-title,
977
+ .premium-banner-animation8 .premium-banner-ib-content,
978
+ .premium-banner-animation8 .premium-banner-read-more {
979
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
980
+ transition: opacity 0.35s, -webkit-transform 0.35s;
981
+ transition: opacity 0.35s, transform 0.35s;
982
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
983
+ opacity: 0; }
984
+
985
+ .premium-banner-animation8:hover .premium-banner-ib-content,
986
+ .premium-banner-animation8.active .premium-banner-ib-content,
987
+ .premium-banner-animation8:hover .premium-banner-read-more,
988
+ .premium-banner-animation8.active .premium-banner-read-more,
989
+ .premium-banner-animation8:hover .premium-banner-ib-title,
990
+ .premium-banner-animation8.active .premium-banner-ib-title {
991
+ opacity: 1;
992
+ -webkit-transform: translate3d(0, 0, 0);
993
+ transform: translate3d(0, 0, 0); }
994
+
995
+ .premium-banner-animation8:hover .premium-banner-bleft, .premium-banner-animation8.active .premium-banner-bleft {
996
+ height: -webkit-calc(100% - 61px);
997
+ height: calc(100% - 61px); }
998
+
999
+ .premium-banner-animation8:hover .premium-banner-bright, .premium-banner-animation8.active .premium-banner-bright {
1000
+ height: -webkit-calc(100% - 61px);
1001
+ height: calc(100% - 61px); }
1002
+
1003
+ .premium-banner-animation8:hover .premium-banner-bottom, .premium-banner-animation8.active .premium-banner-bottom {
1004
+ width: -webkit-calc(100% - 61px);
1005
+ width: calc(100% - 61px); }
1006
+
1007
+ .premium-banner-animation8:hover .premium-banner-btop, .premium-banner-animation8.active .premium-banner-btop {
1008
+ width: -webkit-calc(100% - 61px);
1009
+ width: calc(100% - 61px); }
1010
+
1011
+ .premium-banner-animation8:hover .premium-banner-ib-content,
1012
+ .premium-banner-animation8:hover .premium-banner-ib-title,
1013
+ .premium-banner-animation8:hover .premium-banner-read-more,
1014
+ .premium-banner-animation8:hover img {
1015
+ -webkit-transition-delay: 0.15s;
1016
+ transition-delay: 0.15s; }
1017
+
1018
+ .premium-banner-animation9 img {
1019
+ width: -webkit-calc(100% + 20px) !important;
1020
+ width: calc(100% + 20px) !important;
1021
+ max-width: -webkit-calc(100% + 20px) !important;
1022
+ max-width: calc(100% + 20px) !important;
1023
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1024
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1025
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
1026
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1027
+ -webkit-transform: scale(1.2);
1028
+ -ms-transform: scale(1.2);
1029
+ transform: scale(1.2); }
1030
+
1031
+ .premium-banner-animation9 .premium-banner-ib-desc {
1032
+ width: 100%;
1033
+ height: 100%; }
1034
+ .premium-banner-animation9 .premium-banner-ib-desc::before {
1035
+ position: absolute;
1036
+ top: 50%;
1037
+ left: 50%;
1038
+ width: 80%;
1039
+ height: 1px;
1040
+ background: #fff;
1041
+ content: "";
1042
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1043
+ transition: opacity 0.35s, -webkit-transform 0.35s;
1044
+ transition: opacity 0.35s, transform 0.35s;
1045
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1046
+ -webkit-transform: translate3d(-50%, -50%, 0);
1047
+ transform: translate3d(-50%, -50%, 0); }
1048
+ .premium-banner-animation9 .premium-banner-ib-desc::after {
1049
+ position: absolute;
1050
+ top: 50%;
1051
+ left: 50%;
1052
+ width: 80%;
1053
+ height: 1px;
1054
+ background: #fff;
1055
+ content: "";
1056
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1057
+ transition: opacity 0.35s, -webkit-transform 0.35s;
1058
+ transition: opacity 0.35s, transform 0.35s;
1059
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1060
+ -webkit-transform: translate3d(-50%, -50%, 0);
1061
+ transform: translate3d(-50%, -50%, 0); }
1062
+
1063
+ .premium-banner-animation9 .premium-banner-ib-title {
1064
+ position: absolute;
1065
+ top: 50%;
1066
+ left: 0;
1067
+ width: 100%;
1068
+ -webkit-transition: -webkit-transform 0.35s;
1069
+ transition: -webkit-transform 0.35s;
1070
+ transition: transform 0.35s;
1071
+ transition: transform 0.35s, -webkit-transform 0.35s;
1072
+ -webkit-transform: translate3d(0, -70px, 0);
1073
+ transform: translate3d(0, -70px, 0);
1074
+ margin-top: 0;
1075
+ padding: 0 10%; }
1076
+
1077
+ .premium-banner-animation9:hover .premium-banner-ib-title,
1078
+ .premium-banner-animation9.active .premium-banner-ib-title {
1079
+ -webkit-transform: translate3d(0, -80px, 0);
1080
+ transform: translate3d(0, -80px, 0); }
1081
+
1082
+ .premium-banner-animation9 .premium-banner-ib-content,
1083
+ .premium-banner-animation9 .premium-banner-read-more {
1084
+ position: absolute;
1085
+ top: 50%;
1086
+ left: 0;
1087
+ width: 100%;
1088
+ -webkit-transition: -webkit-transform 0.35s;
1089
+ transition: -webkit-transform 0.35s;
1090
+ transition: transform 0.35s;
1091
+ transition: transform 0.35s, -webkit-transform 0.35s;
1092
+ padding: 0 10%;
1093
+ -webkit-transform: translate3d(0, 35px, 0);
1094
+ transform: translate3d(0, 35px, 0); }
1095
+
1096
+ .premium-banner-animation9 .premium-banner-read-more {
1097
+ top: 75%; }
1098
+
1099
+ .premium-banner-animation9:hover .premium-banner-ib-content,
1100
+ .premium-banner-animation9.active .premium-banner-ib-content,
1101
+ .premium-banner-animation9:hover .premium-banner-read-more,
1102
+ .premium-banner-animation9.active .premium-banner-read-more {
1103
+ -webkit-transform: translate3d(0, 45px, 0);
1104
+ transform: translate3d(0, 45px, 0); }
1105
+
1106
+ .premium-banner-animation9:hover .premium-banner-ib-desc::before,
1107
+ .premium-banner-animation9.active .premium-banner-ib-desc::before {
1108
+ opacity: 0.5;
1109
+ -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
1110
+ transform: translate3d(-50%, -50%, 0) rotate(45deg); }
1111
+
1112
+ .premium-banner-animation9:hover .premium-banner-ib-desc::after,
1113
+ .premium-banner-animation9.active .premium-banner-ib-desc::after {
1114
+ opacity: 0.5;
1115
+ -webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
1116
+ transform: translate3d(-50%, -50%, 0) rotate(-45deg); }
1117
+
1118
+ .premium-banner-animation9:hover img {
1119
+ -webkit-transform: scale(1);
1120
+ -ms-transform: scale(1);
1121
+ transform: scale(1); }
1122
+
1123
+ .premium-banner-animation10 img {
1124
+ width: -webkit-calc(100% + 20px) !important;
1125
+ width: calc(100% + 20px) !important;
1126
+ max-width: -webkit-calc(100% + 20px) !important;
1127
+ max-width: calc(100% + 20px) !important;
1128
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1129
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1130
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
1131
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
1132
+
1133
+ .premium-banner-animation10 .premium-banner-ib-title {
1134
+ position: relative;
1135
+ overflow: hidden;
1136
+ padding: 5px 0 15px;
1137
+ -webkit-transition: -webkit-transform 0.35s;
1138
+ transition: -webkit-transform 0.35s;
1139
+ transition: transform 0.35s;
1140
+ transition: transform 0.35s, -webkit-transform 0.35s;
1141
+ -webkit-transform: translate3d(0, 20px, 0);
1142
+ transform: translate3d(0, 20px, 0);
1143
+ margin-bottom: 0; }
1144
+ .premium-banner-animation10 .premium-banner-ib-title::after {
1145
+ position: absolute;
1146
+ content: "";
1147
+ bottom: 0;
1148
+ left: 0;
1149
+ width: 100%;
1150
+ height: 3px;
1151
+ background: #fff;
1152
+ opacity: 0;
1153
+ -webkit-transform: translate3d(0, 100%, 0);
1154
+ transform: translate3d(0, 100%, 0);
1155
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1156
+ transition: opacity 0.35s, -webkit-transform 0.35s;
1157
+ transition: opacity 0.35s, transform 0.35s;
1158
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
1159
+
1160
+ .premium-banner-animation10:hover .premium-banner-ib-title,
1161
+ .premium-banner-animation10.active .premium-banner-ib-title {
1162
+ -webkit-transform: translate3d(0, 0, 0);
1163
+ transform: translate3d(0, 0, 0); }
1164
+
1165
+ .premium-banner-animation10:hover .premium-banner-ib-title::after,
1166
+ .premium-banner-animation10.active .premium-banner-ib-title::after {
1167
+ opacity: 1;
1168
+ -webkit-transform: translate3d(0, 0, 0);
1169
+ transform: translate3d(0, 0, 0); }
1170
+
1171
+ .premium-banner-animation10.zoomout img,
1172
+ .premium-banner-animation10.scale img {
1173
+ -webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
1174
+ transform: translate3d(-10px, 0, 0) scale(1.1); }
1175
+
1176
+ .premium-banner-animation10 .premium-banner-ib-content,
1177
+ .premium-banner-animation10 .premium-banner-read-more {
1178
+ padding-top: 15px;
1179
+ opacity: 0;
1180
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1181
+ transition: opacity 0.35s, -webkit-transform 0.35s;
1182
+ transition: opacity 0.35s, transform 0.35s;
1183
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1184
+ -webkit-transform: translate3d(0, 100%, 0);
1185
+ transform: translate3d(0, 100%, 0); }
1186
+
1187
+ .premium-banner-animation10 .premium-banner-read-more {
1188
+ padding: 0; }
1189
+
1190
+ .premium-banner-animation10:hover .premium-banner-ib-content,
1191
+ .premium-banner-animation10.active .premium-banner-ib-content,
1192
+ .premium-banner-animation10:hover .premium-banner-read-more,
1193
+ .premium-banner-animation10.active .premium-banner-read-more {
1194
+ opacity: 1;
1195
+ -webkit-transform: translate3d(0, 0, 0);
1196
+ transform: translate3d(0, 0, 0); }
1197
+
1198
+ .premium-banner-animation11 {
1199
+ -webkit-transition: -webkit-transform 1s ease-out;
1200
+ transition: -webkit-transform 1s ease-out;
1201
+ transition: transform 1s ease-out;
1202
+ transition: transform 1s ease-out, -webkit-transform 1s ease-out;
1203
+ -webkit-transition-delay: 0.125s;
1204
+ transition-delay: 0.125s; }
1205
+ .premium-banner-animation11 .premium-banner-ib-desc {
1206
+ position: absolute;
1207
+ z-index: 5;
1208
+ -webkit-transform: translate3d(-30px, 0, 0);
1209
+ transform: translate3d(-30px, 0, 0);
1210
+ opacity: 0;
1211
+ top: auto;
1212
+ bottom: 0;
1213
+ min-height: 25%;
1214
+ height: auto;
1215
+ max-height: 100%;
1216
+ text-align: left;
1217
+ padding: 30px;
1218
+ -webkit-transition: all 0.6s ease-out;
1219
+ transition: all 0.6s ease-out; }
1220
+ .premium-banner-animation11 img {
1221
+ width: 100%;
1222
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1223
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1224
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
1225
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
1226
+ .premium-banner-animation11 .premium-banner-ib-title {
1227
+ margin-bottom: 10px; }
1228
+ .premium-banner-animation11 .premium-banner-gradient {
1229
+ position: absolute;
1230
+ left: 0;
1231
+ top: 0;
1232
+ right: 0;
1233
+ bottom: 0; }
1234
+ .premium-banner-animation11 .premium-banner-gradient:after,
1235
+ .premium-banner-animation11 .premium-banner-gradient:before {
1236
+ position: absolute;
1237
+ content: "";
1238
+ left: 0;
1239
+ top: 0;
1240
+ right: 0;
1241
+ bottom: 0;
1242
+ -webkit-transform: translate3d(-100%, 0, 0);
1243
+ transform: translate3d(-100%, 0, 0);
1244
+ background-image: -webkit-linear-gradient(40deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
1245
+ background-image: linear-gradient(50deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
1246
+ z-index: 2; }
1247
+ .premium-banner-animation11 .premium-banner-gradient:before {
1248
+ mix-blend-mode: color; }
1249
+ .premium-banner-animation11 .premium-banner-gradient:after {
1250
+ mix-blend-mode: multiply; }
1251
+ .premium-banner-animation11:hover .premium-banner-ib-desc,
1252
+ .premium-banner-animation11.active .premium-banner-ib-desc {
1253
+ opacity: 1;
1254
+ -webkit-transform: translate3d(0, 0, 0);
1255
+ transform: translate3d(0, 0, 0); }
1256
+ .premium-banner-animation11:hover .premium-banner-gradient:after,
1257
+ .premium-banner-animation11:hover .premium-banner-gradient:before,
1258
+ .premium-banner-animation11.active .premium-banner-gradient:after,
1259
+ .premium-banner-animation11.active .premium-banner-gradient:before {
1260
+ -webkit-transform: translate3d(0, 0, 0);
1261
+ transform: translate3d(0, 0, 0); }
1262
+ .premium-banner-animation11.zoomout img,
1263
+ .premium-banner-animation11.scale img {
1264
+ -webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
1265
+ transform: translate3d(-10px, 0, 0) scale(1.1); }
1266
+
1267
+ /**************** Premium Blog *****************/
1268
+ /***********************************************/
1269
+ .premium-blog-thumb-effect-wrapper {
1270
+ position: relative;
1271
+ overflow: hidden; }
1272
+
1273
+ .premium-blog-effect-container:not(.premium-blog-bordered-effect) .premium-blog-post-link {
1274
+ position: absolute;
1275
+ top: 0;
1276
+ left: 0;
1277
+ width: 100%;
1278
+ height: 100%;
1279
+ z-index: 2;
1280
+ padding: 20px; }
1281
+
1282
+ .premium-blog-bordered-effect .premium-blog-post-link {
1283
+ display: block;
1284
+ height: 100%;
1285
+ position: relative; }
1286
+
1287
+ /*Thumbnail Img*/
1288
+ .premium-blog-thumbnail-container {
1289
+ overflow: hidden; }
1290
+ .premium-blog-thumbnail-container img,
1291
+ .premium-blog-thumbnail-container .below-entry-meta {
1292
+ width: 100%;
1293
+ height: 100%;
1294
+ margin: 0 !important;
1295
+ -webkit-transition: all 0.4s ease-in-out;
1296
+ transition: all 0.4s ease-in-out; }
1297
+
1298
+ .premium-blog-thumb-effect-wrapper .premium-blog-zoomout-effect img,
1299
+ .premium-blog-thumb-effect-wrapper .premium-blog-scale-effect img {
1300
+ -webkit-transform: scale(1.2);
1301
+ -ms-transform: scale(1.2);
1302
+ transform: scale(1.2); }
1303
+
1304
+ .premium-blog-thumb-effect-wrapper .premium-blog-sepia-effect img {
1305
+ -webkit-filter: sepia(30%);
1306
+ filter: sepia(30%); }
1307
+
1308
+ .premium-blog-thumb-effect-wrapper .premium-blog-bright-effect img {
1309
+ -webkit-filter: brightness(1);
1310
+ filter: brightness(1); }
1311
+
1312
+ .premium-blog-thumb-effect-wrapper .premium-blog-trans-effect img {
1313
+ -webkit-transform: translateX(-15px) scale(1.1);
1314
+ -ms-transform: translateX(-15px) scale(1.1);
1315
+ transform: translateX(-15px) scale(1.1); }
1316
+
1317
+ .premium-blog-post-outer-container:hover .premium-blog-zoomin-effect img {
1318
+ -webkit-transform: scale(1.2);
1319
+ -ms-transform: scale(1.2);
1320
+ transform: scale(1.2); }
1321
+
1322
+ .premium-blog-post-outer-container:hover .premium-blog-zoomout-effect img {
1323
+ -webkit-transform: scale(1.1);
1324
+ -ms-transform: scale(1.1);
1325
+ transform: scale(1.1); }
1326
+
1327
+ .premium-blog-post-outer-container:hover .premium-blog-scale-effect img {
1328
+ -webkit-transform: scale(1.3) rotate(5deg);
1329
+ -ms-transform: scale(1.3) rotate(5deg);
1330
+ transform: scale(1.3) rotate(5deg); }
1331
+
1332
+ .premium-blog-post-outer-container:hover .premium-blog-gray-effect img {
1333
+ -webkit-filter: grayscale(100%);
1334
+ filter: grayscale(100%); }
1335
+
1336
+ .premium-blog-post-outer-container:hover .premium-blog-blur-effect img {
1337
+ -webkit-filter: blur(3px);
1338
+ filter: blur(3px); }
1339
+
1340
+ .premium-blog-post-outer-container:hover .premium-blog-sepia-effect img {
1341
+ -webkit-filter: sepia(0%);
1342
+ filter: sepia(0%); }
1343
+
1344
+ .premium-blog-post-outer-container:hover .premium-blog-bright-effect img {
1345
+ -webkit-filter: brightness(1.2);
1346
+ filter: brightness(1.2); }
1347
+
1348
+ .premium-blog-post-outer-container:hover .premium-blog-trans-effect img {
1349
+ -webkit-transform: translateX(0px) scale(1.1);
1350
+ -ms-transform: translateX(0px) scale(1.1);
1351
+ transform: translateX(0px) scale(1.1); }
1352
+
1353
+ .premium-blog-post-container {
1354
+ overflow: hidden; }
1355
+ .premium-blog-post-container .premium-blog-inner-container {
1356
+ -js-display: flex;
1357
+ display: -webkit-box;
1358
+ display: -webkit-flex;
1359
+ display: -moz-box;
1360
+ display: -ms-flexbox;
1361
+ display: flex; }
1362
+ .premium-blog-post-container .premium-blog-entry-container {
1363
+ margin: 0 !important; }
1364
+ .premium-blog-post-container .premium-blog-post-content {
1365
+ line-height: 1.5em;
1366
+ color: #777;
1367
+ font-size: 14px;
1368
+ margin-bottom: 10px; }
1369
+ .premium-blog-post-container ul.post-categories a:hover, .premium-blog-post-container ul.post-categories a:focus,
1370
+ .premium-blog-post-container .premium-blog-post-link:hover,
1371
+ .premium-blog-post-container .premium-blog-post-link:focus {
1372
+ -webkit-box-shadow: none !important;
1373
+ box-shadow: none !important;
1374
+ outline: none !important; }
1375
+ .premium-blog-post-container .premium-blog-entry-title {
1376
+ font-size: 18px;
1377
+ margin-bottom: 5px; }
1378
+ .premium-blog-post-container.premium-blog-skin-modern .premium-blog-content-wrapper {
1379
+ position: relative;
1380
+ z-index: 3;
1381
+ top: -50px; }
1382
+ .premium-blog-post-container .premium-blog-content-wrapper {
1383
+ background-color: #f5f5f5;
1384
+ padding: 30px; }
1385
+ .premium-blog-post-container .premium-blog-content-wrapper.empty-thumb {
1386
+ top: 0; }
1387
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before, .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:after {
1388
+ position: absolute;
1389
+ content: "";
1390
+ z-index: 1;
1391
+ top: 50%;
1392
+ left: 50%;
1393
+ opacity: 0;
1394
+ -webkit-transform: translate(-50%, -50%);
1395
+ -ms-transform: translate(-50%, -50%);
1396
+ transform: translate(-50%, -50%);
1397
+ -webkit-transition: all 0.4s linear 0s;
1398
+ transition: all 0.4s linear 0s;
1399
+ height: 1px;
1400
+ width: 100%;
1401
+ background-color: #fff; }
1402
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before {
1403
+ width: 1px;
1404
+ height: 100%; }
1405
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-container:after {
1406
+ width: 20px;
1407
+ opacity: 1; }
1408
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-container:before {
1409
+ height: 20px;
1410
+ opacity: 1; }
1411
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-content-wrapper {
1412
+ margin: 0px 10px 20px;
1413
+ clear: both; }
1414
+ .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay, .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay, .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay {
1415
+ position: absolute;
1416
+ top: 0;
1417
+ left: 0;
1418
+ width: 100%;
1419
+ height: 100%;
1420
+ -webkit-transition: all 0.3s ease-in-out;
1421
+ transition: all 0.3s ease-in-out;
1422
+ opacity: 0; }
1423
+ .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay a, .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay a, .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay a {
1424
+ -js-display: flex;
1425
+ display: -webkit-box;
1426
+ display: -webkit-flex;
1427
+ display: -moz-box;
1428
+ display: -ms-flexbox;
1429
+ display: flex;
1430
+ -webkit-box-pack: center;
1431
+ -webkit-justify-content: center;
1432
+ -moz-box-pack: center;
1433
+ -ms-flex-pack: center;
1434
+ justify-content: center;
1435
+ -webkit-box-align: center;
1436
+ -webkit-align-items: center;
1437
+ -moz-box-align: center;
1438
+ -ms-flex-align: center;
1439
+ align-items: center;
1440
+ width: 100%;
1441
+ height: 100%; }
1442
+ .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay span,
1443
+ .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay i, .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay span,
1444
+ .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay i, .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay span,
1445
+ .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay i {
1446
+ -webkit-transition: all 0.3s ease-in-out;
1447
+ transition: all 0.3s ease-in-out; }
1448
+ .premium-blog-post-container.premium-blog-skin-side {
1449
+ -js-display: flex;
1450
+ display: -webkit-box;
1451
+ display: -webkit-flex;
1452
+ display: -moz-box;
1453
+ display: -ms-flexbox;
1454
+ display: flex; }
1455
+ .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-container {
1456
+ height: 100%; }
1457
+ .premium-blog-post-container.premium-blog-skin-side .premium-blog-content-wrapper {
1458
+ -webkit-box-flex: 1;
1459
+ -webkit-flex: 1;
1460
+ -moz-box-flex: 1;
1461
+ -ms-flex: 1;
1462
+ flex: 1; }
1463
+ .premium-blog-post-container.premium-blog-skin-banner {
1464
+ position: relative; }
1465
+ .premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper {
1466
+ position: absolute;
1467
+ width: 100%;
1468
+ bottom: 0;
1469
+ -js-display: flex;
1470
+ display: -webkit-box;
1471
+ display: -webkit-flex;
1472
+ display: -moz-box;
1473
+ display: -ms-flexbox;
1474
+ display: flex;
1475
+ -webkit-box-orient: vertical;
1476
+ -webkit-box-direction: normal;
1477
+ -webkit-flex-direction: column;
1478
+ -moz-box-orient: vertical;
1479
+ -moz-box-direction: normal;
1480
+ -ms-flex-direction: column;
1481
+ flex-direction: column;
1482
+ background-color: transparent;
1483
+ z-index: 3; }
1484
+ .premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper-inner {
1485
+ -webkit-transition: -webkit-transform 0.3s ease-in-out;
1486
+ transition: -webkit-transform 0.3s ease-in-out;
1487
+ transition: transform 0.3s ease-in-out;
1488
+ transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; }
1489
+ .premium-blog-post-container.premium-blog-skin-banner:hover .premium-blog-content-wrapper-inner {
1490
+ -webkit-transform: translateY(-5px);
1491
+ -ms-transform: translateY(-5px);
1492
+ transform: translateY(-5px); }
1493
+ .premium-blog-post-container .premium-blog-cats-container ul.post-categories {
1494
+ margin: 0;
1495
+ padding: 0;
1496
+ list-style: none;
1497
+ -js-display: flex;
1498
+ display: -webkit-box;
1499
+ display: -webkit-flex;
1500
+ display: -moz-box;
1501
+ display: -ms-flexbox;
1502
+ display: flex; }
1503
+ .premium-blog-post-container .premium-blog-cats-container a {
1504
+ display: block;
1505
+ font-size: 12px;
1506
+ color: #fff;
1507
+ background-color: #777;
1508
+ margin: 0 3px 10px 0;
1509
+ padding: 5px;
1510
+ -webkit-transition: all 0.3s ease-in-out;
1511
+ transition: all 0.3s ease-in-out; }
1512
+
1513
+ /*
1514
+ * Diagonal Effect
1515
+ */
1516
+ .premium-blog-diagonal-container {
1517
+ position: absolute;
1518
+ top: 0;
1519
+ left: 0;
1520
+ width: 100%;
1521
+ height: 100%; }
1522
+
1523
+ .premium-blog-diagonal-effect:before {
1524
+ position: absolute;
1525
+ top: 0px;
1526
+ left: 0px;
1527
+ width: 100%;
1528
+ height: 100%;
1529
+ content: " ";
1530
+ z-index: 1;
1531
+ background: rgba(255, 255, 255, 0.2);
1532
+ -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
1533
+ transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
1534
+ -webkit-transition: all 0.3s linear 0s;
1535
+ transition: all 0.3s linear 0s; }
1536
+
1537
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-diagonal-effect:before {
1538
+ -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
1539
+ transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0); }
1540
+
1541
+ /*
1542
+ * Framed Effect
1543
+ */
1544
+ .premium-blog-framed-effect {
1545
+ position: absolute;
1546
+ width: -webkit-calc(100% - 30px);
1547
+ width: calc(100% - 30px);
1548
+ height: -webkit-calc(100% - 30px);
1549
+ height: calc(100% - 30px);
1550
+ top: 15px;
1551
+ left: 15px;
1552
+ opacity: 0;
1553
+ -webkit-transform: scale(0.3);
1554
+ -ms-transform: scale(0.3);
1555
+ transform: scale(0.3);
1556
+ -webkit-transition: all 0.3s linear 0s;
1557
+ transition: all 0.3s linear 0s; }
1558
+
1559
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-framed-effect {
1560
+ opacity: 0.99;
1561
+ -webkit-transform: scale(1);
1562
+ -ms-transform: scale(1);
1563
+ transform: scale(1); }
1564
+
1565
+ /*
1566
+ * Bordered Effect
1567
+ */
1568
+ .premium-blog-bordered-effect {
1569
+ position: absolute;
1570
+ top: 0;
1571
+ left: 0;
1572
+ width: 100%;
1573
+ height: 100%;
1574
+ opacity: 0;
1575
+ padding: 15px;
1576
+ -webkit-transition: all 0.3s linear 0s;
1577
+ transition: all 0.3s linear 0s; }
1578
+ .premium-blog-bordered-effect .premium-blog-post-link:before, .premium-blog-bordered-effect .premium-blog-post-link:after {
1579
+ content: "";
1580
+ display: block;
1581
+ position: absolute;
1582
+ top: 0;
1583
+ left: 0;
1584
+ width: 100%;
1585
+ height: 100%;
1586
+ -webkit-transition: all 0.5s linear 0s;
1587
+ transition: all 0.5s linear 0s;
1588
+ -webkit-transition-delay: 0s;
1589
+ transition-delay: 0s;
1590
+ border-color: rgba(255, 255, 255, 0.45); }
1591
+ .premium-blog-bordered-effect .premium-blog-post-link:before {
1592
+ border-right: 2px solid;
1593
+ border-left: 2px solid;
1594
+ -webkit-transform: scale(1, 0);
1595
+ -ms-transform: scale(1, 0);
1596
+ transform: scale(1, 0);
1597
+ -webkit-transform-origin: 100% 0;
1598
+ -ms-transform-origin: 100% 0;
1599
+ transform-origin: 100% 0; }
1600
+ .premium-blog-bordered-effect .premium-blog-post-link:after {
1601
+ border-top: 2px solid;
1602
+ border-bottom: 2px solid;
1603
+ -webkit-transform: scale(0, 1);
1604
+ -ms-transform: scale(0, 1);
1605
+ transform: scale(0, 1);
1606
+ -webkit-transform-origin: 0 0;
1607
+ -ms-transform-origin: 0 0;
1608
+ transform-origin: 0 0; }
1609
+
1610
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect {
1611
+ opacity: 0.99; }
1612
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect .premium-blog-post-link:before, .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect .premium-blog-post-link:after {
1613
+ -webkit-transition-delay: 0.15s;
1614
+ transition-delay: 0.15s;
1615
+ opacity: 1;
1616
+ -webkit-transform: scale(1);
1617
+ -ms-transform: scale(1);
1618
+ transform: scale(1); }
1619
+
1620
+ /*
1621
+ * Squares Effect
1622
+ */
1623
+ .premium-blog-squares-effect,
1624
+ .premium-blog-squares-square-container {
1625
+ position: absolute;
1626
+ top: 0;
1627
+ left: 0;
1628
+ width: 100%;
1629
+ height: 100%; }
1630
+
1631
+ .premium-blog-squares-effect:before, .premium-blog-squares-effect:after {
1632
+ position: absolute;
1633
+ content: "";
1634
+ top: 0;
1635
+ left: 0;
1636
+ width: 50%;
1637
+ height: 50%;
1638
+ -webkit-transform: translate(-100%, -100%);
1639
+ -ms-transform: translate(-100%, -100%);
1640
+ transform: translate(-100%, -100%);
1641
+ opacity: 0.7;
1642
+ -webkit-transition: all 0.3s linear 0s;
1643
+ transition: all 0.3s linear 0s; }
1644
+
1645
+ .premium-blog-squares-square-container:before, .premium-blog-squares-square-container:after {
1646
+ position: absolute;
1647
+ content: "";
1648
+ top: 0;
1649
+ left: 0;
1650
+ width: 50%;
1651
+ height: 50%;
1652
+ -webkit-transform: translate(-100%, -100%);
1653
+ -ms-transform: translate(-100%, -100%);
1654
+ transform: translate(-100%, -100%);
1655
+ opacity: 0.7;
1656
+ -webkit-transition: all 0.3s linear 0s;
1657
+ transition: all 0.3s linear 0s; }
1658
+
1659
+ .premium-blog-squares-square-container:before, .premium-blog-squares-square-container:after {
1660
+ opacity: 0.8; }
1661
+
1662
+ .premium-blog-squares-effect:after {
1663
+ -webkit-transform: translate(200%, 200%);
1664
+ -ms-transform: translate(200%, 200%);
1665
+ transform: translate(200%, 200%); }
1666
+
1667
+ .premium-blog-squares-square-container:before {
1668
+ -webkit-transform: translate(-100%, 200%);
1669
+ -ms-transform: translate(-100%, 200%);
1670
+ transform: translate(-100%, 200%); }
1671
+
1672
+ .premium-blog-squares-square-container:after {
1673
+ -webkit-transform: translate(200%, -100%);
1674
+ -ms-transform: translate(200%, -100%);
1675
+ transform: translate(200%, -100%); }
1676
+
1677
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:before {
1678
+ -webkit-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
1679
+ -ms-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
1680
+ transform: translate(0, 0%) scaleY(1.003) scaleX(1.003); }
1681
+
1682
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:after {
1683
+ -webkit-transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003);
1684
+ -ms-transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003);
1685
+ transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003); }
1686
+
1687
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:before {
1688
+ -webkit-transform: translate(0, 100%);
1689
+ -ms-transform: translate(0, 100%);
1690
+ transform: translate(0, 100%); }
1691
+
1692
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:after {
1693
+ -webkit-transform: translate(100%, 0%);
1694
+ -ms-transform: translate(100%, 0%);
1695
+ transform: translate(100%, 0%); }
1696
+
1697
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay {
1698
+ opacity: 1; }
1699
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay a {
1700
+ opacity: 1;
1701
+ -webkit-transform: scale(1);
1702
+ -ms-transform: scale(1);
1703
+ transform: scale(1); }
1704
+
1705
+ .premium-blog-clear-fix {
1706
+ clear: both; }
1707
+
1708
+ .premium-blog-masked .premium-blog-thumbnail-container {
1709
+ position: relative;
1710
+ overflow: visible; }
1711
+ .premium-blog-masked .premium-blog-thumbnail-container svg {
1712
+ position: absolute;
1713
+ height: 100px;
1714
+ width: 100%;
1715
+ bottom: -5px;
1716
+ left: 0;
1717
+ fill: #f5f5f5;
1718
+ z-index: 99; }
1719
+ .premium-blog-masked .premium-blog-thumbnail-container svg.premium-blog-shape-divider-svg {
1720
+ -webkit-transform: rotate(180deg);
1721
+ -ms-transform: rotate(180deg);
1722
+ transform: rotate(180deg); }
1723
+
1724
+ .premium-blog-masked .premium-blog-author-thumbnail,
1725
+ .premium-blog-masked .premium-blog-skin-banner .premium-blog-content-wrapper {
1726
+ z-index: 999 !important; }
1727
+
1728
+ .premium-blog-format-link {
1729
+ padding: 5px;
1730
+ line-height: 0; }
1731
+
1732
+ .premium-blog-entry-meta {
1733
+ line-height: 1.3em;
1734
+ font-size: 12px;
1735
+ margin-bottom: 13px;
1736
+ color: #adadad; }
1737
+ .premium-blog-entry-meta i {
1738
+ margin-right: 3px;
1739
+ -webkit-transition: all 0.3s ease-in-out;
1740
+ transition: all 0.3s ease-in-out; }
1741
+
1742
+ .premium-blog-meta-data {
1743
+ display: inline-block; }
1744
+ .premium-blog-meta-data .premium-blog-meta-separator {
1745
+ margin: 0 5px; }
1746
+ .premium-blog-meta-data a,
1747
+ .premium-blog-meta-data span {
1748
+ color: inherit;
1749
+ -webkit-transition: all 0.3s ease-in-out;
1750
+ transition: all 0.3s ease-in-out; }
1751
+
1752
+ .premium-blog-author-thumbnail {
1753
+ position: relative;
1754
+ padding: 0 30px;
1755
+ width: 100%;
1756
+ top: -10px;
1757
+ height: 0;
1758
+ pointer-events: none; }
1759
+ .premium-blog-author-thumbnail img {
1760
+ -webkit-border-radius: 50%;
1761
+ border-radius: 50%;
1762
+ width: 60px;
1763
+ pointer-events: all;
1764
+ -webkit-transform: translateY(-50%);
1765
+ -ms-transform: translateY(-50%);
1766
+ transform: translateY(-50%); }
1767
+
1768
+ .premium-blog-entry-title a,
1769
+ .premium-blog-post-tags-container a,
1770
+ .premium-blog-post-content .premium-blog-excerpt-link {
1771
+ -webkit-transition: all 0.3s ease-in-out;
1772
+ transition: all 0.3s ease-in-out; }
1773
+
1774
+ .premium-blog-excerpt-link-wrap a.premium-blog-excerpt-link {
1775
+ background-color: transparent;
1776
+ color: #54595f;
1777
+ padding: 0; }
1778
+
1779
+ .premium-blog-cta-full-yes .premium-blog-excerpt-link {
1780
+ width: 100%; }
1781
+
1782
+ .premium-blog-post-tags-container {
1783
+ margin-top: 8px;
1784
+ -js-display: flex;
1785
+ display: -webkit-box;
1786
+ display: -webkit-flex;
1787
+ display: -moz-box;
1788
+ display: -ms-flexbox;
1789
+ display: flex;
1790
+ -webkit-box-align: center;
1791
+ -webkit-align-items: center;
1792
+ -moz-box-align: center;
1793
+ -ms-flex-align: center;
1794
+ align-items: center;
1795
+ -webkit-flex-wrap: wrap;
1796
+ -ms-flex-wrap: wrap;
1797
+ flex-wrap: wrap; }
1798
+ .premium-blog-post-tags-container a {
1799
+ color: inherit;
1800
+ margin-left: 5px; }
1801
+
1802
+ /*Tags align*/
1803
+ .premium-blog-align-left .post-categories,
1804
+ .premium-blog-align-left .premium-blog-inner-container,
1805
+ .premium-blog-align-left .premium-blog-post-tags-container {
1806
+ -webkit-box-pack: start;
1807
+ -webkit-justify-content: flex-start;
1808
+ -moz-box-pack: start;
1809
+ -ms-flex-pack: start;
1810
+ justify-content: flex-start; }
1811
+
1812
+ .premium-blog-align-center .post-categories,
1813
+ .premium-blog-align-center .premium-blog-inner-container,
1814
+ .premium-blog-align-center .premium-blog-post-tags-container {
1815
+ -webkit-box-pack: center;
1816
+ -webkit-justify-content: center;
1817
+ -moz-box-pack: center;
1818
+ -ms-flex-pack: center;
1819
+ justify-content: center; }
1820
+
1821
+ .premium-blog-align-right .post-categories,
1822
+ .premium-blog-align-right .premium-blog-inner-container,
1823
+ .premium-blog-align-right .premium-blog-post-tags-container {
1824
+ -webkit-box-pack: end;
1825
+ -webkit-justify-content: flex-end;
1826
+ -moz-box-pack: end;
1827
+ -ms-flex-pack: end;
1828
+ justify-content: flex-end; }
1829
+
1830
+ /* Pagination */
1831
+ .premium-blog-pagination-container {
1832
+ text-align: right; }
1833
+ .premium-blog-pagination-container span {
1834
+ cursor: default; }
1835
+ .premium-blog-pagination-container .page-numbers {
1836
+ display: inline-block;
1837
+ color: #000;
1838
+ line-height: 1;
1839
+ font-size: 1em;
1840
+ font-weight: 400;
1841
+ text-decoration: none;
1842
+ padding: 0.75em;
1843
+ margin: 0 0.4em 0.4em 0;
1844
+ -webkit-transition: all 0.3s ease-in-out;
1845
+ transition: all 0.3s ease-in-out; }
1846
+
1847
+ .premium-blog-wrap .premium-loading-feed {
1848
+ display: block;
1849
+ position: absolute;
1850
+ width: 100%;
1851
+ height: 100%;
1852
+ top: 0px;
1853
+ left: 0px;
1854
+ bottom: 0px;
1855
+ right: 0px;
1856
+ background: rgba(255, 255, 255, 0.2);
1857
+ -js-display: flex;
1858
+ display: -webkit-box;
1859
+ display: -webkit-flex;
1860
+ display: -moz-box;
1861
+ display: -ms-flexbox;
1862
+ display: flex;
1863
+ -webkit-box-align: center;
1864
+ -webkit-align-items: center;
1865
+ -moz-box-align: center;
1866
+ -ms-flex-align: center;
1867
+ align-items: center;
1868
+ z-index: 99; }
1869
+
1870
+ .premium-blog-wrap {
1871
+ -js-display: flex;
1872
+ display: -webkit-box;
1873
+ display: -webkit-flex;
1874
+ display: -moz-box;
1875
+ display: -ms-flexbox;
1876
+ display: flex;
1877
+ -webkit-flex-wrap: wrap;
1878
+ -ms-flex-wrap: wrap;
1879
+ flex-wrap: wrap; }
1880
+ .premium-blog-wrap ul.slick-dots {
1881
+ width: 100%; }
1882
+
1883
+ /*
1884
+ * List Layout
1885
+ */
1886
+ .premium-blog-list .premium-blog-post-outer-container {
1887
+ width: 100%; }
1888
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1889
  /**
1890
+ * Even Layout
1891
+ */
1892
+ .premium-blog-even .premium-blog-post-container {
1893
+ height: 100%; }
1894
+
1895
+ .premium-blog-even .slick-track {
1896
+ -js-display: flex;
1897
+ display: -webkit-box;
1898
+ display: -webkit-flex;
1899
+ display: -moz-box;
1900
+ display: -ms-flexbox;
1901
+ display: flex; }
1902
+
1903
+ .premium-blog-even .slick-slide {
1904
+ height: inherit !important; }
1905
+
1906
+ .premium-blog-filter {
1907
+ -js-display: flex;
1908
+ display: -webkit-box;
1909
+ display: -webkit-flex;
1910
+ display: -moz-box;
1911
+ display: -ms-flexbox;
1912
+ display: flex;
1913
+ -webkit-box-align: center;
1914
+ -webkit-align-items: center;
1915
+ -moz-box-align: center;
1916
+ -ms-flex-align: center;
1917
+ align-items: center;
1918
+ -webkit-box-pack: center;
1919
+ -webkit-justify-content: center;
1920
+ -moz-box-pack: center;
1921
+ -ms-flex-pack: center;
1922
+ justify-content: center; }
1923
+
1924
+ .premium-blog-filter .premium-blog-filters-container li a.category {
1925
+ outline: none;
1926
+ text-decoration: none;
1927
+ -webkit-border-radius: 75px;
1928
+ border-radius: 75px;
1929
+ margin: 15px 5px 20px;
1930
+ padding: 7px 20px;
1931
+ -webkit-transition: all 0.3s ease-in-out;
1932
+ transition: all 0.3s ease-in-out; }
1933
+
1934
+ .premium-blog-filter ul.premium-blog-filters-container {
1935
+ text-align: center;
1936
+ margin: 0;
1937
+ padding: 0; }
1938
+
1939
+ .premium-blog-filter .premium-blog-filters-container li {
1940
+ list-style: none;
1941
+ -js-display: inline-flex;
1942
+ display: -webkit-inline-box;
1943
+ display: -webkit-inline-flex;
1944
+ display: -moz-inline-box;
1945
+ display: -ms-inline-flexbox;
1946
+ display: inline-flex; }
1947
+
1948
  /**
1949
+ * Responsive Style
1950
+ */
1951
+ @media (max-width: 768px) {
1952
+ .premium-blog-content-wrapper {
1953
+ top: 0;
1954
+ margin: 0;
1955
+ padding: 15px; }
1956
+ .premium-blog-skin-side {
1957
+ -webkit-box-orient: vertical;
1958
+ -webkit-box-direction: normal;
1959
+ -webkit-flex-direction: column;
1960
+ -moz-box-orient: vertical;
1961
+ -moz-box-direction: normal;
1962
+ -ms-flex-direction: column;
1963
+ flex-direction: column; } }
1964
+
1965
+ /**************** Premium Button ***********************/
1966
+ /*******************************************************/
1967
+ .premium-button {
1968
+ -js-display: inline-flex;
1969
+ display: -webkit-inline-box;
1970
+ display: -webkit-inline-flex;
1971
+ display: -moz-inline-box;
1972
+ display: -ms-inline-flexbox;
1973
+ display: inline-flex;
1974
+ position: relative;
1975
+ overflow: hidden;
1976
+ -webkit-backface-visibility: hidden;
1977
+ backface-visibility: hidden;
1978
+ -webkit-transform: translate3d(0, 0, 0);
1979
+ transform: translate3d(0, 0, 0);
1980
+ cursor: pointer;
1981
+ -webkit-transition: all 0.2s ease-in-out !important;
1982
+ transition: all 0.2s ease-in-out !important; }
1983
+
1984
+ .premium-button-style1,
1985
+ .premium-button-style2,
1986
+ .premium-button-style5,
1987
+ .premium-button-style7 {
1988
+ display: inline-block;
1989
+ vertical-align: middle;
1990
+ -webkit-transform: perspective(1px) translateZ(0);
1991
+ transform: perspective(1px) translateZ(0);
1992
+ -webkit-box-shadow: 0 0 1px transparent;
1993
+ box-shadow: 0 0 1px transparent;
1994
+ position: relative;
1995
+ -webkit-transition-property: color;
1996
+ transition-property: color;
1997
+ -webkit-transition-duration: 0.15s;
1998
+ transition-duration: 0.15s; }
1999
+
2000
+ .premium-button-style1:before,
2001
+ .premium-button-style2:before,
2002
+ .premium-button-style5:before {
2003
+ content: "";
2004
+ position: absolute;
2005
+ z-index: -1;
2006
+ top: 0;
2007
+ left: 0;
2008
+ right: 0;
2009
+ bottom: 0;
2010
+ -webkit-transform: scaleY(0);
2011
+ -ms-transform: scaleY(0);
2012
+ transform: scaleY(0);
2013
+ -webkit-transform-origin: 50% 0;
2014
+ -ms-transform-origin: 50% 0;
2015
+ transform-origin: 50% 0;
2016
+ -webkit-transition-property: -webkit-transform;
2017
+ transition-property: -webkit-transform;
2018
+ transition-property: transform;
2019
+ transition-property: transform, -webkit-transform;
2020
+ -webkit-transition-duration: 0.15s;
2021
+ transition-duration: 0.15s;
2022
+ -webkit-transition-timing-function: ease-out;
2023
+ transition-timing-function: ease-out; }
2024
+
2025
+ .premium-button-style5-radialin:before,
2026
+ .premium-button-style5-radialout:before {
2027
+ -webkit-transform-origin: 50%;
2028
+ -ms-transform-origin: 50%;
2029
+ transform-origin: 50%;
2030
+ -webkit-border-radius: 100%;
2031
+ border-radius: 100%;
2032
+ -webkit-transform: scale(0);
2033
+ -ms-transform: scale(0);
2034
+ transform: scale(0); }
2035
+
2036
+ .premium-button-style5-radialin:before {
2037
+ -webkit-transform: scale(2);
2038
+ -ms-transform: scale(2);
2039
+ transform: scale(2); }
2040
+
2041
+ .premium-button-style5-rectin:before {
2042
+ -webkit-transform-origin: 50%;
2043
+ -ms-transform-origin: 50%;
2044
+ transform-origin: 50%;
2045
+ -webkit-transform: scale(1);
2046
+ -ms-transform: scale(1);
2047
+ transform: scale(1); }
2048
+
2049
+ .premium-button-style5-rectout:before {
2050
+ -webkit-transform-origin: 50%;
2051
+ -ms-transform-origin: 50%;
2052
+ transform-origin: 50%;
2053
+ -webkit-transform: scale(0);
2054
+ -ms-transform: scale(0);
2055
+ transform: scale(0); }
2056
+
2057
+ .premium-button-style5-rectout:hover:before {
2058
+ -webkit-transform: scale(1);
2059
+ -ms-transform: scale(1);
2060
+ transform: scale(1); }
2061
+
2062
+ .premium-button-style5-rectin:hover:before {
2063
+ -webkit-transform: scale(0);
2064
+ -ms-transform: scale(0);
2065
+ transform: scale(0); }
2066
+
2067
+ .premium-button-style5-radialout:hover:before {
2068
+ -webkit-transform: scale(2);
2069
+ -ms-transform: scale(2);
2070
+ transform: scale(2); }
2071
+
2072
+ .premium-button-style5-radialin:hover:before {
2073
+ -webkit-transform: scale(0);
2074
+ -ms-transform: scale(0);
2075
+ transform: scale(0); }
2076
+
2077
+ .premium-button-style1-top:before {
2078
+ -webkit-transform-origin: 50% 100%;
2079
+ -ms-transform-origin: 50% 100%;
2080
+ transform-origin: 50% 100%; }
2081
+
2082
+ .premium-button-style1-right:before {
2083
+ -webkit-transform: scaleX(0);
2084
+ -ms-transform: scaleX(0);
2085
+ transform: scaleX(0);
2086
+ -webkit-transform-origin: 0% 50%;
2087
+ -ms-transform-origin: 0% 50%;
2088
+ transform-origin: 0% 50%; }
2089
+
2090
+ .premium-button-style1-left:before {
2091
+ -webkit-transform: scaleX(0);
2092
+ -ms-transform: scaleX(0);
2093
+ transform: scaleX(0);
2094
+ -webkit-transform-origin: 100% 50%;
2095
+ -ms-transform-origin: 100% 50%;
2096
+ transform-origin: 100% 50%; }
2097
+
2098
+ .premium-button-style2-shutouthor:before,
2099
+ .premium-button-style2-scshutoutver:before {
2100
+ -webkit-transform: scaleY(0);
2101
+ -ms-transform: scaleY(0);
2102
+ transform: scaleY(0);
2103
+ -webkit-transform-origin: 100% 50%;
2104
+ -ms-transform-origin: 100% 50%;
2105
+ transform-origin: 100% 50%; }
2106
+
2107
+ .premium-button-style2-shutoutver:before,
2108
+ .premium-button-style2-scshutouthor:before {
2109
+ -webkit-transform: scaleX(0);
2110
+ -ms-transform: scaleX(0);
2111
+ transform: scaleX(0);
2112
+ -webkit-transform-origin: 50% 50%;
2113
+ -ms-transform-origin: 50% 50%;
2114
+ transform-origin: 50% 50%; }
2115
+
2116
+ .premium-button-style2-shutinhor:before {
2117
+ -webkit-transform: scaleX(1);
2118
+ -ms-transform: scaleX(1);
2119
+ transform: scaleX(1);
2120
+ -webkit-transform-origin: 50%;
2121
+ -ms-transform-origin: 50%;
2122
+ transform-origin: 50%; }
2123
+
2124
+ .premium-button-style2-shutinver:before {
2125
+ -webkit-transform: scaleY(1);
2126
+ -ms-transform: scaleY(1);
2127
+ transform: scaleY(1);
2128
+ -webkit-transform-origin: 50%;
2129
+ -ms-transform-origin: 50%;
2130
+ transform-origin: 50%; }
2131
+
2132
+ .premium-button-style1-bottom:hover:before,
2133
+ .premium-button-style1-top:hover:before {
2134
+ -webkit-transform: scaleY(1);
2135
+ -ms-transform: scaleY(1);
2136
+ transform: scaleY(1); }
2137
+
2138
+ .premium-button-style1-left:hover:before,
2139
+ .premium-button-style1-right:hover:before,
2140
+ .premium-button-style2-shutouthor:hover:before,
2141
+ .premium-button-style2-shutoutver:hover:before {
2142
+ -webkit-transform: scaleX(1);
2143
+ -ms-transform: scaleX(1);
2144
+ transform: scaleX(1); }
2145
+
2146
+ .premium-button-style2-shutinhor:hover:before {
2147
+ -webkit-transform: scaleX(0);
2148
+ -ms-transform: scaleX(0);
2149
+ transform: scaleX(0); }
2150
+
2151
+ .premium-button-style2-shutinver:hover:before {
2152
+ -webkit-transform: scaleY(0);
2153
+ -ms-transform: scaleY(0);
2154
+ transform: scaleY(0); }
2155
+
2156
+ .premium-button-style2-scshutouthor:hover:before {
2157
+ -webkit-transform: scaleX(0.9);
2158
+ -ms-transform: scaleX(0.9);
2159
+ transform: scaleX(0.9); }
2160
+
2161
+ .premium-button-style2-scshutoutver:hover:before {
2162
+ -webkit-transform: scaleY(0.8);
2163
+ -ms-transform: scaleY(0.8);
2164
+ transform: scaleY(0.8); }
2165
+
2166
+ /*Diagonal*/
2167
+ .premium-button-style2-dshutinhor:before {
2168
+ top: 50%;
2169
+ left: 50%;
2170
+ width: 120%;
2171
+ height: 0%;
2172
+ -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
2173
+ -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
2174
+ transform: translateX(-50%) translateY(-50%) rotate(-45deg);
2175
+ -webkit-transform-origin: 50%;
2176
+ -ms-transform-origin: 50%;
2177
+ transform-origin: 50%;
2178
+ -webkit-transition-property: all;
2179
+ transition-property: all; }
2180
+
2181
+ .premium-button-style2-dshutinver:before {
2182
+ top: 50%;
2183
+ left: 50%;
2184
+ width: 120%;
2185
+ height: 0%;
2186
+ -webkit-transform-origin: 50%;
2187
+ -ms-transform-origin: 50%;
2188
+ transform-origin: 50%;
2189
+ -webkit-transition-property: all;
2190
+ transition-property: all;
2191
+ -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
2192
+ -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
2193
+ transform: translateX(-50%) translateY(-50%) rotate(45deg); }
2194
+
2195
+ .premium-button-style2-dshutinhor:hover:before,
2196
+ .premium-button-style2-dshutinver:hover:before {
2197
+ height: 220%; }
2198
+
2199
+ .premium-button-style3-before i,
2200
+ .premium-button-style3-before svg {
2201
+ opacity: 0;
2202
+ -webkit-transform: translateX(-5px);
2203
+ -ms-transform: translateX(-5px);
2204
+ transform: translateX(-5px);
2205
+ -webkit-transition: all 0.5s ease-in-out;
2206
+ transition: all 0.5s ease-in-out; }
2207
+
2208
+ .premium-button-style3-after i,
2209
+ .premium-button-style3-after svg {
2210
+ opacity: 0;
2211
+ -webkit-transform: translateX(-5px);
2212
+ -ms-transform: translateX(-5px);
2213
+ transform: translateX(-5px);
2214
+ -webkit-transition: all 0.5s ease-in-out;
2215
+ transition: all 0.5s ease-in-out;
2216
+ -webkit-transform: translateX(5px);
2217
+ -ms-transform: translateX(5px);
2218
+ transform: translateX(5px); }
2219
+
2220
+ .premium-button-style3-after:hover i,
2221
+ .premium-button-style3-after:hover svg {
2222
+ opacity: 1; }
2223
+
2224
+ .premium-button-style3-before:hover i,
2225
+ .premium-button-style3-before:hover svg {
2226
+ opacity: 1; }
2227
+
2228
+ .premium-button-text-icon-wrapper {
2229
+ width: 100%;
2230
+ -js-display: flex;
2231
+ display: -webkit-box;
2232
+ display: -webkit-flex;
2233
+ display: -moz-box;
2234
+ display: -ms-flexbox;
2235
+ display: flex;
2236
+ -webkit-box-pack: center;
2237
+ -webkit-justify-content: center;
2238
+ -moz-box-pack: center;
2239
+ -ms-flex-pack: center;
2240
+ justify-content: center;
2241
+ -webkit-box-align: center;
2242
+ -webkit-align-items: center;
2243
+ -moz-box-align: center;
2244
+ -ms-flex-align: center;
2245
+ align-items: center;
2246
+ -webkit-transition: all 0.2s ease-in-out;
2247
+ transition: all 0.2s ease-in-out; }
2248
+ .premium-button-text-icon-wrapper span,
2249
+ .premium-button-text-icon-wrapper i,
2250
+ .premium-button-text-icon-wrapper svg {
2251
+ -webkit-transition: all 0.2s ease-in-out;
2252
+ transition: all 0.2s ease-in-out; }
2253
+
2254
+ .premium-button-style4-icon-wrapper {
2255
+ position: absolute;
2256
+ z-index: 2;
2257
+ width: 100%;
2258
+ text-align: center;
2259
+ -js-display: flex;
2260
+ display: -webkit-box;
2261
+ display: -webkit-flex;
2262
+ display: -moz-box;
2263
+ display: -ms-flexbox;
2264
+ display: flex;
2265
+ -webkit-box-align: center;
2266
+ -webkit-align-items: center;
2267
+ -moz-box-align: center;
2268
+ -ms-flex-align: center;
2269
+ align-items: center;
2270
+ -webkit-box-pack: center;
2271
+ -webkit-justify-content: center;
2272
+ -moz-box-pack: center;
2273
+ -ms-flex-pack: center;
2274
+ justify-content: center;
2275
+ height: 100%;
2276
+ opacity: 0;
2277
+ -webkit-transition: all 0.3s ease-in-out;
2278
+ transition: all 0.3s ease-in-out; }
2279
+ .premium-button-style4-icon-wrapper.top {
2280
+ bottom: -100%;
2281
+ left: 0; }
2282
+ .premium-button-style4-icon-wrapper.bottom {
2283
+ top: -100%;
2284
+ left: 0; }
2285
+ .premium-button-style4-icon-wrapper.left {
2286
+ top: 0;
2287
+ left: -100%; }
2288
+ .premium-button-style4-icon-wrapper.right {
2289
+ top: 0;
2290
+ right: -100%; }
2291
+
2292
+ .premium-button-style4-bottom:hover .premium-button-style4-icon-wrapper {
2293
+ top: 0;
2294
+ opacity: 1; }
2295
+
2296
+ .premium-button-style4-top:hover .premium-button-style4-icon-wrapper {
2297
+ bottom: 0;
2298
+ opacity: 1; }
2299
+
2300
+ .premium-button-style4-left:hover .premium-button-style4-icon-wrapper {
2301
+ left: 0;
2302
+ opacity: 1; }
2303
+
2304
+ .premium-button-style4-right:hover .premium-button-style4-icon-wrapper {
2305
+ right: 0;
2306
+ opacity: 1; }
2307
+
2308
+ .premium-button-style4-bottom:hover .premium-button-text-icon-wrapper {
2309
+ -webkit-transform: translateY(100%);
2310
+ -ms-transform: translateY(100%);
2311
+ transform: translateY(100%);
2312
+ opacity: 0; }
2313
+
2314
+ .premium-button-style4-top:hover .premium-button-text-icon-wrapper {
2315
+ -webkit-transform: translateY(-100%);
2316
+ -ms-transform: translateY(-100%);
2317
+ transform: translateY(-100%);
2318
+ opacity: 0; }
2319
+
2320
+ .premium-button-style4-left:hover .premium-button-text-icon-wrapper {
2321
+ -webkit-transform: translateX(100%);
2322
+ -ms-transform: translateX(100%);
2323
+ transform: translateX(100%);
2324
+ opacity: 0; }
2325
+
2326
+ .premium-button-style4-right:hover .premium-button-text-icon-wrapper {
2327
+ -webkit-transform: translateX(-100%);
2328
+ -ms-transform: translateX(-100%);
2329
+ transform: translateX(-100%);
2330
+ opacity: 0; }
2331
+
2332
+ .premium-button-style6:before {
2333
+ content: "";
2334
+ position: absolute;
2335
+ left: 50%;
2336
+ top: 50%;
2337
+ width: 100px;
2338
+ height: 100px;
2339
+ -webkit-border-radius: 100%;
2340
+ border-radius: 100%;
2341
+ -webkit-transform: translate(-50%, -50%) scale(0);
2342
+ -ms-transform: translate(-50%, -50%) scale(0);
2343
+ transform: translate(-50%, -50%) scale(0);
2344
+ -webkit-transition: all 0.3s ease-in-out;
2345
+ transition: all 0.3s ease-in-out; }
2346
+
2347
+ .premium-button-style6:hover:before {
2348
+ -webkit-transform: translate(-50%, -50%) scale(3);
2349
+ -ms-transform: translate(-50%, -50%) scale(3);
2350
+ transform: translate(-50%, -50%) scale(3); }
2351
+
2352
+ .premium-button-style6 .premium-button-text-icon-wrapper {
2353
+ position: relative;
2354
+ z-index: 1; }
2355
+
2356
+ .premium-button-style7-right .premium-button-text-icon-wrapper:before,
2357
+ .premium-button-style7-left .premium-button-text-icon-wrapper:before {
2358
+ -webkit-transition: width 0.3s ease-out 0.15s;
2359
+ transition: width 0.3s ease-out 0.15s; }
2360
+
2361
+ .premium-button-style7-right .premium-button-text-icon-wrapper:after,
2362
+ .premium-button-style7-left .premium-button-text-icon-wrapper:after {
2363
+ -webkit-transition: width 0.3s ease-out 0s;
2364
+ transition: width 0.3s ease-out 0s; }
2365
+
2366
+ .premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
2367
+ .premium-button-style7-top .premium-button-text-icon-wrapper:before {
2368
+ -webkit-transition: height 0.3s ease-out 0.15s;
2369
+ transition: height 0.3s ease-out 0.15s; }
2370
+
2371
+ .premium-button-style7-bottom .premium-button-text-icon-wrapper:after,
2372
+ .premium-button-style7-top .premium-button-text-icon-wrapper:after {
2373
+ -webkit-transition: height 0.3s ease-out 0s;
2374
+ transition: height 0.3s ease-out 0s; }
2375
+
2376
+ .premium-button-style7:hover .premium-button-text-icon-wrapper:before {
2377
+ -webkit-transition-delay: 0s;
2378
+ transition-delay: 0s; }
2379
+
2380
+ .premium-button-style7:hover .premium-button-text-icon-wrapper:after {
2381
+ -webkit-transition-delay: 0.15s;
2382
+ transition-delay: 0.15s; }
2383
+
2384
+ .premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
2385
+ .premium-button-style7-bottom .premium-button-text-icon-wrapper:after {
2386
+ content: "";
2387
+ position: absolute;
2388
+ right: 0;
2389
+ top: 0;
2390
+ left: 0;
2391
+ height: 0;
2392
+ z-index: -1; }
2393
+
2394
+ .premium-button-style7-top .premium-button-text-icon-wrapper:after,
2395
+ .premium-button-style7-top .premium-button-text-icon-wrapper:before {
2396
+ content: "";
2397
+ position: absolute;
2398
+ right: 0;
2399
+ bottom: 0;
2400
+ left: 0;
2401
+ height: 0;
2402
+ z-index: -1; }
2403
+
2404
+ .premium-button-style7-right .premium-button-text-icon-wrapper:after,
2405
+ .premium-button-style7-right .premium-button-text-icon-wrapper:before {
2406
+ content: "";
2407
+ position: absolute;
2408
+ right: 0;
2409
+ top: 0;
2410
+ bottom: 0;
2411
+ width: 0;
2412
+ z-index: -1; }
2413
+
2414
+ .premium-button-style7-left .premium-button-text-icon-wrapper:after,
2415
+ .premium-button-style7-left .premium-button-text-icon-wrapper:before {
2416
+ content: "";
2417
+ position: absolute;
2418
+ left: 0;
2419
+ top: 0;
2420
+ bottom: 0;
2421
+ width: 0;
2422
+ z-index: -1; }
2423
+
2424
+ .premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:after,
2425
+ .premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:before {
2426
+ height: 100%;
2427
+ top: 0; }
2428
+
2429
+ .premium-button-style7-top:hover .premium-button-text-icon-wrapper:after,
2430
+ .premium-button-style7-top:hover .premium-button-text-icon-wrapper:before {
2431
+ height: 100%;
2432
+ bottom: 0; }
2433
+
2434
+ .premium-button-style7-left:hover .premium-button-text-icon-wrapper:after,
2435
+ .premium-button-style7-left:hover .premium-button-text-icon-wrapper:before {
2436
+ width: 100%;
2437
+ left: 0; }
2438
+
2439
+ .premium-button-style7-right:hover .premium-button-text-icon-wrapper:after,
2440
+ .premium-button-style7-right:hover .premium-button-text-icon-wrapper:before {
2441
+ width: 100%;
2442
+ right: 0; }
2443
+
2444
+ /**************** Premium Carousel ****************/
2445
+ /**************************************************/
2446
+ .premium-carousel-wrapper a.carousel-arrow, .premium-carousel-wrapper a.ver-carousel-arrow {
2447
+ -js-display: flex;
2448
+ display: -webkit-box;
2449
+ display: -webkit-flex;
2450
+ display: -moz-box;
2451
+ display: -ms-flexbox;
2452
+ display: flex;
2453
+ -webkit-box-align: center;
2454
+ -webkit-align-items: center;
2455
+ -moz-box-align: center;
2456
+ -ms-flex-align: center;
2457
+ align-items: center;
2458
+ -webkit-box-pack: center;
2459
+ -webkit-justify-content: center;
2460
+ -moz-box-pack: center;
2461
+ -ms-flex-pack: center;
2462
+ justify-content: center;
2463
+ width: 2em;
2464
+ height: 2em;
2465
+ line-height: 0;
2466
+ text-align: center;
2467
+ position: absolute;
2468
+ z-index: 99;
2469
+ cursor: pointer;
2470
+ -webkit-transition: all 0.3s ease-in-out;
2471
+ transition: all 0.3s ease-in-out;
2472
+ -webkit-appearance: inherit;
2473
+ border: none;
2474
+ -webkit-box-shadow: none;
2475
+ box-shadow: none; }
2476
+ .premium-carousel-wrapper a.carousel-arrow svg, .premium-carousel-wrapper a.ver-carousel-arrow svg {
2477
+ -webkit-transition: all 0.3s ease-in-out;
2478
+ transition: all 0.3s ease-in-out; }
2479
+
2480
+ .ver-carousel-arrow.carousel-next i {
2481
+ margin-bottom: -3px; }
2482
+
2483
+ .premium-carousel-wrapper a.slick-arrow:hover {
2484
+ -webkit-box-shadow: none !important;
2485
+ box-shadow: none !important; }
2486
+
2487
+ .premium-carousel-wrapper .premium-carousel-content-hidden {
2488
+ visibility: hidden; }
2489
+
2490
+ .premium-carousel-wrapper a.carousel-arrow {
2491
+ top: 50%; }
2492
+
2493
+ .premium-carousel-wrapper a.ver-carousel-arrow {
2494
+ left: 50%;
2495
+ -webkit-transform: translateX(-50%);
2496
+ -ms-transform: translateX(-50%);
2497
+ transform: translateX(-50%); }
2498
+
2499
+ .premium-carousel-dots-above ul.slick-dots {
2500
+ position: absolute;
2501
+ -js-display: flex;
2502
+ display: -webkit-box;
2503
+ display: -webkit-flex;
2504
+ display: -moz-box;
2505
+ display: -ms-flexbox;
2506
+ display: flex;
2507
+ width: auto;
2508
+ top: 50%;
2509
+ bottom: auto;
2510
+ -webkit-transform: translateY(-50%);
2511
+ -ms-transform: translateY(-50%);
2512
+ transform: translateY(-50%);
2513
+ -webkit-box-orient: vertical;
2514
+ -webkit-box-direction: normal;
2515
+ -webkit-flex-direction: column;
2516
+ -moz-box-orient: vertical;
2517
+ -moz-box-direction: normal;
2518
+ -ms-flex-direction: column;
2519
+ flex-direction: column; }
2520
+
2521
+ /*
2522
+ * Custom Navigation Dot
2523
+ */
2524
+ .premium-carousel-wrapper .premium-carousel-nav-dot,
2525
+ .premium-carousel-wrapper .premium-carousel-nav-arrow-prev,
2526
+ .premium-carousel-wrapper .premium-carousel-nav-arrow-next {
2527
+ display: none; }
2528
+
2529
+ .premium-carousel-wrapper ul.slick-dots svg {
2530
+ width: 20px;
2531
+ height: 20px;
2532
+ outline: none !important; }
2533
+
2534
+ /* Ripple Out */
2535
+ @-webkit-keyframes hvr-ripple-out {
2536
+ 0% {
2537
+ -webkit-transform: scale(1);
2538
+ transform: scale(1);
2539
+ opacity: 1; }
2540
+ 100% {
2541
+ -webkit-transform: scale(1.5);
2542
+ transform: scale(1.5);
2543
+ opacity: 0; } }
2544
+ @keyframes hvr-ripple-out {
2545
+ 0% {
2546
+ -webkit-transform: scale(1);
2547
+ transform: scale(1);
2548
+ opacity: 1; }
2549
+ 100% {
2550
+ -webkit-transform: scale(1.5);
2551
+ transform: scale(1.5);
2552
+ opacity: 0; } }
2553
+
2554
+ .premium-carousel-ripple-yes .premium-carousel-wrapper {
2555
+ padding-bottom: 1px; }
2556
+
2557
+ .premium-carousel-ripple-yes ul.slick-dots li {
2558
+ position: relative; }
2559
+ .premium-carousel-ripple-yes ul.slick-dots li i {
2560
+ position: relative;
2561
+ z-index: 1; }
2562
+ .premium-carousel-ripple-yes ul.slick-dots li:hover:before {
2563
+ content: "";
2564
+ position: absolute;
2565
+ -webkit-transform: scale(1);
2566
+ -ms-transform: scale(1);
2567
+ transform: scale(1);
2568
+ top: 0;
2569
+ right: 0;
2570
+ bottom: 0;
2571
+ left: 0;
2572
+ -webkit-border-radius: 50%;
2573
+ border-radius: 50%;
2574
+ pointer-events: none;
2575
+ background-color: rgba(0, 0, 0, 0.15); }
2576
+ .premium-carousel-ripple-yes ul.slick-dots li.slick-active:hover:before {
2577
+ background-color: rgba(0, 0, 0, 0.3); }
2578
+ .premium-carousel-ripple-yes ul.slick-dots li:hover:before {
2579
+ -webkit-animation: hvr-ripple-out 1.3s infinite;
2580
+ animation: hvr-ripple-out 1.3s infinite; }
2581
+
2582
+ .premium-carousel-wrapper.premium-carousel-scale .slick-slide {
2583
+ -webkit-transform: scale(1.25, 1.25);
2584
+ -ms-transform: scale(1.25, 1.25);
2585
+ transform: scale(1.25, 1.25);
2586
+ -webkit-transition: all 0.3s ease-in-out !important;
2587
+ transition: all 0.3s ease-in-out !important; }
2588
+
2589
+ .premium-carousel-wrapper.premium-carousel-scale div.slick-active {
2590
+ -webkit-transform: scale(1, 1);
2591
+ -ms-transform: scale(1, 1);
2592
+ transform: scale(1, 1); }
2593
+
2594
+ [dir="rtl"] .premium-carousel-inner .slick-slide {
2595
+ float: right; }
2596
+
2597
+ /**************** Premium Contact Form7 **********/
2598
+ /*************************************************/
2599
+ .premium-contact-form-anim-yes .wpcf7-span::after {
2600
+ display: block;
2601
+ height: 2px;
2602
+ content: "";
2603
+ top: -2px;
2604
+ position: relative;
2605
+ width: 0px;
2606
+ -webkit-transition: all ease-in-out 0.3s;
2607
+ transition: all ease-in-out 0.3s; }
2608
+
2609
+ .premium-contact-form-anim-yes .wpcf7-span.is-focused::after {
2610
+ width: 100%; }
2611
+
2612
+ .premium-cf7-container input.wpcf7-submit {
2613
+ -webkit-transition: all 0.3s ease-in-out;
2614
+ transition: all 0.3s ease-in-out; }
2615
+
2616
+ /**************** Premium CountDown *************/
2617
+ /************************************************/
2618
+ .premium-countdown {
2619
+ -js-display: flex;
2620
+ display: -webkit-box;
2621
+ display: -webkit-flex;
2622
+ display: -moz-box;
2623
+ display: -ms-flexbox;
2624
+ display: flex;
2625
+ text-align: center; }
2626
+
2627
+ .countdown-row {
2628
+ display: block;
2629
+ text-align: center; }
2630
+
2631
+ .countdown .countdown-section {
2632
+ display: inline-block;
2633
+ max-width: 100%;
2634
+ margin-bottom: 15px;
2635
+ -js-display: inline-flex;
2636
+ display: -webkit-inline-box;
2637
+ display: -webkit-inline-flex;
2638
+ display: -moz-inline-box;
2639
+ display: -ms-inline-flexbox;
2640
+ display: inline-flex;
2641
+ -webkit-box-align: center;
2642
+ -webkit-align-items: center;
2643
+ -moz-box-align: center;
2644
+ -ms-flex-align: center;
2645
+ align-items: center; }
2646
+ .countdown .countdown-section:last-child {
2647
+ margin-right: 0; }
2648
+
2649
+ .countdown span.countdown-amount {
2650
+ font-size: 70px;
2651
+ line-height: 1;
2652
+ padding: 40px; }
2653
+
2654
+ .countdown .pre_time-mid {
2655
+ display: block; }
2656
+
2657
+ .premium-countdown-separator-yes .countdown_separator {
2658
+ display: block;
2659
+ margin: 0 50px;
2660
+ font-size: 30px; }
2661
+
2662
+ .premium-countdown-separator-yes .countdown-row .countdown-section:last-child .countdown_separator,
2663
+ .premium-countdown-separator-yes .premium-countdown-block:last-child .countdown_separator {
2664
+ display: none; }
2665
+
2666
  /**
2667
+ * Digit and unit styles
2668
+ */
2669
+ .side .countdown-section .countdown-period {
2670
+ vertical-align: bottom; }
2671
+
2672
+ .countdown .countdown-section .countdown-period {
2673
+ font-size: 17px;
2674
+ line-height: 3em; }
2675
+
2676
+ .side .countdown-section .countdown-amount,
2677
+ .side .countdown-section .countdown-period {
2678
+ display: inline-block; }
2679
+
2680
+ .side .countdown-section .countdown-amount {
2681
+ margin-right: 5px; }
2682
+
2683
+ .down .countdown-section .countdown-amount,
2684
+ .down .countdown-section .countdown-period {
2685
+ display: block; }
2686
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2687
  /**
2688
+ * Flip Layout
2689
+ */
2690
+ .premium-countdown-flip .premium-countdown-block {
2691
+ text-align: center;
2692
+ -js-display: inline-flex;
2693
+ display: -webkit-inline-box;
2694
+ display: -webkit-inline-flex;
2695
+ display: -moz-inline-box;
2696
+ display: -ms-inline-flexbox;
2697
+ display: inline-flex;
2698
+ -webkit-box-align: center;
2699
+ -webkit-align-items: center;
2700
+ -moz-box-align: center;
2701
+ -ms-flex-align: center;
2702
+ align-items: center; }
2703
+ .premium-countdown-flip .premium-countdown-block:last-child {
2704
+ margin-right: 0; }
2705
+
2706
+ .premium-countdown-flip .premium-countdown-label {
2707
+ overflow: hidden;
2708
+ color: #1a1a1a;
2709
+ text-transform: uppercase; }
2710
+
2711
+ .premium-countdown-flip .premium-countdown-figure {
2712
+ position: relative;
2713
+ height: 110px;
2714
+ width: 100px;
2715
+ line-height: 107px;
2716
+ background-color: #fff;
2717
+ -webkit-border-radius: 10px;
2718
+ border-radius: 10px;
2719
+ -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
2720
+ box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08); }
2721
+ .premium-countdown-flip .premium-countdown-figure:last-child {
2722
+ margin-right: 0; }
2723
+ .premium-countdown-flip .premium-countdown-figure > span {
2724
+ position: absolute;
2725
+ left: 0;
2726
+ right: 0;
2727
+ margin: auto;
2728
+ font-weight: 700; }
2729
+ .premium-countdown-flip .premium-countdown-figure .top {
2730
+ z-index: 3;
2731
+ -webkit-transform-origin: 50% 100%;
2732
+ -ms-transform-origin: 50% 100%;
2733
+ transform-origin: 50% 100%;
2734
+ -webkit-transform: perspective(200px);
2735
+ transform: perspective(200px);
2736
+ -webkit-backface-visibility: hidden;
2737
+ backface-visibility: hidden; }
2738
+ .premium-countdown-flip .premium-countdown-figure .bottom {
2739
+ z-index: 1; }
2740
+ .premium-countdown-flip .premium-countdown-figure .bottom::before {
2741
+ content: "";
2742
+ position: absolute;
2743
+ display: block;
2744
+ top: 0;
2745
+ left: 0;
2746
+ width: 100%;
2747
+ height: 50%;
2748
+ background-color: rgba(0, 0, 0, 0.02); }
2749
+ .premium-countdown-flip .premium-countdown-figure .top-back {
2750
+ -webkit-backface-visibility: hidden;
2751
+ backface-visibility: hidden;
2752
+ z-index: 4;
2753
+ bottom: 0;
2754
+ -webkit-transform-origin: 50% 0;
2755
+ -ms-transform-origin: 50% 0;
2756
+ transform-origin: 50% 0;
2757
+ -webkit-transform: perspective(200px) rotateX(180deg);
2758
+ transform: perspective(200px) rotateX(180deg); }
2759
+ .premium-countdown-flip .premium-countdown-figure .top-back span {
2760
+ position: absolute;
2761
+ top: -100%;
2762
+ left: 0;
2763
+ right: 0;
2764
+ margin: auto; }
2765
+ .premium-countdown-flip .premium-countdown-figure .bottom-back {
2766
+ z-index: 2;
2767
+ top: 0; }
2768
+ .premium-countdown-flip .premium-countdown-figure .bottom-back span {
2769
+ position: absolute;
2770
+ top: 0;
2771
+ left: 0;
2772
+ right: 0;
2773
+ margin: auto; }
2774
+ .premium-countdown-flip .premium-countdown-figure .top,
2775
+ .premium-countdown-flip .premium-countdown-figure .bottom-back,
2776
+ .premium-countdown-flip .premium-countdown-figure .top-back {
2777
+ height: 50%;
2778
+ overflow: hidden;
2779
+ background-color: #f7f7f7;
2780
+ -webkit-border-top-left-radius: 10px;
2781
+ border-top-left-radius: 10px;
2782
+ -webkit-border-top-right-radius: 10px;
2783
+ border-top-right-radius: 10px; }
2784
+ .premium-countdown-flip .premium-countdown-figure .top-back {
2785
+ -webkit-border-bottom-left-radius: 10px;
2786
+ border-bottom-left-radius: 10px;
2787
+ -webkit-border-bottom-right-radius: 10px;
2788
+ border-bottom-right-radius: 10px; }
2789
+ .premium-countdown-flip .premium-countdown-figure .top::after,
2790
+ .premium-countdown-flip .premium-countdown-figure .bottom-back::after {
2791
+ content: "";
2792
+ position: absolute;
2793
+ z-index: -1;
2794
+ left: 0;
2795
+ bottom: 0;
2796
+ width: 100%;
2797
+ height: 100%;
2798
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
2799
+
2800
+ .side .premium-countdown-figure,
2801
+ .side .premium-countdown-label {
2802
+ display: inline-block; }
2803
+
2804
+ .side .premium-countdown-figure {
2805
+ margin-right: 5px; }
2806
+
2807
+ .down .premium-countdown-figure,
2808
+ .down .premium-countdown-label {
2809
+ display: block; }
2810
+
2811
+ .down .premium-countdown-label {
2812
+ width: 100%; }
2813
+
2814
+ /**************** Premium Counter ***************/
2815
+ /************************************************/
2816
+ .premium-counter-area {
2817
+ padding: 10px 0;
2818
+ -js-display: flex;
2819
+ display: -webkit-box;
2820
+ display: -webkit-flex;
2821
+ display: -moz-box;
2822
+ display: -ms-flexbox;
2823
+ display: flex;
2824
+ -webkit-box-pack: center;
2825
+ -webkit-justify-content: center;
2826
+ -moz-box-pack: center;
2827
+ -ms-flex-pack: center;
2828
+ justify-content: center;
2829
+ -webkit-box-align: center;
2830
+ -webkit-align-items: center;
2831
+ -moz-box-align: center;
2832
+ -ms-flex-align: center;
2833
+ align-items: center; }
2834
+ .premium-counter-area.top {
2835
+ -webkit-box-orient: vertical;
2836
+ -webkit-box-direction: normal;
2837
+ -webkit-flex-direction: column;
2838
+ -moz-box-orient: vertical;
2839
+ -moz-box-direction: normal;
2840
+ -ms-flex-direction: column;
2841
+ flex-direction: column; }
2842
+ .premium-counter-area.right {
2843
+ -webkit-box-orient: horizontal;
2844
+ -webkit-box-direction: reverse;
2845
+ -webkit-flex-direction: row-reverse;
2846
+ -moz-box-orient: horizontal;
2847
+ -moz-box-direction: reverse;
2848
+ -ms-flex-direction: row-reverse;
2849
+ flex-direction: row-reverse; }
2850
+ .premium-counter-area.right .premium-counter-icon {
2851
+ padding-left: 20px; }
2852
+ .premium-counter-area.left .premium-counter-icon {
2853
+ padding-right: 20px; }
2854
+ .premium-counter-area .premium-counter-icon .icon i.fa:before {
2855
+ vertical-align: text-top; }
2856
+ .premium-counter-area .premium-counter-icon span.icon {
2857
+ text-align: center;
2858
+ display: inline-block;
2859
+ vertical-align: middle; }
2860
+ .premium-counter-area .premium-counter-icon .circle {
2861
+ -webkit-border-radius: 100%;
2862
+ border-radius: 100%; }
2863
+ .premium-counter-area .premium-counter-icon img,
2864
+ .premium-counter-area .premium-counter-icon svg {
2865
+ width: 80px; }
2866
+ .premium-counter-area .premium-counter-icon .premium-counter-animation svg {
2867
+ height: 80px; }
2868
+ .premium-counter-area .premium-counter-title p {
2869
+ padding: 0;
2870
+ margin: 0; }
2871
+ .premium-counter-area .premium-counter-value-wrap {
2872
+ -js-display: flex;
2873
+ display: -webkit-box;
2874
+ display: -webkit-flex;
2875
+ display: -moz-box;
2876
+ display: -ms-flexbox;
2877
+ display: flex;
2878
+ -webkit-box-align: center;
2879
+ -webkit-align-items: center;
2880
+ -moz-box-align: center;
2881
+ -ms-flex-align: center;
2882
+ align-items: center; }
2883
+
2884
+ .premium-init-wrapper {
2885
+ -js-display: flex;
2886
+ display: -webkit-box;
2887
+ display: -webkit-flex;
2888
+ display: -moz-box;
2889
+ display: -ms-flexbox;
2890
+ display: flex; }
2891
+ .premium-init-wrapper.row {
2892
+ -webkit-box-align: center;
2893
+ -webkit-align-items: center;
2894
+ -moz-box-align: center;
2895
+ -ms-flex-align: center;
2896
+ align-items: center; }
2897
+ .premium-init-wrapper.right {
2898
+ text-align: right; }
2899
+
2900
+ span.icon.flex-width {
2901
+ width: auto !important;
2902
+ height: auto !important; }
2903
+
2904
+ .premium-counter-area .premium-counter-init {
2905
+ font-size: 35px; }
2906
+
2907
+ /**************** Premium Dual Heading *****************/
2908
+ /*******************************************************/
2909
+ .premium-dual-header-first-header,
2910
+ .premium-dual-header-second-header {
2911
+ position: relative;
2912
+ padding: 0;
2913
+ margin: 0;
2914
+ display: inline-block;
2915
+ -webkit-transform: translate(0, 0);
2916
+ -ms-transform: translate(0, 0);
2917
+ transform: translate(0, 0); }
2918
+
2919
+ .premium-dual-header-first-clip .premium-dual-header-first-span,
2920
+ .premium-dual-header-second-clip {
2921
+ -webkit-text-fill-color: transparent;
2922
+ -webkit-background-clip: text;
2923
+ background-clip: text; }
2924
+
2925
+ .premium-dual-header-first-clip.stroke .premium-dual-header-first-span,
2926
+ .premium-dual-header-second-clip.stroke {
2927
+ -webkit-text-stroke-color: transparent;
2928
+ -webkit-text-fill-color: #fafafa;
2929
+ -webkit-text-stroke-width: 2px; }
2930
+
2931
+ @media (max-width: 500px) {
2932
+ .premium-dual-header-first-header,
2933
+ .premium-dual-header-second-header {
2934
+ word-wrap: break-word; } }
2935
+
2936
+ .premium-dual-header-first-header.gradient .premium-dual-header-first-span,
2937
+ .premium-dual-header-second-header.gradient {
2938
+ -webkit-background-size: 300% 300% !important;
2939
+ background-size: 300% 300% !important;
2940
+ -webkit-animation: Gradient 10s ease-in-out infinite;
2941
+ animation: Gradient 10s ease-in-out infinite; }
2942
+
2943
+ @-webkit-keyframes Gradient {
2944
+ 0% {
2945
+ background-position: 0% 50%; }
2946
+ 50% {
2947
+ background-position: 100% 50%; }
2948
+ 100% {
2949
+ background-position: 0% 50%; } }
2950
+
2951
+ @keyframes Gradient {
2952
+ 0% {
2953
+ background-position: 0% 50%; }
2954
+ 50% {
2955
+ background-position: 100% 50%; }
2956
+ 100% {
2957
+ background-position: 0% 50%; } }
2958
+
2959
+ .premium-mask-yes.premium-header-inline .premium-dual-header-first-span,
2960
+ .premium-mask-yes.premium-header-inline .premium-dual-header-first-span {
2961
+ display: inline-block !important; }
2962
+
2963
+ /**************** Premium Fancy Text *******************/
2964
+ /*******************************************************/
2965
+ .premium-suffix-text,
2966
+ .premium-fancy-text,
2967
+ .premium-prefix-text {
2968
+ font-size: 40px; }
2969
+
2970
+ .premium-fancy-text-wrapper:not(.typing) .premium-fancy-text,
2971
+ .premium-fancy-item-hidden {
2972
+ opacity: 0; }
2973
+
2974
+ .premium-fancy-text-wrapper .premium-fancy-list-items {
2975
+ list-style: none; }
2976
+
2977
+ .premium-fancy-text-wrapper .premium-fancy-text-span-align {
2978
+ vertical-align: top; }
2979
+
2980
+ .premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-text-items-wrapper {
2981
+ margin: 0;
2982
+ padding: 0;
2983
+ border: none;
2984
+ position: relative; }
2985
+
2986
+ .premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-list-items {
2987
+ position: absolute;
2988
+ top: 0;
2989
+ left: 0;
2990
+ display: inline-block; }
2991
+
2992
+ .premium-fancy-text-wrapper.zoomout .premium-fancy-item-hidden {
2993
+ -webkit-animation: pa-zoom-out 0.8s;
2994
+ animation: pa-zoom-out 0.8s; }
2995
+
2996
+ .premium-fancy-text-wrapper.zoomout .premium-fancy-item-visible {
2997
+ position: relative !important;
2998
+ -webkit-animation: pa-zoom-in 0.8s;
2999
+ animation: pa-zoom-in 0.8s; }
3000
+
3001
+ .premium-fancy-text-wrapper.zoomout .premium-fancy-text-items-wrapper {
3002
+ -webkit-perspective: 300px;
3003
+ perspective: 300px; }
3004
+
3005
+ .premium-fancy-text-wrapper.rotate .premium-fancy-list-items {
3006
+ -webkit-transform-origin: 50% 100%;
3007
+ -ms-transform-origin: 50% 100%;
3008
+ transform-origin: 50% 100%; }
3009
+
3010
+ .premium-fancy-text-wrapper.rotate .premium-fancy-item-hidden {
3011
+ -webkit-transform: rotateX(180deg);
3012
+ transform: rotateX(180deg);
3013
+ -webkit-animation: pa-rotate-out 1.2s;
3014
+ animation: pa-rotate-out 1.2s; }
3015
+
3016
+ .premium-fancy-text-wrapper.rotate .premium-fancy-item-visible {
3017
+ position: relative !important;
3018
+ -webkit-transform: rotateX(0deg);
3019
+ transform: rotateX(0deg);
3020
+ -webkit-animation: pa-rotate-in 1.2s;
3021
+ animation: pa-rotate-in 1.2s; }
3022
+
3023
+ .premium-fancy-text-wrapper.custom .premium-fancy-item-visible {
3024
+ position: relative !important; }
3025
+
3026
+ .premium-fancy-text-wrapper.auto-fade .premium-fancy-text {
3027
+ display: inline-block;
3028
+ width: 200px;
3029
+ font-weight: 400; }
3030
+
3031
+ .premium-fancy-text-wrapper.auto-fade .premium-fancy-svg-text {
3032
+ position: relative;
3033
+ vertical-align: sub; }
3034
+
3035
+ .premium-fancy-text-wrapper.auto-fade g > text {
3036
+ text-anchor: start;
3037
+ shape-rendering: crispEdges;
3038
+ opacity: 0;
3039
+ font-size: 300px;
3040
+ -webkit-animation-name: pa-auto-fade;
3041
+ animation-name: pa-auto-fade;
3042
+ -moz-animation-name: pa-auto-fade;
3043
+ -webkit-animation-duration: 9s;
3044
+ animation-duration: 9s;
3045
+ -webkit-animation-timing-function: linear;
3046
+ animation-timing-function: linear;
3047
+ -webkit-animation-iteration-count: infinite;
3048
+ animation-iteration-count: infinite; }
3049
+
3050
+ .premium-fancy-text-wrapper.auto-fade g > text:nth-child(1) {
3051
+ -webkit-animation-delay: 0s;
3052
+ animation-delay: 0s; }
3053
+
3054
+ .premium-fancy-text-wrapper.auto-fade g > text:nth-child(2) {
3055
+ -webkit-animation-delay: 3s;
3056
+ animation-delay: 3s; }
3057
+
3058
+ .premium-fancy-text-wrapper.auto-fade g > text:nth-child(3) {
3059
+ -webkit-animation-delay: 6s;
3060
+ animation-delay: 6s; }
3061
+
3062
+ .premium-fancy-text-wrapper.loading .premium-fancy-text {
3063
+ position: relative; }
3064
+ .premium-fancy-text-wrapper.loading .premium-fancy-text .premium-loading-bar {
3065
+ position: absolute;
3066
+ width: 100%;
3067
+ height: 3px;
3068
+ bottom: 0;
3069
+ left: 0;
3070
+ animation: pa-loading-bar 2.5s ease-out infinite;
3071
+ -webkit-animation: pa-loading-bar 2.5s ease-out infinite; }
3072
+
3073
+ .premium-fancy-text-wrapper.loading.pause .premium-fancy-text:hover .premium-loading-bar {
3074
+ -webkit-animation-play-state: paused;
3075
+ animation-play-state: paused; }
3076
+
3077
+ @-webkit-keyframes pa-auto-fade {
3078
+ 0% {
3079
+ opacity: 0; }
3080
+ 20% {
3081
+ opacity: 1; }
3082
+ 35% {
3083
+ opacity: 0; }
3084
+ 100% {
3085
+ opacity: 0; } }
3086
+
3087
+ @keyframes pa-auto-fade {
3088
+ 0% {
3089
+ opacity: 0; }
3090
+ 20% {
3091
+ opacity: 1; }
3092
+ 35% {
3093
+ opacity: 0; }
3094
+ 100% {
3095
+ opacity: 0; } }
3096
+
3097
+ @-webkit-keyframes pa-loading-bar {
3098
+ 0% {
3099
+ width: 0; }
3100
+ 100% {
3101
+ width: 100; } }
3102
+
3103
+ @keyframes pa-loading-bar {
3104
+ 0% {
3105
+ width: 0; }
3106
+ 100% {
3107
+ width: 100; } }
3108
+
3109
+ @-webkit-keyframes pa-zoom-in {
3110
+ 0% {
3111
+ opacity: 0;
3112
+ -webkit-transform: translateZ(100px);
3113
+ transform: translateZ(100px); }
3114
+ 100% {
3115
+ opacity: 1;
3116
+ -webkit-transform: translateZ(0);
3117
+ transform: translateZ(0); } }
3118
+
3119
+ @keyframes pa-zoom-in {
3120
+ 0% {
3121
+ opacity: 0;
3122
+ -webkit-transform: translateZ(100px);
3123
+ transform: translateZ(100px); }
3124
+ 100% {
3125
+ opacity: 1;
3126
+ -webkit-transform: translateZ(0);
3127
+ transform: translateZ(0); } }
3128
+
3129
+ @-webkit-keyframes pa-zoom-out {
3130
+ 0% {
3131
+ opacity: 1;
3132
+ -webkit-transform: translateZ(0);
3133
+ transform: translateZ(0); }
3134
+ 100% {
3135
+ opacity: 0;
3136
+ -webkit-transform: translateZ(-100px);
3137
+ transform: translateZ(-100px); } }
3138
+
3139
+ @keyframes pa-zoom-out {
3140
+ 0% {
3141
+ opacity: 1;
3142
+ -webkit-transform: translateZ(0);
3143
+ transform: translateZ(0); }
3144
+ 100% {
3145
+ opacity: 0;
3146
+ -webkit-transform: translateZ(-100px);
3147
+ transform: translateZ(-100px); } }
3148
+
3149
+ @-webkit-keyframes pa-rotate-in {
3150
+ 0% {
3151
+ opacity: 0;
3152
+ -webkit-transform: rotateX(180deg);
3153
+ transform: rotateX(180deg); }
3154
+ 35% {
3155
+ opacity: 0;
3156
+ -webkit-transform: rotateX(120deg);
3157
+ transform: rotateX(120deg); }
3158
+ 65% {
3159
+ opacity: 0; }
3160
+ 100% {
3161
+ opacity: 1;
3162
+ -webkit-transform: rotateX(360deg);
3163
+ transform: rotateX(360deg); } }
3164
+
3165
+ @keyframes pa-rotate-in {
3166
+ 0% {
3167
+ opacity: 0;
3168
+ -webkit-transform: rotateX(180deg);
3169
+ transform: rotateX(180deg); }
3170
+ 35% {
3171
+ opacity: 0;
3172
+ -webkit-transform: rotateX(120deg);
3173
+ transform: rotateX(120deg); }
3174
+ 65% {
3175
+ opacity: 0; }
3176
+ 100% {
3177
+ opacity: 1;
3178
+ -webkit-transform: rotateX(360deg);
3179
+ transform: rotateX(360deg); } }
3180
+
3181
+ @-webkit-keyframes pa-rotate-out {
3182
+ 0% {
3183
+ opacity: 1;
3184
+ -webkit-transform: rotateX(0deg);
3185
+ transform: rotateX(0deg); }
3186
+ 35% {
3187
+ opacity: 1;
3188
+ -webkit-transform: rotateX(-40deg);
3189
+ transform: rotateX(-40deg); }
3190
+ 65% {
3191
+ opacity: 0; }
3192
+ 100% {
3193
+ opacity: 0;
3194
+ -webkit-transform: rotateX(180deg);
3195
+ transform: rotateX(180deg); } }
3196
+
3197
+ @keyframes pa-rotate-out {
3198
+ 0% {
3199
+ opacity: 1;
3200
+ -webkit-transform: rotateX(0deg);
3201
+ transform: rotateX(0deg); }
3202
+ 35% {
3203
+ opacity: 1;
3204
+ -webkit-transform: rotateX(-40deg);
3205
+ transform: rotateX(-40deg); }
3206
+ 65% {
3207
+ opacity: 0; }
3208
+ 100% {
3209
+ opacity: 0;
3210
+ -webkit-transform: rotateX(180deg);
3211
+ transform: rotateX(180deg); } }
3212
+
3213
+ /**************** Premium Bullet List ****************/
3214
+ /*****************************************************/
3215
+ .premium-bullet-list-box {
3216
+ -js-display: flex;
3217
+ display: -webkit-box;
3218
+ display: -webkit-flex;
3219
+ display: -moz-box;
3220
+ display: -ms-flexbox;
3221
+ display: flex;
3222
+ -webkit-flex-wrap: wrap;
3223
+ -ms-flex-wrap: wrap;
3224
+ flex-wrap: wrap;
3225
+ -webkit-box-orient: vertical;
3226
+ -webkit-box-direction: normal;
3227
+ -webkit-flex-direction: column;
3228
+ -moz-box-orient: vertical;
3229
+ -moz-box-direction: normal;
3230
+ -ms-flex-direction: column;
3231
+ flex-direction: column; }
3232
+ .premium-bullet-list-box .premium-bullet-list-content-grow-lc {
3233
+ -webkit-transform-origin: left center;
3234
+ -ms-transform-origin: left center;
3235
+ transform-origin: left center; }
3236
+ .premium-bullet-list-box .premium-bullet-list-content-grow-rc {
3237
+ -webkit-transform-origin: right center;
3238
+ -ms-transform-origin: right center;
3239
+ transform-origin: right center; }
3240
+ .premium-bullet-list-box .premium-bullet-list-content-grow-cc {
3241
+ -webkit-transform-origin: center center;
3242
+ -ms-transform-origin: center center;
3243
+ transform-origin: center center; }
3244
+
3245
+ .premium-bullet-list-content {
3246
+ -js-display: flex;
3247
+ display: -webkit-box;
3248
+ display: -webkit-flex;
3249
+ display: -moz-box;
3250
+ display: -ms-flexbox;
3251
+ display: flex;
3252
+ -webkit-transition: all 0.3s ease-in-out;
3253
+ transition: all 0.3s ease-in-out;
3254
+ width: auto;
3255
+ position: relative; }
3256
+ .premium-bullet-list-content .premium-bullet-list-text span,
3257
+ .premium-bullet-list-content .premium-bullet-list-wrapper {
3258
+ display: inline-block;
3259
+ -webkit-align-self: center;
3260
+ -ms-flex-item-align: center;
3261
+ align-self: center;
3262
+ -webkit-transition: all 0.3s ease-in-out;
3263
+ transition: all 0.3s ease-in-out; }
3264
+ .premium-bullet-list-content .premium-bullet-list-text span {
3265
+ margin: 0 5px; }
3266
+ .premium-bullet-list-content .premium-bullet-list-icon-text p {
3267
+ font-size: 18px;
3268
+ background-color: #eee;
3269
+ padding: 1px 5px;
3270
+ -webkit-border-radius: 2px;
3271
+ border-radius: 2px; }
3272
+ .premium-bullet-list-content .premium-bullet-list-text span,
3273
+ .premium-bullet-list-content .premium-bullet-list-icon-text p,
3274
+ .premium-bullet-list-content .premium-bullet-list-wrapper img,
3275
+ .premium-bullet-list-content .premium-bullet-list-wrapper svg,
3276
+ .premium-bullet-list-content .premium-bullet-list-wrapper i {
3277
+ -webkit-transition: all 0.3s ease-in-out;
3278
+ transition: all 0.3s ease-in-out; }
3279
+ .premium-bullet-list-content .premium-bullet-list-wrapper {
3280
+ position: relative;
3281
+ line-height: 0; }
3282
+ .premium-bullet-list-content .premium-bullet-list-wrapper img,
3283
+ .premium-bullet-list-content .premium-bullet-list-wrapper svg {
3284
+ width: 30px !important;
3285
+ height: 30px !important;
3286
+ position: relative;
3287
+ z-index: 500; }
3288
+ .premium-bullet-list-content .premium-bullet-list-wrapper i,
3289
+ .premium-bullet-list-content .premium-bullet-list-wrapper .premium-bullet-list-icon-text {
3290
+ position: relative;
3291
+ z-index: 500; }
3292
+ .premium-bullet-list-content .premium-bullet-list-wrapper i {
3293
+ width: 1.25em; }
3294
+ .premium-bullet-list-content .premium-bullet-list-link {
3295
+ position: absolute;
3296
+ top: 0;
3297
+ left: 0;
3298
+ width: 100%;
3299
+ height: 100%;
3300
+ z-index: 1000; }
3301
+
3302
+ .premium-bullet-list-content:not(:last-of-type) .premium-bullet-list-connector {
3303
+ width: 100%;
3304
+ height: 100%;
3305
+ position: absolute;
3306
+ top: 0.5em;
3307
+ z-index: 100;
3308
+ -js-display: flex;
3309
+ display: -webkit-box;
3310
+ display: -webkit-flex;
3311
+ display: -moz-box;
3312
+ display: -ms-flexbox;
3313
+ display: flex;
3314
+ -webkit-box-pack: center;
3315
+ -webkit-justify-content: center;
3316
+ -moz-box-pack: center;
3317
+ -ms-flex-pack: center;
3318
+ justify-content: center; }
3319
+ .premium-bullet-list-content:not(:last-of-type) .premium-bullet-list-connector .premium-icon-connector-content:after {
3320
+ content: "";
3321
+ border-right-width: 1px;
3322
+ border-right-style: solid;
3323
+ border-color: #333333;
3324
+ display: block;
3325
+ height: 100%; }
3326
+
3327
+ li.premium-bullet-list-content.premium-bullet-list-content-inline {
3328
+ -webkit-align-self: center;
3329
+ -ms-flex-item-align: center;
3330
+ align-self: center;
3331
+ z-index: 2; }
3332
+
3333
+ li.premium-bullet-list-content.premium-bullet-list-content-inline:not(:first-child) {
3334
+ margin: 0 3px; }
3335
+
3336
+ li.premium-bullet-list-content.premium-bullet-list-content-inline:first-child {
3337
+ margin: 0 3px 0 0; }
3338
+
3339
+ .premium-bullet-list-divider:not(:last-child) {
3340
+ width: 100%;
3341
+ -webkit-box-flex: 0;
3342
+ -webkit-flex: 0 0 100%;
3343
+ -moz-box-flex: 0;
3344
+ -ms-flex: 0 0 100%;
3345
+ flex: 0 0 100%;
3346
+ overflow: hidden; }
3347
+
3348
+ .premium-bullet-list-divider:not(:last-child):after {
3349
+ content: "";
3350
+ display: block;
3351
+ border-top-style: solid;
3352
+ border-top-width: 1px; }
3353
+
3354
+ .premium-bullet-list-divider-inline:not(:last-child) {
3355
+ float: right;
3356
+ display: inline-block;
3357
+ position: relative;
3358
+ height: 100%;
3359
+ overflow: hidden;
3360
+ -webkit-align-self: center;
3361
+ -ms-flex-item-align: center;
3362
+ align-self: center;
3363
+ margin: 0 3px; }
3364
+
3365
+ .premium-bullet-list-divider-inline:not(:last-child):after {
3366
+ content: "";
3367
+ display: block;
3368
+ border-left-width: 1px;
3369
+ height: 33px;
3370
+ border-left-style: solid; }
3371
+
3372
+ .premium-bullet-list-icon-text {
3373
+ line-height: 1.5; }
3374
+
3375
+ .premium-bullet-list-icon-text p,
3376
+ ul.premium-bullet-list-box,
3377
+ li.premium-bullet-list-content {
3378
+ margin: 0; }
3379
+
3380
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper i,
3381
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-text span,
3382
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-icon-text p {
3383
+ color: transparent !important;
3384
+ text-shadow: 0 0 3px #aaa; }
3385
+
3386
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-icon-connector-content,
3387
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper .premium-lottie-animation svg,
3388
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper img,
3389
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-badge {
3390
+ -webkit-filter: blur(3px);
3391
+ filter: blur(3px); }
3392
+
3393
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper i,
3394
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-text span,
3395
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-icon-text p {
3396
+ color: #aaa !important;
3397
+ text-shadow: 0 0px 0 transparent; }
3398
+
3399
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-icon-connector-content,
3400
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper .premium-lottie-animation svg,
3401
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper img,
3402
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-badge {
3403
+ -webkit-filter: none;
3404
+ filter: none; }
3405
+
3406
+ .premium-bullet-list-content .premium-bullet-list-badge {
3407
+ font-size: 11px;
3408
+ top: auto;
3409
+ min-width: -webkit-max-content;
3410
+ min-width: -moz-max-content;
3411
+ min-width: max-content;
3412
+ height: -webkit-fit-content;
3413
+ height: -moz-fit-content;
3414
+ height: fit-content; }
3415
+
3416
+ .premium-bullet-list-content .premium-bullet-list-icon-text p {
3417
+ font-size: 13px; }
3418
+
3419
+ .premium-bullet-list-gradient-effect[data-text] {
3420
+ display: inline-block;
3421
+ position: relative;
3422
+ text-decoration: none; }
3423
+
3424
+ .premium-bullet-list-gradient-effect[data-text]::before {
3425
+ content: attr(data-text);
3426
+ position: absolute;
3427
+ z-index: 1;
3428
+ overflow: hidden;
3429
+ -webkit-clip-path: polygon(0 0, 1px 0, 1px 100%, 0 100%);
3430
+ clip-path: polygon(0 0, 1px 0, 1px 100%, 0 100%);
3431
+ -webkit-background-clip: text;
3432
+ background-clip: text;
3433
+ -webkit-text-fill-color: transparent;
3434
+ -webkit-transition: all 0.4s ease;
3435
+ transition: all 0.4s ease; }
3436
+
3437
+ .premium-bullet-list-content:hover .premium-bullet-list-gradient-effect[data-text]::before,
3438
+ .premium-bullet-list-content:focus .premium-bullet-list-gradient-effect[data-text]::before {
3439
+ -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
3440
+ clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
3441
+
3442
+ ul[data-list-animation*="animated-"] .premium-bullet-list-divider,
3443
+ ul[data-list-animation*="animated-"] .premium-bullet-list-content,
3444
+ ul[data-list-animation*="animated-"] .premium-bullet-list-divider-inline {
3445
+ opacity: 0; }
3446
+
3447
+ .premium-bullet-list-content-grow-effect:hover {
3448
+ -webkit-transform: scale(1.07);
3449
+ -ms-transform: scale(1.07);
3450
+ transform: scale(1.07); }
3451
+
3452
+ @-webkit-keyframes spin {
3453
+ 100% {
3454
+ -webkit-transform: rotate(360deg);
3455
+ transform: rotate(360deg); } }
3456
+
3457
+ @keyframes spin {
3458
+ 100% {
3459
+ -webkit-transform: rotate(360deg);
3460
+ transform: rotate(360deg); } }
3461
+
3462
+ /**************** Premium Image Button ***********/
3463
+ /*************************************************/
3464
+ .premium-image-button {
3465
+ -js-display: inline-flex;
3466
+ display: -webkit-inline-box;
3467
+ display: -webkit-inline-flex;
3468
+ display: -moz-inline-box;
3469
+ display: -ms-inline-flexbox;
3470
+ display: inline-flex;
3471
+ position: relative;
3472
+ overflow: hidden;
3473
+ background-color: #eee;
3474
+ cursor: pointer;
3475
+ -webkit-transition: all 0.2s ease-in-out !important;
3476
+ transition: all 0.2s ease-in-out !important; }
3477
+ .premium-image-button .premium-button-style6-bg, .premium-image-button.premium-button-style6:before, .premium-image-button:not(.premium-image-button-style6):hover {
3478
+ background-color: #54595f; }
3479
+
3480
+ /*Default background for slide styles*/
3481
+ .premium-image-button-style4-icon-wrapper,
3482
+ .premium-image-button-style1:before {
3483
+ background-color: #54595f; }
3484
+
3485
+ .premium-image-button-text-icon-wrapper {
3486
+ width: 100%;
3487
+ -js-display: flex;
3488
+ display: -webkit-box;
3489
+ display: -webkit-flex;
3490
+ display: -moz-box;
3491
+ display: -ms-flexbox;
3492
+ display: flex;
3493
+ -webkit-box-pack: center;
3494
+ -webkit-justify-content: center;
3495
+ -moz-box-pack: center;
3496
+ -ms-flex-pack: center;
3497
+ justify-content: center;
3498
+ -webkit-box-align: center;
3499
+ -webkit-align-items: center;
3500
+ -moz-box-align: center;
3501
+ -ms-flex-align: center;
3502
+ align-items: center;
3503
+ position: relative;
3504
+ z-index: 3;
3505
+ -webkit-transition: all 0.2s ease-in-out;
3506
+ transition: all 0.2s ease-in-out; }
3507
+ .premium-image-button-text-icon-wrapper span,
3508
+ .premium-image-button-text-icon-wrapper i,
3509
+ .premium-image-button-text-icon-wrapper svg {
3510
+ -webkit-transition: all 0.2s ease-in-out;
3511
+ transition: all 0.2s ease-in-out; }
3512
+
3513
+ .premium-image-button-style1:before {
3514
+ position: absolute;
3515
+ content: "";
3516
+ -webkit-transition: all 0.2s ease-in-out;
3517
+ transition: all 0.2s ease-in-out; }
3518
+
3519
+ .premium-image-button-style1-bottom:before {
3520
+ width: 100%;
3521
+ height: 0;
3522
+ top: 0;
3523
+ left: 0; }
3524
+
3525
+ .premium-image-button-style1-top:before {
3526
+ width: 100%;
3527
+ height: 0;
3528
+ bottom: 0;
3529
+ left: 0; }
3530
+
3531
+ .premium-image-button-style1-right:before {
3532
+ width: 0;
3533
+ height: 100%;
3534
+ bottom: 0;
3535
+ left: 0; }
3536
+
3537
+ .premium-image-button-style1-left:before {
3538
+ width: 0;
3539
+ height: 100%;
3540
+ top: 0;
3541
+ right: 0; }
3542
+
3543
+ .premium-image-button-style1-bottom:hover:before,
3544
+ .premium-image-button-style1-top:hover:before {
3545
+ height: 100%; }
3546
+
3547
+ .premium-image-button-style1-right:hover:before,
3548
+ .premium-image-button-style1-left:hover:before {
3549
+ width: 100%; }
3550
+
3551
+ .premium-image-button-style3 {
3552
+ z-index: 10; }
3553
+ .premium-image-button-style3:before {
3554
+ position: absolute;
3555
+ top: 0px;
3556
+ left: 0px;
3557
+ width: 100%;
3558
+ height: 100%;
3559
+ content: "";
3560
+ z-index: 1;
3561
+ background: rgba(255, 255, 255, 0.2);
3562
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
3563
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
3564
+ -webkit-transition: all 0.8s ease-out;
3565
+ transition: all 0.8s ease-out; }
3566
+
3567
+ .premium-image-button-diagonal-right:before {
3568
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
3569
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0); }
3570
+
3571
+ .premium-image-button-diagonal-right:hover:before {
3572
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
3573
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0); }
3574
+
3575
+ .premium-image-button-diagonal-left:before {
3576
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
3577
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0); }
3578
+
3579
+ .premium-image-button-diagonal-left:hover:before {
3580
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
3581
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0); }
3582
+
3583
+ .premium-image-button-diagonal-bottom:before {
3584
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
3585
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0); }
3586
+
3587
+ .premium-image-button-diagonal-bottom:hover:before {
3588
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
3589
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0); }
3590
+
3591
+ .premium-image-button-diagonal-top:before {
3592
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
3593
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0); }
3594
+
3595
+ .premium-image-button-diagonal-top:hover:before {
3596
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
3597
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0); }
3598
+
3599
+ .premium-image-button-style4-icon-wrapper {
3600
+ position: absolute;
3601
+ z-index: 2;
3602
+ width: 100%;
3603
+ text-align: center;
3604
+ -js-display: flex;
3605
+ display: -webkit-box;
3606
+ display: -webkit-flex;
3607
+ display: -moz-box;
3608
+ display: -ms-flexbox;
3609
+ display: flex;
3610
+ -webkit-box-align: center;
3611
+ -webkit-align-items: center;
3612
+ -moz-box-align: center;
3613
+ -ms-flex-align: center;
3614
+ align-items: center;
3615
+ -webkit-box-pack: center;
3616
+ -webkit-justify-content: center;
3617
+ -moz-box-pack: center;
3618
+ -ms-flex-pack: center;
3619
+ justify-content: center;
3620
+ height: 100%;
3621
+ opacity: 0;
3622
+ -webkit-transition: all 0.3s ease-in-out;
3623
+ transition: all 0.3s ease-in-out; }
3624
+ .premium-image-button-style4-icon-wrapper.top {
3625
+ bottom: -100%;
3626
+ left: 0; }
3627
+ .premium-image-button-style4-icon-wrapper.bottom {
3628
+ top: -100%;
3629
+ left: 0; }
3630
+ .premium-image-button-style4-icon-wrapper.left {
3631
+ top: 0;
3632
+ left: -100%; }
3633
+ .premium-image-button-style4-icon-wrapper.right {
3634
+ top: 0;
3635
+ right: -100%; }
3636
+
3637
+ .premium-image-button-style4-bottom:hover .premium-image-button-style4-icon-wrapper {
3638
+ top: 0;
3639
+ opacity: 1; }
3640
+
3641
+ .premium-image-button-style4-bottom:hover .premium-image-button-text-icon-wrapper {
3642
+ -webkit-transform: translateY(100%);
3643
+ -ms-transform: translateY(100%);
3644
+ transform: translateY(100%);
3645
+ opacity: 0; }
3646
+
3647
+ .premium-image-button-style4-top:hover .premium-image-button-style4-icon-wrapper {
3648
+ bottom: 0;
3649
+ opacity: 1; }
3650
+
3651
+ .premium-image-button-style4-top:hover .premium-image-button-text-icon-wrapper {
3652
+ -webkit-transform: translateY(-100%);
3653
+ -ms-transform: translateY(-100%);
3654
+ transform: translateY(-100%);
3655
+ opacity: 0; }
3656
+
3657
+ .premium-image-button-style4-left:hover .premium-image-button-style4-icon-wrapper {
3658
+ left: 0;
3659
+ opacity: 1; }
3660
+
3661
+ .premium-image-button-style4-left:hover .premium-image-button-text-icon-wrapper {
3662
+ -webkit-transform: translateX(100%);
3663
+ -ms-transform: translateX(100%);
3664
+ transform: translateX(100%);
3665
+ opacity: 0; }
3666
+
3667
+ .premium-image-button-style4-right:hover .premium-image-button-style4-icon-wrapper {
3668
+ right: 0;
3669
+ opacity: 1; }
3670
+
3671
+ .premium-image-button-style4-right:hover .premium-image-button-text-icon-wrapper {
3672
+ -webkit-transform: translateX(-100%);
3673
+ -ms-transform: translateX(-100%);
3674
+ transform: translateX(-100%);
3675
+ opacity: 0; }
3676
+
3677
+ .premium-image-button-style5:before {
3678
+ position: absolute;
3679
+ content: "";
3680
+ top: 0;
3681
+ left: 0;
3682
+ width: 100%;
3683
+ height: 100%;
3684
+ opacity: 0;
3685
+ -webkit-transition: all 1s ease-in-out;
3686
+ transition: all 1s ease-in-out;
3687
+ background: rgba(255, 255, 255, 0.2);
3688
+ -webkit-animation-name: premium-overlap-effect-done;
3689
+ animation-name: premium-overlap-effect-done;
3690
+ -webkit-animation-duration: 1s;
3691
+ animation-duration: 1s; }
3692
+
3693
+ .premium-image-button-overlap-effect-vertical:before {
3694
+ -webkit-animation-name: premium-overlap-ver-effect-done;
3695
+ animation-name: premium-overlap-ver-effect-done; }
3696
+
3697
+ .premium-image-button-overlap-effect-horizontal:hover:before {
3698
+ -webkit-animation-name: premium-overlap-effect;
3699
+ animation-name: premium-overlap-effect; }
3700
+
3701
+ .premium-image-button-overlap-effect-vertical:hover:before {
3702
+ -webkit-animation-name: premium-overlap-ver-effect;
3703
+ animation-name: premium-overlap-ver-effect; }
3704
+
3705
+ @-webkit-keyframes premium-overlap-effect {
3706
+ 0% {
3707
+ opacity: 0;
3708
+ -webkit-transform: rotateY(0deg);
3709
+ transform: rotateY(0deg); }
3710
+ 50% {
3711
+ opacity: 1;
3712
+ -webkit-transform: rotateY(180deg);
3713
+ transform: rotateY(180deg); }
3714
+ 100% {
3715
+ opacity: 0;
3716
+ -webkit-transform: rotateY(360deg);
3717
+ transform: rotateY(360deg); } }
3718
+
3719
+ @keyframes premium-overlap-effect {
3720
+ 0% {
3721
+ opacity: 0;
3722
+ -webkit-transform: rotateY(0deg);
3723
+ transform: rotateY(0deg); }
3724
+ 50% {
3725
+ opacity: 1;
3726
+ -webkit-transform: rotateY(180deg);
3727
+ transform: rotateY(180deg); }
3728
+ 100% {
3729
+ opacity: 0;
3730
+ -webkit-transform: rotateY(360deg);
3731
+ transform: rotateY(360deg); } }
3732
+
3733
+ @-webkit-keyframes premium-overlap-effect-done {
3734
+ 0% {
3735
+ opacity: 0;
3736
+ -webkit-transform: rotateY(0deg);
3737
+ transform: rotateY(0deg); }
3738
+ 50% {
3739
+ opacity: 1;
3740
+ -webkit-transform: rotateY(180deg);
3741
+ transform: rotateY(180deg); }
3742
+ 100% {
3743
+ opacity: 0;
3744
+ -webkit-transform: rotateY(360deg);
3745
+ transform: rotateY(360deg); } }
3746
+
3747
+ @keyframes premium-overlap-effect-done {
3748
+ 0% {
3749
+ opacity: 0;
3750
+ -webkit-transform: rotateY(0deg);
3751
+ transform: rotateY(0deg); }
3752
+ 50% {
3753
+ opacity: 1;
3754
+ -webkit-transform: rotateY(180deg);
3755
+ transform: rotateY(180deg); }
3756
+ 100% {
3757
+ opacity: 0;
3758
+ -webkit-transform: rotateY(360deg);
3759
+ transform: rotateY(360deg); } }
3760
+
3761
+ @-webkit-keyframes premium-overlap-ver-effect {
3762
+ 0% {
3763
+ opacity: 0;
3764
+ -webkit-transform: rotateX(0deg);
3765
+ transform: rotateX(0deg); }
3766
+ 50% {
3767
+ opacity: 1;
3768
+ -webkit-transform: rotateX(180deg);
3769
+ transform: rotateX(180deg); }
3770
+ 100% {
3771
+ opacity: 0;
3772
+ -webkit-transform: rotateX(360deg);
3773
+ transform: rotateX(360deg); } }
3774
+
3775
+ @keyframes premium-overlap-ver-effect {
3776
+ 0% {
3777
+ opacity: 0;
3778
+ -webkit-transform: rotateX(0deg);
3779
+ transform: rotateX(0deg); }
3780
+ 50% {
3781
+ opacity: 1;
3782
+ -webkit-transform: rotateX(180deg);
3783
+ transform: rotateX(180deg); }
3784
+ 100% {
3785
+ opacity: 0;
3786
+ -webkit-transform: rotateX(360deg);
3787
+ transform: rotateX(360deg); } }
3788
+
3789
+ @-webkit-keyframes premium-overlap-ver-effect-done {
3790
+ 0% {
3791
+ opacity: 0;
3792
+ -webkit-transform: rotateX(0deg);
3793
+ transform: rotateX(0deg); }
3794
+ 50% {
3795
+ opacity: 1;
3796
+ -webkit-transform: rotateX(180deg);
3797
+ transform: rotateX(180deg); }
3798
+ 100% {
3799
+ opacity: 0;
3800
+ -webkit-transform: rotateX(360deg);
3801
+ transform: rotateX(360deg); } }
3802
+
3803
+ @keyframes premium-overlap-ver-effect-done {
3804
+ 0% {
3805
+ opacity: 0;
3806
+ -webkit-transform: rotateX(0deg);
3807
+ transform: rotateX(0deg); }
3808
+ 50% {
3809
+ opacity: 1;
3810
+ -webkit-transform: rotateX(180deg);
3811
+ transform: rotateX(180deg); }
3812
+ 100% {
3813
+ opacity: 0;
3814
+ -webkit-transform: rotateX(360deg);
3815
+ transform: rotateX(360deg); } }
3816
+
3817
+ /************ Premium Image Scroll ************/
3818
+ /**********************************************/
3819
+ @font-face {
3820
+ font-family: "pa-elements";
3821
+ src: url("../../plugins/premium-addons-for-elementor/assets/editor/fonts/pa-elements.eot?9e1efm");
3822
+ src: url("../../plugins/premium-addons-for-elementor/assets/editor/fonts/pa-elements.eot?9e1efm#iefix") format("embedded-opentype"), url("../../plugins/premium-addons-for-elementor/assets/editor/fonts/pa-elements.ttf?9e1efm") format("truetype"), url("../../plugins/premium-addons-for-elementor/assets/editor/fonts/pa-elements.woff?9e1efm") format("woff"), url("../../plugins/premium-addons-for-elementor/assets/editor/fonts/pa-elements.svg?9e1efm#pa-elements") format("svg");
3823
+ font-weight: normal;
3824
+ font-style: normal; }
3825
+
3826
+ .premium-image-scroll-section,
3827
+ .premium-image-scroll-container {
3828
+ -webkit-transition: all 0.3s ease-in-out;
3829
+ transition: all 0.3s ease-in-out; }
3830
+
3831
+ .premium-image-scroll-section {
3832
+ position: relative;
3833
+ overflow: hidden;
3834
+ width: 100%;
3835
+ -webkit-mask-image: -webkit-radial-gradient(white, black); }
3836
+
3837
+ .premium-image-scroll-container {
3838
+ width: 100%; }
3839
+ .premium-image-scroll-container .premium-image-scroll-mask-media {
3840
+ -webkit-mask-repeat: no-repeat;
3841
+ mask-repeat: no-repeat;
3842
+ -webkit-mask-position: center;
3843
+ mask-position: center; }
3844
+
3845
+ .premium-container-scroll {
3846
+ overflow: auto; }
3847
+
3848
+ .premium-image-scroll-container .premium-image-scroll-horizontal {
3849
+ position: relative;
3850
+ width: 100%;
3851
+ height: 100%; }
3852
+ .premium-image-scroll-container .premium-image-scroll-horizontal img {
3853
+ max-width: none;
3854
+ height: 100%; }
3855
+
3856
+ .premium-image-scroll-container .premium-image-scroll-vertical img {
3857
+ width: 100%;
3858
+ max-width: 100%;
3859
+ height: auto; }
3860
+
3861
+ .premium-image-scroll-ver {
3862
+ position: relative; }
3863
+
3864
+ .premium-image-scroll-container .premium-image-scroll-overlay {
3865
+ background: rgba(2, 2, 2, 0.3); }
3866
+
3867
+ .premium-image-scroll-container .premium-image-scroll-link,
3868
+ .premium-image-scroll-container .premium-image-scroll-overlay {
3869
+ position: absolute;
3870
+ top: 0;
3871
+ bottom: 0;
3872
+ left: 0;
3873
+ right: 0;
3874
+ z-index: 4; }
3875
+
3876
+ .premium-image-scroll-content {
3877
+ display: inline-block;
3878
+ position: absolute;
3879
+ height: auto;
3880
+ top: 50%;
3881
+ left: 50%;
3882
+ text-align: center;
3883
+ z-index: 5;
3884
+ -webkit-transform: translate(-50%, -50%);
3885
+ -ms-transform: translate(-50%, -50%);
3886
+ transform: translate(-50%, -50%); }
3887
+
3888
+ .premium-container-scroll-instant .premium-image-scroll-image {
3889
+ -webkit-transition: all 0s ease-in-out !important;
3890
+ transition: all 0s ease-in-out !important; }
3891
+
3892
+ .premium-image-scroll-container img {
3893
+ -webkit-transition: -webkit-transform 3s ease-in-out;
3894
+ transition: -webkit-transform 3s ease-in-out;
3895
+ transition: transform 3s ease-in-out;
3896
+ transition: transform 3s ease-in-out, -webkit-transform 3s ease-in-out; }
3897
+
3898
+ .premium-image-scroll-container .premium-image-scroll-overlay,
3899
+ .premium-image-scroll-container .premium-image-scroll-content {
3900
+ -webkit-transition: all 0.3s ease-in-out;
3901
+ transition: all 0.3s ease-in-out;
3902
+ opacity: 1; }
3903
+
3904
+ .premium-image-scroll-container:hover .premium-image-scroll-overlay {
3905
+ opacity: 0; }
3906
+
3907
+ .premium-image-scroll-container:hover .premium-image-scroll-content {
3908
+ opacity: 0;
3909
+ visibility: hidden; }
3910
+
3911
+ .premium-image-scroll-content .premium-image-scroll-icon {
3912
+ display: inline-block;
3913
+ font-family: "pa-elements" !important;
3914
+ speak: none;
3915
+ font-style: normal;
3916
+ font-weight: normal;
3917
+ font-variant: normal;
3918
+ text-transform: none;
3919
+ line-height: 1;
3920
+ -webkit-font-smoothing: antialiased;
3921
+ -moz-osx-font-smoothing: grayscale;
3922
+ -webkit-animation-duration: 0.5s;
3923
+ animation-duration: 0.5s;
3924
+ -webkit-animation-iteration-count: infinite;
3925
+ animation-iteration-count: infinite;
3926
+ -webkit-animation-direction: alternate;
3927
+ animation-direction: alternate;
3928
+ -webkit-animation-timing-function: ease-in-out;
3929
+ animation-timing-function: ease-in-out; }
3930
+
3931
+ .pa-horizontal-mouse-scroll:before {
3932
+ content: "\e921"; }
3933
+
3934
+ .pa-vertical-mouse-scroll:before {
3935
+ content: "\e922"; }
3936
+
3937
+ .pa-horizontal-mouse-scroll {
3938
+ -webkit-animation-name: pa-scroll-horizontal;
3939
+ animation-name: pa-scroll-horizontal; }
3940
+
3941
+ .pa-vertical-mouse-scroll {
3942
+ -webkit-animation-name: pa-scroll-vertical;
3943
+ animation-name: pa-scroll-vertical; }
3944
+
3945
+ @-webkit-keyframes pa-scroll-vertical {
3946
+ 0% {
3947
+ -webkit-transform: translateY(0px);
3948
+ transform: translateY(0px); }
3949
+ 100% {
3950
+ -webkit-transform: translateY(5px);
3951
+ transform: translateY(5px); } }
3952
+
3953
+ @keyframes pa-scroll-vertical {
3954
+ 0% {
3955
+ -webkit-transform: translateY(0px);
3956
+ transform: translateY(0px); }
3957
+ 100% {
3958
+ -webkit-transform: translateY(5px);
3959
+ transform: translateY(5px); } }
3960
+
3961
+ @-webkit-keyframes pa-scroll-horizontal {
3962
+ 0% {
3963
+ -webkit-transform: translateX(0px);
3964
+ transform: translateX(0px); }
3965
+ 100% {
3966
+ -webkit-transform: translateX(5px);
3967
+ transform: translateX(5px); } }
3968
+
3969
+ @keyframes pa-scroll-horizontal {
3970
+ 0% {
3971
+ -webkit-transform: translateX(0px);
3972
+ transform: translateX(0px); }
3973
+ 100% {
3974
+ -webkit-transform: translateX(5px);
3975
+ transform: translateX(5px); } }
3976
+
3977
+ /**************** Premium Image Separator ****************/
3978
+ /*********************************************************/
3979
+ .premium-image-separator-container {
3980
+ position: absolute;
3981
+ width: 100%;
3982
+ z-index: 2;
3983
+ top: auto;
3984
+ -webkit-transition: all 0.3s ease-in-out;
3985
+ transition: all 0.3s ease-in-out; }
3986
+ .premium-image-separator-container svg,
3987
+ .premium-image-separator-container img {
3988
+ display: inline-block !important;
3989
+ -webkit-mask-repeat: no-repeat;
3990
+ mask-repeat: no-repeat;
3991
+ -webkit-mask-position: center;
3992
+ mask-position: center; }
3993
+ .premium-image-separator-container .premium-image-separator-link {
3994
+ position: absolute;
3995
+ z-index: 9999;
3996
+ top: 0;
3997
+ left: 0;
3998
+ width: 100%;
3999
+ height: 100%;
4000
+ text-decoration: none; }
4001
+ .premium-image-separator-container .premium-image-separator-link:hover, .premium-image-separator-container .premium-image-separator-link:visited, .premium-image-separator-container .premium-image-separator-link:focus, .premium-image-separator-container .premium-image-separator-link:active {
4002
+ -webkit-box-shadow: none !important;
4003
+ box-shadow: none !important;
4004
+ outline: none !important;
4005
+ border: none !important;
4006
+ text-decoration: none !important; }
4007
+ .premium-image-separator-container i,
4008
+ .premium-image-separator-container > svg {
4009
+ padding: 20px;
4010
+ -webkit-transition: all 0.3s ease-in-out;
4011
+ transition: all 0.3s ease-in-out; }
4012
+
4013
+ /******** Premium Media Grid ********/
4014
+ /************************************/
4015
+ .premium-img-gallery-filter,
4016
+ .premium-blog-filter {
4017
+ -js-display: flex;
4018
+ display: -webkit-box;
4019
+ display: -webkit-flex;
4020
+ display: -moz-box;
4021
+ display: -ms-flexbox;
4022
+ display: flex;
4023
+ -webkit-box-align: center;
4024
+ -webkit-align-items: center;
4025
+ -moz-box-align: center;
4026
+ -ms-flex-align: center;
4027
+ align-items: center;
4028
+ -webkit-box-pack: center;
4029
+ -webkit-justify-content: center;
4030
+ -moz-box-pack: center;
4031
+ -ms-flex-pack: center;
4032
+ justify-content: center; }
4033
+
4034
+ .premium-img-gallery {
4035
+ clear: both;
4036
+ overflow: hidden; }
4037
+
4038
+ .premium-gallery-container .premium-gallery-item {
4039
+ padding: 10px;
4040
+ float: left; }
4041
+
4042
+ .premium-gallery-container .grid-sizer {
4043
+ width: 33.33%; }
4044
+
4045
+ .premium-gallery-container .pa-gallery-item {
4046
+ padding: 10px; }
4047
+
4048
+ .premium-img-gallery-filter .premium-gallery-cats-container li a.category,
4049
+ .premium-blog-filter .premium-blog-filters-container li a.category {
4050
+ outline: none;
4051
+ text-decoration: none;
4052
+ -webkit-border-radius: 75px;
4053
+ border-radius: 75px;
4054
+ margin: 15px 5px 20px;
4055
+ padding: 7px 20px;
4056
+ -webkit-transition: all 0.3s ease-in-out;
4057
+ transition: all 0.3s ease-in-out; }
4058
+
4059
+ .premium-img-gallery-filter .premium-gallery-cats-container li a.category span {
4060
+ -webkit-transition: all 0.3s ease-in-out;
4061
+ transition: all 0.3s ease-in-out; }
4062
+
4063
+ .pa-gallery-img {
4064
+ position: relative; }
4065
+ .pa-gallery-img .pa-gallery-whole-link {
4066
+ position: absolute;
4067
+ top: 0;
4068
+ left: 0;
4069
+ width: 100%;
4070
+ height: 100%; }
4071
+ .pa-gallery-img.style2 .pa-gallery-whole-link {
4072
+ z-index: 99; }
4073
+
4074
+ .pa-gallery-img-container {
4075
+ overflow: hidden;
4076
+ -webkit-backface-visibility: hidden;
4077
+ backface-visibility: hidden;
4078
+ -webkit-transform: translate3d(0, 0, 0);
4079
+ transform: translate3d(0, 0, 0); }
4080
+ .pa-gallery-img-container img {
4081
+ display: block;
4082
+ width: 100%;
4083
+ -webkit-transition: all 0.3s ease-in-out;
4084
+ transition: all 0.3s ease-in-out; }
4085
+
4086
+ .premium-img-gallery.gray img {
4087
+ -webkit-filter: grayscale(100%);
4088
+ filter: grayscale(100%); }
4089
+
4090
+ .premium-img-gallery.zoomout img,
4091
+ .premium-img-gallery.scale img {
4092
+ -webkit-transform: scale(1.2);
4093
+ -ms-transform: scale(1.2);
4094
+ transform: scale(1.2); }
4095
+
4096
+ .premium-img-gallery.sepia img {
4097
+ -webkit-filter: sepia(30%);
4098
+ filter: sepia(30%); }
4099
+
4100
+ .premium-img-gallery.bright img {
4101
+ -webkit-filter: brightness(1);
4102
+ filter: brightness(1); }
4103
+
4104
+ .premium-img-gallery.trans img {
4105
+ -webkit-transform: translateX(-15px) scale(1.1);
4106
+ -ms-transform: translateX(-15px) scale(1.1);
4107
+ transform: translateX(-15px) scale(1.1); }
4108
+
4109
+ .pa-gallery-img .pa-gallery-magnific-image,
4110
+ .pa-gallery-img .pa-gallery-img-link {
4111
+ outline: none; }
4112
+ .pa-gallery-img .pa-gallery-magnific-image i,
4113
+ .pa-gallery-img .pa-gallery-magnific-image svg,
4114
+ .pa-gallery-img .pa-gallery-img-link i,
4115
+ .pa-gallery-img .pa-gallery-img-link svg {
4116
+ -webkit-transition: all 0.3s ease-in-out;
4117
+ transition: all 0.3s ease-in-out; }
4118
+
4119
+ .pa-gallery-img .pa-gallery-magnific-image span,
4120
+ .pa-gallery-img .pa-gallery-img-link span {
4121
+ line-height: 1;
4122
+ display: inline-block;
4123
+ opacity: 0;
4124
+ margin: 0 5px;
4125
+ padding: 15px;
4126
+ -webkit-border-radius: 50%;
4127
+ border-radius: 50%; }
4128
+
4129
+ .pa-gallery-img.style2 .pa-gallery-magnific-image span,
4130
+ .pa-gallery-img.style2 .pa-gallery-img-link span {
4131
+ margin: 0 5px 20px; }
4132
+
4133
+ .pa-gallery-img:hover .pa-gallery-magnific-image span {
4134
+ -webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
4135
+ transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s; }
4136
+
4137
+ .pa-gallery-img:hover .pa-gallery-img-link span {
4138
+ -webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
4139
+ transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s; }
4140
+
4141
+ .pa-gallery-img:hover .pa-gallery-magnific-image span,
4142
+ .pa-gallery-img:hover .pa-gallery-img-link span {
4143
+ opacity: 1; }
4144
+
4145
+ .premium-gallery-icon-show a.pa-gallery-video-icon span {
4146
+ opacity: 1; }
4147
+
4148
+ .premium-img-gallery-filter ul.premium-gallery-cats-container,
4149
+ .premium-blog-filter ul.premium-blog-filters-container {
4150
+ text-align: center;
4151
+ margin: 0;
4152
+ padding: 0; }
4153
+
4154
+ .premium-img-gallery-filter .premium-gallery-cats-container li,
4155
+ .premium-blog-filter .premium-blog-filters-container li {
4156
+ list-style: none;
4157
+ -js-display: inline-flex;
4158
+ display: -webkit-inline-box;
4159
+ display: -webkit-inline-flex;
4160
+ display: -moz-inline-box;
4161
+ display: -ms-inline-flexbox;
4162
+ display: inline-flex; }
4163
+
4164
+ .premium-img-gallery.zoomin .pa-gallery-img:hover img {
4165
+ -webkit-transform: scale(1.1);
4166
+ -ms-transform: scale(1.1);
4167
+ transform: scale(1.1); }
4168
+
4169
+ .premium-img-gallery.zoomout .pa-gallery-img:hover img {
4170
+ -webkit-transform: scale(1);
4171
+ -ms-transform: scale(1);
4172
+ transform: scale(1); }
4173
+
4174
+ .premium-img-gallery.scale .pa-gallery-img:hover img {
4175
+ -webkit-transform: scale(1.3) rotate(5deg);
4176
+ -ms-transform: scale(1.3) rotate(5deg);
4177
+ transform: scale(1.3) rotate(5deg); }
4178
+
4179
+ .premium-img-gallery.gray .pa-gallery-img:hover img {
4180
+ -webkit-filter: grayscale(0%);
4181
+ filter: grayscale(0%); }
4182
+
4183
+ .premium-img-gallery.blur .pa-gallery-img:hover img {
4184
+ -webkit-filter: blur(3px);
4185
+ filter: blur(3px); }
4186
+
4187
+ .premium-img-gallery.sepia .pa-gallery-img:hover img {
4188
+ -webkit-filter: sepia(0%);
4189
+ filter: sepia(0%); }
4190
+
4191
+ .premium-img-gallery.trans .pa-gallery-img:hover img {
4192
+ -webkit-transform: translateX(0px) scale(1.1);
4193
+ -ms-transform: translateX(0px) scale(1.1);
4194
+ transform: translateX(0px) scale(1.1); }
4195
+
4196
+ .premium-img-gallery.bright .pa-gallery-img:hover img {
4197
+ -webkit-filter: brightness(1.2);
4198
+ filter: brightness(1.2); }
4199
+
4200
+ .pa-gallery-img .premium-gallery-caption {
4201
+ padding: 10px; }
4202
+ .pa-gallery-img .premium-gallery-caption .premium-gallery-img-name {
4203
+ margin-bottom: 0; }
4204
+
4205
+ .pa-gallery-img.style1 {
4206
+ overflow: hidden; }
4207
+
4208
+ .pa-gallery-img:not(.style2) .pa-gallery-icons-wrapper {
4209
+ position: absolute;
4210
+ top: 0;
4211
+ left: 0;
4212
+ width: 100%;
4213
+ height: 100%;
4214
+ -webkit-transition: all 0.3s ease-in-out;
4215
+ transition: all 0.3s ease-in-out; }
4216
+
4217
+ .pa-gallery-img:not(.style2) .pa-gallery-icons-inner-container {
4218
+ position: absolute;
4219
+ top: 33.33%;
4220
+ width: 100%;
4221
+ text-align: center;
4222
+ -webkit-transform: translateY(-50%);
4223
+ -ms-transform: translateY(-50%);
4224
+ transform: translateY(-50%);
4225
+ z-index: 999; }
4226
+
4227
+ .pa-gallery-img.style1 .premium-gallery-caption {
4228
+ position: absolute;
4229
+ top: auto;
4230
+ right: 0;
4231
+ bottom: -1px;
4232
+ left: 0;
4233
+ width: 100%;
4234
+ -webkit-transition: all 500ms ease 0s;
4235
+ transition: all 500ms ease 0s;
4236
+ -webkit-transform: translate3d(0, 100%, 0);
4237
+ transform: translate3d(0, 100%, 0); }
4238
+
4239
+ .pa-gallery-img.style1:hover .premium-gallery-caption {
4240
+ -webkit-transform: translate3d(0, 0, 0);
4241
+ transform: translate3d(0, 0, 0);
4242
+ bottom: -1px !important; }
4243
+
4244
+ .pa-gallery-img.default .premium-gallery-caption {
4245
+ position: absolute;
4246
+ top: auto;
4247
+ right: 0;
4248
+ left: 0;
4249
+ width: 100%;
4250
+ bottom: 0; }
4251
+
4252
+ .pa-gallery-img.style2 .pa-gallery-icons-caption-container {
4253
+ position: absolute;
4254
+ top: 0;
4255
+ left: 0;
4256
+ width: 100%;
4257
+ height: 100%;
4258
+ opacity: 0;
4259
+ -webkit-backface-visibility: hidden;
4260
+ backface-visibility: hidden;
4261
+ -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
4262
+ transition: opacity 0.3s, -webkit-transform 0.3s;
4263
+ transition: transform 0.3s, opacity 0.3s;
4264
+ transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
4265
+ z-index: 1;
4266
+ background-color: rgba(108, 191, 226, 0.68);
4267
+ -js-display: flex;
4268
+ display: -webkit-box;
4269
+ display: -webkit-flex;
4270
+ display: -moz-box;
4271
+ display: -ms-flexbox;
4272
+ display: flex;
4273
+ text-align: center;
4274
+ -webkit-box-align: center;
4275
+ -webkit-align-items: center;
4276
+ -moz-box-align: center;
4277
+ -ms-flex-align: center;
4278
+ align-items: center; }
4279
+
4280
+ .pa-gallery-img.style2 .pa-gallery-icons-caption-cell {
4281
+ width: 100%; }
4282
+
4283
+ .pa-gallery-img.style2:hover .pa-gallery-icons-caption-container {
4284
+ opacity: 1;
4285
+ -webkit-transform: translate(15px, 15px);
4286
+ -ms-transform: translate(15px, 15px);
4287
+ transform: translate(15px, 15px); }
4288
+
4289
+ .premium-clearfix {
4290
+ clear: both; }
4291
+
4292
  /**
4293
+ * Metro Layout
4294
+ */
4295
+ .premium-img-gallery-metro .premium-gallery-item {
4296
+ overflow: hidden; }
4297
+
4298
+ .premium-img-gallery-metro .pa-gallery-img {
4299
+ height: 100%; }
4300
+
4301
+ .premium-img-gallery-metro .pa-gallery-img-container {
4302
+ height: 100%; }
4303
+ .premium-img-gallery-metro .pa-gallery-img-container img {
4304
+ min-height: 100%;
4305
+ width: 100%;
4306
+ -o-object-fit: fill;
4307
+ object-fit: fill; }
4308
+
4309
+ .premium-img-gallery .premium-gallery-item-hidden {
4310
+ visibility: hidden;
4311
+ width: 0 !important;
4312
+ height: 0 !important;
4313
+ margin: 0 !important;
4314
+ padding: 0 !important; }
4315
+
4316
+ .premium-gallery-load-more {
4317
+ position: relative; }
4318
+ .premium-gallery-load-more .premium-gallery-load-more-btn {
4319
+ -webkit-box-shadow: none;
4320
+ box-shadow: none;
4321
+ text-shadow: none;
4322
+ border: none;
4323
+ outline: none;
4324
+ -webkit-box-align: center;
4325
+ -webkit-align-items: center;
4326
+ -moz-box-align: center;
4327
+ -ms-flex-align: center;
4328
+ align-items: center;
4329
+ vertical-align: bottom;
4330
+ cursor: pointer;
4331
+ line-height: 1;
4332
+ font-style: normal;
4333
+ font-weight: normal;
4334
+ background-image: none;
4335
+ color: #fff;
4336
+ -webkit-transition: all 0.3s ease-in-out;
4337
+ transition: all 0.3s ease-in-out; }
4338
+
4339
+ .premium-gallery-load-more-btn {
4340
+ -js-display: inline-flex;
4341
+ display: -webkit-inline-box;
4342
+ display: -webkit-inline-flex;
4343
+ display: -moz-inline-box;
4344
+ display: -ms-inline-flexbox;
4345
+ display: inline-flex;
4346
+ -webkit-box-align: center;
4347
+ -webkit-align-items: center;
4348
+ -moz-box-align: center;
4349
+ -ms-flex-align: center;
4350
+ align-items: center; }
4351
+
4352
+ .premium-gallery-load-more-btn div {
4353
+ margin-left: 3px; }
4354
+
4355
+ .premium-gallery-load-more-btn .premium-loader {
4356
+ display: inline-block;
4357
+ width: 20px;
4358
+ height: 20px; }
4359
+
4360
+ .pa-gallery-img .pa-gallery-lightbox-wrap {
4361
+ display: inline-block; }
4362
+
4363
+ .premium-img-gallery-no-lightbox .premium-gallery-video-item .pa-gallery-img,
4364
+ .pa-gallery-img .pa-gallery-video-icon {
4365
+ cursor: pointer; }
4366
+
4367
+ .pa-gallery-img-container iframe {
4368
+ position: absolute;
4369
+ visibility: hidden;
4370
+ top: 0;
4371
+ left: 0;
4372
+ max-width: 100%;
4373
+ width: 100%;
4374
+ height: 100%;
4375
+ margin: 0;
4376
+ line-height: 1;
4377
+ border: none; }
4378
+
4379
+ .pa-gallery-img-container video {
4380
+ position: absolute;
4381
+ visibility: hidden;
4382
+ top: 0;
4383
+ left: 0;
4384
+ max-width: 100%;
4385
+ width: 100%;
4386
+ height: 100%;
4387
+ margin: 0;
4388
+ line-height: 1;
4389
+ border: none;
4390
+ -o-object-fit: contain;
4391
+ object-fit: contain; }
4392
+
4393
+ .pa-gallery-icons-inner-container svg,
4394
+ .pa-gallery-icons-caption-cell svg {
4395
+ width: 14px;
4396
+ height: 14px; }
4397
+
4398
+ .premium-gallery-gradient-layer {
4399
+ position: absolute;
4400
+ bottom: 40px;
4401
+ width: 100%;
4402
+ height: 20px;
4403
+ background: -webkit-gradient(linear, left bottom, left top, from(#17181f), to(rgba(255, 255, 255, 0)));
4404
+ background: -webkit-linear-gradient(bottom, #17181f 0%, rgba(255, 255, 255, 0) 100%);
4405
+ background: linear-gradient(to top, #17181f 0%, rgba(255, 255, 255, 0) 100%); }
4406
+
4407
+ /********* Premium Lottie Animations *********/
4408
+ /*********************************************/
4409
+ .elementor-widget-premium-lottie .premium-lottie-animation {
4410
+ position: relative;
4411
+ -js-display: inline-flex;
4412
+ display: -webkit-inline-box;
4413
+ display: -webkit-inline-flex;
4414
+ display: -moz-inline-box;
4415
+ display: -ms-inline-flexbox;
4416
+ display: inline-flex;
4417
+ -webkit-transition: all 0.3s ease-in-out;
4418
+ transition: all 0.3s ease-in-out; }
4419
+ .elementor-widget-premium-lottie .premium-lottie-animation a {
4420
+ position: absolute;
4421
+ left: 0;
4422
+ top: 0;
4423
+ width: 100%;
4424
+ height: 100%;
4425
+ z-index: 2; }
4426
+
4427
+ /**************** Premium Google Maps ******************/
4428
+ /*******************************************************/
4429
+ .premium-maps-info-container {
4430
+ margin-top: 10px;
4431
+ margin-bottom: 10px; }
4432
+
4433
+ .premium-maps-info-title,
4434
+ .premium-maps-info-desc {
4435
+ margin: 0;
4436
+ padding: 0; }
4437
+
4438
+ .premium-maps-container .gm-style-iw {
4439
+ text-align: center; }
4440
+
4441
+ .premium-maps-container .gm-style img {
4442
+ max-width: none !important; }
4443
+
4444
+ /**************** Premium Modal Box ****************/
4445
+ /***************************************************/
4446
+ .premium-modal-trigger-btn,
4447
+ .premium-modal-box-modal-lower-close {
4448
+ display: inline-block;
4449
+ padding: 6px 12px;
4450
+ margin-bottom: 0;
4451
+ font-size: 14px;
4452
+ font-weight: normal;
4453
+ line-height: 1.42857143;
4454
+ text-align: center;
4455
+ white-space: nowrap;
4456
+ vertical-align: middle;
4457
+ -ms-touch-action: manipulation;
4458
+ touch-action: manipulation;
4459
+ cursor: pointer;
4460
+ -webkit-user-select: none;
4461
+ -moz-user-select: none;
4462
+ -ms-user-select: none;
4463
+ user-select: none;
4464
+ background-image: none;
4465
+ border: 1px solid transparent; }
4466
+
4467
+ .premium-modal-trigger-btn > svg,
4468
+ .premium-modal-trigger-btn .premium-modal-box-icon {
4469
+ -webkit-transition: all 0.3s ease-in-out;
4470
+ transition: all 0.3s ease-in-out; }
4471
+
4472
+ .premium-modal-trigger-btn > svg {
4473
+ width: 30px;
4474
+ height: 30px; }
4475
+
4476
+ .premium-modal-box-modal-close {
4477
+ float: right;
4478
+ font-size: 21px;
4479
+ font-weight: bold;
4480
+ line-height: 1;
4481
+ color: #000; }
4482
+ .premium-modal-box-modal-close:hover, .premium-modal-box-modal-close:focus {
4483
+ color: #000;
4484
+ text-decoration: none;
4485
+ cursor: pointer; }
4486
+
4487
+ button.premium-modal-box-modal-close {
4488
+ -webkit-appearance: none;
4489
+ padding: 0;
4490
+ cursor: pointer;
4491
+ background: transparent;
4492
+ border: 0; }
4493
+
4494
+ .premium-modal-box-modal {
4495
+ position: fixed;
4496
+ top: 0;
4497
+ right: 0;
4498
+ bottom: 0;
4499
+ left: 0;
4500
+ z-index: 1050;
4501
+ display: none;
4502
+ -webkit-overflow-scrolling: touch;
4503
+ outline: 0;
4504
+ padding: 0 !important;
4505
+ background: rgba(0, 0, 0, 0.5);
4506
+ -webkit-box-align: center;
4507
+ -webkit-align-items: center;
4508
+ -moz-box-align: center;
4509
+ -ms-flex-align: center;
4510
+ align-items: center;
4511
+ -webkit-box-pack: center;
4512
+ -webkit-justify-content: center;
4513
+ -moz-box-pack: center;
4514
+ -ms-flex-pack: center;
4515
+ justify-content: center; }
4516
+ .premium-modal-box-modal .premium-modal-box-modal-dialog {
4517
+ position: absolute;
4518
+ max-height: -webkit-calc(100vh - 150px);
4519
+ max-height: calc(100vh - 150px);
4520
+ -js-display: flex;
4521
+ display: -webkit-box;
4522
+ display: -webkit-flex;
4523
+ display: -moz-box;
4524
+ display: -ms-flexbox;
4525
+ display: flex;
4526
+ -webkit-box-orient: vertical;
4527
+ -webkit-box-direction: normal;
4528
+ -webkit-flex-direction: column;
4529
+ -moz-box-orient: vertical;
4530
+ -moz-box-direction: normal;
4531
+ -ms-flex-direction: column;
4532
+ flex-direction: column;
4533
+ opacity: 0;
4534
+ background-color: #fff;
4535
+ border: 1px solid rgba(0, 0, 0, 0.2);
4536
+ -webkit-border-radius: 6px;
4537
+ border-radius: 6px; }
4538
+
4539
+ .premium-modal-box-modal-content {
4540
+ background-clip: padding-box;
4541
+ outline: 0;
4542
+ overflow-x: hidden; }
4543
+
4544
+ .premium-modal-backdrop.premium-in {
4545
+ filter: alpha(opacity=50);
4546
+ opacity: 0.5 !important; }
4547
+
4548
+ .premium-in {
4549
+ opacity: 1; }
4550
+
4551
+ .premium-modal-backdrop {
4552
+ position: fixed;
4553
+ top: 0;
4554
+ right: 0;
4555
+ bottom: 0;
4556
+ left: 0;
4557
+ z-index: 1040;
4558
+ background-color: #000; }
4559
+
4560
+ .premium-in {
4561
+ -js-display: flex !important;
4562
+ display: -webkit-box !important;
4563
+ display: -webkit-flex !important;
4564
+ display: -moz-box !important;
4565
+ display: -ms-flexbox !important;
4566
+ display: flex !important; }
4567
+
4568
+ .premium-modal-box-modal-header {
4569
+ -js-display: flex;
4570
+ display: -webkit-box;
4571
+ display: -webkit-flex;
4572
+ display: -moz-box;
4573
+ display: -ms-flexbox;
4574
+ display: flex;
4575
+ -webkit-box-pack: justify;
4576
+ -webkit-justify-content: space-between;
4577
+ -moz-box-pack: justify;
4578
+ -ms-flex-pack: justify;
4579
+ justify-content: space-between;
4580
+ -webkit-box-align: center;
4581
+ -webkit-align-items: center;
4582
+ -moz-box-align: center;
4583
+ -ms-flex-align: center;
4584
+ align-items: center;
4585
+ padding: 5px 15px;
4586
+ border-bottom: 1px solid #e5e5e5; }
4587
+ .premium-modal-box-modal-header .premium-modal-box-modal-close {
4588
+ margin-top: -2px; }
4589
+ .premium-modal-box-modal-header .premium-modal-box-modal-title {
4590
+ -js-display: flex;
4591
+ display: -webkit-box;
4592
+ display: -webkit-flex;
4593
+ display: -moz-box;
4594
+ display: -ms-flexbox;
4595
+ display: flex;
4596
+ -webkit-box-align: center;
4597
+ -webkit-align-items: center;
4598
+ -moz-box-align: center;
4599
+ -ms-flex-align: center;
4600
+ align-items: center;
4601
+ margin: 0;
4602
+ padding: 0; }
4603
+ .premium-modal-box-modal-header .premium-modal-box-modal-title svg {
4604
+ width: 50px;
4605
+ height: 60px; }
4606
+
4607
+ .premium-modal-box-modal-body {
4608
+ position: relative;
4609
+ padding: 15px; }
4610
+
4611
+ .premium-modal-box-modal-footer {
4612
+ padding: 15px;
4613
+ text-align: right;
4614
+ border-top: 1px solid #e5e5e5; }
4615
+
4616
+ .premium-modal-scrollbar-measure {
4617
+ position: absolute;
4618
+ top: -9999px;
4619
+ width: 50px;
4620
+ height: 50px;
4621
+ overflow: scroll; }
4622
+
4623
+ .premium-modal-trigger-text {
4624
+ background: none !important;
4625
+ display: inline-block; }
4626
+
4627
+ .premium-modal-box-container {
4628
+ width: 100% !important; }
4629
+
4630
+ /*Open Modal Button Style*/
4631
+ .premium-modal-trigger-container .premium-modal-trigger-btn {
4632
+ -js-display: inline-flex;
4633
+ display: -webkit-inline-box;
4634
+ display: -webkit-inline-flex;
4635
+ display: -moz-inline-box;
4636
+ display: -ms-inline-flexbox;
4637
+ display: inline-flex;
4638
+ -webkit-box-align: center;
4639
+ -webkit-align-items: center;
4640
+ -moz-box-align: center;
4641
+ -ms-flex-align: center;
4642
+ align-items: center;
4643
+ border: none;
4644
+ -webkit-transition: all 0.3s ease-in-out;
4645
+ transition: all 0.3s ease-in-out; }
4646
+ .premium-modal-trigger-container .premium-modal-trigger-btn.premium-btn-block {
4647
+ -webkit-box-pack: center;
4648
+ -webkit-justify-content: center;
4649
+ -moz-box-pack: center;
4650
+ -ms-flex-pack: center;
4651
+ justify-content: center; }
4652
+
4653
+ .premium-modal-trigger-container .premium-modal-trigger-img,
4654
+ .premium-modal-trigger-container .premium-modal-trigger-text,
4655
+ .premium-modal-trigger-container .premium-modal-trigger-animation {
4656
+ cursor: pointer; }
4657
+
4658
+ .premium-modal-trigger-container .premium-modal-trigger-animation {
4659
+ display: inline-block;
4660
+ width: 200px;
4661
+ height: 200px;
4662
+ -webkit-transition: all 0.3s ease-in-out;
4663
+ transition: all 0.3s ease-in-out; }
4664
+
4665
+ /*Image on Modal Header Style*/
4666
+ .premium-modal-box-modal-header img {
4667
+ width: 48px;
4668
+ padding-right: 5px; }
4669
+
4670
+ .premium-modal-box-modal-header i,
4671
+ .premium-modal-box-modal-header svg {
4672
+ padding-right: 6px; }
4673
+
4674
+ .premium-modal-box-modal-close {
4675
+ position: relative;
4676
+ z-index: 99; }
4677
+
4678
+ .premium-modal-trigger-img,
4679
+ .premium-modal-trigger-text,
4680
+ .premium-modal-box-close-button-container,
4681
+ .premium-modal-box-modal-close,
4682
+ .premium-modal-box-modal-lower-close {
4683
+ -webkit-transition: all 0.3s ease-in-out;
4684
+ transition: all 0.3s ease-in-out; }
4685
+
4686
+ @media (min-width: 768px) {
4687
+ .premium-modal-box-modal-dialog {
4688
+ width: 700px;
4689
+ max-height: 600px;
4690
+ overflow: auto; } }
4691
+
4692
+ @media (max-width: 767px) {
4693
+ .premium-modal-box-modal-dialog {
4694
+ width: 100%;
4695
+ max-height: 500px;
4696
+ overflow: auto; } }
4697
+
4698
+ .premium-modal-box-container[data-modal-animation*="animated-"] {
4699
+ opacity: 0; }
4700
+
4701
+ /************ Premium Team Members ************/
4702
+ /**********************************************/
4703
+ .premium-person-container {
4704
+ position: relative; }
4705
+
4706
+ .premium-person-image-container {
4707
+ position: relative;
4708
+ text-align: center;
4709
+ overflow: hidden; }
4710
+ .premium-person-image-container .premium-person-image-wrap {
4711
+ overflow: hidden; }
4712
+
4713
+ .premium-person-zoomout-effect .premium-person-image-container img,
4714
+ .premium-person-scale-effect .premium-person-image-container img {
4715
+ -webkit-transform: scale(1.2);
4716
+ -ms-transform: scale(1.2);
4717
+ transform: scale(1.2); }
4718
+
4719
+ .premium-person-sepia-effect .premium-person-image-container img {
4720
+ -webkit-filter: sepia(30%);
4721
+ filter: sepia(30%); }
4722
+
4723
+ .premium-person-bright-effect .premium-person-image-container img {
4724
+ -webkit-filter: brightness(1);
4725
+ filter: brightness(1); }
4726
+
4727
+ .premium-person-trans-effect .premium-person-image-container img {
4728
+ -webkit-transform: translateX(-15px) scale(1.1);
4729
+ -ms-transform: translateX(-15px) scale(1.1);
4730
+ transform: translateX(-15px) scale(1.1); }
4731
+
4732
+ .premium-person-zoomin-effect:hover .premium-person-image-container img {
4733
+ -webkit-transform: scale(1.2);
4734
+ -ms-transform: scale(1.2);
4735
+ transform: scale(1.2); }
4736
+
4737
+ .premium-person-zoomout-effect:hover .premium-person-image-container img {
4738
+ -webkit-transform: scale(1.1);
4739
+ -ms-transform: scale(1.1);
4740
+ transform: scale(1.1); }
4741
+
4742
+ .premium-person-scale-effect:hover .premium-person-image-container img {
4743
+ -webkit-transform: scale(1.3) rotate(5deg);
4744
+ -ms-transform: scale(1.3) rotate(5deg);
4745
+ transform: scale(1.3) rotate(5deg); }
4746
+
4747
+ .premium-person-grayscale-effect:hover .premium-person-image-container img {
4748
+ -webkit-filter: grayscale(100%);
4749
+ filter: grayscale(100%); }
4750
+
4751
+ .premium-person-blur-effect:hover .premium-person-image-container img {
4752
+ -webkit-filter: blur(3px);
4753
+ filter: blur(3px); }
4754
+
4755
+ .premium-person-sepia-effect:hover .premium-person-image-container img {
4756
+ -webkit-filter: sepia(0%);
4757
+ filter: sepia(0%); }
4758
+
4759
+ .premium-person-bright-effect:hover .premium-person-image-container img {
4760
+ -webkit-filter: brightness(1.2);
4761
+ filter: brightness(1.2); }
4762
+
4763
+ .premium-person-trans-effect:hover .premium-person-image-container img {
4764
+ -webkit-transform: translateX(0px) scale(1.1);
4765
+ -ms-transform: translateX(0px) scale(1.1);
4766
+ transform: translateX(0px) scale(1.1); }
4767
+
4768
+ .premium-person-container .premium-person-image-container img {
4769
+ width: 100%;
4770
+ height: 100%;
4771
+ -o-object-fit: cover;
4772
+ object-fit: cover;
4773
+ -webkit-transition: all 0.5s ease-in-out;
4774
+ transition: all 0.5s ease-in-out; }
4775
+
4776
+ .premium-person-style2 .premium-person-social {
4777
+ position: absolute;
4778
+ top: 0;
4779
+ left: 0;
4780
+ width: 100%;
4781
+ height: 100%;
4782
+ z-index: 2;
4783
+ -js-display: flex;
4784
+ display: -webkit-box;
4785
+ display: -webkit-flex;
4786
+ display: -moz-box;
4787
+ display: -ms-flexbox;
4788
+ display: flex;
4789
+ -webkit-box-pack: center;
4790
+ -webkit-justify-content: center;
4791
+ -moz-box-pack: center;
4792
+ -ms-flex-pack: center;
4793
+ justify-content: center;
4794
+ -webkit-box-align: center;
4795
+ -webkit-align-items: center;
4796
+ -moz-box-align: center;
4797
+ -ms-flex-align: center;
4798
+ align-items: center;
4799
+ -webkit-box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
4800
+ box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
4801
+ -webkit-transition: all 0.5s linear 0s;
4802
+ transition: all 0.5s linear 0s;
4803
+ opacity: 0; }
4804
+
4805
+ .premium-person-style2 .premium-person-image-container:hover .premium-person-social {
4806
+ opacity: 1; }
4807
+
4808
+ .premium-person-list-item a {
4809
+ display: inline-block; }
4810
+
4811
+ .premium-person-style2 .premium-person-list-item a {
4812
+ opacity: 0;
4813
+ -webkit-transform: scale(0);
4814
+ -ms-transform: scale(0);
4815
+ transform: scale(0);
4816
+ -webkit-transition: all 0.5s ease-in-out 0s;
4817
+ transition: all 0.5s ease-in-out 0s; }
4818
+
4819
+ .premium-person-style2 .premium-person-image-container:hover .premium-person-list-item a {
4820
+ opacity: 1;
4821
+ -webkit-transform: scale(1);
4822
+ -ms-transform: scale(1);
4823
+ transform: scale(1); }
4824
+
4825
+ .premium-person-info-container {
4826
+ padding: 30px 15px; }
4827
+
4828
+ .premium-person-name {
4829
+ margin: 0 0 5px;
4830
+ font-weight: 700; }
4831
+
4832
+ .premium-person-title {
4833
+ margin: 0 0 20px;
4834
+ padding: 0; }
4835
+
4836
+ .premium-person-content {
4837
+ margin: 0 0 30px; }
4838
+
4839
+ /*Override Theme List Margin*/
4840
+ ul.premium-person-social-list {
4841
+ margin: 0px !important;
4842
+ padding: 0; }
4843
+
4844
+ .premium-person-social-list .premium-person-list-item {
4845
+ display: inline;
4846
+ list-style: none; }
4847
+
4848
+ .premium-person-social-list li {
4849
+ position: relative;
4850
+ bottom: 0px;
4851
+ -webkit-transition: all 0.2s ease-in-out;
4852
+ transition: all 0.2s ease-in-out; }
4853
+ .premium-person-social-list li i {
4854
+ position: relative;
4855
+ bottom: 0px;
4856
+ -webkit-transition: all 0.2s ease-in-out;
4857
+ transition: all 0.2s ease-in-out; }
4858
+
4859
+ .premium-person-defaults-yes li.premium-person-facebook:hover a {
4860
+ background-color: #3b5998 !important; }
4861
+
4862
+ .premium-person-defaults-yes li.premium-person-twitter:hover a {
4863
+ background-color: #55acee !important; }
4864
+
4865
+ .premium-person-defaults-yes li.premium-person-linkedin:hover a {
4866
+ background-color: #0077b5 !important; }
4867
+
4868
+ .premium-person-defaults-yes li.premium-person-google:hover a {
4869
+ background-color: #dc4e41 !important; }
4870
+
4871
+ .premium-person-defaults-yes li.premium-person-youtube:hover a {
4872
+ background-color: #b31217 !important; }
4873
+
4874
+ .premium-person-defaults-yes li.premium-person-instagram:hover a {
4875
+ background-color: #e4405f !important; }
4876
+
4877
+ .premium-person-defaults-yes li.premium-person-skype:hover a {
4878
+ background-color: #00aff0 !important; }
4879
+
4880
+ .premium-person-defaults-yes li.premium-person-pinterest:hover a {
4881
+ background-color: #bd081c !important; }
4882
+
4883
+ .premium-person-defaults-yes li.premium-person-dribbble:hover a {
4884
+ background-color: #ea4c89 !important; }
4885
+
4886
+ .premium-person-defaults-yes li.premium-person-mail:hover a {
4887
+ background-color: #b23121 !important; }
4888
+
4889
+ .premium-person-defaults-yes li.premium-person-behance:hover a {
4890
+ background-color: #1769ff !important; }
4891
+
4892
+ .premium-person-defaults-yes li.premium-person-whatsapp:hover a {
4893
+ background-color: #25d366 !important; }
4894
+
4895
+ .premium-person-defaults-yes li.premium-person-telegram:hover a {
4896
+ background-color: #0088cc !important; }
4897
+
4898
+ .premium-person-defaults-yes li.premium-person-site:hover a {
4899
+ background-color: #0055a5 !important; }
4900
+
4901
+ .premium-person-social-list li:hover a {
4902
+ -webkit-box-shadow: none;
4903
+ box-shadow: none; }
4904
+
4905
+ .premium-person-social-list li a:focus {
4906
+ -webkit-box-shadow: none;
4907
+ box-shadow: none;
4908
+ outline: none; }
4909
+
4910
+ .premium-person-social-list li i {
4911
+ font-size: 18px; }
4912
+
4913
+ .elementor-widget-premium-addon-person .elementor-widget-container {
4914
+ -js-display: flex;
4915
+ display: -webkit-box;
4916
+ display: -webkit-flex;
4917
+ display: -moz-box;
4918
+ display: -ms-flexbox;
4919
+ display: flex;
4920
+ -webkit-box-pack: center;
4921
+ -webkit-justify-content: center;
4922
+ -moz-box-pack: center;
4923
+ -ms-flex-pack: center;
4924
+ justify-content: center; }
4925
+
4926
+ .premium-persons-container.multiple-persons {
4927
+ -js-display: flex;
4928
+ display: -webkit-box;
4929
+ display: -webkit-flex;
4930
+ display: -moz-box;
4931
+ display: -ms-flexbox;
4932
+ display: flex;
4933
+ -webkit-flex-wrap: wrap;
4934
+ -ms-flex-wrap: wrap;
4935
+ flex-wrap: wrap;
4936
+ width: 100%; }
4937
+
4938
+ .premium-person-style1 .premium-person-container {
4939
+ overflow: hidden; }
4940
+ .premium-person-style1 .premium-person-container .premium-person-info {
4941
+ position: absolute;
4942
+ top: auto;
4943
+ right: 0;
4944
+ left: 0;
4945
+ -webkit-transition: all 500ms ease 0s;
4946
+ transition: all 500ms ease 0s;
4947
+ -webkit-transform: translate3d(0, 100%, 0);
4948
+ transform: translate3d(0, 100%, 0); }
4949
+ .premium-person-style1 .premium-person-container:hover .premium-person-info {
4950
+ -webkit-transform: translate3d(0, 0, 0);
4951
+ transform: translate3d(0, 0, 0);
4952
+ bottom: -1px !important; }
4953
+
4954
+ .premium-person-style1 .premium-person-social-list li:hover {
4955
+ bottom: 5px; }
4956
+
4957
+ .premium-person-style1.multiple-persons:not([data-persons-equal="yes"]) {
4958
+ -webkit-box-align: s