Premium Addons for Elementor - Version 4.9.26

Version Description

  • New: Added Premium SVG Draw widget - here.
  • New: Added Draw Icon option in all widgets that has Icon option in them.
Download this release

Release Info

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

Code changes from version 4.9.25 to 4.9.26

admin/assets/css/admin-rtl.css CHANGED
@@ -118,6 +118,28 @@
118
  margin-left: 15px;
119
  }
120
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
121
  .pa-api-disable-title span,
122
  .pa-is-beta span {
123
  font-weight: 400;
118
  margin-left: 15px;
119
  }
120
 
121
+ .pa-element-meta {
122
+ -js-display: flex;
123
+ display: -webkit-box;
124
+ display: -webkit-flex;
125
+ display: -moz-box;
126
+ display: -ms-flexbox;
127
+ display: flex;
128
+ -webkit-flex-direction: column;
129
+ -moz-box-orient: vertical;
130
+ -moz-box-direction: normal;
131
+ -ms-flex-direction: column;
132
+ flex-direction: column;
133
+ }
134
+
135
+ .pa-element-meta span {
136
+ vertical-align: middle;
137
+ }
138
+
139
+ .pa-element-meta label {
140
+ margin-left: 1px !important;
141
+ }
142
+
143
  .pa-api-disable-title span,
144
  .pa-is-beta span {
145
  font-weight: 400;
admin/assets/css/admin.css CHANGED
@@ -177,6 +177,30 @@
177
  margin-right: 15px;
178
  }
179
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
180
  .pa-api-disable-title span,
181
  .pa-is-beta span {
182
  font-weight: 400;
177
  margin-right: 15px;
178
  }
179
 
180
+ .pa-element-meta {
181
+ -js-display: flex;
182
+ display: -webkit-box;
183
+ display: -webkit-flex;
184
+ display: -moz-box;
185
+ display: -ms-flexbox;
186
+ display: flex;
187
+ -webkit-flex-direction: column;
188
+ -moz-box-orient: vertical;
189
+ -moz-box-direction: normal;
190
+ -ms-flex-direction: column;
191
+ -webkit-box-orient: vertical;
192
+ -webkit-box-direction: normal;
193
+ flex-direction: column;
194
+ }
195
+
196
+ .pa-element-meta span {
197
+ vertical-align: middle;
198
+ }
199
+
200
+ .pa-element-meta label {
201
+ margin-right: 1px !important;
202
+ }
203
+
204
  .pa-api-disable-title span,
205
  .pa-is-beta span {
206
  font-weight: 400;
admin/assets/js/admin.js CHANGED
@@ -1,537 +1,554 @@
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
- };
52
-
53
- // Handle settings form submission
54
- self.handleSettingsSave = function () {
55
-
56
- $("#pa-features .pa-section-info-cta input, #pa-modules .pa-switcher input, #pa-modules .pa-section-info-cta input").on(
57
- 'change',
58
- function () {
59
- self.saveElementsSettings('elements');
60
- }
61
- )
62
-
63
- $("#pa-ver-control input, #pa-integrations input, #pa-ver-control input, #pa-integrations select").change(
64
- function () {
65
- self.saveElementsSettings('additional');
66
- }
67
- );
68
-
69
- $("#pa-integrations input[type=text]").on(
70
- 'keyup',
71
- function () {
72
- self.saveElementsSettings('additional');
73
- }
74
- )
75
-
76
- };
77
-
78
- //get unused widgets.
79
- self.getUnusedWidget = function () {
80
-
81
- if ($(".pa-btn-group .pa-btn-disable").hasClass("active")) {
82
- $(".pa-btn-group .pa-btn-unused").addClass("dimmed");
83
- }
84
-
85
- $.ajax(
86
- {
87
- url: settings.ajaxurl,
88
- type: 'POST',
89
- data: {
90
- action: 'pa_get_unused_widgets',
91
- security: settings.nonce,
92
- },
93
- success: function (response) {
94
- console.log('unused widgets retrieved');
95
- self.unusedElements = response.data;
96
- },
97
- error: function (err) {
98
- console.log(err);
99
- }
100
- }
101
- );
102
- };
103
-
104
- // Handle global enable/disable buttons
105
- self.handleElementsActions = function () {
106
-
107
- $(".pa-elements-filter select").on(
108
- 'change',
109
- function () {
110
- var filter = $(this).val(),
111
- $activeTab = $(".pa-switchers-container").not(".hidden");
112
-
113
- $activeTab.find(".pa-switcher").removeClass("hidden");
114
-
115
- if ('free' === filter) {
116
- $activeTab.find(".pro-element").addClass("hidden");
117
- } else if ('pro' === filter) {
118
- $activeTab.find(".pa-switcher").not(".pro-element").addClass("hidden");
119
- }
120
- }
121
- );
122
-
123
- $(".pa-elements-filter input").on(
124
- 'keyup',
125
- function () {
126
- var filter = $(this).val(),
127
- $activeTab = $(".pa-switchers-container").not(".hidden"),
128
- currentQuerySwitchers = $activeTab.find(".pa-switcher");
129
-
130
- currentQuerySwitchers.addClass("hidden");
131
- var searchResults = currentQuerySwitchers.filter(function (index, switcher) {
132
- var elementName = $(switcher).find(".pa-element-name").text().toLowerCase();
133
-
134
- return -1 != elementName.indexOf(filter.toLowerCase()) ? $(switcher) : '';
135
- });
136
-
137
- searchResults.removeClass("hidden");
138
- }
139
- );
140
-
141
- // Enable/Disable all widgets
142
- $(".pa-btn-group").on(
143
- "click",
144
- '.pa-btn',
145
- function () {
146
-
147
- var $btn = $(this),
148
- isChecked = $btn.hasClass("pa-btn-enable");
149
-
150
- if (!$btn.hasClass("active")) {
151
- $(".pa-btn-group .pa-btn").removeClass("active");
152
- $btn.addClass("active");
153
-
154
- $.ajax(
155
- {
156
- url: settings.ajaxurl,
157
- type: 'POST',
158
- data: {
159
- action: 'pa_save_global_btn',
160
- security: settings.nonce,
161
- isGlobalOn: isChecked
162
- }
163
- }
164
- );
165
-
166
- }
167
-
168
- if (isChecked) {
169
- $(".pa-btn-group .pa-btn-unused").removeClass("dimmed");
170
- } else {
171
- $(".pa-btn-group .pa-btn-unused").addClass("dimmed");
172
- }
173
-
174
- $("#pa-modules .pa-switcher input").prop("checked", isChecked);
175
-
176
- self.saveElementsSettings('elements');
177
-
178
- }
179
- );
180
-
181
- //Disable unused widgets.
182
- $(".pa-btn-group").on(
183
- "click",
184
- '.pa-btn-unused',
185
- function () {
186
-
187
- $.each(self.unusedElements, function (index, selector) {
188
- $('#pa-modules .pa-switcher.' + selector).find('input').prop('checked', false);
189
- });
190
-
191
- $(this).addClass('dimmed');
192
-
193
- self.saveElementsSettings('elements');
194
- }
195
- );
196
-
197
- $("#pa-modules .pa-switcher input").on(
198
- 'change',
199
- function () {
200
- var $this = $(this),
201
- id = $this.attr('id'),
202
- isChecked = $this.prop('checked');
203
-
204
- $("input[name='" + id + "']").prop('checked', isChecked);
205
- }
206
- )
207
-
208
- //Disable unused widgets.
209
- $(".pa-section-info-cta").on(
210
- "click",
211
- '.pa-btn-regenerate',
212
- function () {
213
-
214
- var _this = $(this);
215
- _this.addClass("loading");
216
-
217
- $.ajax(
218
- {
219
- url: settings.ajaxurl,
220
- type: 'POST',
221
- data: {
222
- action: 'pa_clear_cached_assets',
223
- security: settings.generate_nonce,
224
- },
225
- success: function (response) {
226
-
227
- swal.fire({
228
- title: 'Generated Assets Cleared!',
229
- text: 'Click OK to continue',
230
- type: 'success',
231
- timer: 1500
232
- });
233
-
234
- _this.removeClass("loading");
235
-
236
- },
237
- }
238
- );
239
- }
240
- );
241
-
242
- };
243
-
244
- // Handle Tabs Elements
245
- self.initElementsTabs = function ($elem) {
246
-
247
- var $links = $elem.find('a'),
248
- $sections = $(".pa-switchers-container");
249
-
250
- $sections.eq(0).removeClass("hidden");
251
- $links.eq(0).addClass("active");
252
-
253
- $links.on(
254
- 'click',
255
- function (e) {
256
-
257
- e.preventDefault();
258
-
259
- var $link = $(this),
260
- href = $link.attr('href');
261
-
262
- // Set this tab to active
263
- $links.removeClass("active");
264
- $link.addClass("active");
265
-
266
- // Navigate to tab section
267
- $sections.addClass("hidden");
268
- $("#" + href).removeClass("hidden");
269
-
270
- }
271
- );
272
- };
273
-
274
- // Handle settings tabs
275
- self.initNavTabs = function ($elem) {
276
-
277
- var $links = $elem.find('a'),
278
- $lastSection = null;
279
-
280
- $(window).on(
281
- 'hashchange',
282
- function () {
283
-
284
- var hash = window.location.hash.match(new RegExp('tab=([^&]*)')),
285
- slug = hash ? hash[1] : $links.first().attr('href').replace('#tab=', ''),
286
- $link = $('#pa-tab-link-' + slug);
287
-
288
- if (!$link.length) {
289
- return
290
-
291
- }
292
- $links.removeClass('pa-section-active');
293
- $link.addClass('pa-section-active');
294
-
295
- // Hide the last active section
296
- if ($lastSection) {
297
- $lastSection.hide();
298
- }
299
-
300
- var $section = $('#pa-section-' + slug);
301
- $section.css(
302
- {
303
- display: 'block'
304
- }
305
- );
306
-
307
- $lastSection = $section;
308
-
309
- }
310
- ).trigger('hashchange');
311
-
312
- };
313
-
314
- self.handleRollBack = function () {
315
-
316
- // Rollback button
317
- $('.pa-rollback-button').on(
318
- 'click',
319
- function (event) {
320
-
321
- event.preventDefault();
322
-
323
- var $this = $(this),
324
- href = $this.attr('href');
325
-
326
- if (!href) {
327
- return;
328
- }
329
-
330
- // Show PAPRO stable version if PAPRO Rollback is clicked
331
- var isPAPRO = '';
332
- if (-1 !== href.indexOf('papro_rollback')) {
333
- isPAPRO = 'papro_';
334
- }
335
-
336
- var premiumRollBackConfirm = premiumAddonsSettings.premiumRollBackConfirm;
337
-
338
- var dialogsManager = new DialogsManager.Instance();
339
-
340
- dialogsManager.createWidget(
341
- 'confirm',
342
- {
343
- headerMessage: premiumRollBackConfirm.i18n.rollback_to_previous_version,
344
- message: premiumRollBackConfirm['i18n'][isPAPRO + 'rollback_confirm'],
345
- strings: {
346
- cancel: premiumRollBackConfirm.i18n.cancel,
347
- confirm: premiumRollBackConfirm.i18n.yes,
348
- },
349
- onConfirm: function () {
350
-
351
- $this.addClass('loading');
352
-
353
- location.href = $this.attr('href');
354
-
355
- }
356
- }
357
- ).show();
358
- }
359
- );
360
-
361
- };
362
-
363
- self.saveElementsSettings = function (action) { //save elements settings changes
364
-
365
- var $form = null;
366
-
367
- if ('elements' === action) {
368
- $form = $('form#pa-settings, form#pa-features');
369
- action = 'pa_elements_settings';
370
- } else {
371
- $form = $('form#pa-ver-control, form#pa-integrations');
372
- action = 'pa_additional_settings';
373
- }
374
-
375
- $.ajax(
376
- {
377
- url: settings.ajaxurl,
378
- type: 'POST',
379
- data: {
380
- action: action,
381
- security: settings.nonce,
382
- fields: $form.serialize(),
383
- },
384
- success: function (response) {
385
- console.log('settings saved');
386
-
387
- self.genButtonDisplay();
388
- },
389
- error: function (err) {
390
- console.log(err);
391
- }
392
- }
393
- );
394
- }
395
-
396
- self.genButtonDisplay = function () {
397
- var $form = $('form#pa-settings'),
398
- searchTerm = 'premium-assets-generator=on',
399
- indexOfFirst = $form.serialize().indexOf(searchTerm);
400
-
401
- if (indexOfFirst !== -1) {
402
- $('.pa-btn-generate').show();
403
- } else {
404
- $('.pa-btn-generate').hide();
405
- }
406
- };
407
-
408
- self.handlePaproActions = function () {
409
-
410
- // Trigger SWAL for PRO elements
411
- $(".pro-slider").on(
412
- 'click',
413
- function () {
414
-
415
- var redirectionLink = " https://premiumaddons.com/pro/?utm_source=wp-menu&utm_medium=wp-dash&utm_campaign=get-pro&utm_term=";
416
-
417
- Swal.fire(
418
- {
419
- title: '<span class="pa-swal-head">Get PRO Widgets & Addons<span>',
420
- html: 'Supercharge your Elementor with PRO widgets and addons that you won’t find anywhere else.',
421
- type: 'warning',
422
- showCloseButton: true,
423
- showCancelButton: true,
424
- cancelButtonText: "More Info",
425
- focusConfirm: true,
426
- customClass: 'pa-swal',
427
- }
428
- ).then(
429
- function (res) {
430
- // Handle More Info button
431
- if (res.dismiss === 'cancel') {
432
- window.open(redirectionLink + settings.theme, '_blank');
433
- }
434
-
435
- }
436
- );
437
- }
438
- );
439
-
440
- // Trigger SWAL for White Labeling
441
- $(".premium-white-label-form.pro-inactive").on(
442
- 'submit',
443
- function (e) {
444
-
445
- e.preventDefault();
446
-
447
- var redirectionLink = " https://premiumaddons.com/pro/?utm_source=wp-menu&utm_medium=wp-dash&utm_campaign=get-pro&utm_term=";
448
-
449
- Swal.fire(
450
- {
451
- title: '<span class="pa-swal-head">Enable White Labeling Options<span>',
452
- 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.',
453
- type: 'warning',
454
- showCloseButton: true,
455
- showCancelButton: true,
456
- cancelButtonText: "More Info",
457
- focusConfirm: true
458
- }
459
- ).then(
460
- function (res) {
461
- // Handle More Info button
462
- if (res.dismiss === 'cancel') {
463
- window.open(redirectionLink + settings.theme, '_blank');
464
- }
465
-
466
- }
467
- );
468
- }
469
- );
470
-
471
- };
472
-
473
- self.handleNewsLetterForm = function () {
474
-
475
- $('.pa-newsletter-form').on('submit', function (e) {
476
- e.preventDefault();
477
-
478
- var email = $("#pa_news_email").val();
479
-
480
- if (checkEmail(email)) {
481
- $.ajax(
482
- {
483
- url: settings.ajaxurl,
484
- type: 'POST',
485
- data: {
486
- action: 'subscribe_newsletter',
487
- security: settings.nonce,
488
- email: email
489
- },
490
- beforeSend: function () {
491
- console.log("Adding user to subscribers list");
492
- },
493
- success: function (response) {
494
- if (response.data) {
495
- var status = response.data.status;
496
- if (status) {
497
- console.log("User added to subscribers list");
498
- swal.fire({
499
- title: 'Thanks for subscribing!',
500
- text: 'Click OK to continue',
501
- type: 'success',
502
- timer: 1000
503
- });
504
- }
505
-
506
- }
507
-
508
- },
509
- error: function (err) {
510
- console.log(err);
511
- }
512
- }
513
- );
514
- } else {
515
- Swal.fire({
516
- type: 'error',
517
- title: 'Invalid Email Address...',
518
- text: 'Please enter a valid email address!'
519
- });
520
- }
521
-
522
- })
523
-
524
- };
525
-
526
- function checkEmail(emailAddress) {
527
- 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);
528
- return pattern.test(emailAddress);
529
- }
530
-
531
- };
532
-
533
- var instance = new PremiumAddonsNavigation();
534
-
535
- instance.init();
536
-
537
- })(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.handleSearchField();
44
+
45
+ self.handleSettingsSave();
46
+
47
+ self.handleRollBack();
48
+
49
+ self.handleNewsLetterForm();
50
+
51
+ self.handlePaproActions();
52
+
53
+ };
54
+
55
+ // Handle settings form submission
56
+ self.handleSettingsSave = function () {
57
+
58
+ $("#pa-features .pa-section-info-cta input, #pa-modules .pa-switcher input, #pa-modules .pa-section-info-cta input").on(
59
+ 'change',
60
+ function () {
61
+ self.saveElementsSettings('elements');
62
+ }
63
+ )
64
+
65
+ $("#pa-ver-control input, #pa-integrations input, #pa-ver-control input, #pa-integrations select").change(
66
+ function () {
67
+ self.saveElementsSettings('additional');
68
+ }
69
+ );
70
+
71
+ $("#pa-integrations input[type=text]").on(
72
+ 'keyup',
73
+ function () {
74
+ self.saveElementsSettings('additional');
75
+ }
76
+ )
77
+
78
+ };
79
+
80
+ //get unused widgets.
81
+ self.getUnusedWidget = function () {
82
+
83
+ if ($(".pa-btn-group .pa-btn-disable").hasClass("active")) {
84
+ $(".pa-btn-group .pa-btn-unused").addClass("dimmed");
85
+ }
86
+
87
+ $.ajax(
88
+ {
89
+ url: settings.ajaxurl,
90
+ type: 'POST',
91
+ data: {
92
+ action: 'pa_get_unused_widgets',
93
+ security: settings.nonce,
94
+ },
95
+ success: function (response) {
96
+ console.log('unused widgets retrieved');
97
+ self.unusedElements = response.data;
98
+ },
99
+ error: function (err) {
100
+ console.log(err);
101
+ }
102
+ }
103
+ );
104
+ };
105
+
106
+ // Handle global enable/disable buttons
107
+ self.handleElementsActions = function () {
108
+
109
+ $(".pa-elements-filter select").on(
110
+ 'change',
111
+ function () {
112
+ var filter = $(this).val(),
113
+ $activeTab = $(".pa-switchers-container").not(".hidden");
114
+
115
+ $activeTab.find(".pa-switcher").removeClass("hidden");
116
+
117
+ if ('free' === filter) {
118
+ $activeTab.find(".pro-element").addClass("hidden");
119
+ } else if ('pro' === filter) {
120
+ $activeTab.find(".pa-switcher").not(".pro-element").addClass("hidden");
121
+ }
122
+ }
123
+ );
124
+
125
+ $(".pa-elements-filter input").on(
126
+ 'keyup',
127
+ function () {
128
+ var filter = $(this).val(),
129
+ $activeTab = $(".pa-switchers-container").not(".hidden"),
130
+ currentQuerySwitchers = $activeTab.find(".pa-switcher");
131
+
132
+ currentQuerySwitchers.addClass("hidden");
133
+ var searchResults = currentQuerySwitchers.filter(function (index, switcher) {
134
+ var elementName = $(switcher).find(".pa-element-name").text().toLowerCase();
135
+
136
+ return -1 != elementName.indexOf(filter.toLowerCase()) ? $(switcher) : '';
137
+ });
138
+
139
+ searchResults.removeClass("hidden");
140
+ }
141
+ );
142
+
143
+ // Enable/Disable all widgets
144
+ $(".pa-btn-group").on(
145
+ "click",
146
+ '.pa-btn',
147
+ function () {
148
+
149
+ var $btn = $(this),
150
+ isChecked = $btn.hasClass("pa-btn-enable");
151
+
152
+ if (!$btn.hasClass("active")) {
153
+ $(".pa-btn-group .pa-btn").removeClass("active");
154
+ $btn.addClass("active");
155
+
156
+ $.ajax(
157
+ {
158
+ url: settings.ajaxurl,
159
+ type: 'POST',
160
+ data: {
161
+ action: 'pa_save_global_btn',
162
+ security: settings.nonce,
163
+ isGlobalOn: isChecked
164
+ }
165
+ }
166
+ );
167
+
168
+ }
169
+
170
+ if (isChecked) {
171
+ $(".pa-btn-group .pa-btn-unused").removeClass("dimmed");
172
+ } else {
173
+ $(".pa-btn-group .pa-btn-unused").addClass("dimmed");
174
+ }
175
+
176
+ $("#pa-modules .pa-switcher input").prop("checked", isChecked);
177
+
178
+ self.saveElementsSettings('elements');
179
+
180
+ }
181
+ );
182
+
183
+ //Disable unused widgets.
184
+ $(".pa-btn-group").on(
185
+ "click",
186
+ '.pa-btn-unused',
187
+ function () {
188
+
189
+ $.each(self.unusedElements, function (index, selector) {
190
+ $('#pa-modules .pa-switcher.' + selector).find('input').prop('checked', false);
191
+ });
192
+
193
+ $(this).addClass('dimmed');
194
+
195
+ self.saveElementsSettings('elements');
196
+ }
197
+ );
198
+
199
+ $("#pa-modules .pa-switcher input").on(
200
+ 'change',
201
+ function () {
202
+ var $this = $(this),
203
+ id = $this.attr('id'),
204
+ isChecked = $this.prop('checked');
205
+
206
+ $("input[name='" + id + "']").prop('checked', isChecked);
207
+ }
208
+ )
209
+
210
+ //Disable unused widgets.
211
+ $(".pa-section-info-cta").on(
212
+ "click",
213
+ '.pa-btn-regenerate',
214
+ function () {
215
+
216
+ var _this = $(this);
217
+ _this.addClass("loading");
218
+
219
+ $.ajax(
220
+ {
221
+ url: settings.ajaxurl,
222
+ type: 'POST',
223
+ data: {
224
+ action: 'pa_clear_cached_assets',
225
+ security: settings.generate_nonce,
226
+ },
227
+ success: function (response) {
228
+
229
+ swal.fire({
230
+ title: 'Generated Assets Cleared!',
231
+ text: 'Click OK to continue',
232
+ type: 'success',
233
+ timer: 1500
234
+ });
235
+
236
+ _this.removeClass("loading");
237
+
238
+ },
239
+ }
240
+ );
241
+ }
242
+ );
243
+
244
+ };
245
+
246
+ self.handleSearchField = function () {
247
+
248
+ var urlString = window.location.href,
249
+ url = new URL(urlString);
250
+
251
+ var searchInput = url.searchParams.get("search");
252
+
253
+ if (!searchInput)
254
+ return;
255
+
256
+ $(".pa-elements-filter input").val(searchInput).trigger("keyup");
257
+
258
+
259
+ }
260
+
261
+ // Handle Tabs Elements
262
+ self.initElementsTabs = function ($elem) {
263
+
264
+ var $links = $elem.find('a'),
265
+ $sections = $(".pa-switchers-container");
266
+
267
+ $sections.eq(0).removeClass("hidden");
268
+ $links.eq(0).addClass("active");
269
+
270
+ $links.on(
271
+ 'click',
272
+ function (e) {
273
+
274
+ e.preventDefault();
275
+
276
+ var $link = $(this),
277
+ href = $link.attr('href');
278
+
279
+ // Set this tab to active
280
+ $links.removeClass("active");
281
+ $link.addClass("active");
282
+
283
+ // Navigate to tab section
284
+ $sections.addClass("hidden");
285
+ $("#" + href).removeClass("hidden");
286
+
287
+ }
288
+ );
289
+ };
290
+
291
+ // Handle settings tabs
292
+ self.initNavTabs = function ($elem) {
293
+
294
+ var $links = $elem.find('a'),
295
+ $lastSection = null;
296
+
297
+ $(window).on(
298
+ 'hashchange',
299
+ function () {
300
+
301
+ var hash = window.location.hash.match(new RegExp('tab=([^&]*)')),
302
+ slug = hash ? hash[1] : $links.first().attr('href').replace('#tab=', ''),
303
+ $link = $('#pa-tab-link-' + slug);
304
+
305
+ if (!$link.length) {
306
+ return
307
+
308
+ }
309
+ $links.removeClass('pa-section-active');
310
+ $link.addClass('pa-section-active');
311
+
312
+ // Hide the last active section
313
+ if ($lastSection) {
314
+ $lastSection.hide();
315
+ }
316
+
317
+ var $section = $('#pa-section-' + slug);
318
+ $section.css(
319
+ {
320
+ display: 'block'
321
+ }
322
+ );
323
+
324
+ $lastSection = $section;
325
+
326
+ }
327
+ ).trigger('hashchange');
328
+
329
+ };
330
+
331
+ self.handleRollBack = function () {
332
+
333
+ // Rollback button
334
+ $('.pa-rollback-button').on(
335
+ 'click',
336
+ function (event) {
337
+
338
+ event.preventDefault();
339
+
340
+ var $this = $(this),
341
+ href = $this.attr('href');
342
+
343
+ if (!href) {
344
+ return;
345
+ }
346
+
347
+ // Show PAPRO stable version if PAPRO Rollback is clicked
348
+ var isPAPRO = '';
349
+ if (-1 !== href.indexOf('papro_rollback')) {
350
+ isPAPRO = 'papro_';
351
+ }
352
+
353
+ var premiumRollBackConfirm = premiumAddonsSettings.premiumRollBackConfirm;
354
+
355
+ var dialogsManager = new DialogsManager.Instance();
356
+
357
+ dialogsManager.createWidget(
358
+ 'confirm',
359
+ {
360
+ headerMessage: premiumRollBackConfirm.i18n.rollback_to_previous_version,
361
+ message: premiumRollBackConfirm['i18n'][isPAPRO + 'rollback_confirm'],
362
+ strings: {
363
+ cancel: premiumRollBackConfirm.i18n.cancel,
364
+ confirm: premiumRollBackConfirm.i18n.yes,
365
+ },
366
+ onConfirm: function () {
367
+
368
+ $this.addClass('loading');
369
+
370
+ location.href = $this.attr('href');
371
+
372
+ }
373
+ }
374
+ ).show();
375
+ }
376
+ );
377
+
378
+ };
379
+
380
+ self.saveElementsSettings = function (action) { //save elements settings changes
381
+
382
+ var $form = null;
383
+
384
+ if ('elements' === action) {
385
+ $form = $('form#pa-settings, form#pa-features');
386
+ action = 'pa_elements_settings';
387
+ } else {
388
+ $form = $('form#pa-ver-control, form#pa-integrations');
389
+ action = 'pa_additional_settings';
390
+ }
391
+
392
+ $.ajax(
393
+ {
394
+ url: settings.ajaxurl,
395
+ type: 'POST',
396
+ data: {
397
+ action: action,
398
+ security: settings.nonce,
399
+ fields: $form.serialize(),
400
+ },
401
+ success: function (response) {
402
+ console.log('settings saved');
403
+
404
+ self.genButtonDisplay();
405
+ },
406
+ error: function (err) {
407
+ console.log(err);
408
+ }
409
+ }
410
+ );
411
+ }
412
+
413
+ self.genButtonDisplay = function () {
414
+ var $form = $('form#pa-settings'),
415
+ searchTerm = 'premium-assets-generator=on',
416
+ indexOfFirst = $form.serialize().indexOf(searchTerm);
417
+
418
+ if (indexOfFirst !== -1) {
419
+ $('.pa-btn-generate').show();
420
+ } else {
421
+ $('.pa-btn-generate').hide();
422
+ }
423
+ };
424
+
425
+ self.handlePaproActions = function () {
426
+
427
+ // Trigger SWAL for PRO elements
428
+ $(".pro-slider").on(
429
+ 'click',
430
+ function () {
431
+
432
+ var redirectionLink = " https://premiumaddons.com/pro/?utm_source=wp-menu&utm_medium=wp-dash&utm_campaign=get-pro&utm_term=";
433
+
434
+ Swal.fire(
435
+ {
436
+ title: '<span class="pa-swal-head">Get PRO Widgets & Addons<span>',
437
+ html: 'Supercharge your Elementor with PRO widgets and addons that you won’t find anywhere else.',
438
+ type: 'warning',
439
+ showCloseButton: true,
440
+ showCancelButton: true,
441
+ cancelButtonText: "More Info",
442
+ focusConfirm: true,
443
+ customClass: 'pa-swal',
444
+ }
445
+ ).then(
446
+ function (res) {
447
+ // Handle More Info button
448
+ if (res.dismiss === 'cancel') {
449
+ window.open(redirectionLink + settings.theme, '_blank');
450
+ }
451
+
452
+ }
453
+ );
454
+ }
455
+ );
456
+
457
+ // Trigger SWAL for White Labeling
458
+ $(".premium-white-label-form.pro-inactive").on(
459
+ 'submit',
460
+ function (e) {
461
+
462
+ e.preventDefault();
463
+
464
+ var redirectionLink = " https://premiumaddons.com/pro/?utm_source=wp-menu&utm_medium=wp-dash&utm_campaign=get-pro&utm_term=";
465
+
466
+ Swal.fire(
467
+ {
468
+ title: '<span class="pa-swal-head">Enable White Labeling Options<span>',
469
+ 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.',
470
+ type: 'warning',
471
+ showCloseButton: true,
472
+ showCancelButton: true,
473
+ cancelButtonText: "More Info",
474
+ focusConfirm: true
475
+ }
476
+ ).then(
477
+ function (res) {
478
+ // Handle More Info button
479
+ if (res.dismiss === 'cancel') {
480
+ window.open(redirectionLink + settings.theme, '_blank');
481
+ }
482
+
483
+ }
484
+ );
485
+ }
486
+ );
487
+
488
+ };
489
+
490
+ self.handleNewsLetterForm = function () {
491
+
492
+ $('.pa-newsletter-form').on('submit', function (e) {
493
+ e.preventDefault();
494
+
495
+ var email = $("#pa_news_email").val();
496
+
497
+ if (checkEmail(email)) {
498
+ $.ajax(
499
+ {
500
+ url: settings.ajaxurl,
501
+ type: 'POST',
502
+ data: {
503
+ action: 'subscribe_newsletter',
504
+ security: settings.nonce,
505
+ email: email
506
+ },
507
+ beforeSend: function () {
508
+ console.log("Adding user to subscribers list");
509
+ },
510
+ success: function (response) {
511
+ if (response.data) {
512
+ var status = response.data.status;
513
+ if (status) {
514
+ console.log("User added to subscribers list");
515
+ swal.fire({
516
+ title: 'Thanks for subscribing!',
517
+ text: 'Click OK to continue',
518
+ type: 'success',
519
+ timer: 1000
520
+ });
521
+ }
522
+
523
+ }
524
+
525
+ },
526
+ error: function (err) {
527
+ console.log(err);
528
+ }
529
+ }
530
+ );
531
+ } else {
532
+ Swal.fire({
533
+ type: 'error',
534
+ title: 'Invalid Email Address...',
535
+ text: 'Please enter a valid email address!'
536
+ });
537
+ }
538
+
539
+ })
540
+
541
+ };
542
+
543
+ function checkEmail(emailAddress) {
544
+ 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);
545
+ return pattern.test(emailAddress);
546
+ }
547
+
548
+ };
549
+
550
+ var instance = new PremiumAddonsNavigation();
551
+
552
+ instance.init();
553
+
554
+ })(jQuery);
admin/assets/js/pa-notice.js CHANGED
@@ -5,7 +5,7 @@
5
 
6
  var adminNotices = {
7
  'radius': 'radius_notice',
8
- 'nav': 'nav_menu_notice',
9
  };
10
 
11
  if (undefined !== notice) {
5
 
6
  var adminNotices = {
7
  'radius': 'radius_notice',
8
+ 'svg': 'svg_draw_notice',
9
  };
10
 
11
  if (undefined !== notice) {
admin/includes/admin-helper.php CHANGED
@@ -107,16 +107,18 @@ class Admin_Helper {
107
  add_action( 'admin_post_premium_addons_rollback', array( $this, 'run_pa_rollback' ) );
108
 
109
  if ( is_admin() ) {
110
- $current_page = $_SERVER['REQUEST_URI'];
111
- if ( false === strpos( $current_page, 'action=elementor' ) ) {
112
- Admin_Notices::get_instance();
 
113
 
114
- // Beta tester.
115
- Beta_Testers::get_instance();
116
 
117
- // PA Duplicator.
118
- if ( self::check_duplicator() ) {
119
- Duplicator::get_instance();
 
120
  }
121
  }
122
  }
@@ -235,14 +237,6 @@ class Admin_Helper {
235
 
236
  if ( strpos( $current_screen, $this->page_slug ) !== false ) {
237
 
238
- // wp_enqueue_style(
239
- // 'pa-admin-css',
240
- // PREMIUM_ADDONS_URL . 'admin/assets/css/admin' . $suffix . '.css',
241
- // array(),
242
- // PREMIUM_ADDONS_VERSION,
243
- // 'all'
244
- // );
245
-
246
  wp_enqueue_style(
247
  'pa-sweetalert-style',
248
  PREMIUM_ADDONS_URL . 'admin/assets/js/sweetalert2/sweetalert2.min.css',
@@ -396,7 +390,8 @@ class Admin_Helper {
396
  wp_send_json_error( 'Settings are not set!' );
397
  }
398
 
399
- $item_settings = json_decode( get_post_meta( $_POST['item_id'], 'pa_megamenu_item_meta', true ) );
 
400
 
401
  wp_send_json_success( $item_settings );
402
  }
@@ -446,8 +441,8 @@ class Admin_Helper {
446
  wp_send_json_error( 'item id is not set!' );
447
  }
448
 
449
- $item_id = $_POST['menu_item_id'];
450
- $temp_id = $_POST['template_id'];
451
 
452
  update_post_meta( $item_id, 'pa_mega_content_temp', $temp_id );
453
 
@@ -677,7 +672,7 @@ class Admin_Helper {
677
  $link .= '</a>';
678
  $link .= '</li>';
679
 
680
- echo $link;
681
  }
682
  ?>
683
  </ul>
@@ -848,7 +843,12 @@ class Admin_Helper {
848
  foreach ( $elements as $cat ) {
849
  if ( count( $cat['elements'] ) ) {
850
  foreach ( $cat['elements'] as $elem ) {
 
851
  array_push( $keys, $elem['key'] );
 
 
 
 
852
  }
853
  }
854
  }
@@ -986,6 +986,26 @@ class Admin_Helper {
986
 
987
  }
988
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
989
  /**
990
  * Check If Premium Templates is enabled
991
  *
@@ -1188,7 +1208,7 @@ class Admin_Helper {
1188
 
1189
  if ( empty( $id ) ) {
1190
  foreach ( scandir( $path ) as $file ) {
1191
- if ( $file == '.' || $file == '..' ) {
1192
  continue;
1193
  }
1194
 
@@ -1302,7 +1322,7 @@ class Admin_Helper {
1302
  wp_send_json_error();
1303
  }
1304
 
1305
- $email = isset( $_POST['email'] ) ? $_POST['email'] : '';
1306
 
1307
  $api_url = 'https://premiumaddons.com/wp-json/mailchimp/v2/add';
1308
 
107
  add_action( 'admin_post_premium_addons_rollback', array( $this, 'run_pa_rollback' ) );
108
 
109
  if ( is_admin() ) {
110
+ if ( isset( $_SERVER['REQUEST_URI'] ) ) {
111
+ $current_page = filter_var( wp_unslash( $_SERVER['REQUEST_URI'] ), FILTER_SANITIZE_STRING );
112
+ if ( false === strpos( $current_page, 'action=elementor' ) ) {
113
+ Admin_Notices::get_instance();
114
 
115
+ // Beta tester.
116
+ Beta_Testers::get_instance();
117
 
118
+ // PA Duplicator.
119
+ if ( self::check_duplicator() ) {
120
+ Duplicator::get_instance();
121
+ }
122
  }
123
  }
124
  }
237
 
238
  if ( strpos( $current_screen, $this->page_slug ) !== false ) {
239
 
 
 
 
 
 
 
 
 
240
  wp_enqueue_style(
241
  'pa-sweetalert-style',
242
  PREMIUM_ADDONS_URL . 'admin/assets/js/sweetalert2/sweetalert2.min.css',
390
  wp_send_json_error( 'Settings are not set!' );
391
  }
392
 
393
+ $item_id = sanitize_text_field( wp_unslash( $_POST['item_id'] ) );
394
+ $item_settings = json_decode( get_post_meta( $item_id, 'pa_megamenu_item_meta', true ) );
395
 
396
  wp_send_json_success( $item_settings );
397
  }
441
  wp_send_json_error( 'item id is not set!' );
442
  }
443
 
444
+ $item_id = sanitize_text_field( wp_unslash( $_POST['menu_item_id'] ) );
445
+ $temp_id = sanitize_text_field( wp_unslash( $_POST['template_id'] ) );
446
 
447
  update_post_meta( $item_id, 'pa_mega_content_temp', $temp_id );
448
 
672
  $link .= '</a>';
673
  $link .= '</li>';
674
 
675
+ echo $link; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
676
  }
677
  ?>
678
  </ul>
843
  foreach ( $elements as $cat ) {
844
  if ( count( $cat['elements'] ) ) {
845
  foreach ( $cat['elements'] as $elem ) {
846
+
847
  array_push( $keys, $elem['key'] );
848
+
849
+ if ( isset( $elem['draw_svg'] ) ) {
850
+ array_push( $keys, 'svg_' . $elem['key'] );
851
+ }
852
  }
853
  }
854
  }
986
 
987
  }
988
 
989
+ /**
990
+ * Check SVG Draw
991
+ *
992
+ * @since 4.9.26
993
+ * @access public
994
+ *
995
+ * @param string $key element key.
996
+ *
997
+ * @return boolean $is_enabled is option enabled.
998
+ */
999
+ public static function check_svg_draw( $key ) {
1000
+
1001
+ $enabled_keys = get_option( 'pa_save_settings', array() );
1002
+
1003
+ $is_enabled = isset( $enabled_keys[ 'svg_' . $key ] ) ? $enabled_keys[ 'svg_' . $key ] : false;
1004
+
1005
+ return $is_enabled;
1006
+
1007
+ }
1008
+
1009
  /**
1010
  * Check If Premium Templates is enabled
1011
  *
1208
 
1209
  if ( empty( $id ) ) {
1210
  foreach ( scandir( $path ) as $file ) {
1211
+ if ( '.' === $file || '..' === $file ) {
1212
  continue;
1213
  }
1214
 
1322
  wp_send_json_error();
1323
  }
1324
 
1325
+ $email = isset( $_POST['email'] ) ? sanitize_email( $_POST['email'] ) : '';
1326
 
1327
  $api_url = 'https://premiumaddons.com/wp-json/mailchimp/v2/add';
1328
 
admin/includes/admin-notices.php CHANGED
@@ -61,10 +61,10 @@ class Admin_Notices {
61
 
62
  self::$notices = array(
63
  'pa-review',
64
- 'nav_menu_notice',
65
  );
66
 
67
- delete_option( 'badge_notice' );
68
 
69
  }
70
 
@@ -102,7 +102,7 @@ class Admin_Notices {
102
  }
103
  }
104
 
105
- $this->get_menu_notice();
106
 
107
  }
108
 
@@ -231,22 +231,22 @@ class Admin_Notices {
231
 
232
  /**
233
  *
234
- * Shows admin notice for Premium Navigation Menu.
235
  *
236
  * @since 4.8.8
237
  * @access public
238
  *
239
  * @return void
240
  */
241
- public function get_menu_notice() {
242
 
243
- $nav_notice = get_option( 'nav_menu_notice' );
244
 
245
- if ( '1' === $nav_notice ) {
246
  return;
247
  }
248
 
249
- $notice_url = Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-mega-menu-widget', 'menu-notification', 'wp-dash', 'mega-menu' );
250
 
251
  ?>
252
 
@@ -256,11 +256,11 @@ class Admin_Notices {
256
  </div>
257
  <div class="pa-text-wrap">
258
  <p>
259
- <strong><?php echo __( 'Premium Navigation/Mega Menu Widget', 'premium-addons-for-elemetor' ); ?></strong>
260
  <?php echo sprintf( __( 'is now available in Premium Addons for Elementor. <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="nav">
264
  <span class="dashicons dashicons-dismiss"></span>
265
  </div>
266
  </div>
61
 
62
  self::$notices = array(
63
  'pa-review',
64
+ 'svg_draw_notice',
65
  );
66
 
67
+ delete_option( 'svg_draw_notice' );
68
 
69
  }
70
 
102
  }
103
  }
104
 
105
+ $this->get_svg_draw_notice();
106
 
107
  }
108
 
231
 
232
  /**
233
  *
234
+ * Shows admin notice for Premium SVG Draw.
235
  *
236
  * @since 4.8.8
237
  * @access public
238
  *
239
  * @return void
240
  */
241
+ public function get_svg_draw_notice() {
242
 
243
+ $draw_notice = get_option( 'svg_draw_notice' );
244
 
245
+ if ( '1' === $draw_notice ) {
246
  return;
247
  }
248
 
249
+ $notice_url = Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-svg-draw-widget/', 'svg-draw-notification', 'wp-dash', 'svg-draw' );
250
 
251
  ?>
252
 
256
  </div>
257
  <div class="pa-text-wrap">
258
  <p>
259
+ <strong><?php echo __( 'Premium SVG Draw Widget', 'premium-addons-for-elemetor' ); ?></strong>
260
  <?php echo sprintf( __( 'is now available in Premium Addons for Elementor. <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="svg">
264
  <span class="dashicons dashicons-dismiss"></span>
265
  </div>
266
  </div>
admin/includes/elements.php CHANGED
@@ -57,6 +57,13 @@ $elements = array(
57
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/persons-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
58
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/persons-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
59
  ),
 
 
 
 
 
 
 
60
  array(
61
  'key' => 'premium-tabs',
62
  'name' => 'premium-addon-tabs',
@@ -64,6 +71,7 @@ $elements = array(
64
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-tabs-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
65
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/tabs-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
66
  'is_pro' => true,
 
67
  'icon' => 'pa-pro-tabs',
68
  'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-tabs-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
69
  ),
@@ -85,11 +93,12 @@ $elements = array(
85
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/fancy-text-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
86
  ),
87
  array(
88
- 'key' => 'premium-title',
89
- 'name' => 'premium-addon-title',
90
- 'title' => __( 'Heading', 'premium-addons-for-elementor' ),
91
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/heading-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
92
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/heading-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
 
93
  ),
94
  array(
95
  'key' => 'premium-dual-header',
@@ -105,6 +114,7 @@ $elements = array(
105
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/divider-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
106
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/divider-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
107
  'is_pro' => true,
 
108
  'icon' => 'pa-pro-separator',
109
  'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/divider-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
110
  ),
@@ -123,11 +133,12 @@ $elements = array(
123
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-scroll-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
124
  ),
125
  array(
126
- 'key' => 'premium-image-separator',
127
- 'name' => 'premium-addon-image-separator',
128
- 'title' => __( 'Image Separator', 'premium-addons-for-elementor' ),
129
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-separator-widget-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
130
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-separator-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
 
131
  ),
132
  array(
133
  'key' => 'premium-image-comparison',
@@ -146,6 +157,7 @@ $elements = array(
146
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-hotspots-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
147
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-hotspots-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
148
  'is_pro' => true,
 
149
  'icon' => 'pa-pro-hot-spot',
150
  'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-hotspots-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
151
  ),
@@ -157,6 +169,7 @@ $elements = array(
157
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/image-layers/', 'settings-page', 'wp-dash', 'dashboard' ),
158
  'tutorial' => 'https://www.youtube.com/watch?v=D3INxWw_jKI',
159
  'is_pro' => true,
 
160
  'icon' => 'pa-pro-image-layers',
161
  'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-layers-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
162
  ),
@@ -167,6 +180,7 @@ $elements = array(
167
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-image-accordion-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
168
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-accordion-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
169
  'is_pro' => true,
 
170
  'icon' => 'pa-pro-image-accordion',
171
  'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-image-accordion-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
172
  ),
@@ -233,6 +247,7 @@ $elements = array(
233
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/parallax-section-addon-tutorial-2/', 'settings-page', 'wp-dash', 'dashboard' ),
234
  'tutorial' => 'https://www.youtube.com/watch?v=hkMNjxLoZ2w',
235
  'is_pro' => true,
 
236
  'is_global' => true,
237
  ),
238
  array(
@@ -276,6 +291,7 @@ $elements = array(
276
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/modal-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
277
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/modal-box/', 'settings-page', 'wp-dash', 'dashboard' ),
278
  'tutorial' => 'https://www.youtube.com/watch?v=3lLxSyf2nyk',
 
279
  ),
280
  array(
281
  'key' => 'premium-notbar',
@@ -284,6 +300,7 @@ $elements = array(
284
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/alert-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
285
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/alert-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
286
  'is_pro' => true,
 
287
  'icon' => 'pa-pro-notification-bar',
288
  'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/alert-box-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
289
  ),
@@ -294,6 +311,7 @@ $elements = array(
294
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/magic-section-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
295
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/magic-section-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
296
  'is_pro' => true,
 
297
  'icon' => 'pa-pro-magic-section',
298
  'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/magic-section-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
299
  ),
@@ -305,6 +323,7 @@ $elements = array(
305
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/preview-window-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
306
  'tutorial' => 'https://www.youtube.com/watch?v=EmptjFjrc4E',
307
  'is_pro' => true,
 
308
  'icon' => 'pa-pro-preview-window',
309
  'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/preview-window-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
310
  ),
@@ -369,13 +388,15 @@ $elements = array(
369
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/button-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
370
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/button/', 'settings-page', 'wp-dash', 'dashboard' ),
371
  'tutorial' => 'https://www.youtube.com/watch?v=w4NuCUkCIV4',
 
372
  ),
373
  array(
374
- 'key' => 'premium-image-button',
375
- 'name' => 'premium-addon-image-button',
376
- 'title' => __( 'Image Button', 'premium-addons-for-elementor' ),
377
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-button-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
378
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/image-button/', 'settings-page', 'wp-dash', 'dashboard' ),
 
379
  ),
380
  array(
381
  'key' => 'premium-flipbox',
@@ -384,6 +405,7 @@ $elements = array(
384
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/3d-hover-box-flip-box-widget-for-elementor/', 'settings-page', 'wp-dash', 'dashboard' ),
385
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/flip-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
386
  'is_pro' => true,
 
387
  'icon' => 'pa-pro-flip-box',
388
  'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/3d-hover-box-flip-box-widget-for-elementor/', 'editor-page', 'wp-editor', 'get-pro' ),
389
  ),
@@ -394,6 +416,7 @@ $elements = array(
394
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/icon-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
395
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/icon-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
396
  'is_pro' => true,
 
397
  'icon' => 'pa-pro-icon-box',
398
  'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/icon-box-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
399
  ),
@@ -404,6 +427,7 @@ $elements = array(
404
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/ihover-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
405
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-ihover-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
406
  'is_pro' => true,
 
407
  'icon' => 'pa-pro-ihover',
408
  'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/ihover-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
409
  ),
@@ -424,6 +448,7 @@ $elements = array(
424
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-bullet-list-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
425
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/bullet-list-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
426
  'tutorial' => 'https://www.youtube.com/watch?v=MPeXJiZ14sI',
 
427
  ),
428
  array(
429
  'key' => 'premium-facebook-feed',
@@ -474,13 +499,15 @@ $elements = array(
474
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/progress-bar-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
475
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-progress-bar-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
476
  'tutorial' => 'https://www.youtube.com/watch?v=Y7xqwhgDQJg',
 
477
  ),
478
  array(
479
- 'key' => 'premium-pricing-table',
480
- 'name' => 'premium-addon-pricing-table',
481
- 'title' => __( 'Pricing Table', 'premium-addons-for-elementor' ),
482
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/pricing-table-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
483
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/pricing-table-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
 
484
  ),
485
  array(
486
  'key' => 'premium-charts',
@@ -504,11 +531,12 @@ $elements = array(
504
  'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/table-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
505
  ),
506
  array(
507
- 'key' => 'premium-counter',
508
- 'name' => 'premium-counter',
509
- 'title' => __( 'Counter', 'premium-addons-for-elementor' ),
510
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/counter-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
511
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/counter-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
 
512
  ),
513
  array(
514
  'key' => 'premium-contactform',
@@ -534,6 +562,7 @@ $elements = array(
534
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/whatsapp-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
535
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/whatsapp-chat-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
536
  'is_pro' => true,
 
537
  'icon' => 'pa-pro-whatsapp',
538
  'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/whatsapp-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
539
  ),
@@ -587,12 +616,13 @@ $elements = array(
587
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/persons-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
588
  ),
589
  array(
590
- 'key' => 'premium-tabs',
591
- 'name' => 'premium-addon-tabs',
592
- 'title' => __( 'Tabs', 'premium-addons-for-elementor' ),
593
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-tabs-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
594
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/tabs-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
595
- 'is_pro' => true,
 
596
  ),
597
  array(
598
  'key' => 'premium-content-toggle',
@@ -610,11 +640,12 @@ $elements = array(
610
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/fancy-text-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
611
  ),
612
  array(
613
- 'key' => 'premium-title',
614
- 'name' => 'premium-addon-title',
615
- 'title' => __( 'Heading', 'premium-addons-for-elementor' ),
616
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/heading-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
617
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/heading-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
 
618
  ),
619
  array(
620
  'key' => 'premium-dual-header',
@@ -624,12 +655,13 @@ $elements = array(
624
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/dual-heading-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
625
  ),
626
  array(
627
- 'key' => 'premium-divider',
628
- 'name' => 'premium-divider',
629
- 'title' => __( 'Divider', 'premium-addons-for-elementor' ),
630
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/divider-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
631
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/divider-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
632
- 'is_pro' => true,
 
633
  ),
634
  ),
635
  ),
@@ -652,11 +684,12 @@ $elements = array(
652
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-scroll-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
653
  ),
654
  array(
655
- 'key' => 'premium-image-separator',
656
- 'name' => 'premium-addon-image-separator',
657
- 'title' => __( 'Image Separator', 'premium-addons-for-elementor' ),
658
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-separator-widget-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
659
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-separator-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
 
660
  ),
661
  array(
662
  'key' => 'premium-image-comparison',
@@ -667,12 +700,13 @@ $elements = array(
667
  'is_pro' => true,
668
  ),
669
  array(
670
- 'key' => 'premium-image-hotspots',
671
- 'name' => 'premium-addon-image-hotspots',
672
- 'title' => __( 'Image Hotspots', 'premium-addons-for-elementor' ),
673
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-hotspots-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
674
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-hotspots-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
675
- 'is_pro' => true,
 
676
  ),
677
  array(
678
  'key' => 'premium-img-layers',
@@ -682,14 +716,16 @@ $elements = array(
682
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/image-layers/', 'settings-page', 'wp-dash', 'dashboard' ),
683
  'tutorial' => 'https://www.youtube.com/watch?v=D3INxWw_jKI',
684
  'is_pro' => true,
 
685
  ),
686
  array(
687
- 'key' => 'premium-image-accordion',
688
- 'name' => 'premium-image-accordion',
689
- 'title' => __( 'Image Accordion', 'premium-addons-for-elementor' ),
690
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-image-accordion-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
691
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-accordion-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
692
- 'is_pro' => true,
 
693
  ),
694
  array(
695
  'key' => 'premium-videobox',
@@ -754,6 +790,7 @@ $elements = array(
754
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/parallax-section-addon-tutorial-2/', 'settings-page', 'wp-dash', 'dashboard' ),
755
  'tutorial' => 'https://www.youtube.com/watch?v=hkMNjxLoZ2w',
756
  'is_pro' => true,
 
757
  'is_global' => true,
758
  ),
759
  array(
@@ -803,22 +840,25 @@ $elements = array(
803
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/modal-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
804
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/modal-box/', 'settings-page', 'wp-dash', 'dashboard' ),
805
  'tutorial' => 'https://www.youtube.com/watch?v=3lLxSyf2nyk',
 
806
  ),
807
  array(
808
- 'key' => 'premium-notbar',
809
- 'name' => 'premium-notbar',
810
- 'title' => __( 'Alert Box', 'premium-addons-for-elementor' ),
811
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/alert-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
812
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/alert-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
813
- 'is_pro' => true,
 
814
  ),
815
  array(
816
- 'key' => 'premium-magic-section',
817
- 'name' => 'premium-addon-magic-section',
818
- 'title' => __( 'Magic Section', 'premium-addons-for-elementor' ),
819
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/magic-section-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
820
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/magic-section-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
821
- 'is_pro' => true,
 
822
  ),
823
  array(
824
  'key' => 'premium-prev-img',
@@ -828,6 +868,7 @@ $elements = array(
828
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/preview-window-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
829
  'tutorial' => 'https://www.youtube.com/watch?v=EmptjFjrc4E',
830
  'is_pro' => true,
 
831
  ),
832
  ),
833
  ),
@@ -896,37 +937,42 @@ $elements = array(
896
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/button-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
897
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/button/', 'settings-page', 'wp-dash', 'dashboard' ),
898
  'tutorial' => 'https://www.youtube.com/watch?v=w4NuCUkCIV4',
 
899
  ),
900
  array(
901
- 'key' => 'premium-image-button',
902
- 'title' => __( 'Image Button', 'premium-addons-for-elementor' ),
903
- 'name' => 'premium-addon-image-button',
904
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-button-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
905
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/image-button/', 'settings-page', 'wp-dash', 'dashboard' ),
 
906
  ),
907
  array(
908
- 'key' => 'premium-flipbox',
909
- 'name' => 'premium-addon-flip-box',
910
- 'title' => __( '3D Hover Box', 'premium-addons-for-elementor' ),
911
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/3d-hover-box-flip-box-widget-for-elementor/', 'settings-page', 'wp-dash', 'dashboard' ),
912
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/flip-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
913
- 'is_pro' => true,
 
914
  ),
915
  array(
916
- 'key' => 'premium-iconbox',
917
- 'name' => 'premium-addon-icon-box',
918
- 'title' => __( 'Icon Box', 'premium-addons-for-elementor' ),
919
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/icon-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
920
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/icon-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
921
- 'is_pro' => true,
 
922
  ),
923
  array(
924
- 'key' => 'premium-ihover',
925
- 'name' => 'premium-ihover',
926
- 'title' => __( 'iHover', 'premium-addons-for-elementor' ),
927
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/ihover-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
928
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-ihover-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
929
- 'is_pro' => true,
 
930
  ),
931
  array(
932
  'key' => 'premium-unfold',
@@ -943,6 +989,14 @@ $elements = array(
943
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-bullet-list-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
944
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/bullet-list-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
945
  'tutorial' => 'https://www.youtube.com/watch?v=MPeXJiZ14sI',
 
 
 
 
 
 
 
 
946
  ),
947
  ),
948
  ),
@@ -997,13 +1051,15 @@ $elements = array(
997
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/progress-bar-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
998
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-progress-bar-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
999
  'tutorial' => 'https://www.youtube.com/watch?v=Y7xqwhgDQJg',
 
1000
  ),
1001
  array(
1002
- 'key' => 'premium-pricing-table',
1003
- 'name' => 'premium-addon-pricing-table',
1004
- 'title' => __( 'Pricing Table', 'premium-addons-for-elementor' ),
1005
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/pricing-table-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1006
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/pricing-table-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
 
1007
  ),
1008
  array(
1009
  'key' => 'premium-charts',
@@ -1023,11 +1079,12 @@ $elements = array(
1023
  'is_pro' => true,
1024
  ),
1025
  array(
1026
- 'key' => 'premium-counter',
1027
- 'name' => 'premium-counter',
1028
- 'title' => __( 'Counter', 'premium-addons-for-elementor' ),
1029
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/counter-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1030
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/counter-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
 
1031
  ),
1032
  ),
1033
  ),
@@ -1051,12 +1108,13 @@ $elements = array(
1051
  'is_pro' => true,
1052
  ),
1053
  array(
1054
- 'key' => 'premium-whatsapp-chat',
1055
- 'name' => 'premium-whatsapp-chat',
1056
- 'title' => __( 'WhatsApp Chat', 'premium-addons-for-elementor' ),
1057
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/whatsapp-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1058
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/whatsapp-chat-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
1059
- 'is_pro' => true,
 
1060
  ),
1061
  ),
1062
  ),
57
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/persons-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
58
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/persons-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
59
  ),
60
+ array(
61
+ 'key' => 'premium-svg-drawer',
62
+ 'name' => 'premium-svg-drawer',
63
+ 'title' => __( 'SVG Draw', 'premium-addons-for-elementor' ),
64
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-svg-draw-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
65
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/elementor-svg-draw-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
66
+ ),
67
  array(
68
  'key' => 'premium-tabs',
69
  'name' => 'premium-addon-tabs',
71
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-tabs-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
72
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/tabs-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
73
  'is_pro' => true,
74
+ 'draw_svg' => true,
75
  'icon' => 'pa-pro-tabs',
76
  'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-tabs-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
77
  ),
93
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/fancy-text-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
94
  ),
95
  array(
96
+ 'key' => 'premium-title',
97
+ 'name' => 'premium-addon-title',
98
+ 'title' => __( 'Heading', 'premium-addons-for-elementor' ),
99
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/heading-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
100
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/heading-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
101
+ 'draw_svg' => true,
102
  ),
103
  array(
104
  'key' => 'premium-dual-header',
114
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/divider-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
115
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/divider-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
116
  'is_pro' => true,
117
+ 'draw_svg' => true,
118
  'icon' => 'pa-pro-separator',
119
  'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/divider-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
120
  ),
133
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-scroll-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
134
  ),
135
  array(
136
+ 'key' => 'premium-image-separator',
137
+ 'name' => 'premium-addon-image-separator',
138
+ 'title' => __( 'Image Separator', 'premium-addons-for-elementor' ),
139
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-separator-widget-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
140
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-separator-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
141
+ 'draw_svg' => true,
142
  ),
143
  array(
144
  'key' => 'premium-image-comparison',
157
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-hotspots-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
158
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-hotspots-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
159
  'is_pro' => true,
160
+ 'draw_svg' => true,
161
  'icon' => 'pa-pro-hot-spot',
162
  'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-hotspots-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
163
  ),
169
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/image-layers/', 'settings-page', 'wp-dash', 'dashboard' ),
170
  'tutorial' => 'https://www.youtube.com/watch?v=D3INxWw_jKI',
171
  'is_pro' => true,
172
+ 'draw_svg' => true,
173
  'icon' => 'pa-pro-image-layers',
174
  'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-layers-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
175
  ),
180
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-image-accordion-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
181
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-accordion-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
182
  'is_pro' => true,
183
+ 'draw_svg' => true,
184
  'icon' => 'pa-pro-image-accordion',
185
  'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-image-accordion-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
186
  ),
247
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/parallax-section-addon-tutorial-2/', 'settings-page', 'wp-dash', 'dashboard' ),
248
  'tutorial' => 'https://www.youtube.com/watch?v=hkMNjxLoZ2w',
249
  'is_pro' => true,
250
+ 'draw_svg' => true,
251
  'is_global' => true,
252
  ),
253
  array(
291
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/modal-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
292
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/modal-box/', 'settings-page', 'wp-dash', 'dashboard' ),
293
  'tutorial' => 'https://www.youtube.com/watch?v=3lLxSyf2nyk',
294
+ 'draw_svg' => true,
295
  ),
296
  array(
297
  'key' => 'premium-notbar',
300
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/alert-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
301
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/alert-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
302
  'is_pro' => true,
303
+ 'draw_svg' => true,
304
  'icon' => 'pa-pro-notification-bar',
305
  'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/alert-box-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
306
  ),
311
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/magic-section-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
312
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/magic-section-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
313
  'is_pro' => true,
314
+ 'draw_svg' => true,
315
  'icon' => 'pa-pro-magic-section',
316
  'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/magic-section-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
317
  ),
323
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/preview-window-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
324
  'tutorial' => 'https://www.youtube.com/watch?v=EmptjFjrc4E',
325
  'is_pro' => true,
326
+ 'draw_svg' => true,
327
  'icon' => 'pa-pro-preview-window',
328
  'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/preview-window-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
329
  ),
388
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/button-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
389
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/button/', 'settings-page', 'wp-dash', 'dashboard' ),
390
  'tutorial' => 'https://www.youtube.com/watch?v=w4NuCUkCIV4',
391
+ 'draw_svg' => true,
392
  ),
393
  array(
394
+ 'key' => 'premium-image-button',
395
+ 'name' => 'premium-addon-image-button',
396
+ 'title' => __( 'Image Button', 'premium-addons-for-elementor' ),
397
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-button-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
398
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/image-button/', 'settings-page', 'wp-dash', 'dashboard' ),
399
+ 'draw_svg' => true,
400
  ),
401
  array(
402
  'key' => 'premium-flipbox',
405
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/3d-hover-box-flip-box-widget-for-elementor/', 'settings-page', 'wp-dash', 'dashboard' ),
406
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/flip-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
407
  'is_pro' => true,
408
+ 'draw_svg' => true,
409
  'icon' => 'pa-pro-flip-box',
410
  'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/3d-hover-box-flip-box-widget-for-elementor/', 'editor-page', 'wp-editor', 'get-pro' ),
411
  ),
416
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/icon-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
417
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/icon-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
418
  'is_pro' => true,
419
+ 'draw_svg' => true,
420
  'icon' => 'pa-pro-icon-box',
421
  'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/icon-box-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
422
  ),
427
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/ihover-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
428
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-ihover-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
429
  'is_pro' => true,
430
+ 'draw_svg' => true,
431
  'icon' => 'pa-pro-ihover',
432
  'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/ihover-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
433
  ),
448
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-bullet-list-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
449
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/bullet-list-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
450
  'tutorial' => 'https://www.youtube.com/watch?v=MPeXJiZ14sI',
451
+ 'draw_svg' => true,
452
  ),
453
  array(
454
  'key' => 'premium-facebook-feed',
499
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/progress-bar-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
500
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-progress-bar-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
501
  'tutorial' => 'https://www.youtube.com/watch?v=Y7xqwhgDQJg',
502
+ 'draw_svg' => true,
503
  ),
504
  array(
505
+ 'key' => 'premium-pricing-table',
506
+ 'name' => 'premium-addon-pricing-table',
507
+ 'title' => __( 'Pricing Table', 'premium-addons-for-elementor' ),
508
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/pricing-table-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
509
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/pricing-table-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
510
+ 'draw_svg' => true,
511
  ),
512
  array(
513
  'key' => 'premium-charts',
531
  'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/table-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
532
  ),
533
  array(
534
+ 'key' => 'premium-counter',
535
+ 'name' => 'premium-counter',
536
+ 'title' => __( 'Counter', 'premium-addons-for-elementor' ),
537
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/counter-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
538
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/counter-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
539
+ 'draw_svg' => true,
540
  ),
541
  array(
542
  'key' => 'premium-contactform',
562
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/whatsapp-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
563
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/whatsapp-chat-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
564
  'is_pro' => true,
565
+ 'draw_svg' => true,
566
  'icon' => 'pa-pro-whatsapp',
567
  'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/whatsapp-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
568
  ),
616
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/persons-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
617
  ),
618
  array(
619
+ 'key' => 'premium-tabs',
620
+ 'name' => 'premium-addon-tabs',
621
+ 'title' => __( 'Tabs', 'premium-addons-for-elementor' ),
622
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-tabs-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
623
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/tabs-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
624
+ 'is_pro' => true,
625
+ 'draw_svg' => true,
626
  ),
627
  array(
628
  'key' => 'premium-content-toggle',
640
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/fancy-text-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
641
  ),
642
  array(
643
+ 'key' => 'premium-title',
644
+ 'name' => 'premium-addon-title',
645
+ 'title' => __( 'Heading', 'premium-addons-for-elementor' ),
646
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/heading-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
647
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/heading-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
648
+ 'draw_svg' => true,
649
  ),
650
  array(
651
  'key' => 'premium-dual-header',
655
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/dual-heading-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
656
  ),
657
  array(
658
+ 'key' => 'premium-divider',
659
+ 'name' => 'premium-divider',
660
+ 'title' => __( 'Divider', 'premium-addons-for-elementor' ),
661
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/divider-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
662
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/divider-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
663
+ 'is_pro' => true,
664
+ 'draw_svg' => true,
665
  ),
666
  ),
667
  ),
684
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-scroll-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
685
  ),
686
  array(
687
+ 'key' => 'premium-image-separator',
688
+ 'name' => 'premium-addon-image-separator',
689
+ 'title' => __( 'Image Separator', 'premium-addons-for-elementor' ),
690
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-separator-widget-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
691
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-separator-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
692
+ 'draw_svg' => true,
693
  ),
694
  array(
695
  'key' => 'premium-image-comparison',
700
  'is_pro' => true,
701
  ),
702
  array(
703
+ 'key' => 'premium-image-hotspots',
704
+ 'name' => 'premium-addon-image-hotspots',
705
+ 'title' => __( 'Image Hotspots', 'premium-addons-for-elementor' ),
706
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-hotspots-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
707
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-hotspots-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
708
+ 'is_pro' => true,
709
+ 'draw_svg' => true,
710
  ),
711
  array(
712
  'key' => 'premium-img-layers',
716
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/image-layers/', 'settings-page', 'wp-dash', 'dashboard' ),
717
  'tutorial' => 'https://www.youtube.com/watch?v=D3INxWw_jKI',
718
  'is_pro' => true,
719
+ 'draw_svg' => true,
720
  ),
721
  array(
722
+ 'key' => 'premium-image-accordion',
723
+ 'name' => 'premium-image-accordion',
724
+ 'title' => __( 'Image Accordion', 'premium-addons-for-elementor' ),
725
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-image-accordion-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
726
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-accordion-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
727
+ 'is_pro' => true,
728
+ 'draw_svg' => true,
729
  ),
730
  array(
731
  'key' => 'premium-videobox',
790
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/parallax-section-addon-tutorial-2/', 'settings-page', 'wp-dash', 'dashboard' ),
791
  'tutorial' => 'https://www.youtube.com/watch?v=hkMNjxLoZ2w',
792
  'is_pro' => true,
793
+ 'draw_svg' => true,
794
  'is_global' => true,
795
  ),
796
  array(
840
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/modal-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
841
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/modal-box/', 'settings-page', 'wp-dash', 'dashboard' ),
842
  'tutorial' => 'https://www.youtube.com/watch?v=3lLxSyf2nyk',
843
+ 'draw_svg' => true,
844
  ),
845
  array(
846
+ 'key' => 'premium-notbar',
847
+ 'name' => 'premium-notbar',
848
+ 'title' => __( 'Alert Box', 'premium-addons-for-elementor' ),
849
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/alert-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
850
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/alert-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
851
+ 'is_pro' => true,
852
+ 'draw_svg' => true,
853
  ),
854
  array(
855
+ 'key' => 'premium-magic-section',
856
+ 'name' => 'premium-addon-magic-section',
857
+ 'title' => __( 'Magic Section', 'premium-addons-for-elementor' ),
858
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/magic-section-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
859
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/magic-section-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
860
+ 'is_pro' => true,
861
+ 'draw_svg' => true,
862
  ),
863
  array(
864
  'key' => 'premium-prev-img',
868
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/preview-window-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
869
  'tutorial' => 'https://www.youtube.com/watch?v=EmptjFjrc4E',
870
  'is_pro' => true,
871
+ 'draw_svg' => true,
872
  ),
873
  ),
874
  ),
937
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/button-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
938
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/button/', 'settings-page', 'wp-dash', 'dashboard' ),
939
  'tutorial' => 'https://www.youtube.com/watch?v=w4NuCUkCIV4',
940
+ 'draw_svg' => true,
941
  ),
942
  array(
943
+ 'key' => 'premium-image-button',
944
+ 'title' => __( 'Image Button', 'premium-addons-for-elementor' ),
945
+ 'name' => 'premium-addon-image-button',
946
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-button-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
947
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/image-button/', 'settings-page', 'wp-dash', 'dashboard' ),
948
+ 'draw_svg' => true,
949
  ),
950
  array(
951
+ 'key' => 'premium-flipbox',
952
+ 'name' => 'premium-addon-flip-box',
953
+ 'title' => __( '3D Hover Box', 'premium-addons-for-elementor' ),
954
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/3d-hover-box-flip-box-widget-for-elementor/', 'settings-page', 'wp-dash', 'dashboard' ),
955
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/flip-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
956
+ 'is_pro' => true,
957
+ 'draw_svg' => true,
958
  ),
959
  array(
960
+ 'key' => 'premium-iconbox',
961
+ 'name' => 'premium-addon-icon-box',
962
+ 'title' => __( 'Icon Box', 'premium-addons-for-elementor' ),
963
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/icon-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
964
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/icon-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
965
+ 'is_pro' => true,
966
+ 'draw_svg' => true,
967
  ),
968
  array(
969
+ 'key' => 'premium-ihover',
970
+ 'name' => 'premium-ihover',
971
+ 'title' => __( 'iHover', 'premium-addons-for-elementor' ),
972
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/ihover-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
973
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-ihover-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
974
+ 'is_pro' => true,
975
+ 'draw_svg' => true,
976
  ),
977
  array(
978
  'key' => 'premium-unfold',
989
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-bullet-list-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
990
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/bullet-list-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
991
  'tutorial' => 'https://www.youtube.com/watch?v=MPeXJiZ14sI',
992
+ 'draw_svg' => true,
993
+ ),
994
+ array(
995
+ 'key' => 'premium-svg-drawer',
996
+ 'name' => 'premium-svg-drawer',
997
+ 'title' => __( 'SVG Draw', 'premium-addons-for-elementor' ),
998
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-svg-draw-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
999
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/elementor-svg-draw-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
1000
  ),
1001
  ),
1002
  ),
1051
  'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/progress-bar-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1052
  'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-progress-bar-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
1053
  'tutorial' => 'https://www.youtube.com/watch?v=Y7xqwhgDQJg',
1054
+ 'draw_svg' => true,
1055
  ),
1056
  array(
1057
+ 'key' => 'premium-pricing-table',
1058
+ 'name' => 'premium-addon-pricing-table',
1059
+ 'title' => __( 'Pricing Table', 'premium-addons-for-elementor' ),
1060
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/pricing-table-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1061
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/pricing-table-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
1062
+ 'draw_svg' => true,
1063
  ),
1064
  array(
1065
  'key' => 'premium-charts',
1079
  'is_pro' => true,
1080
  ),
1081
  array(
1082
+ 'key' => 'premium-counter',
1083
+ 'name' => 'premium-counter',
1084
+ 'title' => __( 'Counter', 'premium-addons-for-elementor' ),
1085
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/counter-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1086
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/counter-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
1087
+ 'draw_svg' => true,
1088
  ),
1089
  ),
1090
  ),
1108
  'is_pro' => true,
1109
  ),
1110
  array(
1111
+ 'key' => 'premium-whatsapp-chat',
1112
+ 'name' => 'premium-whatsapp-chat',
1113
+ 'title' => __( 'WhatsApp Chat', 'premium-addons-for-elementor' ),
1114
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/whatsapp-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1115
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/whatsapp-chat-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
1116
+ 'is_pro' => true,
1117
+ 'draw_svg' => true,
1118
  ),
1119
  ),
1120
  ),
admin/includes/templates/modules-settings.php CHANGED
@@ -1,173 +1,185 @@
1
- <?php
2
-
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
-
7
- use PremiumAddons\Includes\Helper_Functions;
8
-
9
- $elements = self::get_elements_list();
10
-
11
- $used_widgets = self::get_used_widgets();
12
-
13
- // Get elements settings
14
- $enabled_elements = self::get_enabled_elements();
15
-
16
- $global_btn = get_option( 'pa_global_btn_value', 'true' );
17
- $enable_btn = 'true' === $global_btn ? 'active' : '';
18
- $disable_btn = 'true' === $global_btn ? '' : 'active';
19
-
20
- $row_meta = Helper_Functions::is_hide_row_meta();
21
-
22
- ?>
23
-
24
- <div class="pa-section-content">
25
- <div class="row">
26
- <div class="col-full">
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
- <?php if ( $enabled_elements['premium-assets-generator'] ) : ?>
43
- <button type="button" class="pa-btn-regenerate" title="<?php esc_html_e( 'Clear Generated Assets', 'premium-addons-for-elementor' ); ?>">
44
- <i class="dashicons dashicons-image-rotate"></i>
45
- </button>
46
- <?php endif; ?>
47
- </div>
48
-
49
- </div>
50
- </div>
51
-
52
- <div class="pa-section-info-wrap">
53
- <div class="pa-section-info">
54
- <h4><?php echo __( 'Master Switch', 'premium-addons-for-elementor' ); ?></h4>
55
- <p><?php echo __( 'Use this to switch on or off ALL Widgets & Add-ons at once.', 'premium-addons-for-elementor' ); ?></p>
56
- </div>
57
-
58
- <div class="pa-btn-group">
59
- <button type="button" class="pa-btn pa-btn-enable <?php echo esc_attr( $enable_btn ); ?>"><?php echo __( 'Switch On', 'premium-addons-for-elementor' ); ?></button>
60
- <button type="button" class="pa-btn pa-btn-disable <?php echo esc_attr( $disable_btn ); ?>"><?php echo __( 'Switch Off', 'premium-addons-for-elementor' ); ?></button>
61
- <?php if ( false !== $used_widgets ) { ?>
62
- <button type="button" class="pa-btn-unused"><?php echo __( 'Disable Unused Widgets', 'premium-addons-for-elementor' ); ?></button>
63
- <?php } ?>
64
- </div>
65
- </div>
66
-
67
- <div class="pa-elements-settings">
68
-
69
- <div class="pa-elements-filter">
70
- <label for="premium-elements-filter"><?php _e( 'Filter Widgets', 'premium-addons-for-elementor' ); ?></label>
71
- <input type="text" placeholder="<?php _e( 'Search by name...', 'premium-addons-for-elementor' ); ?>">
72
- <select name="premium-elements-filter" id="premium-elements-filter" class="placeholder placeholder-active">
73
- <option value=""><?php _e( 'All Widgets', 'premium-addons-for-elementor' ); ?></option>
74
- <option value="free"><?php _e( 'Free Widgets', 'premium-addons-for-elementor' ); ?></option>
75
- <option value="pro"><?php _e( 'PRO Widgets', 'premium-addons-for-elementor' ); ?></option>
76
- </select>
77
- </div>
78
-
79
- <div class="pa-elements-tabs">
80
- <ul class="pa-elements-tabs-list">
81
- <?php
82
- foreach ( $elements as $index => $cat ) :
83
- if ( 'cat-11' !== $index ) :
84
- ?>
85
- <li class="pa-elements-tab">
86
- <a class="pa-elements-tab-link" href="pa-elements-tab-<?php echo $index; ?>">
87
- <i class="<?php echo esc_attr( 'pa-dash-cat-' . $cat['icon'] ); ?>"></i>
88
- </a>
89
- <span class="pa-element-tab-tooltip"><?php echo esc_html( $cat['title'] ); ?></span>
90
- </li>
91
- <?php endif; ?>
92
- <?php endforeach; ?>
93
- </ul>
94
- </div>
95
-
96
- <?php
97
- foreach ( $elements as $index => $cat ) :
98
- if ( 'cat-11' !== $index ) :
99
- ?>
100
- <div id="pa-elements-tab-<?php echo $index; ?>" class="pa-switchers-container hidden">
101
- <h3 class="pa-elements-tab-title"><?php echo __( $cat['title'] ); ?></h3>
102
- <div class="pa-switchers">
103
- <?php
104
- foreach ( $cat['elements'] as $index => $elem ) :
105
- $status = ( isset( $elem['is_pro'] ) && ! Helper_Functions::check_papro_version() ) ? 'disabled' : checked( 1, $enabled_elements[ $elem['key'] ], false );
106
- $class = ( isset( $elem['is_pro'] ) && ! Helper_Functions::check_papro_version() ) ? 'pro-' : '';
107
- $switcher_class = $class . 'slider round';
108
- ?>
109
- <div class="pa-switcher
110
- <?php
111
- echo isset( $elem['is_pro'] ) ? 'pro-element' : '';
112
- echo isset( $elem['name'] ) ? ' ' . $elem['name'] : '';
113
- ?>
114
- ">
115
- <div class="pa-element-info">
116
- <div class="pa-element-icon-wrap">
117
- <i class="pa-dash-<?php echo esc_attr( $elem['key'] ); ?> pa-element-icon"></i>
118
- </div>
119
- <div class="pa-element-meta-wrap">
120
- <p class="pa-element-name">
121
- <?php echo $elem['title']; ?>
122
- <span class="pa-total-use" title="Total Use">
123
- <?php
124
- if ( ! isset( $elem['is_global'] ) && is_array( $used_widgets ) ) {
125
- echo esc_html__( in_array( $elem['name'], array_keys( $used_widgets ) ) ? '(' . $used_widgets[ $elem['name'] ] . ')' : '(0)' );}
126
- ?>
127
- </span>
128
- <?php if ( isset( $elem['is_pro'] ) ) : ?>
129
- <span><?php echo __( 'pro', 'premium-addons-for-elementor' ); ?></span>
130
- <?php endif; ?>
131
- </p>
132
- <?php if ( ! $row_meta ) : ?>
133
- <div>
134
- <?php if ( isset( $elem['demo'] ) ) : ?>
135
- <a class="pa-element-link" href="<?php echo esc_url( $elem['demo'] ); ?>" target="_blank">
136
- <?php echo __( 'Live Demo', 'premium-addons-for-elementor' ); ?>
137
- <span class="pa-element-link-separator"></span>
138
- </a>
139
- <?php endif; ?>
140
- <?php if ( isset( $elem['doc'] ) ) : ?>
141
- <a class="pa-element-link" href="<?php echo esc_url( $elem['doc'] ); ?>" target="_blank">
142
- <?php echo __( 'Docs', 'premium-addons-for-elementor' ); ?>
143
- <?php if ( isset( $elem['tutorial'] ) ) : ?>
144
- <span class="pa-element-link-separator"></span>
145
- <?php endif; ?>
146
- </a>
147
- <?php endif; ?>
148
- <?php if ( isset( $elem['tutorial'] ) ) : ?>
149
- <a class="pa-element-link" href="<?php echo esc_url( $elem['tutorial'] ); ?>" target="_blank">
150
- <?php echo __( 'Video Tutorial', 'premium-addons-for-elementor' ); ?>
151
- </a>
152
- <?php endif; ?>
153
- </div>
154
- <?php endif; ?>
155
- </div>
156
- </div>
157
- <label class="switch">
158
- <input type="checkbox" id="<?php echo esc_attr( $elem['key'] ); ?>" name="<?php echo esc_attr( $elem['key'] ); ?>" <?php echo $status; ?>>
159
- <span class="<?php echo esc_attr( $switcher_class ); ?>"></span>
160
- </label>
161
- </div>
162
- <?php endforeach; ?>
163
- </div>
164
- </div>
165
- <?php endif; ?>
166
- <?php endforeach; ?>
167
- </div>
168
-
169
- </div>
170
- </form> <!-- End Form -->
171
- </div>
172
- </div>
173
- </div> <!-- End Section Content -->
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ use PremiumAddons\Includes\Helper_Functions;
8
+
9
+ $elements = self::get_elements_list();
10
+
11
+ $used_widgets = self::get_used_widgets();
12
+
13
+ // Get elements settings
14
+ $enabled_elements = self::get_enabled_elements();
15
+
16
+ $global_btn = get_option( 'pa_global_btn_value', 'true' );
17
+ $enable_btn = 'true' === $global_btn ? 'active' : '';
18
+ $disable_btn = 'true' === $global_btn ? '' : 'active';
19
+
20
+ $row_meta = Helper_Functions::is_hide_row_meta();
21
+
22
+ ?>
23
+
24
+ <div class="pa-section-content">
25
+ <div class="row">
26
+ <div class="col-full">
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
+ <?php if ( $enabled_elements['premium-assets-generator'] ) : ?>
43
+ <button type="button" class="pa-btn-regenerate" title="<?php esc_html_e( 'Clear Generated Assets', 'premium-addons-for-elementor' ); ?>">
44
+ <i class="dashicons dashicons-image-rotate"></i>
45
+ </button>
46
+ <?php endif; ?>
47
+ </div>
48
+
49
+ </div>
50
+ </div>
51
+
52
+ <div class="pa-section-info-wrap">
53
+ <div class="pa-section-info">
54
+ <h4><?php echo __( 'Master Switch', 'premium-addons-for-elementor' ); ?></h4>
55
+ <p><?php echo __( 'Use this to switch on or off ALL Widgets & Add-ons at once.', 'premium-addons-for-elementor' ); ?></p>
56
+ </div>
57
+
58
+ <div class="pa-btn-group">
59
+ <button type="button" class="pa-btn pa-btn-enable <?php echo esc_attr( $enable_btn ); ?>"><?php echo __( 'Switch On', 'premium-addons-for-elementor' ); ?></button>
60
+ <button type="button" class="pa-btn pa-btn-disable <?php echo esc_attr( $disable_btn ); ?>"><?php echo __( 'Switch Off', 'premium-addons-for-elementor' ); ?></button>
61
+ <?php if ( false !== $used_widgets ) { ?>
62
+ <button type="button" class="pa-btn-unused"><?php echo __( 'Disable Unused Widgets', 'premium-addons-for-elementor' ); ?></button>
63
+ <?php } ?>
64
+ </div>
65
+ </div>
66
+
67
+ <div class="pa-elements-settings">
68
+
69
+ <div class="pa-elements-filter">
70
+ <label for="premium-elements-filter"><?php _e( 'Filter Widgets', 'premium-addons-for-elementor' ); ?></label>
71
+ <input type="text" placeholder="<?php _e( 'Search by name...', 'premium-addons-for-elementor' ); ?>">
72
+ <select name="premium-elements-filter" id="premium-elements-filter" class="placeholder placeholder-active">
73
+ <option value=""><?php _e( 'All Widgets', 'premium-addons-for-elementor' ); ?></option>
74
+ <option value="free"><?php _e( 'Free Widgets', 'premium-addons-for-elementor' ); ?></option>
75
+ <option value="pro"><?php _e( 'PRO Widgets', 'premium-addons-for-elementor' ); ?></option>
76
+ </select>
77
+ </div>
78
+
79
+ <div class="pa-elements-tabs">
80
+ <ul class="pa-elements-tabs-list">
81
+ <?php
82
+ foreach ( $elements as $index => $cat ) :
83
+ if ( 'cat-11' !== $index ) :
84
+ ?>
85
+ <li class="pa-elements-tab">
86
+ <a class="pa-elements-tab-link" href="pa-elements-tab-<?php echo $index; ?>">
87
+ <i class="<?php echo esc_attr( 'pa-dash-cat-' . $cat['icon'] ); ?>"></i>
88
+ </a>
89
+ <span class="pa-element-tab-tooltip"><?php echo esc_html( $cat['title'] ); ?></span>
90
+ </li>
91
+ <?php endif; ?>
92
+ <?php endforeach; ?>
93
+ </ul>
94
+ </div>
95
+
96
+ <?php
97
+ foreach ( $elements as $index => $cat ) :
98
+ if ( 'cat-11' !== $index ) :
99
+ ?>
100
+ <div id="pa-elements-tab-<?php echo $index; ?>" class="pa-switchers-container hidden">
101
+ <h3 class="pa-elements-tab-title"><?php echo __( $cat['title'] ); ?></h3>
102
+ <div class="pa-switchers">
103
+ <?php
104
+ foreach ( $cat['elements'] as $index => $elem ) :
105
+ $status = ( isset( $elem['is_pro'] ) && ! Helper_Functions::check_papro_version() ) ? 'disabled' : checked( 1, $enabled_elements[ $elem['key'] ], false );
106
+ $class = ( isset( $elem['is_pro'] ) && ! Helper_Functions::check_papro_version() ) ? 'pro-' : '';
107
+ $switcher_class = $class . 'slider round';
108
+ ?>
109
+ <div class="pa-switcher
110
+ <?php
111
+ echo isset( $elem['is_pro'] ) ? 'pro-element' : '';
112
+ echo isset( $elem['name'] ) ? ' ' . $elem['name'] : '';
113
+ ?>
114
+ ">
115
+ <div class="pa-element-info">
116
+ <div class="pa-element-icon-wrap">
117
+ <i class="pa-dash-<?php echo esc_attr( $elem['key'] ); ?> pa-element-icon"></i>
118
+ </div>
119
+ <div class="pa-element-meta-wrap">
120
+ <p class="pa-element-name">
121
+ <?php echo $elem['title']; ?>
122
+ <span class="pa-total-use" title="Total Use">
123
+ <?php
124
+ if ( ! isset( $elem['is_global'] ) && is_array( $used_widgets ) ) {
125
+ echo esc_html__( in_array( $elem['name'], array_keys( $used_widgets ) ) ? '(' . $used_widgets[ $elem['name'] ] . ')' : '(0)' );}
126
+ ?>
127
+ </span>
128
+ <?php if ( isset( $elem['is_pro'] ) ) : ?>
129
+ <span><?php echo __( 'pro', 'premium-addons-for-elementor' ); ?></span>
130
+ <?php endif; ?>
131
+ </p>
132
+ <?php if ( ! $row_meta ) : ?>
133
+ <div class="pa-element-meta">
134
+ <div>
135
+ <?php if ( isset( $elem['demo'] ) ) : ?>
136
+ <a class="pa-element-link" href="<?php echo esc_url( $elem['demo'] ); ?>" target="_blank">
137
+ <?php echo __( 'Live Demo', 'premium-addons-for-elementor' ); ?>
138
+ <span class="pa-element-link-separator"></span>
139
+ </a>
140
+ <?php endif; ?>
141
+ <?php if ( isset( $elem['doc'] ) ) : ?>
142
+ <a class="pa-element-link" href="<?php echo esc_url( $elem['doc'] ); ?>" target="_blank">
143
+ <?php echo __( 'Docs', 'premium-addons-for-elementor' ); ?>
144
+ <?php if ( isset( $elem['tutorial'] ) ) : ?>
145
+ <span class="pa-element-link-separator"></span>
146
+ <?php endif; ?>
147
+ </a>
148
+ <?php endif; ?>
149
+ <?php if ( isset( $elem['tutorial'] ) ) : ?>
150
+ <a class="pa-element-link" href="<?php echo esc_url( $elem['tutorial'] ); ?>" target="_blank">
151
+ <?php echo __( 'Video Tutorial', 'premium-addons-for-elementor' ); ?>
152
+ </a>
153
+ <?php endif; ?>
154
+ </div>
155
+ <div>
156
+ <?php
157
+ if ( isset( $elem['draw_svg'] ) ) :
158
+ $svg_key = 'svg_' . $elem['key'];
159
+ ?>
160
+ <input type="checkbox" id="<?php echo esc_attr( $svg_key ); ?>" name="<?php echo esc_attr( $svg_key ); ?>" <?php echo checked( 1, $enabled_elements[ $svg_key ], false ); ?>>
161
+ <label for="<?php echo esc_attr( $svg_key ); ?>"></label>
162
+ <span><?php _e( 'Enable SVG Draw', 'premium-addons-for-elementor' ); ?></span>
163
+ <?php endif; ?>
164
+ </div>
165
+ </div>
166
+ <?php endif; ?>
167
+ </div>
168
+ </div>
169
+ <label class="switch">
170
+ <input type="checkbox" id="<?php echo esc_attr( $elem['key'] ); ?>" name="<?php echo esc_attr( $elem['key'] ); ?>" <?php echo $status; ?>>
171
+ <span class="<?php echo esc_attr( $switcher_class ); ?>"></span>
172
+ </label>
173
+ </div>
174
+ <?php endforeach; ?>
175
+ </div>
176
+ </div>
177
+ <?php endif; ?>
178
+ <?php endforeach; ?>
179
+ </div>
180
+
181
+ </div>
182
+ </form> <!-- End Form -->
183
+ </div>
184
+ </div>
185
+ </div> <!-- End Section Content -->
assets/editor/css/style.css CHANGED
@@ -1,542 +1,572 @@
1
- @font-face {
2
- font-family: "pa-elements";
3
- src: url("../fonts/pa-elements.eot?vcwy2s");
4
- src: url("../fonts/pa-elements.eot?vcwy2s#iefix") format("embedded-opentype"),
5
- url("../fonts/pa-elements.ttf?vcwy2s") format("truetype"),
6
- url("../fonts/pa-elements.woff?vcwy2s") format("woff"),
7
- url("../fonts/pa-elements.svg?vcwy2s#pa-elements") format("svg");
8
- font-weight: normal;
9
- font-style: normal;
10
- }
11
-
12
- .elementor-element .icon {
13
- position: relative;
14
- }
15
-
16
- [class^="pa-"],
17
- [class*=" pa-"] {
18
- /* use !important to prevent issues with browser extensions that change fonts */
19
- font-family: "pa-elements" !important;
20
- speak: none;
21
- font-style: normal;
22
- font-weight: normal;
23
- font-variant: normal;
24
- text-transform: none;
25
- line-height: 1;
26
- /* Better Font Rendering =========== */
27
- -webkit-font-smoothing: antialiased;
28
- -moz-osx-font-smoothing: grayscale;
29
- }
30
-
31
- #elementor-panel [class^="pa-"],
32
- #elementor-panel [class*=" pa-"] {
33
- font-size: 26px
34
- }
35
-
36
- /*
37
- * Icons Badge
38
- */
39
- #elementor-panel [class^="pa-"]::after,
40
- #elementor-panel [class*=" pa-"]::after {
41
- content: "PA";
42
- font-family: "Montserrat", Sans-serif;
43
- font-weight: 700;
44
- font-size: 10px;
45
- opacity: 0.4;
46
- position: absolute;
47
- right: 0.6em;
48
- top: 0.6em;
49
- padding: 1px;
50
- }
51
-
52
- .pa-dash-icon:before {
53
- content: "\e900";
54
- }
55
-
56
- .pa-banner:before {
57
- content: "\e904";
58
- }
59
-
60
- .pa-blog:before {
61
- content: "\e906";
62
- }
63
-
64
- .pa-button:before {
65
- content: "\e908";
66
- }
67
-
68
- .pa-carousel:before {
69
- content: "\e909";
70
- }
71
-
72
- .pa-contact-form:before {
73
- content: "\e90c";
74
- }
75
-
76
- .pa-countdown:before {
77
- content: "\e90e";
78
- }
79
-
80
- .pa-counter:before {
81
- content: "\e90f";
82
- }
83
-
84
- .pa-dual-header:before {
85
- content: "\e911";
86
- }
87
-
88
- .pa-fancy-text:before {
89
- content: "\e914";
90
- }
91
-
92
- .pa-maps:before {
93
- content: "\e915";
94
- }
95
-
96
- .pa-grid-icon:before {
97
- content: "\e927";
98
- }
99
-
100
- .pa-image-button:before {
101
- content: "\e91d";
102
- }
103
-
104
- .pa-image-scroll:before {
105
- content: "\e921";
106
- }
107
-
108
- .pa-image-separator:before {
109
- content: "\e922";
110
- }
111
-
112
- .pa-lottie-animations:before {
113
- content: "\e924";
114
- }
115
-
116
- .pa-modal-box:before {
117
- content: "\e92a";
118
- }
119
-
120
- .pa-person:before {
121
- content: "\e931";
122
- }
123
-
124
- .pa-pricing-table:before {
125
- content: "\e92d";
126
- }
127
-
128
- .pa-progress-bar:before {
129
- content: "\e92e";
130
- }
131
-
132
- .pa-testimonials:before {
133
- content: "\e932";
134
- }
135
-
136
- .pa-title:before {
137
- content: "\e917";
138
- }
139
-
140
- .pa-vscroll:before {
141
- content: "\e935";
142
- }
143
-
144
- .pa-video-box:before {
145
- content: "\e936";
146
- }
147
-
148
- .pa-icon-list:before {
149
- content: "\e907";
150
- }
151
-
152
- .pa-woo-products:before {
153
- content: "\e939";
154
- }
155
-
156
- .pa-mega-menu:before {
157
- content: "\e928";
158
- }
159
-
160
- .editor-pa-doc {
161
- font-style: italic;
162
- line-height: 1.2;
163
- font-size: 12px;
164
- }
165
-
166
- .editor-pa-spacer {
167
- margin-top: 1.5em;
168
- }
169
-
170
- .editor-pa-color-control label.elementor-control-title {
171
- -webkit-box-flex: 0;
172
- -ms-flex-positive: 0;
173
- flex-grow: 0;
174
- }
175
-
176
- .elementor-panel .elementor-control-section_pa_docs .elementor-panel-heading-title.elementor-panel-heading-title,
177
- .elementor-control-raw-html.editor-pa-doc a {
178
- color: #0f6aa7;
179
- }
180
-
181
- .elementor-control-raw-html .premium-notice-bold {
182
- font-weight: bold;
183
- }
184
-
185
- #elementor-panel__editor__help__link[href^="https://premiumaddons.com/"]::before,
186
- #elementor-panel__editor__help__link[href*="PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv"]::before {
187
- content: "\e900";
188
- font-family: "pa-elements" !important;
189
- font-size: 20px;
190
- font-style: normal;
191
- font-weight: normal;
192
- font-variant: normal;
193
- text-transform: none;
194
- line-height: 1;
195
- -webkit-font-smoothing: antialiased;
196
- -moz-osx-font-smoothing: grayscale;
197
- margin: -1px 4px 0;
198
- }
199
-
200
- .pa-dash-icon {
201
- font-size: 11px !important;
202
- padding-right: 1px;
203
- }
204
-
205
- .elementor-update-preview.editor-pa-preview-update {
206
- margin: 0;
207
- margin-bottom: 8px;
208
- }
209
-
210
- /*
211
- * PRO Elements
212
- */
213
- .pa-pro-trust-reviews:before {
214
- content: "\e900";
215
- }
216
-
217
- .pa-pro-yelp-reviews:before {
218
- content: "\e93b";
219
- }
220
-
221
- .pa-pro-behance-feed:before {
222
- content: "\e905";
223
- }
224
-
225
- .pa-pro-charts:before {
226
- content: "\e90a";
227
- }
228
-
229
- .pa-pro-content-switcher:before {
230
- content: "\e90d";
231
- }
232
-
233
- .pa-pro-facebook-feed:before {
234
- content: "\e912";
235
- }
236
-
237
- .pa-pro-facebook-reviews:before {
238
- content: "\e913";
239
- }
240
-
241
- .pa-pro-flip-box:before {
242
- content: "\e919";
243
- }
244
-
245
- .pa-pro-floating-block:before {
246
- content: "\e906";
247
- }
248
-
249
- .pa-pro-google-reviews:before {
250
- content: "\e916";
251
- }
252
-
253
- .pa-pro-horizontal-scroll:before {
254
- content: "\e918";
255
- }
256
-
257
- .pa-pro-hot-spot:before {
258
- content: "\e91f";
259
- }
260
-
261
- .pa-pro-icon-box:before {
262
- content: "\e91a";
263
- }
264
-
265
- .pa-pro-ihover:before {
266
- content: "\e91b";
267
- }
268
-
269
- .pa-pro-image-accordion:before {
270
- content: "\e91c";
271
- }
272
-
273
- .pa-pro-image-comparison:before {
274
- content: "\e91e";
275
- }
276
-
277
- .pa-pro-image-layers:before {
278
- content: "\e920";
279
- }
280
-
281
- .pa-pro-instagram-feed:before {
282
- content: "\e923";
283
- }
284
-
285
- .pa-pro-magic-section:before {
286
- content: "\e926";
287
- }
288
-
289
- .pa-pro-messenger-chat:before {
290
- content: "\e929";
291
- }
292
-
293
- .pa-pro-multi-scroll:before {
294
- content: "\e92b";
295
- }
296
-
297
- .pa-pro-notification-bar:before {
298
- content: "\e902";
299
- }
300
-
301
- .pa-pro-preview-window:before {
302
- content: "\e92c";
303
- }
304
-
305
- .pa-pro-separator:before {
306
- content: "\e910";
307
- }
308
-
309
- .pa-pro-table:before {
310
- content: "\e92f";
311
- }
312
-
313
- .pa-pro-tabs:before {
314
- content: "\e930";
315
- }
316
-
317
- .pa-pro-twitter-feed:before {
318
- content: "\e933";
319
- }
320
-
321
- .pa-pro-unfold:before {
322
- content: "\e934";
323
- }
324
-
325
- .pa-pro-whatsapp:before {
326
- content: "\e938";
327
- }
328
-
329
- .pa-pro-color-transition:before {
330
- content: "\e903";
331
- }
332
-
333
- .pa-pro-svg-drawer:before {
334
- content: "\e93d";
335
- }
336
-
337
- .editor-pa-img {
338
- max-width: 50px;
339
- max-height: 50px;
340
- vertical-align: middle;
341
- }
342
-
343
- .premium-promotion-btn {
344
- background-color: #252c59 !important;
345
- width: 50% !important;
346
- }
347
-
348
- .premium-promotion-pro-btn {
349
- display: inline-block;
350
- text-align: center;
351
- background-color: #f47216;
352
- color: #fff;
353
- line-height: normal;
354
- }
355
-
356
- .premium-promotion-pro-btn:hover {
357
- color: #fff;
358
- }
359
-
360
- .premium-promotion-dialog .eicon-pro-icon {
361
- color: #f47216 !important;
362
- margin: 0 6px !important;
363
- }
364
-
365
- .premium-promotion-dialog .dialog-button {
366
- font-size: 10px !important;
367
- letter-spacing: 0.3px;
368
- width: calc(50% - 5px) !important;
369
- }
370
-
371
- html:not([dir="rtl"]) .premium-promotion-btn {
372
- margin-right: 5px;
373
- }
374
-
375
- html:not([dir="rtl"]) .premium-promotion-pro-btn {
376
- margin-left: 5px;
377
- }
378
-
379
- [dir="rtl"] .premium-promotion-pro-btn {
380
- margin-right: 5px;
381
- }
382
-
383
- [dir="rtl"] .premium-promotion-btn {
384
- margin-left: 5px;
385
- }
386
-
387
- .elementor-panel .premium-promotion-element>.elementor-element>.eicon-lock {
388
- right: auto;
389
- left: 0.6em;
390
- }
391
-
392
- .elementor-editor-active .tipsy-inner {
393
- line-height: 15px;
394
- }
395
-
396
- .papro-upgrade-notice {
397
- font-size: 12px;
398
- font-weight: 300;
399
- font-style: italic;
400
- line-height: 1.4;
401
- }
402
-
403
- /* Fix floating effect slider control number overlap issue */
404
- .elementor-slider .noUi-base .noUi-handle-upper .noUi-tooltip {
405
- top: -100%;
406
- }
407
-
408
-
409
- .papro-btn-block {
410
- width: 100% !important;
411
- margin: -10px 0 10px;
412
-
413
- }
414
-
415
- .elementor-template-pa-live-editor-modal-container {
416
- display: flex;
417
- }
418
-
419
- .premium-live-editor-iframe-modal {
420
- display: none;
421
- }
422
-
423
- .premium-dynamic-content-modal {
424
- -js-display: flex;
425
- display: -webkit-box;
426
- display: -webkit-flex;
427
- display: -moz-box;
428
- display: -ms-flexbox;
429
- display: flex;
430
- }
431
-
432
- .premium-live-editor-iframe-modal .elementor-templates-modal__header__logo__title {
433
- margin-right: 35px;
434
- }
435
-
436
- .premium-live-editor-iframe-modal .dialog-lightbox-header {
437
- background-color: #f1f3f5;
438
- }
439
-
440
- .premium-live-editor-iframe-modal .dialog-message {
441
- position: relative;
442
- }
443
-
444
- .premium-live-editor-iframe-modal iframe {
445
- position: absolute;
446
- top: 0;
447
- bottom: 0;
448
- right: 0;
449
- left: 0;
450
- width: 100%;
451
- height: 100%;
452
- }
453
-
454
- /* .premium-live-editor-iframe-modal .dialog-widget-content {
455
- margin-top: 10px;
456
- } */
457
-
458
- .premium-dynamic-content-modal .dialog-widget-content {
459
- position: static !important;
460
- max-width: 90% !important;
461
- border-radius: 0;
462
- /* margin-top: 20px !important;
463
- margin-bottom: 20px !important; */
464
- }
465
-
466
- .elementor-device-desktop #elementor-preview-responsive-wrapper {
467
- min-width: auto !important;
468
- }
469
-
470
- .premium-dynamic-content-modal .dialog-message {
471
- overflow: unset !important;
472
- }
473
-
474
- .premium-live-editor-iframe-modal {
475
- display: none;
476
- }
477
-
478
- .premium-live-editor-iframe-modal .elementor-templates-modal__header__close {
479
- margin-left: 15px;
480
- }
481
-
482
- /* .premium-live-editor-iframe-modal .dialog-widget-content {
483
- position: static !important;
484
- margin-top: 10px;
485
- } */
486
-
487
- #pa-live-editor-logo .premium-template-modal-header-logo-icon img {
488
- width: 30px;
489
- height: 30px;
490
- }
491
-
492
- #premium-live-temp-title {
493
- width: 400px;
494
- border-radius: 3px 0 0 3px;
495
- }
496
-
497
- .premium-live-temp-notice {
498
- margin: 0 10px;
499
- font-style: italic;
500
- font-weight: normal;
501
- text-transform: none;
502
- }
503
-
504
- #pa-insert-live-temp {
505
- white-space: nowrap;
506
- border-radius: 0 3px 3px 0;
507
- }
508
-
509
- #pa-insert-live-temp,
510
- #premium-live-temp-title {
511
- padding: 8px 10px;
512
- }
513
-
514
- .premium-live-editor-title {
515
- display: none;
516
- -webkit-box-align: center;
517
- -webkit-align-items: center;
518
- -moz-box-align: center;
519
- -ms-flex-align: center;
520
- align-items: center;
521
- }
522
-
523
- .premium-modal-expanded .dialog-lightbox-widget-content {
524
- max-width: 100% !important;
525
- margin: 0 !important;
526
- }
527
-
528
- .premium-modal-expanded .dialog-lightbox-message {
529
- max-height: 100vh;
530
- }
531
-
532
- .premium-modal-expanded #pa-live-editor-control-iframe {
533
- height: calc(100vh - 50px);
534
- }
535
-
536
- .premium-live-temp-title.control-hidden {
537
- display: none;
538
- }
539
-
540
- .premium-live-temp-label label {
541
- font-weight: 900;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
542
  }
1
+ @font-face {
2
+ font-family: "pa-elements";
3
+ src: url("../fonts/pa-elements.eot?vcwy2s");
4
+ src: url("../fonts/pa-elements.eot?vcwy2s#iefix") format("embedded-opentype"),
5
+ url("../fonts/pa-elements.ttf?vcwy2s") format("truetype"),
6
+ url("../fonts/pa-elements.woff?vcwy2s") format("woff"),
7
+ url("../fonts/pa-elements.svg?vcwy2s#pa-elements") format("svg");
8
+ font-weight: normal;
9
+ font-style: normal;
10
+ }
11
+
12
+ .elementor-element .icon {
13
+ position: relative;
14
+ }
15
+
16
+ [class^="pa-"],
17
+ [class*=" pa-"] {
18
+ /* use !important to prevent issues with browser extensions that change fonts */
19
+ font-family: "pa-elements" !important;
20
+ speak: none;
21
+ font-style: normal;
22
+ font-weight: normal;
23
+ font-variant: normal;
24
+ text-transform: none;
25
+ line-height: 1;
26
+ /* Better Font Rendering =========== */
27
+ -webkit-font-smoothing: antialiased;
28
+ -moz-osx-font-smoothing: grayscale;
29
+ }
30
+
31
+ #elementor-panel [class^="pa-"],
32
+ #elementor-panel [class*=" pa-"] {
33
+ font-size: 26px
34
+ }
35
+
36
+ /*
37
+ * Icons Badge
38
+ */
39
+ #elementor-panel [class^="pa-"]::after,
40
+ #elementor-panel [class*=" pa-"]::after {
41
+ content: "PA";
42
+ font-family: "Montserrat", Sans-serif;
43
+ font-weight: 700;
44
+ font-size: 10px;
45
+ opacity: 0.4;
46
+ position: absolute;
47
+ right: 0.6em;
48
+ top: 0.6em;
49
+ padding: 1px;
50
+ }
51
+
52
+ .pa-dash-icon:before {
53
+ content: "\e900";
54
+ }
55
+
56
+ .pa-banner:before {
57
+ content: "\e904";
58
+ }
59
+
60
+ .pa-blog:before {
61
+ content: "\e906";
62
+ }
63
+
64
+ .pa-button:before {
65
+ content: "\e908";
66
+ }
67
+
68
+ .pa-carousel:before {
69
+ content: "\e909";
70
+ }
71
+
72
+ .pa-contact-form:before {
73
+ content: "\e90c";
74
+ }
75
+
76
+ .pa-countdown:before {
77
+ content: "\e90e";
78
+ }
79
+
80
+ .pa-counter:before {
81
+ content: "\e90f";
82
+ }
83
+
84
+ .pa-dual-header:before {
85
+ content: "\e911";
86
+ }
87
+
88
+ .pa-fancy-text:before {
89
+ content: "\e914";
90
+ }
91
+
92
+ .pa-maps:before {
93
+ content: "\e915";
94
+ }
95
+
96
+ .pa-grid-icon:before {
97
+ content: "\e927";
98
+ }
99
+
100
+ .pa-image-button:before {
101
+ content: "\e91d";
102
+ }
103
+
104
+ .pa-image-scroll:before {
105
+ content: "\e921";
106
+ }
107
+
108
+ .pa-image-separator:before {
109
+ content: "\e922";
110
+ }
111
+
112
+ .pa-lottie-animations:before {
113
+ content: "\e924";
114
+ }
115
+
116
+ .pa-modal-box:before {
117
+ content: "\e92a";
118
+ }
119
+
120
+ .pa-person:before {
121
+ content: "\e931";
122
+ }
123
+
124
+ .pa-pricing-table:before {
125
+ content: "\e92d";
126
+ }
127
+
128
+ .pa-progress-bar:before {
129
+ content: "\e92e";
130
+ }
131
+
132
+ .pa-testimonials:before {
133
+ content: "\e932";
134
+ }
135
+
136
+ .pa-title:before {
137
+ content: "\e917";
138
+ }
139
+
140
+ .pa-vscroll:before {
141
+ content: "\e935";
142
+ }
143
+
144
+ .pa-video-box:before {
145
+ content: "\e936";
146
+ }
147
+
148
+ .pa-icon-list:before {
149
+ content: "\e907";
150
+ }
151
+
152
+ .pa-woo-products:before {
153
+ content: "\e939";
154
+ }
155
+
156
+ .pa-mega-menu:before {
157
+ content: "\e928";
158
+ }
159
+
160
+ .editor-pa-doc {
161
+ font-style: italic;
162
+ line-height: 1.2;
163
+ font-size: 12px;
164
+ }
165
+
166
+ .editor-pa-spacer {
167
+ margin-top: 1.5em;
168
+ }
169
+
170
+ .editor-pa-icon-control .elementor-control-icons--inline__none {
171
+ display: none;
172
+ }
173
+
174
+ .editor-pa-icon-control .elementor-control-icons--inline__icon {
175
+ min-width: 50px;
176
+ }
177
+
178
+ .editor-pa-color-control label.elementor-control-title {
179
+ -webkit-box-flex: 0;
180
+ -ms-flex-positive: 0;
181
+ flex-grow: 0;
182
+ }
183
+
184
+ .elementor-control.editor-pa-control-disabled {
185
+ padding-top: 15px;
186
+ background: rgba(230, 233, 236, 0.5);
187
+ pointer-events: none;
188
+ }
189
+
190
+ .elementor-control.editor-pa-control-notice {
191
+ padding-left: 0 !important;
192
+ padding-right: 0 !important;
193
+ }
194
+
195
+ /* .editor-pa-control-disabled::before {
196
+ position: absolute;
197
+ content: '';
198
+ top: 0;
199
+ left: 0;
200
+ width: 100%;
201
+ height: calc(100%);
202
+ background: rgba(230, 233, 236, 0.5);
203
+ z-index: 1;
204
+ } */
205
+
206
+ .elementor-panel .elementor-control-section_pa_docs .elementor-panel-heading-title.elementor-panel-heading-title,
207
+ .elementor-control-raw-html.editor-pa-doc a {
208
+ color: #0f6aa7;
209
+ }
210
+
211
+ .elementor-control-raw-html .premium-notice-bold {
212
+ font-weight: bold;
213
+ }
214
+
215
+ #elementor-panel__editor__help__link[href^="https://premiumaddons.com/"]::before,
216
+ #elementor-panel__editor__help__link[href*="PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv"]::before {
217
+ content: "\e900";
218
+ font-family: "pa-elements" !important;
219
+ font-size: 20px;
220
+ font-style: normal;
221
+ font-weight: normal;
222
+ font-variant: normal;
223
+ text-transform: none;
224
+ line-height: 1;
225
+ -webkit-font-smoothing: antialiased;
226
+ -moz-osx-font-smoothing: grayscale;
227
+ margin: -1px 4px 0;
228
+ }
229
+
230
+ .pa-dash-icon {
231
+ font-size: 11px !important;
232
+ padding-right: 1px;
233
+ }
234
+
235
+ .elementor-update-preview.editor-pa-preview-update {
236
+ margin: 0;
237
+ margin-bottom: 8px;
238
+ }
239
+
240
+ /*
241
+ * PRO Elements
242
+ */
243
+ .pa-pro-trust-reviews:before {
244
+ content: "\e900";
245
+ }
246
+
247
+ .pa-pro-yelp-reviews:before {
248
+ content: "\e93b";
249
+ }
250
+
251
+ .pa-pro-behance-feed:before {
252
+ content: "\e905";
253
+ }
254
+
255
+ .pa-pro-charts:before {
256
+ content: "\e90a";
257
+ }
258
+
259
+ .pa-pro-content-switcher:before {
260
+ content: "\e90d";
261
+ }
262
+
263
+ .pa-pro-facebook-feed:before {
264
+ content: "\e912";
265
+ }
266
+
267
+ .pa-pro-facebook-reviews:before {
268
+ content: "\e913";
269
+ }
270
+
271
+ .pa-pro-flip-box:before {
272
+ content: "\e919";
273
+ }
274
+
275
+ .pa-pro-floating-block:before {
276
+ content: "\e906";
277
+ }
278
+
279
+ .pa-pro-google-reviews:before {
280
+ content: "\e916";
281
+ }
282
+
283
+ .pa-pro-horizontal-scroll:before {
284
+ content: "\e918";
285
+ }
286
+
287
+ .pa-pro-hot-spot:before {
288
+ content: "\e91f";
289
+ }
290
+
291
+ .pa-pro-icon-box:before {
292
+ content: "\e91a";
293
+ }
294
+
295
+ .pa-pro-ihover:before {
296
+ content: "\e91b";
297
+ }
298
+
299
+ .pa-pro-image-accordion:before {
300
+ content: "\e91c";
301
+ }
302
+
303
+ .pa-pro-image-comparison:before {
304
+ content: "\e91e";
305
+ }
306
+
307
+ .pa-pro-image-layers:before {
308
+ content: "\e920";
309
+ }
310
+
311
+ .pa-pro-instagram-feed:before {
312
+ content: "\e923";
313
+ }
314
+
315
+ .pa-pro-magic-section:before {
316
+ content: "\e926";
317
+ }
318
+
319
+ .pa-pro-messenger-chat:before {
320
+ content: "\e929";
321
+ }
322
+
323
+ .pa-pro-multi-scroll:before {
324
+ content: "\e92b";
325
+ }
326
+
327
+ .pa-pro-notification-bar:before {
328
+ content: "\e902";
329
+ }
330
+
331
+ .pa-pro-preview-window:before {
332
+ content: "\e92c";
333
+ }
334
+
335
+ .pa-pro-separator:before {
336
+ content: "\e910";
337
+ }
338
+
339
+ .pa-pro-table:before {
340
+ content: "\e92f";
341
+ }
342
+
343
+ .pa-pro-tabs:before {
344
+ content: "\e930";
345
+ }
346
+
347
+ .pa-pro-twitter-feed:before {
348
+ content: "\e933";
349
+ }
350
+
351
+ .pa-pro-unfold:before {
352
+ content: "\e934";
353
+ }
354
+
355
+ .pa-pro-whatsapp:before {
356
+ content: "\e938";
357
+ }
358
+
359
+ .pa-pro-color-transition:before {
360
+ content: "\e903";
361
+ }
362
+
363
+ .pa-pro-svg-drawer:before {
364
+ content: "\e93d";
365
+ }
366
+
367
+ .editor-pa-img {
368
+ max-width: 50px;
369
+ max-height: 50px;
370
+ vertical-align: middle;
371
+ }
372
+
373
+ .premium-promotion-btn {
374
+ background-color: #252c59 !important;
375
+ width: 50% !important;
376
+ }
377
+
378
+ .premium-promotion-pro-btn {
379
+ display: inline-block;
380
+ text-align: center;
381
+ background-color: #f47216;
382
+ color: #fff;
383
+ line-height: normal;
384
+ }
385
+
386
+ .premium-promotion-pro-btn:hover {
387
+ color: #fff;
388
+ }
389
+
390
+ .premium-promotion-dialog .eicon-pro-icon {
391
+ color: #f47216 !important;
392
+ margin: 0 6px !important;
393
+ }
394
+
395
+ .premium-promotion-dialog .dialog-button {
396
+ font-size: 10px !important;
397
+ letter-spacing: 0.3px;
398
+ width: calc(50% - 5px) !important;
399
+ }
400
+
401
+ html:not([dir="rtl"]) .premium-promotion-btn {
402
+ margin-right: 5px;
403
+ }
404
+
405
+ html:not([dir="rtl"]) .premium-promotion-pro-btn {
406
+ margin-left: 5px;
407
+ }
408
+
409
+ [dir="rtl"] .premium-promotion-pro-btn {
410
+ margin-right: 5px;
411
+ }
412
+
413
+ [dir="rtl"] .premium-promotion-btn {
414
+ margin-left: 5px;
415
+ }
416
+
417
+ .elementor-panel .premium-promotion-element>.elementor-element>.eicon-lock {
418
+ right: auto;
419
+ left: 0.6em;
420
+ }
421
+
422
+ .elementor-editor-active .tipsy-inner {
423
+ line-height: 15px;
424
+ }
425
+
426
+ .papro-upgrade-notice {
427
+ font-size: 12px;
428
+ font-weight: 300;
429
+ font-style: italic;
430
+ line-height: 1.4;
431
+ }
432
+
433
+ /* Fix floating effect slider control number overlap issue */
434
+ .elementor-slider .noUi-base .noUi-handle-upper .noUi-tooltip {
435
+ top: -100%;
436
+ }
437
+
438
+
439
+ .papro-btn-block {
440
+ width: 100% !important;
441
+ margin: -10px 0 10px;
442
+
443
+ }
444
+
445
+ .elementor-template-pa-live-editor-modal-container {
446
+ display: flex;
447
+ }
448
+
449
+ .premium-live-editor-iframe-modal {
450
+ display: none;
451
+ }
452
+
453
+ .premium-dynamic-content-modal {
454
+ -js-display: flex;
455
+ display: -webkit-box;
456
+ display: -webkit-flex;
457
+ display: -moz-box;
458
+ display: -ms-flexbox;
459
+ display: flex;
460
+ }
461
+
462
+ .premium-live-editor-iframe-modal .elementor-templates-modal__header__logo__title {
463
+ margin-right: 35px;
464
+ }
465
+
466
+ .premium-live-editor-iframe-modal .dialog-lightbox-header {
467
+ background-color: #f1f3f5;
468
+ }
469
+
470
+ .premium-live-editor-iframe-modal .dialog-message {
471
+ position: relative;
472
+ }
473
+
474
+ .premium-live-editor-iframe-modal iframe {
475
+ position: absolute;
476
+ top: 0;
477
+ bottom: 0;
478
+ right: 0;
479
+ left: 0;
480
+ width: 100%;
481
+ height: 100%;
482
+ }
483
+
484
+ /* .premium-live-editor-iframe-modal .dialog-widget-content {
485
+ margin-top: 10px;
486
+ } */
487
+
488
+ .premium-dynamic-content-modal .dialog-widget-content {
489
+ position: static !important;
490
+ max-width: 90% !important;
491
+ border-radius: 0;
492
+ /* margin-top: 20px !important;
493
+ margin-bottom: 20px !important; */
494
+ }
495
+
496
+ .elementor-device-desktop #elementor-preview-responsive-wrapper {
497
+ min-width: auto !important;
498
+ }
499
+
500
+ .premium-dynamic-content-modal .dialog-message {
501
+ overflow: unset !important;
502
+ }
503
+
504
+ .premium-live-editor-iframe-modal {
505
+ display: none;
506
+ }
507
+
508
+ .premium-live-editor-iframe-modal .elementor-templates-modal__header__close {
509
+ margin-left: 15px;
510
+ }
511
+
512
+ /* .premium-live-editor-iframe-modal .dialog-widget-content {
513
+ position: static !important;
514
+ margin-top: 10px;
515
+ } */
516
+
517
+ #pa-live-editor-logo .premium-template-modal-header-logo-icon img {
518
+ width: 30px;
519
+ height: 30px;
520
+ }
521
+
522
+ #premium-live-temp-title {
523
+ width: 400px;
524
+ border-radius: 3px 0 0 3px;
525
+ }
526
+
527
+ .premium-live-temp-notice {
528
+ margin: 0 10px;
529
+ font-style: italic;
530
+ font-weight: normal;
531
+ text-transform: none;
532
+ }
533
+
534
+ #pa-insert-live-temp {
535
+ white-space: nowrap;
536
+ border-radius: 0 3px 3px 0;
537
+ }
538
+
539
+ #pa-insert-live-temp,
540
+ #premium-live-temp-title {
541
+ padding: 8px 10px;
542
+ }
543
+
544
+ .premium-live-editor-title {
545
+ display: none;
546
+ -webkit-box-align: center;
547
+ -webkit-align-items: center;
548
+ -moz-box-align: center;
549
+ -ms-flex-align: center;
550
+ align-items: center;
551
+ }
552
+
553
+ .premium-modal-expanded .dialog-lightbox-widget-content {
554
+ max-width: 100% !important;
555
+ margin: 0 !important;
556
+ }
557
+
558
+ .premium-modal-expanded .dialog-lightbox-message {
559
+ max-height: 100vh;
560
+ }
561
+
562
+ .premium-modal-expanded #pa-live-editor-control-iframe {
563
+ height: calc(100vh - 50px);
564
+ }
565
+
566
+ .premium-live-temp-title.control-hidden {
567
+ display: none;
568
+ }
569
+
570
+ .premium-live-temp-label label {
571
+ font-weight: 900;
572
  }
assets/editor/templates/js/editor.js CHANGED
@@ -980,7 +980,19 @@
980
  return keywords;
981
  },
982
 
983
- showTemplatesModal: function () {
 
 
 
 
 
 
 
 
 
 
 
 
984
 
985
  this.getModal().show();
986
 
980
  return keywords;
981
  },
982
 
983
+ showTemplatesModal: function (_this) {
984
+
985
+ var $this = $(_this.target),
986
+ $section = $this.closest('.elementor-add-section').prev(".elementor-top-section"),
987
+ modelID = $section.data('model-cid');
988
+
989
+ if (elementor.previewView.collection.length) {
990
+ $.each(elementor.previewView.collection.models, function (index, model) {
991
+ if (modelID === model.cid) {
992
+ PremiumEditor.atIndex = index + 1;
993
+ }
994
+ });
995
+ }
996
 
997
  this.getModal().show();
998
 
assets/frontend/css/common-rtl.css CHANGED
@@ -270,6 +270,25 @@
270
  height: 0;
271
  }
272
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
273
  /**Animation*/
274
  @-webkit-keyframes spin {
275
  0% {
270
  height: 0;
271
  }
272
 
273
+ /*
274
+ Common SVG Draw
275
+ premium-svg-drawer not prefixed with 'svg'
276
+ because it's rendered as div with custom SVG code.
277
+ */
278
+ .premium-svg-nodraw *,
279
+ .premium-svg-drawer * {
280
+ -webkit-transition: all 0.3s ease-in-out;
281
+ transition: all 0.3s ease-in-out;
282
+ -webkit-transition-property: stroke, fill, background-color;
283
+ transition-property: stroke, fill, background-color;
284
+ }
285
+
286
+ .premium-svg-nodraw .no-transition,
287
+ .premium-svg-drawer .no-transition {
288
+ -webkit-transition: none !important;
289
+ transition: none !important;
290
+ }
291
+
292
  /**Animation*/
293
  @-webkit-keyframes spin {
294
  0% {
assets/frontend/css/common.css CHANGED
@@ -2,32 +2,37 @@
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;
@@ -36,222 +41,302 @@
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; }
 
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;
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 Buttons 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
+ left: 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
  /** Loader */
274
  .premium-loader {
275
+ border: 3px solid #f3f3f3;
276
+ border-top-width: 3px;
277
+ border-top-style: solid;
278
+ border-top-color: #f3f3f3;
279
+ -webkit-border-radius: 50%;
280
+ border-radius: 50%;
281
+ border-top: 3px solid;
282
+ border-top-color: #bbb;
283
+ width: 30px;
284
+ height: 30px;
285
+ -webkit-animation: spin 2s linear infinite;
286
+ animation: spin 2s linear infinite;
287
+ margin: 0 auto;
288
+ }
289
+
290
+ /*
291
+ Common SVG Draw
292
+ premium-svg-drawer not prefixed with 'svg'
293
+ because it's rendered as div with custom SVG code.
294
+ */
295
+ .premium-svg-nodraw *,
296
+ .premium-svg-drawer * {
297
+ -webkit-transition: all 0.3s ease-in-out;
298
+ transition: all 0.3s ease-in-out;
299
+ -webkit-transition-property: stroke, fill, background-color;
300
+ transition-property: stroke, fill, background-color;
301
+ }
302
+
303
+ .premium-svg-nodraw .no-transition,
304
+ .premium-svg-drawer .no-transition {
305
+ -webkit-transition: none !important;
306
+ transition: none !important;
307
+ }
308
 
309
  /** Common Animation */
310
  @-webkit-keyframes spin {
311
+ 0% {
312
+ -webkit-transform: rotate(0deg);
313
+ transform: rotate(0deg);
314
+ }
315
+
316
+ 100% {
317
+ -webkit-transform: rotate(360deg);
318
+ transform: rotate(360deg);
319
+ }
320
+ }
321
+
322
  @keyframes spin {
323
+ 0% {
324
+ -webkit-transform: rotate(0deg);
325
+ transform: rotate(0deg);
326
+ }
327
+
328
+ 100% {
329
+ -webkit-transform: rotate(360deg);
330
+ transform: rotate(360deg);
331
+ }
332
+ }
333
 
334
  /**Notice*/
335
  .premium-error-notice {
336
+ width: 100%;
337
+ padding: 10px;
338
+ color: #b94a48;
339
+ background-color: #f2dede;
340
+ border-color: #eed3d7;
341
+ text-align: center;
342
+ }
assets/frontend/css/premium-addons-rtl.css CHANGED
@@ -1,11 +1,13 @@
1
  @charset "UTF-8";
2
- @font-face {
3
- font-family: "pa-elements";
4
- src: url("../../editor/fonts/pa-elements.eot?vcwy2s");
5
- src: url("../../editor/fonts/pa-elements.eot?vcwy2s#iefix") format("embedded-opentype"), url("../../editor/fonts/pa-elements.ttf?vcwy2s") format("truetype"), url("../../editor/fonts/pa-elements.woff?vcwy2s") format("woff"), url("../../editor/fonts/pa-elements.svg?vcwy2s#pa-elements") format("svg");
6
- font-weight: normal;
7
- font-style: normal;
 
8
  }
 
9
  /**************** Premium Banner ****************/
10
  /************************************************/
11
  .elementor-widget-premium-addon-banner {
@@ -1485,6 +1487,7 @@
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 {
@@ -2305,552 +2308,554 @@
2305
  [dir="rtl"] .premium-blog-wrap.slick-slider .slick-track {
2306
  direction: ltr;
2307
  }
 
2308
  /**************** Premium Button ***********************/
2309
  /*******************************************************/
2310
  .premium-button {
2311
- -js-display: inline-flex;
2312
- display: -webkit-inline-box;
2313
- display: -webkit-inline-flex;
2314
- display: -moz-inline-box;
2315
- display: -ms-inline-flexbox;
2316
- display: inline-flex;
2317
- position: relative;
2318
- overflow: hidden;
2319
- -webkit-backface-visibility: hidden;
2320
- backface-visibility: hidden;
2321
- -webkit-transform: translate3d(0, 0, 0);
2322
- transform: translate3d(0, 0, 0);
2323
- cursor: pointer;
2324
- -webkit-transition: all 0.2s ease-in-out !important;
2325
- transition: all 0.2s ease-in-out !important;
2326
  }
2327
 
2328
  .premium-button-style1,
2329
  .premium-button-style2,
2330
  .premium-button-style5,
2331
  .premium-button-style7 {
2332
- display: inline-block;
2333
- vertical-align: middle;
2334
- -webkit-transform: perspective(1px) translateZ(0);
2335
- transform: perspective(1px) translateZ(0);
2336
- -webkit-box-shadow: 0 0 1px transparent;
2337
- box-shadow: 0 0 1px transparent;
2338
- position: relative;
2339
- -webkit-transition-property: color;
2340
- transition-property: color;
2341
- -webkit-transition-duration: 0.15s;
2342
- transition-duration: 0.15s;
2343
  }
2344
 
2345
  .premium-button-style1:before,
2346
  .premium-button-style2:before,
2347
  .premium-button-style5:before {
2348
- content: "";
2349
- position: absolute;
2350
- z-index: -1;
2351
- top: 0;
2352
- right: 0;
2353
- left: 0;
2354
- bottom: 0;
2355
- -webkit-transform: scaleY(0);
2356
- -ms-transform: scaleY(0);
2357
- transform: scaleY(0);
2358
- -webkit-transform-origin: 50% 0;
2359
- -ms-transform-origin: 50% 0;
2360
- transform-origin: 50% 0;
2361
- -webkit-transition-property: -webkit-transform;
2362
- transition-property: -webkit-transform;
2363
- transition-property: transform;
2364
- transition-property: transform, -webkit-transform;
2365
- -webkit-transition-duration: 0.15s;
2366
- transition-duration: 0.15s;
2367
- -webkit-transition-timing-function: ease-out;
2368
- transition-timing-function: ease-out;
2369
  }
2370
 
2371
  .premium-button-style5-radialin:before,
2372
  .premium-button-style5-radialout:before {
2373
- -webkit-transform-origin: 50%;
2374
- -ms-transform-origin: 50%;
2375
- transform-origin: 50%;
2376
- -webkit-border-radius: 100%;
2377
- border-radius: 100%;
2378
- -webkit-transform: scale(0);
2379
- -ms-transform: scale(0);
2380
- transform: scale(0);
2381
  }
2382
 
2383
  .premium-button-style5-radialin:before {
2384
- -webkit-transform: scale(2);
2385
- -ms-transform: scale(2);
2386
- transform: scale(2);
2387
  }
2388
 
2389
  .premium-button-style5-rectin:before {
2390
- -webkit-transform-origin: 50%;
2391
- -ms-transform-origin: 50%;
2392
- transform-origin: 50%;
2393
- -webkit-transform: scale(1);
2394
- -ms-transform: scale(1);
2395
- transform: scale(1);
2396
  }
2397
 
2398
  .premium-button-style5-rectout:before {
2399
- -webkit-transform-origin: 50%;
2400
- -ms-transform-origin: 50%;
2401
- transform-origin: 50%;
2402
- -webkit-transform: scale(0);
2403
- -ms-transform: scale(0);
2404
- transform: scale(0);
2405
  }
2406
 
2407
  .premium-button-style5-rectout:hover:before {
2408
- -webkit-transform: scale(1);
2409
- -ms-transform: scale(1);
2410
- transform: scale(1);
2411
  }
2412
 
2413
  .premium-button-style5-rectin:hover:before {
2414
- -webkit-transform: scale(0);
2415
- -ms-transform: scale(0);
2416
- transform: scale(0);
2417
  }
2418
 
2419
  .premium-button-style5-radialout:hover:before {
2420
- -webkit-transform: scale(2);
2421
- -ms-transform: scale(2);
2422
- transform: scale(2);
2423
  }
2424
 
2425
  .premium-button-style5-radialin:hover:before {
2426
- -webkit-transform: scale(0);
2427
- -ms-transform: scale(0);
2428
- transform: scale(0);
2429
  }
2430
 
2431
  .premium-button-style1-top:before {
2432
- -webkit-transform-origin: 50% 100%;
2433
- -ms-transform-origin: 50% 100%;
2434
- transform-origin: 50% 100%;
2435
  }
2436
 
2437
  .premium-button-style1-right:before {
2438
- -webkit-transform: scaleX(0);
2439
- -ms-transform: scaleX(0);
2440
- transform: scaleX(0);
2441
- -webkit-transform-origin: 100% 50%;
2442
- -ms-transform-origin: 100% 50%;
2443
- transform-origin: 100% 50%;
2444
  }
2445
 
2446
  .premium-button-style1-left:before {
2447
- -webkit-transform: scaleX(0);
2448
- -ms-transform: scaleX(0);
2449
- transform: scaleX(0);
2450
- -webkit-transform-origin: 0% 50%;
2451
- -ms-transform-origin: 0% 50%;
2452
- transform-origin: 0% 50%;
2453
  }
2454
 
2455
  .premium-button-style2-shutouthor:before,
2456
  .premium-button-style2-scshutoutver:before {
2457
- -webkit-transform: scaleY(0);
2458
- -ms-transform: scaleY(0);
2459
- transform: scaleY(0);
2460
- -webkit-transform-origin: 0% 50%;
2461
- -ms-transform-origin: 0% 50%;
2462
- transform-origin: 0% 50%;
2463
  }
2464
 
2465
  .premium-button-style2-shutoutver:before,
2466
  .premium-button-style2-scshutouthor:before {
2467
- -webkit-transform: scaleX(0);
2468
- -ms-transform: scaleX(0);
2469
- transform: scaleX(0);
2470
- -webkit-transform-origin: 50% 50%;
2471
- -ms-transform-origin: 50% 50%;
2472
- transform-origin: 50% 50%;
2473
  }
2474
 
2475
  .premium-button-style2-shutinhor:before {
2476
- -webkit-transform: scaleX(1);
2477
- -ms-transform: scaleX(1);
2478
- transform: scaleX(1);
2479
- -webkit-transform-origin: 50%;
2480
- -ms-transform-origin: 50%;
2481
- transform-origin: 50%;
2482
  }
2483
 
2484
  .premium-button-style2-shutinver:before {
2485
- -webkit-transform: scaleY(1);
2486
- -ms-transform: scaleY(1);
2487
- transform: scaleY(1);
2488
- -webkit-transform-origin: 50%;
2489
- -ms-transform-origin: 50%;
2490
- transform-origin: 50%;
2491
  }
2492
 
2493
  .premium-button-style1-bottom:hover:before,
2494
  .premium-button-style1-top:hover:before {
2495
- -webkit-transform: scaleY(1);
2496
- -ms-transform: scaleY(1);
2497
- transform: scaleY(1);
2498
  }
2499
 
2500
  .premium-button-style1-left:hover:before,
2501
  .premium-button-style1-right:hover:before,
2502
  .premium-button-style2-shutouthor:hover:before,
2503
  .premium-button-style2-shutoutver:hover:before {
2504
- -webkit-transform: scaleX(1);
2505
- -ms-transform: scaleX(1);
2506
- transform: scaleX(1);
2507
  }
2508
 
2509
  .premium-button-style2-shutinhor:hover:before {
2510
- -webkit-transform: scaleX(0);
2511
- -ms-transform: scaleX(0);
2512
- transform: scaleX(0);
2513
  }
2514
 
2515
  .premium-button-style2-shutinver:hover:before {
2516
- -webkit-transform: scaleY(0);
2517
- -ms-transform: scaleY(0);
2518
- transform: scaleY(0);
2519
  }
2520
 
2521
  .premium-button-style2-scshutouthor:hover:before {
2522
- -webkit-transform: scaleX(0.9);
2523
- -ms-transform: scaleX(0.9);
2524
- transform: scaleX(0.9);
2525
  }
2526
 
2527
  .premium-button-style2-scshutoutver:hover:before {
2528
- -webkit-transform: scaleY(0.8);
2529
- -ms-transform: scaleY(0.8);
2530
- transform: scaleY(0.8);
2531
  }
2532
 
2533
  /*Diagonal*/
2534
  .premium-button-style2-dshutinhor:before {
2535
- top: 50%;
2536
- right: 50%;
2537
- width: 120%;
2538
- height: 0%;
2539
- -webkit-transform: translateX(50%) translateY(-50%) rotate(45deg);
2540
- -ms-transform: translateX(50%) translateY(-50%) rotate(45deg);
2541
- transform: translateX(50%) translateY(-50%) rotate(45deg);
2542
- -webkit-transform-origin: 50%;
2543
- -ms-transform-origin: 50%;
2544
- transform-origin: 50%;
2545
- -webkit-transition-property: all;
2546
- transition-property: all;
2547
  }
2548
 
2549
  .premium-button-style2-dshutinver:before {
2550
- top: 50%;
2551
- right: 50%;
2552
- width: 120%;
2553
- height: 0%;
2554
- -webkit-transform-origin: 50%;
2555
- -ms-transform-origin: 50%;
2556
- transform-origin: 50%;
2557
- -webkit-transition-property: all;
2558
- transition-property: all;
2559
- -webkit-transform: translateX(50%) translateY(-50%) rotate(-45deg);
2560
- -ms-transform: translateX(50%) translateY(-50%) rotate(-45deg);
2561
- transform: translateX(50%) translateY(-50%) rotate(-45deg);
2562
  }
2563
 
2564
  .premium-button-style2-dshutinhor:hover:before,
2565
  .premium-button-style2-dshutinver:hover:before {
2566
- height: 220%;
2567
  }
2568
 
2569
  .premium-button-style3-before i,
2570
  .premium-button-style3-before svg {
2571
- opacity: 0;
2572
- -webkit-transform: translateX(5px);
2573
- -ms-transform: translateX(5px);
2574
- transform: translateX(5px);
2575
- -webkit-transition: all 0.5s ease-in-out;
2576
- transition: all 0.5s ease-in-out;
2577
  }
2578
 
2579
  .premium-button-style3-after i,
2580
  .premium-button-style3-after svg {
2581
- opacity: 0;
2582
- -webkit-transform: translateX(5px);
2583
- -ms-transform: translateX(5px);
2584
- transform: translateX(5px);
2585
- -webkit-transition: all 0.5s ease-in-out;
2586
- transition: all 0.5s ease-in-out;
2587
- -webkit-transform: translateX(-5px);
2588
- -ms-transform: translateX(-5px);
2589
- transform: translateX(-5px);
2590
  }
2591
 
2592
  .premium-button-style3-after:hover i,
2593
  .premium-button-style3-after:hover svg {
2594
- opacity: 1;
2595
  }
2596
 
2597
  .premium-button-style3-before:hover i,
2598
  .premium-button-style3-before:hover svg {
2599
- opacity: 1;
2600
  }
2601
 
2602
  .premium-button-text-icon-wrapper {
2603
- width: 100%;
2604
- -js-display: flex;
2605
- display: -webkit-box;
2606
- display: -webkit-flex;
2607
- display: -moz-box;
2608
- display: -ms-flexbox;
2609
- display: flex;
2610
- -webkit-box-pack: center;
2611
- -webkit-justify-content: center;
2612
- -moz-box-pack: center;
2613
- -ms-flex-pack: center;
2614
- justify-content: center;
2615
- -webkit-box-align: center;
2616
- -webkit-align-items: center;
2617
- -moz-box-align: center;
2618
- -ms-flex-align: center;
2619
- align-items: center;
2620
- -webkit-transition: all 0.2s ease-in-out;
2621
- transition: all 0.2s ease-in-out;
2622
  }
2623
 
2624
  .premium-button-text-icon-wrapper span,
2625
  .premium-button-text-icon-wrapper i,
2626
  .premium-button-text-icon-wrapper svg {
2627
- -webkit-transition: all 0.2s ease-in-out;
2628
- transition: all 0.2s ease-in-out;
2629
  }
2630
 
2631
  .premium-button-style4-icon-wrapper {
2632
- position: absolute;
2633
- z-index: 2;
2634
- width: 100%;
2635
- text-align: center;
2636
- -js-display: flex;
2637
- display: -webkit-box;
2638
- display: -webkit-flex;
2639
- display: -moz-box;
2640
- display: -ms-flexbox;
2641
- display: flex;
2642
- -webkit-box-align: center;
2643
- -webkit-align-items: center;
2644
- -moz-box-align: center;
2645
- -ms-flex-align: center;
2646
- align-items: center;
2647
- -webkit-box-pack: center;
2648
- -webkit-justify-content: center;
2649
- -moz-box-pack: center;
2650
- -ms-flex-pack: center;
2651
- justify-content: center;
2652
- height: 100%;
2653
- opacity: 0;
2654
- -webkit-transition: all 0.3s ease-in-out;
2655
- transition: all 0.3s ease-in-out;
2656
  }
2657
 
2658
  .premium-button-style4-icon-wrapper.top {
2659
- bottom: -100%;
2660
- right: 0;
2661
  }
2662
 
2663
  .premium-button-style4-icon-wrapper.bottom {
2664
- top: -100%;
2665
- right: 0;
2666
  }
2667
 
2668
  .premium-button-style4-icon-wrapper.left {
2669
- top: 0;
2670
- right: -100%;
2671
  }
2672
 
2673
  .premium-button-style4-icon-wrapper.right {
2674
- top: 0;
2675
- left: -100%;
2676
  }
2677
 
2678
  .premium-button-style4-bottom:hover .premium-button-style4-icon-wrapper {
2679
- top: 0;
2680
- opacity: 1;
2681
  }
2682
 
2683
  .premium-button-style4-top:hover .premium-button-style4-icon-wrapper {
2684
- bottom: 0;
2685
- opacity: 1;
2686
  }
2687
 
2688
  .premium-button-style4-left:hover .premium-button-style4-icon-wrapper {
2689
- right: 0;
2690
- opacity: 1;
2691
  }
2692
 
2693
  .premium-button-style4-right:hover .premium-button-style4-icon-wrapper {
2694
- left: 0;
2695
- opacity: 1;
2696
  }
2697
 
2698
  .premium-button-style4-bottom:hover .premium-button-text-icon-wrapper {
2699
- -webkit-transform: translateY(100%);
2700
- -ms-transform: translateY(100%);
2701
- transform: translateY(100%);
2702
- opacity: 0;
2703
  }
2704
 
2705
  .premium-button-style4-top:hover .premium-button-text-icon-wrapper {
2706
- -webkit-transform: translateY(-100%);
2707
- -ms-transform: translateY(-100%);
2708
- transform: translateY(-100%);
2709
- opacity: 0;
2710
  }
2711
 
2712
  .premium-button-style4-left:hover .premium-button-text-icon-wrapper {
2713
- -webkit-transform: translateX(-100%);
2714
- -ms-transform: translateX(-100%);
2715
- transform: translateX(-100%);
2716
- opacity: 0;
2717
  }
2718
 
2719
  .premium-button-style4-right:hover .premium-button-text-icon-wrapper {
2720
- -webkit-transform: translateX(100%);
2721
- -ms-transform: translateX(100%);
2722
- transform: translateX(100%);
2723
- opacity: 0;
2724
  }
2725
 
2726
  .premium-button-style6:before {
2727
- content: "";
2728
- position: absolute;
2729
- right: 50%;
2730
- top: 50%;
2731
- width: 100px;
2732
- height: 100px;
2733
- -webkit-border-radius: 100%;
2734
- border-radius: 100%;
2735
- -webkit-transform: translate(50%, -50%) scale(0);
2736
- -ms-transform: translate(50%, -50%) scale(0);
2737
- transform: translate(50%, -50%) scale(0);
2738
- -webkit-transition: all 0.3s ease-in-out;
2739
- transition: all 0.3s ease-in-out;
2740
  }
2741
 
2742
  .premium-button-style6:hover:before {
2743
- -webkit-transform: translate(50%, -50%) scale(3);
2744
- -ms-transform: translate(50%, -50%) scale(3);
2745
- transform: translate(50%, -50%) scale(3);
2746
  }
2747
 
2748
  .premium-button-style6 .premium-button-text-icon-wrapper {
2749
- position: relative;
2750
- z-index: 1;
2751
  }
2752
 
2753
  .premium-button-style7-right .premium-button-text-icon-wrapper:before,
2754
  .premium-button-style7-left .premium-button-text-icon-wrapper:before {
2755
- -webkit-transition: width 0.3s ease-out 0.15s;
2756
- transition: width 0.3s ease-out 0.15s;
2757
  }
2758
 
2759
  .premium-button-style7-right .premium-button-text-icon-wrapper:after,
2760
  .premium-button-style7-left .premium-button-text-icon-wrapper:after {
2761
- -webkit-transition: width 0.3s ease-out 0s;
2762
- transition: width 0.3s ease-out 0s;
2763
  }
2764
 
2765
  .premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
2766
  .premium-button-style7-top .premium-button-text-icon-wrapper:before {
2767
- -webkit-transition: height 0.3s ease-out 0.15s;
2768
- transition: height 0.3s ease-out 0.15s;
2769
  }
2770
 
2771
  .premium-button-style7-bottom .premium-button-text-icon-wrapper:after,
2772
  .premium-button-style7-top .premium-button-text-icon-wrapper:after {
2773
- -webkit-transition: height 0.3s ease-out 0s;
2774
- transition: height 0.3s ease-out 0s;
2775
  }
2776
 
2777
  .premium-button[class*="style7"]:hover .premium-button-text-icon-wrapper:before {
2778
- -webkit-transition-delay: 0s;
2779
- transition-delay: 0s;
2780
  }
2781
 
2782
  .premium-button[class*="style7"]:hover .premium-button-text-icon-wrapper:after {
2783
- -webkit-transition-delay: 0.15s;
2784
- transition-delay: 0.15s;
2785
  }
2786
 
2787
  .premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
2788
  .premium-button-style7-bottom .premium-button-text-icon-wrapper:after {
2789
- content: "";
2790
- position: absolute;
2791
- left: 0;
2792
- top: 0;
2793
- right: 0;
2794
- height: 0;
2795
- z-index: -1;
2796
  }
2797
 
2798
  .premium-button-style7-top .premium-button-text-icon-wrapper:after,
2799
  .premium-button-style7-top .premium-button-text-icon-wrapper:before {
2800
- content: "";
2801
- position: absolute;
2802
- left: 0;
2803
- bottom: 0;
2804
- right: 0;
2805
- height: 0;
2806
- z-index: -1;
2807
  }
2808
 
2809
  .premium-button-style7-right .premium-button-text-icon-wrapper:after,
2810
  .premium-button-style7-right .premium-button-text-icon-wrapper:before {
2811
- content: "";
2812
- position: absolute;
2813
- right: 0;
2814
- top: 0;
2815
- bottom: 0;
2816
- width: 0;
2817
- z-index: -1;
2818
  }
2819
 
2820
  .premium-button-style7-left .premium-button-text-icon-wrapper:after,
2821
  .premium-button-style7-left .premium-button-text-icon-wrapper:before {
2822
- content: "";
2823
- position: absolute;
2824
- left: 0;
2825
- top: 0;
2826
- bottom: 0;
2827
- width: 0;
2828
- z-index: -1;
2829
  }
2830
 
2831
  .premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:after,
2832
  .premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:before {
2833
- height: 100%;
2834
- top: 0;
2835
  }
2836
 
2837
  .premium-button-style7-top:hover .premium-button-text-icon-wrapper:after,
2838
  .premium-button-style7-top:hover .premium-button-text-icon-wrapper:before {
2839
- height: 100%;
2840
- bottom: 0;
2841
  }
2842
 
2843
  .premium-button-style7-left:hover .premium-button-text-icon-wrapper:after,
2844
  .premium-button-style7-left:hover .premium-button-text-icon-wrapper:before {
2845
- width: 100%;
2846
- left: 0;
2847
  }
2848
 
2849
  .premium-button-style7-right:hover .premium-button-text-icon-wrapper:after,
2850
  .premium-button-style7-right:hover .premium-button-text-icon-wrapper:before {
2851
- width: 100%;
2852
- right: 0;
2853
  }
 
2854
  /**************** Premium Carousel **************/
2855
  /************************************************/
2856
  .premium-carousel-wrapper a.carousel-arrow,
@@ -3034,806 +3039,812 @@
3034
  [dir="rtl"] .premium-carousel-inner .slick-slide {
3035
  float: right;
3036
  }
 
3037
  /**************** Premium Contact Form7 **********/
3038
  /*************************************************/
3039
  .premium-contact-form-anim-yes .wpcf7-span::after {
3040
- display: block;
3041
- height: 2px;
3042
- content: "";
3043
- top: -2px;
3044
- position: relative;
3045
- width: 0px;
3046
- -webkit-transition: all ease-in-out 0.3s;
3047
- transition: all ease-in-out 0.3s;
3048
  }
3049
 
3050
  .premium-contact-form-anim-yes .wpcf7-span.is-focused::after {
3051
- width: 100%;
3052
  }
3053
 
3054
  .premium-cf7-container input.wpcf7-submit {
3055
- -webkit-transition: all 0.3s ease-in-out;
3056
- transition: all 0.3s ease-in-out;
3057
  }
 
3058
  /************ Premium Countdown ************/
3059
  /*******************************************/
3060
  .premium-countdown {
3061
- -js-display: flex;
3062
- display: -webkit-box;
3063
- display: -webkit-flex;
3064
- display: -moz-box;
3065
- display: -ms-flexbox;
3066
- display: flex;
3067
- text-align: center;
3068
  }
3069
 
3070
  .countdown-row {
3071
- display: block;
3072
- text-align: center;
3073
  }
3074
 
3075
  .countdown .countdown-section {
3076
- display: inline-block;
3077
- max-width: 100%;
3078
- margin-bottom: 15px;
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-align: center;
3086
- -webkit-align-items: center;
3087
- -moz-box-align: center;
3088
- -ms-flex-align: center;
3089
- align-items: center;
3090
  }
3091
 
3092
  .countdown .countdown-section:last-child {
3093
- margin-left: 0;
3094
  }
3095
 
3096
  .countdown span.countdown-amount {
3097
- font-size: 70px;
3098
- line-height: 1;
3099
- padding: 40px;
3100
  }
3101
 
3102
  .countdown .pre_time-mid {
3103
- display: block;
3104
  }
3105
 
3106
  .premium-countdown-separator-yes .countdown_separator {
3107
- display: block;
3108
- margin: 0 50px;
3109
- font-size: 30px;
3110
  }
3111
 
3112
  .premium-countdown-separator-yes .countdown-row .countdown-section:last-child .countdown_separator,
3113
  .premium-countdown-separator-yes .premium-countdown-block:last-child .countdown_separator {
3114
- display: none;
3115
  }
3116
 
3117
  /**
3118
  * Digit and unit styles
3119
  */
3120
  .side .countdown-section .countdown-period {
3121
- vertical-align: bottom;
3122
  }
3123
 
3124
  .countdown .countdown-section .countdown-period {
3125
- font-size: 17px;
3126
- line-height: 3em;
3127
  }
3128
 
3129
  .side .countdown-section .countdown-amount,
3130
  .side .countdown-section .countdown-period {
3131
- display: inline-block;
3132
  }
3133
 
3134
  .side .countdown-section .countdown-amount {
3135
- margin-left: 5px;
3136
  }
3137
 
3138
  .down .countdown-section .countdown-amount,
3139
  .down .countdown-section .countdown-period {
3140
- display: block;
3141
  }
3142
 
3143
  /**
3144
  * Flip Layout
3145
  */
3146
  .premium-countdown-flip .premium-countdown-block {
3147
- text-align: center;
3148
- -js-display: inline-flex;
3149
- display: -webkit-inline-box;
3150
- display: -webkit-inline-flex;
3151
- display: -moz-inline-box;
3152
- display: -ms-inline-flexbox;
3153
- display: inline-flex;
3154
- -webkit-box-align: center;
3155
- -webkit-align-items: center;
3156
- -moz-box-align: center;
3157
- -ms-flex-align: center;
3158
- align-items: center;
3159
  }
3160
 
3161
  .premium-countdown-flip .premium-countdown-block:last-child {
3162
- margin-left: 0;
3163
  }
3164
 
3165
  .premium-countdown-flip .premium-countdown-label {
3166
- overflow: hidden;
3167
- color: #1a1a1a;
3168
- text-transform: uppercase;
3169
  }
3170
 
3171
  .premium-countdown-flip .premium-countdown-figure {
3172
- position: relative;
3173
- height: 110px;
3174
- width: 100px;
3175
- line-height: 107px;
3176
- background-color: #fff;
3177
- -webkit-border-radius: 10px;
3178
- border-radius: 10px;
3179
- -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset -2px 4px 0 0 rgba(255, 255, 255, 0.08);
3180
- box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset -2px 4px 0 0 rgba(255, 255, 255, 0.08);
3181
  }
3182
 
3183
  .premium-countdown-flip .premium-countdown-figure:last-child {
3184
- margin-left: 0;
3185
  }
3186
 
3187
  .premium-countdown-flip .premium-countdown-figure>span {
3188
- position: absolute;
3189
- right: 0;
3190
- left: 0;
3191
- margin: auto;
3192
- font-weight: 700;
3193
  }
3194
 
3195
  .premium-countdown-flip .premium-countdown-figure .top {
3196
- z-index: 3;
3197
- -webkit-transform-origin: 50% 100%;
3198
- -ms-transform-origin: 50% 100%;
3199
- transform-origin: 50% 100%;
3200
- -webkit-transform: perspective(200px);
3201
- transform: perspective(200px);
3202
- -webkit-backface-visibility: hidden;
3203
- backface-visibility: hidden;
3204
  }
3205
 
3206
  .premium-countdown-flip .premium-countdown-figure .bottom {
3207
- z-index: 1;
3208
  }
3209
 
3210
  .premium-countdown-flip .premium-countdown-figure .bottom::before {
3211
- content: "";
3212
- position: absolute;
3213
- display: block;
3214
- top: 0;
3215
- right: 0;
3216
- width: 100%;
3217
- height: 50%;
3218
- background-color: rgba(0, 0, 0, 0.02);
3219
- }
3220
-
3221
- .premium-countdown-flip .premium-countdown-figure .top-back {
3222
- -webkit-backface-visibility: hidden;
3223
- backface-visibility: hidden;
3224
- z-index: 4;
3225
- bottom: 0;
3226
- -webkit-transform-origin: 50% 0;
3227
- -ms-transform-origin: 50% 0;
3228
- transform-origin: 50% 0;
3229
- -webkit-transform: perspective(200px) rotateX(180deg);
3230
- transform: perspective(200px) rotateX(180deg);
3231
  }
3232
 
3233
  .premium-countdown-flip .premium-countdown-figure .top-back span {
3234
- position: absolute;
3235
- top: -100%;
3236
- right: 0;
3237
- left: 0;
3238
- margin: auto;
3239
  }
3240
 
3241
  .premium-countdown-flip .premium-countdown-figure .bottom-back {
3242
- z-index: 2;
3243
- top: 0;
3244
  }
3245
 
3246
  .premium-countdown-flip .premium-countdown-figure .bottom-back span {
3247
- position: absolute;
3248
- top: 0;
3249
- right: 0;
3250
- left: 0;
3251
- margin: auto;
3252
  }
3253
 
3254
  .premium-countdown-flip .premium-countdown-figure .top,
3255
  .premium-countdown-flip .premium-countdown-figure .bottom-back,
3256
  .premium-countdown-flip .premium-countdown-figure .top-back {
3257
- height: 50%;
3258
- overflow: hidden;
3259
- background-color: #f7f7f7;
3260
- -webkit-border-top-right-radius: 10px;
3261
- border-top-right-radius: 10px;
3262
- -webkit-border-top-left-radius: 10px;
3263
- border-top-left-radius: 10px;
3264
  }
3265
 
3266
  .premium-countdown-flip .premium-countdown-figure .top-back {
3267
- -webkit-border-bottom-right-radius: 10px;
3268
- border-bottom-right-radius: 10px;
3269
- -webkit-border-bottom-left-radius: 10px;
3270
- border-bottom-left-radius: 10px;
3271
  }
3272
 
3273
  .premium-countdown-flip .premium-countdown-figure .top::after,
3274
  .premium-countdown-flip .premium-countdown-figure .bottom-back::after {
3275
- content: "";
3276
- position: absolute;
3277
- z-index: -1;
3278
- right: 0;
3279
- bottom: 0;
3280
- width: 100%;
3281
- height: 100%;
3282
- border-bottom: 1px solid rgba(0, 0, 0, 0.1);
3283
  }
3284
 
3285
  .side .premium-countdown-figure,
3286
  .side .premium-countdown-label {
3287
- display: inline-block;
3288
  }
3289
 
3290
  .side .premium-countdown-figure {
3291
- margin-left: 5px;
3292
  }
3293
 
3294
  .down .premium-countdown-figure,
3295
  .down .premium-countdown-label {
3296
- display: block;
3297
  }
3298
 
3299
  .down .premium-countdown-label {
3300
- width: 100%;
3301
  }
 
3302
  /**************** Premium Counter ***************/
3303
  /************************************************/
3304
  .premium-counter-area {
3305
- padding: 10px 0;
3306
- -js-display: flex;
3307
- display: -webkit-box;
3308
- display: -webkit-flex;
3309
- display: -moz-box;
3310
- display: -ms-flexbox;
3311
- display: flex;
3312
- -webkit-box-pack: center;
3313
- -webkit-justify-content: center;
3314
- -moz-box-pack: center;
3315
- -ms-flex-pack: center;
3316
- justify-content: center;
3317
- -webkit-box-align: center;
3318
- -webkit-align-items: center;
3319
- -moz-box-align: center;
3320
- -ms-flex-align: center;
3321
- align-items: center;
3322
  }
3323
 
3324
  .premium-counter-area.top {
3325
- -webkit-box-orient: vertical;
3326
- -webkit-box-direction: normal;
3327
- -webkit-flex-direction: column;
3328
- -moz-box-orient: vertical;
3329
- -moz-box-direction: normal;
3330
- -ms-flex-direction: column;
3331
- flex-direction: column;
3332
  }
3333
 
3334
  .premium-counter-area.right {
3335
- -webkit-box-orient: horizontal;
3336
- -webkit-box-direction: reverse;
3337
- -webkit-flex-direction: row-reverse;
3338
- -moz-box-orient: horizontal;
3339
- -moz-box-direction: reverse;
3340
- -ms-flex-direction: row-reverse;
3341
- flex-direction: row-reverse;
3342
  }
3343
 
3344
  .premium-counter-area.right .premium-counter-icon {
3345
- padding-right: 20px;
3346
  }
3347
 
3348
  .premium-counter-area.left .premium-counter-icon {
3349
- padding-left: 20px;
3350
  }
3351
 
3352
  .premium-counter-area .premium-counter-icon .icon i.fa:before {
3353
- vertical-align: text-top;
3354
  }
3355
 
3356
  .premium-counter-area .premium-counter-icon span.icon {
3357
- text-align: center;
3358
- display: inline-block;
3359
- vertical-align: middle;
3360
  }
3361
 
3362
  .premium-counter-area .premium-counter-icon .circle {
3363
- -webkit-border-radius: 100%;
3364
- border-radius: 100%;
3365
  }
3366
 
3367
  .premium-counter-area .premium-counter-icon img,
3368
  .premium-counter-area .premium-counter-icon svg {
3369
- width: 80px;
3370
  }
3371
 
3372
  .premium-counter-area .premium-counter-icon .premium-counter-animation svg {
3373
- height: 80px;
3374
  }
3375
 
3376
  .premium-counter-area .premium-counter-title p {
3377
- padding: 0;
3378
- margin: 0;
3379
  }
3380
 
3381
  .premium-counter-area .premium-counter-value-wrap {
3382
- -js-display: flex;
3383
- display: -webkit-box;
3384
- display: -webkit-flex;
3385
- display: -moz-box;
3386
- display: -ms-flexbox;
3387
- display: flex;
3388
- -webkit-box-align: center;
3389
- -webkit-align-items: center;
3390
- -moz-box-align: center;
3391
- -ms-flex-align: center;
3392
- align-items: center;
3393
  }
3394
 
3395
  .premium-init-wrapper {
3396
- -js-display: flex;
3397
- display: -webkit-box;
3398
- display: -webkit-flex;
3399
- display: -moz-box;
3400
- display: -ms-flexbox;
3401
- display: flex;
3402
  }
3403
 
3404
  .premium-init-wrapper.row {
3405
- -webkit-box-align: center;
3406
- -webkit-align-items: center;
3407
- -moz-box-align: center;
3408
- -ms-flex-align: center;
3409
- align-items: center;
3410
  }
3411
 
3412
  .premium-init-wrapper.right {
3413
- text-align: right;
3414
  }
3415
 
3416
  span.icon.flex-width {
3417
- width: auto !important;
3418
- height: auto !important;
3419
  }
3420
 
3421
  .premium-counter-area .premium-counter-init {
3422
- font-size: 35px;
3423
  }
 
3424
  /**************** Premium Dual Heading *****************/
3425
  /*******************************************************/
3426
  .premium-dual-header-first-header,
3427
  .premium-dual-header-second-header {
3428
- position: relative;
3429
- padding: 0;
3430
- margin: 0;
3431
- display: inline-block;
3432
- -webkit-transform: translate(0, 0);
3433
- -ms-transform: translate(0, 0);
3434
- transform: translate(0, 0);
3435
  }
3436
 
3437
  .premium-dual-header-first-clip .premium-dual-header-first-span,
3438
  .premium-dual-header-second-clip {
3439
- -webkit-text-fill-color: transparent;
3440
- -webkit-background-clip: text;
3441
  }
3442
 
3443
  .premium-dual-header-first-clip.stroke .premium-dual-header-first-span,
3444
  .premium-dual-header-second-clip.stroke {
3445
- -webkit-text-stroke-color: transparent;
3446
- -webkit-text-fill-color: #fafafa;
3447
- -webkit-text-stroke-width: 2px;
3448
  }
3449
 
3450
  @media (max-width: 500px) {
3451
 
3452
- .premium-dual-header-first-header,
3453
- .premium-dual-header-second-header {
3454
- word-wrap: break-word;
3455
- }
3456
  }
3457
 
3458
  .premium-dual-header-first-header.gradient .premium-dual-header-first-span,
3459
  .premium-dual-header-second-header.gradient {
3460
- -webkit-background-size: 300% 300% !important;
3461
- background-size: 300% 300% !important;
3462
- -webkit-animation: Gradient 10s ease-in-out infinite;
3463
- animation: Gradient 10s ease-in-out infinite;
3464
  }
3465
 
3466
  @-webkit-keyframes Gradient {
3467
- 0% {
3468
- background-position: 100% 50%;
3469
- }
3470
 
3471
- 50% {
3472
- background-position: 0% 50%;
3473
- }
3474
 
3475
- 100% {
3476
- background-position: 100% 50%;
3477
- }
3478
  }
3479
 
3480
  @keyframes Gradient {
3481
- 0% {
3482
- background-position: 100% 50%;
3483
- }
3484
 
3485
- 50% {
3486
- background-position: 0% 50%;
3487
- }
3488
 
3489
- 100% {
3490
- background-position: 100% 50%;
3491
- }
3492
  }
 
3493
  /**************** Premium Fancy Text *******************/
3494
  /*******************************************************/
3495
  .premium-suffix-text,
3496
  .premium-fancy-text,
3497
  .premium-prefix-text {
3498
- font-size: 40px;
3499
  }
3500
 
3501
  .premium-fancy-text-wrapper:not(.typing) .premium-fancy-text,
3502
  .premium-fancy-item-hidden {
3503
- opacity: 0;
3504
  }
3505
 
3506
  .premium-fancy-text-wrapper .premium-fancy-list-items {
3507
- list-style: none;
3508
  }
3509
 
3510
  .premium-fancy-text-wrapper .premium-fancy-text-span-align {
3511
- vertical-align: top;
3512
  }
3513
 
3514
  .premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-text-items-wrapper {
3515
- margin: 0;
3516
- padding: 0;
3517
- border: none;
3518
- position: relative;
3519
  }
3520
 
3521
  .premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-list-items {
3522
- position: absolute;
3523
- top: 0;
3524
- left: 0;
3525
- display: inline-block;
3526
  }
3527
 
3528
  .premium-fancy-text-wrapper.zoomout .premium-fancy-item-hidden {
3529
- -webkit-animation: pa-zoom-out 0.8s;
3530
- animation: pa-zoom-out 0.8s;
3531
  }
3532
 
3533
  .premium-fancy-text-wrapper.zoomout .premium-fancy-item-visible {
3534
- position: relative !important;
3535
- -webkit-animation: pa-zoom-in 0.8s;
3536
- animation: pa-zoom-in 0.8s;
3537
  }
3538
 
3539
  .premium-fancy-text-wrapper.zoomout .premium-fancy-text-items-wrapper {
3540
- -webkit-perspective: 300px;
3541
- perspective: 300px;
3542
  }
3543
 
3544
  .premium-fancy-text-wrapper.rotate .premium-fancy-list-items {
3545
- -webkit-transform-origin: 50% 100%;
3546
- -ms-transform-origin: 50% 100%;
3547
- transform-origin: 50% 100%;
3548
  }
3549
 
3550
  .premium-fancy-text-wrapper.rotate .premium-fancy-item-hidden {
3551
- -webkit-transform: rotateX(180deg);
3552
- transform: rotateX(180deg);
3553
- -webkit-animation: pa-rotate-out 1.2s;
3554
- animation: pa-rotate-out 1.2s;
3555
  }
3556
 
3557
  .premium-fancy-text-wrapper.rotate .premium-fancy-item-visible {
3558
- position: relative !important;
3559
- -webkit-transform: rotateX(0deg);
3560
- transform: rotateX(0deg);
3561
- -webkit-animation: pa-rotate-in 1.2s;
3562
- animation: pa-rotate-in 1.2s;
3563
  }
3564
 
3565
  .premium-fancy-text-wrapper.custom .premium-fancy-item-visible {
3566
- position: relative !important;
3567
  }
3568
 
3569
  .premium-fancy-text-wrapper.auto-fade .premium-fancy-text {
3570
- display: inline-block;
3571
- width: 200px;
3572
- font-weight: 400;
3573
  }
3574
 
3575
  .premium-fancy-text-wrapper.auto-fade .premium-fancy-svg-text {
3576
- position: relative;
3577
- vertical-align: sub;
3578
  }
3579
 
3580
  .premium-fancy-text-wrapper.auto-fade g>text {
3581
- text-anchor: start;
3582
- shape-rendering: crispEdges;
3583
- opacity: 0;
3584
- font-size: 300px;
3585
- -webkit-animation-name: pa-auto-fade;
3586
- animation-name: pa-auto-fade;
3587
- -moz-animation-name: pa-auto-fade;
3588
- -webkit-animation-duration: 9s;
3589
- animation-duration: 9s;
3590
- -webkit-animation-timing-function: linear;
3591
- animation-timing-function: linear;
3592
- -webkit-animation-iteration-count: infinite;
3593
- animation-iteration-count: infinite;
3594
  }
3595
 
3596
  .premium-fancy-text-wrapper.auto-fade g>text:nth-child(1) {
3597
- -webkit-animation-delay: 0s;
3598
- animation-delay: 0s;
3599
  }
3600
 
3601
  .premium-fancy-text-wrapper.auto-fade g>text:nth-child(2) {
3602
- -webkit-animation-delay: 3s;
3603
- animation-delay: 3s;
3604
  }
3605
 
3606
  .premium-fancy-text-wrapper.auto-fade g>text:nth-child(3) {
3607
- -webkit-animation-delay: 6s;
3608
- animation-delay: 6s;
3609
  }
3610
 
3611
  .premium-fancy-text-wrapper.loading .premium-fancy-text {
3612
- position: relative;
3613
  }
3614
 
3615
  .premium-fancy-text-wrapper.loading .premium-fancy-text .premium-loading-bar {
3616
- position: absolute;
3617
- width: 100%;
3618
- height: 3px;
3619
- bottom: 0;
3620
- left: 0;
3621
- animation: pa-loading-bar 2.5s ease-out infinite;
3622
- -webkit-animation: pa-loading-bar 2.5s ease-out infinite;
3623
  }
3624
 
3625
  .premium-fancy-text-wrapper.loading.pause .premium-fancy-text:hover .premium-loading-bar {
3626
- -webkit-animation-play-state: paused;
3627
- animation-play-state: paused;
3628
  }
3629
 
3630
  @-webkit-keyframes pa-auto-fade {
3631
- 0% {
3632
- opacity: 0;
3633
- }
3634
 
3635
- 20% {
3636
- opacity: 1;
3637
- }
3638
 
3639
- 35% {
3640
- opacity: 0;
3641
- }
3642
 
3643
- 100% {
3644
- opacity: 0;
3645
- }
3646
  }
3647
 
3648
  @keyframes pa-auto-fade {
3649
- 0% {
3650
- opacity: 0;
3651
- }
3652
 
3653
- 20% {
3654
- opacity: 1;
3655
- }
3656
 
3657
- 35% {
3658
- opacity: 0;
3659
- }
3660
 
3661
- 100% {
3662
- opacity: 0;
3663
- }
3664
  }
3665
 
3666
  @-webkit-keyframes pa-loading-bar {
3667
- 0% {
3668
- width: 0;
3669
- }
3670
 
3671
- 100% {
3672
- width: 100;
3673
- }
3674
  }
3675
 
3676
  @keyframes pa-loading-bar {
3677
- 0% {
3678
- width: 0;
3679
- }
3680
 
3681
- 100% {
3682
- width: 100;
3683
- }
3684
  }
3685
 
3686
  @-webkit-keyframes pa-zoom-in {
3687
- 0% {
3688
- opacity: 0;
3689
- -webkit-transform: translateZ(100px);
3690
- transform: translateZ(100px);
3691
- }
3692
 
3693
- 100% {
3694
- opacity: 1;
3695
- -webkit-transform: translateZ(0);
3696
- transform: translateZ(0);
3697
- }
3698
  }
3699
 
3700
  @keyframes pa-zoom-in {
3701
- 0% {
3702
- opacity: 0;
3703
- -webkit-transform: translateZ(100px);
3704
- transform: translateZ(100px);
3705
- }
3706
 
3707
- 100% {
3708
- opacity: 1;
3709
- -webkit-transform: translateZ(0);
3710
- transform: translateZ(0);
3711
- }
3712
  }
3713
 
3714
  @-webkit-keyframes pa-zoom-out {
3715
- 0% {
3716
- opacity: 1;
3717
- -webkit-transform: translateZ(0);
3718
- transform: translateZ(0);
3719
- }
3720
 
3721
- 100% {
3722
- opacity: 0;
3723
- -webkit-transform: translateZ(-100px);
3724
- transform: translateZ(-100px);
3725
- }
3726
  }
3727
 
3728
  @keyframes pa-zoom-out {
3729
- 0% {
3730
- opacity: 1;
3731
- -webkit-transform: translateZ(0);
3732
- transform: translateZ(0);
3733
- }
3734
 
3735
- 100% {
3736
- opacity: 0;
3737
- -webkit-transform: translateZ(-100px);
3738
- transform: translateZ(-100px);
3739
- }
3740
  }
3741
 
3742
  @-webkit-keyframes pa-rotate-in {
3743
- 0% {
3744
- opacity: 0;
3745
- -webkit-transform: rotateX(180deg);
3746
- transform: rotateX(180deg);
3747
- }
3748
 
3749
- 35% {
3750
- opacity: 0;
3751
- -webkit-transform: rotateX(120deg);
3752
- transform: rotateX(120deg);
3753
- }
3754
 
3755
- 65% {
3756
- opacity: 0;
3757
- }
3758
 
3759
- 100% {
3760
- opacity: 1;
3761
- -webkit-transform: rotateX(360deg);
3762
- transform: rotateX(360deg);
3763
- }
3764
  }
3765
 
3766
  @keyframes pa-rotate-in {
3767
- 0% {
3768
- opacity: 0;
3769
- -webkit-transform: rotateX(180deg);
3770
- transform: rotateX(180deg);
3771
- }
3772
 
3773
- 35% {
3774
- opacity: 0;
3775
- -webkit-transform: rotateX(120deg);
3776
- transform: rotateX(120deg);
3777
- }
3778
 
3779
- 65% {
3780
- opacity: 0;
3781
- }
3782
 
3783
- 100% {
3784
- opacity: 1;
3785
- -webkit-transform: rotateX(360deg);
3786
- transform: rotateX(360deg);
3787
- }
3788
  }
3789
 
3790
  @-webkit-keyframes pa-rotate-out {
3791
- 0% {
3792
- opacity: 1;
3793
- -webkit-transform: rotateX(0deg);
3794
- transform: rotateX(0deg);
3795
- }
3796
 
3797
- 35% {
3798
- opacity: 1;
3799
- -webkit-transform: rotateX(-40deg);
3800
- transform: rotateX(-40deg);
3801
- }
3802
 
3803
- 65% {
3804
- opacity: 0;
3805
- }
3806
 
3807
- 100% {
3808
- opacity: 0;
3809
- -webkit-transform: rotateX(180deg);
3810
- transform: rotateX(180deg);
3811
- }
3812
  }
3813
 
3814
  @keyframes pa-rotate-out {
3815
- 0% {
3816
- opacity: 1;
3817
- -webkit-transform: rotateX(0deg);
3818
- transform: rotateX(0deg);
3819
- }
3820
-
3821
- 35% {
3822
- opacity: 1;
3823
- -webkit-transform: rotateX(-40deg);
3824
- transform: rotateX(-40deg);
3825
- }
3826
-
3827
- 65% {
3828
- opacity: 0;
3829
- }
3830
-
3831
- 100% {
3832
- opacity: 0;
3833
- -webkit-transform: rotateX(180deg);
3834
- transform: rotateX(180deg);
3835
- }
3836
  }
 
3837
  /**************** Premium Bullet List *****************/
3838
  /******************************************************/
3839
  .premium-bullet-list-box {
@@ -3853,6 +3864,7 @@ span.icon.flex-width {
3853
  -moz-box-direction: normal;
3854
  -ms-flex-direction: column;
3855
  flex-direction: column;
 
3856
  }
3857
 
3858
  .premium-bullet-list-box .premium-bullet-list-content-grow-lc {
@@ -4164,27 +4176,28 @@ ul[data-list-animation*="animated-"] .premium-bullet-list-divider-inline {
4164
  transform: rotate(360deg);
4165
  }
4166
  }
 
4167
  /**************** Premium Image Button ***********/
4168
  /*************************************************/
4169
  .premium-image-button {
4170
- -js-display: inline-flex;
4171
- display: -webkit-inline-box;
4172
- display: -webkit-inline-flex;
4173
- display: -moz-inline-box;
4174
- display: -ms-inline-flexbox;
4175
- display: inline-flex;
4176
- position: relative;
4177
- overflow: hidden;
4178
- background-color: #eee;
4179
- cursor: pointer;
4180
- -webkit-transition: all 0.2s ease-in-out !important;
4181
- transition: all 0.2s ease-in-out !important;
4182
  }
4183
 
4184
  .premium-image-button .premium-button-style6-bg,
4185
  .premium-image-button.premium-button-style6:before,
4186
  .premium-image-button:not(.premium-image-button-style6):hover {
4187
- background-color: #54595f;
4188
  }
4189
 
4190
  /*Default background for slide styles*/
@@ -4194,726 +4207,729 @@ ul[data-list-animation*="animated-"] .premium-bullet-list-divider-inline {
4194
  .premium-image-button-style1-bottom:before,
4195
  .premium-image-button-style1-left:before,
4196
  .premium-image-button-style1-right:before {
4197
- background-color: #54595f;
4198
  }
4199
 
4200
  .premium-image-button-text-icon-wrapper {
4201
- width: 100%;
4202
- -js-display: flex;
4203
- display: -webkit-box;
4204
- display: -webkit-flex;
4205
- display: -moz-box;
4206
- display: -ms-flexbox;
4207
- display: flex;
4208
- -webkit-box-pack: center;
4209
- -webkit-justify-content: center;
4210
- -moz-box-pack: center;
4211
- -ms-flex-pack: center;
4212
- justify-content: center;
4213
- -webkit-box-align: center;
4214
- -webkit-align-items: center;
4215
- -moz-box-align: center;
4216
- -ms-flex-align: center;
4217
- align-items: center;
4218
- position: relative;
4219
- z-index: 3;
4220
- -webkit-transition: all 0.2s ease-in-out;
4221
- transition: all 0.2s ease-in-out;
4222
- }
4223
-
4224
- .premium-image-button-text-icon-wrapper span,
4225
- .premium-image-button-text-icon-wrapper,
4226
- .premium-image-button-text-icon-wrapper i,
4227
- .premium-image-button-text-icon-wrapper svg {
4228
- -webkit-transition: all 0.2s ease-in-out;
4229
- transition: all 0.2s ease-in-out;
4230
- }
4231
-
4232
  .premium-image-button-style1-bottom:before,
4233
  .premium-image-button-style1-top:before,
4234
  .premium-image-button-style1-left:before,
4235
  .premium-image-button-style1-right:before {
4236
- -webkit-transition: all 0.2s ease-in-out;
4237
- transition: all 0.2s ease-in-out;
4238
  }
4239
 
4240
  .premium-image-button-style1-bottom:before {
4241
- content: "";
4242
- position: absolute;
4243
- width: 100%;
4244
- height: 0;
4245
- top: 0;
4246
- right: 0;
4247
  }
4248
 
4249
  .premium-image-button-style1-top:before {
4250
- content: "";
4251
- position: absolute;
4252
- width: 100%;
4253
- height: 0;
4254
- bottom: 0;
4255
- right: 0;
4256
  }
4257
 
4258
  .premium-image-button-style1-right:before {
4259
- content: "";
4260
- position: absolute;
4261
- width: 0;
4262
- height: 100%;
4263
- bottom: 0;
4264
- right: 0;
4265
  }
4266
 
4267
  .premium-image-button-style1-left:before {
4268
- content: "";
4269
- position: absolute;
4270
- width: 0;
4271
- height: 100%;
4272
- top: 0;
4273
- left: 0;
4274
  }
4275
 
4276
  .premium-image-button-style1-bottom:hover:before {
4277
- height: 100%;
4278
  }
4279
 
4280
  .premium-image-button-style1-top:hover:before {
4281
- height: 100%;
4282
  }
4283
 
4284
  .premium-image-button-style1-right:hover:before {
4285
- width: 100%;
4286
  }
4287
 
4288
  .premium-image-button-style1-left:hover:before {
4289
- width: 100%;
4290
  }
4291
 
4292
  .premium-image-button-diagonal-top,
4293
  .premium-image-button-diagonal-bottom,
4294
  .premium-image-button-diagonal-left,
4295
  .premium-image-button-diagonal-right {
4296
- z-index: 10;
4297
  }
4298
 
4299
  .premium-image-button-diagonal-top:before,
4300
  .premium-image-button-diagonal-bottom:before,
4301
  .premium-image-button-diagonal-left:before,
4302
  .premium-image-button-diagonal-right:before {
4303
- position: absolute;
4304
- top: 0px;
4305
- right: 0px;
4306
- width: 100%;
4307
- height: 100%;
4308
- content: "";
4309
- z-index: 1;
4310
- background: rgba(255, 255, 255, 0.2);
4311
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
4312
- -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
4313
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
4314
- -webkit-transition: all 0.8s ease-out;
4315
- transition: all 0.8s ease-out;
4316
  }
4317
 
4318
  .premium-image-button-diagonal-right:hover:before,
4319
  .premium-image-button-diagonal-left:before {
4320
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
4321
- -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
4322
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
4323
  }
4324
 
4325
  .premium-image-button-diagonal-left:hover:before,
4326
  .premium-image-button-diagonal-right:before {
4327
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
4328
- -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
4329
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
4330
  }
4331
 
4332
  .premium-image-button-diagonal-top:hover:before,
4333
  .premium-image-button-diagonal-bottom:before {
4334
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
4335
- -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
4336
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
4337
  }
4338
 
4339
  .premium-image-button-diagonal-bottom:hover:before,
4340
  .premium-image-button-diagonal-top:before {
4341
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
4342
- -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
4343
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
4344
  }
4345
 
4346
  .premium-image-button-style4-icon-wrapper {
4347
- position: absolute;
4348
- z-index: 2;
4349
- width: 100%;
4350
- text-align: center;
4351
- display: -webkit-box;
4352
- display: -webkit-flex;
4353
- display: -ms-flexbox;
4354
- -js-display: flex;
4355
- display: -moz-box;
4356
- display: flex;
4357
- -webkit-box-align: center;
4358
- -webkit-align-items: center;
4359
- -moz-box-align: center;
4360
- -ms-flex-align: center;
4361
- align-items: center;
4362
- -webkit-box-pack: center;
4363
- -webkit-justify-content: center;
4364
- -moz-box-pack: center;
4365
- -ms-flex-pack: center;
4366
- justify-content: center;
4367
- height: 100%;
4368
- opacity: 0;
4369
- -webkit-transition: all 0.3s ease-in-out;
4370
- transition: all 0.3s ease-in-out;
4371
  }
4372
 
4373
  .premium-image-button-style4-icon-wrapper.top {
4374
- bottom: -100%;
4375
- right: 0;
4376
  }
4377
 
4378
  .premium-image-button-style4-icon-wrapper.bottom {
4379
- top: -100%;
4380
- right: 0;
4381
  }
4382
 
4383
  .premium-image-button-style4-icon-wrapper.left {
4384
- top: 0;
4385
- right: -100%;
4386
  }
4387
 
4388
  .premium-image-button-style4-icon-wrapper.right {
4389
- top: 0;
4390
- left: -100%;
4391
  }
4392
 
4393
  .premium-image-button-style4-bottom:hover .premium-image-button-style4-icon-wrapper {
4394
- top: 0;
4395
- opacity: 1;
4396
  }
4397
 
4398
  .premium-image-button-style4-top:hover .premium-image-button-style4-icon-wrapper {
4399
- bottom: 0;
4400
- opacity: 1;
4401
  }
4402
 
4403
  .premium-image-button-style4-left:hover .premium-image-button-style4-icon-wrapper {
4404
- right: 0;
4405
- opacity: 1;
4406
  }
4407
 
4408
  .premium-image-button-style4-right:hover .premium-image-button-style4-icon-wrapper {
4409
- left: 0;
4410
- opacity: 1;
4411
  }
4412
 
4413
  .premium-image-button-style4-bottom:hover .premium-image-button-text-icon-wrapper {
4414
- -webkit-transform: translateY(100%);
4415
- -ms-transform: translateY(100%);
4416
- transform: translateY(100%);
4417
- opacity: 0;
4418
  }
4419
 
4420
  .premium-image-button-style4-top:hover .premium-image-button-text-icon-wrapper {
4421
- -webkit-transform: translateY(-100%);
4422
- -ms-transform: translateY(-100%);
4423
- transform: translateY(-100%);
4424
- opacity: 0;
4425
  }
4426
 
4427
  .premium-image-button-style4-left:hover .premium-image-button-text-icon-wrapper {
4428
- -webkit-transform: translateX(-100%);
4429
- -ms-transform: translateX(-100%);
4430
- transform: translateX(-100%);
4431
- opacity: 0;
4432
  }
4433
 
4434
  .premium-image-button-style4-right:hover .premium-image-button-text-icon-wrapper {
4435
- -webkit-transform: translateX(100%);
4436
- -ms-transform: translateX(100%);
4437
- transform: translateX(100%);
4438
- opacity: 0;
4439
  }
4440
 
4441
  .premium-image-button-overlap-effect-horizontal:before,
4442
  .premium-image-button-overlap-effect-vertical:before {
4443
- position: absolute;
4444
- content: "";
4445
- top: 0;
4446
- right: 0;
4447
- width: 100%;
4448
- height: 100%;
4449
- opacity: 0;
4450
- -webkit-transition: all 1s ease-in-out;
4451
- transition: all 1s ease-in-out;
4452
- background: rgba(255, 255, 255, 0.2);
4453
- -webkit-animation-name: premium-overlap-effect-done;
4454
- animation-name: premium-overlap-effect-done;
4455
- -webkit-animation-duration: 1s;
4456
- animation-duration: 1s;
4457
  }
4458
 
4459
  .premium-image-button-overlap-effect-vertical:before {
4460
- -webkit-animation-name: premium-overlap-ver-effect-done;
4461
- animation-name: premium-overlap-ver-effect-done;
4462
- -webkit-animation-duration: 1s;
4463
- animation-duration: 1s;
4464
  }
4465
 
4466
  .premium-image-button-overlap-effect-horizontal:hover:before {
4467
- -webkit-animation-name: premium-overlap-effect;
4468
- animation-name: premium-overlap-effect;
4469
- -webkit-animation-duration: 1s;
4470
- animation-duration: 1s;
4471
  }
4472
 
4473
  .premium-image-button-overlap-effect-vertical:hover:before {
4474
- -webkit-animation-name: premium-overlap-ver-effect;
4475
- animation-name: premium-overlap-ver-effect;
4476
- -webkit-animation-duration: 1s;
4477
- animation-duration: 1s;
4478
  }
4479
 
4480
  @-webkit-keyframes premium-overlap-effect {
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 {
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-effect-done {
4521
- 0% {
4522
- opacity: 0;
4523
- -webkit-transform: rotateY(0deg);
4524
- transform: rotateY(0deg);
4525
- }
4526
 
4527
- 50% {
4528
- opacity: 1;
4529
- -webkit-transform: rotateY(180deg);
4530
- transform: rotateY(180deg);
4531
- }
4532
 
4533
- 100% {
4534
- opacity: 0;
4535
- -webkit-transform: rotateY(360deg);
4536
- transform: rotateY(360deg);
4537
- }
4538
  }
4539
 
4540
  @keyframes premium-overlap-effect-done {
4541
- 0% {
4542
- opacity: 0;
4543
- -webkit-transform: rotateY(0deg);
4544
- transform: rotateY(0deg);
4545
- }
4546
 
4547
- 50% {
4548
- opacity: 1;
4549
- -webkit-transform: rotateY(180deg);
4550
- transform: rotateY(180deg);
4551
- }
4552
 
4553
- 100% {
4554
- opacity: 0;
4555
- -webkit-transform: rotateY(360deg);
4556
- transform: rotateY(360deg);
4557
- }
4558
  }
4559
 
4560
  @-webkit-keyframes premium-overlap-ver-effect {
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 {
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
 
4600
  @-webkit-keyframes premium-overlap-ver-effect-done {
4601
- 0% {
4602
- opacity: 0;
4603
- -webkit-transform: rotateX(0deg);
4604
- transform: rotateX(0deg);
4605
- }
4606
 
4607
- 50% {
4608
- opacity: 1;
4609
- -webkit-transform: rotateX(180deg);
4610
- transform: rotateX(180deg);
4611
- }
4612
 
4613
- 100% {
4614
- opacity: 0;
4615
- -webkit-transform: rotateX(360deg);
4616
- transform: rotateX(360deg);
4617
- }
4618
  }
4619
 
4620
  @keyframes premium-overlap-ver-effect-done {
4621
- 0% {
4622
- opacity: 0;
4623
- -webkit-transform: rotateX(0deg);
4624
- transform: rotateX(0deg);
4625
- }
4626
-
4627
- 50% {
4628
- opacity: 1;
4629
- -webkit-transform: rotateX(180deg);
4630
- transform: rotateX(180deg);
4631
- }
4632
-
4633
- 100% {
4634
- opacity: 0;
4635
- -webkit-transform: rotateX(360deg);
4636
- transform: rotateX(360deg);
4637
- }
4638
- }
4639
- /************ Premium Image Scroll ***************/
4640
- /*************************************************/
4641
- .premium-image-scroll-section,
4642
- .premium-image-scroll-container {
4643
- -webkit-transition: all 0.3s ease-in-out;
4644
- transition: all 0.3s ease-in-out;
4645
- }
4646
-
4647
- .premium-image-scroll-section {
4648
- position: relative;
4649
- overflow: hidden;
4650
- width: 100%;
4651
- -webkit-mask-image: -webkit-radial-gradient(white, black);
4652
- }
4653
-
4654
- .premium-image-scroll-container {
4655
- width: 100%;
4656
- }
4657
-
4658
- .premium-image-scroll-container .premium-image-scroll-mask-media {
4659
- -webkit-mask-repeat: no-repeat;
4660
- mask-repeat: no-repeat;
4661
- -webkit-mask-position: center;
4662
- mask-position: center;
4663
- }
4664
-
4665
- .premium-container-scroll {
4666
- overflow: auto;
4667
- }
4668
-
4669
- .premium-image-scroll-container .premium-image-scroll-horizontal {
4670
- position: relative;
4671
- width: 100%;
4672
- height: 100%;
4673
- }
4674
-
4675
- .premium-image-scroll-container .premium-image-scroll-horizontal img {
4676
- max-width: none;
4677
- height: 100%;
4678
- }
4679
-
4680
- .premium-image-scroll-container .premium-image-scroll-vertical img {
4681
- width: 100%;
4682
- max-width: 100%;
4683
- height: auto;
4684
- }
4685
-
4686
- .premium-image-scroll-ver {
4687
- position: relative;
4688
- }
4689
-
4690
- .premium-image-scroll-container .premium-image-scroll-overlay {
4691
- background: rgba(2, 2, 2, 0.3);
4692
- }
4693
-
4694
- .premium-image-scroll-container .premium-image-scroll-link,
4695
- .premium-image-scroll-container .premium-image-scroll-overlay {
4696
- position: absolute;
4697
- top: 0;
4698
- bottom: 0;
4699
- right: 0;
4700
- left: 0;
4701
- z-index: 4;
4702
- }
4703
-
4704
- .premium-image-scroll-content {
4705
- display: inline-block;
4706
- position: absolute;
4707
- height: auto;
4708
- top: 50%;
4709
- right: 50%;
4710
- text-align: center;
4711
- z-index: 5;
4712
- -webkit-transform: translate(50%, -50%);
4713
- -ms-transform: translate(50%, -50%);
4714
- transform: translate(50%, -50%);
4715
- }
4716
-
4717
- .premium-container-scroll-instant .premium-image-scroll-image {
4718
- -webkit-transition: all 0s ease-in-out !important;
4719
- transition: all 0s ease-in-out !important;
4720
- }
4721
-
4722
- .premium-image-scroll-container img {
4723
- -webkit-transition: -webkit-transform 3s ease-in-out;
4724
- transition: -webkit-transform 3s ease-in-out;
4725
- transition: transform 3s ease-in-out;
4726
- transition: transform 3s ease-in-out, -webkit-transform 3s ease-in-out;
4727
- }
4728
-
4729
- .premium-image-scroll-container .premium-image-scroll-overlay,
4730
- .premium-image-scroll-container .premium-image-scroll-content {
4731
- -webkit-transition: all 0.3s ease-in-out;
4732
- transition: all 0.3s ease-in-out;
4733
- opacity: 1;
4734
- }
4735
-
4736
- .premium-image-scroll-container:hover .premium-image-scroll-overlay {
4737
- opacity: 0;
4738
- }
4739
-
4740
- .premium-image-scroll-container:hover .premium-image-scroll-content {
4741
- opacity: 0;
4742
- visibility: hidden;
4743
- }
4744
-
4745
- .premium-image-scroll-content .premium-image-scroll-icon {
4746
- display: inline-block;
4747
- font-family: "pa-elements" !important;
4748
- speak: none;
4749
- font-style: normal;
4750
- font-weight: normal;
4751
- font-variant: normal;
4752
- text-transform: none;
4753
- line-height: 1;
4754
- -webkit-font-smoothing: antialiased;
4755
- -moz-osx-font-smoothing: grayscale;
4756
- -webkit-animation-duration: 0.5s;
4757
- animation-duration: 0.5s;
4758
- -webkit-animation-iteration-count: infinite;
4759
- animation-iteration-count: infinite;
4760
- -webkit-animation-direction: alternate;
4761
- animation-direction: alternate;
4762
- -webkit-animation-timing-function: ease-in-out;
4763
- animation-timing-function: ease-in-out;
4764
- }
4765
-
4766
- .pa-horizontal-mouse-scroll:before {
4767
- content: "\e901";
4768
- }
4769
-
4770
- .pa-vertical-mouse-scroll:before {
4771
- content: "\e93c";
4772
- }
4773
-
4774
- .pa-horizontal-mouse-scroll {
4775
- -webkit-animation-name: pa-scroll-horizontal;
4776
- animation-name: pa-scroll-horizontal;
4777
- }
4778
-
4779
- .pa-vertical-mouse-scroll {
4780
- -webkit-animation-name: pa-scroll-vertical;
4781
- animation-name: pa-scroll-vertical;
4782
- }
4783
-
4784
- @-webkit-keyframes pa-scroll-vertical {
4785
- 0% {
4786
- -webkit-transform: translateY(0px);
4787
- transform: translateY(0px);
4788
- }
4789
-
4790
- 100% {
4791
- -webkit-transform: translateY(5px);
4792
- transform: translateY(5px);
4793
- }
4794
- }
4795
-
4796
- @keyframes pa-scroll-vertical {
4797
- 0% {
4798
- -webkit-transform: translateY(0px);
4799
- transform: translateY(0px);
4800
- }
4801
-
4802
- 100% {
4803
- -webkit-transform: translateY(5px);
4804
- transform: translateY(5px);
4805
- }
4806
- }
4807
-
4808
- @-webkit-keyframes pa-scroll-horizontal {
4809
- 0% {
4810
- -webkit-transform: translateX(0px);
4811
- transform: translateX(0px);
4812
- }
4813
-
4814
- 100% {
4815
- -webkit-transform: translateX(-5px);
4816
- transform: translateX(-5px);
4817
- }
4818
- }
4819
-
4820
- @keyframes pa-scroll-horizontal {
4821
- 0% {
4822
- -webkit-transform: translateX(0px);
4823
- transform: translateX(0px);
4824
- }
4825
-
4826
- 100% {
4827
- -webkit-transform: translateX(-5px);
4828
- transform: translateX(-5px);
4829
- }
4830
- }
4831
- /**************** Premium Image Separator ****************/
4832
- /*********************************************************/
4833
- /*Image Separator Container Style*/
4834
- .premium-image-separator-container {
4835
- position: absolute;
4836
- width: 100%;
4837
- z-index: 2;
4838
- top: auto;
4839
- }
4840
 
4841
- .premium-image-separator-container img {
4842
- display: inline-block !important;
4843
- -webkit-mask-repeat: no-repeat;
4844
- mask-repeat: no-repeat;
4845
- -webkit-mask-position: center;
4846
- mask-position: center;
4847
- }
4848
 
4849
- /*Link on Image Style*/
4850
- .premium-image-separator-link {
4851
- position: absolute;
4852
- z-index: 9999;
4853
- top: 0;
4854
- right: 0;
4855
- width: 100%;
4856
- height: 100%;
4857
- text-decoration: none;
4858
  }
4859
 
4860
- /*Important to override Theme options*/
4861
- a.premium-image-separator-link:hover,
4862
- a.premium-image-separator-link:visited,
4863
- a.premium-image-separator-link:focus,
4864
- a.premium-image-separator-link:active {
4865
- -webkit-box-shadow: none !important;
4866
- box-shadow: none !important;
4867
- outline: none !important;
4868
- border: none !important;
4869
- text-decoration: none !important;
4870
  }
4871
 
4872
- .premium-image-separator-container .img-responsive {
4873
- display: inline-block;
 
 
 
4874
  }
4875
 
4876
- .premium-image-separator-container i,
4877
- .premium-image-separator-container>svg {
4878
- padding: 20px;
4879
- -webkit-transition: all 0.3s ease-in-out;
4880
- transition: all 0.3s ease-in-out;
4881
  }
4882
- /******** Premium Media Grid ********/
4883
- /************************************/
4884
- .premium-img-gallery-filter,
4885
- .premium-blog-filter {
4886
- display: -webkit-box;
4887
- display: -webkit-flex;
4888
- display: -ms-flexbox;
4889
- -js-display: flex;
4890
- display: -moz-box;
4891
- display: flex;
4892
- -webkit-box-align: center;
4893
- -webkit-align-items: center;
4894
- -moz-box-align: center;
4895
- -ms-flex-align: center;
4896
- align-items: center;
4897
- -webkit-box-pack: center;
4898
- -webkit-justify-content: center;
4899
- -moz-box-pack: center;
4900
- -ms-flex-pack: center;
4901
- justify-content: center;
4902
  }
4903
 
4904
- .premium-img-gallery {
4905
- clear: both;
4906
- overflow: hidden;
4907
  }
4908
 
4909
- .premium-gallery-container .premium-gallery-item {
4910
- padding: 10px;
4911
- float: right;
4912
- /* Google Chrome isotope issue */
4913
  }
4914
 
4915
- .premium-gallery-container .grid-sizer {
4916
- width: 33.33%;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4917
  }
4918
 
4919
  .premium-img-gallery-filter .premium-gallery-cats-container li a.category,
@@ -5336,326 +5352,329 @@ a.premium-image-separator-link:active {
5336
  background: -webkit-linear-gradient(bottom, #17181f 0%, rgba(255, 255, 255, 0) 100%);
5337
  background: linear-gradient(to top, #17181f 0%, rgba(255, 255, 255, 0) 100%);
5338
  }
 
5339
  /********* Premium Lottie Animations **********/
5340
  /**********************************************/
5341
  .elementor-widget-premium-lottie .premium-lottie-animation {
5342
- position: relative;
5343
- -js-display: inline-flex;
5344
- display: -webkit-inline-box;
5345
- display: -webkit-inline-flex;
5346
- display: -moz-inline-box;
5347
- display: -ms-inline-flexbox;
5348
- display: inline-flex;
5349
- -webkit-transition: all 0.3s ease-in-out;
5350
- transition: all 0.3s ease-in-out;
5351
  }
5352
 
5353
  .elementor-widget-premium-lottie .premium-lottie-animation a {
5354
- position: absolute;
5355
- left: 0;
5356
- top: 0;
5357
- width: 100%;
5358
- height: 100%;
5359
- z-index: 2;
5360
  }
 
5361
  /**************** Premium Google Maps ******************/
5362
  /*******************************************************/
5363
  .premium-maps-info-container {
5364
- margin-top: 10px;
5365
- margin-bottom: 10px;
5366
  }
5367
 
5368
  .premium-maps-info-title,
5369
  .premium-maps-info-desc {
5370
- margin: 0;
5371
- padding: 0;
5372
  }
5373
 
5374
  .premium-maps-container .gm-style-iw {
5375
- text-align: center;
5376
- direction: ltr;
5377
  }
5378
 
5379
  .premium-maps-container .gm-style img {
5380
- max-width: none !important;
5381
  }
 
5382
  /**************** Premium Modal Box ****************/
5383
  /***************************************************/
5384
  .premium-modal-trigger-btn,
5385
  .premium-modal-box-modal-lower-close {
5386
- display: inline-block;
5387
- padding: 6px 12px;
5388
- margin-bottom: 0;
5389
- font-size: 14px;
5390
- font-weight: normal;
5391
- line-height: 1.42857143;
5392
- text-align: center;
5393
- white-space: nowrap;
5394
- vertical-align: middle;
5395
- -ms-touch-action: manipulation;
5396
- touch-action: manipulation;
5397
- cursor: pointer;
5398
- -webkit-user-select: none;
5399
- -moz-user-select: none;
5400
- -ms-user-select: none;
5401
- user-select: none;
5402
- background-image: none;
5403
- border: 1px solid transparent;
5404
  }
5405
 
5406
  .premium-modal-trigger-btn>svg,
5407
  .premium-modal-trigger-btn .premium-modal-box-icon {
5408
- -webkit-transition: all 0.3s ease-in-out;
5409
- transition: all 0.3s ease-in-out;
5410
  }
5411
 
5412
  .premium-modal-trigger-btn>svg {
5413
- width: 30px;
5414
- height: 30px;
5415
  }
5416
 
5417
  .premium-modal-box-modal-close {
5418
- float: left;
5419
- font-size: 21px;
5420
- font-weight: bold;
5421
- line-height: 1;
5422
- color: #000;
5423
  }
5424
 
5425
  .premium-modal-box-modal-close:hover,
5426
  .premium-modal-box-modal-close:focus {
5427
- color: #000;
5428
- text-decoration: none;
5429
- cursor: pointer;
5430
  }
5431
 
5432
  button.premium-modal-box-modal-close {
5433
- -webkit-appearance: none;
5434
- padding: 0;
5435
- cursor: pointer;
5436
- background: transparent;
5437
- border: 0;
5438
  }
5439
 
5440
  .premium-modal-box-modal {
5441
- position: fixed;
5442
- top: 0;
5443
- left: 0;
5444
- bottom: 0;
5445
- right: 0;
5446
- z-index: 1050;
5447
- display: none;
5448
- -webkit-overflow-scrolling: touch;
5449
- outline: 0;
5450
- padding: 0 !important;
5451
- background: rgba(0, 0, 0, 0.5);
5452
- -webkit-box-align: center;
5453
- -webkit-align-items: center;
5454
- -moz-box-align: center;
5455
- -ms-flex-align: center;
5456
- align-items: center;
5457
- -webkit-box-pack: center;
5458
- -webkit-justify-content: center;
5459
- -moz-box-pack: center;
5460
- -ms-flex-pack: center;
5461
- justify-content: center;
5462
  }
5463
 
5464
  .premium-modal-box-modal .premium-modal-box-modal-dialog {
5465
- position: absolute;
5466
- max-height: -webkit-calc(100vh - 150px);
5467
- max-height: calc(100vh - 150px);
5468
- -js-display: flex;
5469
- display: -webkit-box;
5470
- display: -webkit-flex;
5471
- display: -moz-box;
5472
- display: -ms-flexbox;
5473
- display: flex;
5474
- -webkit-box-orient: vertical;
5475
- -webkit-box-direction: normal;
5476
- -webkit-flex-direction: column;
5477
- -moz-box-orient: vertical;
5478
- -moz-box-direction: normal;
5479
- -ms-flex-direction: column;
5480
- flex-direction: column;
5481
- opacity: 0;
5482
- background-color: #fff;
5483
- border: 1px solid rgba(0, 0, 0, 0.2);
5484
- -webkit-border-radius: 6px;
5485
- border-radius: 6px;
5486
  }
5487
 
5488
  .premium-modal-box-modal-content {
5489
- background-clip: padding-box;
5490
- outline: 0;
5491
- overflow-x: hidden;
5492
  }
5493
 
5494
  .premium-modal-backdrop.premium-in {
5495
- filter: alpha(opacity=50);
5496
- opacity: 0.5 !important;
5497
  }
5498
 
5499
  .premium-modal-fade.premium-in {
5500
- opacity: 1;
5501
  }
5502
 
5503
  .premium-modal-backdrop {
5504
- position: fixed;
5505
- top: 0;
5506
- left: 0;
5507
- bottom: 0;
5508
- right: 0;
5509
- z-index: 1040;
5510
- background-color: #000;
5511
  }
5512
 
5513
  .premium-modal-backdrop.premium-modal-fade {
5514
- filter: alpha(opacity=0);
5515
- opacity: 0;
5516
  }
5517
 
5518
  .premium-modal-fade {
5519
- opacity: 0;
5520
  }
5521
 
5522
  .premium-in {
5523
- -js-display: flex !important;
5524
- display: -webkit-box !important;
5525
- display: -webkit-flex !important;
5526
- display: -moz-box !important;
5527
- display: -ms-flexbox !important;
5528
- display: flex !important;
5529
  }
5530
 
5531
  .premium-modal-box-modal-header {
5532
- -js-display: flex;
5533
- display: -webkit-box;
5534
- display: -webkit-flex;
5535
- display: -moz-box;
5536
- display: -ms-flexbox;
5537
- display: flex;
5538
- -webkit-box-pack: justify;
5539
- -webkit-justify-content: space-between;
5540
- -moz-box-pack: justify;
5541
- -ms-flex-pack: justify;
5542
- justify-content: space-between;
5543
- -webkit-box-align: center;
5544
- -webkit-align-items: center;
5545
- -moz-box-align: center;
5546
- -ms-flex-align: center;
5547
- align-items: center;
5548
- padding: 5px 15px;
5549
- border-bottom: 1px solid #e5e5e5;
5550
  }
5551
 
5552
  .premium-modal-box-modal-header .premium-modal-box-modal-close {
5553
- margin-top: -2px;
5554
  }
5555
 
5556
  .premium-modal-box-modal-header .premium-modal-box-modal-title {
5557
- -js-display: flex;
5558
- display: -webkit-box;
5559
- display: -webkit-flex;
5560
- display: -moz-box;
5561
- display: -ms-flexbox;
5562
- display: flex;
5563
- -webkit-box-align: center;
5564
- -webkit-align-items: center;
5565
- -moz-box-align: center;
5566
- -ms-flex-align: center;
5567
- align-items: center;
5568
- margin: 0;
5569
- padding: 0;
5570
  }
5571
 
5572
  .premium-modal-box-modal-header .premium-modal-box-modal-title svg {
5573
- width: 50px;
5574
- height: 60px;
5575
  }
5576
 
5577
  .premium-modal-box-modal-body {
5578
- position: relative;
5579
- padding: 15px;
5580
  }
5581
 
5582
  .premium-modal-box-modal-footer {
5583
- padding: 15px;
5584
- text-align: left;
5585
- border-top: 1px solid #e5e5e5;
5586
  }
5587
 
5588
  .premium-modal-scrollbar-measure {
5589
- position: absolute;
5590
- top: -9999px;
5591
- width: 50px;
5592
- height: 50px;
5593
- overflow: scroll;
5594
  }
5595
 
5596
  .premium-modal-trigger-text {
5597
- background: none !important;
5598
- display: inline-block;
5599
  }
5600
 
5601
  .premium-modal-box-container {
5602
- width: 100% !important;
5603
  }
5604
 
5605
  /*Open Modal Button Style*/
5606
  .premium-modal-trigger-container .premium-modal-trigger-btn {
5607
- -js-display: inline-flex;
5608
- display: -webkit-inline-box;
5609
- display: -webkit-inline-flex;
5610
- display: -moz-inline-box;
5611
- display: -ms-inline-flexbox;
5612
- display: inline-flex;
5613
- -webkit-box-align: center;
5614
- -webkit-align-items: center;
5615
- -moz-box-align: center;
5616
- -ms-flex-align: center;
5617
- align-items: center;
5618
- border: none;
5619
- -webkit-transition: all 0.3s ease-in-out;
5620
- transition: all 0.3s ease-in-out;
5621
  }
5622
 
5623
  .premium-modal-trigger-container .premium-modal-trigger-btn.premium-btn-block {
5624
- -webkit-box-pack: center;
5625
- -webkit-justify-content: center;
5626
- -moz-box-pack: center;
5627
- -ms-flex-pack: center;
5628
- justify-content: center;
5629
  }
5630
 
5631
  .premium-modal-trigger-container .premium-modal-trigger-img,
5632
  .premium-modal-trigger-container .premium-modal-trigger-text,
5633
  .premium-modal-trigger-container .premium-modal-trigger-animation {
5634
- cursor: pointer;
5635
  }
5636
 
5637
  .premium-modal-trigger-container .premium-modal-trigger-animation {
5638
- display: inline-block;
5639
- width: 200px;
5640
- height: 200px;
5641
- -webkit-transition: all 0.3s ease-in-out;
5642
- transition: all 0.3s ease-in-out;
5643
  }
5644
 
5645
  /*Image on Modal Header Style*/
5646
  .premium-modal-box-modal-header img {
5647
- width: 48px;
5648
- padding-left: 5px;
5649
  }
5650
 
5651
  .premium-modal-box-modal-header i,
5652
  .premium-modal-box-modal-header svg {
5653
- padding-left: 6px;
5654
  }
5655
 
5656
  .premium-modal-box-modal-close {
5657
- position: relative;
5658
- z-index: 99;
5659
  }
5660
 
5661
  .premium-modal-trigger-img,
@@ -5663,29 +5682,30 @@ button.premium-modal-box-modal-close {
5663
  .premium-modal-box-close-button-container,
5664
  .premium-modal-box-modal-close,
5665
  .premium-modal-box-modal-lower-close {
5666
- -webkit-transition: all 0.3s ease-in-out;
5667
- transition: all 0.3s ease-in-out;
5668
  }
5669
 
5670
  @media (min-width: 768px) {
5671
- .premium-modal-box-modal-dialog {
5672
- width: 700px;
5673
- max-height: 600px;
5674
- overflow: auto;
5675
- }
5676
  }
5677
 
5678
  @media (max-width: 767px) {
5679
- .premium-modal-box-modal-dialog {
5680
- width: 100%;
5681
- max-height: 500px;
5682
- overflow: auto;
5683
- }
5684
  }
5685
 
5686
  .premium-modal-box-container[data-modal-animation*="animated-"] {
5687
- opacity: 0;
5688
  }
 
5689
  /************ Premium Nav Menu ************/
5690
  .premium-nav-widget-container ul {
5691
  list-style: none;
@@ -5946,8 +5966,8 @@ button.premium-modal-box-modal-close {
5946
  .premium-nav-hor .premium-mobile-menu-container .premium-item-badge {
5947
  top: 0;
5948
  -webkit-transform: translateY(0);
5949
- -ms-transform: translateY(0);
5950
- transform: translateY(0);
5951
  }
5952
 
5953
  /**Vertical Hamburger Menu*/
@@ -6264,8 +6284,8 @@ button.premium-modal-box-modal-close {
6264
 
6265
  .premium-nav-sticky-yes.premium-sticky-active.premium-ham-dropdown .premium-mobile-menu-container,
6266
  .premium-ham-dropdown .premium-stretch-dropdown .premium-mobile-menu-container {
6267
- max-height: 400px;
6268
- overflow-y: auto;
6269
  }
6270
 
6271
  /**Common*/
@@ -7084,6 +7104,7 @@ button.premium-modal-box-modal-close {
7084
  -ms-transform: translateX(0);
7085
  transform: translateX(0);
7086
  }
 
7087
  /************ Premium Team Members ************/
7088
  /*********************************************/
7089
  .premium-person-container {
@@ -7582,6 +7603,7 @@ ul.premium-person-social-list {
7582
  -ms-transform: translateX(0) rotate(90deg);
7583
  transform: translateX(0) rotate(90deg);
7584
  }
 
7585
  /**************** Premium Pricing Table ****************/
7586
  /*******************************************************/
7587
  .premium-pricing-table-container {
@@ -7768,6 +7790,7 @@ ul.premium-person-social-list {
7768
  flex-direction: column;
7769
  list-style-type: none;
7770
  margin: 0;
 
7771
  }
7772
 
7773
  .premium-pricing-list .premium-pricing-list-item {
@@ -7872,2781 +7895,2765 @@ ul.premium-person-social-list {
7872
  -webkit-transition: all 0.3s ease-in-out;
7873
  transition: all 0.3s ease-in-out;
7874
  }
7875
- /**************** Premium Progress Bar ****************/
7876
- /******************************************************/
7877
- .premium-progressbar-container {
7878
- position: relative;
7879
- }
7880
-
7881
- .premium-progressbar-bar-wrap {
7882
- position: relative;
7883
- text-align: right;
7884
- overflow: hidden;
7885
- height: 25px;
7886
- margin-bottom: 50px;
7887
- background-color: #f5f5f5;
7888
- -webkit-border-radius: 4px;
7889
- border-radius: 4px;
7890
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
7891
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
7892
- }
7893
-
7894
- .premium-progressbar-bar-wrap.premium-progressbar-dots {
7895
- background-color: transparent;
7896
- width: 100%;
7897
- -js-display: flex;
7898
- display: -webkit-box;
7899
- display: -webkit-flex;
7900
- display: -moz-box;
7901
- display: -ms-flexbox;
7902
- display: flex;
7903
- height: auto;
7904
- -webkit-box-shadow: none;
7905
- box-shadow: none;
7906
- }
7907
-
7908
- .premium-progressbar-bar-wrap .progress-segment {
7909
- position: relative;
7910
- width: 25px;
7911
- height: 25px;
7912
- -webkit-border-radius: 50%;
7913
- border-radius: 50%;
7914
- overflow: hidden;
7915
- background-color: #f5f5f5;
7916
- }
7917
-
7918
- .premium-progressbar-bar-wrap .progress-segment.filled {
7919
- background: #6ec1e4;
7920
- }
7921
-
7922
- .premium-progressbar-bar-wrap .progress-segment:not(:first-child):not(:last-child) {
7923
- margin: 0 4px;
7924
- }
7925
-
7926
- .premium-progressbar-bar-wrap .progress-segment:first-child {
7927
- margin-left: 4px;
7928
- }
7929
-
7930
- .premium-progressbar-bar-wrap .progress-segment:last-child {
7931
- margin-right: 4px;
7932
- }
7933
-
7934
- .premium-progressbar-bar-wrap .progress-segment .segment-inner {
7935
- position: absolute;
7936
- top: 0;
7937
- right: 0;
7938
- height: 100%;
7939
- background-color: #6ec1e4;
7940
- }
7941
-
7942
- .premium-progressbar-bar {
7943
- float: right;
7944
- width: 0%;
7945
- height: 100%;
7946
- font-size: 12px;
7947
- line-height: 20px;
7948
- background: #6ec1e4;
7949
- text-align: center;
7950
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
7951
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
7952
- }
7953
-
7954
- .premium-progressbar-striped .premium-progressbar-bar {
7955
- background-image: -webkit-linear-gradient(-135deg,
7956
- rgba(255, 255, 255, 0.15) 25%,
7957
- transparent 25%,
7958
- transparent 50%,
7959
- rgba(255, 255, 255, 0.15) 50%,
7960
- rgba(255, 255, 255, 0.15) 75%,
7961
- transparent 75%,
7962
- transparent);
7963
- background-image: -webkit-linear-gradient(45deg,
7964
- rgba(255, 255, 255, 0.15) 25%,
7965
- transparent 25%,
7966
- transparent 50%,
7967
- rgba(255, 255, 255, 0.15) 50%,
7968
- rgba(255, 255, 255, 0.15) 75%,
7969
- transparent 75%,
7970
- transparent);
7971
- background-image: linear-gradient(45deg,
7972
- rgba(255, 255, 255, 0.15) 25%,
7973
- transparent 25%,
7974
- transparent 50%,
7975
- rgba(255, 255, 255, 0.15) 50%,
7976
- rgba(255, 255, 255, 0.15) 75%,
7977
- transparent 75%,
7978
- transparent);
7979
- -webkit-background-size: 40px 40px;
7980
- background-size: 40px 40px;
7981
- }
7982
-
7983
- .premium-progressbar-active .premium-progressbar-bar {
7984
- -webkit-animation: progress-bar-stripes 2s linear infinite;
7985
- animation: progress-bar-stripes 2s linear infinite;
7986
- }
7987
-
7988
- .premium-progressbar-gradient .premium-progressbar-bar {
7989
- -webkit-background-size: 400% 400% !important;
7990
- background-size: 400% 400% !important;
7991
- -webkit-animation: progress-bar-gradient 10s ease-in-out infinite;
7992
- animation: progress-bar-gradient 10s ease-in-out infinite;
7993
- }
7994
-
7995
- .premium-progressbar-bar {
7996
- position: absolute;
7997
- overflow: hidden;
7998
- line-height: 20px;
7999
- }
8000
-
8001
- .premium-progressbar-container .clearfix {
8002
- clear: both;
8003
- }
8004
-
8005
- .premium-progressbar-bar {
8006
- -webkit-transition: width 0s ease-in-out !important;
8007
- transition: width 0s ease-in-out !important;
8008
- }
8009
-
8010
- .premium-progressbar-container p:first-of-type {
8011
- margin: 0;
8012
- float: left;
8013
- }
8014
-
8015
- .premium-progressbar-container p:nth-of-type(2) {
8016
- margin: 0;
8017
- float: right;
8018
- }
8019
-
8020
- .premium-progressbar-name {
8021
- right: 50%;
8022
- top: 0;
8023
- left: 0;
8024
- -webkit-transform: translateX(12.5px);
8025
- -ms-transform: translateX(12.5px);
8026
- transform: translateX(12.5px);
8027
- z-index: 1;
8028
- }
8029
-
8030
- .premium-progressbar-multiple-label {
8031
- position: relative;
8032
- float: right;
8033
- width: 0;
8034
- right: 50%;
8035
- }
8036
-
8037
- .premium-progressbar-center-label {
8038
- position: relative;
8039
- white-space: nowrap;
8040
- }
8041
-
8042
- .premium-progressbar-arrow {
8043
- height: 15px;
8044
- right: 50%;
8045
- display: inline-block;
8046
- border-right: 7px solid transparent;
8047
- border-left: 7px solid transparent;
8048
- border-top: 11px solid;
8049
- -webkit-transform: translateX(50%);
8050
- -ms-transform: translateX(50%);
8051
- transform: translateX(50%);
8052
- }
8053
-
8054
- .premium-progressbar-pin {
8055
- border-right: 1px solid;
8056
- height: 12px;
8057
- right: 50%;
8058
- display: inline-block;
8059
- }
8060
-
8061
- /**
8062
- * Circle Progress Bar
8063
- */
8064
- .premium-progressbar-circle-wrap,
8065
- .premium-progressbar-hf-circle-wrap {
8066
- width: 200px;
8067
- height: 200px;
8068
- position: relative;
8069
- margin: 0 auto;
8070
- }
8071
-
8072
- .premium-progressbar-circle-wrap .premium-progressbar-circle-content,
8073
- .premium-progressbar-hf-circle-wrap .premium-progressbar-circle-content {
8074
- position: absolute;
8075
- top: 0;
8076
- right: 0;
8077
- width: 100%;
8078
- height: 100%;
8079
- -js-display: flex;
8080
- display: -webkit-box;
8081
- display: -webkit-flex;
8082
- display: -moz-box;
8083
- display: -ms-flexbox;
8084
- display: flex;
8085
- -webkit-box-orient: vertical;
8086
- -webkit-box-direction: normal;
8087
- -webkit-flex-direction: column;
8088
- -moz-box-orient: vertical;
8089
- -moz-box-direction: normal;
8090
- -ms-flex-direction: column;
8091
- flex-direction: column;
8092
- -webkit-box-pack: center;
8093
- -webkit-justify-content: center;
8094
- -moz-box-pack: center;
8095
- -ms-flex-pack: center;
8096
- justify-content: center;
8097
- -webkit-box-align: center;
8098
- -webkit-align-items: center;
8099
- -moz-box-align: center;
8100
- -ms-flex-align: center;
8101
- align-items: center;
8102
- text-align: center;
8103
- }
8104
-
8105
- .premium-progressbar-circle-wrap .premium-lottie-animation,
8106
- .premium-progressbar-hf-circle-wrap .premium-lottie-animation {
8107
- line-height: 1;
8108
- }
8109
-
8110
- .premium-progressbar-circle-wrap .premium-progressbar-circle {
8111
- position: absolute;
8112
- top: 0;
8113
- right: 0;
8114
- width: 100%;
8115
- height: 100%;
8116
- -webkit-clip-path: inset(0 0 0 50%);
8117
- clip-path: inset(0 0 0 50%);
8118
- }
8119
-
8120
- .premium-progressbar-circle-wrap .premium-progressbar-circle div {
8121
- position: absolute;
8122
- right: 0;
8123
- top: 0;
8124
- height: 100%;
8125
- width: 100%;
8126
- border-width: 6px;
8127
- border-style: solid;
8128
- border-color: #54595f;
8129
- -webkit-border-radius: 50%;
8130
- border-radius: 50%;
8131
- -webkit-clip-path: inset(0 50% 0 0);
8132
- clip-path: inset(0 50% 0 0);
8133
- }
8134
-
8135
- .premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-left {
8136
- -webkit-transform: rotate(0);
8137
- -ms-transform: rotate(0);
8138
- transform: rotate(0);
8139
- }
8140
-
8141
- .premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-right {
8142
- -webkit-transform: rotate(-180deg);
8143
- -ms-transform: rotate(-180deg);
8144
- transform: rotate(-180deg);
8145
- visibility: hidden;
8146
- }
8147
-
8148
- .premium-progressbar-circle-wrap .premium-progressbar-circle-base {
8149
- width: 100%;
8150
- height: 100%;
8151
- border: 6px solid #eee;
8152
- -webkit-border-radius: 50%;
8153
- border-radius: 50%;
8154
- }
8155
-
8156
- .premium-progressbar-circle-wrap .premium-lottie-animation {
8157
- line-height: 1;
8158
- }
8159
-
8160
- /**
8161
- * Half Circle Progress Bar
8162
- */
8163
- .premium-progressbar-hf-container {
8164
- position: relative;
8165
- width: 200px;
8166
- height: 200px;
8167
- }
8168
-
8169
- .premium-progressbar-hf-circle-wrap {
8170
- overflow: hidden;
8171
- }
8172
-
8173
- .premium-progressbar-hf-circle-wrap .premium-progressbar-left-label {
8174
- -webkit-box-ordinal-group: 2;
8175
- -webkit-order: 1;
8176
- -moz-box-ordinal-group: 2;
8177
- -ms-flex-order: 1;
8178
- order: 1;
8179
- }
8180
-
8181
- .premium-progressbar-hf-circle {
8182
- position: absolute;
8183
- top: 0;
8184
- left: 0;
8185
- width: 100%;
8186
- height: 100%;
8187
- -webkit-clip-path: inset(0 0 50% 0);
8188
- clip-path: inset(0 0 50% 0);
8189
- }
8190
-
8191
- .premium-progressbar-hf-circle-progress {
8192
- position: absolute;
8193
- left: 0;
8194
- top: 0;
8195
- height: 100%;
8196
- width: 100%;
8197
- border: 12px solid #000;
8198
- -webkit-border-radius: 50%;
8199
- border-radius: 50%;
8200
- -webkit-clip-path: inset(50% 0 0 0);
8201
- clip-path: inset(50% 0 0 0);
8202
- -webkit-transform: rotate(0deg);
8203
- -ms-transform: rotate(0deg);
8204
- transform: rotate(0deg);
8205
- -webkit-transition: -webkit-transform 1500ms linear;
8206
- transition: -webkit-transform 1500ms linear;
8207
- transition: transform 1500ms linear;
8208
- transition: transform 1500ms linear, -webkit-transform 1500ms linear;
8209
- }
8210
-
8211
- .premium-progressbar-circle-inner {
8212
- height: 100%;
8213
- width: 100%;
8214
- border: 12px solid #eee;
8215
- -webkit-border-radius: 50%;
8216
- border-radius: 50%;
8217
- }
8218
-
8219
- .premium-progressbar-hf-labels {
8220
- margin: 0 auto;
8221
- position: relative;
8222
- font-size: 12px;
8223
- font-weight: 400;
8224
- -js-display: flex;
8225
- display: -webkit-box;
8226
- display: -webkit-flex;
8227
- display: -moz-box;
8228
- display: -ms-flexbox;
8229
- display: flex;
8230
- -webkit-box-pack: justify;
8231
- -webkit-justify-content: space-between;
8232
- -moz-box-pack: justify;
8233
- -ms-flex-pack: justify;
8234
- justify-content: space-between;
8235
- }
8236
-
8237
-
8238
- @-webkit-keyframes progress-bar-stripes {
8239
- from {
8240
- background-position: 100% 0;
8241
- }
8242
-
8243
- to {
8244
- background-position: 40px 0;
8245
- }
8246
- }
8247
-
8248
- @keyframes progress-bar-stripes {
8249
- from {
8250
- background-position: 100% 0;
8251
- }
8252
-
8253
- to {
8254
- background-position: 40px 0;
8255
- }
8256
- }
8257
-
8258
- @-webkit-keyframes progress-bar-gradient {
8259
- 0% {
8260
- background-position: 100% 50%;
8261
- }
8262
-
8263
- 50% {
8264
- background-position: 0% 50%;
8265
- }
8266
-
8267
- 100% {
8268
- background-position: 100% 50%;
8269
- }
8270
- }
8271
-
8272
- @keyframes progress-bar-gradient {
8273
- 0% {
8274
- background-position: 100% 50%;
8275
- }
8276
-
8277
- 50% {
8278
- background-position: 0% 50%;
8279
- }
8280
-
8281
- 100% {
8282
- background-position: 100% 50%;
8283
- }
8284
- }
8285
-
8286
- @media (max-width: 768px) {
8287
- .premium-progressbar-center-label {
8288
- -webkit-transform: rotate(-90deg) !important;
8289
- -ms-transform: rotate(-90deg) !important;
8290
- transform: rotate(-90deg) !important;
8291
- -webkit-transform-origin: 0;
8292
- -ms-transform-origin: 0;
8293
- transform-origin: 0;
8294
- }
8295
- }
8296
- /**************** Premium Testimonials ****************/
8297
- /******************************************************/
8298
- .premium-testimonial-box {
8299
- width: 100%;
8300
- background: transparent;
8301
- -webkit-transition: all 0.3s ease-in-out;
8302
- transition: all 0.3s ease-in-out;
8303
- }
8304
 
8305
- .premium-testimonial-box .premium-testimonial-author-info {
8306
- -js-display: flex;
8307
- display: -webkit-box;
8308
- display: -webkit-flex;
8309
- display: -moz-box;
8310
- display: -ms-flexbox;
8311
- display: flex;
8312
- -webkit-box-pack: center;
8313
- -webkit-justify-content: center;
8314
- -moz-box-pack: center;
8315
- -ms-flex-pack: center;
8316
- justify-content: center;
8317
- -webkit-box-align: center;
8318
- -webkit-align-items: center;
8319
- -moz-box-align: center;
8320
- -ms-flex-align: center;
8321
- align-items: center;
8322
  }
8323
 
8324
- .premium-testimonial-box .premium-testimonial-person-name,
8325
- .premium-testimonial-box .premium-testimonial-company-name {
8326
- font-weight: 600;
8327
- margin: 0;
 
 
 
 
 
 
 
8328
  }
8329
 
8330
- .premium-testimonial-container {
8331
- position: relative;
 
 
 
 
 
 
 
 
 
 
8332
  }
8333
 
8334
- .premium-testimonial-img-wrapper {
8335
- margin-right: auto;
8336
- margin-left: auto;
8337
- overflow: hidden;
8338
- border-style: solid !important;
 
 
 
8339
  }
8340
 
8341
- .premium-testimonial-img-wrapper.circle {
8342
- -webkit-border-radius: 50%;
8343
- border-radius: 50%;
8344
  }
8345
 
8346
- .premium-testimonial-img-wrapper.rounded {
8347
- -webkit-border-radius: 15px;
8348
- border-radius: 15px;
8349
  }
8350
 
8351
- .premium-testimonial-img-wrapper img {
8352
- -o-object-fit: cover;
8353
- object-fit: cover;
8354
- width: 100%;
8355
- height: 100% !important;
8356
  }
8357
 
8358
- .premium-testimonial-content-wrapper {
8359
- position: relative;
8360
- display: -ms-flexbox;
8361
- display: -webkit-flex;
8362
- display: -moz-flex;
8363
- display: -ms-flex;
8364
- -js-display: flex;
8365
- display: -webkit-box;
8366
- display: -moz-box;
8367
- display: flex;
8368
- -webkit-box-orient: vertical;
8369
- -webkit-box-direction: normal;
8370
- -webkit-flex-direction: column;
8371
- -moz-box-orient: vertical;
8372
- -moz-box-direction: normal;
8373
- -ms-flex-direction: column;
8374
- flex-direction: column;
8375
- z-index: 2;
8376
- width: 100%;
8377
- padding: 20px;
8378
- text-align: center;
8379
  }
8380
 
8381
- .premium-testimonial-clear-float {
8382
- clear: both;
 
 
 
 
8383
  }
8384
 
8385
- .premium-testimonial-upper-quote,
8386
- .premium-testimonial-lower-quote {
8387
- position: absolute;
8388
- z-index: 1;
8389
- }
8390
- /**************** Premium Title ****************/
8391
- /***********************************************/
8392
- .premium-title-container .premium-title-header {
8393
- position: relative;
8394
- margin: 0;
8395
- padding: 10px;
8396
- }
8397
-
8398
- .premium-title-container .premium-title-header:not(.premium-title-style7) {
8399
- -webkit-box-align: center;
8400
- -webkit-align-items: center;
8401
- -moz-box-align: center;
8402
- -ms-flex-align: center;
8403
- align-items: center;
8404
- }
8405
-
8406
- .premium-title-container .premium-title-header svg {
8407
- width: 40px;
8408
- height: 40px;
8409
- }
8410
-
8411
- .premium-title-container .premium-title-header img {
8412
- width: 40px;
8413
- height: 40px;
8414
- -o-object-fit: cover;
8415
- object-fit: cover;
8416
- }
8417
-
8418
- .premium-title-container .premium-title-header a {
8419
- position: absolute;
8420
- top: 0;
8421
- right: 0;
8422
- width: 100%;
8423
- height: 100%;
8424
- }
8425
-
8426
- .premium-title-container .premium-lottie-animation {
8427
- -js-display: flex;
8428
- display: -webkit-box;
8429
- display: -webkit-flex;
8430
- display: -moz-box;
8431
- display: -ms-flexbox;
8432
- display: flex;
8433
- }
8434
-
8435
- .premium-title-icon-row .premium-title-icon {
8436
- margin-left: 10px;
8437
- }
8438
-
8439
- .premium-title-icon-row-reverse .premium-title-icon {
8440
- margin-right: 10px;
8441
- }
8442
-
8443
- .premium-title-style3,
8444
- .premium-title-style4 {
8445
- -js-display: flex;
8446
- display: -webkit-box;
8447
- display: -webkit-flex;
8448
- display: -moz-box;
8449
- display: -ms-flexbox;
8450
- display: flex;
8451
- }
8452
-
8453
- .premium-title-style1,
8454
- .premium-title-style2,
8455
- .premium-title-style5,
8456
- .premium-title-style6,
8457
- .premium-title-style8,
8458
- .premium-title-style9 {
8459
- -js-display: inline-flex;
8460
- display: -webkit-inline-box;
8461
- display: -webkit-inline-flex;
8462
- display: -moz-inline-box;
8463
- display: -ms-inline-flexbox;
8464
- display: inline-flex;
8465
- }
8466
-
8467
- .premium-title-style7 {
8468
- -js-display: inline-flex;
8469
- display: -webkit-inline-box;
8470
- display: -webkit-inline-flex;
8471
- display: -moz-inline-box;
8472
- display: -ms-inline-flexbox;
8473
- display: inline-flex;
8474
- -webkit-box-orient: vertical;
8475
- -webkit-box-direction: normal;
8476
- -webkit-flex-direction: column;
8477
- -moz-box-orient: vertical;
8478
- -moz-box-direction: normal;
8479
- -ms-flex-direction: column;
8480
- flex-direction: column;
8481
- }
8482
-
8483
- .premium-title-style7 .premium-title-style7-inner {
8484
- -js-display: flex;
8485
- display: -webkit-box;
8486
- display: -webkit-flex;
8487
- display: -moz-box;
8488
- display: -ms-flexbox;
8489
- display: flex;
8490
- -webkit-box-align: center;
8491
- -webkit-align-items: center;
8492
- -moz-box-align: center;
8493
- -ms-flex-align: center;
8494
- align-items: center;
8495
- }
8496
-
8497
- .premium-title-style1 {
8498
- border-width: 0;
8499
- border-right: 3px solid #6ec1e4;
8500
- }
8501
-
8502
- .premium-title-container.style2,
8503
- .premium-title-container.style4,
8504
- .premium-title-container.style5,
8505
- .premium-title-container.style6 {
8506
- border-bottom: 3px solid #6ec1e4;
8507
- }
8508
-
8509
- /*Style 6 Header*/
8510
- .premium-title-style6:before {
8511
- position: absolute;
8512
- right: 50%;
8513
- bottom: 0;
8514
- margin-right: -2px;
8515
- content: "";
8516
- border: 3px solid transparent;
8517
- }
8518
-
8519
- /*Style 6 Trinagle*/
8520
- .premium-title-style7-stripe-wrap {
8521
- -js-display: flex;
8522
- display: -webkit-box;
8523
- display: -webkit-flex;
8524
- display: -moz-box;
8525
- display: -ms-flexbox;
8526
- display: flex;
8527
- }
8528
-
8529
- .premium-title-style7:before {
8530
- display: none;
8531
- }
8532
-
8533
- .premium-title-style8 .premium-title-text[data-animation="shiny"] {
8534
- -webkit-background-size: 125px 125px !important;
8535
- background-size: 125px !important;
8536
- color: rgba(255, 255, 255, 0);
8537
- -webkit-background-clip: text !important;
8538
- background-clip: text !important;
8539
- -webkit-animation-name: pa-shinny-text !important;
8540
- animation-name: pa-shinny-text !important;
8541
- -webkit-animation-duration: var(--animation-speed) !important;
8542
- animation-duration: var(--animation-speed) !important;
8543
- -webkit-animation-iteration-count: infinite !important;
8544
- animation-iteration-count: infinite !important;
8545
- background: var(--base-color) -webkit-gradient(linear,
8546
- left top,
8547
- right top,
8548
- from(var(--base-color)),
8549
- to(var(--base-color)),
8550
- color-stop(0.5, var(--shiny-color))) 0 0 no-repeat;
8551
- }
8552
-
8553
- .premium-title-style9[data-animation-blur="process"] .premium-title-style9-letter {
8554
- -webkit-animation: pa-blur-shadow 2s 1 alternate;
8555
- animation: pa-blur-shadow 2s 1 alternate;
8556
- }
8557
-
8558
- .premium-title-gradient-yes .premium-title-text,
8559
- .premium-title-gradient-yes .premium-title-icon {
8560
- -webkit-background-clip: text;
8561
- -webkit-text-fill-color: transparent;
8562
- background-image: -webkit-gradient(linear, left top, right top, from(#ffa648), color-stop(#f17cc1), to(#4da9fd));
8563
- background-image: -webkit-linear-gradient(left, #ffa648, #f17cc1, #4da9fd);
8564
- background-image: linear-gradient(to right, #ffa648, #f17cc1, #4da9fd);
8565
- -webkit-animation: pa-text-gradient 8s infinite;
8566
- animation: pa-text-gradient 8s infinite;
8567
- }
8568
-
8569
- .premium-title-clipped .premium-title-header {
8570
- -webkit-text-fill-color: transparent;
8571
- -webkit-background-clip: text;
8572
- background-clip: text;
8573
- }
8574
-
8575
- @-webkit-keyframes pa-shinny-text {
8576
- 0% {
8577
- background-position: 100%;
8578
- }
8579
-
8580
- 100% {
8581
- background-position: -100%;
8582
- }
8583
- }
8584
-
8585
- @keyframes pa-shinny-text {
8586
- 0% {
8587
- background-position: 100%;
8588
- }
8589
-
8590
- 100% {
8591
- background-position: -100%;
8592
- }
8593
- }
8594
-
8595
- @-webkit-keyframes pa-blur-shadow {
8596
- from {
8597
- text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
8598
- color: transparent;
8599
- }
8600
-
8601
- to {
8602
- text-shadow: 0;
8603
- }
8604
- }
8605
-
8606
- @keyframes pa-blur-shadow {
8607
- from {
8608
- text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
8609
- color: transparent;
8610
- }
8611
-
8612
- to {
8613
- text-shadow: 0;
8614
- }
8615
- }
8616
-
8617
- @-webkit-keyframes pa-text-gradient {
8618
-
8619
- 0%,
8620
- 100% {
8621
- -webkit-filter: hue-rotate(0deg);
8622
- filter: hue-rotate(0deg);
8623
- }
8624
-
8625
- 50% {
8626
- -webkit-filter: hue-rotate(360deg);
8627
- filter: hue-rotate(360deg);
8628
- }
8629
- }
8630
-
8631
- @keyframes pa-text-gradient {
8632
-
8633
- 0%,
8634
- 100% {
8635
- -webkit-filter: hue-rotate(0deg);
8636
- filter: hue-rotate(0deg);
8637
- }
8638
-
8639
- 50% {
8640
- -webkit-filter: hue-rotate(360deg);
8641
- filter: hue-rotate(360deg);
8642
- }
8643
- }
8644
- /**************** Premium Video Box ************/
8645
- /***********************************************/
8646
- .premium-video-box-transform {
8647
- -webkit-transform: none !important;
8648
- -ms-transform: none !important;
8649
- transform: none !important;
8650
- }
8651
-
8652
- .premium-video-box-container {
8653
- -js-display: flex;
8654
- display: -webkit-box;
8655
- display: -webkit-flex;
8656
- display: -moz-box;
8657
- display: -ms-flexbox;
8658
- display: flex;
8659
- -webkit-box-orient: vertical;
8660
- -webkit-box-direction: normal;
8661
- -webkit-flex-direction: column;
8662
- -moz-box-orient: vertical;
8663
- -moz-box-direction: normal;
8664
- -ms-flex-direction: column;
8665
- flex-direction: column;
8666
- }
8667
-
8668
- .premium-video-box-container>div {
8669
- position: relative;
8670
- overflow: hidden;
8671
- }
8672
-
8673
- .pa-aspect-ratio-11 .premium-video-box-container>div {
8674
- padding-bottom: 100%;
8675
- }
8676
-
8677
- .pa-aspect-ratio-169 .premium-video-box-container>div {
8678
- padding-bottom: 56.25%;
8679
- }
8680
-
8681
- .pa-aspect-ratio-43 .premium-video-box-container>div {
8682
- padding-bottom: 75%;
8683
- }
8684
-
8685
- .pa-aspect-ratio-32 .premium-video-box-container>div {
8686
- padding-bottom: 66.6666%;
8687
- }
8688
-
8689
- .pa-aspect-ratio-219 .premium-video-box-container>div {
8690
- padding-bottom: 42.8571%;
8691
- }
8692
-
8693
- .pa-aspect-ratio-916 .premium-video-box-container>div {
8694
- padding-bottom: 177.8%;
8695
- }
8696
-
8697
- .premium-video-box-image-container {
8698
- position: absolute;
8699
- top: 0;
8700
- right: 0;
8701
- bottom: 0;
8702
- left: 0;
8703
- width: 100%;
8704
- height: 100%;
8705
- -webkit-background-size: cover;
8706
- background-size: cover;
8707
- background-position: 50%;
8708
- cursor: pointer;
8709
- margin: auto;
8710
- -webkit-transition: 0.2s all;
8711
- transition: 0.2s all;
8712
- }
8713
-
8714
- .premium-video-box-play-icon-container {
8715
- position: absolute;
8716
- z-index: 2;
8717
- cursor: pointer;
8718
- -webkit-transform: translate(50%, -50%);
8719
- -ms-transform: translate(50%, -50%);
8720
- transform: translate(50%, -50%);
8721
- background: rgba(252, 252, 252, 0.35);
8722
- }
8723
-
8724
- .premium-video-box-description-container {
8725
- position: absolute;
8726
- z-index: 2;
8727
- padding: 5px;
8728
- text-align: center;
8729
- cursor: pointer;
8730
- -webkit-transform: translate(50%, -50%);
8731
- -ms-transform: translate(50%, -50%);
8732
- transform: translate(50%, -50%);
8733
- }
8734
-
8735
- .premium-video-box-text {
8736
- margin-bottom: 0 !important;
8737
- -webkit-transition: all 0.3s ease-in-out;
8738
- transition: all 0.3s ease-in-out;
8739
- }
8740
-
8741
- .premium-video-box-play-icon {
8742
- padding: 15px;
8743
- -webkit-transform: translateX(-4%);
8744
- -ms-transform: translateX(-4%);
8745
- transform: translateX(-4%);
8746
- -webkit-transition: all 0.3s ease-in-out;
8747
- transition: all 0.3s ease-in-out;
8748
- }
8749
-
8750
- .premium-video-box-video-container,
8751
- .premium-vid-lightbox-container {
8752
- position: absolute;
8753
- top: 0;
8754
- right: 0;
8755
- z-index: 2;
8756
- width: 100%;
8757
- height: 100%;
8758
- -webkit-transition: opacity 0.8s ease-in-out;
8759
- transition: opacity 0.8s ease-in-out;
8760
- overflow: hidden;
8761
- cursor: pointer;
8762
- }
8763
-
8764
- .premium-video-box-container[data-overlay="true"][data-type="self"] .premium-video-box-video-container {
8765
- opacity: 0;
8766
- visibility: hidden;
8767
- }
8768
-
8769
- .premium-video-box-video-container iframe {
8770
- max-width: 100%;
8771
- width: 100%;
8772
- height: 100%;
8773
- margin: 0;
8774
- line-height: 1;
8775
- border: none;
8776
- }
8777
-
8778
- .premium-video-box-video-container video {
8779
- max-width: 100%;
8780
- width: 100%;
8781
- height: 100%;
8782
- margin: 0;
8783
- line-height: 1;
8784
- border: none;
8785
- background-color: #000;
8786
- -o-object-fit: contain;
8787
- object-fit: contain;
8788
- }
8789
-
8790
- .premium-video-box-container .premium-video-box-vimeo-wrap {
8791
- -js-display: flex;
8792
- display: -webkit-box;
8793
- display: -webkit-flex;
8794
- display: -moz-box;
8795
- display: -ms-flexbox;
8796
- display: flex;
8797
- position: absolute;
8798
- top: 0;
8799
- right: 0;
8800
- z-index: 3;
8801
- margin: 10px;
8802
- margin-left: 10px;
8803
- -webkit-transition: opacity 0.2s ease-out;
8804
- transition: opacity 0.2s ease-out;
8805
- margin-left: 4.6em;
8806
- }
8807
-
8808
- .premium-video-box-vimeo-wrap .premium-video-box-vimeo-portrait {
8809
- width: 60px;
8810
- height: 60px;
8811
- background: rgba(23, 35, 34, 0.75);
8812
- margin-left: 1px;
8813
- -webkit-box-flex: 1;
8814
- -webkit-flex: 1 0 auto;
8815
- -moz-box-flex: 1;
8816
- -ms-flex: 1 0 auto;
8817
- flex: 1 0 auto;
8818
- padding: 0;
8819
- }
8820
-
8821
- .premium-video-box-vimeo-portrait img {
8822
- width: 50px;
8823
- height: 50px;
8824
- margin: 5px;
8825
- padding: 0;
8826
- border: 0;
8827
- -webkit-border-radius: 50%;
8828
- border-radius: 50%;
8829
- }
8830
-
8831
- .premium-video-box-vimeo-wrap .premium-video-box-vimeo-headers {
8832
- font-size: 10px;
8833
- }
8834
-
8835
- .premium-video-box-vimeo-wrap .premium-video-box-vimeo-title {
8836
- max-width: 100%;
8837
- font-size: 2em !important;
8838
- font-weight: 700;
8839
- margin: 0;
8840
- padding: 0.1em 0.2em;
8841
- background: rgba(23, 35, 34, 0.75);
8842
- display: inline-block;
8843
- text-transform: none;
8844
- line-height: normal;
8845
- letter-spacing: normal;
8846
- }
8847
-
8848
- .premium-video-box-vimeo-wrap .premium-video-box-vimeo-byline {
8849
- font-size: 1.2em !important;
8850
- font-weight: 400;
8851
- color: #fff;
8852
- margin-top: 0.1em;
8853
- padding: 0.2em 0.5em;
8854
- background: rgba(23, 35, 34, 0.75);
8855
- text-transform: none;
8856
- line-height: normal;
8857
- letter-spacing: normal;
8858
- }
8859
-
8860
- .premium-video-box-playlist-container {
8861
- -js-display: flex;
8862
- display: -webkit-box;
8863
- display: -webkit-flex;
8864
- display: -moz-box;
8865
- display: -ms-flexbox;
8866
- display: flex;
8867
- -webkit-flex-wrap: wrap;
8868
- -ms-flex-wrap: wrap;
8869
- flex-wrap: wrap;
8870
- }
8871
-
8872
- .premium-video-box-playlist-container .premium-video-box-container {
8873
- height: 100%;
8874
- overflow: hidden;
8875
- }
8876
-
8877
- .premium-video-box-container:hover .premium-video-box-image-container.zoomin {
8878
- -webkit-transform: scale(1.1);
8879
- -ms-transform: scale(1.1);
8880
- transform: scale(1.1);
8881
- }
8882
-
8883
- .premium-video-box-container:hover .premium-video-box-image-container.zoomout {
8884
- -webkit-transform: scale(1);
8885
- -ms-transform: scale(1);
8886
- transform: scale(1);
8887
- }
8888
-
8889
- .premium-video-box-container:hover .premium-video-box-image-container.scale {
8890
- -webkit-transform: scale(1.3) rotate(-5deg);
8891
- -ms-transform: scale(1.3) rotate(-5deg);
8892
- transform: scale(1.3) rotate(-5deg);
8893
- }
8894
-
8895
- .premium-video-box-container:hover .premium-video-box-image-container.gray {
8896
- -webkit-filter: grayscale(0%);
8897
- filter: grayscale(0%);
8898
- }
8899
-
8900
- .premium-video-box-container:hover .premium-video-box-image-container.blur {
8901
- -webkit-filter: blur(3px);
8902
- filter: blur(3px);
8903
- }
8904
-
8905
- .premium-video-box-container:hover .premium-video-box-image-container.sepia {
8906
- -webkit-filter: sepia(0%);
8907
- filter: sepia(0%);
8908
- }
8909
-
8910
- .premium-video-box-container:hover .premium-video-box-image-container.trans {
8911
- -webkit-transform: translateX(0px) scale(1.1);
8912
- -ms-transform: translateX(0px) scale(1.1);
8913
- transform: translateX(0px) scale(1.1);
8914
- }
8915
-
8916
- .premium-video-box-container:hover .premium-video-box-image-container.bright {
8917
- -webkit-filter: brightness(1.2);
8918
- filter: brightness(1.2);
8919
- }
8920
-
8921
- .premium-video-box-image-container.gray {
8922
- -webkit-filter: grayscale(100%);
8923
- filter: grayscale(100%);
8924
- }
8925
-
8926
- .premium-video-box-image-container.zoomout,
8927
- .premium-video-box-image-container.scale {
8928
- -webkit-transform: scale(1.2);
8929
- -ms-transform: scale(1.2);
8930
- transform: scale(1.2);
8931
- }
8932
-
8933
- .premium-video-box-image-container.sepia {
8934
- -webkit-filter: sepia(30%);
8935
- filter: sepia(30%);
8936
- }
8937
-
8938
- .premium-video-box-image-container.bright {
8939
- -webkit-filter: brightness(1);
8940
- filter: brightness(1);
8941
- }
8942
-
8943
- .premium-video-box-image-container.trans {
8944
- -webkit-transform: translateX(15px) scale(1.1);
8945
- -ms-transform: translateX(15px) scale(1.1);
8946
- transform: translateX(15px) scale(1.1);
8947
- }
8948
-
8949
- .premium-video-box-mask-media {
8950
- -webkit-mask-repeat: no-repeat;
8951
- mask-repeat: no-repeat;
8952
- }
8953
-
8954
- /* Sticky Video Option */
8955
- .premium-video-box-container.premium-video-box-sticky-apply {
8956
- z-index: 99;
8957
- overflow: unset;
8958
- }
8959
-
8960
- .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
8961
- position: fixed !important;
8962
- z-index: 99999;
8963
- height: 225px;
8964
- width: 400px;
8965
- background: #fff;
8966
- }
8967
-
8968
- .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-vimeo-wrap,
8969
- .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-container:before {
8970
- visibility: hidden;
8971
- }
8972
-
8973
- .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 {
8974
- -webkit-box-shadow: unset;
8975
- box-shadow: unset;
8976
- }
8977
-
8978
- .premium-video-box-sticky-close,
8979
- .premium-video-box-sticky-infobar {
8980
- display: none;
8981
- }
8982
-
8983
- .premium-video-box-sticky-apply .premium-video-box-sticky-close {
8984
- position: absolute;
8985
- padding: 5px;
8986
- cursor: pointer;
8987
- z-index: 99999;
8988
- height: 14px;
8989
- width: 14px;
8990
- -webkit-box-sizing: content-box;
8991
- -moz-box-sizing: content-box;
8992
- box-sizing: content-box;
8993
- -webkit-border-radius: 100%;
8994
- border-radius: 100%;
8995
- -js-display: flex;
8996
- display: -webkit-box;
8997
- display: -webkit-flex;
8998
- display: -moz-box;
8999
- display: -ms-flexbox;
9000
- display: flex;
9001
- -webkit-box-pack: center;
9002
- -webkit-justify-content: center;
9003
- -moz-box-pack: center;
9004
- -ms-flex-pack: center;
9005
- justify-content: center;
9006
- -webkit-box-align: center;
9007
- -webkit-align-items: center;
9008
- -moz-box-align: center;
9009
- -ms-flex-align: center;
9010
- align-items: center;
9011
- }
9012
-
9013
- .premium-video-box-sticky-apply .premium-video-box-play-icon-container {
9014
- -js-display: flex;
9015
- display: -webkit-box;
9016
- display: -webkit-flex;
9017
- display: -moz-box;
9018
- display: -ms-flexbox;
9019
- display: flex;
9020
- }
9021
-
9022
- .premium-video-box-sticky-apply .premium-video-box-play-icon {
9023
- -webkit-transition: none;
9024
- transition: none;
9025
- }
9026
-
9027
- .premium-video-box-sticky-apply .premium-video-box-sticky-infobar {
9028
- display: block;
9029
- position: relative;
9030
- top: 100%;
9031
- width: 100%;
9032
- padding: 5px;
9033
- text-align: center;
9034
- z-index: 9999;
9035
- margin-top: -1px;
9036
- }
9037
-
9038
- .premium-video-box-sticky-apply .premium-video-box-inner-wrap.ui-draggable {
9039
- cursor: move;
9040
- }
9041
-
9042
- .premium-video-sticky-top-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
9043
- left: auto;
9044
- right: 20px;
9045
- top: 20px;
9046
- }
9047
-
9048
- .premium-video-sticky-bottom-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
9049
- left: auto;
9050
- right: 20px;
9051
- bottom: 20px;
9052
- }
9053
-
9054
- .premium-video-sticky-top-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
9055
- right: auto;
9056
- left: 20px;
9057
- top: 20px;
9058
- }
9059
-
9060
- .premium-video-sticky-bottom-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
9061
- right: auto;
9062
- left: 20px;
9063
- bottom: 20px;
9064
- }
9065
-
9066
- .premium-video-sticky-center-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
9067
- left: auto;
9068
- right: 20px;
9069
- top: 50%;
9070
- -webkit-transform: translateY(-50%);
9071
- -ms-transform: translateY(-50%);
9072
- transform: translateY(-50%);
9073
- }
9074
-
9075
- .premium-video-sticky-center-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
9076
- right: auto;
9077
- left: 20px;
9078
- top: 50%;
9079
- -webkit-transform: translateY(-50%);
9080
- -ms-transform: translateY(-50%);
9081
- transform: translateY(-50%);
9082
- }
9083
-
9084
- .premium-video-sticky-bottom-right .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap,
9085
- .premium-video-sticky-bottom-left .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
9086
- bottom: 55px;
9087
- }
9088
-
9089
- .premium-video-sticky-top-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
9090
- .premium-video-sticky-bottom-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
9091
- .premium-video-sticky-center-left .premium-video-box-sticky-apply .premium-video-box-sticky-close {
9092
- top: -10px;
9093
- left: -10px;
9094
- }
9095
-
9096
- .premium-video-sticky-top-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
9097
- .premium-video-sticky-bottom-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
9098
- .premium-video-sticky-center-right .premium-video-box-sticky-apply .premium-video-box-sticky-close {
9099
- top: -10px;
9100
- right: -10px;
9101
- }
9102
-
9103
- .premium-video-box-filter-sticky {
9104
- -webkit-filter: none !important;
9105
- filter: none !important;
9106
- }
9107
-
9108
- .premium-mscroll-yes.elementor-widget-premium-addon-video-box div {
9109
- cursor: default;
9110
- }
9111
- /************ Premium Vertical Scroll ************/
9112
- /*************************************************/
9113
- .premium-vscroll-inner {
9114
- position: relative;
9115
- /* overflow: hidden;
9116
- */
9117
- min-height: 100%;
9118
  }
9119
 
9120
- .premium-vscroll-inner .premium-vscroll-dots {
9121
- position: fixed;
9122
- z-index: 100;
9123
- opacity: 1;
9124
- margin-top: -32px;
9125
- -webkit-transition: all 0.3s ease-in-out;
9126
- transition: all 0.3s ease-in-out;
9127
  }
9128
 
9129
- .premium-vscroll-wrap .premium-vscroll-nav-menu {
9130
- opacity: 1;
9131
- -webkit-transition: all 0.3s ease-in-out;
9132
- transition: all 0.3s ease-in-out;
9133
  }
9134
 
9135
- .premium-vscroll-inner .premium-vscroll-dots,
9136
- .premium-vscroll-wrap .premium-vscroll-dots-hide {
9137
- opacity: 0;
9138
- visibility: hidden;
9139
  }
9140
 
9141
- .premium-vscroll-nav-dots-yes .premium-vscroll-inner .premium-vscroll-dots {
9142
- opacity: 1;
9143
- visibility: visible;
9144
  }
9145
 
9146
- .premium-vscroll-dots.middle {
9147
- top: 50%;
9148
- margin-top: 0;
9149
- -webkit-transform: translateY(-50%);
9150
- -ms-transform: translateY(-50%);
9151
- transform: translateY(-50%);
 
 
9152
  }
9153
 
9154
- .premium-vscroll-dots.top {
9155
- top: 40px;
 
 
 
9156
  }
9157
 
9158
- .premium-vscroll-dots.bottom {
9159
- bottom: 30px;
 
9160
  }
9161
 
9162
- .premium-vscroll-dots.right {
9163
- left: 17px;
 
 
 
 
 
 
 
 
9164
  }
9165
 
9166
- .premium-vscroll-dots.left {
9167
- right: 17px;
 
 
 
9168
  }
9169
 
9170
- .premium-vscroll-inner ul.premium-vscroll-dots-list,
9171
- .premium-vscroll-wrap .premium-vscroll-nav-menu {
9172
- margin: 0 !important;
9173
- padding: 0;
 
 
 
 
 
9174
  }
9175
 
9176
- .premium-vscroll-inner ul.premium-vscroll-dots-list li {
9177
- width: 14px;
9178
- height: 13px;
9179
- margin: 7px;
9180
- position: relative;
 
 
 
9181
  display: -webkit-box;
9182
  display: -webkit-flex;
9183
- display: -ms-flexbox;
9184
- -js-display: flex;
9185
  display: -moz-box;
 
9186
  display: flex;
 
 
 
 
 
 
 
9187
  -webkit-box-pack: center;
9188
- -ms-flex-pack: center;
9189
  -webkit-justify-content: center;
9190
  -moz-box-pack: center;
 
9191
  justify-content: center;
9192
  -webkit-box-align: center;
9193
- -ms-flex-align: center;
9194
  -webkit-align-items: center;
9195
  -moz-box-align: center;
 
9196
  align-items: center;
9197
- overflow: visible;
9198
  }
9199
 
9200
- .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link {
9201
- display: block;
9202
- position: relative;
9203
- z-index: 1;
9204
- width: 100%;
 
 
 
 
 
9205
  height: 100%;
9206
- cursor: pointer;
9207
- text-decoration: none;
9208
  }
9209
 
9210
- .premium-vscroll-inner
9211
- .premium-vscroll-dot-item
9212
- .premium-vscroll-nav-link
9213
- span {
9214
- top: 2px;
9215
- right: 2.5px;
9216
- width: 8px;
9217
- height: 8px;
9218
- border: 1px solid #000;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9219
  -webkit-border-radius: 50%;
9220
  border-radius: 50%;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9221
  position: absolute;
9222
- z-index: 1;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9223
  -webkit-transition: all 0.3s ease-in-out;
9224
  transition: all 0.3s ease-in-out;
9225
  }
9226
 
9227
- .premium-vscroll-inner
9228
- .premium-vscroll-dot-item.active
9229
- .premium-vscroll-nav-link
9230
- span {
9231
- -webkit-transform: scale(1.6);
9232
- -ms-transform: scale(1.6);
9233
- transform: scale(1.6);
 
 
 
 
 
 
 
 
 
 
9234
  }
9235
 
9236
- .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-tooltip {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9237
  position: absolute;
9238
- color: #fff;
9239
- font-size: 14px;
9240
- font-family: arial, helvetica, sans-serif;
9241
- white-space: nowrap;
9242
- max-width: 220px;
9243
- padding-right: 0.4em;
9244
- padding-left: 0.4em;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9245
  }
9246
 
9247
- .premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip {
9248
- left: 27px;
 
 
 
 
 
 
 
 
 
 
 
 
 
9249
  }
9250
 
9251
- /* * Lines */
9252
- .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item {
9253
- width: 4px;
9254
- height: 30px;
 
 
 
 
 
 
 
 
9255
  }
9256
 
9257
- .premium-vscroll-inner
9258
- .premium-vscroll-dots.lines
9259
- .premium-vscroll-dot-item
9260
- span {
9261
- width: 100%;
9262
- height: 100%;
9263
- -webkit-border-radius: 0;
9264
- border-radius: 0;
9265
  }
9266
 
9267
- .premium-vscroll-inner
9268
- .premium-vscroll-dots.lines
9269
- .premium-vscroll-dot-item.active
9270
- span {
9271
- -webkit-transform: scale(1);
9272
- -ms-transform: scale(1);
9273
- transform: scale(1);
9274
  }
9275
 
9276
- @media (max-width: 768px) {
9277
- .premium-vscroll-dots.right {
9278
- left: 7px;
9279
- }
9280
-
9281
- .premium-vscroll-dots.left {
9282
- right: 7px;
9283
- }
9284
  }
9285
 
9286
- /* @media only screen and (min-device-width: 769px) and (max-device-width: 1024px) {
9287
- [data-animation="rotate"] .premium-vscroll-temp {
9288
- height: -webkit-calc(100vh - 75px) !important;
9289
- height: calc(100vh - 75px) !important;
9290
- }
9291
  }
9292
 
9293
- @media (max-width: 768px) {
9294
- [data-animation="rotate"] .premium-vscroll-temp {
9295
- height: -webkit-calc(100vh - 60px) !important;
9296
- height: calc(100vh - 60px) !important;
9297
- }
9298
- } */
9299
 
9300
- /** Ipads- Safari */
9301
- /* @supports (-webkit-touch-callout: none) {
 
 
 
 
 
 
 
 
 
 
 
9302
 
9303
- @media (max-width: 768px) {
9304
- [data-animation="rotate"] .premium-vscroll-temp {
9305
- height: -webkit-calc(100vh - 108px) !important;
9306
- height: calc(100vh - 108px) !important;
9307
- }
9308
- }
9309
 
9310
- @media only screen and (min-device-width: 769px) and (max-device-width: 1024px) {
9311
- [data-animation="rotate"] .premium-vscroll-temp {
9312
- height: -webkit-calc(100vh - 60px) !important;
9313
- height: calc(100vh - 60px) !important;
9314
- }
9315
- }
9316
- } */
9317
 
9318
- .premium-vscroll-inner
9319
- .premium-vscroll-dots.right
9320
- .premium-vscroll-tooltip::after {
 
9321
  position: absolute;
9322
- top: 50%;
9323
- content: "";
9324
- right: -webkit-calc(100% - 1px);
9325
- right: calc(100% - 1px);
9326
- width: 10px;
9327
- height: 0;
9328
- border-top: 6px solid transparent;
9329
- border-bottom: 6px solid transparent;
9330
- border-right: 6px solid;
9331
- -webkit-transform: translateY(-50%);
9332
- -ms-transform: translateY(-50%);
9333
- transform: translateY(-50%);
9334
  }
9335
 
9336
- .premium-vscroll-inner
9337
- .premium-vscroll-dots.left
9338
- .premium-vscroll-tooltip::after {
9339
- position: absolute;
9340
- top: 50%;
9341
- content: "";
9342
- left: -webkit-calc(100% - 1px);
9343
- left: calc(100% - 1px);
9344
- width: 10px;
9345
- height: 0;
9346
- border-top: 6px solid transparent;
9347
- border-bottom: 6px solid transparent;
9348
- border-left: 6px solid;
9349
- -webkit-transform: translateY(-50%);
9350
- -ms-transform: translateY(-50%);
9351
- transform: translateY(-50%);
9352
  }
9353
 
9354
- .premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip {
9355
- right: 27px;
 
 
 
 
 
 
 
 
 
 
9356
  }
9357
 
9358
- .premium-vscroll-nav-menu {
9359
- position: fixed;
9360
- top: 20px;
9361
- height: 40px;
9362
- z-index: 100;
9363
- padding: 0;
9364
- margin: 0;
9365
  }
9366
 
9367
- .premium-vscroll-nav-menu.left {
9368
- right: 0;
9369
  }
9370
 
9371
- .premium-vscroll-nav-menu.right {
9372
- left: 0;
 
 
9373
  }
9374
 
9375
- .premium-vscroll-nav-menu .premium-vscroll-nav-item {
9376
- display: inline-block;
9377
- margin: 10px;
9378
- color: #000;
9379
- background: #fff;
9380
- background: rgba(255, 255, 255, 0.3);
9381
  }
9382
 
9383
- .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link {
9384
- padding: 9px 18px;
 
 
 
 
 
 
 
9385
  display: block;
 
 
 
 
 
 
 
 
 
9386
  cursor: pointer;
 
 
 
 
9387
  }
9388
 
9389
- .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link,
9390
- .premium-vscroll-nav-menu
9391
- .premium-vscroll-nav-item
9392
- .premium-vscroll-nav-link:hover {
9393
- color: #000;
 
 
 
9394
  }
9395
 
9396
- .premium-vscroll-nav-menu
9397
- .premium-vscroll-nav-item
9398
- .premium-vscroll-nav-link:focus,
9399
- .multiscroll-nav li a:focus {
9400
- outline: none;
9401
  }
9402
 
9403
- .premium-vscroll-temp .slimScrollBar {
9404
- visibility: hidden;
9405
  }
9406
 
9407
- [data-hijacking="off"] .premium-vscroll-temp {
9408
- height: 100vh;
9409
  }
9410
 
9411
- [data-hijacking="off"] .premium-vscroll-temp > div {
9412
- opacity: 0;
9413
- top: 0;
9414
- left: 0;
9415
- width: 100%;
9416
- /* Force Hardware Acceleration */
9417
- -webkit-transform: translateZ(0);
9418
- transform: translateZ(0);
9419
- -webkit-backface-visibility: hidden;
9420
- backface-visibility: hidden;
9421
  }
9422
 
9423
- [data-hijacking="off"] .premium-vscroll-temp:first-of-type > div::before {
9424
  display: none;
9425
- position: absolute;
9426
- width: 100%;
9427
- top: 20px;
9428
- z-index: 2;
9429
  }
9430
 
9431
- [data-hijacking="off"][data-animation="rotate"] .premium-vscroll-temp {
9432
- position: relative;
9433
- /* enable a 3D-space for children elements */
9434
- -webkit-perspective: 1800px;
9435
- perspective: 1800px;
9436
  }
9437
 
9438
- [data-hijacking="off"][data-animation="rotate"] .premium-vscroll-temp > div {
9439
- position: absolute;
9440
- -webkit-transform-origin: center bottom;
9441
- -ms-transform-origin: center bottom;
9442
- transform-origin: center bottom;
9443
  }
9444
 
9445
- [data-hijacking="off"][data-animation="rotate"]
9446
- .premium-vscroll-temp:last-of-type
9447
- > div {
9448
- opacity: 1 !important;
9449
- -webkit-transform: translateY(0px) scale(1) rotateX(0deg) !important;
9450
- transform: translateY(0px) scale(1) rotateX(0deg) !important;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9451
  }
9452
 
9453
- [data-hijacking="off"][data-animation="parallax"] .premium-vscroll-temp > div {
9454
- position: fixed;
 
 
 
 
 
 
 
 
 
 
9455
  }
9456
 
9457
- [data-hijacking="off"][data-animation="scaleDown"] .premium-vscroll-temp > div {
9458
- position: fixed;
9459
  }
9460
 
9461
- [data-hijacking="off"] .premium-vscroll-parallax-last {
9462
- -webkit-transform: translateY(0px) scale(1) !important;
9463
- -ms-transform: translateY(0px) scale(1) !important;
9464
- transform: translateY(0px) scale(1) !important;
9465
  }
9466
 
9467
- [data-hijacking="off"] .premium-vscroll-parallax-position {
9468
- position: unset !important;
 
 
 
9469
  }
9470
 
9471
- /********** Premium Woo Products **********/
9472
- /******************************************/
9473
- .ast-single-post .entry-content .premium-woocommerce a {
9474
- text-decoration: none;
9475
- }
9476
-
9477
- .premium-woocommerce .premium-woo-qv-btn {
9478
- cursor: pointer;
9479
- }
9480
-
9481
- .premium-woocommerce:not(.premium-woo-skin-grid-7) li.product .star-rating {
9482
- margin: 0 auto 0.5em;
9483
- }
9484
-
9485
- .premium-woocommerce:not(.premium-woo-skin-grid-10) .premium-woo-product-sale-wrap .premium-woo-product-onsale,
9486
- .premium-woocommerce:not(.premium-woo-skin-grid-10) .premium-woo-product-featured-wrap .premium-woo-product-featured {
9487
- display: block;
9488
- text-align: center;
9489
- color: #fff;
9490
- min-width: 2em;
9491
- min-height: 2em;
9492
- line-height: 2em;
9493
- padding: 0.3em 0.6em;
9494
- margin: 0.5em 0.6em;
9495
- }
9496
-
9497
- .premium-woocommerce .pa-out-of-stock {
9498
- display: block;
9499
- text-align: center;
9500
- color: #fff;
9501
- min-width: 2em;
9502
- min-height: 2em;
9503
- line-height: 2em;
9504
- padding: 0.3em 0.6em;
9505
- margin: 0.5em 0.6em;
9506
- }
9507
-
9508
- .premium-woocommerce .premium-woo-products-inner ul.products {
9509
- -js-display: flex;
9510
- display: -webkit-box;
9511
- display: -webkit-flex;
9512
- display: -moz-box;
9513
- display: -ms-flexbox;
9514
- display: flex;
9515
- margin: 0;
9516
- padding: 0;
9517
- -webkit-flex-wrap: wrap;
9518
- -ms-flex-wrap: wrap;
9519
- flex-wrap: wrap;
9520
- list-style: none outside;
9521
- -webkit-column-gap: 0;
9522
- -moz-column-gap: 0;
9523
- column-gap: 0;
9524
- }
9525
-
9526
- .premium-woocommerce .premium-woo-products-inner ul.products li.product {
9527
- margin: 0 0 10px;
9528
- padding: 0 10px;
9529
- }
9530
-
9531
- .premium-woocommerce.premium-woo-products-inner ul.products li.product .premium-woo-product-wrapper {
9532
- overflow: hidden;
9533
- -webkit-transition: all 0.3s ease-in-out;
9534
- transition: all 0.3s ease-in-out;
9535
- }
9536
-
9537
- .premium-woocommerce .premium-woo-product-category {
9538
- display: block;
9539
- font-size: 0.85em;
9540
- margin-bottom: 0.5em;
9541
- line-height: 1.3;
9542
- }
9543
-
9544
- .premium-woocommerce .woocommerce-loop-product__title {
9545
- margin-bottom: 0.5em;
9546
- font-size: 1em;
9547
- -webkit-transition: all 0.3s ease-in-out;
9548
- transition: all 0.3s ease-in-out;
9549
- }
9550
-
9551
- .premium-woocommerce .woocommerce-loop-product__link {
9552
- position: relative;
9553
- display: block !important;
9554
- overflow: hidden;
9555
- -webkit-transition: all 0.3s ease-in-out;
9556
- transition: all 0.3s ease-in-out;
9557
- }
9558
-
9559
- .premium-woocommerce .premium-woo-ribbon-container,
9560
- .premium-woocommerce .pa-out-of-stock {
9561
- position: absolute;
9562
- z-index: 9;
9563
- }
9564
-
9565
- .premium-woocommerce .premium-woo-ribbon-container {
9566
- top: 0;
9567
- right: 0;
9568
- }
9569
-
9570
- .premium-woocommerce .pa-out-of-stock {
9571
- top: 7px;
9572
- right: 9px;
9573
- margin: 0;
9574
- }
9575
-
9576
- .premium-woocommerce .star-rating {
9577
- display: block;
9578
- float: none;
9579
- margin: 0 auto 0.5em;
9580
- -webkit-backface-visibility: hidden;
9581
- backface-visibility: hidden;
9582
- overflow: hidden;
9583
- position: relative;
9584
- height: 1em;
9585
- line-height: 1;
9586
- font-size: 0.857em;
9587
- width: 5.4em;
9588
- font-family: star;
9589
- }
9590
-
9591
- .premium-woocommerce .star-rating::before {
9592
- content: "\73\73\73\73\73";
9593
- color: #54595f;
9594
- float: right;
9595
- top: 0;
9596
- right: 0;
9597
- position: absolute;
9598
- }
9599
-
9600
- .premium-woocommerce .premium-woo-products-inner ul.products .star-rating span {
9601
- overflow: hidden;
9602
- float: right;
9603
- top: 0;
9604
- right: 0;
9605
- position: absolute;
9606
- padding-top: 1.5em;
9607
- }
9608
-
9609
- .premium-woocommerce .star-rating span::before {
9610
- content: "\53\53\53\53\53";
9611
- color: inherit;
9612
- top: 0;
9613
- position: absolute;
9614
- right: 0;
9615
- }
9616
-
9617
- .premium-woo-product-thumbnail {
9618
- position: relative;
9619
- overflow: hidden;
9620
- }
9621
-
9622
- .premium-woo-product-thumbnail .woocommerce-loop-product__link img {
9623
- margin: 0;
9624
- width: 100%;
9625
- }
9626
-
9627
- .premium-woo-product-sale-wrap,
9628
- .premium-woo-product-featured-wrap {
9629
- margin: 0;
9630
- }
9631
-
9632
- .premium-woocommerce .premium-woo-products-details-wrap {
9633
- padding: 1em 1.2em;
9634
- }
9635
-
9636
- .premium-woocommerce .premium-woo-products-details-wrap .button {
9637
- display: inline-block;
9638
- background-color: #6ec1e4;
9639
- color: #fff;
9640
- margin: 0.5em 0;
9641
- line-height: 1.3;
9642
- padding: 10px 40px;
9643
- font-size: 100%;
9644
- cursor: pointer;
9645
- text-decoration: none;
9646
- overflow: visible;
9647
- font-weight: 700;
9648
- background-image: none;
9649
- border: none;
9650
- -webkit-border-radius: 0px;
9651
- border-radius: 0px;
9652
- -webkit-box-shadow: none;
9653
- box-shadow: none;
9654
- text-shadow: none;
9655
- -webkit-transition: all 0.3s ease-in-out;
9656
- transition: all 0.3s ease-in-out;
9657
- }
9658
-
9659
- .premium-woocommerce li.product .price {
9660
- display: block;
9661
- line-height: 1.3;
9662
- font-weight: 700;
9663
- margin-bottom: 0.5em;
9664
- font-size: 0.9em;
9665
- }
9666
-
9667
- .premium-woocommerce li.product .price del {
9668
- display: inline-block;
9669
- font-weight: 400;
9670
- background: transparent;
9671
- opacity: 1;
9672
- }
9673
-
9674
- .premium-woocommerce li.product .price ins {
9675
- display: inline-block;
9676
- background: transparent;
9677
- text-decoration: none;
9678
- font-weight: inherit;
9679
- }
9680
-
9681
- .premium-woocommerce li.product .price .amount {
9682
- color: inherit !important;
9683
- }
9684
-
9685
- .premium-woocommerce li.product .premium-woo-product-desc p {
9686
- margin: 0;
9687
- }
9688
-
9689
- .premium-woo-product-align-left .premium-woocommerce li.product .star-rating {
9690
- margin-right: auto;
9691
- margin-left: 0;
9692
- }
9693
-
9694
- .premium-woo-product-align-center .premium-woocommerce li.product .star-rating {
9695
- margin-right: auto;
9696
- margin-left: auto;
9697
- }
9698
-
9699
- .premium-woo-product-align-right .premium-woocommerce li.product .star-rating {
9700
- margin-right: 0;
9701
- margin-left: auto;
9702
- }
9703
-
9704
- .premium-woo-products-pagination ul.page-numbers {
9705
- -js-display: flex;
9706
- display: -webkit-box;
9707
- display: -webkit-flex;
9708
- display: -moz-box;
9709
- display: -ms-flexbox;
9710
- display: flex;
9711
- list-style-type: none;
9712
- margin: 0;
9713
- margin-top: 10px;
9714
- padding: 0;
9715
- border: none;
9716
- -webkit-box-pack: center;
9717
- -webkit-justify-content: center;
9718
- -moz-box-pack: center;
9719
- -ms-flex-pack: center;
9720
- justify-content: center;
9721
- }
9722
-
9723
- .premium-woo-products-pagination ul.page-numbers li {
9724
- margin: 0 0 0.4em 0.4em;
9725
- padding: 0;
9726
- text-align: center;
9727
- }
9728
-
9729
- .premium-woo-products-pagination ul.page-numbers li .page-numbers {
9730
- margin: 0;
9731
- text-decoration: none;
9732
- color: #000;
9733
- border: 1px solid #54595f;
9734
- padding: 0;
9735
- line-height: 1;
9736
- font-size: 1em;
9737
- font-weight: 400;
9738
- padding: 0.75em;
9739
- display: block;
9740
- min-width: 2.5em;
9741
- -webkit-transition: all 0.3s ease-in-out;
9742
- transition: all 0.3s ease-in-out;
9743
- }
9744
-
9745
- .premium-woo-products-pagination ul.page-numbers li .page-numbers:hover,
9746
- .premium-woo-products-pagination ul.page-numbers li .page-numbers.current {
9747
- background-color: #54595f;
9748
- color: #fff;
9749
- outline: none;
9750
- }
9751
-
9752
- .premium-woocommerce .premium-loading-feed,
9753
- .premium-woo-quick-view-loader .premium-loading-feed {
9754
- display: block;
9755
- position: absolute;
9756
- width: 100%;
9757
- height: 100%;
9758
- top: 0px;
9759
- right: 0px;
9760
- bottom: 0px;
9761
- left: 0px;
9762
- background: rgba(255, 255, 255, 0.2);
9763
- -js-display: flex;
9764
- display: -webkit-box;
9765
- display: -webkit-flex;
9766
- display: -moz-box;
9767
- display: -ms-flexbox;
9768
- display: flex;
9769
- -webkit-box-align: center;
9770
- -webkit-align-items: center;
9771
- -moz-box-align: center;
9772
- -ms-flex-align: center;
9773
- align-items: center;
9774
- }
9775
-
9776
- /**
9777
- * Image Hover Effects
9778
- */
9779
- .premium-woocommerce .woocommerce-loop-product__link img {
9780
- -webkit-transition: all 0.3s ease-in-out;
9781
- transition: all 0.3s ease-in-out;
9782
- }
9783
-
9784
- .premium-woo-product__hover-zoomout .woocommerce-loop-product__link img {
9785
- -webkit-transform: scale(1.2);
9786
- -ms-transform: scale(1.2);
9787
- transform: scale(1.2);
9788
- }
9789
-
9790
- .premium-woo-product__hover-zoomout li.product:hover .woocommerce-loop-product__link img {
9791
- -webkit-transform: none;
9792
- -ms-transform: none;
9793
- transform: none;
9794
- }
9795
-
9796
- .premium-woo-product__hover-zoomin .woocommerce-loop-product__link img {
9797
- -webkit-transform: none;
9798
- -ms-transform: none;
9799
- transform: none;
9800
- }
9801
-
9802
- .premium-woo-product__hover-zoomin li.product:hover .woocommerce-loop-product__link img {
9803
- -webkit-transform: scale(1.2);
9804
- -ms-transform: scale(1.2);
9805
- transform: scale(1.2);
9806
- }
9807
-
9808
- .premium-woo-product__hover-gray .woocommerce-loop-product__link img {
9809
- -webkit-filter: grayscale(100%);
9810
- filter: grayscale(100%);
9811
- }
9812
-
9813
- .premium-woo-product__hover-gray li.product:hover .woocommerce-loop-product__link img {
9814
- -webkit-filter: grayscale(0%);
9815
- filter: grayscale(0%);
9816
- }
9817
-
9818
- .premium-woo-product__hover-sepia .woocommerce-loop-product__link img {
9819
- -webkit-filter: sepia(30%);
9820
- filter: sepia(30%);
9821
- }
9822
-
9823
- .premium-woo-product__hover-sepia li.product:hover .woocommerce-loop-product__link img {
9824
- -webkit-filter: sepia(0%);
9825
- filter: sepia(0%);
9826
- }
9827
-
9828
- .premium-woo-product__hover-bright .woocommerce-loop-product__link img {
9829
- -webkit-filter: brightness(1);
9830
- filter: brightness(1);
9831
- }
9832
-
9833
- .premium-woo-product__hover-bright li.product:hover .woocommerce-loop-product__link img {
9834
- -webkit-filter: brightness(1.2);
9835
- filter: brightness(1.2);
9836
- }
9837
-
9838
- .premium-woo-product__hover-trans .woocommerce-loop-product__link img {
9839
- -webkit-transform: translateX(15px) scale(1.1);
9840
- -ms-transform: translateX(15px) scale(1.1);
9841
- transform: translateX(15px) scale(1.1);
9842
- }
9843
-
9844
- .premium-woo-product__hover-trans li.product:hover .woocommerce-loop-product__link img {
9845
- -webkit-transform: translateX(0px) scale(1.1);
9846
- -ms-transform: translateX(0px) scale(1.1);
9847
- transform: translateX(0px) scale(1.1);
9848
- }
9849
-
9850
- .premium-woo-product__hover-scale li.product:hover .woocommerce-loop-product__link img {
9851
- -webkit-transform: scaleX(1.3) scaleY(1.3) rotate(-5deg);
9852
- -ms-transform: scaleX(1.3) scaleY(1.3) rotate(-5deg);
9853
- transform: scaleX(1.3) scaleY(1.3) rotate(-5deg);
9854
- }
9855
-
9856
- .premium-woocommerce .premium-woo-product__on_hover {
9857
- position: absolute;
9858
- top: 0;
9859
- left: 0;
9860
- bottom: 0;
9861
- right: 0;
9862
- height: 100%;
9863
- opacity: 0;
9864
- }
9865
-
9866
- .premium-woo-product__hover-swap li.product:hover .premium-woo-product__on_hover {
9867
- opacity: 1;
9868
- }
9869
-
9870
- .premium-woo-skin-grid-1 .premium-woo-qv-btn,
9871
- .premium-woo-skin-grid-3 .premium-woo-qv-btn,
9872
- .premium-woo-skin-grid-4 .premium-woo-qv-btn {
9873
- position: absolute;
9874
- bottom: 0;
9875
- right: 0;
9876
- width: 100%;
9877
- text-align: center;
9878
- padding: 5px;
9879
- background: rgba(2, 2, 2, 0.5);
9880
- color: #fff;
9881
- -webkit-transition: all 0.3s ease-in-out;
9882
- transition: all 0.3s ease-in-out;
9883
- z-index: 2;
9884
- -webkit-transform: translateY(100%);
9885
- -ms-transform: translateY(100%);
9886
- transform: translateY(100%);
9887
- }
9888
-
9889
- .premium-woo-skin-grid-4 .premium-woo-qv-btn {
9890
- -webkit-transition-delay: 0.1s;
9891
- transition-delay: 0.1s;
9892
- }
9893
-
9894
- .premium-woo-skin-grid-1 .premium-woo-qv-icon,
9895
- .premium-woo-skin-grid-3 .premium-woo-qv-icon,
9896
- .premium-woo-skin-grid-4 .premium-woo-qv-icon,
9897
- .premium-woo-skin-grid-6 .premium-woo-qv-icon {
9898
- margin-right: 0.5em;
9899
- }
9900
-
9901
- .premium-woo-product-thumbnail:hover .premium-woo-qv-btn-translate {
9902
- -webkit-transform: translateY(0);
9903
- -ms-transform: translateY(0);
9904
- transform: translateY(0);
9905
- }
9906
-
9907
- .premium-woo-product-wrapper .premium-woo-qv-data {
9908
- position: absolute;
9909
- top: 0;
9910
- right: 0;
9911
- width: 100%;
9912
- height: 100%;
9913
- z-index: 1;
9914
- overflow: hidden;
9915
- cursor: pointer;
9916
- }
9917
-
9918
- /**
9919
- * Skin 1,4
9920
- */
9921
- .premium-woo-skin-grid-1 .premium-woo-product-actions-wrapper,
9922
- .premium-woo-skin-grid-4 .premium-woo-product-actions-wrapper {
9923
- position: absolute;
9924
- top: 0.7em;
9925
- left: 1em;
9926
- -webkit-transform: translate3d(-15px, 0, 0);
9927
- transform: translate3d(-15px, 0, 0);
9928
- -webkit-transition: all 0.3s ease-in-out;
9929
- transition: all 0.3s ease-in-out;
9930
- opacity: 0;
9931
- z-index: 9;
9932
- }
9933
-
9934
- .premium-woocommerce .premium-woo-product-actions-wrapper .premium-woo-cart-btn {
9935
- position: relative;
9936
- display: block;
9937
- margin: 0 0 3px;
9938
- background: #fff;
9939
- text-align: center;
9940
- outline: 0;
9941
- -webkit-transition: all 0.3s ease-in-out;
9942
- transition: all 0.3s ease-in-out;
9943
- }
9944
-
9945
- .premium-woocommerce .premium-woo-product-actions-wrapper .premium-woo-add-cart-icon {
9946
- display: block;
9947
- color: #54595f;
9948
- width: 30px;
9949
- line-height: 30px;
9950
- height: 30px;
9951
- cursor: pointer;
9952
- -webkit-transition: all 0.3s ease-in-out;
9953
- transition: all 0.3s ease-in-out;
9954
- }
9955
-
9956
- .premium-woo-skin-grid-1 li.product:hover .premium-woo-product-actions-wrapper,
9957
- .premium-woo-skin-grid-4 li.product:hover .premium-woo-product-actions-wrapper {
9958
- -webkit-transform: translate3d(-5px, 0, 0);
9959
- transform: translate3d(-5px, 0, 0);
9960
- opacity: 1;
9961
- }
9962
-
9963
- .premium-woocommerce .premium-woo-cart-btn.adding .premium-woo-add-cart-icon {
9964
- -webkit-animation: spin 2s linear infinite;
9965
- animation: spin 2s linear infinite;
9966
- }
9967
-
9968
- .premium-woocommerce .premium-woo-cart-btn.adding .premium-woo-add-cart-icon::before {
9969
- content: "\f013";
9970
- }
9971
-
9972
- .premium-woocommerce .premium-woo-cart-btn.added .premium-woo-add-cart-icon::before {
9973
- content: "\f00c";
9974
- }
9975
-
9976
- /**
9977
- * Skin 2
9978
- */
9979
- .premium-woo-skin-grid-2 li.product .premium-woo-products-details-wrap {
9980
- position: absolute;
9981
- background: #fff;
9982
- bottom: 0;
9983
- right: 0;
9984
- width: 100%;
9985
- z-index: 2;
9986
- padding: 0;
9987
- opacity: 0;
9988
- -webkit-transition: opacity 0.2s, -webkit-transform 0.4s;
9989
- transition: opacity 0.2s, -webkit-transform 0.4s;
9990
- transition: transform 0.4s, opacity 0.2s;
9991
- transition: transform 0.4s, opacity 0.2s, -webkit-transform 0.4s;
9992
- -webkit-transform: translateZ(0) translateY(5px);
9993
- transform: translateZ(0) translateY(5px);
9994
- }
9995
-
9996
- .premium-woo-skin-grid-2 .premium-woo-product-details {
9997
- padding: 15px 0;
9998
- }
9999
-
10000
- .premium-woo-skin-grid-2 li.product:hover .premium-woo-products-details-wrap {
10001
- opacity: 1;
10002
- -webkit-transform: translateZ(0) translateY(0);
10003
- transform: translateZ(0) translateY(0);
10004
- }
10005
-
10006
- .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper {
10007
- position: static;
10008
- -js-display: flex;
10009
- display: -webkit-box;
10010
- display: -webkit-flex;
10011
- display: -moz-box;
10012
- display: -ms-flexbox;
10013
- display: flex;
10014
- -webkit-box-orient: horizontal;
10015
- -webkit-box-direction: reverse;
10016
- -webkit-flex-direction: row-reverse;
10017
- -moz-box-orient: horizontal;
10018
- -moz-box-direction: reverse;
10019
- -ms-flex-direction: row-reverse;
10020
- flex-direction: row-reverse;
10021
- }
10022
-
10023
- .premium-woo-skin-grid-2 .premium-woo-product-actions-wrapper>* {
10024
- -webkit-box-flex: 1;
10025
- -webkit-flex: 1;
10026
- -moz-box-flex: 1;
10027
- -ms-flex: 1;
10028
- flex: 1;
10029
- min-width: 50%;
10030
- }
10031
-
10032
- .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper .button {
10033
- -js-display: flex;
10034
- display: -webkit-box;
10035
- display: -webkit-flex;
10036
- display: -moz-box;
10037
- display: -ms-flexbox;
10038
- display: flex;
10039
- margin: 0;
10040
- text-align: center;
10041
- -webkit-box-pack: center;
10042
- -webkit-justify-content: center;
10043
- -moz-box-pack: center;
10044
- -ms-flex-pack: center;
10045
- justify-content: center;
10046
- -webkit-box-align: center;
10047
- -webkit-align-items: center;
10048
- -moz-box-align: center;
10049
- -ms-flex-align: center;
10050
- align-items: center;
10051
- }
10052
-
10053
- .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper .premium-woo-qv-btn {
10054
- background-color: #54595f;
10055
- }
10056
-
10057
- /**
10058
- * Skin 4
10059
- */
10060
- .premium-woo-skin-grid-4 li.product .premium-woo-products-details-wrap {
10061
- position: absolute;
10062
- right: 0;
10063
- left: 0;
10064
- top: 50%;
10065
- -webkit-transform: scale(0.9) translateZ(0) translateY(-50%);
10066
- transform: scale(0.9) translateZ(0) translateY(-50%);
10067
- text-align: center;
10068
- z-index: 2;
10069
- opacity: 0;
10070
- -webkit-transition: opacity 0.5s, -webkit-transform 0.3s;
10071
- transition: opacity 0.5s, -webkit-transform 0.3s;
10072
- transition: opacity 0.5s, transform 0.3s;
10073
- transition: opacity 0.5s, transform 0.3s, -webkit-transform 0.3s;
10074
- }
10075
-
10076
- .premium-woo-skin-grid-4 li.product .premium-woo-product-overlay,
10077
- .premium-woo-skin-grid-8 li.product .premium-woo-product-overlay {
10078
- position: absolute;
10079
- top: 0;
10080
- right: 0;
10081
- width: 100%;
10082
- height: 100%;
10083
- opacity: 0;
10084
- visibility: hidden;
10085
- background-color: rgba(27, 27, 23, 0.3);
10086
- -webkit-transition: all 0.25s ease-in-out;
10087
- transition: all 0.25s ease-in-out;
10088
- }
10089
-
10090
- .premium-woo-skin-grid-4 li.product:hover .premium-woo-product-overlay,
10091
- .premium-woo-skin-grid-8 li.product:hover .premium-woo-product-overlay {
10092
- opacity: 1;
10093
- visibility: visible;
10094
- z-index: 1;
10095
- }
10096
-
10097
- .premium-woo-skin-grid-4 li.product:hover .premium-woo-products-details-wrap {
10098
- -webkit-transform: scale(1) translateZ(0) translateY(-50%);
10099
- transform: scale(1) translateZ(0) translateY(-50%);
10100
- opacity: 1;
10101
- }
10102
-
10103
- /**
10104
- * Skin 5
10105
- */
10106
- .premium-woo-skin-grid-5 li.product .premium-woo-product-actions-wrapper {
10107
- -js-display: flex;
10108
- display: -webkit-box;
10109
- display: -webkit-flex;
10110
- display: -moz-box;
10111
- display: -ms-flexbox;
10112
- display: flex;
10113
- }
10114
-
10115
- .premium-woo-skin-grid-5 li.product .premium-woo-product-actions-wrapper .premium-woo-qv-btn {
10116
- -js-display: flex;
10117
- display: -webkit-box;
10118
- display: -webkit-flex;
10119
- display: -moz-box;
10120
- display: -ms-flexbox;
10121
- display: flex;
10122
- -webkit-box-align: center;
10123
- -webkit-align-items: center;
10124
- -moz-box-align: center;
10125
- -ms-flex-align: center;
10126
- align-items: center;
10127
- background-color: #54595f;
10128
- padding: 10px;
10129
- -webkit-transition: all 0.25s ease 0s;
10130
- transition: all 0.25s ease 0s;
10131
- }
10132
-
10133
- .premium-woo-skin-grid-5 li.product .premium-woo-products-details-wrap {
10134
- width: 75%;
10135
- }
10136
-
10137
- .premium-woo-skin-grid-5 .premium-woo-product-wrapper {
10138
- -js-display: flex;
10139
- display: -webkit-box;
10140
- display: -webkit-flex;
10141
- display: -moz-box;
10142
- display: -ms-flexbox;
10143
- display: flex;
10144
- -webkit-box-align: center;
10145
- -webkit-align-items: center;
10146
- -moz-box-align: center;
10147
- -ms-flex-align: center;
10148
- align-items: center;
10149
- }
10150
-
10151
- .premium-woo-product-align-right .premium-woo-skin-grid-5 .premium-woo-product-actions-wrapper {
10152
- -webkit-box-pack: end;
10153
- -webkit-justify-content: flex-end;
10154
- -moz-box-pack: end;
10155
- -ms-flex-pack: end;
10156
- justify-content: flex-end;
10157
- }
10158
-
10159
- .premium-woo-product-align-center .premium-woo-skin-grid-5 .premium-woo-product-actions-wrapper {
10160
- -webkit-box-pack: center;
10161
- -webkit-justify-content: center;
10162
- -moz-box-pack: center;
10163
- -ms-flex-pack: center;
10164
- justify-content: center;
10165
- }
10166
-
10167
- /**
10168
- * Skin 6
10169
- */
10170
- .premium-woo-skin-grid-6 .premium-woo-qv-btn {
10171
- position: absolute;
10172
- top: 50%;
10173
- right: 50%;
10174
- min-width: 40%;
10175
- text-align: center;
10176
- padding: 5px;
10177
- background: rgba(2, 2, 2, 0.5);
10178
- color: #fff;
10179
- -webkit-transform: translate(50%, -50%);
10180
- -ms-transform: translate(50%, -50%);
10181
- transform: translate(50%, -50%);
10182
- opacity: 0;
10183
- visibility: hidden;
10184
- -webkit-transition: all 0.3s ease-in-out;
10185
- transition: all 0.3s ease-in-out;
10186
- cursor: pointer;
10187
- z-index: 2;
10188
- }
10189
-
10190
- .premium-woo-skin-grid-6 li.product:hover .premium-woo-qv-btn {
10191
- opacity: 1;
10192
- visibility: visible;
10193
- }
10194
-
10195
- .premium-woo-product-align-right .premium-woo-skin-grid-6 li.product .premium-woo-product-info .star-rating,
10196
- .premium-woo-product-align-left .premium-woo-skin-grid-6 li.product .premium-woo-product-info .star-rating,
10197
- .premium-woo-product-align-right .premium-woo-skin-grid-7 li.product .premium-woo-product-info .star-rating,
10198
- .premium-woo-product-align-left .premium-woo-skin-grid-7 li.product .premium-woo-product-info .star-rating {
10199
- margin: 0;
10200
- }
10201
-
10202
- .premium-woo-skin-grid-6 li.product .premium-woo-product-info {
10203
- -js-display: flex;
10204
- display: -webkit-box;
10205
- display: -webkit-flex;
10206
- display: -moz-box;
10207
- display: -ms-flexbox;
10208
- display: flex;
10209
- -webkit-box-pack: justify;
10210
- -webkit-justify-content: space-between;
10211
- -moz-box-pack: justify;
10212
- -ms-flex-pack: justify;
10213
- justify-content: space-between;
10214
- }
10215
-
10216
- .premium-woo-product-align-center .premium-woocommerce li.product .premium-woo-product-info {
10217
- -webkit-box-orient: vertical;
10218
- -webkit-box-direction: normal;
10219
- -webkit-flex-direction: column;
10220
- -moz-box-orient: vertical;
10221
- -moz-box-direction: normal;
10222
- -ms-flex-direction: column;
10223
- flex-direction: column;
10224
- }
10225
-
10226
- .premium-woo-product-align-right .premium-woocommerce li.product .premium-woo-product-info {
10227
- -webkit-box-orient: horizontal;
10228
- -webkit-box-direction: reverse;
10229
- -webkit-flex-direction: row-reverse;
10230
- -moz-box-orient: horizontal;
10231
- -moz-box-direction: reverse;
10232
- -ms-flex-direction: row-reverse;
10233
- flex-direction: row-reverse;
10234
- }
10235
-
10236
- .premium-woo-skin-grid-6 li.product .premium-woo-product-gallery-images {
10237
- -js-display: flex;
10238
- display: -webkit-box;
10239
- display: -webkit-flex;
10240
- display: -moz-box;
10241
- display: -ms-flexbox;
10242
- display: flex;
10243
- position: absolute;
10244
- bottom: 10px;
10245
- width: 100%;
10246
- -webkit-box-pack: center;
10247
- -webkit-justify-content: center;
10248
- -moz-box-pack: center;
10249
- -ms-flex-pack: center;
10250
- justify-content: center;
10251
- }
10252
-
10253
- .premium-woo-product-gallery-images .premium-woo-product__gallery_image {
10254
- width: 20%;
10255
- margin: 0 0.2em;
10256
- border: 2px solid #aaa;
10257
- cursor: pointer;
10258
- }
10259
-
10260
- /**
10261
- * Metro
10262
- */
10263
- /*.premium-woo-grid-style1 ul.products li.product {
10264
- width: 25%;
10265
- }*/
10266
- .premium-woo-products-metro li.product .premium-woo-product-thumbnail img,
10267
- .premium-woo-products-metro li.product .premium-woo-product-wrapper,
10268
- .premium-woo-products-metro li.product .premium-woo-product-thumbnail,
10269
- .premium-woo-products-metro li.product .woocommerce-LoopProduct-link {
10270
- height: 100%;
10271
- }
10272
-
10273
- .premium-woo-products-metro ul.products li.product {
10274
- margin-bottom: 0;
10275
- }
10276
-
10277
- .premium-woo-products-metro li.product .premium-woo-product-thumbnail img {
10278
- -o-object-fit: cover;
10279
- object-fit: cover;
10280
- }
10281
-
10282
- /*
10283
- * Carousel
10284
- */
10285
- .premium-carousel-hidden {
10286
- opacity: 0;
10287
- visibility: hidden;
10288
- }
10289
-
10290
- .premium-woocommerce:not(.premium-woo-skin-grid-7) .slick-arrow {
10291
- -webkit-border-radius: 50%;
10292
- border-radius: 50%;
10293
- }
10294
-
10295
- .premium-woocommerce ul.slick-dots {
10296
- width: 100%;
10297
- }
10298
-
10299
- /*
10300
- * Quick View Html/body
10301
- */
10302
- html.premium-woo-qv-opened,
10303
- html.premium-woo-qv-opened body {
10304
- overflow: hidden;
10305
- }
10306
-
10307
- /**
10308
- * Quick View Modal
10309
- */
10310
- .premium-woo-quick-view-back {
10311
- position: fixed;
10312
- visibility: hidden;
10313
- overflow: hidden;
10314
- background: rgba(2, 2, 2, 0.5);
10315
- opacity: 0;
10316
- -webkit-transition: opacity 0.25s;
10317
- transition: opacity 0.25s;
10318
- z-index: 999;
10319
- }
10320
-
10321
- .premium-woo-quick-view-active {
10322
- top: 0;
10323
- right: 0;
10324
- width: 100%;
10325
- height: 100%;
10326
- opacity: 1;
10327
- visibility: visible;
10328
- }
10329
-
10330
- #premium-woo-quick-view-modal {
10331
- position: fixed;
10332
- visibility: hidden;
10333
- opacity: 0;
10334
- top: 0;
10335
- right: 0;
10336
- width: 100%;
10337
- height: 100%;
10338
- z-index: 1400;
10339
- text-align: center;
10340
- -webkit-transition: all 0.3s;
10341
- transition: all 0.3s;
10342
- overflow-x: hidden;
10343
- overflow-y: auto;
10344
- }
10345
-
10346
- #premium-woo-quick-view-modal.active {
10347
- visibility: visible;
10348
- opacity: 1;
10349
- }
10350
-
10351
- #premium-woo-quick-view-modal.active .premium-woo-content-main {
10352
- -webkit-transform: translateY(0);
10353
- -ms-transform: translateY(0);
10354
- transform: translateY(0);
10355
- opacity: 1;
10356
- width: 100%;
10357
- }
10358
-
10359
- #premium-woo-quick-view-modal .premium-woo-content-main-wrapper {
10360
- position: absolute;
10361
- width: 100%;
10362
- height: 100%;
10363
- top: 0;
10364
- right: 0;
10365
- text-align: center;
10366
- padding: 30px;
10367
- -js-display: flex;
10368
- display: -webkit-box;
10369
- display: -webkit-flex;
10370
- display: -moz-box;
10371
- display: -ms-flexbox;
10372
- display: flex;
10373
- -webkit-box-align: center;
10374
- -webkit-align-items: center;
10375
- -moz-box-align: center;
10376
- -ms-flex-align: center;
10377
- align-items: center;
10378
- }
10379
-
10380
- #premium-woo-quick-view-modal .premium-woo-content-main {
10381
- position: relative;
10382
- pointer-events: none;
10383
- max-width: 100%;
10384
- text-align: right;
10385
- z-index: 1045;
10386
- -webkit-transform: translateY(-30px);
10387
- -ms-transform: translateY(-30px);
10388
- transform: translateY(-30px);
10389
- opacity: 0;
10390
- -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
10391
- transition: opacity 0.3s, -webkit-transform 0.5s;
10392
- transition: transform 0.5s, opacity 0.3s;
10393
- transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
10394
- margin: 0 auto;
10395
- }
10396
-
10397
- #premium-woo-quick-view-modal .premium-woo-lightbox-content {
10398
- position: relative;
10399
- display: table;
10400
- pointer-events: auto;
10401
- background-color: #fff;
10402
- max-width: 975px;
10403
- margin: 20px auto;
10404
- -webkit-transform: translateZ(0);
10405
- transform: translateZ(0);
10406
- -webkit-box-shadow: -3px 3px 20px 0 rgba(0, 0, 0, 0.15);
10407
- box-shadow: -3px 3px 20px 0 rgba(0, 0, 0, 0.15);
10408
- overflow: hidden;
10409
- }
10410
-
10411
- #premium-woo-quick-view-modal .summary {
10412
- width: 50%;
10413
- margin: 0;
10414
- padding: 30px;
10415
- float: right;
10416
- -webkit-box-sizing: border-box;
10417
- -moz-box-sizing: border-box;
10418
- box-sizing: border-box;
10419
- }
10420
-
10421
- #premium-woo-quick-view-modal .summary .quantity {
10422
- min-width: auto;
10423
- }
10424
-
10425
- #premium-woo-quick-view-modal .summary .quantity input.qty {
10426
- width: 54px;
10427
- -webkit-appearance: button;
10428
- -moz-appearance: button;
10429
- appearance: button;
10430
- }
10431
-
10432
- #premium-woo-quick-view-modal .summary .quantity input[type="number"]::-webkit-inner-spin-button,
10433
- #premium-woo-quick-view-modal .summary .quantity input[type="number"]::-webkit-outer-spin-button {
10434
- display: unset;
10435
- }
10436
-
10437
- #premium-woo-quick-view-modal .woocommerce-product-details__short-description p {
10438
- margin: 0;
10439
- }
10440
-
10441
- #premium-woo-quick-view-close {
10442
- position: absolute;
10443
- font-size: 22px;
10444
- top: 10px;
10445
- left: 10px;
10446
- width: 22px;
10447
- height: 22px;
10448
- line-height: 22px;
10449
- opacity: 0.7;
10450
- text-align: center;
10451
- z-index: 2;
10452
- color: #000;
10453
- }
10454
-
10455
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider {
10456
- position: relative;
10457
- }
10458
-
10459
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider li {
10460
- list-style: none;
10461
- }
10462
-
10463
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav {
10464
- margin: 0;
10465
- padding: 0;
10466
- width: 100%;
10467
- position: absolute;
10468
- bottom: 10px;
10469
- text-align: center;
10470
- direction: ltr;
10471
- }
10472
-
10473
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li {
10474
- margin: 0 6px;
10475
- display: inline-block;
10476
- vertical-align: middle;
10477
- }
10478
-
10479
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a {
10480
- width: 11px;
10481
- height: 11px;
10482
- display: block;
10483
- background: #666;
10484
- background: rgba(0, 0, 0, 0.5);
10485
- cursor: pointer;
10486
- text-indent: -9999px;
10487
- -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
10488
- box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
10489
- -webkit-border-radius: 20px;
10490
- border-radius: 20px;
10491
- }
10492
-
10493
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a.flex-active {
10494
- background: rgba(0, 0, 0, 0.9);
10495
- cursor: default;
10496
- }
10497
-
10498
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a:focus {
10499
- outline: none;
10500
- }
10501
-
10502
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider img {
10503
- -o-object-fit: cover;
10504
- object-fit: cover;
10505
- width: 100%;
10506
- }
10507
-
10508
- #premium-woo-quick-view-content div.images {
10509
- width: 50%;
10510
- float: right;
10511
- opacity: 1 !important;
10512
- margin: 0;
10513
- }
10514
-
10515
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav {
10516
- margin: 0;
10517
- padding: 0;
10518
- list-style: none;
10519
- direction: ltr;
10520
- }
10521
-
10522
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav a {
10523
- text-decoration: none;
10524
- display: block;
10525
- width: 14px;
10526
- height: 32px;
10527
- font-size: 32px;
10528
- line-height: 32px;
10529
- margin: -20px 0 0;
10530
- position: absolute;
10531
- top: 50%;
10532
- z-index: 10;
10533
- overflow: hidden;
10534
- cursor: pointer;
10535
- color: rgba(0, 0, 0, 0.8);
10536
- text-shadow: -1px 1px 0 rgba(255, 255, 255, 0.3);
10537
- -webkit-transition: all 0.3s ease-in-out;
10538
- transition: all 0.3s ease-in-out;
10539
- }
10540
-
10541
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next,
10542
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev {
10543
- display: inline-block;
10544
- font-family: "Font Awesome 5 Free";
10545
- font-weight: 900;
10546
- text-rendering: auto;
10547
- -webkit-font-smoothing: antialiased;
10548
- -moz-osx-font-smoothing: grayscale;
10549
- }
10550
-
10551
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev {
10552
- left: 10px;
10553
- }
10554
-
10555
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next {
10556
- right: 10px;
10557
- }
10558
-
10559
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev::before {
10560
- content: "\f104";
10561
- }
10562
-
10563
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next::before {
10564
- content: "\f105";
10565
- }
10566
-
10567
- .premium-woocommerce li.product .added_to_cart.wc-forward {
10568
- display: none;
10569
- }
10570
-
10571
- .premium-woo-atc-button .add_to_cart_button .premium-woo-cart-loader {
10572
- -webkit-animation: spin 2s linear infinite;
10573
- animation: spin 2s linear infinite;
10574
- margin-right: 5px;
10575
- vertical-align: baseline;
10576
- }
10577
-
10578
- /*
10579
- * Load More Button
10580
- */
10581
- .premium-woo-load-more {
10582
- position: relative;
10583
- }
10584
-
10585
- .premium-woo-load-more .premium-woo-load-more-btn {
10586
- -webkit-box-shadow: none;
10587
- box-shadow: none;
10588
- text-shadow: none;
10589
- border: none;
10590
- outline: none;
10591
- -webkit-box-align: center;
10592
- -webkit-align-items: center;
10593
- -moz-box-align: center;
10594
- -ms-flex-align: center;
10595
- align-items: center;
10596
- vertical-align: bottom;
10597
- cursor: pointer;
10598
- line-height: 1;
10599
- font-style: normal;
10600
- font-weight: normal;
10601
- background-image: none;
10602
- color: #fff;
10603
- -webkit-transition: all 0.3s ease-in-out;
10604
- transition: all 0.3s ease-in-out;
10605
- padding: 10px 20px;
10606
- }
10607
-
10608
- .premium-woo-load-more-btn {
10609
- -js-display: inline-flex;
10610
- display: -webkit-inline-box;
10611
- display: -webkit-inline-flex;
10612
- display: -moz-inline-box;
10613
- display: -ms-inline-flexbox;
10614
- display: inline-flex;
10615
- -webkit-box-align: center;
10616
- -webkit-align-items: center;
10617
- -moz-box-align: center;
10618
- -ms-flex-align: center;
10619
- align-items: center;
10620
- }
10621
-
10622
- .premium-woo-load-more-btn span {
10623
- margin-right: 3px;
10624
- }
10625
-
10626
- .premium-woo-load-more-btn .premium-loader {
10627
- display: inline-block;
10628
- width: 20px;
10629
- height: 20px;
10630
- }
10631
-
10632
- @media (min-width: 545px) {
10633
- #premium-woo-quick-view-content div.summary {
10634
- content: "544";
10635
- overflow-y: auto;
10636
- }
10637
- }
10638
-
10639
- @media (max-width: 544px) {
10640
- #premium-woo-quick-view-content .premium-woo-lightbox-content {
10641
- display: block;
10642
- }
10643
-
10644
- #premium-woo-quick-view-content div.images,
10645
- #premium-woo-quick-view-content div.summary {
10646
- width: 100%;
10647
- float: none;
10648
- }
10649
  }
 
10650
  /*
10651
  * Common Title/Dual Heading
10652
  */
@@ -10919,6 +10926,25 @@ html.premium-woo-qv-opened body {
10919
  height: 0;
10920
  }
10921
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10922
  /**Animation*/
10923
  @-webkit-keyframes spin {
10924
  0% {
1
  @charset "UTF-8";
2
+
3
+ @font-face {
4
+ font-family: "pa-elements";
5
+ src: url("../../editor/fonts/pa-elements.eot?vcwy2s");
6
+ src: url("../../editor/fonts/pa-elements.eot?vcwy2s#iefix") format("embedded-opentype"), url("../../editor/fonts/pa-elements.ttf?vcwy2s") format("truetype"), url("../../editor/fonts/pa-elements.woff?vcwy2s") format("woff"), url("../../editor/fonts/pa-elements.svg?vcwy2s#pa-elements") format("svg");
7
+ font-weight: normal;
8
+ font-style: normal;
9
  }
10
+
11
  /**************** Premium Banner ****************/
12
  /************************************************/
13
  .elementor-widget-premium-addon-banner {
1487
  -webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
1488
  transform: translate3d(-10px, 0, 0) scale(1.1);
1489
  }
1490
+
1491
  /**************** Premium Blog *****************/
1492
  /***********************************************/
1493
  .premium-blog-thumb-effect-wrapper {
2308
  [dir="rtl"] .premium-blog-wrap.slick-slider .slick-track {
2309
  direction: ltr;
2310
  }
2311
+
2312
  /**************** Premium Button ***********************/
2313
  /*******************************************************/
2314
  .premium-button {
2315
+ -js-display: inline-flex;
2316
+ display: -webkit-inline-box;
2317
+ display: -webkit-inline-flex;
2318
+ display: -moz-inline-box;
2319
+ display: -ms-inline-flexbox;
2320
+ display: inline-flex;
2321
+ position: relative;
2322
+ overflow: hidden;
2323
+ -webkit-backface-visibility: hidden;
2324
+ backface-visibility: hidden;
2325
+ -webkit-transform: translate3d(0, 0, 0);
2326
+ transform: translate3d(0, 0, 0);
2327
+ cursor: pointer;
2328
+ -webkit-transition: all 0.2s ease-in-out !important;
2329
+ transition: all 0.2s ease-in-out !important;
2330
  }
2331
 
2332
  .premium-button-style1,
2333
  .premium-button-style2,
2334
  .premium-button-style5,
2335
  .premium-button-style7 {
2336
+ display: inline-block;
2337
+ vertical-align: middle;
2338
+ -webkit-transform: perspective(1px) translateZ(0);
2339
+ transform: perspective(1px) translateZ(0);
2340
+ -webkit-box-shadow: 0 0 1px transparent;
2341
+ box-shadow: 0 0 1px transparent;
2342
+ position: relative;
2343
+ -webkit-transition-property: color;
2344
+ transition-property: color;
2345
+ -webkit-transition-duration: 0.15s;
2346
+ transition-duration: 0.15s;
2347
  }
2348
 
2349
  .premium-button-style1:before,
2350
  .premium-button-style2:before,
2351
  .premium-button-style5:before {
2352
+ content: "";
2353
+ position: absolute;
2354
+ z-index: -1;
2355
+ top: 0;
2356
+ right: 0;
2357
+ left: 0;
2358
+ bottom: 0;
2359
+ -webkit-transform: scaleY(0);
2360
+ -ms-transform: scaleY(0);
2361
+ transform: scaleY(0);
2362
+ -webkit-transform-origin: 50% 0;
2363
+ -ms-transform-origin: 50% 0;
2364
+ transform-origin: 50% 0;
2365
+ -webkit-transition-property: -webkit-transform;
2366
+ transition-property: -webkit-transform;
2367
+ transition-property: transform;
2368
+ transition-property: transform, -webkit-transform;
2369
+ -webkit-transition-duration: 0.15s;
2370
+ transition-duration: 0.15s;
2371
+ -webkit-transition-timing-function: ease-out;
2372
+ transition-timing-function: ease-out;
2373
  }
2374
 
2375
  .premium-button-style5-radialin:before,
2376
  .premium-button-style5-radialout:before {
2377
+ -webkit-transform-origin: 50%;
2378
+ -ms-transform-origin: 50%;
2379
+ transform-origin: 50%;
2380
+ -webkit-border-radius: 100%;
2381
+ border-radius: 100%;
2382
+ -webkit-transform: scale(0);
2383
+ -ms-transform: scale(0);
2384
+ transform: scale(0);
2385
  }
2386
 
2387
  .premium-button-style5-radialin:before {
2388
+ -webkit-transform: scale(2);
2389
+ -ms-transform: scale(2);
2390
+ transform: scale(2);
2391
  }
2392
 
2393
  .premium-button-style5-rectin:before {
2394
+ -webkit-transform-origin: 50%;
2395
+ -ms-transform-origin: 50%;
2396
+ transform-origin: 50%;
2397
+ -webkit-transform: scale(1);
2398
+ -ms-transform: scale(1);
2399
+ transform: scale(1);
2400
  }
2401
 
2402
  .premium-button-style5-rectout:before {
2403
+ -webkit-transform-origin: 50%;
2404
+ -ms-transform-origin: 50%;
2405
+ transform-origin: 50%;
2406
+ -webkit-transform: scale(0);
2407
+ -ms-transform: scale(0);
2408
+ transform: scale(0);
2409
  }
2410
 
2411
  .premium-button-style5-rectout:hover:before {
2412
+ -webkit-transform: scale(1);
2413
+ -ms-transform: scale(1);
2414
+ transform: scale(1);
2415
  }
2416
 
2417
  .premium-button-style5-rectin:hover:before {
2418
+ -webkit-transform: scale(0);
2419
+ -ms-transform: scale(0);
2420
+ transform: scale(0);
2421
  }
2422
 
2423
  .premium-button-style5-radialout:hover:before {
2424
+ -webkit-transform: scale(2);
2425
+ -ms-transform: scale(2);
2426
+ transform: scale(2);
2427
  }
2428
 
2429
  .premium-button-style5-radialin:hover:before {
2430
+ -webkit-transform: scale(0);
2431
+ -ms-transform: scale(0);
2432
+ transform: scale(0);
2433
  }
2434
 
2435
  .premium-button-style1-top:before {
2436
+ -webkit-transform-origin: 50% 100%;
2437
+ -ms-transform-origin: 50% 100%;
2438
+ transform-origin: 50% 100%;
2439
  }
2440
 
2441
  .premium-button-style1-right:before {
2442
+ -webkit-transform: scaleX(0);
2443
+ -ms-transform: scaleX(0);
2444
+ transform: scaleX(0);
2445
+ -webkit-transform-origin: 100% 50%;
2446
+ -ms-transform-origin: 100% 50%;
2447
+ transform-origin: 100% 50%;
2448
  }
2449
 
2450
  .premium-button-style1-left:before {
2451
+ -webkit-transform: scaleX(0);
2452
+ -ms-transform: scaleX(0);
2453
+ transform: scaleX(0);
2454
+ -webkit-transform-origin: 0% 50%;
2455
+ -ms-transform-origin: 0% 50%;
2456
+ transform-origin: 0% 50%;
2457
  }
2458
 
2459
  .premium-button-style2-shutouthor:before,
2460
  .premium-button-style2-scshutoutver:before {
2461
+ -webkit-transform: scaleY(0);
2462
+ -ms-transform: scaleY(0);
2463
+ transform: scaleY(0);
2464
+ -webkit-transform-origin: 0% 50%;
2465
+ -ms-transform-origin: 0% 50%;
2466
+ transform-origin: 0% 50%;
2467
  }
2468
 
2469
  .premium-button-style2-shutoutver:before,
2470
  .premium-button-style2-scshutouthor:before {
2471
+ -webkit-transform: scaleX(0);
2472
+ -ms-transform: scaleX(0);
2473
+ transform: scaleX(0);
2474
+ -webkit-transform-origin: 50% 50%;
2475
+ -ms-transform-origin: 50% 50%;
2476
+ transform-origin: 50% 50%;
2477
  }
2478
 
2479
  .premium-button-style2-shutinhor:before {
2480
+ -webkit-transform: scaleX(1);
2481
+ -ms-transform: scaleX(1);
2482
+ transform: scaleX(1);
2483
+ -webkit-transform-origin: 50%;
2484
+ -ms-transform-origin: 50%;
2485
+ transform-origin: 50%;
2486
  }
2487
 
2488
  .premium-button-style2-shutinver:before {
2489
+ -webkit-transform: scaleY(1);
2490
+ -ms-transform: scaleY(1);
2491
+ transform: scaleY(1);
2492
+ -webkit-transform-origin: 50%;
2493
+ -ms-transform-origin: 50%;
2494
+ transform-origin: 50%;
2495
  }
2496
 
2497
  .premium-button-style1-bottom:hover:before,
2498
  .premium-button-style1-top:hover:before {
2499
+ -webkit-transform: scaleY(1);
2500
+ -ms-transform: scaleY(1);
2501
+ transform: scaleY(1);
2502
  }
2503
 
2504
  .premium-button-style1-left:hover:before,
2505
  .premium-button-style1-right:hover:before,
2506
  .premium-button-style2-shutouthor:hover:before,
2507
  .premium-button-style2-shutoutver:hover:before {
2508
+ -webkit-transform: scaleX(1);
2509
+ -ms-transform: scaleX(1);
2510
+ transform: scaleX(1);
2511
  }
2512
 
2513
  .premium-button-style2-shutinhor:hover:before {
2514
+ -webkit-transform: scaleX(0);
2515
+ -ms-transform: scaleX(0);
2516
+ transform: scaleX(0);
2517
  }
2518
 
2519
  .premium-button-style2-shutinver:hover:before {
2520
+ -webkit-transform: scaleY(0);
2521
+ -ms-transform: scaleY(0);
2522
+ transform: scaleY(0);
2523
  }
2524
 
2525
  .premium-button-style2-scshutouthor:hover:before {
2526
+ -webkit-transform: scaleX(0.9);
2527
+ -ms-transform: scaleX(0.9);
2528
+ transform: scaleX(0.9);
2529
  }
2530
 
2531
  .premium-button-style2-scshutoutver:hover:before {
2532
+ -webkit-transform: scaleY(0.8);
2533
+ -ms-transform: scaleY(0.8);
2534
+ transform: scaleY(0.8);
2535
  }
2536
 
2537
  /*Diagonal*/
2538
  .premium-button-style2-dshutinhor:before {
2539
+ top: 50%;
2540
+ right: 50%;
2541
+ width: 120%;
2542
+ height: 0%;
2543
+ -webkit-transform: translateX(50%) translateY(-50%) rotate(45deg);
2544
+ -ms-transform: translateX(50%) translateY(-50%) rotate(45deg);
2545
+ transform: translateX(50%) translateY(-50%) rotate(45deg);
2546
+ -webkit-transform-origin: 50%;
2547
+ -ms-transform-origin: 50%;
2548
+ transform-origin: 50%;
2549
+ -webkit-transition-property: all;
2550
+ transition-property: all;
2551
  }
2552
 
2553
  .premium-button-style2-dshutinver:before {
2554
+ top: 50%;
2555
+ right: 50%;
2556
+ width: 120%;
2557
+ height: 0%;
2558
+ -webkit-transform-origin: 50%;
2559
+ -ms-transform-origin: 50%;
2560
+ transform-origin: 50%;
2561
+ -webkit-transition-property: all;
2562
+ transition-property: all;
2563
+ -webkit-transform: translateX(50%) translateY(-50%) rotate(-45deg);
2564
+ -ms-transform: translateX(50%) translateY(-50%) rotate(-45deg);
2565
+ transform: translateX(50%) translateY(-50%) rotate(-45deg);
2566
  }
2567
 
2568
  .premium-button-style2-dshutinhor:hover:before,
2569
  .premium-button-style2-dshutinver:hover:before {
2570
+ height: 220%;
2571
  }
2572
 
2573
  .premium-button-style3-before i,
2574
  .premium-button-style3-before svg {
2575
+ opacity: 0;
2576
+ -webkit-transform: translateX(5px);
2577
+ -ms-transform: translateX(5px);
2578
+ transform: translateX(5px);
2579
+ -webkit-transition: all 0.5s ease-in-out;
2580
+ transition: all 0.5s ease-in-out;
2581
  }
2582
 
2583
  .premium-button-style3-after i,
2584
  .premium-button-style3-after svg {
2585
+ opacity: 0;
2586
+ -webkit-transform: translateX(5px);
2587
+ -ms-transform: translateX(5px);
2588
+ transform: translateX(5px);
2589
+ -webkit-transition: all 0.5s ease-in-out;
2590
+ transition: all 0.5s ease-in-out;
2591
+ -webkit-transform: translateX(-5px);
2592
+ -ms-transform: translateX(-5px);
2593
+ transform: translateX(-5px);
2594
  }
2595
 
2596
  .premium-button-style3-after:hover i,
2597
  .premium-button-style3-after:hover svg {
2598
+ opacity: 1;
2599
  }
2600
 
2601
  .premium-button-style3-before:hover i,
2602
  .premium-button-style3-before:hover svg {
2603
+ opacity: 1;
2604
  }
2605
 
2606
  .premium-button-text-icon-wrapper {
2607
+ width: 100%;
2608
+ -js-display: flex;
2609
+ display: -webkit-box;
2610
+ display: -webkit-flex;
2611
+ display: -moz-box;
2612
+ display: -ms-flexbox;
2613
+ display: flex;
2614
+ -webkit-box-pack: center;
2615
+ -webkit-justify-content: center;
2616
+ -moz-box-pack: center;
2617
+ -ms-flex-pack: center;
2618
+ justify-content: center;
2619
+ -webkit-box-align: center;
2620
+ -webkit-align-items: center;
2621
+ -moz-box-align: center;
2622
+ -ms-flex-align: center;
2623
+ align-items: center;
2624
+ -webkit-transition: all 0.2s ease-in-out;
2625
+ transition: all 0.2s ease-in-out;
2626
  }
2627
 
2628
  .premium-button-text-icon-wrapper span,
2629
  .premium-button-text-icon-wrapper i,
2630
  .premium-button-text-icon-wrapper svg {
2631
+ -webkit-transition: all 0.2s ease-in-out;
2632
+ transition: all 0.2s ease-in-out;
2633
  }
2634
 
2635
  .premium-button-style4-icon-wrapper {
2636
+ position: absolute;
2637
+ z-index: 2;
2638
+ width: 100%;
2639
+ text-align: center;
2640
+ -js-display: flex;
2641
+ display: -webkit-box;
2642
+ display: -webkit-flex;
2643
+ display: -moz-box;
2644
+ display: -ms-flexbox;
2645
+ display: flex;
2646
+ -webkit-box-align: center;
2647
+ -webkit-align-items: center;
2648
+ -moz-box-align: center;
2649
+ -ms-flex-align: center;
2650
+ align-items: center;
2651
+ -webkit-box-pack: center;
2652
+ -webkit-justify-content: center;
2653
+ -moz-box-pack: center;
2654
+ -ms-flex-pack: center;
2655
+ justify-content: center;
2656
+ height: 100%;
2657
+ opacity: 0;
2658
+ -webkit-transition: all 0.3s ease-in-out;
2659
+ transition: all 0.3s ease-in-out;
2660
  }
2661
 
2662
  .premium-button-style4-icon-wrapper.top {
2663
+ bottom: -100%;
2664
+ right: 0;
2665
  }
2666
 
2667
  .premium-button-style4-icon-wrapper.bottom {
2668
+ top: -100%;
2669
+ right: 0;
2670
  }
2671
 
2672
  .premium-button-style4-icon-wrapper.left {
2673
+ top: 0;
2674
+ right: -100%;
2675
  }
2676
 
2677
  .premium-button-style4-icon-wrapper.right {
2678
+ top: 0;
2679
+ left: -100%;
2680
  }
2681
 
2682
  .premium-button-style4-bottom:hover .premium-button-style4-icon-wrapper {
2683
+ top: 0;
2684
+ opacity: 1;
2685
  }
2686
 
2687
  .premium-button-style4-top:hover .premium-button-style4-icon-wrapper {
2688
+ bottom: 0;
2689
+ opacity: 1;
2690
  }
2691
 
2692
  .premium-button-style4-left:hover .premium-button-style4-icon-wrapper {
2693
+ right: 0;
2694
+ opacity: 1;
2695
  }
2696
 
2697
  .premium-button-style4-right:hover .premium-button-style4-icon-wrapper {
2698
+ left: 0;
2699
+ opacity: 1;
2700
  }
2701
 
2702
  .premium-button-style4-bottom:hover .premium-button-text-icon-wrapper {
2703
+ -webkit-transform: translateY(100%);
2704
+ -ms-transform: translateY(100%);
2705
+ transform: translateY(100%);
2706
+ opacity: 0;
2707
  }
2708
 
2709
  .premium-button-style4-top:hover .premium-button-text-icon-wrapper {
2710
+ -webkit-transform: translateY(-100%);
2711
+ -ms-transform: translateY(-100%);
2712
+ transform: translateY(-100%);
2713
+ opacity: 0;
2714
  }
2715
 
2716
  .premium-button-style4-left:hover .premium-button-text-icon-wrapper {
2717
+ -webkit-transform: translateX(-100%);
2718
+ -ms-transform: translateX(-100%);
2719
+ transform: translateX(-100%);
2720
+ opacity: 0;
2721
  }
2722
 
2723
  .premium-button-style4-right:hover .premium-button-text-icon-wrapper {
2724
+ -webkit-transform: translateX(100%);
2725
+ -ms-transform: translateX(100%);
2726
+ transform: translateX(100%);
2727
+ opacity: 0;
2728
  }
2729
 
2730
  .premium-button-style6:before {
2731
+ content: "";
2732
+ position: absolute;
2733
+ right: 50%;
2734
+ top: 50%;
2735
+ width: 100px;
2736
+ height: 100px;
2737
+ -webkit-border-radius: 100%;
2738
+ border-radius: 100%;
2739
+ -webkit-transform: translate(50%, -50%) scale(0);
2740
+ -ms-transform: translate(50%, -50%) scale(0);
2741
+ transform: translate(50%, -50%) scale(0);
2742
+ -webkit-transition: all 0.3s ease-in-out;
2743
+ transition: all 0.3s ease-in-out;
2744
  }
2745
 
2746
  .premium-button-style6:hover:before {
2747
+ -webkit-transform: translate(50%, -50%) scale(3);
2748
+ -ms-transform: translate(50%, -50%) scale(3);
2749
+ transform: translate(50%, -50%) scale(3);
2750
  }
2751
 
2752
  .premium-button-style6 .premium-button-text-icon-wrapper {
2753
+ position: relative;
2754
+ z-index: 1;
2755
  }
2756
 
2757
  .premium-button-style7-right .premium-button-text-icon-wrapper:before,
2758
  .premium-button-style7-left .premium-button-text-icon-wrapper:before {
2759
+ -webkit-transition: width 0.3s ease-out 0.15s;
2760
+ transition: width 0.3s ease-out 0.15s;
2761
  }
2762
 
2763
  .premium-button-style7-right .premium-button-text-icon-wrapper:after,
2764
  .premium-button-style7-left .premium-button-text-icon-wrapper:after {
2765
+ -webkit-transition: width 0.3s ease-out 0s;
2766
+ transition: width 0.3s ease-out 0s;
2767
  }
2768
 
2769
  .premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
2770
  .premium-button-style7-top .premium-button-text-icon-wrapper:before {
2771
+ -webkit-transition: height 0.3s ease-out 0.15s;
2772
+ transition: height 0.3s ease-out 0.15s;
2773
  }
2774
 
2775
  .premium-button-style7-bottom .premium-button-text-icon-wrapper:after,
2776
  .premium-button-style7-top .premium-button-text-icon-wrapper:after {
2777
+ -webkit-transition: height 0.3s ease-out 0s;
2778
+ transition: height 0.3s ease-out 0s;
2779
  }
2780
 
2781
  .premium-button[class*="style7"]:hover .premium-button-text-icon-wrapper:before {
2782
+ -webkit-transition-delay: 0s;
2783
+ transition-delay: 0s;
2784
  }
2785
 
2786
  .premium-button[class*="style7"]:hover .premium-button-text-icon-wrapper:after {
2787
+ -webkit-transition-delay: 0.15s;
2788
+ transition-delay: 0.15s;
2789
  }
2790
 
2791
  .premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
2792
  .premium-button-style7-bottom .premium-button-text-icon-wrapper:after {
2793
+ content: "";
2794
+ position: absolute;
2795
+ left: 0;
2796
+ top: 0;
2797
+ right: 0;
2798
+ height: 0;
2799
+ z-index: -1;
2800
  }
2801
 
2802
  .premium-button-style7-top .premium-button-text-icon-wrapper:after,
2803
  .premium-button-style7-top .premium-button-text-icon-wrapper:before {
2804
+ content: "";
2805
+ position: absolute;
2806
+ left: 0;
2807
+ bottom: 0;
2808
+ right: 0;
2809
+ height: 0;
2810
+ z-index: -1;
2811
  }
2812
 
2813
  .premium-button-style7-right .premium-button-text-icon-wrapper:after,
2814
  .premium-button-style7-right .premium-button-text-icon-wrapper:before {
2815
+ content: "";
2816
+ position: absolute;
2817
+ right: 0;
2818
+ top: 0;
2819
+ bottom: 0;
2820
+ width: 0;
2821
+ z-index: -1;
2822
  }
2823
 
2824
  .premium-button-style7-left .premium-button-text-icon-wrapper:after,
2825
  .premium-button-style7-left .premium-button-text-icon-wrapper:before {
2826
+ content: "";
2827
+ position: absolute;
2828
+ left: 0;
2829
+ top: 0;
2830
+ bottom: 0;
2831
+ width: 0;
2832
+ z-index: -1;
2833
  }
2834
 
2835
  .premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:after,
2836
  .premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:before {
2837
+ height: 100%;
2838
+ top: 0;
2839
  }
2840
 
2841
  .premium-button-style7-top:hover .premium-button-text-icon-wrapper:after,
2842
  .premium-button-style7-top:hover .premium-button-text-icon-wrapper:before {
2843
+ height: 100%;
2844
+ bottom: 0;
2845
  }
2846
 
2847
  .premium-button-style7-left:hover .premium-button-text-icon-wrapper:after,
2848
  .premium-button-style7-left:hover .premium-button-text-icon-wrapper:before {
2849
+ width: 100%;
2850
+ left: 0;
2851
  }
2852
 
2853
  .premium-button-style7-right:hover .premium-button-text-icon-wrapper:after,
2854
  .premium-button-style7-right:hover .premium-button-text-icon-wrapper:before {
2855
+ width: 100%;
2856
+ right: 0;
2857
  }
2858
+
2859
  /**************** Premium Carousel **************/
2860
  /************************************************/
2861
  .premium-carousel-wrapper a.carousel-arrow,
3039
  [dir="rtl"] .premium-carousel-inner .slick-slide {
3040
  float: right;
3041
  }
3042
+
3043
  /**************** Premium Contact Form7 **********/
3044
  /*************************************************/
3045
  .premium-contact-form-anim-yes .wpcf7-span::after {
3046
+ display: block;
3047
+ height: 2px;
3048
+ content: "";
3049
+ top: -2px;
3050
+ position: relative;
3051
+ width: 0px;
3052
+ -webkit-transition: all ease-in-out 0.3s;
3053
+ transition: all ease-in-out 0.3s;
3054
  }
3055
 
3056
  .premium-contact-form-anim-yes .wpcf7-span.is-focused::after {
3057
+ width: 100%;
3058
  }
3059
 
3060
  .premium-cf7-container input.wpcf7-submit {
3061
+ -webkit-transition: all 0.3s ease-in-out;
3062
+ transition: all 0.3s ease-in-out;
3063
  }
3064
+
3065
  /************ Premium Countdown ************/
3066
  /*******************************************/
3067
  .premium-countdown {
3068
+ -js-display: flex;
3069
+ display: -webkit-box;
3070
+ display: -webkit-flex;
3071
+ display: -moz-box;
3072
+ display: -ms-flexbox;
3073
+ display: flex;
3074
+ text-align: center;
3075
  }
3076
 
3077
  .countdown-row {
3078
+ display: block;
3079
+ text-align: center;
3080
  }
3081
 
3082
  .countdown .countdown-section {
3083
+ display: inline-block;
3084
+ max-width: 100%;
3085
+ margin-bottom: 15px;
3086
+ -js-display: inline-flex;
3087
+ display: -webkit-inline-box;
3088
+ display: -webkit-inline-flex;
3089
+ display: -moz-inline-box;
3090
+ display: -ms-inline-flexbox;
3091
+ display: inline-flex;
3092
+ -webkit-box-align: center;
3093
+ -webkit-align-items: center;
3094
+ -moz-box-align: center;
3095
+ -ms-flex-align: center;
3096
+ align-items: center;
3097
  }
3098
 
3099
  .countdown .countdown-section:last-child {
3100
+ margin-left: 0;
3101
  }
3102
 
3103
  .countdown span.countdown-amount {
3104
+ font-size: 70px;
3105
+ line-height: 1;
3106
+ padding: 40px;
3107
  }
3108
 
3109
  .countdown .pre_time-mid {
3110
+ display: block;
3111
  }
3112
 
3113
  .premium-countdown-separator-yes .countdown_separator {
3114
+ display: block;
3115
+ margin: 0 50px;
3116
+ font-size: 30px;
3117
  }
3118
 
3119
  .premium-countdown-separator-yes .countdown-row .countdown-section:last-child .countdown_separator,
3120
  .premium-countdown-separator-yes .premium-countdown-block:last-child .countdown_separator {
3121
+ display: none;
3122
  }
3123
 
3124
  /**
3125
  * Digit and unit styles
3126
  */
3127
  .side .countdown-section .countdown-period {
3128
+ vertical-align: bottom;
3129
  }
3130
 
3131
  .countdown .countdown-section .countdown-period {
3132
+ font-size: 17px;
3133
+ line-height: 3em;
3134
  }
3135
 
3136
  .side .countdown-section .countdown-amount,
3137
  .side .countdown-section .countdown-period {
3138
+ display: inline-block;
3139
  }
3140
 
3141
  .side .countdown-section .countdown-amount {
3142
+ margin-left: 5px;
3143
  }
3144
 
3145
  .down .countdown-section .countdown-amount,
3146
  .down .countdown-section .countdown-period {
3147
+ display: block;
3148
  }
3149
 
3150
  /**
3151
  * Flip Layout
3152
  */
3153
  .premium-countdown-flip .premium-countdown-block {
3154
+ text-align: center;
3155
+ -js-display: inline-flex;
3156
+ display: -webkit-inline-box;
3157
+ display: -webkit-inline-flex;
3158
+ display: -moz-inline-box;
3159
+ display: -ms-inline-flexbox;
3160
+ display: inline-flex;
3161
+ -webkit-box-align: center;
3162
+ -webkit-align-items: center;
3163
+ -moz-box-align: center;
3164
+ -ms-flex-align: center;
3165
+ align-items: center;
3166
  }
3167
 
3168
  .premium-countdown-flip .premium-countdown-block:last-child {
3169
+ margin-left: 0;
3170
  }
3171
 
3172
  .premium-countdown-flip .premium-countdown-label {
3173
+ overflow: hidden;
3174
+ color: #1a1a1a;
3175
+ text-transform: uppercase;
3176
  }
3177
 
3178
  .premium-countdown-flip .premium-countdown-figure {
3179
+ position: relative;
3180
+ height: 110px;
3181
+ width: 100px;
3182
+ line-height: 107px;
3183
+ background-color: #fff;
3184
+ -webkit-border-radius: 10px;
3185
+ border-radius: 10px;
3186
+ -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset -2px 4px 0 0 rgba(255, 255, 255, 0.08);
3187
+ box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset -2px 4px 0 0 rgba(255, 255, 255, 0.08);
3188
  }
3189
 
3190
  .premium-countdown-flip .premium-countdown-figure:last-child {
3191
+ margin-left: 0;
3192
  }
3193
 
3194
  .premium-countdown-flip .premium-countdown-figure>span {
3195
+ position: absolute;
3196
+ right: 0;
3197
+ left: 0;
3198
+ margin: auto;
3199
+ font-weight: 700;
3200
  }
3201
 
3202
  .premium-countdown-flip .premium-countdown-figure .top {
3203
+ z-index: 3;
3204
+ -webkit-transform-origin: 50% 100%;
3205
+ -ms-transform-origin: 50% 100%;
3206
+ transform-origin: 50% 100%;
3207
+ -webkit-transform: perspective(200px);
3208
+ transform: perspective(200px);
3209
+ -webkit-backface-visibility: hidden;
3210
+ backface-visibility: hidden;
3211
  }
3212
 
3213
  .premium-countdown-flip .premium-countdown-figure .bottom {
3214
+ z-index: 1;
3215
  }
3216
 
3217
  .premium-countdown-flip .premium-countdown-figure .bottom::before {
3218
+ content: "";
3219
+ position: absolute;
3220
+ display: block;
3221
+ top: 0;
3222
+ right: 0;
3223
+ width: 100%;
3224
+ height: 50%;
3225
+ background-color: rgba(0, 0, 0, 0.02);
3226
+ }
3227
+
3228
+ .premium-countdown-flip .premium-countdown-figure .top-back {
3229
+ -webkit-backface-visibility: hidden;
3230
+ backface-visibility: hidden;
3231
+ z-index: 4;
3232
+ bottom: 0;
3233
+ -webkit-transform-origin: 50% 0;
3234
+ -ms-transform-origin: 50% 0;
3235
+ transform-origin: 50% 0;
3236
+ -webkit-transform: perspective(200px) rotateX(180deg);
3237
+ transform: perspective(200px) rotateX(180deg);
3238
  }
3239
 
3240
  .premium-countdown-flip .premium-countdown-figure .top-back span {
3241
+ position: absolute;
3242
+ top: -100%;
3243
+ right: 0;
3244
+ left: 0;
3245
+ margin: auto;
3246
  }
3247
 
3248
  .premium-countdown-flip .premium-countdown-figure .bottom-back {
3249
+ z-index: 2;
3250
+ top: 0;
3251
  }
3252
 
3253
  .premium-countdown-flip .premium-countdown-figure .bottom-back span {
3254
+ position: absolute;
3255
+ top: 0;
3256
+ right: 0;
3257
+ left: 0;
3258
+ margin: auto;
3259
  }
3260
 
3261
  .premium-countdown-flip .premium-countdown-figure .top,
3262
  .premium-countdown-flip .premium-countdown-figure .bottom-back,
3263
  .premium-countdown-flip .premium-countdown-figure .top-back {
3264
+ height: 50%;
3265
+ overflow: hidden;
3266
+ background-color: #f7f7f7;
3267
+ -webkit-border-top-right-radius: 10px;
3268
+ border-top-right-radius: 10px;
3269
+ -webkit-border-top-left-radius: 10px;
3270
+ border-top-left-radius: 10px;
3271
  }
3272
 
3273
  .premium-countdown-flip .premium-countdown-figure .top-back {
3274
+ -webkit-border-bottom-right-radius: 10px;
3275
+ border-bottom-right-radius: 10px;
3276
+ -webkit-border-bottom-left-radius: 10px;
3277
+ border-bottom-left-radius: 10px;
3278
  }
3279
 
3280
  .premium-countdown-flip .premium-countdown-figure .top::after,
3281
  .premium-countdown-flip .premium-countdown-figure .bottom-back::after {
3282
+ content: "";
3283
+ position: absolute;
3284
+ z-index: -1;
3285
+ right: 0;
3286
+ bottom: 0;
3287
+ width: 100%;
3288
+ height: 100%;
3289
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1);
3290
  }
3291
 
3292
  .side .premium-countdown-figure,
3293
  .side .premium-countdown-label {
3294
+ display: inline-block;
3295
  }
3296
 
3297
  .side .premium-countdown-figure {
3298
+ margin-left: 5px;
3299
  }
3300
 
3301
  .down .premium-countdown-figure,
3302
  .down .premium-countdown-label {
3303
+ display: block;
3304
  }
3305
 
3306
  .down .premium-countdown-label {
3307
+ width: 100%;
3308
  }
3309
+
3310
  /**************** Premium Counter ***************/
3311
  /************************************************/
3312
  .premium-counter-area {
3313
+ padding: 10px 0;
3314
+ -js-display: flex;
3315
+ display: -webkit-box;
3316
+ display: -webkit-flex;
3317
+ display: -moz-box;
3318
+ display: -ms-flexbox;
3319
+ display: flex;
3320
+ -webkit-box-pack: center;
3321
+ -webkit-justify-content: center;
3322
+ -moz-box-pack: center;
3323
+ -ms-flex-pack: center;
3324
+ justify-content: center;
3325
+ -webkit-box-align: center;
3326
+ -webkit-align-items: center;
3327
+ -moz-box-align: center;
3328
+ -ms-flex-align: center;
3329
+ align-items: center;
3330
  }
3331
 
3332
  .premium-counter-area.top {
3333
+ -webkit-box-orient: vertical;
3334
+ -webkit-box-direction: normal;
3335
+ -webkit-flex-direction: column;
3336
+ -moz-box-orient: vertical;
3337
+ -moz-box-direction: normal;
3338
+ -ms-flex-direction: column;
3339
+ flex-direction: column;
3340
  }
3341
 
3342
  .premium-counter-area.right {
3343
+ -webkit-box-orient: horizontal;
3344
+ -webkit-box-direction: reverse;
3345
+ -webkit-flex-direction: row-reverse;
3346
+ -moz-box-orient: horizontal;
3347
+ -moz-box-direction: reverse;
3348
+ -ms-flex-direction: row-reverse;
3349
+ flex-direction: row-reverse;
3350
  }
3351
 
3352
  .premium-counter-area.right .premium-counter-icon {
3353
+ padding-right: 20px;
3354
  }
3355
 
3356
  .premium-counter-area.left .premium-counter-icon {
3357
+ padding-left: 20px;
3358
  }
3359
 
3360
  .premium-counter-area .premium-counter-icon .icon i.fa:before {
3361
+ vertical-align: text-top;
3362
  }
3363
 
3364
  .premium-counter-area .premium-counter-icon span.icon {
3365
+ text-align: center;
3366
+ display: inline-block;
3367
+ vertical-align: middle;
3368
  }
3369
 
3370
  .premium-counter-area .premium-counter-icon .circle {
3371
+ -webkit-border-radius: 100%;
3372
+ border-radius: 100%;
3373
  }
3374
 
3375
  .premium-counter-area .premium-counter-icon img,
3376
  .premium-counter-area .premium-counter-icon svg {
3377
+ width: 80px;
3378
  }
3379
 
3380
  .premium-counter-area .premium-counter-icon .premium-counter-animation svg {
3381
+ height: 80px;
3382
  }
3383
 
3384
  .premium-counter-area .premium-counter-title p {
3385
+ padding: 0;
3386
+ margin: 0;
3387
  }
3388
 
3389
  .premium-counter-area .premium-counter-value-wrap {
3390
+ -js-display: flex;
3391
+ display: -webkit-box;
3392
+ display: -webkit-flex;
3393
+ display: -moz-box;
3394
+ display: -ms-flexbox;
3395
+ display: flex;
3396
+ -webkit-box-align: center;
3397
+ -webkit-align-items: center;
3398
+ -moz-box-align: center;
3399
+ -ms-flex-align: center;
3400
+ align-items: center;
3401
  }
3402
 
3403
  .premium-init-wrapper {
3404
+ -js-display: flex;
3405
+ display: -webkit-box;
3406
+ display: -webkit-flex;
3407
+ display: -moz-box;
3408
+ display: -ms-flexbox;
3409
+ display: flex;
3410
  }
3411
 
3412
  .premium-init-wrapper.row {
3413
+ -webkit-box-align: center;
3414
+ -webkit-align-items: center;
3415
+ -moz-box-align: center;
3416
+ -ms-flex-align: center;
3417
+ align-items: center;
3418
  }
3419
 
3420
  .premium-init-wrapper.right {
3421
+ text-align: right;
3422
  }
3423
 
3424
  span.icon.flex-width {
3425
+ width: auto !important;
3426
+ height: auto !important;
3427
  }
3428
 
3429
  .premium-counter-area .premium-counter-init {
3430
+ font-size: 35px;
3431
  }
3432
+
3433
  /**************** Premium Dual Heading *****************/
3434
  /*******************************************************/
3435
  .premium-dual-header-first-header,
3436
  .premium-dual-header-second-header {
3437
+ position: relative;
3438
+ padding: 0;
3439
+ margin: 0;
3440
+ display: inline-block;
3441
+ -webkit-transform: translate(0, 0);
3442
+ -ms-transform: translate(0, 0);
3443
+ transform: translate(0, 0);
3444
  }
3445
 
3446
  .premium-dual-header-first-clip .premium-dual-header-first-span,
3447
  .premium-dual-header-second-clip {
3448
+ -webkit-text-fill-color: transparent;
3449
+ -webkit-background-clip: text;
3450
  }
3451
 
3452
  .premium-dual-header-first-clip.stroke .premium-dual-header-first-span,
3453
  .premium-dual-header-second-clip.stroke {
3454
+ -webkit-text-stroke-color: transparent;
3455
+ -webkit-text-fill-color: #fafafa;
3456
+ -webkit-text-stroke-width: 2px;
3457
  }
3458
 
3459
  @media (max-width: 500px) {
3460
 
3461
+ .premium-dual-header-first-header,
3462
+ .premium-dual-header-second-header {
3463
+ word-wrap: break-word;
3464
+ }
3465
  }
3466
 
3467
  .premium-dual-header-first-header.gradient .premium-dual-header-first-span,
3468
  .premium-dual-header-second-header.gradient {
3469
+ -webkit-background-size: 300% 300% !important;
3470
+ background-size: 300% 300% !important;
3471
+ -webkit-animation: Gradient 10s ease-in-out infinite;
3472
+ animation: Gradient 10s ease-in-out infinite;
3473
  }
3474
 
3475
  @-webkit-keyframes Gradient {
3476
+ 0% {
3477
+ background-position: 100% 50%;
3478
+ }
3479
 
3480
+ 50% {
3481
+ background-position: 0% 50%;
3482
+ }
3483
 
3484
+ 100% {
3485
+ background-position: 100% 50%;
3486
+ }
3487
  }
3488
 
3489
  @keyframes Gradient {
3490
+ 0% {
3491
+ background-position: 100% 50%;
3492
+ }
3493
 
3494
+ 50% {
3495
+ background-position: 0% 50%;
3496
+ }
3497
 
3498
+ 100% {
3499
+ background-position: 100% 50%;
3500
+ }
3501
  }
3502
+
3503
  /**************** Premium Fancy Text *******************/
3504
  /*******************************************************/
3505
  .premium-suffix-text,
3506
  .premium-fancy-text,
3507
  .premium-prefix-text {
3508
+ font-size: 40px;
3509
  }
3510
 
3511
  .premium-fancy-text-wrapper:not(.typing) .premium-fancy-text,
3512
  .premium-fancy-item-hidden {
3513
+ opacity: 0;
3514
  }
3515
 
3516
  .premium-fancy-text-wrapper .premium-fancy-list-items {
3517
+ list-style: none;
3518
  }
3519
 
3520
  .premium-fancy-text-wrapper .premium-fancy-text-span-align {
3521
+ vertical-align: top;
3522
  }
3523
 
3524
  .premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-text-items-wrapper {
3525
+ margin: 0;
3526
+ padding: 0;
3527
+ border: none;
3528
+ position: relative;
3529
  }
3530
 
3531
  .premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-list-items {
3532
+ position: absolute;
3533
+ top: 0;
3534
+ left: 0;
3535
+ display: inline-block;
3536
  }
3537
 
3538
  .premium-fancy-text-wrapper.zoomout .premium-fancy-item-hidden {
3539
+ -webkit-animation: pa-zoom-out 0.8s;
3540
+ animation: pa-zoom-out 0.8s;
3541
  }
3542
 
3543
  .premium-fancy-text-wrapper.zoomout .premium-fancy-item-visible {
3544
+ position: relative !important;
3545
+ -webkit-animation: pa-zoom-in 0.8s;
3546
+ animation: pa-zoom-in 0.8s;
3547
  }
3548
 
3549
  .premium-fancy-text-wrapper.zoomout .premium-fancy-text-items-wrapper {
3550
+ -webkit-perspective: 300px;
3551
+ perspective: 300px;
3552
  }
3553
 
3554
  .premium-fancy-text-wrapper.rotate .premium-fancy-list-items {
3555
+ -webkit-transform-origin: 50% 100%;
3556
+ -ms-transform-origin: 50% 100%;
3557
+ transform-origin: 50% 100%;
3558
  }
3559
 
3560
  .premium-fancy-text-wrapper.rotate .premium-fancy-item-hidden {
3561
+ -webkit-transform: rotateX(180deg);
3562
+ transform: rotateX(180deg);
3563
+ -webkit-animation: pa-rotate-out 1.2s;
3564
+ animation: pa-rotate-out 1.2s;
3565
  }
3566
 
3567
  .premium-fancy-text-wrapper.rotate .premium-fancy-item-visible {
3568
+ position: relative !important;
3569
+ -webkit-transform: rotateX(0deg);
3570
+ transform: rotateX(0deg);
3571
+ -webkit-animation: pa-rotate-in 1.2s;
3572
+ animation: pa-rotate-in 1.2s;
3573
  }
3574
 
3575
  .premium-fancy-text-wrapper.custom .premium-fancy-item-visible {
3576
+ position: relative !important;
3577
  }
3578
 
3579
  .premium-fancy-text-wrapper.auto-fade .premium-fancy-text {
3580
+ display: inline-block;
3581
+ width: 200px;
3582
+ font-weight: 400;
3583
  }
3584
 
3585
  .premium-fancy-text-wrapper.auto-fade .premium-fancy-svg-text {
3586
+ position: relative;
3587
+ vertical-align: sub;
3588
  }
3589
 
3590
  .premium-fancy-text-wrapper.auto-fade g>text {
3591
+ text-anchor: start;
3592
+ shape-rendering: crispEdges;
3593
+ opacity: 0;
3594
+ font-size: 300px;
3595
+ -webkit-animation-name: pa-auto-fade;
3596
+ animation-name: pa-auto-fade;
3597
+ -moz-animation-name: pa-auto-fade;
3598
+ -webkit-animation-duration: 9s;
3599
+ animation-duration: 9s;
3600
+ -webkit-animation-timing-function: linear;
3601
+ animation-timing-function: linear;
3602
+ -webkit-animation-iteration-count: infinite;
3603
+ animation-iteration-count: infinite;
3604
  }
3605
 
3606
  .premium-fancy-text-wrapper.auto-fade g>text:nth-child(1) {
3607
+ -webkit-animation-delay: 0s;
3608
+ animation-delay: 0s;
3609
  }
3610
 
3611
  .premium-fancy-text-wrapper.auto-fade g>text:nth-child(2) {
3612
+ -webkit-animation-delay: 3s;
3613
+ animation-delay: 3s;
3614
  }
3615
 
3616
  .premium-fancy-text-wrapper.auto-fade g>text:nth-child(3) {
3617
+ -webkit-animation-delay: 6s;
3618
+ animation-delay: 6s;
3619
  }
3620
 
3621
  .premium-fancy-text-wrapper.loading .premium-fancy-text {
3622
+ position: relative;
3623
  }
3624
 
3625
  .premium-fancy-text-wrapper.loading .premium-fancy-text .premium-loading-bar {
3626
+ position: absolute;
3627
+ width: 100%;
3628
+ height: 3px;
3629
+ bottom: 0;
3630
+ left: 0;
3631
+ animation: pa-loading-bar 2.5s ease-out infinite;
3632
+ -webkit-animation: pa-loading-bar 2.5s ease-out infinite;
3633
  }
3634
 
3635
  .premium-fancy-text-wrapper.loading.pause .premium-fancy-text:hover .premium-loading-bar {
3636
+ -webkit-animation-play-state: paused;
3637
+ animation-play-state: paused;
3638
  }
3639
 
3640
  @-webkit-keyframes pa-auto-fade {
3641
+ 0% {
3642
+ opacity: 0;
3643
+ }
3644
 
3645
+ 20% {
3646
+ opacity: 1;
3647
+ }
3648
 
3649
+ 35% {
3650
+ opacity: 0;
3651
+ }
3652
 
3653
+ 100% {
3654
+ opacity: 0;
3655
+ }
3656
  }
3657
 
3658
  @keyframes pa-auto-fade {
3659
+ 0% {
3660
+ opacity: 0;
3661
+ }
3662
 
3663
+ 20% {
3664
+ opacity: 1;
3665
+ }
3666
 
3667
+ 35% {
3668
+ opacity: 0;
3669
+ }
3670
 
3671
+ 100% {
3672
+ opacity: 0;
3673
+ }
3674
  }
3675
 
3676
  @-webkit-keyframes pa-loading-bar {
3677
+ 0% {
3678
+ width: 0;
3679
+ }
3680
 
3681
+ 100% {
3682
+ width: 100;
3683
+ }
3684
  }
3685
 
3686
  @keyframes pa-loading-bar {
3687
+ 0% {
3688
+ width: 0;
3689
+ }
3690
 
3691
+ 100% {
3692
+ width: 100;
3693
+ }
3694
  }
3695
 
3696
  @-webkit-keyframes pa-zoom-in {
3697
+ 0% {
3698
+ opacity: 0;
3699
+ -webkit-transform: translateZ(100px);
3700
+ transform: translateZ(100px);
3701
+ }
3702
 
3703
+ 100% {
3704
+ opacity: 1;
3705
+ -webkit-transform: translateZ(0);
3706
+ transform: translateZ(0);
3707
+ }
3708
  }
3709
 
3710
  @keyframes pa-zoom-in {
3711
+ 0% {
3712
+ opacity: 0;
3713
+ -webkit-transform: translateZ(100px);
3714
+ transform: translateZ(100px);
3715
+ }
3716
 
3717
+ 100% {
3718
+ opacity: 1;
3719
+ -webkit-transform: translateZ(0);
3720
+ transform: translateZ(0);
3721
+ }
3722
  }
3723
 
3724
  @-webkit-keyframes pa-zoom-out {
3725
+ 0% {
3726
+ opacity: 1;
3727
+ -webkit-transform: translateZ(0);
3728
+ transform: translateZ(0);
3729
+ }
3730
 
3731
+ 100% {
3732
+ opacity: 0;
3733
+ -webkit-transform: translateZ(-100px);
3734
+ transform: translateZ(-100px);
3735
+ }
3736
  }
3737
 
3738
  @keyframes pa-zoom-out {
3739
+ 0% {
3740
+ opacity: 1;
3741
+ -webkit-transform: translateZ(0);
3742
+ transform: translateZ(0);
3743
+ }
3744
 
3745
+ 100% {
3746
+ opacity: 0;
3747
+ -webkit-transform: translateZ(-100px);
3748
+ transform: translateZ(-100px);
3749
+ }
3750
  }
3751
 
3752
  @-webkit-keyframes pa-rotate-in {
3753
+ 0% {
3754
+ opacity: 0;
3755
+ -webkit-transform: rotateX(180deg);
3756
+ transform: rotateX(180deg);
3757
+ }
3758
 
3759
+ 35% {
3760
+ opacity: 0;
3761
+ -webkit-transform: rotateX(120deg);
3762
+ transform: rotateX(120deg);
3763
+ }
3764
 
3765
+ 65% {
3766
+ opacity: 0;
3767
+ }
3768
 
3769
+ 100% {
3770
+ opacity: 1;
3771
+ -webkit-transform: rotateX(360deg);
3772
+ transform: rotateX(360deg);
3773
+ }
3774
  }
3775
 
3776
  @keyframes pa-rotate-in {
3777
+ 0% {
3778
+ opacity: 0;
3779
+ -webkit-transform: rotateX(180deg);
3780
+ transform: rotateX(180deg);
3781
+ }
3782
 
3783
+ 35% {
3784
+ opacity: 0;
3785
+ -webkit-transform: rotateX(120deg);
3786
+ transform: rotateX(120deg);
3787
+ }
3788
 
3789
+ 65% {
3790
+ opacity: 0;
3791
+ }
3792
 
3793
+ 100% {
3794
+ opacity: 1;
3795
+ -webkit-transform: rotateX(360deg);
3796
+ transform: rotateX(360deg);
3797
+ }
3798
  }
3799
 
3800
  @-webkit-keyframes pa-rotate-out {
3801
+ 0% {
3802
+ opacity: 1;
3803
+ -webkit-transform: rotateX(0deg);
3804
+ transform: rotateX(0deg);
3805
+ }
3806
 
3807
+ 35% {
3808
+ opacity: 1;
3809
+ -webkit-transform: rotateX(-40deg);
3810
+ transform: rotateX(-40deg);
3811
+ }
3812
 
3813
+ 65% {
3814
+ opacity: 0;
3815
+ }
3816
 
3817
+ 100% {
3818
+ opacity: 0;
3819
+ -webkit-transform: rotateX(180deg);
3820
+ transform: rotateX(180deg);
3821
+ }
3822
  }
3823
 
3824
  @keyframes pa-rotate-out {
3825
+ 0% {
3826
+ opacity: 1;
3827
+ -webkit-transform: rotateX(0deg);
3828
+ transform: rotateX(0deg);
3829
+ }
3830
+
3831
+ 35% {
3832
+ opacity: 1;
3833
+ -webkit-transform: rotateX(-40deg);
3834
+ transform: rotateX(-40deg);
3835
+ }
3836
+
3837
+ 65% {
3838
+ opacity: 0;
3839
+ }
3840
+
3841
+ 100% {
3842
+ opacity: 0;
3843
+ -webkit-transform: rotateX(180deg);
3844
+ transform: rotateX(180deg);
3845
+ }
3846
  }
3847
+
3848
  /**************** Premium Bullet List *****************/
3849
  /******************************************************/
3850
  .premium-bullet-list-box {
3864
  -moz-box-direction: normal;
3865
  -ms-flex-direction: column;
3866
  flex-direction: column;
3867
+ padding: 0;
3868
  }
3869
 
3870
  .premium-bullet-list-box .premium-bullet-list-content-grow-lc {
4176
  transform: rotate(360deg);
4177
  }
4178
  }
4179
+
4180
  /**************** Premium Image Button ***********/
4181
  /*************************************************/
4182
  .premium-image-button {
4183
+ -js-display: inline-flex;
4184
+ display: -webkit-inline-box;
4185
+ display: -webkit-inline-flex;
4186
+ display: -moz-inline-box;
4187
+ display: -ms-inline-flexbox;
4188
+ display: inline-flex;
4189
+ position: relative;
4190
+ overflow: hidden;
4191
+ background-color: #eee;
4192
+ cursor: pointer;
4193
+ -webkit-transition: all 0.2s ease-in-out !important;
4194
+ transition: all 0.2s ease-in-out !important;
4195
  }
4196
 
4197
  .premium-image-button .premium-button-style6-bg,
4198
  .premium-image-button.premium-button-style6:before,
4199
  .premium-image-button:not(.premium-image-button-style6):hover {
4200
+ background-color: #54595f;
4201
  }
4202
 
4203
  /*Default background for slide styles*/
4207
  .premium-image-button-style1-bottom:before,
4208
  .premium-image-button-style1-left:before,
4209
  .premium-image-button-style1-right:before {
4210
+ background-color: #54595f;
4211
  }
4212
 
4213
  .premium-image-button-text-icon-wrapper {
4214
+ width: 100%;
4215
+ -js-display: flex;
4216
+ display: -webkit-box;
4217
+ display: -webkit-flex;
4218
+ display: -moz-box;
4219
+ display: -ms-flexbox;
4220
+ display: flex;
4221
+ -webkit-box-pack: center;
4222
+ -webkit-justify-content: center;
4223
+ -moz-box-pack: center;
4224
+ -ms-flex-pack: center;
4225
+ justify-content: center;
4226
+ -webkit-box-align: center;
4227
+ -webkit-align-items: center;
4228
+ -moz-box-align: center;
4229
+ -ms-flex-align: center;
4230
+ align-items: center;
4231
+ position: relative;
4232
+ z-index: 3;
4233
+ -webkit-transition: all 0.2s ease-in-out;
4234
+ transition: all 0.2s ease-in-out;
4235
+ }
4236
+
4237
+ .premium-image-button-text-icon-wrapper span,
4238
+ .premium-image-button-text-icon-wrapper,
4239
+ .premium-image-button-text-icon-wrapper i,
4240
+ .premium-image-button-text-icon-wrapper svg {
4241
+ -webkit-transition: all 0.2s ease-in-out;
4242
+ transition: all 0.2s ease-in-out;
4243
+ }
4244
+
4245
  .premium-image-button-style1-bottom:before,
4246
  .premium-image-button-style1-top:before,
4247
  .premium-image-button-style1-left:before,
4248
  .premium-image-button-style1-right:before {
4249
+ -webkit-transition: all 0.2s ease-in-out;
4250
+ transition: all 0.2s ease-in-out;
4251
  }
4252
 
4253
  .premium-image-button-style1-bottom:before {
4254
+ content: "";
4255
+ position: absolute;
4256
+ width: 100%;
4257
+ height: 0;
4258
+ top: 0;
4259
+ right: 0;
4260
  }
4261
 
4262
  .premium-image-button-style1-top:before {
4263
+ content: "";
4264
+ position: absolute;
4265
+ width: 100%;
4266
+ height: 0;
4267
+ bottom: 0;
4268
+ right: 0;
4269
  }
4270
 
4271
  .premium-image-button-style1-right:before {
4272
+ content: "";
4273
+ position: absolute;
4274
+ width: 0;
4275
+ height: 100%;
4276
+ bottom: 0;
4277
+ right: 0;
4278
  }
4279
 
4280
  .premium-image-button-style1-left:before {
4281
+ content: "";
4282
+ position: absolute;
4283
+ width: 0;
4284
+ height: 100%;
4285
+ top: 0;
4286
+ left: 0;
4287
  }
4288
 
4289
  .premium-image-button-style1-bottom:hover:before {
4290
+ height: 100%;
4291
  }
4292
 
4293
  .premium-image-button-style1-top:hover:before {
4294
+ height: 100%;
4295
  }
4296
 
4297
  .premium-image-button-style1-right:hover:before {
4298
+ width: 100%;
4299
  }
4300
 
4301
  .premium-image-button-style1-left:hover:before {
4302
+ width: 100%;
4303
  }
4304
 
4305
  .premium-image-button-diagonal-top,
4306
  .premium-image-button-diagonal-bottom,
4307
  .premium-image-button-diagonal-left,
4308
  .premium-image-button-diagonal-right {
4309
+ z-index: 10;
4310
  }
4311
 
4312
  .premium-image-button-diagonal-top:before,
4313
  .premium-image-button-diagonal-bottom:before,
4314
  .premium-image-button-diagonal-left:before,
4315
  .premium-image-button-diagonal-right:before {
4316
+ position: absolute;
4317
+ top: 0px;
4318
+ right: 0px;
4319
+ width: 100%;
4320
+ height: 100%;
4321
+ content: "";
4322
+ z-index: 1;
4323
+ background: rgba(255, 255, 255, 0.2);
4324
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
4325
+ -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
4326
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
4327
+ -webkit-transition: all 0.8s ease-out;
4328
+ transition: all 0.8s ease-out;
4329
  }
4330
 
4331
  .premium-image-button-diagonal-right:hover:before,
4332
  .premium-image-button-diagonal-left:before {
4333
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
4334
+ -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
4335
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
4336
  }
4337
 
4338
  .premium-image-button-diagonal-left:hover:before,
4339
  .premium-image-button-diagonal-right:before {
4340
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
4341
+ -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
4342
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
4343
  }
4344
 
4345
  .premium-image-button-diagonal-top:hover:before,
4346
  .premium-image-button-diagonal-bottom:before {
4347
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
4348
+ -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
4349
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
4350
  }
4351
 
4352
  .premium-image-button-diagonal-bottom:hover:before,
4353
  .premium-image-button-diagonal-top:before {
4354
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
4355
+ -ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
4356
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
4357
  }
4358
 
4359
  .premium-image-button-style4-icon-wrapper {
4360
+ position: absolute;
4361
+ z-index: 2;
4362
+ width: 100%;
4363
+ text-align: center;
4364
+ display: -webkit-box;
4365
+ display: -webkit-flex;
4366
+ display: -ms-flexbox;
4367
+ -js-display: flex;
4368
+ display: -moz-box;
4369
+ display: flex;
4370
+ -webkit-box-align: center;
4371
+ -webkit-align-items: center;
4372
+ -moz-box-align: center;
4373
+ -ms-flex-align: center;
4374
+ align-items: center;
4375
+ -webkit-box-pack: center;
4376
+ -webkit-justify-content: center;
4377
+ -moz-box-pack: center;
4378
+ -ms-flex-pack: center;
4379
+ justify-content: center;
4380
+ height: 100%;
4381
+ opacity: 0;
4382
+ -webkit-transition: all 0.3s ease-in-out;
4383
+ transition: all 0.3s ease-in-out;
4384
  }
4385
 
4386
  .premium-image-button-style4-icon-wrapper.top {
4387
+ bottom: -100%;
4388
+ right: 0;
4389
  }
4390
 
4391
  .premium-image-button-style4-icon-wrapper.bottom {
4392
+ top: -100%;
4393
+ right: 0;
4394
  }
4395
 
4396
  .premium-image-button-style4-icon-wrapper.left {
4397
+ top: 0;
4398
+ right: -100%;
4399
  }
4400
 
4401
  .premium-image-button-style4-icon-wrapper.right {
4402
+ top: 0;
4403
+ left: -100%;
4404
  }
4405
 
4406
  .premium-image-button-style4-bottom:hover .premium-image-button-style4-icon-wrapper {
4407
+ top: 0;
4408
+ opacity: 1;
4409
  }
4410
 
4411
  .premium-image-button-style4-top:hover .premium-image-button-style4-icon-wrapper {
4412
+ bottom: 0;
4413
+ opacity: 1;
4414
  }
4415
 
4416
  .premium-image-button-style4-left:hover .premium-image-button-style4-icon-wrapper {
4417
+ right: 0;
4418
+ opacity: 1;
4419
  }
4420
 
4421
  .premium-image-button-style4-right:hover .premium-image-button-style4-icon-wrapper {
4422
+ left: 0;
4423
+ opacity: 1;
4424
  }
4425
 
4426
  .premium-image-button-style4-bottom:hover .premium-image-button-text-icon-wrapper {
4427
+ -webkit-transform: translateY(100%);
4428
+ -ms-transform: translateY(100%);
4429
+ transform: translateY(100%);
4430
+ opacity: 0;
4431
  }
4432
 
4433
  .premium-image-button-style4-top:hover .premium-image-button-text-icon-wrapper {
4434
+ -webkit-transform: translateY(-100%);
4435
+ -ms-transform: translateY(-100%);
4436
+ transform: translateY(-100%);
4437
+ opacity: 0;
4438
  }
4439
 
4440
  .premium-image-button-style4-left:hover .premium-image-button-text-icon-wrapper {
4441
+ -webkit-transform: translateX(-100%);
4442
+ -ms-transform: translateX(-100%);
4443
+ transform: translateX(-100%);
4444
+ opacity: 0;
4445
  }
4446
 
4447
  .premium-image-button-style4-right:hover .premium-image-button-text-icon-wrapper {
4448
+ -webkit-transform: translateX(100%);
4449
+ -ms-transform: translateX(100%);
4450
+ transform: translateX(100%);
4451
+ opacity: 0;
4452
  }
4453
 
4454
  .premium-image-button-overlap-effect-horizontal:before,
4455
  .premium-image-button-overlap-effect-vertical:before {
4456
+ position: absolute;
4457
+ content: "";
4458
+ top: 0;
4459
+ right: 0;
4460
+ width: 100%;
4461
+ height: 100%;
4462
+ opacity: 0;
4463
+ -webkit-transition: all 1s ease-in-out;
4464
+ transition: all 1s ease-in-out;
4465
+ background: rgba(255, 255, 255, 0.2);
4466
+ -webkit-animation-name: premium-overlap-effect-done;
4467
+ animation-name: premium-overlap-effect-done;
4468
+ -webkit-animation-duration: 1s;
4469
+ animation-duration: 1s;
4470
  }
4471
 
4472
  .premium-image-button-overlap-effect-vertical:before {
4473
+ -webkit-animation-name: premium-overlap-ver-effect-done;
4474
+ animation-name: premium-overlap-ver-effect-done;
4475
+ -webkit-animation-duration: 1s;
4476
+ animation-duration: 1s;
4477
  }
4478
 
4479
  .premium-image-button-overlap-effect-horizontal:hover:before {
4480
+ -webkit-animation-name: premium-overlap-effect;
4481
+ animation-name: premium-overlap-effect;
4482
+ -webkit-animation-duration: 1s;
4483
+ animation-duration: 1s;
4484
  }
4485
 
4486
  .premium-image-button-overlap-effect-vertical:hover:before {
4487
+ -webkit-animation-name: premium-overlap-ver-effect;
4488
+ animation-name: premium-overlap-ver-effect;
4489
+ -webkit-animation-duration: 1s;
4490
+ animation-duration: 1s;
4491
  }
4492
 
4493
  @-webkit-keyframes premium-overlap-effect {
4494
+ 0% {
4495
+ opacity: 0;
4496
+ -webkit-transform: rotateY(0deg);
4497
+ transform: rotateY(0deg);
4498
+ }
4499
 
4500
+ 50% {
4501
+ opacity: 1;
4502
+ -webkit-transform: rotateY(180deg);
4503
+ transform: rotateY(180deg);
4504
+ }
4505
 
4506
+ 100% {
4507
+ opacity: 0;
4508
+ -webkit-transform: rotateY(360deg);
4509
+ transform: rotateY(360deg);
4510
+ }
4511
  }
4512
 
4513
  @keyframes premium-overlap-effect {
4514
+ 0% {
4515
+ opacity: 0;
4516
+ -webkit-transform: rotateY(0deg);
4517
+ transform: rotateY(0deg);
4518
+ }
4519
 
4520
+ 50% {
4521
+ opacity: 1;
4522
+ -webkit-transform: rotateY(180deg);
4523
+ transform: rotateY(180deg);
4524
+ }
4525
 
4526
+ 100% {
4527
+ opacity: 0;
4528
+ -webkit-transform: rotateY(360deg);
4529
+ transform: rotateY(360deg);
4530
+ }
4531
  }
4532
 
4533
  @-webkit-keyframes premium-overlap-effect-done {
4534
+ 0% {
4535
+ opacity: 0;
4536
+ -webkit-transform: rotateY(0deg);
4537
+ transform: rotateY(0deg);
4538
+ }
4539
 
4540
+ 50% {
4541
+ opacity: 1;
4542
+ -webkit-transform: rotateY(180deg);
4543
+ transform: rotateY(180deg);
4544
+ }
4545
 
4546
+ 100% {
4547
+ opacity: 0;
4548
+ -webkit-transform: rotateY(360deg);
4549
+ transform: rotateY(360deg);
4550
+ }
4551
  }
4552
 
4553
  @keyframes premium-overlap-effect-done {
4554
+ 0% {
4555
+ opacity: 0;
4556
+ -webkit-transform: rotateY(0deg);
4557
+ transform: rotateY(0deg);
4558
+ }
4559
 
4560
+ 50% {
4561
+ opacity: 1;
4562
+ -webkit-transform: rotateY(180deg);
4563
+ transform: rotateY(180deg);
4564
+ }
4565
 
4566
+ 100% {
4567
+ opacity: 0;
4568
+ -webkit-transform: rotateY(360deg);
4569
+ transform: rotateY(360deg);
4570
+ }
4571
  }
4572
 
4573
  @-webkit-keyframes premium-overlap-ver-effect {
4574
+ 0% {
4575
+ opacity: 0;
4576
+ -webkit-transform: rotateX(0deg);
4577
+ transform: rotateX(0deg);
4578
+ }
4579
 
4580
+ 50% {
4581
+ opacity: 1;
4582
+ -webkit-transform: rotateX(180deg);
4583
+ transform: rotateX(180deg);
4584
+ }
4585
 
4586
+ 100% {
4587
+ opacity: 0;
4588
+ -webkit-transform: rotateX(360deg);
4589
+ transform: rotateX(360deg);
4590
+ }
4591
  }
4592
 
4593
  @keyframes premium-overlap-ver-effect {
4594
+ 0% {
4595
+ opacity: 0;
4596
+ -webkit-transform: rotateX(0deg);
4597
+ transform: rotateX(0deg);
4598
+ }
4599
 
4600
+ 50% {
4601
+ opacity: 1;
4602
+ -webkit-transform: rotateX(180deg);
4603
+ transform: rotateX(180deg);
4604
+ }
4605
 
4606
+ 100% {
4607
+ opacity: 0;
4608
+ -webkit-transform: rotateX(360deg);
4609
+ transform: rotateX(360deg);
4610
+ }
4611
  }
4612
 
4613
  @-webkit-keyframes premium-overlap-ver-effect-done {
4614
+ 0% {
4615
+ opacity: 0;
4616
+ -webkit-transform: rotateX(0deg);
4617
+ transform: rotateX(0deg);
4618
+ }
4619
 
4620
+ 50% {
4621
+ opacity: 1;
4622
+ -webkit-transform: rotateX(180deg);
4623
+ transform: rotateX(180deg);
4624
+ }
4625
 
4626
+ 100% {
4627
+ opacity: 0;
4628
+ -webkit-transform: rotateX(360deg);
4629
+ transform: rotateX(360deg);
4630
+ }
4631
  }
4632
 
4633
  @keyframes premium-overlap-ver-effect-done {
4634
+ 0% {
4635
+ opacity: 0;
4636
+ -webkit-transform: rotateX(0deg);
4637
+ transform: rotateX(0deg);
4638
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4639
 
4640
+ 50% {
4641
+ opacity: 1;
4642
+ -webkit-transform: rotateX(180deg);
4643
+ transform: rotateX(180deg);
4644
+ }
 
 
4645
 
4646
+ 100% {
4647
+ opacity: 0;
4648
+ -webkit-transform: rotateX(360deg);
4649
+ transform: rotateX(360deg);
4650
+ }
 
 
 
 
4651
  }
4652
 
4653
+ /************ Premium Image Scroll ***************/
4654
+ /*************************************************/
4655
+ .premium-image-scroll-section,
4656
+ .premium-image-scroll-container {
4657
+ -webkit-transition: all 0.3s ease-in-out;
4658
+ transition: all 0.3s ease-in-out;
 
 
 
 
4659
  }
4660
 
4661
+ .premium-image-scroll-section {
4662
+ position: relative;
4663
+ overflow: hidden;
4664
+ width: 100%;
4665
+ -webkit-mask-image: -webkit-radial-gradient(white, black);
4666
  }
4667
 
4668
+ .premium-image-scroll-container {
4669
+ width: 100%;
 
 
 
4670
  }
4671
+
4672
+ .premium-image-scroll-container .premium-image-scroll-mask-media {
4673
+ -webkit-mask-repeat: no-repeat;
4674
+ mask-repeat: no-repeat;
4675
+ -webkit-mask-position: center;
4676
+ mask-position: center;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4677
  }
4678
 
4679
+ .premium-container-scroll {
4680
+ overflow: auto;
 
4681
  }
4682
 
4683
+ .premium-image-scroll-container .premium-image-scroll-horizontal {
4684
+ position: relative;
4685
+ width: 100%;
4686
+ height: 100%;
4687
  }
4688
 
4689
+ .premium-image-scroll-container .premium-image-scroll-horizontal img {
4690
+ max-width: none;
4691
+ height: 100%;
4692
+ }
4693
+
4694
+ .premium-image-scroll-container .premium-image-scroll-vertical img {
4695
+ width: 100%;
4696
+ max-width: 100%;
4697
+ height: auto;
4698
+ }
4699
+
4700
+ .premium-image-scroll-ver {
4701
+ position: relative;
4702
+ }
4703
+
4704
+ .premium-image-scroll-container .premium-image-scroll-overlay {
4705
+ background: rgba(2, 2, 2, 0.3);
4706
+ }
4707
+
4708
+ .premium-image-scroll-container .premium-image-scroll-link,
4709
+ .premium-image-scroll-container .premium-image-scroll-overlay {
4710
+ position: absolute;
4711
+ top: 0;
4712
+ bottom: 0;
4713
+ right: 0;
4714
+ left: 0;
4715
+ z-index: 4;
4716
+ }
4717
+
4718
+ .premium-image-scroll-content {
4719
+ display: inline-block;
4720
+ position: absolute;
4721
+ height: auto;
4722
+ top: 50%;
4723
+ right: 50%;
4724
+ text-align: center;
4725
+ z-index: 5;
4726
+ -webkit-transform: translate(50%, -50%);
4727
+ -ms-transform: translate(50%, -50%);
4728
+ transform: translate(50%, -50%);
4729
+ }
4730
+
4731
+ .premium-container-scroll-instant .premium-image-scroll-image {
4732
+ -webkit-transition: all 0s ease-in-out !important;
4733
+ transition: all 0s ease-in-out !important;
4734
+ }
4735
+
4736
+ .premium-image-scroll-container img {
4737
+ -webkit-transition: -webkit-transform 3s ease-in-out;
4738
+ transition: -webkit-transform 3s ease-in-out;
4739
+ transition: transform 3s ease-in-out;
4740
+ transition: transform 3s ease-in-out, -webkit-transform 3s ease-in-out;
4741
+ }
4742
+
4743
+ .premium-image-scroll-container .premium-image-scroll-overlay,
4744
+ .premium-image-scroll-container .premium-image-scroll-content {
4745
+ -webkit-transition: all 0.3s ease-in-out;
4746
+ transition: all 0.3s ease-in-out;
4747
+ opacity: 1;
4748
+ }
4749
+
4750
+ .premium-image-scroll-container:hover .premium-image-scroll-overlay {
4751
+ opacity: 0;
4752
+ }
4753
+
4754
+ .premium-image-scroll-container:hover .premium-image-scroll-content {
4755
+ opacity: 0;
4756
+ visibility: hidden;
4757
+ }
4758
+
4759
+ .premium-image-scroll-content .premium-image-scroll-icon {
4760
+ display: inline-block;
4761
+ font-family: "pa-elements" !important;
4762
+ speak: none;
4763
+ font-style: normal;
4764
+ font-weight: normal;
4765
+ font-variant: normal;
4766
+ text-transform: none;
4767
+ line-height: 1;
4768
+ -webkit-font-smoothing: antialiased;
4769
+ -moz-osx-font-smoothing: grayscale;
4770
+ -webkit-animation-duration: 0.5s;
4771
+ animation-duration: 0.5s;
4772
+ -webkit-animation-iteration-count: infinite;
4773
+ animation-iteration-count: infinite;
4774
+ -webkit-animation-direction: alternate;
4775
+ animation-direction: alternate;
4776
+ -webkit-animation-timing-function: ease-in-out;
4777
+ animation-timing-function: ease-in-out;
4778
+ }
4779
+
4780
+ .pa-horizontal-mouse-scroll:before {
4781
+ content: "\e901";
4782
+ }
4783
+
4784
+ .pa-vertical-mouse-scroll:before {
4785
+ content: "\e93c";
4786
+ }
4787
+
4788
+ .pa-horizontal-mouse-scroll {
4789
+ -webkit-animation-name: pa-scroll-horizontal;
4790
+ animation-name: pa-scroll-horizontal;
4791
+ }
4792
+
4793
+ .pa-vertical-mouse-scroll {
4794
+ -webkit-animation-name: pa-scroll-vertical;
4795
+ animation-name: pa-scroll-vertical;
4796
+ }
4797
+
4798
+ @-webkit-keyframes pa-scroll-vertical {
4799
+ 0% {
4800
+ -webkit-transform: translateY(0px);
4801
+ transform: translateY(0px);
4802
+ }
4803
+
4804
+ 100% {
4805
+ -webkit-transform: translateY(5px);
4806
+ transform: translateY(5px);
4807
+ }
4808
+ }
4809
+
4810
+ @keyframes pa-scroll-vertical {
4811
+ 0% {
4812
+ -webkit-transform: translateY(0px);
4813
+ transform: translateY(0px);
4814
+ }
4815
+
4816
+ 100% {
4817
+ -webkit-transform: translateY(5px);
4818
+ transform: translateY(5px);
4819
+ }
4820
+ }
4821
+
4822
+ @-webkit-keyframes pa-scroll-horizontal {
4823
+ 0% {
4824
+ -webkit-transform: translateX(0px);
4825
+ transform: translateX(0px);
4826
+ }
4827
+
4828
+ 100% {
4829
+ -webkit-transform: translateX(-5px);
4830
+ transform: translateX(-5px);
4831
+ }
4832
+ }
4833
+
4834
+ @keyframes pa-scroll-horizontal {
4835
+ 0% {
4836
+ -webkit-transform: translateX(0px);
4837
+ transform: translateX(0px);
4838
+ }
4839
+
4840
+ 100% {
4841
+ -webkit-transform: translateX(-5px);
4842
+ transform: translateX(-5px);
4843
+ }
4844
+ }
4845
+
4846
+ /**************** Premium Image Separator ****************/
4847
+ /*********************************************************/
4848
+ /*Image Separator Container Style*/
4849
+ .premium-image-separator-container {
4850
+ position: absolute;
4851
+ width: 100%;
4852
+ z-index: 2;
4853
+ top: auto;
4854
+ }
4855
+
4856
+ .premium-image-separator-container img {
4857
+ display: inline-block !important;
4858
+ -webkit-mask-repeat: no-repeat;
4859
+ mask-repeat: no-repeat;
4860
+ -webkit-mask-position: center;
4861
+ mask-position: center;
4862
+ }
4863
+
4864
+ /*Link on Image Style*/
4865
+ .premium-image-separator-link {
4866
+ position: absolute;
4867
+ z-index: 9999;
4868
+ top: 0;
4869
+ right: 0;
4870
+ width: 100%;
4871
+ height: 100%;
4872
+ text-decoration: none;
4873
+ }
4874
+
4875
+ /*Important to override Theme options*/
4876
+ a.premium-image-separator-link:hover,
4877
+ a.premium-image-separator-link:visited,
4878
+ a.premium-image-separator-link:focus,
4879
+ a.premium-image-separator-link:active {
4880
+ -webkit-box-shadow: none !important;
4881
+ box-shadow: none !important;
4882
+ outline: none !important;
4883
+ border: none !important;
4884
+ text-decoration: none !important;
4885
+ }
4886
+
4887
+ .premium-image-separator-container .img-responsive {
4888
+ display: inline-block;
4889
+ }
4890
+
4891
+ .premium-image-separator-container i,
4892
+ .premium-image-separator-container>svg {
4893
+ padding: 20px;
4894
+ -webkit-transition: all 0.3s ease-in-out;
4895
+ transition: all 0.3s ease-in-out;
4896
+ }
4897
+
4898
+ /******** Premium Media Grid ********/
4899
+ /************************************/
4900
+ .premium-img-gallery-filter,
4901
+ .premium-blog-filter {
4902
+ display: -webkit-box;
4903
+ display: -webkit-flex;
4904
+ display: -ms-flexbox;
4905
+ -js-display: flex;
4906
+ display: -moz-box;
4907
+ display: flex;
4908
+ -webkit-box-align: center;
4909
+ -webkit-align-items: center;
4910
+ -moz-box-align: center;
4911
+ -ms-flex-align: center;
4912
+ align-items: center;
4913
+ -webkit-box-pack: center;
4914
+ -webkit-justify-content: center;
4915
+ -moz-box-pack: center;
4916
+ -ms-flex-pack: center;
4917
+ justify-content: center;
4918
+ }
4919
+
4920
+ .premium-img-gallery {
4921
+ clear: both;
4922
+ overflow: hidden;
4923
+ }
4924
+
4925
+ .premium-gallery-container .premium-gallery-item {
4926
+ padding: 10px;
4927
+ float: right;
4928
+ /* Google Chrome isotope issue */
4929
+ }
4930
+
4931
+ .premium-gallery-container .grid-sizer {
4932
+ width: 33.33%;
4933
  }
4934
 
4935
  .premium-img-gallery-filter .premium-gallery-cats-container li a.category,
5352
  background: -webkit-linear-gradient(bottom, #17181f 0%, rgba(255, 255, 255, 0) 100%);
5353
  background: linear-gradient(to top, #17181f 0%, rgba(255, 255, 255, 0) 100%);
5354
  }
5355
+
5356
  /********* Premium Lottie Animations **********/
5357
  /**********************************************/
5358
  .elementor-widget-premium-lottie .premium-lottie-animation {
5359
+ position: relative;
5360
+ -js-display: inline-flex;
5361
+ display: -webkit-inline-box;
5362
+ display: -webkit-inline-flex;
5363
+ display: -moz-inline-box;
5364
+ display: -ms-inline-flexbox;
5365
+ display: inline-flex;
5366
+ -webkit-transition: all 0.3s ease-in-out;
5367
+ transition: all 0.3s ease-in-out;
5368
  }
5369
 
5370
  .elementor-widget-premium-lottie .premium-lottie-animation a {
5371
+ position: absolute;
5372
+ left: 0;
5373
+ top: 0;
5374
+ width: 100%;
5375
+ height: 100%;
5376
+ z-index: 2;
5377
  }
5378
+
5379
  /**************** Premium Google Maps ******************/
5380
  /*******************************************************/
5381
  .premium-maps-info-container {
5382
+ margin-top: 10px;
5383
+ margin-bottom: 10px;
5384
  }
5385
 
5386
  .premium-maps-info-title,
5387
  .premium-maps-info-desc {
5388
+ margin: 0;
5389
+ padding: 0;
5390
  }
5391
 
5392
  .premium-maps-container .gm-style-iw {
5393
+ text-align: center;
5394
+ direction: ltr;
5395
  }
5396
 
5397
  .premium-maps-container .gm-style img {
5398
+ max-width: none !important;
5399
  }
5400
+
5401
  /**************** Premium Modal Box ****************/
5402
  /***************************************************/
5403
  .premium-modal-trigger-btn,
5404
  .premium-modal-box-modal-lower-close {
5405
+ display: inline-block;
5406
+ padding: 6px 12px;
5407
+ margin-bottom: 0;
5408
+ font-size: 14px;
5409
+ font-weight: normal;
5410
+ line-height: 1.42857143;
5411
+ text-align: center;
5412
+ white-space: nowrap;
5413
+ vertical-align: middle;
5414
+ -ms-touch-action: manipulation;
5415
+ touch-action: manipulation;
5416
+ cursor: pointer;
5417
+ -webkit-user-select: none;
5418
+ -moz-user-select: none;
5419
+ -ms-user-select: none;
5420
+ user-select: none;
5421
+ background-image: none;
5422
+ border: 1px solid transparent;
5423
  }
5424
 
5425
  .premium-modal-trigger-btn>svg,
5426
  .premium-modal-trigger-btn .premium-modal-box-icon {
5427
+ -webkit-transition: all 0.3s ease-in-out;
5428
+ transition: all 0.3s ease-in-out;
5429
  }
5430
 
5431
  .premium-modal-trigger-btn>svg {
5432
+ width: 30px;
5433
+ height: 30px;
5434
  }
5435
 
5436
  .premium-modal-box-modal-close {
5437
+ float: left;
5438
+ font-size: 21px;
5439
+ font-weight: bold;
5440
+ line-height: 1;
5441
+ color: #000;
5442
  }
5443
 
5444
  .premium-modal-box-modal-close:hover,
5445
  .premium-modal-box-modal-close:focus {
5446
+ color: #000;
5447
+ text-decoration: none;
5448
+ cursor: pointer;
5449
  }
5450
 
5451
  button.premium-modal-box-modal-close {
5452
+ -webkit-appearance: none;
5453
+ padding: 0;
5454
+ cursor: pointer;
5455
+ background: transparent;
5456
+ border: 0;
5457
  }
5458
 
5459
  .premium-modal-box-modal {
5460
+ position: fixed;
5461
+ top: 0;
5462
+ left: 0;
5463
+ bottom: 0;
5464
+ right: 0;
5465
+ z-index: 1050;
5466
+ display: none;
5467
+ -webkit-overflow-scrolling: touch;
5468
+ outline: 0;
5469
+ padding: 0 !important;
5470
+ background: rgba(0, 0, 0, 0.5);
5471
+ -webkit-box-align: center;
5472
+ -webkit-align-items: center;
5473
+ -moz-box-align: center;
5474
+ -ms-flex-align: center;
5475
+ align-items: center;
5476
+ -webkit-box-pack: center;
5477
+ -webkit-justify-content: center;
5478
+ -moz-box-pack: center;
5479
+ -ms-flex-pack: center;
5480
+ justify-content: center;
5481
  }
5482
 
5483
  .premium-modal-box-modal .premium-modal-box-modal-dialog {
5484
+ position: absolute;
5485
+ max-height: -webkit-calc(100vh - 150px);
5486
+ max-height: calc(100vh - 150px);
5487
+ -js-display: flex;
5488
+ display: -webkit-box;
5489
+ display: -webkit-flex;
5490
+ display: -moz-box;
5491
+ display: -ms-flexbox;
5492
+ display: flex;
5493
+ -webkit-box-orient: vertical;
5494
+ -webkit-box-direction: normal;
5495
+ -webkit-flex-direction: column;
5496
+ -moz-box-orient: vertical;
5497
+ -moz-box-direction: normal;
5498
+ -ms-flex-direction: column;
5499
+ flex-direction: column;
5500
+ opacity: 0;
5501
+ background-color: #fff;
5502
+ border: 1px solid rgba(0, 0, 0, 0.2);
5503
+ -webkit-border-radius: 6px;
5504
+ border-radius: 6px;
5505
  }
5506
 
5507
  .premium-modal-box-modal-content {
5508
+ background-clip: padding-box;
5509
+ outline: 0;
5510
+ overflow-x: hidden;
5511
  }
5512
 
5513
  .premium-modal-backdrop.premium-in {
5514
+ filter: alpha(opacity=50);
5515
+ opacity: 0.5 !important;
5516
  }
5517
 
5518
  .premium-modal-fade.premium-in {
5519
+ opacity: 1;
5520
  }
5521
 
5522
  .premium-modal-backdrop {
5523
+ position: fixed;
5524
+ top: 0;
5525
+ left: 0;
5526
+ bottom: 0;
5527
+ right: 0;
5528
+ z-index: 1040;
5529
+ background-color: #000;
5530
  }
5531
 
5532
  .premium-modal-backdrop.premium-modal-fade {
5533
+ filter: alpha(opacity=0);
5534
+ opacity: 0;
5535
  }
5536
 
5537
  .premium-modal-fade {
5538
+ opacity: 0;
5539
  }
5540
 
5541
  .premium-in {
5542
+ -js-display: flex !important;
5543
+ display: -webkit-box !important;
5544
+ display: -webkit-flex !important;
5545
+ display: -moz-box !important;
5546
+ display: -ms-flexbox !important;
5547
+ display: flex !important;
5548
  }
5549
 
5550
  .premium-modal-box-modal-header {
5551
+ -js-display: flex;
5552
+ display: -webkit-box;
5553
+ display: -webkit-flex;
5554
+ display: -moz-box;
5555
+ display: -ms-flexbox;
5556
+ display: flex;
5557
+ -webkit-box-pack: justify;
5558
+ -webkit-justify-content: space-between;
5559
+ -moz-box-pack: justify;
5560
+ -ms-flex-pack: justify;
5561
+ justify-content: space-between;
5562
+ -webkit-box-align: center;
5563
+ -webkit-align-items: center;
5564
+ -moz-box-align: center;
5565
+ -ms-flex-align: center;
5566
+ align-items: center;
5567
+ padding: 5px 15px;
5568
+ border-bottom: 1px solid #e5e5e5;
5569
  }
5570
 
5571
  .premium-modal-box-modal-header .premium-modal-box-modal-close {
5572
+ margin-top: -2px;
5573
  }
5574
 
5575
  .premium-modal-box-modal-header .premium-modal-box-modal-title {
5576
+ -js-display: flex;
5577
+ display: -webkit-box;
5578
+ display: -webkit-flex;
5579
+ display: -moz-box;
5580
+ display: -ms-flexbox;
5581
+ display: flex;
5582
+ -webkit-box-align: center;
5583
+ -webkit-align-items: center;
5584
+ -moz-box-align: center;
5585
+ -ms-flex-align: center;
5586
+ align-items: center;
5587
+ margin: 0;
5588
+ padding: 0;
5589
  }
5590
 
5591
  .premium-modal-box-modal-header .premium-modal-box-modal-title svg {
5592
+ width: 50px;
5593
+ height: 60px;
5594
  }
5595
 
5596
  .premium-modal-box-modal-body {
5597
+ position: relative;
5598
+ padding: 15px;
5599
  }
5600
 
5601
  .premium-modal-box-modal-footer {
5602
+ padding: 15px;
5603
+ text-align: left;
5604
+ border-top: 1px solid #e5e5e5;
5605
  }
5606
 
5607
  .premium-modal-scrollbar-measure {
5608
+ position: absolute;
5609
+ top: -9999px;
5610
+ width: 50px;
5611
+ height: 50px;
5612
+ overflow: scroll;
5613
  }
5614
 
5615
  .premium-modal-trigger-text {
5616
+ background: none !important;
5617
+ display: inline-block;
5618
  }
5619
 
5620
  .premium-modal-box-container {
5621
+ width: 100% !important;
5622
  }
5623
 
5624
  /*Open Modal Button Style*/
5625
  .premium-modal-trigger-container .premium-modal-trigger-btn {
5626
+ -js-display: inline-flex;
5627
+ display: -webkit-inline-box;
5628
+ display: -webkit-inline-flex;
5629
+ display: -moz-inline-box;
5630
+ display: -ms-inline-flexbox;
5631
+ display: inline-flex;
5632
+ -webkit-box-align: center;
5633
+ -webkit-align-items: center;
5634
+ -moz-box-align: center;
5635
+ -ms-flex-align: center;
5636
+ align-items: center;
5637
+ border: none;
5638
+ -webkit-transition: all 0.3s ease-in-out;
5639
+ transition: all 0.3s ease-in-out;
5640
  }
5641
 
5642
  .premium-modal-trigger-container .premium-modal-trigger-btn.premium-btn-block {
5643
+ -webkit-box-pack: center;
5644
+ -webkit-justify-content: center;
5645
+ -moz-box-pack: center;
5646
+ -ms-flex-pack: center;
5647
+ justify-content: center;
5648
  }
5649
 
5650
  .premium-modal-trigger-container .premium-modal-trigger-img,
5651
  .premium-modal-trigger-container .premium-modal-trigger-text,
5652
  .premium-modal-trigger-container .premium-modal-trigger-animation {
5653
+ cursor: pointer;
5654
  }
5655
 
5656
  .premium-modal-trigger-container .premium-modal-trigger-animation {
5657
+ display: inline-block;
5658
+ width: 200px;
5659
+ height: 200px;
5660
+ -webkit-transition: all 0.3s ease-in-out;
5661
+ transition: all 0.3s ease-in-out;
5662
  }
5663
 
5664
  /*Image on Modal Header Style*/
5665
  .premium-modal-box-modal-header img {
5666
+ width: 48px;
5667
+ padding-left: 5px;
5668
  }
5669
 
5670
  .premium-modal-box-modal-header i,
5671
  .premium-modal-box-modal-header svg {
5672
+ padding-left: 6px;
5673
  }
5674
 
5675
  .premium-modal-box-modal-close {
5676
+ position: relative;
5677
+ z-index: 99;
5678
  }
5679
 
5680
  .premium-modal-trigger-img,
5682
  .premium-modal-box-close-button-container,
5683
  .premium-modal-box-modal-close,
5684
  .premium-modal-box-modal-lower-close {
5685
+ -webkit-transition: all 0.3s ease-in-out;
5686
+ transition: all 0.3s ease-in-out;
5687
  }
5688
 
5689
  @media (min-width: 768px) {
5690
+ .premium-modal-box-modal-dialog {
5691
+ width: 700px;
5692
+ max-height: 600px;
5693
+ overflow: auto;
5694
+ }
5695
  }
5696
 
5697
  @media (max-width: 767px) {
5698
+ .premium-modal-box-modal-dialog {
5699
+ width: 100%;
5700
+ max-height: 500px;
5701
+ overflow: auto;
5702
+ }
5703
  }
5704
 
5705
  .premium-modal-box-container[data-modal-animation*="animated-"] {
5706
+ opacity: 0;
5707
  }
5708
+
5709
  /************ Premium Nav Menu ************/
5710
  .premium-nav-widget-container ul {
5711
  list-style: none;
5966
  .premium-nav-hor .premium-mobile-menu-container .premium-item-badge {
5967
  top: 0;
5968
  -webkit-transform: translateY(0);
5969
+ -ms-transform: translateY(0);
5970
+ transform: translateY(0);
5971
  }
5972
 
5973
  /**Vertical Hamburger Menu*/
6284
 
6285
  .premium-nav-sticky-yes.premium-sticky-active.premium-ham-dropdown .premium-mobile-menu-container,
6286
  .premium-ham-dropdown .premium-stretch-dropdown .premium-mobile-menu-container {
6287
+ max-height: 400px;
6288
+ overflow-y: auto;
6289
  }
6290
 
6291
  /**Common*/
7104
  -ms-transform: translateX(0);
7105
  transform: translateX(0);
7106
  }
7107
+
7108
  /************ Premium Team Members ************/
7109
  /*********************************************/
7110
  .premium-person-container {
7603
  -ms-transform: translateX(0) rotate(90deg);
7604
  transform: translateX(0) rotate(90deg);
7605
  }
7606
+
7607
  /**************** Premium Pricing Table ****************/
7608
  /*******************************************************/
7609
  .premium-pricing-table-container {
7790
  flex-direction: column;
7791
  list-style-type: none;
7792
  margin: 0;
7793
+ padding: 0;
7794
  }
7795
 
7796
  .premium-pricing-list .premium-pricing-list-item {
7895
  -webkit-transition: all 0.3s ease-in-out;
7896
  transition: all 0.3s ease-in-out;
7897
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7898
 
7899
+ /**************** Premium Progress Bar ****************/
7900
+ /******************************************************/
7901
+ .premium-progressbar-container {
7902
+ position: relative;
 
 
 
 
 
 
 
 
 
 
 
 
 
7903
  }
7904
 
7905
+ .premium-progressbar-bar-wrap {
7906
+ position: relative;
7907
+ text-align: right;
7908
+ overflow: hidden;
7909
+ height: 25px;
7910
+ margin-bottom: 50px;
7911
+ background-color: #f5f5f5;
7912
+ -webkit-border-radius: 4px;
7913
+ border-radius: 4px;
7914
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
7915
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
7916
  }
7917
 
7918
+ .premium-progressbar-bar-wrap.premium-progressbar-dots {
7919
+ background-color: transparent;
7920
+ width: 100%;
7921
+ -js-display: flex;
7922
+ display: -webkit-box;
7923
+ display: -webkit-flex;
7924
+ display: -moz-box;
7925
+ display: -ms-flexbox;
7926
+ display: flex;
7927
+ height: auto;
7928
+ -webkit-box-shadow: none;
7929
+ box-shadow: none;
7930
  }
7931
 
7932
+ .premium-progressbar-bar-wrap .progress-segment {
7933
+ position: relative;
7934
+ width: 25px;
7935
+ height: 25px;
7936
+ -webkit-border-radius: 50%;
7937
+ border-radius: 50%;
7938
+ overflow: hidden;
7939
+ background-color: #f5f5f5;
7940
  }
7941
 
7942
+ .premium-progressbar-bar-wrap .progress-segment.filled {
7943
+ background: #6ec1e4;
 
7944
  }
7945
 
7946
+ .premium-progressbar-bar-wrap .progress-segment:not(:first-child):not(:last-child) {
7947
+ margin: 0 4px;
 
7948
  }
7949
 
7950
+ .premium-progressbar-bar-wrap .progress-segment:first-child {
7951
+ margin-left: 4px;
 
 
 
7952
  }
7953
 
7954
+ .premium-progressbar-bar-wrap .progress-segment:last-child {
7955
+ margin-right: 4px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7956
  }
7957
 
7958
+ .premium-progressbar-bar-wrap .progress-segment .segment-inner {
7959
+ position: absolute;
7960
+ top: 0;
7961
+ right: 0;
7962
+ height: 100%;
7963
+ background-color: #6ec1e4;
7964
  }
7965
 
7966
+ .premium-progressbar-bar {
7967
+ float: right;
7968
+ width: 0%;
7969
+ height: 100%;
7970
+ font-size: 12px;
7971
+ line-height: 20px;
7972
+ background: #6ec1e4;
7973
+ text-align: center;
7974
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
7975
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
7976
+ }
7977
+
7978
+ .premium-progressbar-striped .premium-progressbar-bar {
7979
+ background-image: -webkit-linear-gradient(-135deg,
7980
+ rgba(255, 255, 255, 0.15) 25%,
7981
+ transparent 25%,
7982
+ transparent 50%,
7983
+ rgba(255, 255, 255, 0.15) 50%,
7984
+ rgba(255, 255, 255, 0.15) 75%,
7985
+ transparent 75%,
7986
+ transparent);
7987
+ background-image: -webkit-linear-gradient(45deg,
7988
+ rgba(255, 255, 255, 0.15) 25%,
7989
+ transparent 25%,
7990
+ transparent 50%,
7991
+ rgba(255, 255, 255, 0.15) 50%,
7992
+ rgba(255, 255, 255, 0.15) 75%,
7993
+ transparent 75%,
7994
+ transparent);
7995
+ background-image: linear-gradient(45deg,
7996
+ rgba(255, 255, 255, 0.15) 25%,
7997
+ transparent 25%,
7998
+ transparent 50%,
7999
+ rgba(255, 255, 255, 0.15) 50%,
8000
+ rgba(255, 255, 255, 0.15) 75%,
8001
+ transparent 75%,
8002
+ transparent);
8003
+ -webkit-background-size: 40px 40px;
8004
+ background-size: 40px 40px;
8005
+ }
8006
+
8007
+ .premium-progressbar-active .premium-progressbar-bar {
8008
+ -webkit-animation: progress-bar-stripes 2s linear infinite;
8009
+ animation: progress-bar-stripes 2s linear infinite;
8010
+ }
8011
+
8012
+ .premium-progressbar-gradient .premium-progressbar-bar {
8013
+ -webkit-background-size: 400% 400% !important;
8014
+ background-size: 400% 400% !important;
8015
+ -webkit-animation: progress-bar-gradient 10s ease-in-out infinite;
8016
+ animation: progress-bar-gradient 10s ease-in-out infinite;
8017
+ }
8018
+
8019
+ .premium-progressbar-bar {
8020
+ position: absolute;
8021
+ overflow: hidden;
8022
+ line-height: 20px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8023
  }
8024
 
8025
+ .premium-progressbar-container .clearfix {
8026
+ clear: both;
 
 
 
 
 
8027
  }
8028
 
8029
+ .premium-progressbar-bar {
8030
+ -webkit-transition: width 0s ease-in-out !important;
8031
+ transition: width 0s ease-in-out !important;
 
8032
  }
8033
 
8034
+ .premium-progressbar-container p:first-of-type {
8035
+ margin: 0;
8036
+ float: left;
 
8037
  }
8038
 
8039
+ .premium-progressbar-container p:nth-of-type(2) {
8040
+ margin: 0;
8041
+ float: right;
8042
  }
8043
 
8044
+ .premium-progressbar-name {
8045
+ right: 50%;
8046
+ top: 0;
8047
+ left: 0;
8048
+ -webkit-transform: translateX(12.5px);
8049
+ -ms-transform: translateX(12.5px);
8050
+ transform: translateX(12.5px);
8051
+ z-index: 1;
8052
  }
8053
 
8054
+ .premium-progressbar-multiple-label {
8055
+ position: relative;
8056
+ float: right;
8057
+ width: 0;
8058
+ right: 50%;
8059
  }
8060
 
8061
+ .premium-progressbar-center-label {
8062
+ position: relative;
8063
+ white-space: nowrap;
8064
  }
8065
 
8066
+ .premium-progressbar-arrow {
8067
+ height: 15px;
8068
+ right: 50%;
8069
+ display: inline-block;
8070
+ border-right: 7px solid transparent;
8071
+ border-left: 7px solid transparent;
8072
+ border-top: 11px solid;
8073
+ -webkit-transform: translateX(50%);
8074
+ -ms-transform: translateX(50%);
8075
+ transform: translateX(50%);
8076
  }
8077
 
8078
+ .premium-progressbar-pin {
8079
+ border-right: 1px solid;
8080
+ height: 12px;
8081
+ right: 50%;
8082
+ display: inline-block;
8083
  }
8084
 
8085
+ /**
8086
+ * Circle Progress Bar
8087
+ */
8088
+ .premium-progressbar-circle-wrap,
8089
+ .premium-progressbar-hf-circle-wrap {
8090
+ width: 200px;
8091
+ height: 200px;
8092
+ position: relative;
8093
+ margin: 0 auto;
8094
  }
8095
 
8096
+ .premium-progressbar-circle-wrap .premium-progressbar-circle-content,
8097
+ .premium-progressbar-hf-circle-wrap .premium-progressbar-circle-content {
8098
+ position: absolute;
8099
+ top: 0;
8100
+ right: 0;
8101
+ width: 100%;
8102
+ height: 100%;
8103
+ -js-display: flex;
8104
  display: -webkit-box;
8105
  display: -webkit-flex;
 
 
8106
  display: -moz-box;
8107
+ display: -ms-flexbox;
8108
  display: flex;
8109
+ -webkit-box-orient: vertical;
8110
+ -webkit-box-direction: normal;
8111
+ -webkit-flex-direction: column;
8112
+ -moz-box-orient: vertical;
8113
+ -moz-box-direction: normal;
8114
+ -ms-flex-direction: column;
8115
+ flex-direction: column;
8116
  -webkit-box-pack: center;
 
8117
  -webkit-justify-content: center;
8118
  -moz-box-pack: center;
8119
+ -ms-flex-pack: center;
8120
  justify-content: center;
8121
  -webkit-box-align: center;
 
8122
  -webkit-align-items: center;
8123
  -moz-box-align: center;
8124
+ -ms-flex-align: center;
8125
  align-items: center;
8126
+ text-align: center;
8127
  }
8128
 
8129
+ .premium-progressbar-circle-wrap .premium-lottie-animation,
8130
+ .premium-progressbar-hf-circle-wrap .premium-lottie-animation {
8131
+ line-height: 1;
8132
+ }
8133
+
8134
+ .premium-progressbar-circle-wrap .premium-progressbar-circle {
8135
+ position: absolute;
8136
+ top: 0;
8137
+ right: 0;
8138
+ width: 100%;
8139
  height: 100%;
8140
+ -webkit-clip-path: inset(0 0 0 50%);
8141
+ clip-path: inset(0 0 0 50%);
8142
  }
8143
 
8144
+ .premium-progressbar-circle-wrap .premium-progressbar-circle div {
8145
+ position: absolute;
8146
+ right: 0;
8147
+ top: 0;
8148
+ height: 100%;
8149
+ width: 100%;
8150
+ border-width: 6px;
8151
+ border-style: solid;
8152
+ border-color: #54595f;
8153
+ -webkit-border-radius: 50%;
8154
+ border-radius: 50%;
8155
+ -webkit-clip-path: inset(0 50% 0 0);
8156
+ clip-path: inset(0 50% 0 0);
8157
+ }
8158
+
8159
+ .premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-left {
8160
+ -webkit-transform: rotate(0);
8161
+ -ms-transform: rotate(0);
8162
+ transform: rotate(0);
8163
+ }
8164
+
8165
+ .premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-right {
8166
+ -webkit-transform: rotate(-180deg);
8167
+ -ms-transform: rotate(-180deg);
8168
+ transform: rotate(-180deg);
8169
+ visibility: hidden;
8170
+ }
8171
+
8172
+ .premium-progressbar-circle-wrap .premium-progressbar-circle-base {
8173
+ width: 100%;
8174
+ height: 100%;
8175
+ border: 6px solid #eee;
8176
  -webkit-border-radius: 50%;
8177
  border-radius: 50%;
8178
+ }
8179
+
8180
+ .premium-progressbar-circle-wrap .premium-lottie-animation {
8181
+ line-height: 1;
8182
+ }
8183
+
8184
+ /**
8185
+ * Half Circle Progress Bar
8186
+ */
8187
+ .premium-progressbar-hf-container {
8188
+ position: relative;
8189
+ width: 200px;
8190
+ height: 200px;
8191
+ }
8192
+
8193
+ .premium-progressbar-hf-circle-wrap {
8194
+ overflow: hidden;
8195
+ }
8196
+
8197
+ .premium-progressbar-hf-circle-wrap .premium-progressbar-left-label {
8198
+ -webkit-box-ordinal-group: 2;
8199
+ -webkit-order: 1;
8200
+ -moz-box-ordinal-group: 2;
8201
+ -ms-flex-order: 1;
8202
+ order: 1;
8203
+ }
8204
+
8205
+ .premium-progressbar-hf-circle {
8206
  position: absolute;
8207
+ top: 0;
8208
+ left: 0;
8209
+ width: 100%;
8210
+ height: 100%;
8211
+ -webkit-clip-path: inset(0 0 50% 0);
8212
+ clip-path: inset(0 0 50% 0);
8213
+ }
8214
+
8215
+ .premium-progressbar-hf-circle-progress {
8216
+ position: absolute;
8217
+ left: 0;
8218
+ top: 0;
8219
+ height: 100%;
8220
+ width: 100%;
8221
+ border: 12px solid #000;
8222
+ -webkit-border-radius: 50%;
8223
+ border-radius: 50%;
8224
+ -webkit-clip-path: inset(50% 0 0 0);
8225
+ clip-path: inset(50% 0 0 0);
8226
+ -webkit-transform: rotate(0deg);
8227
+ -ms-transform: rotate(0deg);
8228
+ transform: rotate(0deg);
8229
+ -webkit-transition: -webkit-transform 1500ms linear;
8230
+ transition: -webkit-transform 1500ms linear;
8231
+ transition: transform 1500ms linear;
8232
+ transition: transform 1500ms linear, -webkit-transform 1500ms linear;
8233
+ }
8234
+
8235
+ .premium-progressbar-circle-inner {
8236
+ height: 100%;
8237
+ width: 100%;
8238
+ border: 12px solid #eee;
8239
+ -webkit-border-radius: 50%;
8240
+ border-radius: 50%;
8241
+ }
8242
+
8243
+ .premium-progressbar-hf-labels {
8244
+ margin: 0 auto;
8245
+ position: relative;
8246
+ font-size: 12px;
8247
+ font-weight: 400;
8248
+ -js-display: flex;
8249
+ display: -webkit-box;
8250
+ display: -webkit-flex;
8251
+ display: -moz-box;
8252
+ display: -ms-flexbox;
8253
+ display: flex;
8254
+ -webkit-box-pack: justify;
8255
+ -webkit-justify-content: space-between;
8256
+ -moz-box-pack: justify;
8257
+ -ms-flex-pack: justify;
8258
+ justify-content: space-between;
8259
+ }
8260
+
8261
+
8262
+ @-webkit-keyframes progress-bar-stripes {
8263
+ from {
8264
+ background-position: 100% 0;
8265
+ }
8266
+
8267
+ to {
8268
+ background-position: 40px 0;
8269
+ }
8270
+ }
8271
+
8272
+ @keyframes progress-bar-stripes {
8273
+ from {
8274
+ background-position: 100% 0;
8275
+ }
8276
+
8277
+ to {
8278
+ background-position: 40px 0;
8279
+ }
8280
+ }
8281
+
8282
+ @-webkit-keyframes progress-bar-gradient {
8283
+ 0% {
8284
+ background-position: 100% 50%;
8285
+ }
8286
+
8287
+ 50% {
8288
+ background-position: 0% 50%;
8289
+ }
8290
+
8291
+ 100% {
8292
+ background-position: 100% 50%;
8293
+ }
8294
+ }
8295
+
8296
+ @keyframes progress-bar-gradient {
8297
+ 0% {
8298
+ background-position: 100% 50%;
8299
+ }
8300
+
8301
+ 50% {
8302
+ background-position: 0% 50%;
8303
+ }
8304
+
8305
+ 100% {
8306
+ background-position: 100% 50%;
8307
+ }
8308
+ }
8309
+
8310
+ @media (max-width: 768px) {
8311
+ .premium-progressbar-center-label {
8312
+ -webkit-transform: rotate(-90deg) !important;
8313
+ -ms-transform: rotate(-90deg) !important;
8314
+ transform: rotate(-90deg) !important;
8315
+ -webkit-transform-origin: 0;
8316
+ -ms-transform-origin: 0;
8317
+ transform-origin: 0;
8318
+ }
8319
+ }
8320
+
8321
+ /**************** Premium Testimonials ****************/
8322
+ /******************************************************/
8323
+ .premium-testimonial-box {
8324
+ width: 100%;
8325
+ background: transparent;
8326
  -webkit-transition: all 0.3s ease-in-out;
8327
  transition: all 0.3s ease-in-out;
8328
  }
8329
 
8330
+ .premium-testimonial-box .premium-testimonial-author-info {
8331
+ -js-display: flex;
8332
+ display: -webkit-box;
8333
+ display: -webkit-flex;
8334
+ display: -moz-box;
8335
+ display: -ms-flexbox;
8336
+ display: flex;
8337
+ -webkit-box-pack: center;
8338
+ -webkit-justify-content: center;
8339
+ -moz-box-pack: center;
8340
+ -ms-flex-pack: center;
8341
+ justify-content: center;
8342
+ -webkit-box-align: center;
8343
+ -webkit-align-items: center;
8344
+ -moz-box-align: center;
8345
+ -ms-flex-align: center;
8346
+ align-items: center;
8347
  }
8348
 
8349
+ .premium-testimonial-box .premium-testimonial-person-name,
8350
+ .premium-testimonial-box .premium-testimonial-company-name {
8351
+ font-weight: 600;
8352
+ margin: 0;
8353
+ }
8354
+
8355
+ .premium-testimonial-container {
8356
+ position: relative;
8357
+ }
8358
+
8359
+ .premium-testimonial-img-wrapper {
8360
+ margin-right: auto;
8361
+ margin-left: auto;
8362
+ overflow: hidden;
8363
+ border-style: solid !important;
8364
+ }
8365
+
8366
+ .premium-testimonial-img-wrapper.circle {
8367
+ -webkit-border-radius: 50%;
8368
+ border-radius: 50%;
8369
+ }
8370
+
8371
+ .premium-testimonial-img-wrapper.rounded {
8372
+ -webkit-border-radius: 15px;
8373
+ border-radius: 15px;
8374
+ }
8375
+
8376
+ .premium-testimonial-img-wrapper img {
8377
+ -o-object-fit: cover;
8378
+ object-fit: cover;
8379
+ width: 100%;
8380
+ height: 100% !important;
8381
+ }
8382
+
8383
+ .premium-testimonial-content-wrapper {
8384
+ position: relative;
8385
+ display: -ms-flexbox;
8386
+ display: -webkit-flex;
8387
+ display: -moz-flex;
8388
+ display: -ms-flex;
8389
+ -js-display: flex;
8390
+ display: -webkit-box;
8391
+ display: -moz-box;
8392
+ display: flex;
8393
+ -webkit-box-orient: vertical;
8394
+ -webkit-box-direction: normal;
8395
+ -webkit-flex-direction: column;
8396
+ -moz-box-orient: vertical;
8397
+ -moz-box-direction: normal;
8398
+ -ms-flex-direction: column;
8399
+ flex-direction: column;
8400
+ z-index: 2;
8401
+ width: 100%;
8402
+ padding: 20px;
8403
+ text-align: center;
8404
+ }
8405
+
8406
+ .premium-testimonial-clear-float {
8407
+ clear: both;
8408
+ }
8409
+
8410
+ .premium-testimonial-upper-quote,
8411
+ .premium-testimonial-lower-quote {
8412
  position: absolute;
8413
+ z-index: 1;
8414
+ }
8415
+
8416
+ /**************** Premium Title ****************/
8417
+ /***********************************************/
8418
+ .premium-title-container .premium-title-header {
8419
+ position: relative;
8420
+ margin: 0;
8421
+ padding: 10px;
8422
+ }
8423
+
8424
+ .premium-title-container .premium-title-header:not(.premium-title-style7) {
8425
+ -webkit-box-align: center;
8426
+ -webkit-align-items: center;
8427
+ -moz-box-align: center;
8428
+ -ms-flex-align: center;
8429
+ align-items: center;
8430
+ }
8431
+
8432
+ .premium-title-container .premium-title-header svg {
8433
+ width: 40px;
8434
+ height: 40px;
8435
+ }
8436
+
8437
+ .premium-title-container .premium-title-header img {
8438
+ width: 40px;
8439
+ height: 40px;
8440
+ -o-object-fit: cover;
8441
+ object-fit: cover;
8442
+ }
8443
+
8444
+ .premium-title-container .premium-title-header a {
8445
+ position: absolute;
8446
+ top: 0;
8447
+ right: 0;
8448
+ width: 100%;
8449
+ height: 100%;
8450
+ }
8451
+
8452
+ .premium-title-container .premium-lottie-animation {
8453
+ -js-display: flex;
8454
+ display: -webkit-box;
8455
+ display: -webkit-flex;
8456
+ display: -moz-box;
8457
+ display: -ms-flexbox;
8458
+ display: flex;
8459
+ }
8460
+
8461
+ .premium-title-icon-row .premium-title-icon {
8462
+ margin-left: 10px;
8463
+ }
8464
+
8465
+ .premium-title-icon-row-reverse .premium-title-icon {
8466
+ margin-right: 10px;
8467
+ }
8468
+
8469
+ .premium-title-style3,
8470
+ .premium-title-style4 {
8471
+ -js-display: flex;
8472
+ display: -webkit-box;
8473
+ display: -webkit-flex;
8474
+ display: -moz-box;
8475
+ display: -ms-flexbox;
8476
+ display: flex;
8477
+ }
8478
+
8479
+ .premium-title-style1,
8480
+ .premium-title-style2,
8481
+ .premium-title-style5,
8482
+ .premium-title-style6,
8483
+ .premium-title-style8,
8484
+ .premium-title-style9 {
8485
+ -js-display: inline-flex;
8486
+ display: -webkit-inline-box;
8487
+ display: -webkit-inline-flex;
8488
+ display: -moz-inline-box;
8489
+ display: -ms-inline-flexbox;
8490
+ display: inline-flex;
8491
+ }
8492
+
8493
+ .premium-title-style7 {
8494
+ -js-display: inline-flex;
8495
+ display: -webkit-inline-box;
8496
+ display: -webkit-inline-flex;
8497
+ display: -moz-inline-box;
8498
+ display: -ms-inline-flexbox;
8499
+ display: inline-flex;
8500
+ -webkit-box-orient: vertical;
8501
+ -webkit-box-direction: normal;
8502
+ -webkit-flex-direction: column;
8503
+ -moz-box-orient: vertical;
8504
+ -moz-box-direction: normal;
8505
+ -ms-flex-direction: column;
8506
+ flex-direction: column;
8507
+ }
8508
+
8509
+ .premium-title-style7 .premium-title-style7-inner {
8510
+ -js-display: flex;
8511
+ display: -webkit-box;
8512
+ display: -webkit-flex;
8513
+ display: -moz-box;
8514
+ display: -ms-flexbox;
8515
+ display: flex;
8516
+ -webkit-box-align: center;
8517
+ -webkit-align-items: center;
8518
+ -moz-box-align: center;
8519
+ -ms-flex-align: center;
8520
+ align-items: center;
8521
+ }
8522
+
8523
+ .premium-title-style1 {
8524
+ border-width: 0;
8525
+ border-right: 3px solid #6ec1e4;
8526
+ }
8527
+
8528
+ .premium-title-container.style2,
8529
+ .premium-title-container.style4,
8530
+ .premium-title-container.style5,
8531
+ .premium-title-container.style6 {
8532
+ border-bottom: 3px solid #6ec1e4;
8533
+ }
8534
+
8535
+ /*Style 6 Header*/
8536
+ .premium-title-style6:before {
8537
+ position: absolute;
8538
+ right: 50%;
8539
+ bottom: 0;
8540
+ margin-right: -2px;
8541
+ content: "";
8542
+ border: 3px solid transparent;
8543
+ }
8544
+
8545
+ /*Style 6 Trinagle*/
8546
+ .premium-title-style7-stripe-wrap {
8547
+ -js-display: flex;
8548
+ display: -webkit-box;
8549
+ display: -webkit-flex;
8550
+ display: -moz-box;
8551
+ display: -ms-flexbox;
8552
+ display: flex;
8553
+ }
8554
+
8555
+ .premium-title-style7:before {
8556
+ display: none;
8557
+ }
8558
+
8559
+ .premium-title-style8 .premium-title-text[data-animation="shiny"] {
8560
+ -webkit-background-size: 125px 125px !important;
8561
+ background-size: 125px !important;
8562
+ color: rgba(255, 255, 255, 0);
8563
+ -webkit-background-clip: text !important;
8564
+ background-clip: text !important;
8565
+ -webkit-animation-name: pa-shinny-text !important;
8566
+ animation-name: pa-shinny-text !important;
8567
+ -webkit-animation-duration: var(--animation-speed) !important;
8568
+ animation-duration: var(--animation-speed) !important;
8569
+ -webkit-animation-iteration-count: infinite !important;
8570
+ animation-iteration-count: infinite !important;
8571
+ background: var(--base-color) -webkit-gradient(linear,
8572
+ left top,
8573
+ right top,
8574
+ from(var(--base-color)),
8575
+ to(var(--base-color)),
8576
+ color-stop(0.5, var(--shiny-color))) 0 0 no-repeat;
8577
+ }
8578
+
8579
+ .premium-title-style9[data-animation-blur="process"] .premium-title-style9-letter {
8580
+ -webkit-animation: pa-blur-shadow 2s 1 alternate;
8581
+ animation: pa-blur-shadow 2s 1 alternate;
8582
+ }
8583
+
8584
+ .premium-title-gradient-yes .premium-title-text,
8585
+ .premium-title-gradient-yes .premium-title-icon {
8586
+ -webkit-background-clip: text;
8587
+ -webkit-text-fill-color: transparent;
8588
+ background-image: -webkit-gradient(linear, left top, right top, from(#ffa648), color-stop(#f17cc1), to(#4da9fd));
8589
+ background-image: -webkit-linear-gradient(left, #ffa648, #f17cc1, #4da9fd);
8590
+ background-image: linear-gradient(to right, #ffa648, #f17cc1, #4da9fd);
8591
+ -webkit-animation: pa-text-gradient 8s infinite;
8592
+ animation: pa-text-gradient 8s infinite;
8593
+ }
8594
+
8595
+ .premium-title-clipped .premium-title-header {
8596
+ -webkit-text-fill-color: transparent;
8597
+ -webkit-background-clip: text;
8598
+ background-clip: text;
8599
+ }
8600
+
8601
+ @-webkit-keyframes pa-shinny-text {
8602
+ 0% {
8603
+ background-position: 100%;
8604
+ }
8605
+
8606
+ 100% {
8607
+ background-position: -100%;
8608
+ }
8609
+ }
8610
+
8611
+ @keyframes pa-shinny-text {
8612
+ 0% {
8613
+ background-position: 100%;
8614
+ }
8615
+
8616
+ 100% {
8617
+ background-position: -100%;
8618
+ }
8619
+ }
8620
+
8621
+ @-webkit-keyframes pa-blur-shadow {
8622
+ from {
8623
+ text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
8624
+ color: transparent;
8625
+ }
8626
+
8627
+ to {
8628
+ text-shadow: 0;
8629
+ }
8630
+ }
8631
+
8632
+ @keyframes pa-blur-shadow {
8633
+ from {
8634
+ text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
8635
+ color: transparent;
8636
+ }
8637
+
8638
+ to {
8639
+ text-shadow: 0;
8640
+ }
8641
+ }
8642
+
8643
+ @-webkit-keyframes pa-text-gradient {
8644
+
8645
+ 0%,
8646
+ 100% {
8647
+ -webkit-filter: hue-rotate(0deg);
8648
+ filter: hue-rotate(0deg);
8649
+ }
8650
+
8651
+ 50% {
8652
+ -webkit-filter: hue-rotate(360deg);
8653
+ filter: hue-rotate(360deg);
8654
+ }
8655
+ }
8656
+
8657
+ @keyframes pa-text-gradient {
8658
+
8659
+ 0%,
8660
+ 100% {
8661
+ -webkit-filter: hue-rotate(0deg);
8662
+ filter: hue-rotate(0deg);
8663
+ }
8664
+
8665
+ 50% {
8666
+ -webkit-filter: hue-rotate(360deg);
8667
+ filter: hue-rotate(360deg);
8668
+ }
8669
+ }
8670
+
8671
+ /**************** Premium Video Box ************/
8672
+ /***********************************************/
8673
+ .premium-video-box-transform {
8674
+ -webkit-transform: none !important;
8675
+ -ms-transform: none !important;
8676
+ transform: none !important;
8677
+ }
8678
+
8679
+ .premium-video-box-container {
8680
+ -js-display: flex;
8681
+ display: -webkit-box;
8682
+ display: -webkit-flex;
8683
+ display: -moz-box;
8684
+ display: -ms-flexbox;
8685
+ display: flex;
8686
+ -webkit-box-orient: vertical;
8687
+ -webkit-box-direction: normal;
8688
+ -webkit-flex-direction: column;
8689
+ -moz-box-orient: vertical;
8690
+ -moz-box-direction: normal;
8691
+ -ms-flex-direction: column;
8692
+ flex-direction: column;
8693
+ }
8694
+
8695
+ .premium-video-box-container>div {
8696
+ position: relative;
8697
+ overflow: hidden;
8698
+ }
8699
+
8700
+ .pa-aspect-ratio-11 .premium-video-box-container>div {
8701
+ padding-bottom: 100%;
8702
+ }
8703
+
8704
+ .pa-aspect-ratio-169 .premium-video-box-container>div {
8705
+ padding-bottom: 56.25%;
8706
+ }
8707
+
8708
+ .pa-aspect-ratio-43 .premium-video-box-container>div {
8709
+ padding-bottom: 75%;
8710
+ }
8711
+
8712
+ .pa-aspect-ratio-32 .premium-video-box-container>div {
8713
+ padding-bottom: 66.6666%;
8714
+ }
8715
+
8716
+ .pa-aspect-ratio-219 .premium-video-box-container>div {
8717
+ padding-bottom: 42.8571%;
8718
+ }
8719
+
8720
+ .pa-aspect-ratio-916 .premium-video-box-container>div {
8721
+ padding-bottom: 177.8%;
8722
+ }
8723
+
8724
+ .premium-video-box-image-container {
8725
+ position: absolute;
8726
+ top: 0;
8727
+ right: 0;
8728
+ bottom: 0;
8729
+ left: 0;
8730
+ width: 100%;
8731
+ height: 100%;
8732
+ -webkit-background-size: cover;
8733
+ background-size: cover;
8734
+ background-position: 50%;
8735
+ cursor: pointer;
8736
+ margin: auto;
8737
+ -webkit-transition: 0.2s all;
8738
+ transition: 0.2s all;
8739
+ }
8740
+
8741
+ .premium-video-box-play-icon-container {
8742
+ position: absolute;
8743
+ z-index: 2;
8744
+ cursor: pointer;
8745
+ -webkit-transform: translate(50%, -50%);
8746
+ -ms-transform: translate(50%, -50%);
8747
+ transform: translate(50%, -50%);
8748
+ background: rgba(252, 252, 252, 0.35);
8749
+ }
8750
+
8751
+ .premium-video-box-description-container {
8752
+ position: absolute;
8753
+ z-index: 2;
8754
+ padding: 5px;
8755
+ text-align: center;
8756
+ cursor: pointer;
8757
+ -webkit-transform: translate(50%, -50%);
8758
+ -ms-transform: translate(50%, -50%);
8759
+ transform: translate(50%, -50%);
8760
+ }
8761
+
8762
+ .premium-video-box-text {
8763
+ margin-bottom: 0 !important;
8764
+ -webkit-transition: all 0.3s ease-in-out;
8765
+ transition: all 0.3s ease-in-out;
8766
+ }
8767
+
8768
+ .premium-video-box-play-icon {
8769
+ padding: 15px;
8770
+ -webkit-transform: translateX(-4%);
8771
+ -ms-transform: translateX(-4%);
8772
+ transform: translateX(-4%);
8773
+ -webkit-transition: all 0.3s ease-in-out;
8774
+ transition: all 0.3s ease-in-out;
8775
+ }
8776
+
8777
+ .premium-video-box-video-container,
8778
+ .premium-vid-lightbox-container {
8779
+ position: absolute;
8780
+ top: 0;
8781
+ right: 0;
8782
+ z-index: 2;
8783
+ width: 100%;
8784
+ height: 100%;
8785
+ -webkit-transition: opacity 0.8s ease-in-out;
8786
+ transition: opacity 0.8s ease-in-out;
8787
+ overflow: hidden;
8788
+ cursor: pointer;
8789
+ }
8790
+
8791
+ .premium-video-box-container[data-overlay="true"][data-type="self"] .premium-video-box-video-container {
8792
+ opacity: 0;
8793
+ visibility: hidden;
8794
+ }
8795
+
8796
+ .premium-video-box-video-container iframe {
8797
+ max-width: 100%;
8798
+ width: 100%;
8799
+ height: 100%;
8800
+ margin: 0;
8801
+ line-height: 1;
8802
+ border: none;
8803
+ }
8804
+
8805
+ .premium-video-box-video-container video {
8806
+ max-width: 100%;
8807
+ width: 100%;
8808
+ height: 100%;
8809
+ margin: 0;
8810
+ line-height: 1;
8811
+ border: none;
8812
+ background-color: #000;
8813
+ -o-object-fit: contain;
8814
+ object-fit: contain;
8815
+ }
8816
+
8817
+ .premium-video-box-container .premium-video-box-vimeo-wrap {
8818
+ -js-display: flex;
8819
+ display: -webkit-box;
8820
+ display: -webkit-flex;
8821
+ display: -moz-box;
8822
+ display: -ms-flexbox;
8823
+ display: flex;
8824
+ position: absolute;
8825
+ top: 0;
8826
+ right: 0;
8827
+ z-index: 3;
8828
+ margin: 10px;
8829
+ margin-left: 10px;
8830
+ -webkit-transition: opacity 0.2s ease-out;
8831
+ transition: opacity 0.2s ease-out;
8832
+ margin-left: 4.6em;
8833
+ }
8834
+
8835
+ .premium-video-box-vimeo-wrap .premium-video-box-vimeo-portrait {
8836
+ width: 60px;
8837
+ height: 60px;
8838
+ background: rgba(23, 35, 34, 0.75);
8839
+ margin-left: 1px;
8840
+ -webkit-box-flex: 1;
8841
+ -webkit-flex: 1 0 auto;
8842
+ -moz-box-flex: 1;
8843
+ -ms-flex: 1 0 auto;
8844
+ flex: 1 0 auto;
8845
+ padding: 0;
8846
+ }
8847
+
8848
+ .premium-video-box-vimeo-portrait img {
8849
+ width: 50px;
8850
+ height: 50px;
8851
+ margin: 5px;
8852
+ padding: 0;
8853
+ border: 0;
8854
+ -webkit-border-radius: 50%;
8855
+ border-radius: 50%;
8856
+ }
8857
+
8858
+ .premium-video-box-vimeo-wrap .premium-video-box-vimeo-headers {
8859
+ font-size: 10px;
8860
+ }
8861
+
8862
+ .premium-video-box-vimeo-wrap .premium-video-box-vimeo-title {
8863
+ max-width: 100%;
8864
+ font-size: 2em !important;
8865
+ font-weight: 700;
8866
+ margin: 0;
8867
+ padding: 0.1em 0.2em;
8868
+ background: rgba(23, 35, 34, 0.75);
8869
+ display: inline-block;
8870
+ text-transform: none;
8871
+ line-height: normal;
8872
+ letter-spacing: normal;
8873
+ }
8874
+
8875
+ .premium-video-box-vimeo-wrap .premium-video-box-vimeo-byline {
8876
+ font-size: 1.2em !important;
8877
+ font-weight: 400;
8878
+ color: #fff;
8879
+ margin-top: 0.1em;
8880
+ padding: 0.2em 0.5em;
8881
+ background: rgba(23, 35, 34, 0.75);
8882
+ text-transform: none;
8883
+ line-height: normal;
8884
+ letter-spacing: normal;
8885
+ }
8886
+
8887
+ .premium-video-box-playlist-container {
8888
+ -js-display: flex;
8889
+ display: -webkit-box;
8890
+ display: -webkit-flex;
8891
+ display: -moz-box;
8892
+ display: -ms-flexbox;
8893
+ display: flex;
8894
+ -webkit-flex-wrap: wrap;
8895
+ -ms-flex-wrap: wrap;
8896
+ flex-wrap: wrap;
8897
+ }
8898
+
8899
+ .premium-video-box-playlist-container .premium-video-box-container {
8900
+ height: 100%;
8901
+ overflow: hidden;
8902
+ }
8903
+
8904
+ .premium-video-box-container:hover .premium-video-box-image-container.zoomin {
8905
+ -webkit-transform: scale(1.1);
8906
+ -ms-transform: scale(1.1);
8907
+ transform: scale(1.1);
8908
+ }
8909
+
8910
+ .premium-video-box-container:hover .premium-video-box-image-container.zoomout {
8911
+ -webkit-transform: scale(1);
8912
+ -ms-transform: scale(1);
8913
+ transform: scale(1);
8914
+ }
8915
+
8916
+ .premium-video-box-container:hover .premium-video-box-image-container.scale {
8917
+ -webkit-transform: scale(1.3) rotate(-5deg);
8918
+ -ms-transform: scale(1.3) rotate(-5deg);
8919
+ transform: scale(1.3) rotate(-5deg);
8920
+ }
8921
+
8922
+ .premium-video-box-container:hover .premium-video-box-image-container.gray {
8923
+ -webkit-filter: grayscale(0%);
8924
+ filter: grayscale(0%);
8925
+ }
8926
+
8927
+ .premium-video-box-container:hover .premium-video-box-image-container.blur {
8928
+ -webkit-filter: blur(3px);
8929
+ filter: blur(3px);
8930
+ }
8931
+
8932
+ .premium-video-box-container:hover .premium-video-box-image-container.sepia {
8933
+ -webkit-filter: sepia(0%);
8934
+ filter: sepia(0%);
8935
+ }
8936
+
8937
+ .premium-video-box-container:hover .premium-video-box-image-container.trans {
8938
+ -webkit-transform: translateX(0px) scale(1.1);
8939
+ -ms-transform: translateX(0px) scale(1.1);
8940
+ transform: translateX(0px) scale(1.1);
8941
+ }
8942
+
8943
+ .premium-video-box-container:hover .premium-video-box-image-container.bright {
8944
+ -webkit-filter: brightness(1.2);
8945
+ filter: brightness(1.2);
8946
+ }
8947
+
8948
+ .premium-video-box-image-container.gray {
8949
+ -webkit-filter: grayscale(100%);
8950
+ filter: grayscale(100%);
8951
+ }
8952
+
8953
+ .premium-video-box-image-container.zoomout,
8954
+ .premium-video-box-image-container.scale {
8955
+ -webkit-transform: scale(1.2);
8956
+ -ms-transform: scale(1.2);
8957
+ transform: scale(1.2);
8958
+ }
8959
+
8960
+ .premium-video-box-image-container.sepia {
8961
+ -webkit-filter: sepia(30%);
8962
+ filter: sepia(30%);
8963
+ }
8964
+
8965
+ .premium-video-box-image-container.bright {
8966
+ -webkit-filter: brightness(1);
8967
+ filter: brightness(1);
8968
+ }
8969
+
8970
+ .premium-video-box-image-container.trans {
8971
+ -webkit-transform: translateX(15px) scale(1.1);
8972
+ -ms-transform: translateX(15px) scale(1.1);
8973
+ transform: translateX(15px) scale(1.1);
8974
+ }
8975
+
8976
+ .premium-video-box-mask-media {
8977
+ -webkit-mask-repeat: no-repeat;
8978
+ mask-repeat: no-repeat;
8979
+ }
8980
+
8981
+ /* Sticky Video Option */
8982
+ .premium-video-box-container.premium-video-box-sticky-apply {
8983
+ z-index: 99;
8984
+ overflow: unset;
8985
+ }
8986
+
8987
+ .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
8988
+ position: fixed !important;
8989
+ z-index: 99999;
8990
+ height: 225px;
8991
+ width: 400px;
8992
+ background: #fff;
8993
+ }
8994
+
8995
+ .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-vimeo-wrap,
8996
+ .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-container:before {
8997
+ visibility: hidden;
8998
+ }
8999
+
9000
+ .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 {
9001
+ -webkit-box-shadow: unset;
9002
+ box-shadow: unset;
9003
+ }
9004
+
9005
+ .premium-video-box-sticky-close,
9006
+ .premium-video-box-sticky-infobar {
9007
+ display: none;
9008
+ }
9009
+
9010
+ .premium-video-box-sticky-apply .premium-video-box-sticky-close {
9011
+ position: absolute;
9012
+ padding: 5px;
9013
+ cursor: pointer;
9014
+ z-index: 99999;
9015
+ height: 14px;
9016
+ width: 14px;
9017
+ -webkit-box-sizing: content-box;
9018
+ -moz-box-sizing: content-box;
9019
+ box-sizing: content-box;
9020
+ -webkit-border-radius: 100%;
9021
+ border-radius: 100%;
9022
+ -js-display: flex;
9023
+ display: -webkit-box;
9024
+ display: -webkit-flex;
9025
+ display: -moz-box;
9026
+ display: -ms-flexbox;
9027
+ display: flex;
9028
+ -webkit-box-pack: center;
9029
+ -webkit-justify-content: center;
9030
+ -moz-box-pack: center;
9031
+ -ms-flex-pack: center;
9032
+ justify-content: center;
9033
+ -webkit-box-align: center;
9034
+ -webkit-align-items: center;
9035
+ -moz-box-align: center;
9036
+ -ms-flex-align: center;
9037
+ align-items: center;
9038
+ }
9039
+
9040
+ .premium-video-box-sticky-apply .premium-video-box-play-icon-container {
9041
+ -js-display: flex;
9042
+ display: -webkit-box;
9043
+ display: -webkit-flex;
9044
+ display: -moz-box;
9045
+ display: -ms-flexbox;
9046
+ display: flex;
9047
+ }
9048
+
9049
+ .premium-video-box-sticky-apply .premium-video-box-play-icon {
9050
+ -webkit-transition: none;
9051
+ transition: none;
9052
+ }
9053
+
9054
+ .premium-video-box-sticky-apply .premium-video-box-sticky-infobar {
9055
+ display: block;
9056
+ position: relative;
9057
+ top: 100%;
9058
+ width: 100%;
9059
+ padding: 5px;
9060
+ text-align: center;
9061
+ z-index: 9999;
9062
+ margin-top: -1px;
9063
+ }
9064
+
9065
+ .premium-video-box-sticky-apply .premium-video-box-inner-wrap.ui-draggable {
9066
+ cursor: move;
9067
+ }
9068
+
9069
+ .premium-video-sticky-top-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
9070
+ left: auto;
9071
+ right: 20px;
9072
+ top: 20px;
9073
+ }
9074
+
9075
+ .premium-video-sticky-bottom-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
9076
+ left: auto;
9077
+ right: 20px;
9078
+ bottom: 20px;
9079
+ }
9080
+
9081
+ .premium-video-sticky-top-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
9082
+ right: auto;
9083
+ left: 20px;
9084
+ top: 20px;
9085
+ }
9086
+
9087
+ .premium-video-sticky-bottom-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
9088
+ right: auto;
9089
+ left: 20px;
9090
+ bottom: 20px;
9091
+ }
9092
+
9093
+ .premium-video-sticky-center-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
9094
+ left: auto;
9095
+ right: 20px;
9096
+ top: 50%;
9097
+ -webkit-transform: translateY(-50%);
9098
+ -ms-transform: translateY(-50%);
9099
+ transform: translateY(-50%);
9100
+ }
9101
+
9102
+ .premium-video-sticky-center-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
9103
+ right: auto;
9104
+ left: 20px;
9105
+ top: 50%;
9106
+ -webkit-transform: translateY(-50%);
9107
+ -ms-transform: translateY(-50%);
9108
+ transform: translateY(-50%);
9109
+ }
9110
+
9111
+ .premium-video-sticky-bottom-right .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap,
9112
+ .premium-video-sticky-bottom-left .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
9113
+ bottom: 55px;
9114
+ }
9115
+
9116
+ .premium-video-sticky-top-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
9117
+ .premium-video-sticky-bottom-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
9118
+ .premium-video-sticky-center-left .premium-video-box-sticky-apply .premium-video-box-sticky-close {
9119
+ top: -10px;
9120
+ left: -10px;
9121
+ }
9122
+
9123
+ .premium-video-sticky-top-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
9124
+ .premium-video-sticky-bottom-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
9125
+ .premium-video-sticky-center-right .premium-video-box-sticky-apply .premium-video-box-sticky-close {
9126
+ top: -10px;
9127
+ right: -10px;
9128
+ }
9129
+
9130
+ .premium-video-box-filter-sticky {
9131
+ -webkit-filter: none !important;
9132
+ filter: none !important;
9133
+ }
9134
+
9135
+ .premium-mscroll-yes.elementor-widget-premium-addon-video-box div {
9136
+ cursor: default;
9137
+ }
9138
+
9139
+ /************ Premium Vertical Scroll ************/
9140
+ /*************************************************/
9141
+ .premium-vscroll-inner {
9142
+ position: relative;
9143
+ /* overflow: hidden;
9144
+ */
9145
+ min-height: 100%;
9146
+ }
9147
+
9148
+ .premium-vscroll-inner .premium-vscroll-dots {
9149
+ position: fixed;
9150
+ z-index: 100;
9151
+ opacity: 1;
9152
+ margin-top: -32px;
9153
+ -webkit-transition: all 0.3s ease-in-out;
9154
+ transition: all 0.3s ease-in-out;
9155
+ }
9156
+
9157
+ .premium-vscroll-wrap .premium-vscroll-nav-menu {
9158
+ opacity: 1;
9159
+ -webkit-transition: all 0.3s ease-in-out;
9160
+ transition: all 0.3s ease-in-out;
9161
+ }
9162
+
9163
+ .premium-vscroll-inner .premium-vscroll-dots,
9164
+ .premium-vscroll-wrap .premium-vscroll-dots-hide {
9165
+ opacity: 0;
9166
+ visibility: hidden;
9167
+ }
9168
+
9169
+ .premium-vscroll-nav-dots-yes .premium-vscroll-inner .premium-vscroll-dots {
9170
+ opacity: 1;
9171
+ visibility: visible;
9172
+ }
9173
+
9174
+ .premium-vscroll-dots.middle {
9175
+ top: 50%;
9176
+ margin-top: 0;
9177
+ -webkit-transform: translateY(-50%);
9178
+ -ms-transform: translateY(-50%);
9179
+ transform: translateY(-50%);
9180
+ }
9181
+
9182
+ .premium-vscroll-dots.top {
9183
+ top: 40px;
9184
+ }
9185
+
9186
+ .premium-vscroll-dots.bottom {
9187
+ bottom: 30px;
9188
+ }
9189
+
9190
+ .premium-vscroll-dots.right {
9191
+ left: 17px;
9192
+ }
9193
+
9194
+ .premium-vscroll-dots.left {
9195
+ right: 17px;
9196
+ }
9197
+
9198
+ .premium-vscroll-inner ul.premium-vscroll-dots-list,
9199
+ .premium-vscroll-wrap .premium-vscroll-nav-menu {
9200
+ margin: 0 !important;
9201
+ padding: 0;
9202
+ }
9203
+
9204
+ .premium-vscroll-inner ul.premium-vscroll-dots-list li {
9205
+ width: 14px;
9206
+ height: 13px;
9207
+ margin: 7px;
9208
+ position: relative;
9209
+ display: -webkit-box;
9210
+ display: -webkit-flex;
9211
+ display: -ms-flexbox;
9212
+ -js-display: flex;
9213
+ display: -moz-box;
9214
+ display: flex;
9215
+ -webkit-box-pack: center;
9216
+ -ms-flex-pack: center;
9217
+ -webkit-justify-content: center;
9218
+ -moz-box-pack: center;
9219
+ justify-content: center;
9220
+ -webkit-box-align: center;
9221
+ -ms-flex-align: center;
9222
+ -webkit-align-items: center;
9223
+ -moz-box-align: center;
9224
+ align-items: center;
9225
+ overflow: visible;
9226
+ }
9227
+
9228
+ .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link {
9229
+ display: block;
9230
+ position: relative;
9231
+ z-index: 1;
9232
+ width: 100%;
9233
+ height: 100%;
9234
+ cursor: pointer;
9235
+ text-decoration: none;
9236
+ }
9237
+
9238
+ .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link span {
9239
+ top: 2px;
9240
+ right: 2.5px;
9241
+ width: 8px;
9242
+ height: 8px;
9243
+ border: 1px solid #000;
9244
+ -webkit-border-radius: 50%;
9245
+ border-radius: 50%;
9246
+ position: absolute;
9247
+ z-index: 1;
9248
+ -webkit-transition: all 0.3s ease-in-out;
9249
+ transition: all 0.3s ease-in-out;
9250
+ }
9251
+
9252
+ .premium-vscroll-inner .premium-vscroll-dot-item.active .premium-vscroll-nav-link span {
9253
+ -webkit-transform: scale(1.6);
9254
+ -ms-transform: scale(1.6);
9255
+ transform: scale(1.6);
9256
+ }
9257
+
9258
+ .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-tooltip {
9259
+ position: absolute;
9260
+ color: #fff;
9261
+ font-size: 14px;
9262
+ font-family: arial, helvetica, sans-serif;
9263
+ white-space: nowrap;
9264
+ max-width: 220px;
9265
+ padding-right: 0.4em;
9266
+ padding-left: 0.4em;
9267
+ }
9268
+
9269
+ .premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip {
9270
+ left: 27px;
9271
+ }
9272
+
9273
+ /* * Lines */
9274
+ .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item {
9275
+ width: 4px;
9276
+ height: 30px;
9277
+ }
9278
+
9279
+ .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item span {
9280
+ width: 100%;
9281
+ height: 100%;
9282
+ -webkit-border-radius: 0;
9283
+ border-radius: 0;
9284
+ }
9285
+
9286
+ .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item.active span {
9287
+ -webkit-transform: scale(1);
9288
+ -ms-transform: scale(1);
9289
+ transform: scale(1);
9290
+ }
9291
+
9292
+ @media (max-width: 768px) {
9293
+ .premium-vscroll-dots.right {
9294
+ left: 7px;
9295
+ }
9296
+
9297
+ .premium-vscroll-dots.left {
9298
+ right: 7px;
9299
+ }
9300
+ }
9301
+
9302
+ /* @media only screen and (min-device-width: 769px) and (max-device-width: 1024px) {
9303
+ [data-animation="rotate"] .premium-vscroll-temp {
9304
+ height: -webkit-calc(100vh - 75px) !important;
9305
+ height: calc(100vh - 75px) !important;
9306
+ }
9307
+ }
9308
+
9309
+ @media (max-width: 768px) {
9310
+ [data-animation="rotate"] .premium-vscroll-temp {
9311
+ height: -webkit-calc(100vh - 60px) !important;
9312
+ height: calc(100vh - 60px) !important;
9313
+ }
9314
+ } */
9315
+
9316
+ /** Ipads- Safari */
9317
+ /* @supports (-webkit-touch-callout: none) {
9318
+
9319
+ @media (max-width: 768px) {
9320
+ [data-animation="rotate"] .premium-vscroll-temp {
9321
+ height: -webkit-calc(100vh - 108px) !important;
9322
+ height: calc(100vh - 108px) !important;
9323
+ }
9324
+ }
9325
+
9326
+ @media only screen and (min-device-width: 769px) and (max-device-width: 1024px) {
9327
+ [data-animation="rotate"] .premium-vscroll-temp {
9328
+ height: -webkit-calc(100vh - 60px) !important;
9329
+ height: calc(100vh - 60px) !important;
9330
+ }
9331
+ }
9332
+ } */
9333
+
9334
+ .premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip::after {
9335
+ position: absolute;
9336
+ top: 50%;
9337
+ content: "";
9338
+ right: -webkit-calc(100% - 1px);
9339
+ right: calc(100% - 1px);
9340
+ width: 10px;
9341
+ height: 0;
9342
+ border-top: 6px solid transparent;
9343
+ border-bottom: 6px solid transparent;
9344
+ border-right: 6px solid;
9345
+ -webkit-transform: translateY(-50%);
9346
+ -ms-transform: translateY(-50%);
9347
+ transform: translateY(-50%);
9348
+ }
9349
+
9350
+ .premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip::after {
9351
+ position: absolute;
9352
+ top: 50%;
9353
+ content: "";
9354
+ left: -webkit-calc(100% - 1px);
9355
+ left: calc(100% - 1px);
9356
+ width: 10px;
9357
+ height: 0;
9358
+ border-top: 6px solid transparent;
9359
+ border-bottom: 6px solid transparent;
9360
+ border-left: 6px solid;
9361
+ -webkit-transform: translateY(-50%);
9362
+ -ms-transform: translateY(-50%);
9363
+ transform: translateY(-50%);
9364
+ }
9365
+
9366
+ .premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip {
9367
+ right: 27px;
9368
+ }
9369
+
9370
+ .premium-vscroll-nav-menu {
9371
+ position: fixed;
9372
+ top: 20px;
9373
+ height: 40px;
9374
+ z-index: 100;
9375
+ padding: 0;
9376
+ margin: 0;
9377
+ }
9378
+
9379
+ .premium-vscroll-nav-menu.left {
9380
+ right: 0;
9381
+ }
9382
+
9383
+ .premium-vscroll-nav-menu.right {
9384
+ left: 0;
9385
+ }
9386
+
9387
+ .premium-vscroll-nav-menu .premium-vscroll-nav-item {
9388
+ display: inline-block;
9389
+ margin: 10px;
9390
+ color: #000;
9391
+ background: #fff;
9392
+ background: rgba(255, 255, 255, 0.3);
9393
+ }
9394
+
9395
+ .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link {
9396
+ padding: 9px 18px;
9397
+ display: block;
9398
+ cursor: pointer;
9399
+ }
9400
+
9401
+ .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link,
9402
+ .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:hover {
9403
+ color: #000;
9404
+ }
9405
+
9406
+ .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:focus,
9407
+ .multiscroll-nav li a:focus {
9408
+ outline: none;
9409
+ }
9410
+
9411
+ .premium-vscroll-temp .slimScrollBar {
9412
+ visibility: hidden;
9413
+ }
9414
+
9415
+ [data-hijacking="off"] .premium-vscroll-temp {
9416
+ height: 100vh;
9417
+ }
9418
+
9419
+ [data-hijacking="off"] .premium-vscroll-temp>div {
9420
+ opacity: 0;
9421
+ top: 0;
9422
+ left: 0;
9423
+ width: 100%;
9424
+ /* Force Hardware Acceleration */
9425
+ -webkit-transform: translateZ(0);
9426
+ transform: translateZ(0);
9427
+ -webkit-backface-visibility: hidden;
9428
+ backface-visibility: hidden;
9429
+ }
9430
+
9431
+ [data-hijacking="off"] .premium-vscroll-temp:first-of-type>div::before {
9432
+ display: none;
9433
+ position: absolute;
9434
+ width: 100%;
9435
+ top: 20px;
9436
+ z-index: 2;
9437
+ }
9438
+
9439
+ [data-hijacking="off"][data-animation="rotate"] .premium-vscroll-temp {
9440
+ position: relative;
9441
+ /* enable a 3D-space for children elements */
9442
+ -webkit-perspective: 1800px;
9443
+ perspective: 1800px;
9444
+ }
9445
+
9446
+ [data-hijacking="off"][data-animation="rotate"] .premium-vscroll-temp>div {
9447
+ position: absolute;
9448
+ -webkit-transform-origin: center bottom;
9449
+ -ms-transform-origin: center bottom;
9450
+ transform-origin: center bottom;
9451
+ }
9452
+
9453
+ [data-hijacking="off"][data-animation="rotate"] .premium-vscroll-temp:last-of-type>div {
9454
+ opacity: 1 !important;
9455
+ -webkit-transform: translateY(0px) scale(1) rotateX(0deg) !important;
9456
+ transform: translateY(0px) scale(1) rotateX(0deg) !important;
9457
+ }
9458
+
9459
+ [data-hijacking="off"][data-animation="parallax"] .premium-vscroll-temp>div {
9460
+ position: fixed;
9461
+ }
9462
+
9463
+ [data-hijacking="off"][data-animation="scaleDown"] .premium-vscroll-temp>div {
9464
+ position: fixed;
9465
+ }
9466
+
9467
+ [data-hijacking="off"] .premium-vscroll-parallax-last {
9468
+ -webkit-transform: translateY(0px) scale(1) !important;
9469
+ -ms-transform: translateY(0px) scale(1) !important;
9470
+ transform: translateY(0px) scale(1) !important;
9471
+ }
9472
+
9473
+ [data-hijacking="off"] .premium-vscroll-parallax-position {
9474
+ position: unset !important;
9475
+ }
9476
+
9477
+ /********** Premium Woo Products **********/
9478
+ /******************************************/
9479
+ .ast-single-post .entry-content .premium-woocommerce a {
9480
+ text-decoration: none;
9481
+ }
9482
+
9483
+ .premium-woocommerce .premium-woo-qv-btn {
9484
+ cursor: pointer;
9485
+ }
9486
+
9487
+ .premium-woocommerce:not(.premium-woo-skin-grid-7) li.product .star-rating {
9488
+ margin: 0 auto 0.5em;
9489
+ }
9490
+
9491
+ .premium-woocommerce:not(.premium-woo-skin-grid-10) .premium-woo-product-sale-wrap .premium-woo-product-onsale,
9492
+ .premium-woocommerce:not(.premium-woo-skin-grid-10) .premium-woo-product-featured-wrap .premium-woo-product-featured {
9493
+ display: block;
9494
+ text-align: center;
9495
+ color: #fff;
9496
+ min-width: 2em;
9497
+ min-height: 2em;
9498
+ line-height: 2em;
9499
+ padding: 0.3em 0.6em;
9500
+ margin: 0.5em 0.6em;
9501
+ }
9502
+
9503
+ .premium-woocommerce .pa-out-of-stock {
9504
+ display: block;
9505
+ text-align: center;
9506
+ color: #fff;
9507
+ min-width: 2em;
9508
+ min-height: 2em;
9509
+ line-height: 2em;
9510
+ padding: 0.3em 0.6em;
9511
+ margin: 0.5em 0.6em;
9512
+ }
9513
+
9514
+ .premium-woocommerce .premium-woo-products-inner ul.products {
9515
+ -js-display: flex;
9516
+ display: -webkit-box;
9517
+ display: -webkit-flex;
9518
+ display: -moz-box;
9519
+ display: -ms-flexbox;
9520
+ display: flex;
9521
+ margin: 0;
9522
+ padding: 0;
9523
+ -webkit-flex-wrap: wrap;
9524
+ -ms-flex-wrap: wrap;
9525
+ flex-wrap: wrap;
9526
+ list-style: none outside;
9527
+ -webkit-column-gap: 0;
9528
+ -moz-column-gap: 0;
9529
+ column-gap: 0;
9530
+ }
9531
+
9532
+ .premium-woocommerce .premium-woo-products-inner ul.products li.product {
9533
+ margin: 0 0 10px;
9534
+ padding: 0 10px;
9535
+ }
9536
+
9537
+ .premium-woocommerce.premium-woo-products-inner ul.products li.product .premium-woo-product-wrapper {
9538
+ overflow: hidden;
9539
+ -webkit-transition: all 0.3s ease-in-out;
9540
+ transition: all 0.3s ease-in-out;
9541
+ }
9542
+
9543
+ .premium-woocommerce .premium-woo-product-category {
9544
+ display: block;
9545
+ font-size: 0.85em;
9546
+ margin-bottom: 0.5em;
9547
+ line-height: 1.3;
9548
+ }
9549
+
9550
+ .premium-woocommerce .woocommerce-loop-product__title {
9551
+ margin-bottom: 0.5em;
9552
+ font-size: 1em;
9553
+ -webkit-transition: all 0.3s ease-in-out;
9554
+ transition: all 0.3s ease-in-out;
9555
+ }
9556
+
9557
+ .premium-woocommerce .woocommerce-loop-product__link {
9558
+ position: relative;
9559
+ display: block !important;
9560
+ overflow: hidden;
9561
+ -webkit-transition: all 0.3s ease-in-out;
9562
+ transition: all 0.3s ease-in-out;
9563
+ }
9564
+
9565
+ .premium-woocommerce .premium-woo-ribbon-container,
9566
+ .premium-woocommerce .pa-out-of-stock {
9567
+ position: absolute;
9568
+ z-index: 9;
9569
+ }
9570
+
9571
+ .premium-woocommerce .premium-woo-ribbon-container {
9572
+ top: 0;
9573
+ right: 0;
9574
+ }
9575
+
9576
+ .premium-woocommerce .pa-out-of-stock {
9577
+ top: 7px;
9578
+ right: 9px;
9579
+ margin: 0;
9580
+ }
9581
+
9582
+ .premium-woocommerce .star-rating {
9583
+ display: block;
9584
+ float: none;
9585
+ margin: 0 auto 0.5em;
9586
+ -webkit-backface-visibility: hidden;
9587
+ backface-visibility: hidden;
9588
+ overflow: hidden;
9589
+ position: relative;
9590
+ height: 1em;
9591
+ line-height: 1;
9592
+ font-size: 0.857em;
9593
+ width: 5.4em;
9594
+ font-family: star;
9595
+ }
9596
+
9597
+ .premium-woocommerce .star-rating::before {
9598
+ content: "\73\73\73\73\73";
9599
+ color: #54595f;
9600
+ float: right;
9601
+ top: 0;
9602
+ right: 0;
9603
+ position: absolute;
9604
+ }
9605
+
9606
+ .premium-woocommerce .premium-woo-products-inner ul.products .star-rating span {
9607
+ overflow: hidden;
9608
+ float: right;
9609
+ top: 0;
9610
+ right: 0;
9611
+ position: absolute;
9612
+ padding-top: 1.5em;
9613
+ }
9614
+
9615
+ .premium-woocommerce .star-rating span::before {
9616
+ content: "\53\53\53\53\53";
9617
+ color: inherit;
9618
+ top: 0;
9619
+ position: absolute;
9620
+ right: 0;
9621
+ }
9622
+
9623
+ .premium-woo-product-thumbnail {
9624
+ position: relative;
9625
+ overflow: hidden;
9626
+ }
9627
+
9628
+ .premium-woo-product-thumbnail .woocommerce-loop-product__link img {
9629
+ margin: 0;
9630
+ width: 100%;
9631
+ }
9632
+
9633
+ .premium-woo-product-sale-wrap,
9634
+ .premium-woo-product-featured-wrap {
9635
+ margin: 0;
9636
+ }
9637
+
9638
+ .premium-woocommerce .premium-woo-products-details-wrap {
9639
+ padding: 1em 1.2em;
9640
+ }
9641
+
9642
+ .premium-woocommerce .premium-woo-products-details-wrap .button {
9643
+ display: inline-block;
9644
+ background-color: #6ec1e4;
9645
+ color: #fff;
9646
+ margin: 0.5em 0;
9647
+ line-height: 1.3;
9648
+ padding: 10px 40px;
9649
+ font-size: 100%;
9650
+ cursor: pointer;
9651
+ text-decoration: none;
9652
+ overflow: visible;
9653
+ font-weight: 700;
9654
+ background-image: none;
9655
+ border: none;
9656
+ -webkit-border-radius: 0px;
9657
+ border-radius: 0px;
9658
+ -webkit-box-shadow: none;
9659
+ box-shadow: none;
9660
+ text-shadow: none;
9661
+ -webkit-transition: all 0.3s ease-in-out;
9662
+ transition: all 0.3s ease-in-out;
9663
+ }
9664
+
9665
+ .premium-woocommerce li.product .price {
9666
+ display: block;
9667
+ line-height: 1.3;
9668
+ font-weight: 700;
9669
+ margin-bottom: 0.5em;
9670
+ font-size: 0.9em;
9671
+ }
9672
+
9673
+ .premium-woocommerce li.product .price del {
9674
+ display: inline-block;
9675
+ font-weight: 400;
9676
+ background: transparent;
9677
+ opacity: 1;
9678
+ }
9679
+
9680
+ .premium-woocommerce li.product .price ins {
9681
+ display: inline-block;
9682
+ background: transparent;
9683
+ text-decoration: none;
9684
+ font-weight: inherit;
9685
+ }
9686
+
9687
+ .premium-woocommerce li.product .price .amount {
9688
+ color: inherit !important;
9689
+ }
9690
+
9691
+ .premium-woocommerce li.product .premium-woo-product-desc p {
9692
+ margin: 0;
9693
+ }
9694
+
9695
+ .premium-woo-product-align-left .premium-woocommerce li.product .star-rating {
9696
+ margin-right: auto;
9697
+ margin-left: 0;
9698
+ }
9699
+
9700
+ .premium-woo-product-align-center .premium-woocommerce li.product .star-rating {
9701
+ margin-right: auto;
9702
+ margin-left: auto;
9703
+ }
9704
+
9705
+ .premium-woo-product-align-right .premium-woocommerce li.product .star-rating {
9706
+ margin-right: 0;
9707
+ margin-left: auto;
9708
+ }
9709
+
9710
+ .premium-woo-products-pagination ul.page-numbers {
9711
+ -js-display: flex;
9712
+ display: -webkit-box;
9713
+ display: -webkit-flex;
9714
+ display: -moz-box;
9715
+ display: -ms-flexbox;
9716
+ display: flex;
9717
+ list-style-type: none;
9718
+ margin: 0;
9719
+ margin-top: 10px;
9720
+ padding: 0;
9721
+ border: none;
9722
+ -webkit-box-pack: center;
9723
+ -webkit-justify-content: center;
9724
+ -moz-box-pack: center;
9725
+ -ms-flex-pack: center;
9726
+ justify-content: center;
9727
+ }
9728
+
9729
+ .premium-woo-products-pagination ul.page-numbers li {
9730
+ margin: 0 0 0.4em 0.4em;
9731
+ padding: 0;
9732
+ text-align: center;
9733
+ }
9734
+
9735
+ .premium-woo-products-pagination ul.page-numbers li .page-numbers {
9736
+ margin: 0;
9737
+ text-decoration: none;
9738
+ color: #000;
9739
+ border: 1px solid #54595f;
9740
+ padding: 0;
9741
+ line-height: 1;
9742
+ font-size: 1em;
9743
+ font-weight: 400;
9744
+ padding: 0.75em;
9745
+ display: block;
9746
+ min-width: 2.5em;
9747
+ -webkit-transition: all 0.3s ease-in-out;
9748
+ transition: all 0.3s ease-in-out;
9749
+ }
9750
+
9751
+ .premium-woo-products-pagination ul.page-numbers li .page-numbers:hover,
9752
+ .premium-woo-products-pagination ul.page-numbers li .page-numbers.current {
9753
+ background-color: #54595f;
9754
+ color: #fff;
9755
+ outline: none;
9756
+ }
9757
+
9758
+ .premium-woocommerce .premium-loading-feed,
9759
+ .premium-woo-quick-view-loader .premium-loading-feed {
9760
+ display: block;
9761
+ position: absolute;
9762
+ width: 100%;
9763
+ height: 100%;
9764
+ top: 0px;
9765
+ right: 0px;
9766
+ bottom: 0px;
9767
+ left: 0px;
9768
+ background: rgba(255, 255, 255, 0.2);
9769
+ -js-display: flex;
9770
+ display: -webkit-box;
9771
+ display: -webkit-flex;
9772
+ display: -moz-box;
9773
+ display: -ms-flexbox;
9774
+ display: flex;
9775
+ -webkit-box-align: center;
9776
+ -webkit-align-items: center;
9777
+ -moz-box-align: center;
9778
+ -ms-flex-align: center;
9779
+ align-items: center;
9780
+ }
9781
+
9782
+ /**
9783
+ * Image Hover Effects
9784
+ */
9785
+ .premium-woocommerce .woocommerce-loop-product__link img {
9786
+ -webkit-transition: all 0.3s ease-in-out;
9787
+ transition: all 0.3s ease-in-out;
9788
+ }
9789
+
9790
+ .premium-woo-product__hover-zoomout .woocommerce-loop-product__link img {
9791
+ -webkit-transform: scale(1.2);
9792
+ -ms-transform: scale(1.2);
9793
+ transform: scale(1.2);
9794
+ }
9795
+
9796
+ .premium-woo-product__hover-zoomout li.product:hover .woocommerce-loop-product__link img {
9797
+ -webkit-transform: none;
9798
+ -ms-transform: none;
9799
+ transform: none;
9800
+ }
9801
+
9802
+ .premium-woo-product__hover-zoomin .woocommerce-loop-product__link img {
9803
+ -webkit-transform: none;
9804
+ -ms-transform: none;
9805
+ transform: none;
9806
+ }
9807
+
9808
+ .premium-woo-product__hover-zoomin li.product:hover .woocommerce-loop-product__link img {
9809
+ -webkit-transform: scale(1.2);
9810
+ -ms-transform: scale(1.2);
9811
+ transform: scale(1.2);
9812
+ }
9813
+
9814
+ .premium-woo-product__hover-gray .woocommerce-loop-product__link img {
9815
+ -webkit-filter: grayscale(100%);
9816
+ filter: grayscale(100%);
9817
+ }
9818
+
9819
+ .premium-woo-product__hover-gray li.product:hover .woocommerce-loop-product__link img {
9820
+ -webkit-filter: grayscale(0%);
9821
+ filter: grayscale(0%);
9822
+ }
9823
+
9824
+ .premium-woo-product__hover-sepia .woocommerce-loop-product__link img {
9825
+ -webkit-filter: sepia(30%);
9826
+ filter: sepia(30%);
9827
+ }
9828
+
9829
+ .premium-woo-product__hover-sepia li.product:hover .woocommerce-loop-product__link img {
9830
+ -webkit-filter: sepia(0%);
9831
+ filter: sepia(0%);
9832
+ }
9833
+
9834
+ .premium-woo-product__hover-bright .woocommerce-loop-product__link img {
9835
+ -webkit-filter: brightness(1);
9836
+ filter: brightness(1);
9837
+ }
9838
+
9839
+ .premium-woo-product__hover-bright li.product:hover .woocommerce-loop-product__link img {
9840
+ -webkit-filter: brightness(1.2);
9841
+ filter: brightness(1.2);
9842
+ }
9843
+
9844
+ .premium-woo-product__hover-trans .woocommerce-loop-product__link img {
9845
+ -webkit-transform: translateX(15px) scale(1.1);
9846
+ -ms-transform: translateX(15px) scale(1.1);
9847
+ transform: translateX(15px) scale(1.1);
9848
+ }
9849
+
9850
+ .premium-woo-product__hover-trans li.product:hover .woocommerce-loop-product__link img {
9851
+ -webkit-transform: translateX(0px) scale(1.1);
9852
+ -ms-transform: translateX(0px) scale(1.1);
9853
+ transform: translateX(0px) scale(1.1);
9854
+ }
9855
+
9856
+ .premium-woo-product__hover-scale li.product:hover .woocommerce-loop-product__link img {
9857
+ -webkit-transform: scaleX(1.3) scaleY(1.3) rotate(-5deg);
9858
+ -ms-transform: scaleX(1.3) scaleY(1.3) rotate(-5deg);
9859
+ transform: scaleX(1.3) scaleY(1.3) rotate(-5deg);
9860
+ }
9861
+
9862
+ .premium-woocommerce .premium-woo-product__on_hover {
9863
+ position: absolute;
9864
+ top: 0;
9865
+ left: 0;
9866
+ bottom: 0;
9867
+ right: 0;
9868
+ height: 100%;
9869
+ opacity: 0;
9870
+ }
9871
+
9872
+ .premium-woo-product__hover-swap li.product:hover .premium-woo-product__on_hover {
9873
+ opacity: 1;
9874
+ }
9875
+
9876
+ .premium-woo-skin-grid-1 .premium-woo-qv-btn,
9877
+ .premium-woo-skin-grid-3 .premium-woo-qv-btn,
9878
+ .premium-woo-skin-grid-4 .premium-woo-qv-btn {
9879
+ position: absolute;
9880
+ bottom: 0;
9881
+ right: 0;
9882
+ width: 100%;
9883
+ text-align: center;
9884
+ padding: 5px;
9885
+ background: rgba(2, 2, 2, 0.5);
9886
+ color: #fff;
9887
+ -webkit-transition: all 0.3s ease-in-out;
9888
+ transition: all 0.3s ease-in-out;
9889
+ z-index: 2;
9890
+ -webkit-transform: translateY(100%);
9891
+ -ms-transform: translateY(100%);
9892
+ transform: translateY(100%);
9893
+ }
9894
+
9895
+ .premium-woo-skin-grid-4 .premium-woo-qv-btn {
9896
+ -webkit-transition-delay: 0.1s;
9897
+ transition-delay: 0.1s;
9898
+ }
9899
+
9900
+ .premium-woo-skin-grid-1 .premium-woo-qv-icon,
9901
+ .premium-woo-skin-grid-3 .premium-woo-qv-icon,
9902
+ .premium-woo-skin-grid-4 .premium-woo-qv-icon,
9903
+ .premium-woo-skin-grid-6 .premium-woo-qv-icon {
9904
+ margin-right: 0.5em;
9905
+ }
9906
+
9907
+ .premium-woo-product-thumbnail:hover .premium-woo-qv-btn-translate {
9908
+ -webkit-transform: translateY(0);
9909
+ -ms-transform: translateY(0);
9910
+ transform: translateY(0);
9911
+ }
9912
+
9913
+ .premium-woo-product-wrapper .premium-woo-qv-data {
9914
+ position: absolute;
9915
+ top: 0;
9916
+ right: 0;
9917
+ width: 100%;
9918
+ height: 100%;
9919
+ z-index: 1;
9920
+ overflow: hidden;
9921
+ cursor: pointer;
9922
+ }
9923
+
9924
+ /**
9925
+ * Skin 1,4
9926
+ */
9927
+ .premium-woo-skin-grid-1 .premium-woo-product-actions-wrapper,
9928
+ .premium-woo-skin-grid-4 .premium-woo-product-actions-wrapper {
9929
+ position: absolute;
9930
+ top: 0.7em;
9931
+ left: 1em;
9932
+ -webkit-transform: translate3d(-15px, 0, 0);
9933
+ transform: translate3d(-15px, 0, 0);
9934
+ -webkit-transition: all 0.3s ease-in-out;
9935
+ transition: all 0.3s ease-in-out;
9936
+ opacity: 0;
9937
+ z-index: 9;
9938
+ }
9939
+
9940
+ .premium-woocommerce .premium-woo-product-actions-wrapper .premium-woo-cart-btn {
9941
+ position: relative;
9942
+ display: block;
9943
+ margin: 0 0 3px;
9944
+ background: #fff;
9945
+ text-align: center;
9946
+ outline: 0;
9947
+ -webkit-transition: all 0.3s ease-in-out;
9948
+ transition: all 0.3s ease-in-out;
9949
+ }
9950
+
9951
+ .premium-woocommerce .premium-woo-product-actions-wrapper .premium-woo-add-cart-icon {
9952
+ display: block;
9953
+ color: #54595f;
9954
+ width: 30px;
9955
+ line-height: 30px;
9956
+ height: 30px;
9957
+ cursor: pointer;
9958
+ -webkit-transition: all 0.3s ease-in-out;
9959
+ transition: all 0.3s ease-in-out;
9960
+ }
9961
+
9962
+ .premium-woo-skin-grid-1 li.product:hover .premium-woo-product-actions-wrapper,
9963
+ .premium-woo-skin-grid-4 li.product:hover .premium-woo-product-actions-wrapper {
9964
+ -webkit-transform: translate3d(-5px, 0, 0);
9965
+ transform: translate3d(-5px, 0, 0);
9966
+ opacity: 1;
9967
+ }
9968
+
9969
+ .premium-woocommerce .premium-woo-cart-btn.adding .premium-woo-add-cart-icon {
9970
+ -webkit-animation: spin 2s linear infinite;
9971
+ animation: spin 2s linear infinite;
9972
+ }
9973
+
9974
+ .premium-woocommerce .premium-woo-cart-btn.adding .premium-woo-add-cart-icon::before {
9975
+ content: "\f013";
9976
+ }
9977
+
9978
+ .premium-woocommerce .premium-woo-cart-btn.added .premium-woo-add-cart-icon::before {
9979
+ content: "\f00c";
9980
+ }
9981
+
9982
+ /**
9983
+ * Skin 2
9984
+ */
9985
+ .premium-woo-skin-grid-2 li.product .premium-woo-products-details-wrap {
9986
+ position: absolute;
9987
+ background: #fff;
9988
+ bottom: 0;
9989
+ right: 0;
9990
+ width: 100%;
9991
+ z-index: 2;
9992
+ padding: 0;
9993
+ opacity: 0;
9994
+ -webkit-transition: opacity 0.2s, -webkit-transform 0.4s;
9995
+ transition: opacity 0.2s, -webkit-transform 0.4s;
9996
+ transition: transform 0.4s, opacity 0.2s;
9997
+ transition: transform 0.4s, opacity 0.2s, -webkit-transform 0.4s;
9998
+ -webkit-transform: translateZ(0) translateY(5px);
9999
+ transform: translateZ(0) translateY(5px);
10000
+ }
10001
+
10002
+ .premium-woo-skin-grid-2 .premium-woo-product-details {
10003
+ padding: 15px 0;
10004
+ }
10005
+
10006
+ .premium-woo-skin-grid-2 li.product:hover .premium-woo-products-details-wrap {
10007
+ opacity: 1;
10008
+ -webkit-transform: translateZ(0) translateY(0);
10009
+ transform: translateZ(0) translateY(0);
10010
+ }
10011
+
10012
+ .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper {
10013
+ position: static;
10014
+ -js-display: flex;
10015
+ display: -webkit-box;
10016
+ display: -webkit-flex;
10017
+ display: -moz-box;
10018
+ display: -ms-flexbox;
10019
+ display: flex;
10020
+ -webkit-box-orient: horizontal;
10021
+ -webkit-box-direction: reverse;
10022
+ -webkit-flex-direction: row-reverse;
10023
+ -moz-box-orient: horizontal;
10024
+ -moz-box-direction: reverse;
10025
+ -ms-flex-direction: row-reverse;
10026
+ flex-direction: row-reverse;
10027
+ }
10028
+
10029
+ .premium-woo-skin-grid-2 .premium-woo-product-actions-wrapper>* {
10030
+ -webkit-box-flex: 1;
10031
+ -webkit-flex: 1;
10032
+ -moz-box-flex: 1;
10033
+ -ms-flex: 1;
10034
+ flex: 1;
10035
+ min-width: 50%;
10036
+ }
10037
+
10038
+ .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper .button {
10039
+ -js-display: flex;
10040
+ display: -webkit-box;
10041
+ display: -webkit-flex;
10042
+ display: -moz-box;
10043
+ display: -ms-flexbox;
10044
+ display: flex;
10045
+ margin: 0;
10046
+ text-align: center;
10047
+ -webkit-box-pack: center;
10048
+ -webkit-justify-content: center;
10049
+ -moz-box-pack: center;
10050
+ -ms-flex-pack: center;
10051
+ justify-content: center;
10052
+ -webkit-box-align: center;
10053
+ -webkit-align-items: center;
10054
+ -moz-box-align: center;
10055
+ -ms-flex-align: center;
10056
+ align-items: center;
10057
+ }
10058
+
10059
+ .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper .premium-woo-qv-btn {
10060
+ background-color: #54595f;
10061
+ }
10062
+
10063
+ /**
10064
+ * Skin 4
10065
+ */
10066
+ .premium-woo-skin-grid-4 li.product .premium-woo-products-details-wrap {
10067
+ position: absolute;
10068
+ right: 0;
10069
+ left: 0;
10070
+ top: 50%;
10071
+ -webkit-transform: scale(0.9) translateZ(0) translateY(-50%);
10072
+ transform: scale(0.9) translateZ(0) translateY(-50%);
10073
+ text-align: center;
10074
+ z-index: 2;
10075
+ opacity: 0;
10076
+ -webkit-transition: opacity 0.5s, -webkit-transform 0.3s;
10077
+ transition: opacity 0.5s, -webkit-transform 0.3s;
10078
+ transition: opacity 0.5s, transform 0.3s;
10079
+ transition: opacity 0.5s, transform 0.3s, -webkit-transform 0.3s;
10080
+ }
10081
+
10082
+ .premium-woo-skin-grid-4 li.product .premium-woo-product-overlay,
10083
+ .premium-woo-skin-grid-8 li.product .premium-woo-product-overlay {
10084
+ position: absolute;
10085
+ top: 0;
10086
+ right: 0;
10087
+ width: 100%;
10088
+ height: 100%;
10089
+ opacity: 0;
10090
+ visibility: hidden;
10091
+ background-color: rgba(27, 27, 23, 0.3);
10092
+ -webkit-transition: all 0.25s ease-in-out;
10093
+ transition: all 0.25s ease-in-out;
10094
+ }
10095
+
10096
+ .premium-woo-skin-grid-4 li.product:hover .premium-woo-product-overlay,
10097
+ .premium-woo-skin-grid-8 li.product:hover .premium-woo-product-overlay {
10098
+ opacity: 1;
10099
+ visibility: visible;
10100
+ z-index: 1;
10101
+ }
10102
+
10103
+ .premium-woo-skin-grid-4 li.product:hover .premium-woo-products-details-wrap {
10104
+ -webkit-transform: scale(1) translateZ(0) translateY(-50%);
10105
+ transform: scale(1) translateZ(0) translateY(-50%);
10106
+ opacity: 1;
10107
+ }
10108
+
10109
+ /**
10110
+ * Skin 5
10111
+ */
10112
+ .premium-woo-skin-grid-5 li.product .premium-woo-product-actions-wrapper {
10113
+ -js-display: flex;
10114
+ display: -webkit-box;
10115
+ display: -webkit-flex;
10116
+ display: -moz-box;
10117
+ display: -ms-flexbox;
10118
+ display: flex;
10119
+ }
10120
+
10121
+ .premium-woo-skin-grid-5 li.product .premium-woo-product-actions-wrapper .premium-woo-qv-btn {
10122
+ -js-display: flex;
10123
+ display: -webkit-box;
10124
+ display: -webkit-flex;
10125
+ display: -moz-box;
10126
+ display: -ms-flexbox;
10127
+ display: flex;
10128
+ -webkit-box-align: center;
10129
+ -webkit-align-items: center;
10130
+ -moz-box-align: center;
10131
+ -ms-flex-align: center;
10132
+ align-items: center;
10133
+ background-color: #54595f;
10134
+ padding: 10px;
10135
+ -webkit-transition: all 0.25s ease 0s;
10136
+ transition: all 0.25s ease 0s;
10137
+ }
10138
+
10139
+ .premium-woo-skin-grid-5 li.product .premium-woo-products-details-wrap {
10140
+ width: 75%;
10141
+ }
10142
+
10143
+ .premium-woo-skin-grid-5 .premium-woo-product-wrapper {
10144
+ -js-display: flex;
10145
+ display: -webkit-box;
10146
+ display: -webkit-flex;
10147
+ display: -moz-box;
10148
+ display: -ms-flexbox;
10149
+ display: flex;
10150
+ -webkit-box-align: center;
10151
+ -webkit-align-items: center;
10152
+ -moz-box-align: center;
10153
+ -ms-flex-align: center;
10154
+ align-items: center;
10155
+ }
10156
+
10157
+ .premium-woo-product-align-right .premium-woo-skin-grid-5 .premium-woo-product-actions-wrapper {
10158
+ -webkit-box-pack: end;
10159
+ -webkit-justify-content: flex-end;
10160
+ -moz-box-pack: end;
10161
+ -ms-flex-pack: end;
10162
+ justify-content: flex-end;
10163
+ }
10164
+
10165
+ .premium-woo-product-align-center .premium-woo-skin-grid-5 .premium-woo-product-actions-wrapper {
10166
+ -webkit-box-pack: center;
10167
+ -webkit-justify-content: center;
10168
+ -moz-box-pack: center;
10169
+ -ms-flex-pack: center;
10170
+ justify-content: center;
10171
+ }
10172
+
10173
+ /**
10174
+ * Skin 6
10175
+ */
10176
+ .premium-woo-skin-grid-6 .premium-woo-qv-btn {
10177
+ position: absolute;
10178
+ top: 50%;
10179
+ right: 50%;
10180
+ min-width: 40%;
10181
+ text-align: center;
10182
+ padding: 5px;
10183
+ background: rgba(2, 2, 2, 0.5);
10184
+ color: #fff;
10185
+ -webkit-transform: translate(50%, -50%);
10186
+ -ms-transform: translate(50%, -50%);
10187
+ transform: translate(50%, -50%);
10188
+ opacity: 0;
10189
+ visibility: hidden;
10190
+ -webkit-transition: all 0.3s ease-in-out;
10191
+ transition: all 0.3s ease-in-out;
10192
+ cursor: pointer;
10193
+ z-index: 2;
10194
+ }
10195
+
10196
+ .premium-woo-skin-grid-6 li.product:hover .premium-woo-qv-btn {
10197
+ opacity: 1;
10198
+ visibility: visible;
10199
+ }
10200
+
10201
+ .premium-woo-product-align-right .premium-woo-skin-grid-6 li.product .premium-woo-product-info .star-rating,
10202
+ .premium-woo-product-align-left .premium-woo-skin-grid-6 li.product .premium-woo-product-info .star-rating,
10203
+ .premium-woo-product-align-right .premium-woo-skin-grid-7 li.product .premium-woo-product-info .star-rating,
10204
+ .premium-woo-product-align-left .premium-woo-skin-grid-7 li.product .premium-woo-product-info .star-rating {
10205
+ margin: 0;
10206
+ }
10207
+
10208
+ .premium-woo-skin-grid-6 li.product .premium-woo-product-info {
10209
+ -js-display: flex;
10210
+ display: -webkit-box;
10211
+ display: -webkit-flex;
10212
+ display: -moz-box;
10213
+ display: -ms-flexbox;
10214
+ display: flex;
10215
+ -webkit-box-pack: justify;
10216
+ -webkit-justify-content: space-between;
10217
+ -moz-box-pack: justify;
10218
+ -ms-flex-pack: justify;
10219
+ justify-content: space-between;
10220
+ }
10221
+
10222
+ .premium-woo-product-align-center .premium-woocommerce li.product .premium-woo-product-info {
10223
+ -webkit-box-orient: vertical;
10224
+ -webkit-box-direction: normal;
10225
+ -webkit-flex-direction: column;
10226
+ -moz-box-orient: vertical;
10227
+ -moz-box-direction: normal;
10228
+ -ms-flex-direction: column;
10229
+ flex-direction: column;
10230
+ }
10231
+
10232
+ .premium-woo-product-align-right .premium-woocommerce li.product .premium-woo-product-info {
10233
+ -webkit-box-orient: horizontal;
10234
+ -webkit-box-direction: reverse;
10235
+ -webkit-flex-direction: row-reverse;
10236
+ -moz-box-orient: horizontal;
10237
+ -moz-box-direction: reverse;
10238
+ -ms-flex-direction: row-reverse;
10239
+ flex-direction: row-reverse;
10240
+ }
10241
+
10242
+ .premium-woo-skin-grid-6 li.product .premium-woo-product-gallery-images {
10243
+ -js-display: flex;
10244
+ display: -webkit-box;
10245
+ display: -webkit-flex;
10246
+ display: -moz-box;
10247
+ display: -ms-flexbox;
10248
+ display: flex;
10249
+ position: absolute;
10250
+ bottom: 10px;
10251
+ width: 100%;
10252
+ -webkit-box-pack: center;
10253
+ -webkit-justify-content: center;
10254
+ -moz-box-pack: center;
10255
+ -ms-flex-pack: center;
10256
+ justify-content: center;
10257
+ }
10258
+
10259
+ .premium-woo-product-gallery-images .premium-woo-product__gallery_image {
10260
+ width: 20%;
10261
+ margin: 0 0.2em;
10262
+ border: 2px solid #aaa;
10263
+ cursor: pointer;
10264
+ }
10265
+
10266
+ /**
10267
+ * Metro
10268
+ */
10269
+ /*.premium-woo-grid-style1 ul.products li.product {
10270
+ width: 25%;
10271
+ }*/
10272
+ .premium-woo-products-metro li.product .premium-woo-product-thumbnail img,
10273
+ .premium-woo-products-metro li.product .premium-woo-product-wrapper,
10274
+ .premium-woo-products-metro li.product .premium-woo-product-thumbnail,
10275
+ .premium-woo-products-metro li.product .woocommerce-LoopProduct-link {
10276
+ height: 100%;
10277
+ }
10278
+
10279
+ .premium-woo-products-metro ul.products li.product {
10280
+ margin-bottom: 0;
10281
+ }
10282
+
10283
+ .premium-woo-products-metro li.product .premium-woo-product-thumbnail img {
10284
+ -o-object-fit: cover;
10285
+ object-fit: cover;
10286
+ }
10287
+
10288
+ /*
10289
+ * Carousel
10290
+ */
10291
+ .premium-carousel-hidden {
10292
+ opacity: 0;
10293
+ visibility: hidden;
10294
+ }
10295
+
10296
+ .premium-woocommerce:not(.premium-woo-skin-grid-7) .slick-arrow {
10297
+ -webkit-border-radius: 50%;
10298
+ border-radius: 50%;
10299
+ }
10300
+
10301
+ .premium-woocommerce ul.slick-dots {
10302
+ width: 100%;
10303
+ }
10304
+
10305
+ /*
10306
+ * Quick View Html/body
10307
+ */
10308
+ html.premium-woo-qv-opened,
10309
+ html.premium-woo-qv-opened body {
10310
+ overflow: hidden;
10311
+ }
10312
+
10313
+ /**
10314
+ * Quick View Modal
10315
+ */
10316
+ .premium-woo-quick-view-back {
10317
+ position: fixed;
10318
+ visibility: hidden;
10319
+ overflow: hidden;
10320
+ background: rgba(2, 2, 2, 0.5);
10321
+ opacity: 0;
10322
+ -webkit-transition: opacity 0.25s;
10323
+ transition: opacity 0.25s;
10324
+ z-index: 999;
10325
+ }
10326
+
10327
+ .premium-woo-quick-view-active {
10328
+ top: 0;
10329
+ right: 0;
10330
+ width: 100%;
10331
+ height: 100%;
10332
+ opacity: 1;
10333
+ visibility: visible;
10334
+ }
10335
+
10336
+ #premium-woo-quick-view-modal {
10337
+ position: fixed;
10338
+ visibility: hidden;
10339
+ opacity: 0;
10340
+ top: 0;
10341
+ right: 0;
10342
+ width: 100%;
10343
+ height: 100%;
10344
+ z-index: 1400;
10345
+ text-align: center;
10346
+ -webkit-transition: all 0.3s;
10347
+ transition: all 0.3s;
10348
+ overflow-x: hidden;
10349
+ overflow-y: auto;
10350
+ }
10351
+
10352
+ #premium-woo-quick-view-modal.active {
10353
+ visibility: visible;
10354
+ opacity: 1;
10355
+ }
10356
+
10357
+ #premium-woo-quick-view-modal.active .premium-woo-content-main {
10358
+ -webkit-transform: translateY(0);
10359
+ -ms-transform: translateY(0);
10360
+ transform: translateY(0);
10361
+ opacity: 1;
10362
+ width: 100%;
10363
+ }
10364
+
10365
+ #premium-woo-quick-view-modal .premium-woo-content-main-wrapper {
10366
+ position: absolute;
10367
+ width: 100%;
10368
+ height: 100%;
10369
+ top: 0;
10370
+ right: 0;
10371
+ text-align: center;
10372
+ padding: 30px;
10373
+ -js-display: flex;
10374
+ display: -webkit-box;
10375
+ display: -webkit-flex;
10376
+ display: -moz-box;
10377
+ display: -ms-flexbox;
10378
+ display: flex;
10379
+ -webkit-box-align: center;
10380
+ -webkit-align-items: center;
10381
+ -moz-box-align: center;
10382
+ -ms-flex-align: center;
10383
+ align-items: center;
10384
  }
10385
 
10386
+ #premium-woo-quick-view-modal .premium-woo-content-main {
10387
+ position: relative;
10388
+ pointer-events: none;
10389
+ max-width: 100%;
10390
+ text-align: right;
10391
+ z-index: 1045;
10392
+ -webkit-transform: translateY(-30px);
10393
+ -ms-transform: translateY(-30px);
10394
+ transform: translateY(-30px);
10395
+ opacity: 0;
10396
+ -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
10397
+ transition: opacity 0.3s, -webkit-transform 0.5s;
10398
+ transition: transform 0.5s, opacity 0.3s;
10399
+ transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
10400
+ margin: 0 auto;
10401
  }
10402
 
10403
+ #premium-woo-quick-view-modal .premium-woo-lightbox-content {
10404
+ position: relative;
10405
+ display: table;
10406
+ pointer-events: auto;
10407
+ background-color: #fff;
10408
+ max-width: 975px;
10409
+ margin: 20px auto;
10410
+ -webkit-transform: translateZ(0);
10411
+ transform: translateZ(0);
10412
+ -webkit-box-shadow: -3px 3px 20px 0 rgba(0, 0, 0, 0.15);
10413
+ box-shadow: -3px 3px 20px 0 rgba(0, 0, 0, 0.15);
10414
+ overflow: hidden;
10415
  }
10416
 
10417
+ #premium-woo-quick-view-modal .summary {
10418
+ width: 50%;
10419
+ margin: 0;
10420
+ padding: 30px;
10421
+ float: right;
10422
+ -webkit-box-sizing: border-box;
10423
+ -moz-box-sizing: border-box;
10424
+ box-sizing: border-box;
10425
  }
10426
 
10427
+ #premium-woo-quick-view-modal .summary .quantity {
10428
+ min-width: auto;
 
 
 
 
 
10429
  }
10430
 
10431
+ #premium-woo-quick-view-modal .summary .quantity input.qty {
10432
+ width: 54px;
10433
+ -webkit-appearance: button;
10434
+ -moz-appearance: button;
10435
+ appearance: button;
 
 
 
10436
  }
10437
 
10438
+ #premium-woo-quick-view-modal .summary .quantity input[type="number"]::-webkit-inner-spin-button,
10439
+ #premium-woo-quick-view-modal .summary .quantity input[type="number"]::-webkit-outer-spin-button {
10440
+ display: unset;
 
 
10441
  }
10442
 
10443
+ #premium-woo-quick-view-modal .woocommerce-product-details__short-description p {
10444
+ margin: 0;
10445
+ }
 
 
 
10446
 
10447
+ #premium-woo-quick-view-close {
10448
+ position: absolute;
10449
+ font-size: 22px;
10450
+ top: 10px;
10451
+ left: 10px;
10452
+ width: 22px;
10453
+ height: 22px;
10454
+ line-height: 22px;
10455
+ opacity: 0.7;
10456
+ text-align: center;
10457
+ z-index: 2;
10458
+ color: #000;
10459
+ }
10460
 
10461
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider {
10462
+ position: relative;
10463
+ }
 
 
 
10464
 
10465
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider li {
10466
+ list-style: none;
10467
+ }
 
 
 
 
10468
 
10469
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav {
10470
+ margin: 0;
10471
+ padding: 0;
10472
+ width: 100%;
10473
  position: absolute;
10474
+ bottom: 10px;
10475
+ text-align: center;
10476
+ direction: ltr;
 
 
 
 
 
 
 
 
 
10477
  }
10478
 
10479
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li {
10480
+ margin: 0 6px;
10481
+ display: inline-block;
10482
+ vertical-align: middle;
 
 
 
 
 
 
 
 
 
 
 
 
10483
  }
10484
 
10485
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a {
10486
+ width: 11px;
10487
+ height: 11px;
10488
+ display: block;
10489
+ background: #666;
10490
+ background: rgba(0, 0, 0, 0.5);
10491
+ cursor: pointer;
10492
+ text-indent: -9999px;
10493
+ -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
10494
+ box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
10495
+ -webkit-border-radius: 20px;
10496
+ border-radius: 20px;
10497
  }
10498
 
10499
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a.flex-active {
10500
+ background: rgba(0, 0, 0, 0.9);
10501
+ cursor: default;
 
 
 
 
10502
  }
10503
 
10504
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a:focus {
10505
+ outline: none;
10506
  }
10507
 
10508
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider img {
10509
+ -o-object-fit: cover;
10510
+ object-fit: cover;
10511
+ width: 100%;
10512
  }
10513
 
10514
+ #premium-woo-quick-view-content div.images {
10515
+ width: 50%;
10516
+ float: right;
10517
+ opacity: 1 !important;
10518
+ margin: 0;
 
10519
  }
10520
 
10521
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav {
10522
+ margin: 0;
10523
+ padding: 0;
10524
+ list-style: none;
10525
+ direction: ltr;
10526
+ }
10527
+
10528
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav a {
10529
+ text-decoration: none;
10530
  display: block;
10531
+ width: 14px;
10532
+ height: 32px;
10533
+ font-size: 32px;
10534
+ line-height: 32px;
10535
+ margin: -20px 0 0;
10536
+ position: absolute;
10537
+ top: 50%;
10538
+ z-index: 10;
10539
+ overflow: hidden;
10540
  cursor: pointer;
10541
+ color: rgba(0, 0, 0, 0.8);
10542
+ text-shadow: -1px 1px 0 rgba(255, 255, 255, 0.3);
10543
+ -webkit-transition: all 0.3s ease-in-out;
10544
+ transition: all 0.3s ease-in-out;
10545
  }
10546
 
10547
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next,
10548
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev {
10549
+ display: inline-block;
10550
+ font-family: "Font Awesome 5 Free";
10551
+ font-weight: 900;
10552
+ text-rendering: auto;
10553
+ -webkit-font-smoothing: antialiased;
10554
+ -moz-osx-font-smoothing: grayscale;
10555
  }
10556
 
10557
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev {
10558
+ left: 10px;
 
 
 
10559
  }
10560
 
10561
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next {
10562
+ right: 10px;
10563
  }
10564
 
10565
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev::before {
10566
+ content: "\f104";
10567
  }
10568
 
10569
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next::before {
10570
+ content: "\f105";
 
 
 
 
 
 
 
 
10571
  }
10572
 
10573
+ .premium-woocommerce li.product .added_to_cart.wc-forward {
10574
  display: none;
 
 
 
 
10575
  }
10576
 
10577
+ .premium-woo-atc-button .add_to_cart_button .premium-woo-cart-loader {
10578
+ -webkit-animation: spin 2s linear infinite;
10579
+ animation: spin 2s linear infinite;
10580
+ margin-right: 5px;
10581
+ vertical-align: baseline;
10582
  }
10583
 
10584
+ /*
10585
+ * Load More Button
10586
+ */
10587
+ .premium-woo-load-more {
10588
+ position: relative;
10589
  }
10590
 
10591
+ .premium-woo-load-more .premium-woo-load-more-btn {
10592
+ -webkit-box-shadow: none;
10593
+ box-shadow: none;
10594
+ text-shadow: none;
10595
+ border: none;
10596
+ outline: none;
10597
+ -webkit-box-align: center;
10598
+ -webkit-align-items: center;
10599
+ -moz-box-align: center;
10600
+ -ms-flex-align: center;
10601
+ align-items: center;
10602
+ vertical-align: bottom;
10603
+ cursor: pointer;
10604
+ line-height: 1;
10605
+ font-style: normal;
10606
+ font-weight: normal;
10607
+ background-image: none;
10608
+ color: #fff;
10609
+ -webkit-transition: all 0.3s ease-in-out;
10610
+ transition: all 0.3s ease-in-out;
10611
+ padding: 10px 20px;
10612
  }
10613
 
10614
+ .premium-woo-load-more-btn {
10615
+ -js-display: inline-flex;
10616
+ display: -webkit-inline-box;
10617
+ display: -webkit-inline-flex;
10618
+ display: -moz-inline-box;
10619
+ display: -ms-inline-flexbox;
10620
+ display: inline-flex;
10621
+ -webkit-box-align: center;
10622
+ -webkit-align-items: center;
10623
+ -moz-box-align: center;
10624
+ -ms-flex-align: center;
10625
+ align-items: center;
10626
  }
10627
 
10628
+ .premium-woo-load-more-btn span {
10629
+ margin-right: 3px;
10630
  }
10631
 
10632
+ .premium-woo-load-more-btn .premium-loader {
10633
+ display: inline-block;
10634
+ width: 20px;
10635
+ height: 20px;
10636
  }
10637
 
10638
+ @media (min-width: 545px) {
10639
+ #premium-woo-quick-view-content div.summary {
10640
+ content: "544";
10641
+ overflow-y: auto;
10642
+ }
10643
  }
10644
 
10645
+ @media (max-width: 544px) {
10646
+ #premium-woo-quick-view-content .premium-woo-lightbox-content {
10647
+ display: block;
10648
+ }
10649
+
10650
+ #premium-woo-quick-view-content div.images,
10651
+ #premium-woo-quick-view-content div.summary {
10652
+ width: 100%;
10653
+ float: none;
10654
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10655
  }
10656
+
10657
  /*
10658
  * Common Title/Dual Heading
10659
  */
10926
  height: 0;
10927
  }
10928
 
10929
+ /*
10930
+ Common SVG Draw
10931
+ premium-svg-drawer not prefixed with 'svg'
10932
+ because it's rendered as div with custom SVG code.
10933
+ */
10934
+ .premium-svg-nodraw *,
10935
+ .premium-svg-drawer * {
10936
+ -webkit-transition: all 0.3s ease-in-out;
10937
+ transition: all 0.3s ease-in-out;
10938
+ -webkit-transition-property: stroke, fill, background-color;
10939
+ transition-property: stroke, fill, background-color;
10940
+ }
10941
+
10942
+ .premium-svg-nodraw .no-transition,
10943
+ .premium-svg-drawer .no-transition {
10944
+ -webkit-transition: none !important;
10945
+ transition: none !important;
10946
+ }
10947
+
10948
  /**Animation*/
10949
  @-webkit-keyframes spin {
10950
  0% {
assets/frontend/css/premium-addons.css CHANGED
@@ -1,8797 +1,10616 @@
1
  @charset "UTF-8";
2
- @font-face {
3
- font-family: "pa-elements";
4
- src: url("../../editor/fonts/pa-elements.eot?vcwy2s");
5
- src: url("../../editor/fonts/pa-elements.eot?vcwy2s#iefix") format("embedded-opentype"), url("../../editor/fonts/pa-elements.ttf?vcwy2s") format("truetype"), url("../../editor/fonts/pa-elements.woff?vcwy2s") format("woff"), url("../../editor/fonts/pa-elements.svg?vcwy2s#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
- display: block; }
1298
-
1299
- .premium-blog-zoomout-effect img,
1300
- .premium-blog-scale-effect img {
1301
- -webkit-transform: scale(1.2);
1302
- -ms-transform: scale(1.2);
1303
- transform: scale(1.2); }
1304
-
1305
- .premium-blog-sepia-effect img {
1306
- -webkit-filter: sepia(30%);
1307
- filter: sepia(30%); }
1308
-
1309
- .premium-blog-bright-effect img {
1310
- -webkit-filter: brightness(1);
1311
- filter: brightness(1); }
1312
-
1313
- .premium-blog-trans-effect img {
1314
- -webkit-transform: translateX(-15px) scale(1.1);
1315
- -ms-transform: translateX(-15px) scale(1.1);
1316
- transform: translateX(-15px) scale(1.1); }
1317
-
1318
- .premium-blog-post-outer-container:hover .premium-blog-zoomin-effect img {
1319
- -webkit-transform: scale(1.2);
1320
- -ms-transform: scale(1.2);
1321
- transform: scale(1.2); }
1322
-
1323
- .premium-blog-post-outer-container:hover .premium-blog-zoomout-effect img {
1324
- -webkit-transform: scale(1.1);
1325
- -ms-transform: scale(1.1);
1326
- transform: scale(1.1); }
1327
-
1328
- .premium-blog-post-outer-container:hover .premium-blog-scale-effect img {
1329
- -webkit-transform: scale(1.3) rotate(5deg);
1330
- -ms-transform: scale(1.3) rotate(5deg);
1331
- transform: scale(1.3) rotate(5deg); }
1332
-
1333
- .premium-blog-post-outer-container:hover .premium-blog-gray-effect img {
1334
- -webkit-filter: grayscale(100%);
1335
- filter: grayscale(100%); }
1336
-
1337
- .premium-blog-post-outer-container:hover .premium-blog-blur-effect img {
1338
- -webkit-filter: blur(3px);
1339
- filter: blur(3px); }
1340
-
1341
- .premium-blog-post-outer-container:hover .premium-blog-sepia-effect img {
1342
- -webkit-filter: sepia(0%);
1343
- filter: sepia(0%); }
1344
-
1345
- .premium-blog-post-outer-container:hover .premium-blog-bright-effect img {
1346
- -webkit-filter: brightness(1.2);
1347
- filter: brightness(1.2); }
1348
-
1349
- .premium-blog-post-outer-container:hover .premium-blog-trans-effect img {
1350
- -webkit-transform: translateX(0px) scale(1.1);
1351
- -ms-transform: translateX(0px) scale(1.1);
1352
- transform: translateX(0px) scale(1.1); }
1353
-
1354
- .premium-blog-post-container {
1355
- overflow: hidden; }
1356
- .premium-blog-post-container .premium-blog-inner-container {
1357
- -js-display: flex;
1358
- display: -webkit-box;
1359
- display: -webkit-flex;
1360
- display: -moz-box;
1361
- display: -ms-flexbox;
1362
- display: flex;
1363
- -webkit-box-orient: vertical;
1364
- -webkit-box-direction: normal;
1365
- -webkit-flex-direction: column;
1366
- -moz-box-orient: vertical;
1367
- -moz-box-direction: normal;
1368
- -ms-flex-direction: column;
1369
- flex-direction: column; }
1370
- .premium-blog-post-container .premium-blog-post-content {
1371
- line-height: 1.5em;
1372
- color: #777;
1373
- font-size: 14px;
1374
- margin-bottom: 10px; }
1375
- .premium-blog-post-container ul.post-categories a:hover, .premium-blog-post-container ul.post-categories a:focus,
1376
- .premium-blog-post-container .premium-blog-post-link:hover,
1377
- .premium-blog-post-container .premium-blog-post-link:focus {
1378
- -webkit-box-shadow: none !important;
1379
- box-shadow: none !important;
1380
- outline: none !important; }
1381
- .premium-blog-post-container .premium-blog-entry-title {
1382
- font-size: 18px;
1383
- margin-bottom: 5px; }
1384
- .premium-blog-post-container.premium-blog-skin-modern .premium-blog-content-wrapper {
1385
- position: relative;
1386
- z-index: 3;
1387
- top: -50px; }
1388
- .premium-blog-post-container .premium-blog-content-wrapper {
1389
- background-color: #f5f5f5;
1390
- padding: 30px; }
1391
- .premium-blog-post-container .premium-blog-content-wrapper.empty-thumb {
1392
- top: 0; }
1393
- .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 {
1394
- position: absolute;
1395
- content: "";
1396
- z-index: 1;
1397
- top: 50%;
1398
- left: 50%;
1399
- opacity: 0;
1400
- -webkit-transform: translate(-50%, -50%);
1401
- -ms-transform: translate(-50%, -50%);
1402
- transform: translate(-50%, -50%);
1403
- -webkit-transition: all 0.4s linear 0s;
1404
- transition: all 0.4s linear 0s;
1405
- height: 1px;
1406
- width: 100%;
1407
- background-color: #fff; }
1408
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before {
1409
- width: 1px;
1410
- height: 100%; }
1411
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner):hover .premium-blog-thumbnail-container:after {
1412
- width: 20px;
1413
- opacity: 1; }
1414
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner):hover .premium-blog-thumbnail-container:before {
1415
- height: 20px;
1416
- opacity: 1; }
1417
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-content-wrapper {
1418
- margin: 0px 10px 20px;
1419
- clear: both; }
1420
- .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 {
1421
- position: absolute;
1422
- top: 0;
1423
- left: 0;
1424
- width: 100%;
1425
- height: 100%;
1426
- -webkit-transition: all 0.3s ease-in-out;
1427
- transition: all 0.3s ease-in-out;
1428
- opacity: 0; }
1429
- .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 {
1430
- -js-display: flex;
1431
- display: -webkit-box;
1432
- display: -webkit-flex;
1433
- display: -moz-box;
1434
- display: -ms-flexbox;
1435
- display: flex;
1436
- -webkit-box-pack: center;
1437
- -webkit-justify-content: center;
1438
- -moz-box-pack: center;
1439
- -ms-flex-pack: center;
1440
- justify-content: center;
1441
- -webkit-box-align: center;
1442
- -webkit-align-items: center;
1443
- -moz-box-align: center;
1444
- -ms-flex-align: center;
1445
- align-items: center;
1446
- width: 100%;
1447
- height: 100%; }
1448
- .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay span,
1449
- .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,
1450
- .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,
1451
- .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay i {
1452
- -webkit-transition: all 0.3s ease-in-out;
1453
- transition: all 0.3s ease-in-out; }
1454
- .premium-blog-post-container.premium-blog-skin-side {
1455
- -js-display: flex;
1456
- display: -webkit-box;
1457
- display: -webkit-flex;
1458
- display: -moz-box;
1459
- display: -ms-flexbox;
1460
- display: flex; }
1461
- .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-container {
1462
- height: 100%; }
1463
- .premium-blog-post-container.premium-blog-skin-side .premium-blog-content-wrapper {
1464
- -webkit-box-flex: 1;
1465
- -webkit-flex: 1;
1466
- -moz-box-flex: 1;
1467
- -ms-flex: 1;
1468
- flex: 1; }
1469
- .premium-blog-post-container.premium-blog-skin-banner {
1470
- position: relative; }
1471
- .premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper {
1472
- position: absolute;
1473
- width: 100%;
1474
- bottom: -5px;
1475
- -js-display: flex;
1476
- display: -webkit-box;
1477
- display: -webkit-flex;
1478
- display: -moz-box;
1479
- display: -ms-flexbox;
1480
- display: flex;
1481
- -webkit-box-orient: vertical;
1482
- -webkit-box-direction: normal;
1483
- -webkit-flex-direction: column;
1484
- -moz-box-orient: vertical;
1485
- -moz-box-direction: normal;
1486
- -ms-flex-direction: column;
1487
- flex-direction: column;
1488
- background-color: transparent;
1489
- z-index: 3;
1490
- -webkit-transition: bottom 0.3s ease-in-out;
1491
- transition: bottom 0.3s ease-in-out; }
1492
- .premium-blog-post-container.premium-blog-skin-banner:hover .premium-blog-content-wrapper {
1493
- bottom: 0px; }
1494
- .premium-blog-post-container .premium-blog-cats-container ul.post-categories {
1495
- margin: 0;
1496
- padding: 0;
1497
- list-style: none;
1498
- -js-display: flex;
1499
- display: -webkit-box;
1500
- display: -webkit-flex;
1501
- display: -moz-box;
1502
- display: -ms-flexbox;
1503
- display: flex; }
1504
- .premium-blog-post-container .premium-blog-cats-container a {
1505
- display: block;
1506
- font-size: 12px;
1507
- color: #fff;
1508
- background-color: #777;
1509
- margin: 0 3px 10px 0;
1510
- padding: 5px;
1511
- -webkit-transition: all 0.3s ease-in-out;
1512
- transition: all 0.3s ease-in-out; }
1513
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1514
  /*
1515
  * Diagonal Effect
1516
- */
1517
- .premium-blog-diagonal-container {
1518
- position: absolute;
1519
- top: 0;
1520
- left: 0;
1521
- width: 100%;
1522
- height: 100%; }
1523
-
1524
- .premium-blog-diagonal-effect:before {
1525
- position: absolute;
1526
- top: 0px;
1527
- left: 0px;
1528
- width: 100%;
1529
- height: 100%;
1530
- content: " ";
1531
- z-index: 1;
1532
- background: rgba(255, 255, 255, 0.2);
1533
- -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
1534
- transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
1535
- -webkit-transition: all 0.3s linear 0s;
1536
- transition: all 0.3s linear 0s; }
1537
-
1538
- .premium-blog-post-outer-container:hover .premium-blog-diagonal-effect:before {
1539
- -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
1540
- transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0); }
1541
-
 
 
 
1542
  /*
1543
  * Framed Effect
1544
- */
1545
- .premium-blog-framed-effect {
1546
- position: absolute;
1547
- width: -webkit-calc(100% - 30px);
1548
- width: calc(100% - 30px);
1549
- height: -webkit-calc(100% - 30px);
1550
- height: calc(100% - 30px);
1551
- top: 15px;
1552
- left: 15px;
1553
- opacity: 0;
1554
- -webkit-transform: scale(0.3);
1555
- -ms-transform: scale(0.3);
1556
- transform: scale(0.3);
1557
- -webkit-transition: all 0.3s linear 0s;
1558
- transition: all 0.3s linear 0s; }
1559
-
1560
- .premium-blog-post-outer-container:hover .premium-blog-framed-effect {
1561
- opacity: 0.99;
1562
- -webkit-transform: scale(1);
1563
- -ms-transform: scale(1);
1564
- transform: scale(1); }
1565
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1566
  /*
1567
- * Bordered Effect
1568
- */
1569
- .premium-blog-bordered-effect {
1570
- position: absolute;
1571
- top: 0;
1572
- left: 0;
1573
- width: 100%;
1574
- height: 100%;
1575
- opacity: 0;
1576
- padding: 15px;
1577
- -webkit-transition: all 0.3s linear 0s;
1578
- transition: all 0.3s linear 0s; }
1579
- .premium-blog-bordered-effect .premium-blog-post-link:before, .premium-blog-bordered-effect .premium-blog-post-link:after {
1580
- content: "";
1581
- display: block;
1582
- position: absolute;
1583
- top: 0;
1584
- left: 0;
1585
- width: 100%;
1586
- height: 100%;
1587
- -webkit-transition: all 0.5s linear 0s;
1588
- transition: all 0.5s linear 0s;
1589
- -webkit-transition-delay: 0s;
1590
- transition-delay: 0s;
1591
- border-color: rgba(255, 255, 255, 0.45); }
1592
- .premium-blog-bordered-effect .premium-blog-post-link:before {
1593
- border-right: 2px solid;
1594
- border-left: 2px solid;
1595
- -webkit-transform: scale(1, 0);
1596
- -ms-transform: scale(1, 0);
1597
- transform: scale(1, 0);
1598
- -webkit-transform-origin: 100% 0;
1599
- -ms-transform-origin: 100% 0;
1600
- transform-origin: 100% 0; }
1601
- .premium-blog-bordered-effect .premium-blog-post-link:after {
1602
- border-top: 2px solid;
1603
- border-bottom: 2px solid;
1604
- -webkit-transform: scale(0, 1);
1605
- -ms-transform: scale(0, 1);
1606
- transform: scale(0, 1);
1607
- -webkit-transform-origin: 0 0;
1608
- -ms-transform-origin: 0 0;
1609
- transform-origin: 0 0; }
1610
-
1611
- .premium-blog-bordered-effect:hover {
1612
- opacity: 0.99; }
1613
- .premium-blog-bordered-effect:hover .premium-blog-post-link:before, .premium-blog-bordered-effect:hover .premium-blog-post-link:after {
1614
- -webkit-transition-delay: 0.15s;
1615
- transition-delay: 0.15s;
1616
- opacity: 1;
1617
- -webkit-transform: scale(1);
1618
- -ms-transform: scale(1);
1619
- transform: scale(1); }
1620
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1621
  /*
1622
- * Squares Effect
1623
- */
1624
- .premium-blog-squares-effect,
1625
- .premium-blog-squares-square-container {
1626
- position: absolute;
1627
- top: 0;
1628
- left: 0;
1629
- width: 100%;
1630
- height: 100%; }
1631
-
1632
- .premium-blog-squares-effect:before, .premium-blog-squares-effect:after {
1633
- position: absolute;
1634
- content: "";
1635
- top: 0;
1636
- left: 0;
1637
- width: 50%;
1638
- height: 50%;
1639
- -webkit-transform: translate(-100%, -100%);
1640
- -ms-transform: translate(-100%, -100%);
1641
- transform: translate(-100%, -100%);
1642
- opacity: 0.7;
1643
- -webkit-transition: all 0.3s linear 0s;
1644
- transition: all 0.3s linear 0s; }
1645
-
1646
- .premium-blog-squares-square-container:before, .premium-blog-squares-square-container:after {
1647
- position: absolute;
1648
- content: "";
1649
- top: 0;
1650
- left: 0;
1651
- width: 50%;
1652
- height: 50%;
1653
- -webkit-transform: translate(-100%, -100%);
1654
- -ms-transform: translate(-100%, -100%);
1655
- transform: translate(-100%, -100%);
1656
- opacity: 0.7;
1657
- -webkit-transition: all 0.3s linear 0s;
1658
- transition: all 0.3s linear 0s; }
1659
-
1660
- .premium-blog-squares-square-container:before, .premium-blog-squares-square-container:after {
1661
- opacity: 0.8; }
1662
-
1663
- .premium-blog-squares-effect:after {
1664
- -webkit-transform: translate(200%, 200%);
1665
- -ms-transform: translate(200%, 200%);
1666
- transform: translate(200%, 200%); }
1667
-
1668
- .premium-blog-squares-square-container:before {
1669
- -webkit-transform: translate(-100%, 200%);
1670
- -ms-transform: translate(-100%, 200%);
1671
- transform: translate(-100%, 200%); }
1672
-
1673
- .premium-blog-squares-square-container:after {
1674
- -webkit-transform: translate(200%, -100%);
1675
- -ms-transform: translate(200%, -100%);
1676
- transform: translate(200%, -100%); }
1677
-
1678
- .premium-blog-squares-effect:hover:before {
1679
- -webkit-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
1680
- -ms-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
1681
- transform: translate(0, 0%) scaleY(1.003) scaleX(1.003); }
1682
-
1683
- .premium-blog-squares-effect:hover:after {
1684
- -webkit-transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003);
1685
- -ms-transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003);
1686
- transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003); }
1687
-
1688
- .premium-blog-squares-effect:hover .premium-blog-squares-square-container:before {
1689
- -webkit-transform: translate(0, 100%);
1690
- -ms-transform: translate(0, 100%);
1691
- transform: translate(0, 100%); }
1692
-
1693
- .premium-blog-squares-effect:hover .premium-blog-squares-square-container:after {
1694
- -webkit-transform: translate(100%, 0%);
1695
- -ms-transform: translate(100%, 0%);
1696
- transform: translate(100%, 0%); }
1697
-
1698
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay {
1699
- opacity: 1; }
1700
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay a {
1701
- opacity: 1;
1702
- -webkit-transform: scale(1);
1703
- -ms-transform: scale(1);
1704
- transform: scale(1); }
1705
-
1706
- .premium-blog-clear-fix {
1707
- clear: both; }
1708
-
1709
- .premium-blog-masked .premium-blog-thumbnail-container {
1710
- position: relative;
1711
- overflow: visible; }
1712
- .premium-blog-masked .premium-blog-thumbnail-container svg {
1713
- position: absolute;
1714
- height: 100px;
1715
- width: 100%;
1716
- bottom: -5px;
1717
- left: 0;
1718
- fill: #f5f5f5;
1719
- z-index: 99; }
1720
- .premium-blog-masked .premium-blog-thumbnail-container svg.premium-blog-shape-divider-svg {
1721
- -webkit-transform: rotate(180deg);
1722
- -ms-transform: rotate(180deg);
1723
- transform: rotate(180deg); }
1724
-
1725
- .premium-blog-masked .premium-blog-author-thumbnail,
1726
- .premium-blog-masked .premium-blog-skin-banner .premium-blog-content-wrapper {
1727
- z-index: 999 !important; }
1728
-
1729
- .premium-blog-format-link {
1730
- padding: 5px;
1731
- line-height: 0; }
1732
-
1733
- .premium-blog-entry-meta {
1734
- line-height: 1.3em;
1735
- font-size: 12px;
1736
- margin-bottom: 13px;
1737
- color: #adadad; }
1738
- .premium-blog-entry-meta i {
1739
- margin-right: 3px;
1740
- -webkit-transition: all 0.3s ease-in-out;
1741
- transition: all 0.3s ease-in-out; }
1742
-
1743
- .premium-blog-meta-data {
1744
- display: inline-block; }
1745
- .premium-blog-meta-data .premium-blog-meta-separator {
1746
- margin: 0 5px; }
1747
- .premium-blog-meta-data a,
1748
- .premium-blog-meta-data span {
1749
- color: inherit;
1750
- -webkit-transition: all 0.3s ease-in-out;
1751
- transition: all 0.3s ease-in-out; }
1752
-
1753
- .premium-blog-author-thumbnail {
1754
- position: relative;
1755
- padding: 0 30px;
1756
- width: 100%;
1757
- top: -10px;
1758
- height: 0;
1759
- pointer-events: none; }
1760
- .premium-blog-author-thumbnail img {
1761
- -webkit-border-radius: 50%;
1762
- border-radius: 50%;
1763
- width: 60px;
1764
- pointer-events: all;
1765
- -webkit-transform: translateY(-50%);
1766
- -ms-transform: translateY(-50%);
1767
- transform: translateY(-50%); }
1768
-
1769
- .premium-blog-entry-title a,
1770
- .premium-blog-post-tags-container a,
1771
- .premium-blog-post-content .premium-blog-excerpt-link {
1772
- -webkit-transition: all 0.3s ease-in-out;
1773
- transition: all 0.3s ease-in-out; }
1774
-
1775
- .premium-blog-excerpt-link-wrap a.premium-blog-excerpt-link {
1776
- background-color: transparent;
1777
- color: #54595f;
1778
- padding: 0; }
1779
-
1780
- .premium-blog-cta-full-yes .premium-blog-excerpt-link {
1781
- width: 100%; }
1782
-
1783
- .premium-blog-post-tags-container {
1784
- margin-top: 8px;
1785
- -js-display: flex;
1786
- display: -webkit-box;
1787
- display: -webkit-flex;
1788
- display: -moz-box;
1789
- display: -ms-flexbox;
1790
- display: flex;
1791
- -webkit-box-align: center;
1792
- -webkit-align-items: center;
1793
- -moz-box-align: center;
1794
- -ms-flex-align: center;
1795
- align-items: center;
1796
- -webkit-flex-wrap: wrap;
1797
- -ms-flex-wrap: wrap;
1798
- flex-wrap: wrap; }
1799
- .premium-blog-post-tags-container a {
1800
- color: inherit;
1801
- margin-left: 5px; }
1802
-
1803
- /*Tags align*/
1804
- .premium-blog-align-left .post-categories,
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-left .premium-blog-inner-container {
1813
- -webkit-box-align: start;
1814
- -webkit-align-items: flex-start;
1815
- -moz-box-align: start;
1816
- -ms-flex-align: start;
1817
- align-items: flex-start; }
1818
-
1819
- .premium-blog-align-center .post-categories,
1820
- .premium-blog-align-center .premium-blog-post-tags-container {
1821
- -webkit-box-pack: center;
1822
- -webkit-justify-content: center;
1823
- -moz-box-pack: center;
1824
- -ms-flex-pack: center;
1825
- justify-content: center; }
1826
-
1827
- .premium-blog-align-center .premium-blog-inner-container {
1828
- -webkit-box-align: center;
1829
- -webkit-align-items: center;
1830
- -moz-box-align: center;
1831
- -ms-flex-align: center;
1832
- align-items: center; }
1833
-
1834
- .premium-blog-align-right .post-categories,
1835
- .premium-blog-align-right .premium-blog-post-tags-container {
1836
- -webkit-box-pack: end;
1837
- -webkit-justify-content: flex-end;
1838
- -moz-box-pack: end;
1839
- -ms-flex-pack: end;
1840
- justify-content: flex-end; }
1841
-
1842
- .premium-blog-align-right .premium-blog-inner-container {
1843
- -webkit-box-align: end;
1844
- -webkit-align-items: flex-end;
1845
- -moz-box-align: end;
1846
- -ms-flex-align: end;
1847
- align-items: flex-end; }
1848
-
1849
- /* Pagination */
1850
- .premium-blog-pagination-container {
1851
- text-align: right; }
1852
- .premium-blog-pagination-container span {
1853
- cursor: default; }
1854
- .premium-blog-pagination-container .page-numbers {
1855
- display: inline-block;
1856
- color: #000;
1857
- line-height: 1;
1858
- font-size: 1em;
1859
- font-weight: 400;
1860
- text-decoration: none;
1861
- padding: 0.75em;
1862
- margin: 0 0.4em 0.4em 0;
1863
- -webkit-transition: all 0.3s ease-in-out;
1864
- transition: all 0.3s ease-in-out; }
1865
-
1866
- .premium-blog-wrap .premium-loading-feed {
1867
- display: block;
1868
- position: absolute;
1869
- width: 100%;
1870
- height: 100%;
1871
- top: 0px;
1872
- left: 0px;
1873
- bottom: 0px;
1874
- right: 0px;
1875
- background: rgba(255, 255, 255, 0.2);
1876
- -js-display: flex;
1877
- display: -webkit-box;
1878
- display: -webkit-flex;
1879
- display: -moz-box;
1880
- display: -ms-flexbox;
1881
- display: flex;
1882
- -webkit-box-align: center;
1883
- -webkit-align-items: center;
1884
- -moz-box-align: center;
1885
- -ms-flex-align: center;
1886
- align-items: center;
1887
- z-index: 99; }
1888
-
1889
- .premium-blog-wrap {
1890
- -js-display: flex;
1891
- display: -webkit-box;
1892
- display: -webkit-flex;
1893
- display: -moz-box;
1894
- display: -ms-flexbox;
1895
- display: flex;
1896
- -webkit-flex-wrap: wrap;
1897
- -ms-flex-wrap: wrap;
1898
- flex-wrap: wrap; }
1899
- .premium-blog-wrap ul.slick-dots {
1900
- width: 100%; }
1901
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1902
  /*
1903
- * List Layout
1904
- */
1905
- .premium-blog-list .premium-blog-post-outer-container {
1906
- width: 100%; }
1907
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1908
  /**
1909
- * Even Layout
1910
- */
1911
- .premium-blog-even .premium-blog-post-container {
1912
- height: 100%; }
1913
-
1914
- .premium-blog-even .slick-track {
1915
- -js-display: flex;
1916
- display: -webkit-box;
1917
- display: -webkit-flex;
1918
- display: -moz-box;
1919
- display: -ms-flexbox;
1920
- display: flex; }
1921
-
1922
- .premium-blog-even .slick-slide {
1923
- height: inherit !important; }
1924
-
1925
- .premium-blog-filter {
1926
- -js-display: flex;
1927
- display: -webkit-box;
1928
- display: -webkit-flex;
1929
- display: -moz-box;
1930
- display: -ms-flexbox;
1931
- display: flex;
1932
- -webkit-box-align: center;
1933
- -webkit-align-items: center;
1934
- -moz-box-align: center;
1935
- -ms-flex-align: center;
1936
- align-items: center;
1937
- -webkit-box-pack: center;
1938
- -webkit-justify-content: center;
1939
- -moz-box-pack: center;
1940
- -ms-flex-pack: center;
1941
- justify-content: center; }
1942
-
1943
- .premium-blog-filter .premium-blog-filters-container li a.category {
1944
- outline: none;
1945
- text-decoration: none;
1946
- -webkit-border-radius: 75px;
1947
- border-radius: 75px;
1948
- margin: 15px 5px 20px;
1949
- padding: 7px 20px;
1950
- -webkit-transition: all 0.3s ease-in-out;
1951
- transition: all 0.3s ease-in-out; }
1952
-
1953
- .premium-blog-filter ul.premium-blog-filters-container {
1954
- text-align: center;
1955
- margin: 0;
1956
- padding: 0; }
1957
-
1958
- .premium-blog-filter .premium-blog-filters-container li {
1959
- list-style: none;
1960
- -js-display: inline-flex;
1961
- display: -webkit-inline-box;
1962
- display: -webkit-inline-flex;
1963
- display: -moz-inline-box;
1964
- display: -ms-inline-flexbox;
1965
- display: inline-flex; }
1966
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1967
  /**
1968
- * Responsive Style
1969
- */
1970
- @media (max-width: 768px) {
1971
- .premium-blog-content-wrapper {
1972
- top: 0;
1973
- margin: 0;
1974
- padding: 15px; }
1975
- .premium-blog-skin-side {
1976
- -webkit-box-orient: vertical;
1977
- -webkit-box-direction: normal;
1978
- -webkit-flex-direction: column;
1979
- -moz-box-orient: vertical;
1980
- -moz-box-direction: normal;
1981
- -ms-flex-direction: column;
1982
- flex-direction: column; } }
1983
-
1984
- /**************** Premium Button ***********************/
1985
- /*******************************************************/
1986
- .premium-button {
1987
- -js-display: inline-flex;
1988
- display: -webkit-inline-box;
1989
- display: -webkit-inline-flex;
1990
- display: -moz-inline-box;
1991
- display: -ms-inline-flexbox;
1992
- display: inline-flex;
1993
- position: relative;
1994
- overflow: hidden;
1995
- -webkit-backface-visibility: hidden;
1996
- backface-visibility: hidden;
1997
- -webkit-transform: translate3d(0, 0, 0);
1998
- transform: translate3d(0, 0, 0);
1999
- cursor: pointer;
2000
- -webkit-transition: all 0.2s ease-in-out !important;
2001
- transition: all 0.2s ease-in-out !important; }
2002
-
2003
- .premium-button-style1,
2004
- .premium-button-style2,
2005
- .premium-button-style5,
2006
- .premium-button-style7 {
2007
- display: inline-block;
2008
- vertical-align: middle;
2009
- -webkit-transform: perspective(1px) translateZ(0);
2010
- transform: perspective(1px) translateZ(0);
2011
- -webkit-box-shadow: 0 0 1px transparent;
2012
- box-shadow: 0 0 1px transparent;
2013
- position: relative;
2014
- -webkit-transition-property: color;
2015
- transition-property: color;
2016
- -webkit-transition-duration: 0.15s;
2017
- transition-duration: 0.15s; }
2018
-
2019
- .premium-button-style1:before,
2020
- .premium-button-style2:before,
2021
- .premium-button-style5:before {
2022
- content: "";
2023
- position: absolute;
2024
- z-index: -1;
2025
- top: 0;
2026
- left: 0;
2027
- right: 0;
2028
- bottom: 0;
2029
- -webkit-transform: scaleY(0);
2030
- -ms-transform: scaleY(0);
2031
- transform: scaleY(0);
2032
- -webkit-transform-origin: 50% 0;
2033
- -ms-transform-origin: 50% 0;
2034
- transform-origin: 50% 0;
2035
- -webkit-transition-property: -webkit-transform;
2036
- transition-property: -webkit-transform;
2037
- transition-property: transform;
2038
- transition-property: transform, -webkit-transform;
2039
- -webkit-transition-duration: 0.15s;
2040
- transition-duration: 0.15s;
2041
- -webkit-transition-timing-function: ease-out;
2042
- transition-timing-function: ease-out; }
2043
-
2044
- .premium-button-style5-radialin:before,
2045
- .premium-button-style5-radialout:before {
2046
- -webkit-transform-origin: 50%;
2047
- -ms-transform-origin: 50%;
2048
- transform-origin: 50%;
2049
- -webkit-border-radius: 100%;
2050
- border-radius: 100%;
2051
- -webkit-transform: scale(0);
2052
- -ms-transform: scale(0);
2053
- transform: scale(0); }
2054
-
2055
- .premium-button-style5-radialin:before {
2056
- -webkit-transform: scale(2);
2057
- -ms-transform: scale(2);
2058
- transform: scale(2); }
2059
-
2060
- .premium-button-style5-rectin:before {
2061
- -webkit-transform-origin: 50%;
2062
- -ms-transform-origin: 50%;
2063
- transform-origin: 50%;
2064
- -webkit-transform: scale(1);
2065
- -ms-transform: scale(1);
2066
- transform: scale(1); }
2067
-
2068
- .premium-button-style5-rectout:before {
2069
- -webkit-transform-origin: 50%;
2070
- -ms-transform-origin: 50%;
2071
- transform-origin: 50%;
2072
- -webkit-transform: scale(0);
2073
- -ms-transform: scale(0);
2074
- transform: scale(0); }
2075
-
2076
- .premium-button-style5-rectout:hover:before {
2077
- -webkit-transform: scale(1);
2078
- -ms-transform: scale(1);
2079
- transform: scale(1); }
2080
-
2081
- .premium-button-style5-rectin:hover:before {
2082
- -webkit-transform: scale(0);
2083
- -ms-transform: scale(0);
2084
- transform: scale(0); }
2085
-
2086
- .premium-button-style5-radialout:hover:before {
2087
- -webkit-transform: scale(2);
2088
- -ms-transform: scale(2);
2089
- transform: scale(2); }
2090
-
2091
- .premium-button-style5-radialin:hover:before {
2092
- -webkit-transform: scale(0);
2093
- -ms-transform: scale(0);
2094
- transform: scale(0); }
2095
-
2096
- .premium-button-style1-top:before {
2097
- -webkit-transform-origin: 50% 100%;
2098
- -ms-transform-origin: 50% 100%;
2099
- transform-origin: 50% 100%; }
2100
-
2101
- .premium-button-style1-right:before {
2102
- -webkit-transform: scaleX(0);
2103
- -ms-transform: scaleX(0);
2104
- transform: scaleX(0);
2105
- -webkit-transform-origin: 0% 50%;
2106
- -ms-transform-origin: 0% 50%;
2107
- transform-origin: 0% 50%; }
2108
-
2109
- .premium-button-style1-left:before {
2110
- -webkit-transform: scaleX(0);
2111
- -ms-transform: scaleX(0);
2112
- transform: scaleX(0);
2113
- -webkit-transform-origin: 100% 50%;
2114
- -ms-transform-origin: 100% 50%;
2115
- transform-origin: 100% 50%; }
2116
-
2117
- .premium-button-style2-shutouthor:before,
2118
- .premium-button-style2-scshutoutver:before {
2119
- -webkit-transform: scaleY(0);
2120
- -ms-transform: scaleY(0);
2121
- transform: scaleY(0);
2122
- -webkit-transform-origin: 100% 50%;
2123
- -ms-transform-origin: 100% 50%;
2124
- transform-origin: 100% 50%; }
2125
-
2126
- .premium-button-style2-shutoutver:before,
2127
- .premium-button-style2-scshutouthor:before {
2128
- -webkit-transform: scaleX(0);
2129
- -ms-transform: scaleX(0);
2130
- transform: scaleX(0);
2131
- -webkit-transform-origin: 50% 50%;
2132
- -ms-transform-origin: 50% 50%;
2133
- transform-origin: 50% 50%; }
2134
-
2135
- .premium-button-style2-shutinhor:before {
2136
- -webkit-transform: scaleX(1);
2137
- -ms-transform: scaleX(1);
2138
- transform: scaleX(1);
2139
- -webkit-transform-origin: 50%;
2140
- -ms-transform-origin: 50%;
2141
- transform-origin: 50%; }
2142
-
2143
- .premium-button-style2-shutinver:before {
2144
- -webkit-transform: scaleY(1);
2145
- -ms-transform: scaleY(1);
2146
- transform: scaleY(1);
2147
- -webkit-transform-origin: 50%;
2148
- -ms-transform-origin: 50%;
2149
- transform-origin: 50%; }
2150
-
2151
- .premium-button-style1-bottom:hover:before,
2152
- .premium-button-style1-top:hover:before {
2153
- -webkit-transform: scaleY(1);
2154
- -ms-transform: scaleY(1);
2155
- transform: scaleY(1); }
2156
-
2157
- .premium-button-style1-left:hover:before,
2158
- .premium-button-style1-right:hover:before,
2159
- .premium-button-style2-shutouthor:hover:before,
2160
- .premium-button-style2-shutoutver:hover:before {
2161
- -webkit-transform: scaleX(1);
2162
- -ms-transform: scaleX(1);
2163
- transform: scaleX(1); }
2164
-
2165
- .premium-button-style2-shutinhor:hover:before {
2166
- -webkit-transform: scaleX(0);
2167
- -ms-transform: scaleX(0);
2168
- transform: scaleX(0); }
2169
-
2170
- .premium-button-style2-shutinver:hover:before {
2171
- -webkit-transform: scaleY(0);
2172
- -ms-transform: scaleY(0);
2173
- transform: scaleY(0); }
2174
-
2175
- .premium-button-style2-scshutouthor:hover:before {
2176
- -webkit-transform: scaleX(0.9);
2177
- -ms-transform: scaleX(0.9);
2178
- transform: scaleX(0.9); }
2179
-
2180
- .premium-button-style2-scshutoutver:hover:before {
2181
- -webkit-transform: scaleY(0.8);
2182
- -ms-transform: scaleY(0.8);
2183
- transform: scaleY(0.8); }
2184
-
2185
- /*Diagonal*/
2186
- .premium-button-style2-dshutinhor:before {
2187
- top: 50%;
2188
- left: 50%;
2189
- width: 120%;
2190
- height: 0%;
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
- -webkit-transform-origin: 50%;
2195
- -ms-transform-origin: 50%;
2196
- transform-origin: 50%;
2197
- -webkit-transition-property: all;
2198
- transition-property: all; }
2199
-
2200
- .premium-button-style2-dshutinver:before {
2201
- top: 50%;
2202
- left: 50%;
2203
- width: 120%;
2204
- height: 0%;
2205
- -webkit-transform-origin: 50%;
2206
- -ms-transform-origin: 50%;
2207
- transform-origin: 50%;
2208
- -webkit-transition-property: all;
2209
- transition-property: all;
2210
- -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
2211
- -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
2212
- transform: translateX(-50%) translateY(-50%) rotate(45deg); }
2213
-
2214
- .premium-button-style2-dshutinhor:hover:before,
2215
- .premium-button-style2-dshutinver:hover:before {
2216
- height: 220%; }
2217
-
2218
- .premium-button-style3-before i,
2219
- .premium-button-style3-before svg {
2220
- opacity: 0;
2221
- -webkit-transform: translateX(-5px);
2222
- -ms-transform: translateX(-5px);
2223
- transform: translateX(-5px);
2224
- -webkit-transition: all 0.5s ease-in-out;
2225
- transition: all 0.5s ease-in-out; }
2226
-
2227
- .premium-button-style3-after i,
2228
- .premium-button-style3-after svg {
2229
- opacity: 0;
2230
- -webkit-transform: translateX(-5px);
2231
- -ms-transform: translateX(-5px);
2232
- transform: translateX(-5px);
2233
- -webkit-transition: all 0.5s ease-in-out;
2234
- transition: all 0.5s ease-in-out;
2235
- -webkit-transform: translateX(5px);
2236
- -ms-transform: translateX(5px);
2237
- transform: translateX(5px); }
2238
-
2239
- .premium-button-style3-after:hover i,
2240
- .premium-button-style3-after:hover svg {
2241
- opacity: 1; }
2242
-
2243
- .premium-button-style3-before:hover i,
2244
- .premium-button-style3-before:hover svg {
2245
- opacity: 1; }
2246
-
2247
- .premium-button-text-icon-wrapper {
2248
- width: 100%;
2249
- -js-display: flex;
2250
- display: -webkit-box;
2251
- display: -webkit-flex;
2252
- display: -moz-box;
2253
- display: -ms-flexbox;
2254
- display: flex;
2255
- -webkit-box-pack: center;
2256
- -webkit-justify-content: center;
2257
- -moz-box-pack: center;
2258
- -ms-flex-pack: center;
2259
- justify-content: center;
2260
- -webkit-box-align: center;
2261
- -webkit-align-items: center;
2262
- -moz-box-align: center;
2263
- -ms-flex-align: center;
2264
- align-items: center;
2265
- -webkit-transition: all 0.2s ease-in-out;
2266
- transition: all 0.2s ease-in-out; }
2267
- .premium-button-text-icon-wrapper span,
2268
- .premium-button-text-icon-wrapper i,
2269
- .premium-button-text-icon-wrapper svg {
2270
- -webkit-transition: all 0.2s ease-in-out;
2271
- transition: all 0.2s ease-in-out; }
2272
-
2273
- .premium-button-style4-icon-wrapper {
2274
- position: absolute;
2275
- z-index: 2;
2276
- width: 100%;
2277
- text-align: center;
2278
- -js-display: flex;
2279
- display: -webkit-box;
2280
- display: -webkit-flex;
2281
- display: -moz-box;
2282
- display: -ms-flexbox;
2283
- display: flex;
2284
- -webkit-box-align: center;
2285
- -webkit-align-items: center;
2286
- -moz-box-align: center;
2287
- -ms-flex-align: center;
2288
- align-items: center;
2289
- -webkit-box-pack: center;
2290
- -webkit-justify-content: center;
2291
- -moz-box-pack: center;
2292
- -ms-flex-pack: center;
2293
- justify-content: center;
2294
- height: 100%;
2295
- opacity: 0;
2296
- -webkit-transition: all 0.3s ease-in-out;
2297
- transition: all 0.3s ease-in-out; }
2298
- .premium-button-style4-icon-wrapper.top {
2299
- bottom: -100%;
2300
- left: 0; }
2301
- .premium-button-style4-icon-wrapper.bottom {
2302
- top: -100%;
2303
- left: 0; }
2304
- .premium-button-style4-icon-wrapper.left {
2305
- top: 0;
2306
- left: -100%; }
2307
- .premium-button-style4-icon-wrapper.right {
2308
- top: 0;
2309
- right: -100%; }
2310
-
2311
- .premium-button-style4-bottom:hover .premium-button-style4-icon-wrapper {
2312
- top: 0;
2313
- opacity: 1; }
2314
-
2315
- .premium-button-style4-top:hover .premium-button-style4-icon-wrapper {
2316
- bottom: 0;
2317
- opacity: 1; }
2318
-
2319
- .premium-button-style4-left:hover .premium-button-style4-icon-wrapper {
2320
- left: 0;
2321
- opacity: 1; }
2322
-
2323
- .premium-button-style4-right:hover .premium-button-style4-icon-wrapper {
2324
- right: 0;
2325
- opacity: 1; }
2326
-
2327
- .premium-button-style4-bottom:hover .premium-button-text-icon-wrapper {
2328
- -webkit-transform: translateY(100%);
2329
- -ms-transform: translateY(100%);
2330
- transform: translateY(100%);
2331
- opacity: 0; }
2332
-
2333
- .premium-button-style4-top:hover .premium-button-text-icon-wrapper {
2334
- -webkit-transform: translateY(-100%);
2335
- -ms-transform: translateY(-100%);
2336
- transform: translateY(-100%);
2337
- opacity: 0; }
2338
-
2339
- .premium-button-style4-left:hover .premium-button-text-icon-wrapper {
2340
- -webkit-transform: translateX(100%);
2341
- -ms-transform: translateX(100%);
2342
- transform: translateX(100%);
2343
- opacity: 0; }
2344
-
2345
- .premium-button-style4-right:hover .premium-button-text-icon-wrapper {
2346
- -webkit-transform: translateX(-100%);
2347
- -ms-transform: translateX(-100%);
2348
- transform: translateX(-100%);
2349
- opacity: 0; }
2350
-
2351
- .premium-button-style6:before {
2352
- content: "";
2353
- position: absolute;
2354
- left: 50%;
2355
- top: 50%;
2356
- width: 100px;
2357
- height: 100px;
2358
- -webkit-border-radius: 100%;
2359
- border-radius: 100%;
2360
- -webkit-transform: translate(-50%, -50%) scale(0);
2361
- -ms-transform: translate(-50%, -50%) scale(0);
2362
- transform: translate(-50%, -50%) scale(0);
2363
- -webkit-transition: all 0.3s ease-in-out;
2364
- transition: all 0.3s ease-in-out; }
2365
-
2366
- .premium-button-style6:hover:before {
2367
- -webkit-transform: translate(-50%, -50%) scale(3);
2368
- -ms-transform: translate(-50%, -50%) scale(3);
2369
- transform: translate(-50%, -50%) scale(3); }
2370
-
2371
- .premium-button-style6 .premium-button-text-icon-wrapper {
2372
- position: relative;
2373
- z-index: 1; }
2374
-
2375
- .premium-button-style7-right .premium-button-text-icon-wrapper:before,
2376
- .premium-button-style7-left .premium-button-text-icon-wrapper:before {
2377
- -webkit-transition: width 0.3s ease-out 0.15s;
2378
- transition: width 0.3s ease-out 0.15s; }
2379
-
2380
- .premium-button-style7-right .premium-button-text-icon-wrapper:after,
2381
- .premium-button-style7-left .premium-button-text-icon-wrapper:after {
2382
- -webkit-transition: width 0.3s ease-out 0s;
2383
- transition: width 0.3s ease-out 0s; }
2384
-
2385
- .premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
2386
- .premium-button-style7-top .premium-button-text-icon-wrapper:before {
2387
- -webkit-transition: height 0.3s ease-out 0.15s;
2388
- transition: height 0.3s ease-out 0.15s; }
2389
-
2390
- .premium-button-style7-bottom .premium-button-text-icon-wrapper:after,
2391
- .premium-button-style7-top .premium-button-text-icon-wrapper:after {
2392
- -webkit-transition: height 0.3s ease-out 0s;
2393
- transition: height 0.3s ease-out 0s; }
2394
-
2395
- .premium-button-style7:hover .premium-button-text-icon-wrapper:before {
2396
- -webkit-transition-delay: 0s;
2397
- transition-delay: 0s; }
2398
-
2399
- .premium-button-style7:hover .premium-button-text-icon-wrapper:after {
2400
- -webkit-transition-delay: 0.15s;
2401
- transition-delay: 0.15s; }
2402
-
2403
- .premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
2404
- .premium-button-style7-bottom .premium-button-text-icon-wrapper:after {
2405
- content: "";
2406
- position: absolute;
2407
- right: 0;
2408
- top: 0;
2409
- left: 0;
2410
- height: 0;
2411
- z-index: -1; }
2412
-
2413
- .premium-button-style7-top .premium-button-text-icon-wrapper:after,
2414
- .premium-button-style7-top .premium-button-text-icon-wrapper:before {
2415
- content: "";
2416
- position: absolute;
2417
- right: 0;
2418
- bottom: 0;
2419
- left: 0;
2420
- height: 0;
2421
- z-index: -1; }
2422
-
2423
- .premium-button-style7-right .premium-button-text-icon-wrapper:after,
2424
- .premium-button-style7-right .premium-button-text-icon-wrapper:before {
2425
- content: "";
2426
- position: absolute;
2427
- right: 0;
2428
- top: 0;
2429
- bottom: 0;
2430
- width: 0;
2431
- z-index: -1; }
2432
-
2433
- .premium-button-style7-left .premium-button-text-icon-wrapper:after,
2434
- .premium-button-style7-left .premium-button-text-icon-wrapper:before {
2435
- content: "";
2436
- position: absolute;
2437
- left: 0;
2438
- top: 0;
2439
- bottom: 0;
2440
- width: 0;
2441
- z-index: -1; }
2442
-
2443
- .premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:after,
2444
- .premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:before {
2445
- height: 100%;
2446
- top: 0; }
2447
-
2448
- .premium-button-style7-top:hover .premium-button-text-icon-wrapper:after,
2449
- .premium-button-style7-top:hover .premium-button-text-icon-wrapper:before {
2450
- height: 100%;
2451
- bottom: 0; }
2452
-
2453
- .premium-button-style7-left:hover .premium-button-text-icon-wrapper:after,
2454
- .premium-button-style7-left:hover .premium-button-text-icon-wrapper:before {
2455
- width: 100%;
2456
- left: 0; }
2457
-
2458
- .premium-button-style7-right:hover .premium-button-text-icon-wrapper:after,
2459
- .premium-button-style7-right:hover .premium-button-text-icon-wrapper:before {
2460
- width: 100%;
2461
- right: 0; }
2462
-
2463
- /**************** Premium Carousel ****************/
2464
- /**************************************************/
2465
- .premium-carousel-wrapper a.carousel-arrow, .premium-carousel-wrapper a.ver-carousel-arrow {
2466
- -js-display: flex;
2467
- display: -webkit-box;
2468
- display: -webkit-flex;
2469
- display: -moz-box;
2470
- display: -ms-flexbox;
2471
- display: flex;
2472
- -webkit-box-align: center;
2473
- -webkit-align-items: center;
2474
- -moz-box-align: center;
2475
- -ms-flex-align: center;
2476
- align-items: center;
2477
- -webkit-box-pack: center;
2478
- -webkit-justify-content: center;
2479
- -moz-box-pack: center;
2480
- -ms-flex-pack: center;
2481
- justify-content: center;
2482
- width: 2em;
2483
- height: 2em;
2484
- line-height: 0;
2485
- text-align: center;
2486
- position: absolute;
2487
- z-index: 99;
2488
- cursor: pointer;
2489
- -webkit-transition: all 0.3s ease-in-out;
2490
- transition: all 0.3s ease-in-out;
2491
- -webkit-appearance: inherit;
2492
- border: none;
2493
- -webkit-box-shadow: none;
2494
- box-shadow: none; }
2495
- .premium-carousel-wrapper a.carousel-arrow svg, .premium-carousel-wrapper a.ver-carousel-arrow svg {
2496
- -webkit-transition: all 0.3s ease-in-out;
2497
- transition: all 0.3s ease-in-out; }
2498
-
2499
- .ver-carousel-arrow.carousel-next i {
2500
- margin-bottom: -3px; }
2501
-
2502
- .premium-carousel-wrapper a.slick-arrow:hover {
2503
- -webkit-box-shadow: none !important;
2504
- box-shadow: none !important; }
2505
-
2506
- .premium-carousel-wrapper .premium-carousel-content-hidden {
2507
- visibility: hidden; }
2508
-
2509
- .premium-carousel-wrapper a.carousel-arrow {
2510
- top: 50%; }
2511
-
2512
- .premium-carousel-wrapper a.ver-carousel-arrow {
2513
- left: 50%;
2514
- -webkit-transform: translateX(-50%);
2515
- -ms-transform: translateX(-50%);
2516
- transform: translateX(-50%); }
2517
-
2518
- .premium-carousel-dots-above ul.slick-dots {
2519
- position: absolute;
2520
- -js-display: flex;
2521
- display: -webkit-box;
2522
- display: -webkit-flex;
2523
- display: -moz-box;
2524
- display: -ms-flexbox;
2525
- display: flex;
2526
- width: auto;
2527
- top: 50%;
2528
- bottom: auto;
2529
- -webkit-transform: translateY(-50%);
2530
- -ms-transform: translateY(-50%);
2531
- transform: translateY(-50%);
2532
- -webkit-box-orient: vertical;
2533
- -webkit-box-direction: normal;
2534
- -webkit-flex-direction: column;
2535
- -moz-box-orient: vertical;
2536
- -moz-box-direction: normal;
2537
- -ms-flex-direction: column;
2538
- flex-direction: column; }
2539
-
2540
- /*
2541
- * Custom Navigation Dot
2542
- */
2543
- .premium-carousel-wrapper .premium-carousel-nav-dot,
2544
- .premium-carousel-wrapper .premium-carousel-nav-arrow-prev,
2545
- .premium-carousel-wrapper .premium-carousel-nav-arrow-next {
2546
- display: none; }
2547
-
2548
- .premium-carousel-wrapper ul.slick-dots svg {
2549
- width: 20px;
2550
- height: 20px;
2551
- outline: none !important; }
2552
-
2553
- /* Ripple Out */
2554
- @-webkit-keyframes hvr-ripple-out {
2555
- 0% {
2556
- -webkit-transform: scale(1);
2557
- transform: scale(1);
2558
- opacity: 1; }
2559
- 100% {
2560
- -webkit-transform: scale(1.5);
2561
- transform: scale(1.5);
2562
- opacity: 0; } }
2563
- @keyframes hvr-ripple-out {
2564
- 0% {
2565
- -webkit-transform: scale(1);
2566
- transform: scale(1);
2567
- opacity: 1; }
2568
- 100% {
2569
- -webkit-transform: scale(1.5);
2570
- transform: scale(1.5);
2571
- opacity: 0; } }
2572
-
2573
- .premium-carousel-ripple-yes .premium-carousel-wrapper {
2574
- padding-bottom: 1px; }
2575
-
2576
- .premium-carousel-ripple-yes ul.slick-dots li {
2577
- position: relative; }
2578
- .premium-carousel-ripple-yes ul.slick-dots li i {
2579
- position: relative;
2580
- z-index: 1; }
2581
- .premium-carousel-ripple-yes ul.slick-dots li:hover:before {
2582
- content: "";
2583
- position: absolute;
2584
- -webkit-transform: scale(1);
2585
- -ms-transform: scale(1);
2586
- transform: scale(1);
2587
- top: 0;
2588
- right: 0;
2589
- bottom: 0;
2590
- left: 0;
2591
- -webkit-border-radius: 50%;
2592
- border-radius: 50%;
2593
- pointer-events: none;
2594
- background-color: rgba(0, 0, 0, 0.15); }
2595
- .premium-carousel-ripple-yes ul.slick-dots li.slick-active:hover:before {
2596
- background-color: rgba(0, 0, 0, 0.3); }
2597
- .premium-carousel-ripple-yes ul.slick-dots li:hover:before {
2598
- -webkit-animation: hvr-ripple-out 1.3s infinite;
2599
- animation: hvr-ripple-out 1.3s infinite; }
2600
-
2601
- .premium-carousel-wrapper.premium-carousel-scale .slick-slide {
2602
- -webkit-transform: scale(1.25, 1.25);
2603
- -ms-transform: scale(1.25, 1.25);
2604
- transform: scale(1.25, 1.25);
2605
- -webkit-transition: all 0.3s ease-in-out;
2606
- transition: all 0.3s ease-in-out; }
2607
-
2608
- .premium-carousel-wrapper.premium-carousel-scale div.slick-active {
2609
- -webkit-transform: scale(1, 1);
2610
- -ms-transform: scale(1, 1);
2611
- transform: scale(1, 1); }
2612
-
2613
- [dir="rtl"] .premium-carousel-inner .slick-slide {
2614
- float: right; }
2615
-
2616
- /**************** Premium Contact Form7 **********/
2617
- /*************************************************/
2618
- .premium-contact-form-anim-yes .wpcf7-span::after {
2619
- display: block;
2620
- height: 2px;
2621
- content: "";
2622
- top: -2px;
2623
- position: relative;
2624
- width: 0px;
2625
- -webkit-transition: all ease-in-out 0.3s;
2626
- transition: all ease-in-out 0.3s; }
2627
-
2628
- .premium-contact-form-anim-yes .wpcf7-span.is-focused::after {
2629
- width: 100%; }
2630
-
2631
- .premium-cf7-container input.wpcf7-submit {
2632
- -webkit-transition: all 0.3s ease-in-out;
2633
- transition: all 0.3s ease-in-out; }
2634
-
2635
- /**************** Premium CountDown *************/
2636
- /************************************************/
2637
- .premium-countdown {
2638
- -js-display: flex;
2639
- display: -webkit-box;
2640
- display: -webkit-flex;
2641
- display: -moz-box;
2642
- display: -ms-flexbox;
2643
- display: flex;
2644
- text-align: center; }
2645
-
2646
- .countdown-row {
2647
- display: block;
2648
- text-align: center; }
2649
-
2650
- .countdown .countdown-section {
2651
- display: inline-block;
2652
- max-width: 100%;
2653
- margin-bottom: 15px;
2654
- -js-display: inline-flex;
2655
- display: -webkit-inline-box;
2656
- display: -webkit-inline-flex;
2657
- display: -moz-inline-box;
2658
- display: -ms-inline-flexbox;
2659
- display: inline-flex;
2660
- -webkit-box-align: center;
2661
- -webkit-align-items: center;
2662
- -moz-box-align: center;
2663
- -ms-flex-align: center;
2664
- align-items: center; }
2665
- .countdown .countdown-section:last-child {
2666
- margin-right: 0; }
2667
-
2668
- .countdown span.countdown-amount {
2669
- font-size: 70px;
2670
- line-height: 1;
2671
- padding: 40px; }
2672
-
2673
- .countdown .pre_time-mid {
2674
- display: block; }
2675
-
2676
- .premium-countdown-separator-yes .countdown_separator {
2677
- display: block;
2678
- margin: 0 50px;
2679
- font-size: 30px; }
2680
-
2681
- .premium-countdown-separator-yes .countdown-row .countdown-section:last-child .countdown_separator,
2682
- .premium-countdown-separator-yes .premium-countdown-block:last-child .countdown_separator {
2683
- display: none; }
2684
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2685
  /**
2686
- * Digit and unit styles
2687
- */
2688
- .side .countdown-section .countdown-period {
2689
- vertical-align: bottom; }
2690
-
2691
- .countdown .countdown-section .countdown-period {
2692
- font-size: 17px;
2693
- line-height: 3em; }
2694
-
2695
- .side .countdown-section .countdown-amount,
2696
- .side .countdown-section .countdown-period {
2697
- display: inline-block; }
2698
-
2699
- .side .countdown-section .countdown-amount {
2700
- margin-right: 5px; }
2701
-
2702
- .down .countdown-section .countdown-amount,
2703
- .down .countdown-section .countdown-period {
2704
- display: block; }
2705
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2706
  /**
2707
- * Flip Layout
2708
- */
2709
- .premium-countdown-flip .premium-countdown-block {
2710
- text-align: center;
2711
- -js-display: inline-flex;
2712
- display: -webkit-inline-box;
2713
- display: -webkit-inline-flex;
2714
- display: -moz-inline-box;
2715
- display: -ms-inline-flexbox;
2716
- display: inline-flex;
2717
- -webkit-box-align: center;
2718
- -webkit-align-items: center;
2719
- -moz-box-align: center;
2720
- -ms-flex-align: center;
2721
- align-items: center; }
2722
- .premium-countdown-flip .premium-countdown-block:last-child {
2723
- margin-right: 0; }
2724
-
2725
- .premium-countdown-flip .premium-countdown-label {
2726
- overflow: hidden;
2727
- color: #1a1a1a;
2728
- text-transform: uppercase; }
2729
-
2730
- .premium-countdown-flip .premium-countdown-figure {
2731
- position: relative;
2732
- height: 110px;
2733
- width: 100px;
2734
- line-height: 107px;
2735
- background-color: #fff;
2736
- -webkit-border-radius: 10px;
2737
- border-radius: 10px;
2738
- -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
2739
- box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08); }
2740
- .premium-countdown-flip .premium-countdown-figure:last-child {
2741
- margin-right: 0; }
2742
- .premium-countdown-flip .premium-countdown-figure > span {
2743
- position: absolute;
2744
- left: 0;
2745
- right: 0;
2746
- margin: auto;
2747
- font-weight: 700; }
2748
- .premium-countdown-flip .premium-countdown-figure .top {
2749
- z-index: 3;
2750
- -webkit-transform-origin: 50% 100%;
2751
- -ms-transform-origin: 50% 100%;
2752
- transform-origin: 50% 100%;
2753
- -webkit-transform: perspective(200px);
2754
- transform: perspective(200px);
2755
- -webkit-backface-visibility: hidden;
2756
- backface-visibility: hidden; }
2757
- .premium-countdown-flip .premium-countdown-figure .bottom {
2758
- z-index: 1; }
2759
- .premium-countdown-flip .premium-countdown-figure .bottom::before {
2760
- content: "";
2761
- position: absolute;
2762
- display: block;
2763
- top: 0;
2764
- left: 0;
2765
- width: 100%;
2766
- height: 50%;
2767
- background-color: rgba(0, 0, 0, 0.02); }
2768
- .premium-countdown-flip .premium-countdown-figure .top-back {
2769
- -webkit-backface-visibility: hidden;
2770
- backface-visibility: hidden;
2771
- z-index: 4;
2772
- bottom: 0;
2773
- -webkit-transform-origin: 50% 0;
2774
- -ms-transform-origin: 50% 0;
2775
- transform-origin: 50% 0;
2776
- -webkit-transform: perspective(200px) rotateX(180deg);
2777
- transform: perspective(200px) rotateX(180deg); }
2778
- .premium-countdown-flip .premium-countdown-figure .top-back span {
2779
- position: absolute;
2780
- top: -100%;
2781
- left: 0;
2782
- right: 0;
2783
- margin: auto; }
2784
- .premium-countdown-flip .premium-countdown-figure .bottom-back {
2785
- z-index: 2;
2786
- top: 0; }
2787
- .premium-countdown-flip .premium-countdown-figure .bottom-back span {
2788
- position: absolute;
2789
- top: 0;
2790
- left: 0;
2791
- right: 0;
2792
- margin: auto; }
2793
- .premium-countdown-flip .premium-countdown-figure .top,
2794
- .premium-countdown-flip .premium-countdown-figure .bottom-back,
2795
- .premium-countdown-flip .premium-countdown-figure .top-back {
2796
- height: 50%;
2797
- overflow: hidden;
2798
- background-color: #f7f7f7;
2799
- -webkit-border-top-left-radius: 10px;
2800
- border-top-left-radius: 10px;
2801
- -webkit-border-top-right-radius: 10px;
2802
- border-top-right-radius: 10px; }
2803
- .premium-countdown-flip .premium-countdown-figure .top-back {
2804
- -webkit-border-bottom-left-radius: 10px;
2805
- border-bottom-left-radius: 10px;
2806
- -webkit-border-bottom-right-radius: 10px;
2807
- border-bottom-right-radius: 10px; }
2808
- .premium-countdown-flip .premium-countdown-figure .top::after,
2809
- .premium-countdown-flip .premium-countdown-figure .bottom-back::after {
2810
- content: "";
2811
- position: absolute;
2812
- z-index: -1;
2813
- left: 0;
2814
- bottom: 0;
2815
- width: 100%;
2816
- height: 100%;
2817
- border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
2818
-
2819
- .side .premium-countdown-figure,
2820
- .side .premium-countdown-label {
2821
- display: inline-block; }
2822
-
2823
- .side .premium-countdown-figure {
2824
- margin-right: 5px; }
2825
-
2826
- .down .premium-countdown-figure,
2827
- .down .premium-countdown-label {
2828
- display: block; }
2829
-
2830
- .down .premium-countdown-label {
2831
- width: 100%; }
2832
-
2833
- /**************** Premium Counter ***************/
2834
- /************************************************/
2835
- .premium-counter-area {
2836
- padding: 10px 0;
2837
- -js-display: flex;
2838
- display: -webkit-box;
2839
- display: -webkit-flex;
2840
- display: -moz-box;
2841
- display: -ms-flexbox;
2842
- display: flex;
2843
- -webkit-box-pack: center;
2844
- -webkit-justify-content: center;
2845
- -moz-box-pack: center;
2846
- -ms-flex-pack: center;
2847
- justify-content: center;
2848
- -webkit-box-align: center;
2849
- -webkit-align-items: center;
2850
- -moz-box-align: center;
2851
- -ms-flex-align: center;
2852
- align-items: center; }
2853
- .premium-counter-area.top {
2854
- -webkit-box-orient: vertical;
2855
- -webkit-box-direction: normal;
2856
- -webkit-flex-direction: column;
2857
- -moz-box-orient: vertical;
2858
- -moz-box-direction: normal;
2859
- -ms-flex-direction: column;
2860
- flex-direction: column; }
2861
- .premium-counter-area.right {
2862
- -webkit-box-orient: horizontal;
2863
- -webkit-box-direction: reverse;
2864
- -webkit-flex-direction: row-reverse;
2865
- -moz-box-orient: horizontal;
2866
- -moz-box-direction: reverse;
2867
- -ms-flex-direction: row-reverse;
2868
- flex-direction: row-reverse; }
2869
- .premium-counter-area.right .premium-counter-icon {
2870
- padding-left: 20px; }
2871
- .premium-counter-area.left .premium-counter-icon {
2872
- padding-right: 20px; }
2873
- .premium-counter-area .premium-counter-icon .icon i.fa:before {
2874
- vertical-align: text-top; }
2875
- .premium-counter-area .premium-counter-icon span.icon {
2876
- text-align: center;
2877
- display: inline-block;
2878
- vertical-align: middle; }
2879
- .premium-counter-area .premium-counter-icon .circle {
2880
- -webkit-border-radius: 100%;
2881
- border-radius: 100%; }
2882
- .premium-counter-area .premium-counter-icon img,
2883
- .premium-counter-area .premium-counter-icon svg {
2884
- width: 80px; }
2885
- .premium-counter-area .premium-counter-icon .premium-counter-animation svg {
2886
- height: 80px; }
2887
- .premium-counter-area .premium-counter-title p {
2888
- padding: 0;
2889
- margin: 0; }
2890
- .premium-counter-area .premium-counter-value-wrap {
2891
- -js-display: flex;
2892
- display: -webkit-box;
2893
- display: -webkit-flex;
2894
- display: -moz-box;
2895
- display: -ms-flexbox;
2896
- display: flex;
2897
- -webkit-box-align: center;
2898
- -webkit-align-items: center;
2899
- -moz-box-align: center;
2900
- -ms-flex-align: center;
2901
- align-items: center; }
2902
-
2903
- .premium-init-wrapper {
2904
- -js-display: flex;
2905
- display: -webkit-box;
2906
- display: -webkit-flex;
2907
- display: -moz-box;
2908
- display: -ms-flexbox;
2909
- display: flex; }
2910
- .premium-init-wrapper.row {
2911
- -webkit-box-align: center;
2912
- -webkit-align-items: center;
2913
- -moz-box-align: center;
2914
- -ms-flex-align: center;
2915
- align-items: center; }
2916
- .premium-init-wrapper.right {
2917
- text-align: right; }
2918
-
2919
- span.icon.flex-width {
2920
- width: auto !important;
2921
- height: auto !important; }
2922
-
2923
- .premium-counter-area .premium-counter-init {
2924
- font-size: 35px; }
2925
-
2926
- /**************** Premium Dual Heading *****************/
2927
- /*******************************************************/
2928
- .premium-dual-header-first-header,
2929
- .premium-dual-header-second-header {
2930
- position: relative;
2931
- padding: 0;
2932
- margin: 0;
2933
- display: inline-block;
2934
- -webkit-transform: translate(0, 0);
2935
- -ms-transform: translate(0, 0);
2936
- transform: translate(0, 0); }
2937
-
2938
- .premium-dual-header-first-clip .premium-dual-header-first-span,
2939
- .premium-dual-header-second-clip {
2940
- -webkit-text-fill-color: transparent;
2941
- -webkit-background-clip: text;
2942
- background-clip: text; }
2943
-
2944
- .premium-dual-header-first-clip.stroke .premium-dual-header-first-span,
2945
- .premium-dual-header-second-clip.stroke {
2946
- -webkit-text-stroke-color: transparent;
2947
- -webkit-text-fill-color: #fafafa;
2948
- -webkit-text-stroke-width: 2px; }
2949
-
2950
- @media (max-width: 500px) {
2951
- .premium-dual-header-first-header,
2952
- .premium-dual-header-second-header {
2953
- word-wrap: break-word; } }
2954
-
2955
- .premium-dual-header-first-header.gradient .premium-dual-header-first-span,
2956
- .premium-dual-header-second-header.gradient {
2957
- -webkit-background-size: 300% 300% !important;
2958
- background-size: 300% 300% !important;
2959
- -webkit-animation: Gradient 10s ease-in-out infinite;
2960
- animation: Gradient 10s ease-in-out infinite; }
2961
-
2962
- @-webkit-keyframes Gradient {
2963
- 0% {
2964
- background-position: 0% 50%; }
2965
- 50% {
2966
- background-position: 100% 50%; }
2967
- 100% {
2968
- background-position: 0% 50%; } }
2969
-
2970
- @keyframes Gradient {
2971
- 0% {
2972
- background-position: 0% 50%; }
2973
- 50% {
2974
- background-position: 100% 50%; }
2975
- 100% {
2976
- background-position: 0% 50%; } }
2977
-
2978
- .premium-mask-yes.premium-header-inline .premium-dual-header-first-span,
2979
- .premium-mask-yes.premium-header-inline .premium-dual-header-first-span {
2980
- display: inline-block !important; }
2981
-
2982
- /**************** Premium Fancy Text *******************/
2983
- /*******************************************************/
2984
- .premium-suffix-text,
2985
- .premium-fancy-text,
2986
- .premium-prefix-text {
2987
- font-size: 40px; }
2988
-
2989
- .premium-fancy-text-wrapper:not(.typing) .premium-fancy-text,
2990
- .premium-fancy-item-hidden {
2991
- opacity: 0; }
2992
-
2993
- .premium-fancy-text-wrapper .premium-fancy-list-items {
2994
- list-style: none; }
2995
-
2996
- .premium-fancy-text-wrapper .premium-fancy-text-span-align {
2997
- vertical-align: top; }
2998
-
2999
- .premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-text-items-wrapper {
3000
- margin: 0;
3001
- padding: 0;
3002
- border: none;
3003
- position: relative; }
3004
-
3005
- .premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-list-items {
3006
- position: absolute;
3007
- top: 0;
3008
- left: 0;
3009
- display: inline-block; }
3010
-
3011
- .premium-fancy-text-wrapper.zoomout .premium-fancy-item-hidden {
3012
- -webkit-animation: pa-zoom-out 0.8s;
3013
- animation: pa-zoom-out 0.8s; }
3014
-
3015
- .premium-fancy-text-wrapper.zoomout .premium-fancy-item-visible {
3016
- position: relative !important;
3017
- -webkit-animation: pa-zoom-in 0.8s;
3018
- animation: pa-zoom-in 0.8s; }
3019
-
3020
- .premium-fancy-text-wrapper.zoomout .premium-fancy-text-items-wrapper {
3021
- -webkit-perspective: 300px;
3022
- perspective: 300px; }
3023
-
3024
- .premium-fancy-text-wrapper.rotate .premium-fancy-list-items {
3025
- -webkit-transform-origin: 50% 100%;
3026
- -ms-transform-origin: 50% 100%;
3027
- transform-origin: 50% 100%; }
3028
-
3029
- .premium-fancy-text-wrapper.rotate .premium-fancy-item-hidden {
3030
- -webkit-transform: rotateX(180deg);
3031
- transform: rotateX(180deg);
3032
- -webkit-animation: pa-rotate-out 1.2s;
3033
- animation: pa-rotate-out 1.2s; }
3034
-
3035
- .premium-fancy-text-wrapper.rotate .premium-fancy-item-visible {
3036
- position: relative !important;
3037
- -webkit-transform: rotateX(0deg);
3038
- transform: rotateX(0deg);
3039
- -webkit-animation: pa-rotate-in 1.2s;
3040
- animation: pa-rotate-in 1.2s; }
3041
-
3042
- .premium-fancy-text-wrapper.custom .premium-fancy-item-visible {
3043
- position: relative !important; }
3044
-
3045
- .premium-fancy-text-wrapper.auto-fade .premium-fancy-text {
3046
- display: inline-block;
3047
- width: 200px;
3048
- font-weight: 400; }
3049
-
3050
- .premium-fancy-text-wrapper.auto-fade .premium-fancy-svg-text {
3051
- position: relative;
3052
- vertical-align: sub; }
3053
-
3054
- .premium-fancy-text-wrapper.auto-fade g > text {
3055
- text-anchor: start;
3056
- shape-rendering: crispEdges;
3057
- opacity: 0;
3058
- font-size: 300px;
3059
- -webkit-animation-name: pa-auto-fade;
3060
- animation-name: pa-auto-fade;
3061
- -moz-animation-name: pa-auto-fade;
3062
- -webkit-animation-duration: 9s;
3063
- animation-duration: 9s;
3064
- -webkit-animation-timing-function: linear;
3065
- animation-timing-function: linear;
3066
- -webkit-animation-iteration-count: infinite;
3067
- animation-iteration-count: infinite; }
3068
-
3069
- .premium-fancy-text-wrapper.auto-fade g > text:nth-child(1) {
3070
- -webkit-animation-delay: 0s;
3071
- animation-delay: 0s; }
3072
-
3073
- .premium-fancy-text-wrapper.auto-fade g > text:nth-child(2) {
3074
- -webkit-animation-delay: 3s;
3075
- animation-delay: 3s; }
3076
-
3077
- .premium-fancy-text-wrapper.auto-fade g > text:nth-child(3) {
3078
- -webkit-animation-delay: 6s;
3079
- animation-delay: 6s; }
3080
-
3081
- .premium-fancy-text-wrapper.loading .premium-fancy-text {
3082
- position: relative; }
3083
- .premium-fancy-text-wrapper.loading .premium-fancy-text .premium-loading-bar {
3084
- position: absolute;
3085
- width: 100%;
3086
- height: 3px;
3087
- bottom: 0;
3088
- left: 0;
3089
- animation: pa-loading-bar 2.5s ease-out infinite;
3090
- -webkit-animation: pa-loading-bar 2.5s ease-out infinite; }
3091
-
3092
- .premium-fancy-text-wrapper.loading.pause .premium-fancy-text:hover .premium-loading-bar {
3093
- -webkit-animation-play-state: paused;
3094
- animation-play-state: paused; }
3095
-
3096
- @-webkit-keyframes pa-auto-fade {
3097
- 0% {
3098
- opacity: 0; }
3099
- 20% {
3100
- opacity: 1; }
3101
- 35% {
3102
- opacity: 0; }
3103
- 100% {
3104
- opacity: 0; } }
3105
-
3106
- @keyframes pa-auto-fade {
3107
- 0% {
3108
- opacity: 0; }
3109
- 20% {
3110
- opacity: 1; }
3111
- 35% {
3112
- opacity: 0; }
3113
- 100% {
3114
- opacity: 0; } }
3115
-
3116
- @-webkit-keyframes pa-loading-bar {
3117
- 0% {
3118
- width: 0; }
3119
- 100% {
3120
- width: 100; } }
3121
-
3122
- @keyframes pa-loading-bar {
3123
- 0% {
3124
- width: 0; }
3125
- 100% {
3126
- width: 100; } }
3127
-
3128
- @-webkit-keyframes pa-zoom-in {
3129
- 0% {
3130
- opacity: 0;
3131
- -webkit-transform: translateZ(100px);
3132
- transform: translateZ(100px); }
3133
- 100% {
3134
- opacity: 1;
3135
- -webkit-transform: translateZ(0);
3136
- transform: translateZ(0); } }
3137
-
3138
- @keyframes pa-zoom-in {
3139
- 0% {
3140
- opacity: 0;
3141
- -webkit-transform: translateZ(100px);
3142
- transform: translateZ(100px); }
3143
- 100% {
3144
- opacity: 1;
3145
- -webkit-transform: translateZ(0);
3146
- transform: translateZ(0); } }
3147
-
3148
- @-webkit-keyframes pa-zoom-out {
3149
- 0% {
3150
- opacity: 1;
3151
- -webkit-transform: translateZ(0);
3152
- transform: translateZ(0); }
3153
- 100% {
3154
- opacity: 0;
3155
- -webkit-transform: translateZ(-100px);
3156
- transform: translateZ(-100px); } }
3157
-
3158
- @keyframes pa-zoom-out {
3159
- 0% {
3160
- opacity: 1;
3161
- -webkit-transform: translateZ(0);
3162
- transform: translateZ(0); }
3163
- 100% {
3164
- opacity: 0;
3165
- -webkit-transform: translateZ(-100px);
3166
- transform: translateZ(-100px); } }
3167
-
3168
- @-webkit-keyframes pa-rotate-in {
3169
- 0% {
3170
- opacity: 0;
3171
- -webkit-transform: rotateX(180deg);
3172
- transform: rotateX(180deg); }
3173
- 35% {
3174
- opacity: 0;
3175
- -webkit-transform: rotateX(120deg);
3176
- transform: rotateX(120deg); }
3177
- 65% {
3178
- opacity: 0; }
3179
- 100% {
3180
- opacity: 1;
3181
- -webkit-transform: rotateX(360deg);
3182
- transform: rotateX(360deg); } }
3183
-
3184
- @keyframes pa-rotate-in {
3185
- 0% {
3186
- opacity: 0;
3187
- -webkit-transform: rotateX(180deg);
3188
- transform: rotateX(180deg); }
3189
- 35% {
3190
- opacity: 0;
3191
- -webkit-transform: rotateX(120deg);
3192
- transform: rotateX(120deg); }
3193
- 65% {
3194
- opacity: 0; }
3195
- 100% {
3196
- opacity: 1;
3197
- -webkit-transform: rotateX(360deg);
3198
- transform: rotateX(360deg); } }
3199
-
3200
- @-webkit-keyframes pa-rotate-out {
3201
- 0% {
3202
- opacity: 1;
3203
- -webkit-transform: rotateX(0deg);
3204
- transform: rotateX(0deg); }
3205
- 35% {
3206
- opacity: 1;
3207
- -webkit-transform: rotateX(-40deg);
3208
- transform: rotateX(-40deg); }
3209
- 65% {
3210
- opacity: 0; }
3211
- 100% {
3212
- opacity: 0;
3213
- -webkit-transform: rotateX(180deg);
3214
- transform: rotateX(180deg); } }
3215
-
3216
- @keyframes pa-rotate-out {
3217
- 0% {
3218
- opacity: 1;
3219
- -webkit-transform: rotateX(0deg);
3220
- transform: rotateX(0deg); }
3221
- 35% {
3222
- opacity: 1;
3223
- -webkit-transform: rotateX(-40deg);
3224
- transform: rotateX(-40deg); }
3225
- 65% {
3226
- opacity: 0; }
3227
- 100% {
3228
- opacity: 0;
3229
- -webkit-transform: rotateX(180deg);
3230
- transform: rotateX(180deg); } }
3231
 
3232
- /**************** Premium Bullet List ****************/
3233
- /*****************************************************/
3234
- .premium-bullet-list-box {
3235
- -js-display: flex;
3236
- display: -webkit-box;
3237
- display: -webkit-flex;
3238
- display: -moz-box;
3239
- display: -ms-flexbox;
3240
- display: flex;
3241
- -webkit-flex-wrap: wrap;
3242
- -ms-flex-wrap: wrap;
3243
- flex-wrap: wrap;
3244
- -webkit-box-orient: vertical;
3245
- -webkit-box-direction: normal;
3246
- -webkit-flex-direction: column;
3247
- -moz-box-orient: vertical;
3248
- -moz-box-direction: normal;
3249
- -ms-flex-direction: column;
3250
- flex-direction: column; }
3251
- .premium-bullet-list-box .premium-bullet-list-content-grow-lc {
3252
- -webkit-transform-origin: left center;
3253
- -ms-transform-origin: left center;
3254
- transform-origin: left center; }
3255
- .premium-bullet-list-box .premium-bullet-list-content-grow-rc {
3256
- -webkit-transform-origin: right center;
3257
- -ms-transform-origin: right center;
3258
- transform-origin: right center; }
3259
- .premium-bullet-list-box .premium-bullet-list-content-grow-cc {
3260
- -webkit-transform-origin: center center;
3261
- -ms-transform-origin: center center;
3262
- transform-origin: center center; }
3263
 
3264
- .premium-bullet-list-content {
3265
- -js-display: flex;
3266
- display: -webkit-box;
3267
- display: -webkit-flex;
3268
- display: -moz-box;
3269
- display: -ms-flexbox;
3270
- display: flex;
3271
- -webkit-transition: all 0.3s ease-in-out;
3272
- transition: all 0.3s ease-in-out;
3273
- width: auto;
3274
- position: relative; }
3275
- .premium-bullet-list-content .premium-bullet-list-text span,
3276
- .premium-bullet-list-content .premium-bullet-list-wrapper {
3277
- display: inline-block;
3278
- -webkit-align-self: center;
3279
- -ms-flex-item-align: center;
3280
- align-self: center;
3281
  -webkit-transition: all 0.3s ease-in-out;
3282
- transition: all 0.3s ease-in-out; }
3283
- .premium-bullet-list-content .premium-bullet-list-text span {
3284
- margin: 0 5px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3285
  -webkit-box-flex: 1;
3286
  -webkit-flex: 1;
3287
- -moz-box-flex: 1;
3288
- -ms-flex: 1;
3289
- flex: 1; }
3290
- .premium-bullet-list-content .premium-bullet-list-icon-text p {
3291
- font-size: 18px;
3292
- background-color: #eee;
3293
- padding: 1px 5px;
3294
- -webkit-border-radius: 2px;
3295
- border-radius: 2px; }
3296
- .premium-bullet-list-content .premium-bullet-list-text span,
3297
- .premium-bullet-list-content .premium-bullet-list-icon-text p,
3298
- .premium-bullet-list-content .premium-bullet-list-wrapper img,
3299
- .premium-bullet-list-content .premium-bullet-list-wrapper svg,
3300
- .premium-bullet-list-content .premium-bullet-list-wrapper i {
3301
- -webkit-transition: all 0.3s ease-in-out;
3302
- transition: all 0.3s ease-in-out; }
3303
- .premium-bullet-list-content .premium-bullet-list-wrapper {
3304
- position: relative;
3305
- line-height: 0; }
3306
- .premium-bullet-list-content .premium-bullet-list-wrapper img,
3307
- .premium-bullet-list-content .premium-bullet-list-wrapper svg {
3308
- width: 30px !important;
3309
- height: 30px !important;
3310
- position: relative;
3311
- z-index: 500; }
3312
- .premium-bullet-list-content .premium-bullet-list-wrapper i,
3313
- .premium-bullet-list-content .premium-bullet-list-wrapper .premium-bullet-list-icon-text {
3314
- position: relative;
3315
- z-index: 500; }
3316
- .premium-bullet-list-content .premium-bullet-list-wrapper i {
3317
- width: 1.25em; }
3318
- .premium-bullet-list-content .premium-bullet-list-link {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3319
  position: absolute;
3320
  top: 0;
3321
  left: 0;
3322
  width: 100%;
3323
  height: 100%;
3324
- z-index: 1000; }
 
 
 
 
 
3325
 
3326
- .premium-bullet-list-content:not(:last-of-type) .premium-bullet-list-connector {
3327
- width: 100%;
3328
- height: 100%;
3329
- position: absolute;
3330
- top: 0.5em;
3331
- z-index: 100;
3332
- -js-display: flex;
3333
- display: -webkit-box;
3334
- display: -webkit-flex;
3335
- display: -moz-box;
3336
- display: -ms-flexbox;
3337
- display: flex;
3338
- -webkit-box-pack: center;
3339
- -webkit-justify-content: center;
3340
- -moz-box-pack: center;
3341
- -ms-flex-pack: center;
3342
- justify-content: center; }
3343
- .premium-bullet-list-content:not(:last-of-type) .premium-bullet-list-connector .premium-icon-connector-content:after {
3344
- content: "";
3345
- border-right-width: 1px;
3346
- border-right-style: solid;
3347
- border-color: #333333;
3348
- display: block;
3349
- height: 100%; }
3350
 
3351
- li.premium-bullet-list-content.premium-bullet-list-content-inline {
3352
- -webkit-align-self: center;
3353
- -ms-flex-item-align: center;
3354
- align-self: center;
3355
- z-index: 2; }
3356
 
3357
- li.premium-bullet-list-content.premium-bullet-list-content-inline:not(:first-child) {
3358
- margin: 0 3px; }
 
 
 
 
 
 
 
 
 
3359
 
3360
- li.premium-bullet-list-content.premium-bullet-list-content-inline:first-child {
3361
- margin: 0 3px 0 0; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3362
 
3363
- .premium-bullet-list-divider:not(:last-child) {
3364
- width: 100%;
3365
- -webkit-box-flex: 0;
3366
- -webkit-flex: 0 0 100%;
3367
- -moz-box-flex: 0;
3368
- -ms-flex: 0 0 100%;
3369
- flex: 0 0 100%;
3370
- overflow: hidden; }
3371
 
3372
- .premium-bullet-list-divider:not(:last-child):after {
3373
- content: "";
3374
- display: block;
3375
- border-top-style: solid;
3376
- border-top-width: 1px; }
 
 
 
 
 
 
 
 
3377
 
3378
- .premium-bullet-list-divider-inline:not(:last-child) {
3379
- float: right;
3380
- display: inline-block;
3381
- position: relative;
3382
- height: 100%;
3383
- overflow: hidden;
3384
- -webkit-align-self: center;
3385
- -ms-flex-item-align: center;
3386
- align-self: center;
3387
- margin: 0 3px; }
3388
 
3389
- .premium-bullet-list-divider-inline:not(:last-child):after {
3390
- content: "";
3391
- display: block;
3392
- border-left-width: 1px;
3393
- height: 33px;
3394
- border-left-style: solid; }
 
3395
 
3396
- .premium-bullet-list-icon-text {
3397
- line-height: 1.5; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3398
 
3399
- .premium-bullet-list-icon-text p,
3400
- ul.premium-bullet-list-box,
3401
- li.premium-bullet-list-content {
3402
- margin: 0; }
3403
 
3404
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper i,
3405
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-text span,
3406
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-icon-text p {
3407
- color: transparent !important;
3408
- text-shadow: 0 0 3px #aaa; }
 
3409
 
3410
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-icon-connector-content,
3411
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper .premium-lottie-animation svg,
3412
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper img,
3413
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-badge {
3414
- -webkit-filter: blur(3px);
3415
- filter: blur(3px); }
 
 
 
 
 
 
 
3416
 
3417
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper i,
3418
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-text span,
3419
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-icon-text p {
3420
- color: #aaa !important;
3421
- text-shadow: 0 0px 0 transparent; }
 
 
 
 
3422
 
3423
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-icon-connector-content,
3424
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper .premium-lottie-animation svg,
3425
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper img,
3426
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-badge {
3427
- -webkit-filter: none;
3428
- filter: none; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3429
 
3430
- .premium-bullet-list-content .premium-bullet-list-badge {
3431
- font-size: 11px;
3432
- top: auto;
3433
- min-width: -webkit-max-content;
3434
- min-width: -moz-max-content;
3435
- min-width: max-content;
3436
- height: -webkit-fit-content;
3437
- height: -moz-fit-content;
3438
- height: fit-content; }
3439
 
3440
- .premium-bullet-list-content .premium-bullet-list-icon-text p {
3441
- font-size: 13px; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3442
 
3443
- .premium-bullet-list-gradient-effect[data-text] {
3444
- display: inline-block;
3445
- position: relative;
3446
- text-decoration: none; }
 
 
 
 
 
 
 
 
 
 
 
 
3447
 
3448
- .premium-bullet-list-gradient-effect[data-text]::before {
3449
- content: attr(data-text);
3450
- position: absolute;
3451
- z-index: 1;
3452
- overflow: hidden;
3453
- -webkit-clip-path: polygon(0 0, 1px 0, 1px 100%, 0 100%);
3454
- clip-path: polygon(0 0, 1px 0, 1px 100%, 0 100%);
3455
- -webkit-background-clip: text;
3456
- background-clip: text;
3457
- -webkit-text-fill-color: transparent;
3458
- -webkit-transition: all 0.4s ease;
3459
- transition: all 0.4s ease; }
 
3460
 
3461
- .premium-bullet-list-content:hover .premium-bullet-list-gradient-effect[data-text]::before,
3462
- .premium-bullet-list-content:focus .premium-bullet-list-gradient-effect[data-text]::before {
3463
- -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
3464
- clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
 
 
 
 
 
3465
 
3466
- ul[data-list-animation*="animated-"] .premium-bullet-list-divider,
3467
- ul[data-list-animation*="animated-"] .premium-bullet-list-content,
3468
- ul[data-list-animation*="animated-"] .premium-bullet-list-divider-inline {
3469
- opacity: 0; }
3470
 
3471
- .premium-bullet-list-content-grow-effect:hover {
3472
- -webkit-transform: scale(1.07);
3473
- -ms-transform: scale(1.07);
3474
- transform: scale(1.07); }
 
 
3475
 
3476
- @-webkit-keyframes spin {
3477
- 100% {
3478
- -webkit-transform: rotate(360deg);
3479
- transform: rotate(360deg); } }
3480
 
3481
- @keyframes spin {
3482
- 100% {
3483
- -webkit-transform: rotate(360deg);
3484
- transform: rotate(360deg); } }
3485
-
3486
- /**************** Premium Image Button ***********/
3487
- /*************************************************/
3488
- .premium-image-button {
3489
- -js-display: inline-flex;
3490
- display: -webkit-inline-box;
3491
- display: -webkit-inline-flex;
3492
- display: -moz-inline-box;
3493
- display: -ms-inline-flexbox;
3494
- display: inline-flex;
3495
- position: relative;
3496
- overflow: hidden;
3497
- background-color: #eee;
3498
- cursor: pointer;
3499
- -webkit-transition: all 0.2s ease-in-out !important;
3500
- transition: all 0.2s ease-in-out !important; }
3501
- .premium-image-button .premium-button-style6-bg, .premium-image-button.premium-button-style6:before, .premium-image-button:not(.premium-image-button-style6):hover {
3502
- background-color: #54595f; }
3503
-
3504
- /*Default background for slide styles*/
3505
- .premium-image-button-style4-icon-wrapper,
3506
- .premium-image-button-style1:before {
3507
- background-color: #54595f; }
3508
-
3509
- .premium-image-button-text-icon-wrapper {
3510
- width: 100%;
3511
- -js-display: flex;
3512
- display: -webkit-box;
3513
- display: -webkit-flex;
3514
- display: -moz-box;
3515
- display: -ms-flexbox;
3516
- display: flex;
3517
- -webkit-box-pack: center;
3518
- -webkit-justify-content: center;
3519
- -moz-box-pack: center;
3520
- -ms-flex-pack: center;
3521
- justify-content: center;
3522
- -webkit-box-align: center;
3523
- -webkit-align-items: center;
3524
- -moz-box-align: center;
3525
- -ms-flex-align: center;
3526
- align-items: center;
3527
- position: relative;
3528
- z-index: 3;
3529
- -webkit-transition: all 0.2s ease-in-out;
3530
- transition: all 0.2s ease-in-out; }
3531
- .premium-image-button-text-icon-wrapper span,
3532
- .premium-image-button-text-icon-wrapper i,
3533
- .premium-image-button-text-icon-wrapper svg {
3534
- -webkit-transition: all 0.2s ease-in-out;
3535
- transition: all 0.2s ease-in-out; }
3536
-
3537
- .premium-image-button-style1:before {
3538
- position: absolute;
3539
- content: "";
3540
- -webkit-transition: all 0.2s ease-in-out;
3541
- transition: all 0.2s ease-in-out; }
3542
-
3543
- .premium-image-button-style1-bottom:before {
3544
- width: 100%;
3545
- height: 0;
3546
- top: 0;
3547
- left: 0; }
3548
-
3549
- .premium-image-button-style1-top:before {
3550
- width: 100%;
3551
- height: 0;
3552
- bottom: 0;
3553
- left: 0; }
3554
-
3555
- .premium-image-button-style1-right:before {
3556
- width: 0;
3557
- height: 100%;
3558
- bottom: 0;
3559
- left: 0; }
3560
-
3561
- .premium-image-button-style1-left:before {
3562
- width: 0;
3563
- height: 100%;
3564
- top: 0;
3565
- right: 0; }
3566
-
3567
- .premium-image-button-style1-bottom:hover:before,
3568
- .premium-image-button-style1-top:hover:before {
3569
- height: 100%; }
3570
-
3571
- .premium-image-button-style1-right:hover:before,
3572
- .premium-image-button-style1-left:hover:before {
3573
- width: 100%; }
3574
-
3575
- .premium-image-button-style3 {
3576
- z-index: 10; }
3577
- .premium-image-button-style3:before {
3578
- position: absolute;
3579
- top: 0px;
3580
- left: 0px;
3581
- width: 100%;
3582
- height: 100%;
3583
- content: "";
3584
- z-index: 1;
3585
- background: rgba(255, 255, 255, 0.2);
3586
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
3587
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
3588
- -webkit-transition: all 0.8s ease-out;
3589
- transition: all 0.8s ease-out; }
3590
-
3591
- .premium-image-button-diagonal-right: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-right: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-diagonal-left:before {
3600
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
3601
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0); }
3602
-
3603
- .premium-image-button-diagonal-left:hover:before {
3604
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
3605
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0); }
3606
-
3607
- .premium-image-button-diagonal-bottom:before {
3608
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
3609
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0); }
3610
-
3611
- .premium-image-button-diagonal-bottom:hover:before {
3612
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
3613
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0); }
3614
-
3615
- .premium-image-button-diagonal-top:before {
3616
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
3617
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0); }
3618
-
3619
- .premium-image-button-diagonal-top:hover:before {
3620
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
3621
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0); }
3622
-
3623
- .premium-image-button-style4-icon-wrapper {
3624
- position: absolute;
3625
- z-index: 2;
3626
- width: 100%;
3627
- text-align: center;
3628
- -js-display: flex;
3629
- display: -webkit-box;
3630
- display: -webkit-flex;
3631
- display: -moz-box;
3632
- display: -ms-flexbox;
3633
- display: flex;
3634
- -webkit-box-align: center;
3635
- -webkit-align-items: center;
3636
- -moz-box-align: center;
3637
- -ms-flex-align: center;
3638
- align-items: center;
3639
- -webkit-box-pack: center;
3640
- -webkit-justify-content: center;
3641
- -moz-box-pack: center;
3642
- -ms-flex-pack: center;
3643
- justify-content: center;
3644
- height: 100%;
3645
- opacity: 0;
3646
- -webkit-transition: all 0.3s ease-in-out;
3647
- transition: all 0.3s ease-in-out; }
3648
- .premium-image-button-style4-icon-wrapper.top {
3649
- bottom: -100%;
3650
- left: 0; }
3651
- .premium-image-button-style4-icon-wrapper.bottom {
3652
- top: -100%;
3653
- left: 0; }
3654
- .premium-image-button-style4-icon-wrapper.left {
3655
- top: 0;
3656
- left: -100%; }
3657
- .premium-image-button-style4-icon-wrapper.right {
3658
- top: 0;
3659
- right: -100%; }
3660
-
3661
- .premium-image-button-style4-bottom:hover .premium-image-button-style4-icon-wrapper {
3662
- top: 0;
3663
- opacity: 1; }
3664
-
3665
- .premium-image-button-style4-bottom:hover .premium-image-button-text-icon-wrapper {
3666
- -webkit-transform: translateY(100%);
3667
- -ms-transform: translateY(100%);
3668
- transform: translateY(100%);
3669
- opacity: 0; }
3670
-
3671
- .premium-image-button-style4-top:hover .premium-image-button-style4-icon-wrapper {
3672
- bottom: 0;
3673
- opacity: 1; }
3674
-
3675
- .premium-image-button-style4-top:hover .premium-image-button-text-icon-wrapper {
3676
- -webkit-transform: translateY(-100%);
3677
- -ms-transform: translateY(-100%);
3678
- transform: translateY(-100%);
3679
- opacity: 0; }
3680
-
3681
- .premium-image-button-style4-left:hover .premium-image-button-style4-icon-wrapper {
3682
- left: 0;
3683
- opacity: 1; }
3684
-
3685
- .premium-image-button-style4-left:hover .premium-image-button-text-icon-wrapper {
3686
- -webkit-transform: translateX(100%);
3687
- -ms-transform: translateX(100%);
3688
- transform: translateX(100%);
3689
- opacity: 0; }
3690
-
3691
- .premium-image-button-style4-right:hover .premium-image-button-style4-icon-wrapper {
3692
- right: 0;
3693
- opacity: 1; }
3694
-
3695
- .premium-image-button-style4-right:hover .premium-image-button-text-icon-wrapper {
3696
- -webkit-transform: translateX(-100%);
3697
- -ms-transform: translateX(-100%);
3698
- transform: translateX(-100%);
3699
- opacity: 0; }
3700
-
3701
- .premium-image-button-style5:before {
3702
- position: absolute;
3703
- content: "";
3704
- top: 0;
3705
- left: 0;
3706
- width: 100%;
3707
- height: 100%;
3708
- opacity: 0;
3709
- -webkit-transition: all 1s ease-in-out;
3710
- transition: all 1s ease-in-out;
3711
- background: rgba(255, 255, 255, 0.2);
3712
- -webkit-animation-name: premium-overlap-effect-done;
3713
- animation-name: premium-overlap-effect-done;
3714
- -webkit-animation-duration: 1s;
3715
- animation-duration: 1s; }
3716
-
3717
- .premium-image-button-overlap-effect-vertical:before {
3718
- -webkit-animation-name: premium-overlap-ver-effect-done;
3719
- animation-name: premium-overlap-ver-effect-done; }
3720
-
3721
- .premium-image-button-overlap-effect-horizontal:hover:before {
3722
- -webkit-animation-name: premium-overlap-effect;
3723
- animation-name: premium-overlap-effect; }
3724
-
3725
- .premium-image-button-overlap-effect-vertical:hover:before {
3726
- -webkit-animation-name: premium-overlap-ver-effect;
3727
- animation-name: premium-overlap-ver-effect; }
3728
-
3729
- @-webkit-keyframes premium-overlap-effect {
3730
- 0% {
3731
- opacity: 0;
3732
- -webkit-transform: rotateY(0deg);
3733
- transform: rotateY(0deg); }
3734
- 50% {
3735
- opacity: 1;
3736
- -webkit-transform: rotateY(180deg);
3737
- transform: rotateY(180deg); }
3738
- 100% {
3739
- opacity: 0;
3740
- -webkit-transform: rotateY(360deg);
3741
- transform: rotateY(360deg); } }
3742
-
3743
- @keyframes premium-overlap-effect {
3744
- 0% {
3745
- opacity: 0;
3746
- -webkit-transform: rotateY(0deg);
3747
- transform: rotateY(0deg); }
3748
- 50% {
3749
- opacity: 1;
3750
- -webkit-transform: rotateY(180deg);
3751
- transform: rotateY(180deg); }
3752
- 100% {
3753
- opacity: 0;
3754
- -webkit-transform: rotateY(360deg);
3755
- transform: rotateY(360deg); } }
3756
-
3757
- @-webkit-keyframes premium-overlap-effect-done {
3758
- 0% {
3759
- opacity: 0;
3760
- -webkit-transform: rotateY(0deg);
3761
- transform: rotateY(0deg); }
3762
- 50% {
3763
- opacity: 1;
3764
- -webkit-transform: rotateY(180deg);
3765
- transform: rotateY(180deg); }
3766
- 100% {
3767
- opacity: 0;
3768
- -webkit-transform: rotateY(360deg);
3769
- transform: rotateY(360deg); } }
3770
-
3771
- @keyframes premium-overlap-effect-done {
3772
- 0% {
3773
- opacity: 0;
3774
- -webkit-transform: rotateY(0deg);
3775
- transform: rotateY(0deg); }
3776
- 50% {
3777
- opacity: 1;
3778
- -webkit-transform: rotateY(180deg);
3779
- transform: rotateY(180deg); }
3780
- 100% {
3781
- opacity: 0;
3782
- -webkit-transform: rotateY(360deg);
3783
- transform: rotateY(360deg); } }
3784
-
3785
- @-webkit-keyframes premium-overlap-ver-effect {
3786
- 0% {
3787
- opacity: 0;
3788
- -webkit-transform: rotateX(0deg);
3789
- transform: rotateX(0deg); }
3790
- 50% {
3791
- opacity: 1;
3792
- -webkit-transform: rotateX(180deg);
3793
- transform: rotateX(180deg); }
3794
- 100% {
3795
- opacity: 0;
3796
- -webkit-transform: rotateX(360deg);
3797
- transform: rotateX(360deg); } }
3798
-
3799
- @keyframes premium-overlap-ver-effect {
3800
- 0% {
3801
- opacity: 0;
3802
- -webkit-transform: rotateX(0deg);
3803
- transform: rotateX(0deg); }
3804
- 50% {
3805
- opacity: 1;
3806
- -webkit-transform: rotateX(180deg);
3807
- transform: rotateX(180deg); }
3808
- 100% {
3809
- opacity: 0;
3810
- -webkit-transform: rotateX(360deg);
3811
- transform: rotateX(360deg); } }
3812
-
3813
- @-webkit-keyframes premium-overlap-ver-effect-done {
3814
- 0% {
3815
- opacity: 0;
3816
- -webkit-transform: rotateX(0deg);
3817
- transform: rotateX(0deg); }
3818
- 50% {
3819
- opacity: 1;
3820
- -webkit-transform: rotateX(180deg);
3821
- transform: rotateX(180deg); }
3822
- 100% {
3823
- opacity: 0;
3824
- -webkit-transform: rotateX(360deg);
3825
- transform: rotateX(360deg); } }
3826
-
3827
- @keyframes premium-overlap-ver-effect-done {
3828
- 0% {
3829
- opacity: 0;
3830
- -webkit-transform: rotateX(0deg);
3831
- transform: rotateX(0deg); }
3832
- 50% {
3833
- opacity: 1;
3834
- -webkit-transform: rotateX(180deg);
3835
- transform: rotateX(180deg); }
3836
- 100% {
3837
- opacity: 0;
3838
- -webkit-transform: rotateX(360deg);
3839
- transform: rotateX(360deg); } }
3840
-
3841
- /************ Premium Image Scroll ************/
3842
- /**********************************************/
3843
- @font-face {
3844
- font-family: "pa-elements";
3845
- src: url("../../plugins/premium-addons-for-elementor/assets/editor/fonts/pa-elements.eot?vcwy2s");
3846
- src: url("../../plugins/premium-addons-for-elementor/assets/editor/fonts/pa-elements.eot?vcwy2s#iefix") format("embedded-opentype"), url("../../plugins/premium-addons-for-elementor/assets/editor/fonts/pa-elements.ttf?vcwy2s") format("truetype"), url("../../plugins/premium-addons-for-elementor/assets/editor/fonts/pa-elements.woff?vcwy2s") format("woff"), url("../../plugins/premium-addons-for-elementor/assets/editor/fonts/pa-elements.svg?vcwy2s#pa-elements") format("svg");
3847
- font-weight: normal;
3848
- font-style: normal; }
3849
-
3850
- .premium-image-scroll-section,
3851
- .premium-image-scroll-container {
3852
- -webkit-transition: all 0.3s ease-in-out;
3853
- transition: all 0.3s ease-in-out; }
3854
-
3855
- .premium-image-scroll-section {
3856
- position: relative;
3857
- overflow: hidden;
3858
- width: 100%;
3859
- -webkit-mask-image: -webkit-radial-gradient(white, black); }
3860
-
3861
- .premium-image-scroll-container {
3862
- width: 100%; }
3863
- .premium-image-scroll-container .premium-image-scroll-mask-media {
3864
- -webkit-mask-repeat: no-repeat;
3865
- mask-repeat: no-repeat;
3866
- -webkit-mask-position: center;
3867
- mask-position: center; }
3868
-
3869
- .premium-container-scroll {
3870
- overflow: auto; }
3871
-
3872
- .premium-image-scroll-container .premium-image-scroll-horizontal {
3873
- position: relative;
3874
- width: 100%;
3875
- height: 100%; }
3876
- .premium-image-scroll-container .premium-image-scroll-horizontal img {
3877
- max-width: none;
3878
- height: 100%; }
3879
-
3880
- .premium-image-scroll-container .premium-image-scroll-vertical img {
3881
- width: 100%;
3882
- max-width: 100%;
3883
- height: auto; }
3884
-
3885
- .premium-image-scroll-ver {
3886
- position: relative; }
3887
-
3888
- .premium-image-scroll-container .premium-image-scroll-overlay {
3889
- background: rgba(2, 2, 2, 0.3); }
3890
-
3891
- .premium-image-scroll-container .premium-image-scroll-link,
3892
- .premium-image-scroll-container .premium-image-scroll-overlay {
3893
- position: absolute;
3894
- top: 0;
3895
- bottom: 0;
3896
- left: 0;
3897
- right: 0;
3898
- z-index: 4; }
3899
-
3900
- .premium-image-scroll-content {
3901
- display: inline-block;
3902
- position: absolute;
3903
- height: auto;
3904
- top: 50%;
3905
- left: 50%;
3906
- text-align: center;
3907
- z-index: 5;
3908
- -webkit-transform: translate(-50%, -50%);
3909
- -ms-transform: translate(-50%, -50%);
3910
- transform: translate(-50%, -50%); }
3911
-
3912
- .premium-container-scroll-instant .premium-image-scroll-image {
3913
- -webkit-transition: all 0s ease-in-out !important;
3914
- transition: all 0s ease-in-out !important; }
3915
-
3916
- .premium-image-scroll-container img {
3917
- -webkit-transition: -webkit-transform 3s ease-in-out;
3918
- transition: -webkit-transform 3s ease-in-out;
3919
- transition: transform 3s ease-in-out;
3920
- transition: transform 3s ease-in-out, -webkit-transform 3s ease-in-out; }
3921
-
3922
- .premium-image-scroll-container .premium-image-scroll-overlay,
3923
- .premium-image-scroll-container .premium-image-scroll-content {
3924
- -webkit-transition: all 0.3s ease-in-out;
3925
- transition: all 0.3s ease-in-out;
3926
- opacity: 1; }
3927
-
3928
- .premium-image-scroll-container:hover .premium-image-scroll-overlay {
3929
- opacity: 0; }
3930
-
3931
- .premium-image-scroll-container:hover .premium-image-scroll-content {
3932
- opacity: 0;
3933
- visibility: hidden; }
3934
-
3935
- .premium-image-scroll-content .premium-image-scroll-icon {
3936
- display: inline-block;
3937
- font-family: "pa-elements" !important;
3938
- speak: none;
3939
- font-style: normal;
3940
- font-weight: normal;
3941
- font-variant: normal;
3942
- text-transform: none;
3943
- line-height: 1;
3944
- -webkit-font-smoothing: antialiased;
3945
- -moz-osx-font-smoothing: grayscale;
3946
- -webkit-animation-duration: 0.5s;
3947
- animation-duration: 0.5s;
3948
- -webkit-animation-iteration-count: infinite;
3949
- animation-iteration-count: infinite;
3950
- -webkit-animation-direction: alternate;
3951
- animation-direction: alternate;
3952
- -webkit-animation-timing-function: ease-in-out;
3953
- animation-timing-function: ease-in-out; }
3954
-
3955
- .pa-horizontal-mouse-scroll:before {
3956
- content: "\e901"; }
3957
-
3958
- .pa-vertical-mouse-scroll:before {
3959
- content: "\e93c"; }
3960
-
3961
- .pa-horizontal-mouse-scroll {
3962
- -webkit-animation-name: pa-scroll-horizontal;
3963
- animation-name: pa-scroll-horizontal; }
3964
-
3965
- .pa-vertical-mouse-scroll {
3966
- -webkit-animation-name: pa-scroll-vertical;
3967
- animation-name: pa-scroll-vertical; }
3968
-
3969
- @-webkit-keyframes pa-scroll-vertical {
3970
- 0% {
3971
- -webkit-transform: translateY(0px);
3972
- transform: translateY(0px); }
3973
- 100% {
3974
- -webkit-transform: translateY(5px);
3975
- transform: translateY(5px); } }
3976
-
3977
- @keyframes pa-scroll-vertical {
3978
- 0% {
3979
- -webkit-transform: translateY(0px);
3980
- transform: translateY(0px); }
3981
- 100% {
3982
- -webkit-transform: translateY(5px);
3983
- transform: translateY(5px); } }
3984
-
3985
- @-webkit-keyframes pa-scroll-horizontal {
3986
- 0% {
3987
- -webkit-transform: translateX(0px);
3988
- transform: translateX(0px); }
3989
- 100% {
3990
- -webkit-transform: translateX(5px);
3991
- transform: translateX(5px); } }
3992
-
3993
- @keyframes pa-scroll-horizontal {
3994
- 0% {
3995
- -webkit-transform: translateX(0px);
3996
- transform: translateX(0px); }
3997
- 100% {
3998
- -webkit-transform: translateX(5px);
3999
- transform: translateX(5px); } }
4000
-
4001
- /**************** Premium Image Separator ****************/
4002
- /*********************************************************/
4003
- .premium-image-separator-container {
4004
- position: absolute;
4005
- width: 100%;
4006
- z-index: 2;
4007
- top: auto;
4008
- -webkit-transition: all 0.3s ease-in-out;
4009
- transition: all 0.3s ease-in-out; }
4010
- .premium-image-separator-container svg,
4011
- .premium-image-separator-container img {
4012
- display: inline-block !important;
4013
- -webkit-mask-repeat: no-repeat;
4014
- mask-repeat: no-repeat;
4015
- -webkit-mask-position: center;
4016
- mask-position: center; }
4017
- .premium-image-separator-container .premium-image-separator-link {
4018
- position: absolute;
4019
- z-index: 9999;
4020
- top: 0;
4021
- left: 0;
4022
- width: 100%;
4023
- height: 100%;
4024
- text-decoration: none; }
4025
- .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 {
4026
- -webkit-box-shadow: none !important;
4027
- box-shadow: none !important;
4028
- outline: none !important;
4029
- border: none !important;
4030
- text-decoration: none !important; }
4031
- .premium-image-separator-container i,
4032
- .premium-image-separator-container > svg {
4033
- padding: 20px;
4034
- -webkit-transition: all 0.3s ease-in-out;
4035
- transition: all 0.3s ease-in-out; }
4036
-
4037
- /******** Premium Media Grid ********/
4038
- /************************************/
4039
- .premium-img-gallery-filter,
4040
- .premium-blog-filter {
4041
- -js-display: flex;
4042
- display: -webkit-box;
4043
- display: -webkit-flex;
4044
- display: -moz-box;
4045
- display: -ms-flexbox;
4046
- display: flex;
4047
- -webkit-box-align: center;
4048
- -webkit-align-items: center;
4049
- -moz-box-align: center;
4050
- -ms-flex-align: center;
4051
- align-items: center;
4052
- -webkit-box-pack: center;
4053
- -webkit-justify-content: center;
4054
- -moz-box-pack: center;
4055
- -ms-flex-pack: center;
4056
- justify-content: center; }
4057
-
4058
- .premium-img-gallery {
4059
- clear: both;
4060
- overflow: hidden; }
4061
-
4062
- .premium-gallery-container .premium-gallery-item {
4063
- padding: 10px;
4064
- float: left; }
4065
-
4066
- .premium-gallery-container .grid-sizer {
4067
- width: 33.33%; }
4068
-
4069
- .premium-gallery-container .pa-gallery-item {
4070
- padding: 10px; }
4071
-
4072
- .premium-img-gallery-filter .premium-gallery-cats-container li a.category,
4073
- .premium-blog-filter .premium-blog-filters-container li a.category {
4074
- outline: none;
4075
- text-decoration: none;
4076
- -webkit-border-radius: 75px;
4077
- border-radius: 75px;
4078
- margin: 15px 5px 20px;
4079
- padding: 7px 20px;
4080
- -webkit-transition: all 0.3s ease-in-out;
4081
- transition: all 0.3s ease-in-out; }
4082
-
4083
- .pa-gallery-img {
4084
- position: relative; }
4085
- .pa-gallery-img .pa-gallery-whole-link {
4086
- position: absolute;
4087
- top: 0;
4088
- left: 0;
4089
- width: 100%;
4090
- height: 100%;
4091
- z-index: 2; }
4092
- .pa-gallery-img .pa-gallery-whole-link span {
4093
- display: none; }
4094
- .pa-gallery-img.style2 .pa-gallery-whole-link, .pa-gallery-img.style3 .pa-gallery-whole-link {
4095
- z-index: 99; }
4096
-
4097
- .pa-gallery-img-container {
4098
- overflow: hidden;
4099
- -webkit-backface-visibility: hidden;
4100
- backface-visibility: hidden;
4101
- -webkit-transform: translate3d(0, 0, 0);
4102
- transform: translate3d(0, 0, 0); }
4103
- .pa-gallery-img-container img {
4104
- display: block;
4105
- width: 100%;
4106
- -webkit-transition: all 0.3s ease-in-out;
4107
- transition: all 0.3s ease-in-out; }
4108
-
4109
- .premium-img-gallery.gray img {
4110
- -webkit-filter: grayscale(100%);
4111
- filter: grayscale(100%); }
4112
-
4113
- .premium-img-gallery.zoomout img,
4114
- .premium-img-gallery.scale img {
4115
- -webkit-transform: scale(1.2);
4116
- -ms-transform: scale(1.2);
4117
- transform: scale(1.2); }
4118
-
4119
- .premium-img-gallery.sepia img {
4120
- -webkit-filter: sepia(30%);
4121
- filter: sepia(30%); }
4122
-
4123
- .premium-img-gallery.bright img {
4124
- -webkit-filter: brightness(1);
4125
- filter: brightness(1); }
4126
-
4127
- .premium-img-gallery.trans img {
4128
- -webkit-transform: translateX(-15px) scale(1.1);
4129
- -ms-transform: translateX(-15px) scale(1.1);
4130
- transform: translateX(-15px) scale(1.1); }
4131
-
4132
- .pa-gallery-img .pa-gallery-magnific-image,
4133
- .pa-gallery-img .pa-gallery-img-link {
4134
- outline: none; }
4135
- .pa-gallery-img .pa-gallery-magnific-image i,
4136
- .pa-gallery-img .pa-gallery-magnific-image svg,
4137
- .pa-gallery-img .pa-gallery-img-link i,
4138
- .pa-gallery-img .pa-gallery-img-link svg {
4139
- -webkit-transition: all 0.3s ease-in-out;
4140
- transition: all 0.3s ease-in-out; }
4141
-
4142
- .pa-gallery-img .pa-gallery-magnific-image span,
4143
- .pa-gallery-img .pa-gallery-img-link span {
4144
- line-height: 1;
4145
- display: inline-block;
4146
- opacity: 0;
4147
- margin: 0 5px;
4148
- padding: 15px;
4149
- -webkit-border-radius: 50%;
4150
- border-radius: 50%; }
4151
-
4152
- .pa-gallery-img.style2 .pa-gallery-magnific-image span,
4153
- .pa-gallery-img.style2 .pa-gallery-img-link span {
4154
- margin: 0 5px 20px; }
4155
-
4156
- .pa-gallery-img:hover .pa-gallery-magnific-image span {
4157
- -webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
4158
- transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s; }
4159
-
4160
- .pa-gallery-img:hover .pa-gallery-img-link span {
4161
- -webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
4162
- transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s; }
4163
-
4164
- .pa-gallery-img:hover .pa-gallery-magnific-image span,
4165
- .pa-gallery-img:hover .pa-gallery-img-link span {
4166
- opacity: 1; }
4167
-
4168
- .premium-gallery-icon-show a.pa-gallery-video-icon span {
4169
- opacity: 1; }
4170
-
4171
- .premium-img-gallery-filter ul.premium-gallery-cats-container,
4172
- .premium-blog-filter ul.premium-blog-filters-container {
4173
- text-align: center;
4174
- margin: 0;
4175
- padding: 0; }
4176
-
4177
- .premium-img-gallery-filter .premium-gallery-cats-container li,
4178
- .premium-blog-filter .premium-blog-filters-container li {
4179
- list-style: none;
4180
- -js-display: inline-flex;
4181
- display: -webkit-inline-box;
4182
- display: -webkit-inline-flex;
4183
- display: -moz-inline-box;
4184
- display: -ms-inline-flexbox;
4185
- display: inline-flex; }
4186
-
4187
- .premium-img-gallery.zoomin .pa-gallery-img:hover img {
4188
- -webkit-transform: scale(1.1);
4189
- -ms-transform: scale(1.1);
4190
- transform: scale(1.1); }
4191
-
4192
- .premium-img-gallery.zoomout .pa-gallery-img:hover img {
4193
- -webkit-transform: scale(1);
4194
- -ms-transform: scale(1);
4195
- transform: scale(1); }
4196
-
4197
- .premium-img-gallery.scale .pa-gallery-img:hover img {
4198
- -webkit-transform: scale(1.3) rotate(5deg);
4199
- -ms-transform: scale(1.3) rotate(5deg);
4200
- transform: scale(1.3) rotate(5deg); }
4201
-
4202
- .premium-img-gallery.gray .pa-gallery-img:hover img {
4203
- -webkit-filter: grayscale(0%);
4204
- filter: grayscale(0%); }
4205
-
4206
- .premium-img-gallery.blur .pa-gallery-img:hover img {
4207
- -webkit-filter: blur(3px);
4208
- filter: blur(3px); }
4209
-
4210
- .premium-img-gallery.sepia .pa-gallery-img:hover img {
4211
- -webkit-filter: sepia(0%);
4212
- filter: sepia(0%); }
4213
-
4214
- .premium-img-gallery.trans .pa-gallery-img:hover img {
4215
- -webkit-transform: translateX(0px) scale(1.1);
4216
- -ms-transform: translateX(0px) scale(1.1);
4217
- transform: translateX(0px) scale(1.1); }
4218
-
4219
- .premium-img-gallery.bright .pa-gallery-img:hover img {
4220
- -webkit-filter: brightness(1.2);
4221
- filter: brightness(1.2); }
4222
-
4223
- .pa-gallery-img .premium-gallery-caption {
4224
- padding: 10px; }
4225
- .pa-gallery-img .premium-gallery-caption .premium-gallery-img-name {
4226
- margin-bottom: 0; }
4227
-
4228
- .pa-gallery-img.style1 {
4229
- overflow: hidden; }
4230
-
4231
- .pa-gallery-img:not(.style2) .pa-gallery-icons-wrapper {
4232
- position: absolute;
4233
- top: 0;
4234
- left: 0;
4235
- width: 100%;
4236
- height: 100%;
4237
- -webkit-transition: all 0.3s ease-in-out;
4238
- transition: all 0.3s ease-in-out; }
4239
-
4240
- .pa-gallery-img:not(.style2) .pa-gallery-icons-inner-container {
4241
- position: absolute;
4242
- top: 33.33%;
4243
- width: 100%;
4244
- text-align: center;
4245
- -webkit-transform: translateY(-50%);
4246
- -ms-transform: translateY(-50%);
4247
- transform: translateY(-50%);
4248
- z-index: 3; }
4249
-
4250
- .pa-gallery-img.style1 .premium-gallery-caption {
4251
- position: absolute;
4252
- top: auto;
4253
- right: 0;
4254
- bottom: -1px;
4255
- left: 0;
4256
- width: 100%;
4257
- -webkit-transition: all 500ms ease 0s;
4258
- transition: all 500ms ease 0s;
4259
- -webkit-transform: translate3d(0, 100%, 0);
4260
- transform: translate3d(0, 100%, 0); }
4261
-
4262
- .pa-gallery-img.style1:hover .premium-gallery-caption {
4263
- -webkit-transform: translate3d(0, 0, 0);
4264
- transform: translate3d(0, 0, 0);
4265
- bottom: -1px !important; }
4266
-
4267
- .pa-gallery-img.default .premium-gallery-caption {
4268
- position: absolute;
4269
- top: auto;
4270
- right: 0;
4271
- left: 0;
4272
- width: 100%;
4273
- bottom: 0; }
4274
-
4275
- .pa-gallery-img.style2 .pa-gallery-icons-caption-container {
4276
- position: absolute;
4277
- top: 0;
4278
- left: 0;
4279
- width: 100%;
4280
- height: 100%;
4281
- opacity: 0;
4282
- -webkit-backface-visibility: hidden;
4283
- backface-visibility: hidden;
4284
- -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
4285
- transition: opacity 0.3s, -webkit-transform 0.3s;
4286
- transition: transform 0.3s, opacity 0.3s;
4287
- transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
4288
- z-index: 1;
4289
- background-color: rgba(108, 191, 226, 0.68);
4290
- -js-display: flex;
4291
- display: -webkit-box;
4292
- display: -webkit-flex;
4293
- display: -moz-box;
4294
- display: -ms-flexbox;
4295
- display: flex;
4296
- text-align: center;
4297
- -webkit-box-align: center;
4298
- -webkit-align-items: center;
4299
- -moz-box-align: center;
4300
- -ms-flex-align: center;
4301
- align-items: center; }
4302
-
4303
- .pa-gallery-img.style2 .pa-gallery-icons-caption-cell {
4304
- width: 100%; }
4305
-
4306
- .pa-gallery-img.style2:hover .pa-gallery-icons-caption-container {
4307
- opacity: 1;
4308
- -webkit-transform: translate(15px, 15px);
4309
- -ms-transform: translate(15px, 15px);
4310
- transform: translate(15px, 15px); }
4311
-
4312
- .premium-clearfix {
4313
- clear: both; }
4314
-
4315
- /**
4316
- * Metro Layout
4317
- */
4318
- .premium-img-gallery-metro .premium-gallery-item {
4319
- overflow: hidden; }
4320
-
4321
- .premium-img-gallery-metro .pa-gallery-img {
4322
- height: 100%; }
4323
-
4324
- .premium-img-gallery-metro .pa-gallery-img-container {
4325
- height: 100%; }
4326
- .premium-img-gallery-metro .pa-gallery-img-container img {
4327
- min-height: 100%;
4328
- width: 100%;
4329
- -o-object-fit: fill;
4330
- object-fit: fill; }
4331
-
4332
- .premium-img-gallery .premium-gallery-item-hidden {
4333
- visibility: hidden;
4334
- width: 0 !important;
4335
- height: 0 !important;
4336
- margin: 0 !important;
4337
- padding: 0 !important; }
4338
-
4339
- .premium-gallery-load-more {
4340
- position: relative; }
4341
- .premium-gallery-load-more .premium-gallery-load-more-btn {
4342
- -webkit-box-shadow: none;
4343
- box-shadow: none;
4344
- text-shadow: none;
4345
- border: none;
4346
- outline: none;
4347
- -webkit-box-align: center;
4348
- -webkit-align-items: center;
4349
- -moz-box-align: center;
4350
- -ms-flex-align: center;
4351
- align-items: center;
4352
- vertical-align: bottom;
4353
- cursor: pointer;
4354
- line-height: 1;
4355
- font-style: normal;
4356
- font-weight: normal;
4357
- background-image: none;
4358
- color: #fff;
4359
- -webkit-transition: all 0.3s ease-in-out;
4360
- transition: all 0.3s ease-in-out; }
4361
-
4362
- .premium-gallery-load-more-btn {
4363
- -js-display: inline-flex;
4364
- display: -webkit-inline-box;
4365
- display: -webkit-inline-flex;
4366
- display: -moz-inline-box;
4367
- display: -ms-inline-flexbox;
4368
- display: inline-flex;
4369
- -webkit-box-align: center;
4370
- -webkit-align-items: center;
4371
- -moz-box-align: center;
4372
- -ms-flex-align: center;
4373
- align-items: center; }
4374
-
4375
- .premium-gallery-load-more-btn div {
4376
- margin-left: 3px; }
4377
-
4378
- .premium-gallery-load-more-btn .premium-loader {
4379
- display: inline-block;
4380
- width: 20px;
4381
- height: 20px; }
4382
-
4383
- .pa-gallery-img .pa-gallery-lightbox-wrap {
4384
- display: inline-block; }
4385
-
4386
- .premium-img-gallery-no-lightbox .premium-gallery-video-item .pa-gallery-img,
4387
- .pa-gallery-img .pa-gallery-video-icon {
4388
- cursor: pointer; }
4389
-
4390
- .pa-gallery-img-container iframe {
4391
- position: absolute;
4392
- visibility: hidden;
4393
- top: 0;
4394
- left: 0;
4395
- max-width: 100%;
4396
- width: 100%;
4397
- height: 100%;
4398
- margin: 0;
4399
- line-height: 1;
4400
- border: none; }
4401
-
4402
- .pa-gallery-img-container video {
4403
- position: absolute;
4404
- visibility: hidden;
4405
- top: 0;
4406
- left: 0;
4407
- max-width: 100%;
4408
- width: 100%;
4409
- height: 100%;
4410
- margin: 0;
4411
- line-height: 1;
4412
- border: none;
4413
- -o-object-fit: contain;
4414
- object-fit: contain; }
4415
-
4416
- .pa-gallery-icons-inner-container svg,
4417
- .pa-gallery-icons-caption-cell svg {
4418
- width: 14px;
4419
- height: 14px; }
4420
-
4421
- .premium-gallery-gradient-layer {
4422
- position: absolute;
4423
- bottom: 40px;
4424
- width: 100%;
4425
- height: 20px;
4426
- background: -webkit-gradient(linear, left bottom, left top, from(#17181f), to(rgba(255, 255, 255, 0)));
4427
- background: -webkit-linear-gradient(bottom, #17181f 0%, rgba(255, 255, 255, 0) 100%);
4428
- background: linear-gradient(to top, #17181f 0%, rgba(255, 255, 255, 0) 100%); }
4429
-
4430
- /********* Premium Lottie Animations *********/
4431
- /*********************************************/
4432
- .elementor-widget-premium-lottie .premium-lottie-animation {
4433
- position: relative;
4434
- -js-display: inline-flex;
4435
- display: -webkit-inline-box;
4436
- display: -webkit-inline-flex;
4437
- display: -moz-inline-box;
4438
- display: -ms-inline-flexbox;
4439
- display: inline-flex;
4440
- -webkit-transition: all 0.3s ease-in-out;
4441
- transition: all 0.3s ease-in-out; }
4442
- .elementor-widget-premium-lottie .premium-lottie-animation a {
4443
- position: absolute;
4444
- left: 0;
4445
- top: 0;
4446
- width: 100%;
4447
- height: 100%;
4448
- z-index: 2; }
4449
-
4450
- /**************** Premium Google Maps ******************/
4451
- /*******************************************************/
4452
- .premium-maps-info-container {
4453
- margin-top: 10px;
4454
- margin-bottom: 10px; }
4455
-
4456
- .premium-maps-info-title,
4457
- .premium-maps-info-desc {
4458
- margin: 0;
4459
- padding: 0; }
4460
-
4461
- .premium-maps-container .gm-style-iw {
4462
- text-align: center; }
4463
-
4464
- .premium-maps-container .gm-style img {
4465
- max-width: none !important; }
4466
-
4467
- /**************** Premium Modal Box ****************/
4468
- /***************************************************/
4469
- .premium-modal-trigger-btn,
4470
- .premium-modal-box-modal-lower-close {
4471
- display: inline-block;
4472
- padding: 6px 12px;
4473
- margin-bottom: 0;
4474
- font-size: 14px;
4475
- font-weight: normal;
4476
- line-height: 1.42857143;
4477
- text-align: center;
4478
- white-space: nowrap;
4479
- vertical-align: middle;
4480
- -ms-touch-action: manipulation;
4481
- touch-action: manipulation;
4482
- cursor: pointer;
4483
- -webkit-user-select: none;
4484
- -moz-user-select: none;
4485
- -ms-user-select: none;
4486
- user-select: none;
4487
- background-image: none;
4488
- border: 1px solid transparent; }
4489
-
4490
- .premium-modal-trigger-btn > svg,
4491
- .premium-modal-trigger-btn .premium-modal-box-icon {
4492
- -webkit-transition: all 0.3s ease-in-out;
4493
- transition: all 0.3s ease-in-out; }
4494
-
4495
- .premium-modal-trigger-btn > svg {
4496
- width: 30px;
4497
- height: 30px; }
4498
-
4499
- .premium-modal-box-modal-close {
4500
- float: right;
4501
- font-size: 21px;
4502
- font-weight: bold;
4503
- line-height: 1;
4504
- color: #000; }
4505
- .premium-modal-box-modal-close:hover, .premium-modal-box-modal-close:focus {
4506
- color: #000;
4507
- text-decoration: none;
4508
- cursor: pointer; }
4509
-
4510
- button.premium-modal-box-modal-close {
4511
- -webkit-appearance: none;
4512
- padding: 0;
4513
- cursor: pointer;
4514
- background: transparent;
4515
- border: 0; }
4516
-
4517
- .premium-modal-box-modal {
4518
- position: fixed;
4519
- top: 0;
4520
- right: 0;
4521
- bottom: 0;
4522
- left: 0;
4523
- z-index: 1050;
4524
- display: none;
4525
- -webkit-overflow-scrolling: touch;
4526
- outline: 0;
4527
- padding: 0 !important;
4528
- background: rgba(0, 0, 0, 0.5);
4529
- -webkit-box-align: center;
4530
- -webkit-align-items: center;
4531
- -moz-box-align: center;
4532
- -ms-flex-align: center;
4533
- align-items: center;
4534
- -webkit-box-pack: center;
4535
- -webkit-justify-content: center;
4536
- -moz-box-pack: center;
4537
- -ms-flex-pack: center;
4538
- justify-content: center; }
4539
- .premium-modal-box-modal .premium-modal-box-modal-dialog {
4540
- position: absolute;
4541
- max-height: -webkit-calc(100vh - 150px);
4542
- max-height: calc(100vh - 150px);
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-orient: vertical;
4550
- -webkit-box-direction: normal;
4551
- -webkit-flex-direction: column;
4552
- -moz-box-orient: vertical;
4553
- -moz-box-direction: normal;
4554
- -ms-flex-direction: column;
4555
- flex-direction: column;
4556
- opacity: 0;
4557
- background-color: #fff;
4558
- border: 1px solid rgba(0, 0, 0, 0.2);
4559
- -webkit-border-radius: 6px;
4560
- border-radius: 6px; }
4561
-
4562
- .premium-modal-box-modal-content {
4563
- background-clip: padding-box;
4564
- outline: 0;
4565
- overflow-x: hidden; }
4566
-
4567
- .premium-modal-backdrop.premium-in {
4568
- filter: alpha(opacity=50);
4569
- opacity: 0.5 !important; }
4570
-
4571
- .premium-in {
4572
- opacity: 1; }
4573
-
4574
- .premium-modal-backdrop {
4575
- position: fixed;
4576
- top: 0;
4577
- right: 0;
4578
- bottom: 0;
4579
- left: 0;
4580
- z-index: 1040;
4581
- background-color: #000; }
4582
-
4583
- .premium-in {
4584
- -js-display: flex !important;
4585
- display: -webkit-box !important;
4586
- display: -webkit-flex !important;
4587
- display: -moz-box !important;
4588
- display: -ms-flexbox !important;
4589
- display: flex !important; }
4590
-
4591
- .premium-modal-box-modal-header {
4592
- -js-display: flex;
4593
- display: -webkit-box;
4594
- display: -webkit-flex;
4595
- display: -moz-box;
4596
- display: -ms-flexbox;
4597
- display: flex;
4598
- -webkit-box-pack: justify;
4599
- -webkit-justify-content: space-between;
4600
- -moz-box-pack: justify;
4601
- -ms-flex-pack: justify;
4602
- justify-content: space-between;
4603
- -webkit-box-align: center;
4604
- -webkit-align-items: center;
4605
- -moz-box-align: center;
4606
- -ms-flex-align: center;
4607
- align-items: center;
4608
- padding: 5px 15px;
4609
- border-bottom: 1px solid #e5e5e5; }
4610
- .premium-modal-box-modal-header .premium-modal-box-modal-close {
4611
- margin-top: -2px; }
4612
- .premium-modal-box-modal-header .premium-modal-box-modal-title {
4613
- -js-display: flex;
4614
- display: -webkit-box;
4615
- display: -webkit-flex;
4616
- display: -moz-box;
4617
- display: -ms-flexbox;
4618
- display: flex;
4619
- -webkit-box-align: center;
4620
- -webkit-align-items: center;
4621
- -moz-box-align: center;
4622
- -ms-flex-align: center;
4623
- align-items: center;
4624
- margin: 0;
4625
- padding: 0; }
4626
- .premium-modal-box-modal-header .premium-modal-box-modal-title svg {
4627
- width: 50px;
4628
- height: 60px; }
4629
-
4630
- .premium-modal-box-modal-body {
4631
- position: relative;
4632
- padding: 15px; }
4633
-
4634
- .premium-modal-box-modal-footer {
4635
- padding: 15px;
4636
- text-align: right;
4637
- border-top: 1px solid #e5e5e5; }
4638
-
4639
- .premium-modal-scrollbar-measure {
4640
- position: absolute;
4641
- top: -9999px;
4642
- width: 50px;
4643
- height: 50px;
4644
- overflow: scroll; }
4645
-
4646
- .premium-modal-trigger-text {
4647
- background: none !important;
4648
- display: inline-block; }
4649
-
4650
- .premium-modal-box-container {
4651
- width: 100% !important; }
4652
-
4653
- /*Open Modal Button Style*/
4654
- .premium-modal-trigger-container .premium-modal-trigger-btn {
4655
- -js-display: inline-flex;
4656
- display: -webkit-inline-box;
4657
- display: -webkit-inline-flex;
4658
- display: -moz-inline-box;
4659
- display: -ms-inline-flexbox;
4660
- display: inline-flex;
4661
- -webkit-box-align: center;
4662
- -webkit-align-items: center;
4663
- -moz-box-align: center;
4664
- -ms-flex-align: center;
4665
- align-items: center;
4666
- border: none;
4667
- -webkit-transition: all 0.3s ease-in-out;
4668
- transition: all 0.3s ease-in-out; }
4669
- .premium-modal-trigger-container .premium-modal-trigger-btn.premium-btn-block {
4670
- -webkit-box-pack: center;
4671
- -webkit-justify-content: center;
4672
- -moz-box-pack: center;
4673
- -ms-flex-pack: center;
4674
- justify-content: center; }
4675
-
4676
- .premium-modal-trigger-container .premium-modal-trigger-img,
4677
- .premium-modal-trigger-container .premium-modal-trigger-text,
4678
- .premium-modal-trigger-container .premium-modal-trigger-animation {
4679
- cursor: pointer; }
4680
-
4681
- .premium-modal-trigger-container .premium-modal-trigger-animation {
4682
- display: inline-block;
4683
- width: 200px;
4684
- height: 200px;
4685
- -webkit-transition: all 0.3s ease-in-out;
4686
- transition: all 0.3s ease-in-out; }
4687
-
4688
- /*Image on Modal Header Style*/
4689
- .premium-modal-box-modal-header img {
4690
- width: 48px;
4691
- padding-right: 5px; }
4692
-
4693
- .premium-modal-box-modal-header i,
4694
- .premium-modal-box-modal-header svg {
4695
- padding-right: 6px; }
4696
-
4697
- .premium-modal-box-modal-close {
4698
- position: relative;
4699
- z-index: 99; }
4700
-
4701
- .premium-modal-trigger-img,
4702
- .premium-modal-trigger-text,
4703
- .premium-modal-box-close-button-container,
4704
- .premium-modal-box-modal-close,
4705
- .premium-modal-box-modal-lower-close {
4706
- -webkit-transition: all 0.3s ease-in-out;
4707
- transition: all 0.3s ease-in-out; }
4708
-
4709
- @media (min-width: 768px) {
4710
- .premium-modal-box-modal-dialog {
4711
- width: 700px;
4712
- max-height: 600px;
4713
- overflow: auto; } }
4714
-
4715
- @media (max-width: 767px) {
4716
- .premium-modal-box-modal-dialog {
4717
- width: 100%;
4718
- max-height: 500px;
4719
- overflow: auto; } }
4720
-
4721
- .premium-modal-box-container[data-modal-animation*="animated-"] {
4722
- opacity: 0; }
4723
-
4724
- /************ Premium Nav Menu ************/
4725
- .premium-nav-widget-container ul {
4726
- list-style: none;
4727
- margin: 0;
4728
- padding: 0; }
4729
-
4730
- .premium-nav-widget-container .premium-main-nav-menu {
4731
- -js-display: flex;
4732
- display: -webkit-box;
4733
- display: -webkit-flex;
4734
- display: -moz-box;
4735
- display: -ms-flexbox;
4736
- display: flex;
4737
- height: 100%; }
4738
-
4739
- /*Vertical Main Menu**/
4740
- .premium-nav-ver .premium-ver-inner-container {
4741
- width: 45%;
4742
- position: relative; }
4743
-
4744
- .premium-nav-ver .premium-nav-menu-container,
4745
- .premium-nav-ver .premium-ver-toggler {
4746
- width: 100%; }
4747
-
4748
- .premium-nav-ver .premium-nav-menu-container {
4749
- background-color: #fff;
4750
- -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
4751
- box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); }
4752
-
4753
- .premium-nav-ver .premium-main-nav-menu {
4754
- position: relative;
4755
- -webkit-box-orient: vertical;
4756
- -webkit-box-direction: normal;
4757
- -webkit-flex-direction: column;
4758
- -moz-box-orient: vertical;
4759
- -moz-box-direction: normal;
4760
- -ms-flex-direction: column;
4761
- flex-direction: column;
4762
- -webkit-box-align: start;
4763
- -webkit-align-items: flex-start;
4764
- -moz-box-align: start;
4765
- -ms-flex-align: start;
4766
- align-items: flex-start; }
4767
-
4768
- .premium-nav-ver:not(.premium-hamburger-menu) .premium-nav-menu-item.menu-item-has-children .premium-sub-menu {
4769
- visibility: hidden;
4770
- opacity: 0;
4771
- position: absolute;
4772
- min-width: 250px; }
4773
-
4774
- .premium-nav-ver:not(.premium-hamburger-menu) .premium-nav-menu-item.menu-item-has-children:hover > .premium-sub-menu,
4775
- .premium-nav-ver:not(.premium-hamburger-menu) .premium-nav-menu-item.menu-item-has-children:hover .premium-mega-content-container {
4776
- opacity: 1;
4777
- visibility: visible; }
4778
-
4779
- .premium-nav-ver .premium-nav-menu-item {
4780
- width: 100%; }
4781
-
4782
- .premium-nav-ver:not(.premium-hamburger-menu).premium-vertical-right .premium-mega-content-container,
4783
- .premium-nav-ver:not(.premium-hamburger-menu).premium-vertical-right .premium-nav-menu-item.menu-item-has-children .premium-sub-menu {
4784
- left: 100%;
4785
- top: 0; }
4786
-
4787
- .premium-nav-ver:not(.premium-hamburger-menu).premium-vertical-left .premium-mega-content-container,
4788
- .premium-nav-ver:not(.premium-hamburger-menu).premium-vertical-left .premium-nav-menu-item.menu-item-has-children .premium-sub-menu {
4789
- right: 100%;
4790
- top: 0; }
4791
-
4792
- .premium-nav-ver:not(.premium-hamburger-menu).premium-vertical-left .premium-menu-link {
4793
- -webkit-box-orient: horizontal;
4794
- -webkit-box-direction: reverse;
4795
- -webkit-flex-direction: row-reverse;
4796
- -moz-box-orient: horizontal;
4797
- -moz-box-direction: reverse;
4798
- -ms-flex-direction: row-reverse;
4799
- flex-direction: row-reverse; }
4800
-
4801
- /*Horizontal Main Menu**/
4802
- .premium-nav-hor .premium-nav-menu-container {
4803
- height: 60px; }
4804
-
4805
- .premium-nav-hor:not(.premium-hamburger-menu) .premium-nav-menu-item .premium-sub-menu {
4806
- visibility: hidden;
4807
- opacity: 0;
4808
- position: absolute;
4809
- min-width: 220px; }
4810
-
4811
- .premium-nav-hor:not(.premium-hamburger-menu) .premium-nav-menu-item > .premium-sub-menu,
4812
- .premium-nav-hor:not(.premium-hamburger-menu) .premium-nav-menu-item .premium-mega-content-container {
4813
- top: 100%; }
4814
- .premium-nav-hor:not(.premium-hamburger-menu) .premium-nav-menu-item > .premium-sub-menu .premium-sub-menu,
4815
- .premium-nav-hor:not(.premium-hamburger-menu) .premium-nav-menu-item .premium-mega-content-container .premium-sub-menu {
4816
- left: 100%;
4817
- top: 0; }
4818
-
4819
- .premium-nav-hor:not(.premium-hamburger-menu) .premium-nav-menu-item:hover > .premium-sub-menu,
4820
- .premium-nav-hor:not(.premium-hamburger-menu) .premium-nav-menu-item:hover .premium-mega-content-container {
4821
- visibility: visible;
4822
- opacity: 1;
4823
- pointer-events: auto; }
4824
-
4825
- .premium-nav-hor:not(.premium-hamburger-menu) .premium-nav-menu-item.premium-mega-item-static .premium-mega-content-container {
4826
- left: 50%;
4827
- -webkit-transform: translateX(-50%);
4828
- -ms-transform: translateX(-50%);
4829
- transform: translateX(-50%); }
4830
-
4831
- .premium-nav-hor:not(.premium-hamburger-menu) .premium-nav-menu-item:not(.premium-mega-item-static) .premium-mega-content-container {
4832
- left: 0; }
4833
-
4834
- /**Mega Menu Container*/
4835
- .premium-mega-nav-item .premium-sub-menu {
4836
- display: none; }
4837
-
4838
- .premium-mega-nav-item {
4839
- position: relative; }
4840
- .premium-mega-nav-item:hover .premium-mega-content-container {
4841
- visibility: visible;
4842
- opacity: 1;
4843
- pointer-events: auto; }
4844
-
4845
- .premium-mega-content-container {
4846
- visibility: hidden;
4847
- position: absolute;
4848
- z-index: 9999;
4849
- opacity: 0;
4850
- pointer-events: none; }
4851
-
4852
- .premium-hamburger-menu .premium-mega-content-container,
4853
- .premium-nav-slide .premium-mega-content-container,
4854
- .premium-nav-dropdown .premium-mega-content-container {
4855
- visibility: visible;
4856
- position: relative;
4857
- opacity: 1;
4858
- pointer-events: auto; }
4859
-
4860
- /**Hamburger Menu*/
4861
- .premium-nav-widget-container a.premium-hamburger-toggle,
4862
- .premium-mobile-menu-outer-container a.premium-mobile-menu-close {
4863
- text-decoration: none; }
4864
-
4865
- .premium-nav-widget-container .premium-hamburger-toggle {
4866
- display: none;
4867
- -webkit-box-pack: center;
4868
- -webkit-justify-content: center;
4869
- -moz-box-pack: center;
4870
- -ms-flex-pack: center;
4871
- justify-content: center;
4872
- -webkit-box-align: center;
4873
- -webkit-align-items: center;
4874
- -moz-box-align: center;
4875
- -ms-flex-align: center;
4876
- align-items: center; }
4877
- .premium-nav-widget-container .premium-hamburger-toggle i {
4878
- padding: 0.25em;
4879
- font-size: 22px; }
4880
- .premium-nav-widget-container .premium-hamburger-toggle svg {
4881
- width: 22px;
4882
- height: 22px; }
4883
- .premium-nav-widget-container .premium-hamburger-toggle i,
4884
- .premium-nav-widget-container .premium-hamburger-toggle .premium-toggle-text,
4885
- .premium-nav-widget-container .premium-hamburger-toggle .premium-toggle-close {
4886
- color: #494c4f; }
4887
- .premium-nav-widget-container .premium-hamburger-toggle svg,
4888
- .premium-nav-widget-container .premium-hamburger-toggle svg path {
4889
- fill: #494c4f; }
4890
- .premium-nav-widget-container .premium-hamburger-toggle .premium-toggle-text,
4891
- .premium-nav-widget-container .premium-hamburger-toggle .premium-toggle-close {
4892
- margin: 2px; }
4893
- .premium-nav-widget-container .premium-hamburger-toggle .premium-toggle-close {
4894
- display: none; }
4895
-
4896
- .premium-mobile-menu-container {
4897
- width: 100%; }
4898
- .premium-mobile-menu-container .premium-main-mobile-menu {
4899
- width: 100%; }
4900
- .premium-mobile-menu-container ul {
4901
- list-style: none;
4902
- margin: 0;
4903
- padding: 0; }
4904
- .premium-mobile-menu-container .premium-mobile-menu,
4905
- .premium-mobile-menu-container .premium-sub-menu {
4906
- display: none;
4907
- -webkit-box-orient: vertical;
4908
- -webkit-box-direction: normal;
4909
- -webkit-flex-direction: column;
4910
- -moz-box-orient: vertical;
4911
- -moz-box-direction: normal;
4912
- -ms-flex-direction: column;
4913
- flex-direction: column; }
4914
- .premium-mobile-menu-container .premium-nav-menu-item {
4915
- -webkit-box-orient: vertical;
4916
- -webkit-box-direction: normal;
4917
- -webkit-flex-direction: column;
4918
- -moz-box-orient: vertical;
4919
- -moz-box-direction: normal;
4920
- -ms-flex-direction: column;
4921
- flex-direction: column; }
4922
- .premium-mobile-menu-container .premium-item-badge {
4923
- top: 50%;
4924
- right: 0;
4925
- left: unset;
4926
- -webkit-transform: translateY(-50%);
4927
- -ms-transform: translateY(-50%);
4928
- transform: translateY(-50%); }
4929
-
4930
- .premium-nav-hor .premium-mobile-menu-container .premium-item-badge {
4931
- top: 0;
4932
- -webkit-transform: translateY(0);
4933
- -ms-transform: translateY(0);
4934
- transform: translateY(0); }
4935
-
4936
- /**Vertical Hamburger Menu*/
4937
- .premium-mobile-menu-outer-container {
4938
- opacity: 0; }
4939
- .premium-mobile-menu-outer-container.premium-vertical-toggle-open {
4940
- opacity: 1; }
4941
-
4942
- .premium-ver-hamburger-menu .premium-mobile-menu-outer-container {
4943
- background-color: #f7f7f7;
4944
- width: 300px;
4945
- -webkit-transform: translateX(-300px);
4946
- -ms-transform: translateX(-300px);
4947
- transform: translateX(-300px);
4948
- height: 100%;
4949
- position: fixed;
4950
- top: 0;
4951
- left: 0;
4952
- overflow-x: hidden;
4953
- z-index: 10002;
4954
- -webkit-transition: 0.5s;
4955
- transition: 0.5s;
4956
- padding-top: 50px; }
4957
- .premium-ver-hamburger-menu .premium-mobile-menu-outer-container .premium-mobile-menu {
4958
- -js-display: flex;
4959
- display: -webkit-box;
4960
- display: -webkit-flex;
4961
- display: -moz-box;
4962
- display: -ms-flexbox;
4963
- display: flex; }
4964
- .premium-ver-hamburger-menu .premium-mobile-menu-outer-container .premium-mobile-menu-container {
4965
- margin-top: 50px; }
4966
- .premium-ver-hamburger-menu .premium-mobile-menu-outer-container .premium-mobile-menu-container .premium-item-badge {
4967
- -webkit-transform: translateY(0);
4968
- -ms-transform: translateY(0);
4969
- transform: translateY(0); }
4970
- .premium-ver-hamburger-menu .premium-mobile-menu-outer-container .premium-mobile-menu-close {
4971
- position: absolute;
4972
- top: 2%;
4973
- right: 5px;
4974
- padding: 0 9px;
4975
- z-index: 10000;
4976
- -js-display: inline-flex;
4977
- display: -webkit-inline-box;
4978
- display: -webkit-inline-flex;
4979
- display: -moz-inline-box;
4980
- display: -ms-inline-flexbox;
4981
- display: inline-flex;
4982
- color: #494c4f;
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
- -webkit-box-align: center;
4989
- -webkit-align-items: center;
4990
- -moz-box-align: center;
4991
- -ms-flex-align: center;
4992
- align-items: center; }
4993
- .premium-ver-hamburger-menu .premium-mobile-menu-outer-container .premium-mobile-menu-close .premium-toggle-close {
4994
- margin: 5px; }
4995
- .premium-ver-hamburger-menu .premium-mobile-menu-outer-container .premium-mobile-menu-close svg {
4996
- width: 22px;
4997
- height: 22px;
4998
- fill: #494c4f; }
4999
- .premium-ver-hamburger-menu .premium-mobile-menu-outer-container .premium-mobile-menu-close svg path {
5000
- fill: #494c4f; }
5001
- .premium-ver-hamburger-menu .premium-mobile-menu-outer-container .premium-mobile-menu-close i {
5002
- font-size: 22px; }
5003
-
5004
- .premium-ver-hamburger-menu .premium-vertical-toggle-open {
5005
- -webkit-transform: translateX(0) !important;
5006
- -ms-transform: translateX(0) !important;
5007
- transform: translateX(0) !important;
5008
- -webkit-transition: 0.5s;
5009
- transition: 0.5s; }
5010
-
5011
- /** Vertical Toggler*/
5012
- .premium-ver-toggle-yes .premium-nav-menu-container {
5013
- height: auto; }
5014
-
5015
- .premium-ver-toggle-yes .premium-ver-toggler {
5016
- -js-display: flex;
5017
- display: -webkit-box;
5018
- display: -webkit-flex;
5019
- display: -moz-box;
5020
- display: -ms-flexbox;
5021
- display: flex;
5022
- -webkit-box-align: center;
5023
- -webkit-align-items: center;
5024
- -moz-box-align: center;
5025
- -ms-flex-align: center;
5026
- align-items: center;
5027
- -webkit-box-pack: justify;
5028
- -webkit-justify-content: space-between;
5029
- -moz-box-pack: justify;
5030
- -ms-flex-pack: justify;
5031
- justify-content: space-between;
5032
- padding: 15px 20px 15px 20px;
5033
- background: #eeeeee;
5034
- color: #042551;
5035
- cursor: pointer; }
5036
- .premium-ver-toggle-yes .premium-ver-toggler .premium-ver-toggler-title,
5037
- .premium-ver-toggle-yes .premium-ver-toggler .premium-ver-toggler-btn {
5038
- -js-display: flex;
5039
- display: -webkit-box;
5040
- display: -webkit-flex;
5041
- display: -moz-box;
5042
- display: -ms-flexbox;
5043
- display: flex;
5044
- -webkit-box-pack: center;
5045
- -webkit-justify-content: center;
5046
- -moz-box-pack: center;
5047
- -ms-flex-pack: center;
5048
- justify-content: center;
5049
- -webkit-box-align: center;
5050
- -webkit-align-items: center;
5051
- -moz-box-align: center;
5052
- -ms-flex-align: center;
5053
- align-items: center; }
5054
- .premium-ver-toggle-yes .premium-ver-toggler .premium-ver-toggler-txt {
5055
- text-indent: 5px; }
5056
- .premium-ver-toggle-yes .premium-ver-toggler:hover {
5057
- background: #54595f;
5058
- color: #fff; }
5059
- .premium-ver-toggle-yes .premium-ver-toggler:hover .premium-ver-close svg,
5060
- .premium-ver-toggle-yes .premium-ver-toggler:hover .premium-ver-close svg path,
5061
- .premium-ver-toggle-yes .premium-ver-toggler:hover .premium-ver-open svg,
5062
- .premium-ver-toggle-yes .premium-ver-toggler:hover .premium-ver-open svg path,
5063
- .premium-ver-toggle-yes .premium-ver-toggler:hover .premium-ver-title-icon svg,
5064
- .premium-ver-toggle-yes .premium-ver-toggler:hover .premium-ver-title-icon svg path {
5065
- fill: #fff; }
5066
-
5067
- .premium-ver-toggle-yes .premium-ver-close,
5068
- .premium-ver-toggle-yes .premium-ver-open,
5069
- .premium-ver-toggle-yes .premium-nav-menu-container,
5070
- .premium-ver-toggle-yes .premium-ver-toggler {
5071
- -webkit-transition: all 0.3s linear 0s;
5072
- transition: all 0.3s linear 0s; }
5073
- .premium-ver-toggle-yes .premium-ver-close i,
5074
- .premium-ver-toggle-yes .premium-ver-close svg,
5075
- .premium-ver-toggle-yes .premium-ver-open i,
5076
- .premium-ver-toggle-yes .premium-ver-open svg,
5077
- .premium-ver-toggle-yes .premium-nav-menu-container i,
5078
- .premium-ver-toggle-yes .premium-nav-menu-container svg,
5079
- .premium-ver-toggle-yes .premium-ver-toggler i,
5080
- .premium-ver-toggle-yes .premium-ver-toggler svg {
5081
- -webkit-transition: color 0.3s linear 0s;
5082
- transition: color 0.3s linear 0s; }
5083
-
5084
- .premium-ver-toggle-yes .premium-ver-toggler-txt {
5085
- -webkit-transition: all 0.3s linear 0s;
5086
- transition: all 0.3s linear 0s; }
5087
-
5088
- .premium-ver-toggle-yes .premium-ver-close,
5089
- .premium-ver-toggle-yes .premium-ver-open,
5090
- .premium-ver-toggle-yes .premium-ver-title-icon {
5091
- -webkit-box-pack: center;
5092
- -webkit-justify-content: center;
5093
- -moz-box-pack: center;
5094
- -ms-flex-pack: center;
5095
- justify-content: center;
5096
- -webkit-box-align: center;
5097
- -webkit-align-items: center;
5098
- -moz-box-align: center;
5099
- -ms-flex-align: center;
5100
- align-items: center; }
5101
- .premium-ver-toggle-yes .premium-ver-close i,
5102
- .premium-ver-toggle-yes .premium-ver-open i,
5103
- .premium-ver-toggle-yes .premium-ver-title-icon i {
5104
- font-size: 16px; }
5105
- .premium-ver-toggle-yes .premium-ver-close svg,
5106
- .premium-ver-toggle-yes .premium-ver-open svg,
5107
- .premium-ver-toggle-yes .premium-ver-title-icon svg {
5108
- width: 17px;
5109
- height: 17px;
5110
- fill: #042551; }
5111
- .premium-ver-toggle-yes .premium-ver-close svg path,
5112
- .premium-ver-toggle-yes .premium-ver-open svg path,
5113
- .premium-ver-toggle-yes .premium-ver-title-icon svg path {
5114
- fill: #042551; }
5115
-
5116
- .premium-ver-toggle-yes.premium-ver-always .premium-ver-open {
5117
- -js-display: inline-flex;
5118
- display: -webkit-inline-box;
5119
- display: -webkit-inline-flex;
5120
- display: -moz-inline-box;
5121
- display: -ms-inline-flexbox;
5122
- display: inline-flex; }
5123
-
5124
- .premium-ver-toggle-yes .premium-ver-collapsed .premium-nav-menu-container {
5125
- visibility: hidden;
5126
- opacity: 0; }
5127
-
5128
- .premium-ver-toggle-yes .premium-ver-collapsed .premium-ver-close {
5129
- display: none; }
5130
-
5131
- .premium-ver-toggle-yes .premium-ver-collapsed .premium-ver-open {
5132
- -js-display: inline-flex;
5133
- display: -webkit-inline-box;
5134
- display: -webkit-inline-flex;
5135
- display: -moz-inline-box;
5136
- display: -ms-inline-flexbox;
5137
- display: inline-flex; }
5138
-
5139
- .premium-ver-toggle-yes.premium-ver-hover .premium-nav-menu-container {
5140
- position: absolute;
5141
- z-index: 10002; }
5142
-
5143
- .premium-ver-toggle-yes.premium-ver-click .premium-nav-menu-container {
5144
- position: absolute;
5145
- z-index: 10001; }
5146
-
5147
- .premium-ver-toggle-yes .premium-nav-menu-container,
5148
- .premium-ver-toggle-yes.premium-ver-hover .premium-ver-inner-container:hover .premium-nav-menu-container {
5149
- visibility: visible;
5150
- opacity: 1; }
5151
-
5152
- .premium-ver-toggle-yes .premium-ver-open,
5153
- .premium-ver-toggle-yes.premium-ver-hover .premium-ver-inner-container:hover .premium-ver-open {
5154
- display: none; }
5155
-
5156
- .premium-ver-toggle-yes .premium-ver-close,
5157
- .premium-ver-toggle-yes .premium-ver-title-icon,
5158
- .premium-ver-toggle-yes.premium-ver-hover .premium-ver-inner-container:hover .premium-ver-close,
5159
- .premium-ver-toggle-yes.premium-ver-hover .premium-ver-inner-container:hover .premium-ver-title-icon {
5160
- -js-display: inline-flex;
5161
- display: -webkit-inline-box;
5162
- display: -webkit-inline-flex;
5163
- display: -moz-inline-box;
5164
- display: -ms-inline-flexbox;
5165
- display: inline-flex; }
5166
-
5167
- /** Sticky Menu */
5168
- .premium-sticky-parent {
5169
- position: fixed;
5170
- z-index: 10003;
5171
- -webkit-transition: all 0.3s linear;
5172
- transition: all 0.3s linear; }
5173
-
5174
- .premium-sticky-scroll-yes.premium-sticky-parent.headroom--not-top {
5175
- will-change: transform;
5176
- -webkit-transition: -webkit-transform 500ms linear !important;
5177
- transition: -webkit-transform 500ms linear !important;
5178
- transition: transform 500ms linear !important;
5179
- transition: transform 500ms linear, -webkit-transform 500ms linear !important;
5180
- -webkit-transition-delay: 1s;
5181
- transition-delay: 1s; }
5182
-
5183
- .premium-sticky-scroll-yes.premium-sticky-parent.headroom--not-top.slideDown {
5184
- -webkit-transform: translateY(0%);
5185
- -ms-transform: translateY(0%);
5186
- transform: translateY(0%); }
5187
-
5188
- .premium-sticky-scroll-yes.premium-sticky-parent.headroom--not-top.slideUp {
5189
- -webkit-transform: translateY(-100%);
5190
- -ms-transform: translateY(-100%);
5191
- transform: translateY(-100%); }
5192
-
5193
- .premium-nav-sticky-yes.premium-sticky-active.premium-ham-dropdown .premium-mobile-menu-container,
5194
- .premium-ham-dropdown .premium-stretch-dropdown .premium-mobile-menu-container {
5195
- max-height: 400px;
5196
- overflow-y: auto; }
5197
-
5198
- /**Common*/
5199
- .premium-nav-slide-overlay {
5200
- display: none;
5201
- position: fixed;
5202
- top: 0;
5203
- left: 0;
5204
- right: 0;
5205
- bottom: 0;
5206
- -webkit-backface-visibility: hidden;
5207
- backface-visibility: hidden;
5208
- background: rgba(0, 0, 0, 0.6);
5209
- z-index: 10002; }
5210
- .premium-nav-slide-overlay.premium-vertical-toggle-open {
5211
- display: block; }
5212
-
5213
- .premium-active-menu,
5214
- .premium-active-menu:not(.premium-mega-nav-item) > .premium-sub-menu,
5215
- .premium-active-menu.premium-mega-nav-item > .premium-mega-content-container {
5216
- -js-display: flex !important;
5217
- display: -webkit-box !important;
5218
- display: -webkit-flex !important;
5219
- display: -moz-box !important;
5220
- display: -ms-flexbox !important;
5221
- display: flex !important;
5222
- -webkit-box-orient: vertical;
5223
- -webkit-box-direction: normal;
5224
- -webkit-flex-direction: column;
5225
- -moz-box-orient: vertical;
5226
- -moz-box-direction: normal;
5227
- -ms-flex-direction: column;
5228
- flex-direction: column; }
5229
-
5230
- .premium-active-menu .premium-toggle-close {
5231
- display: block; }
5232
-
5233
- .premium-nav-menu-container .premium-sub-menu {
5234
- background-color: #fff; }
5235
-
5236
- .premium-mobile-menu-container li,
5237
- .premium-mobile-menu-container li > .premium-mega-content-container {
5238
- width: 100% !important; }
5239
-
5240
- .premium-item-icon,
5241
- .premium-sub-item-icon {
5242
- font-size: 13px;
5243
- margin: 0 7px; }
5244
- .premium-item-icon svg,
5245
- .premium-sub-item-icon svg {
5246
- width: 100%;
5247
- height: 100%; }
5248
- .premium-item-icon.premium-lottie-animation,
5249
- .premium-sub-item-icon.premium-lottie-animation {
5250
- width: 20px;
5251
- height: 20px;
5252
- -js-display: flex;
5253
- display: -webkit-box;
5254
- display: -webkit-flex;
5255
- display: -moz-box;
5256
- display: -ms-flexbox;
5257
- display: flex;
5258
- -webkit-box-pack: center;
5259
- -webkit-justify-content: center;
5260
- -moz-box-pack: center;
5261
- -ms-flex-pack: center;
5262
- justify-content: center; }
5263
- .premium-item-icon.dashicons,
5264
- .premium-sub-item-icon.dashicons {
5265
- width: 13px;
5266
- height: 13px; }
5267
-
5268
- .premium-nav-menu-item {
5269
- position: relative; }
5270
- .premium-nav-menu-item .premium-menu-link {
5271
- -js-display: flex;
5272
- display: -webkit-box;
5273
- display: -webkit-flex;
5274
- display: -moz-box;
5275
- display: -ms-flexbox;
5276
- display: flex;
5277
- -webkit-box-align: center;
5278
- -webkit-align-items: center;
5279
- -moz-box-align: center;
5280
- -ms-flex-align: center;
5281
- align-items: center;
5282
- height: 100%;
5283
- padding: 7px 10px;
5284
- text-decoration: none;
5285
- position: relative; }
5286
- .premium-nav-menu-item .premium-dropdown-icon {
5287
- margin: 5px; }
5288
- .premium-nav-menu-item.menu-item-has-children {
5289
- position: relative; }
5290
- .premium-nav-menu-item.menu-item-has-children .premium-sub-menu {
5291
- z-index: 9999; }
5292
- .premium-nav-menu-item.menu-item-has-children .premium-sub-menu .premium-sub-menu-link {
5293
- -webkit-box-pack: start;
5294
- -webkit-justify-content: flex-start;
5295
- -moz-box-pack: start;
5296
- -ms-flex-pack: start;
5297
- justify-content: flex-start; }
5298
- .premium-nav-menu-item .menu-link {
5299
- position: relative;
5300
- text-decoration: none; }
5301
-
5302
- .premium-item-badge,
5303
- .premium-sub-item-badge {
5304
- position: absolute;
5305
- padding: 1px 6px;
5306
- min-width: 35px;
5307
- text-align: center;
5308
- font-size: 10px;
5309
- -webkit-border-radius: 4px;
5310
- border-radius: 4px;
5311
- line-height: 1.8;
5312
- white-space: nowrap; }
5313
-
5314
- .premium-nav-hor:not(.premium-hamburger-menu) .premium-item-badge, .premium-nav-hor:not(.premium-nav-slide) .premium-item-badge, .premium-nav-hor:not(.premium-nav-dropdown) .premium-item-badge {
5315
- position: relative;
5316
- margin: 8px; }
5317
-
5318
- .premium-nav-hor .premium-sub-item-badge,
5319
- .premium-nav-slide .premium-sub-item-badge,
5320
- .premium-nav-dropdown .premium-sub-item-badge,
5321
- .premium-nav-ver.premium-vertical-right .premium-item-badge,
5322
- .premium-nav-ver.premium-vertical-right .premium-sub-item-badge {
5323
- top: 50%;
5324
- right: 0;
5325
- -webkit-transform: translateY(-50%);
5326
- -ms-transform: translateY(-50%);
5327
- transform: translateY(-50%); }
5328
-
5329
- .premium-nav-ver.premium-vertical-left .premium-item-badge,
5330
- .premium-nav-ver.premium-vertical-left .premium-sub-item-badge {
5331
- top: 50%;
5332
- left: 0;
5333
- -webkit-transform: translateY(-50%);
5334
- -ms-transform: translateY(-50%);
5335
- transform: translateY(-50%); }
5336
-
5337
- .premium-mega-nav-item .premium-sub-menu {
5338
- display: none; }
5339
-
5340
- .premium-mega-nav-item {
5341
- position: relative; }
5342
-
5343
- .premium-hamburger-menu .premium-mega-content-container,
5344
- .premium-nav-dropdown .premium-mega-content-container,
5345
- .premium-nav-slide .premium-mega-content-container {
5346
- display: none; }
5347
-
5348
- .premium-mega-item-static {
5349
- position: static !important; }
5350
-
5351
- .premium-hamburger-menu .premium-nav-menu-container,
5352
- .premium-nav-dropdown .premium-nav-menu-container,
5353
- .premium-nav-slide .premium-nav-menu-container {
5354
- display: none; }
5355
-
5356
- .premium-hamburger-menu .premium-hamburger-toggle,
5357
- .premium-nav-dropdown .premium-hamburger-toggle,
5358
- .premium-nav-slide .premium-hamburger-toggle {
5359
- -js-display: inline-flex;
5360
- display: -webkit-inline-box;
5361
- display: -webkit-inline-flex;
5362
- display: -moz-inline-box;
5363
- display: -ms-inline-flexbox;
5364
- display: inline-flex; }
5365
-
5366
- .premium-hidden-icon-yes.premium-hamburger-menu .premium-item-icon,
5367
- .premium-hidden-icon-yes.premium-hamburger-menu .premium-sub-item-icon,
5368
- .premium-hidden-icon-yes.premium-nav-dropdown .premium-item-icon,
5369
- .premium-hidden-icon-yes.premium-nav-dropdown .premium-sub-item-icon,
5370
- .premium-hidden-icon-yes.premium-nav-slide .premium-item-icon,
5371
- .premium-hidden-icon-yes.premium-nav-slide .premium-sub-item-icon {
5372
- display: none; }
5373
-
5374
- .premium-hidden-badge-yes.premium-hamburger-menu .premium-item-badge,
5375
- .premium-hidden-badge-yes.premium-hamburger-menu .premium-sub-item-badge,
5376
- .premium-hidden-badge-yes.premium-nav-dropdown .premium-item-badge,
5377
- .premium-hidden-badge-yes.premium-nav-dropdown .premium-sub-item-badge,
5378
- .premium-hidden-badge-yes.premium-nav-slide .premium-item-badge,
5379
- .premium-hidden-badge-yes.premium-nav-slide .premium-sub-item-badge {
5380
- display: none; }
5381
-
5382
- .premium-ham-dropdown .premium-mobile-menu-container,
5383
- .premium-nav-dropdown .premium-mobile-menu-container {
5384
- -js-display: flex;
5385
- display: -webkit-box;
5386
- display: -webkit-flex;
5387
- display: -moz-box;
5388
- display: -ms-flexbox;
5389
- display: flex; }
5390
-
5391
- .premium-ham-dropdown .premium-toggle-opened .premium-toggle-close,
5392
- .premium-nav-dropdown .premium-toggle-opened .premium-toggle-close {
5393
- display: inline !important; }
5394
-
5395
- .premium-ham-dropdown .premium-toggle-opened .premium-toggle-text,
5396
- .premium-nav-dropdown .premium-toggle-opened .premium-toggle-text {
5397
- display: none !important; }
5398
-
5399
- .premium-stretch-dropdown .premium-mobile-menu-container {
5400
- position: absolute;
5401
- z-index: 9999; }
5402
-
5403
- .premium-nav-default {
5404
- display: none; }
5405
-
5406
- .premium-hamburger-toggle {
5407
- width: 100%; }
5408
-
5409
- /*
5410
- * Pointer & Pointer Animations
5411
- */
5412
- .premium-menu-link-parent::before, .premium-menu-link-parent::after {
5413
- display: block;
5414
- position: absolute;
5415
- -webkit-transition: all 0.3s cubic-bezier(0.58, 0.3, 0.005, 1);
5416
- transition: all 0.3s cubic-bezier(0.58, 0.3, 0.005, 1); }
5417
-
5418
- .premium-nav-pointer-underline .premium-menu-link-parent::after,
5419
- .premium-nav-pointer-double-line .premium-menu-link-parent::after {
5420
- content: "";
5421
- bottom: 0; }
5422
-
5423
- .premium-nav-pointer-overline .premium-menu-link-parent::before,
5424
- .premium-nav-pointer-double-line .premium-menu-link-parent::before {
5425
- content: "";
5426
- top: 0; }
5427
-
5428
- .premium-nav-pointer-underline .premium-menu-link-parent::before, .premium-nav-pointer-underline .premium-menu-link-parent::after,
5429
- .premium-nav-pointer-overline .premium-menu-link-parent::before,
5430
- .premium-nav-pointer-overline .premium-menu-link-parent::after,
5431
- .premium-nav-pointer-double-line .premium-menu-link-parent::before,
5432
- .premium-nav-pointer-double-line .premium-menu-link-parent::after {
5433
- height: 3px;
5434
- width: 100%;
5435
- left: 0;
5436
- background-color: #55595c;
5437
- z-index: 2; }
5438
-
5439
- .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before, .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::after {
5440
- opacity: 0; }
5441
-
5442
- .premium-nav-pointer-underline.premium-nav-animation-none,
5443
- .premium-nav-pointer-overline.premium-nav-animation-none,
5444
- .premium-nav-pointer-double-line.premium-nav-animation-none {
5445
- -webkit-transition-duration: 0s;
5446
- transition-duration: 0s; }
5447
- .premium-nav-pointer-underline.premium-nav-animation-none .premium-menu-link-parent,
5448
- .premium-nav-pointer-underline.premium-nav-animation-none .premium-menu-link-parent::before,
5449
- .premium-nav-pointer-underline.premium-nav-animation-none .premium-menu-link-parent::after,
5450
- .premium-nav-pointer-underline.premium-nav-animation-none .premium-menu-link-parent:focus,
5451
- .premium-nav-pointer-underline.premium-nav-animation-none .premium-menu-link-parent:hover,
5452
- .premium-nav-pointer-overline.premium-nav-animation-none .premium-menu-link-parent,
5453
- .premium-nav-pointer-overline.premium-nav-animation-none .premium-menu-link-parent::before,
5454
- .premium-nav-pointer-overline.premium-nav-animation-none .premium-menu-link-parent::after,
5455
- .premium-nav-pointer-overline.premium-nav-animation-none .premium-menu-link-parent:focus,
5456
- .premium-nav-pointer-overline.premium-nav-animation-none .premium-menu-link-parent:hover,
5457
- .premium-nav-pointer-double-line.premium-nav-animation-none .premium-menu-link-parent,
5458
- .premium-nav-pointer-double-line.premium-nav-animation-none .premium-menu-link-parent::before,
5459
- .premium-nav-pointer-double-line.premium-nav-animation-none .premium-menu-link-parent::after,
5460
- .premium-nav-pointer-double-line.premium-nav-animation-none .premium-menu-link-parent:focus,
5461
- .premium-nav-pointer-double-line.premium-nav-animation-none .premium-menu-link-parent:hover {
5462
- -webkit-transition-duration: 0s;
5463
- transition-duration: 0s; }
5464
-
5465
- .premium-nav-pointer-underline.premium-nav-animation-slide .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::after,
5466
- .premium-nav-pointer-double-line.premium-nav-animation-slide .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::after {
5467
- width: 10px;
5468
- inset-inline-start: 100%; }
5469
-
5470
- .premium-nav-pointer-overline.premium-nav-animation-slide .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before,
5471
- .premium-nav-pointer-double-line.premium-nav-animation-slide .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before {
5472
- width: 10px;
5473
- left: -20px; }
5474
-
5475
- .premium-nav-pointer-underline.premium-nav-animation-grow .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before, .premium-nav-pointer-underline.premium-nav-animation-grow .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::after,
5476
- .premium-nav-pointer-overline.premium-nav-animation-grow .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before,
5477
- .premium-nav-pointer-overline.premium-nav-animation-grow .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::after,
5478
- .premium-nav-pointer-double-line.premium-nav-animation-grow .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before,
5479
- .premium-nav-pointer-double-line.premium-nav-animation-grow .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::after {
5480
- height: 0;
5481
- width: 0;
5482
- left: 50%; }
5483
-
5484
- .premium-nav-pointer-underline.premium-nav-animation-drop-in .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before,
5485
- .premium-nav-pointer-overline.premium-nav-animation-drop-in .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before,
5486
- .premium-nav-pointer-double-line.premium-nav-animation-drop-in .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before {
5487
- top: -10px; }
5488
-
5489
- .premium-nav-pointer-underline.premium-nav-animation-drop-in .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::after,
5490
- .premium-nav-pointer-overline.premium-nav-animation-drop-in .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::after,
5491
- .premium-nav-pointer-double-line.premium-nav-animation-drop-in .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::after {
5492
- bottom: -10px; }
5493
-
5494
- .premium-nav-pointer-underline.premium-nav-animation-drop-out .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before,
5495
- .premium-nav-pointer-overline.premium-nav-animation-drop-out .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before,
5496
- .premium-nav-pointer-double-line.premium-nav-animation-drop-out .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before {
5497
- top: 10px; }
5498
-
5499
- .premium-nav-pointer-underline.premium-nav-animation-drop-out .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::after,
5500
- .premium-nav-pointer-overline.premium-nav-animation-drop-out .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::after,
5501
- .premium-nav-pointer-double-line.premium-nav-animation-drop-out .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::after {
5502
- bottom: 10px; }
5503
-
5504
- .premium-nav-pointer-framed .premium-menu-link-parent::before {
5505
- content: ""; }
5506
-
5507
- .premium-nav-pointer-framed .premium-menu-link-parent::before, .premium-nav-pointer-framed .premium-menu-link-parent::after {
5508
- background: transparent;
5509
- left: 0;
5510
- top: 0;
5511
- bottom: 0;
5512
- right: 0;
5513
- border: 3px solid #55595c; }
5514
-
5515
- .premium-nav-pointer-framed.premium-nav-animation-grow .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before {
5516
- -webkit-transform: scale(0.75);
5517
- -ms-transform: scale(0.75);
5518
- transform: scale(0.75); }
5519
-
5520
- .premium-nav-pointer-framed.premium-nav-animation-shrink .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before {
5521
- -webkit-transform: scale(1.25);
5522
- -ms-transform: scale(1.25);
5523
- transform: scale(1.25); }
5524
-
5525
- .premium-nav-pointer-framed.premium-nav-animation-draw .premium-menu-link-parent::before, .premium-nav-pointer-framed.premium-nav-animation-draw .premium-menu-link-parent::after {
5526
- width: 3px;
5527
- height: 3px; }
5528
-
5529
- .premium-nav-pointer-framed.premium-nav-animation-draw .premium-menu-link-parent::before {
5530
- border-width: 0 0 3px 3px;
5531
- -webkit-transition: width 0.1s 0.2s, height 0.1s 0.3s, opacity 0.12s 0.22s;
5532
- transition: width 0.1s 0.2s, height 0.1s 0.3s, opacity 0.12s 0.22s; }
5533
-
5534
- .premium-nav-pointer-framed.premium-nav-animation-draw .premium-menu-link-parent::after {
5535
- content: "";
5536
- top: auto;
5537
- bottom: 0;
5538
- left: auto;
5539
- right: 0;
5540
- border-width: 3px 3px 0 0;
5541
- -webkit-transition: width 0.1s, height 0.1s 0.1s, opacity 0.02s 0.18s;
5542
- transition: width 0.1s, height 0.1s 0.1s, opacity 0.02s 0.18s; }
5543
-
5544
- .premium-nav-pointer-framed.premium-nav-animation-draw .premium-menu-link-parent:hover::before, .premium-nav-pointer-framed.premium-nav-animation-draw .premium-menu-link-parent:focus::before {
5545
- -webkit-transition: opacity 0.02s, height 0.1s, width 0.1s 0.1s;
5546
- transition: opacity 0.02s, height 0.1s, width 0.1s 0.1s; }
5547
-
5548
- .premium-nav-pointer-framed.premium-nav-animation-draw .premium-menu-link-parent:hover::after, .premium-nav-pointer-framed.premium-nav-animation-draw .premium-menu-link-parent:focus::after {
5549
- -webkit-transition: opacity 0.02s 0.2s, height 0.1s 0.2s, width 0.1s 0.3s;
5550
- transition: opacity 0.02s 0.2s, height 0.1s 0.2s, width 0.1s 0.3s; }
5551
-
5552
- .premium-nav-pointer-framed.premium-nav-animation-draw .premium-menu-link-parent:hover::before, .premium-nav-pointer-framed.premium-nav-animation-draw .premium-menu-link-parent:hover::after, .premium-nav-pointer-framed.premium-nav-animation-draw .premium-menu-link-parent:focus::before, .premium-nav-pointer-framed.premium-nav-animation-draw .premium-menu-link-parent:focus::after {
5553
- width: 100%;
5554
- height: 100%; }
5555
-
5556
- .premium-nav-pointer-framed.premium-nav-animation-draw .premium-active-item .premium-menu-link-parent::before {
5557
- -webkit-transition: opacity 0.02s, height 0.1s, width 0.1s 0.1s;
5558
- transition: opacity 0.02s, height 0.1s, width 0.1s 0.1s; }
5559
-
5560
- .premium-nav-pointer-framed.premium-nav-animation-draw .premium-active-item .premium-menu-link-parent::after {
5561
- -webkit-transition: opacity 0.02s 0.2s, height 0.1s 0.2s, width 0.1s 0.3s;
5562
- transition: opacity 0.02s 0.2s, height 0.1s 0.2s, width 0.1s 0.3s; }
5563
-
5564
- .premium-nav-pointer-framed.premium-nav-animation-draw .premium-active-item .premium-menu-link-parent::before, .premium-nav-pointer-framed.premium-nav-animation-draw .premium-active-item .premium-menu-link-parent::after {
5565
- width: 100%;
5566
- height: 100%; }
5567
-
5568
- .premium-nav-pointer-framed.premium-nav-animation-corners .premium-menu-link-parent::before {
5569
- border-width: 3px 0 0 3px; }
5570
-
5571
- .premium-nav-pointer-framed.premium-nav-animation-corners .premium-menu-link-parent::after {
5572
- content: "";
5573
- top: auto;
5574
- bottom: 0;
5575
- left: auto;
5576
- right: 0;
5577
- border-width: 0 3px 3px 0; }
5578
-
5579
- .premium-nav-pointer-framed.premium-nav-animation-corners .premium-menu-link-parent::before, .premium-nav-pointer-framed.premium-nav-animation-corners .premium-menu-link-parent::after {
5580
- width: 3px;
5581
- height: 3px; }
5582
-
5583
- .premium-nav-pointer-framed.premium-nav-animation-corners .premium-menu-link-parent:hover::before, .premium-nav-pointer-framed.premium-nav-animation-corners .premium-menu-link-parent:hover::after, .premium-nav-pointer-framed.premium-nav-animation-corners .premium-menu-link-parent:focus::before, .premium-nav-pointer-framed.premium-nav-animation-corners .premium-menu-link-parent:focus::after {
5584
- width: 100%;
5585
- height: 100%;
5586
- -webkit-transition: opacity 2ms, width 0.4s, height 0.4s;
5587
- transition: opacity 2ms, width 0.4s, height 0.4s; }
5588
-
5589
- .premium-nav-pointer-framed.premium-nav-animation-corners .premium-active-item .premium-menu-link-parent::before, .premium-nav-pointer-framed.premium-nav-animation-corners .premium-active-item .premium-menu-link-parent::after {
5590
- width: 100%;
5591
- height: 100%;
5592
- -webkit-transition: opacity 2ms, width 0.4s, height 0.4s;
5593
- transition: opacity 2ms, width 0.4s, height 0.4s; }
5594
-
5595
- .premium-nav-pointer-text.premium-nav-animation-grow .premium-menu-link-parent:hover, .premium-nav-pointer-text.premium-nav-animation-grow .premium-menu-link-parent:focus {
5596
- -webkit-transform: scale(1.2);
5597
- -ms-transform: scale(1.2);
5598
- transform: scale(1.2); }
5599
-
5600
- .premium-nav-pointer-text.premium-nav-animation-shrink .premium-menu-link-parent:hover, .premium-nav-pointer-text.premium-nav-animation-shrink .premium-menu-link-parent:focus {
5601
- -webkit-transform: scale(0.8);
5602
- -ms-transform: scale(0.8);
5603
- transform: scale(0.8); }
5604
-
5605
- .premium-nav-pointer-text.premium-nav-animation-sink .premium-menu-link-parent:hover, .premium-nav-pointer-text.premium-nav-animation-sink .premium-menu-link-parent:focus {
5606
- -webkit-transform: translateY(8px);
5607
- -ms-transform: translateY(8px);
5608
- transform: translateY(8px); }
5609
-
5610
- .premium-nav-pointer-text.premium-nav-animation-float .premium-menu-link-parent:hover, .premium-nav-pointer-text.premium-nav-animation-float .premium-menu-link-parent:focus {
5611
- -webkit-transform: translateY(-8px);
5612
- -ms-transform: translateY(-8px);
5613
- transform: translateY(-8px); }
5614
-
5615
- .premium-nav-pointer-text.premium-nav-animation-skew .premium-menu-link-parent:hover, .premium-nav-pointer-text.premium-nav-animation-skew .premium-menu-link-parent:focus {
5616
- -webkit-transform: skew(-8deg);
5617
- -ms-transform: skew(-8deg);
5618
- transform: skew(-8deg); }
5619
-
5620
- .premium-nav-pointer-text.premium-nav-animation-rotate .premium-menu-link-parent:hover, .premium-nav-pointer-text.premium-nav-animation-rotate .premium-menu-link-parent:focus {
5621
- -webkit-transform: rotate(6deg);
5622
- -ms-transform: rotate(6deg);
5623
- transform: rotate(6deg); }
5624
-
5625
- .premium-nav-pointer-background .premium-menu-link-parent::before {
5626
- top: 0;
5627
- left: 0;
5628
- right: 0;
5629
- bottom: 0;
5630
- background: #55595c;
5631
- background-color: #55595c;
5632
- z-index: -1; }
5633
-
5634
- .premium-nav-pointer-background .premium-menu-link-parent::before, .premium-nav-pointer-background .premium-menu-link-parent::after {
5635
- content: "";
5636
- -webkit-transition: 0.3s;
5637
- transition: 0.3s; }
5638
-
5639
- .premium-nav-pointer-background.premium-nav-animation-grow .premium-menu-link-parent::before {
5640
- -webkit-transform: scale(0.5);
5641
- -ms-transform: scale(0.5);
5642
- transform: scale(0.5); }
5643
-
5644
- .premium-nav-pointer-background.premium-nav-animation-grow .premium-menu-link-parent:hover::before, .premium-nav-pointer-background.premium-nav-animation-grow .premium-menu-link-parent:focus::before {
5645
- -webkit-transform: scale(1);
5646
- -ms-transform: scale(1);
5647
- transform: scale(1); }
5648
-
5649
- .premium-nav-pointer-background.premium-nav-animation-grow .premium-active-item .premium-menu-link-parent::before {
5650
- -webkit-transform: scale(1);
5651
- -ms-transform: scale(1);
5652
- transform: scale(1); }
5653
-
5654
- .premium-nav-pointer-background.premium-nav-animation-shrink .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before {
5655
- -webkit-transform: scale(1.2);
5656
- -ms-transform: scale(1.2);
5657
- transform: scale(1.2);
5658
- -webkit-transition: 0.3;
5659
- transition: 0.3; }
5660
-
5661
- .premium-nav-pointer-background.premium-nav-animation-sweep-left .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before {
5662
- left: 100%; }
5663
-
5664
- .premium-nav-pointer-background.premium-nav-animation-sweep-right .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before {
5665
- right: 100%; }
5666
-
5667
- .premium-nav-pointer-background.premium-nav-animation-sweep-up .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before {
5668
- top: 100%; }
5669
-
5670
- .premium-nav-pointer-background.premium-nav-animation-sweep-down .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before {
5671
- bottom: 100%; }
5672
-
5673
- .premium-nav-pointer-background.premium-nav-animation-shutter-in-vertical .premium-menu-link-parent::after, .premium-nav-pointer-background.premium-nav-animation-shutter-in-horizontal .premium-menu-link-parent::after {
5674
- top: 0;
5675
- left: 0;
5676
- right: 0;
5677
- bottom: 0;
5678
- background: #55595c;
5679
- background-color: #55595c;
5680
- z-index: -1; }
5681
-
5682
- .premium-nav-pointer-background.premium-nav-animation-shutter-in-vertical .premium-menu-link-parent::before {
5683
- top: 0;
5684
- bottom: 100%; }
5685
-
5686
- .premium-nav-pointer-background.premium-nav-animation-shutter-in-vertical .premium-menu-link-parent::after {
5687
- top: 100%;
5688
- bottom: 0; }
5689
-
5690
- .premium-nav-pointer-background.premium-nav-animation-shutter-in-vertical .premium-menu-link-parent:hover::before, .premium-nav-pointer-background.premium-nav-animation-shutter-in-vertical .premium-menu-link-parent:focus::before {
5691
- bottom: 50%; }
5692
-
5693
- .premium-nav-pointer-background.premium-nav-animation-shutter-in-vertical .premium-menu-link-parent:hover::after, .premium-nav-pointer-background.premium-nav-animation-shutter-in-vertical .premium-menu-link-parent:focus::after {
5694
- top: 50%; }
5695
-
5696
- .premium-nav-pointer-background.premium-nav-animation-shutter-in-vertical .premium-active-item .premium-menu-link-parent::before {
5697
- bottom: 50%; }
5698
-
5699
- .premium-nav-pointer-background.premium-nav-animation-shutter-in-vertical .premium-active-item .premium-menu-link-parent::after {
5700
- top: 50%; }
5701
-
5702
- .premium-nav-pointer-background.premium-nav-animation-shutter-out-vertical .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before {
5703
- bottom: 50%;
5704
- top: 50%; }
5705
-
5706
- .premium-nav-pointer-background.premium-nav-animation-shutter-in-horizontal .premium-menu-link-parent::before {
5707
- right: 0;
5708
- left: 100%; }
5709
-
5710
- .premium-nav-pointer-background.premium-nav-animation-shutter-in-horizontal .premium-menu-link-parent::after {
5711
- right: 100%;
5712
- left: 0; }
5713
-
5714
- .premium-nav-pointer-background.premium-nav-animation-shutter-in-horizontal .premium-menu-link-parent:hover::before, .premium-nav-pointer-background.premium-nav-animation-shutter-in-horizontal .premium-menu-link-parent:focus::before {
5715
- left: 50%; }
5716
-
5717
- .premium-nav-pointer-background.premium-nav-animation-shutter-in-horizontal .premium-menu-link-parent:hover::after, .premium-nav-pointer-background.premium-nav-animation-shutter-in-horizontal .premium-menu-link-parent:focus::after {
5718
- right: 50%; }
5719
-
5720
- .premium-nav-pointer-background.premium-nav-animation-shutter-in-horizontal .premium-active-item .premium-menu-link-parent::before {
5721
- left: 50%; }
5722
-
5723
- .premium-nav-pointer-background.premium-nav-animation-shutter-in-horizontal .premium-active-item .premium-menu-link-parent::after {
5724
- right: 50%; }
5725
-
5726
- .premium-nav-pointer-background.premium-nav-animation-shutter-out-horizontal .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before {
5727
- left: 50%;
5728
- right: 50%; }
5729
-
5730
- .premium-active-item::before, .premium-active-item::after,
5731
- .premium-menu-link-parent:hover::before,
5732
- .premium-menu-link-parent:hover::after,
5733
- .premium-menu-link-parent:focus::before,
5734
- .premium-menu-link-parent:focus::after {
5735
- -webkit-transform: scale(1);
5736
- -ms-transform: scale(1);
5737
- transform: scale(1); }
5738
-
5739
- /**Sub Menu Animation*/
5740
- .premium-nav-menu-item .premium-sub-menu,
5741
- .premium-nav-menu-item .premium-mega-content-container {
5742
- -webkit-transition: 0.5s all ease-in-out;
5743
- transition: 0.5s all ease-in-out;
5744
- -webkit-transition-delay: 0.1s;
5745
- transition-delay: 0.1s; }
5746
-
5747
- [class*="premium-nav-slide-"].premium-nav-hor:not(.premium-hamburger-menu) .premium-nav-menu-item:hover > .premium-sub-menu,
5748
- [class*="premium-nav-slide-"].premium-nav-hor:not(.premium-hamburger-menu) .premium-nav-menu-item:hover > .premium-mega-content-container,
5749
- [class*="premium-nav-slide-"].premium-nav-hor:not(.premium-hamburger-menu) .premium-sub-menu:hover > .premium-sub-menu,
5750
- [class*="premium-nav-slide-"].premium-nav-ver:not(.premium-hamburger-menu) .premium-nav-menu-item:hover > .premium-sub-menu,
5751
- [class*="premium-nav-slide-"].premium-nav-ver:not(.premium-hamburger-menu) .premium-nav-menu-item:hover > .premium-mega-content-container,
5752
- [class*="premium-nav-slide-"].premium-nav-ver:not(.premium-hamburger-menu) .premium-sub-menu:hover > .premium-sub-menu {
5753
- -webkit-transform: translate(0);
5754
- -ms-transform: translate(0);
5755
- transform: translate(0); }
5756
-
5757
- .premium-nav-slide-up.premium-nav-hor:not(.premium-hamburger-menu) .premium-sub-menu,
5758
- .premium-nav-slide-up.premium-nav-hor:not(.premium-hamburger-menu) .premium-mega-content-container,
5759
- .premium-nav-slide-up.premium-nav-ver:not(.premium-hamburger-menu) .premium-sub-menu,
5760
- .premium-nav-slide-up.premium-nav-ver:not(.premium-hamburger-menu) .premium-mega-content-container {
5761
- -webkit-transform: translateY(10px);
5762
- -ms-transform: translateY(10px);
5763
- transform: translateY(10px); }
5764
-
5765
- .premium-nav-slide-down.premium-nav-hor:not(.premium-hamburger-menu) .premium-sub-menu,
5766
- .premium-nav-slide-down.premium-nav-hor:not(.premium-hamburger-menu) .premium-mega-content-container,
5767
- .premium-nav-slide-down.premium-nav-ver:not(.premium-hamburger-menu) .premium-sub-menu,
5768
- .premium-nav-slide-down.premium-nav-ver:not(.premium-hamburger-menu) .premium-mega-content-container {
5769
- -webkit-transform: translateY(-10px);
5770
- -ms-transform: translateY(-10px);
5771
- transform: translateY(-10px); }
5772
-
5773
- .premium-nav-slide-right.premium-nav-hor:not(.premium-hamburger-menu) .premium-sub-menu,
5774
- .premium-nav-slide-right.premium-nav-hor:not(.premium-hamburger-menu) .premium-mega-content-container,
5775
- .premium-nav-slide-right.premium-nav-ver:not(.premium-hamburger-menu) .premium-sub-menu,
5776
- .premium-nav-slide-right.premium-nav-ver:not(.premium-hamburger-menu) .premium-mega-content-container {
5777
- -webkit-transform: translateX(-10px);
5778
- -ms-transform: translateX(-10px);
5779
- transform: translateX(-10px); }
5780
-
5781
- .premium-nav-slide-left.premium-nav-hor:not(.premium-hamburger-menu) .premium-sub-menu,
5782
- .premium-nav-slide-left.premium-nav-hor:not(.premium-hamburger-menu) .premium-mega-content-container,
5783
- .premium-nav-slide-left.premium-nav-ver:not(.premium-hamburger-menu) .premium-sub-menu,
5784
- .premium-nav-slide-left.premium-nav-ver:not(.premium-hamburger-menu) .premium-mega-content-container {
5785
- -webkit-transform: translateX(10px);
5786
- -ms-transform: translateX(10px);
5787
- transform: translateX(10px); }
5788
-
5789
- /**Horizontal - Static Mega Content*/
5790
- /*UP*/
5791
- .premium-nav-slide-up.premium-nav-hor:not(.premium-hamburger-menu) .premium-mega-item-static .premium-mega-content-container {
5792
- -webkit-transform: translateX(-50%) translateY(10px);
5793
- -ms-transform: translateX(-50%) translateY(10px);
5794
- transform: translateX(-50%) translateY(10px); }
5795
-
5796
- .premium-nav-slide-up.premium-nav-hor:not(.premium-hamburger-menu) .premium-mega-item-static:hover .premium-mega-content-container {
5797
- -webkit-transform: translateX(-50%) translateY(0);
5798
- -ms-transform: translateX(-50%) translateY(0);
5799
- transform: translateX(-50%) translateY(0); }
5800
-
5801
- /*DOWN*/
5802
- .premium-nav-slide-down.premium-nav-hor:not(.premium-hamburger-menu) .premium-mega-item-static .premium-mega-content-container {
5803
- -webkit-transform: translateX(-50%) translateY(-10px);
5804
- -ms-transform: translateX(-50%) translateY(-10px);
5805
- transform: translateX(-50%) translateY(-10px); }
5806
-
5807
- .premium-nav-slide-down.premium-nav-hor:not(.premium-hamburger-menu) .premium-mega-item-static:hover .premium-mega-content-container {
5808
- -webkit-transform: translateX(-50%) translateY(0);
5809
- -ms-transform: translateX(-50%) translateY(0);
5810
- transform: translateX(-50%) translateY(0); }
5811
-
5812
- /*Left*/
5813
- .premium-nav-slide-left.premium-nav-hor:not(.premium-hamburger-menu) .premium-mega-item-static .premium-mega-content-container {
5814
- -webkit-transform: translateX(-45%);
5815
- -ms-transform: translateX(-45%);
5816
- transform: translateX(-45%); }
5817
-
5818
- .premium-nav-slide-left.premium-nav-hor:not(.premium-hamburger-menu) .premium-mega-item-static:hover .premium-mega-content-container {
5819
- -webkit-transform: translateX(-50%);
5820
- -ms-transform: translateX(-50%);
5821
- transform: translateX(-50%); }
5822
-
5823
- /*Right*/
5824
- .premium-nav-slide-right.premium-nav-hor:not(.premium-hamburger-menu) .premium-mega-item-static .premium-mega-content-container {
5825
- -webkit-transform: translateX(-55%);
5826
- -ms-transform: translateX(-55%);
5827
- transform: translateX(-55%); }
5828
-
5829
- .premium-nav-slide-right.premium-nav-hor:not(.premium-hamburger-menu) .premium-mega-item-static:hover .premium-mega-content-container {
5830
- -webkit-transform: translateX(-50%);
5831
- -ms-transform: translateX(-50%);
5832
- transform: translateX(-50%); }
5833
-
5834
- /**Vertical - Static Mega Content*/
5835
- .premium-nav-slide-down.premium-nav-ver:not(.premium-hamburger-menu) .premium-mega-item-static:hover .premium-mega-content-container,
5836
- .premium-nav-slide-up.premium-nav-ver:not(.premium-hamburger-menu) .premium-mega-item-static:hover .premium-mega-content-container {
5837
- -webkit-transform: translateY(0);
5838
- -ms-transform: translateY(0);
5839
- transform: translateY(0); }
5840
-
5841
- .premium-nav-slide-right.premium-nav-ver:not(.premium-hamburger-menu) .premium-mega-item-static:hover .premium-mega-content-container,
5842
- .premium-nav-slide-left.premium-nav-ver:not(.premium-hamburger-menu) .premium-mega-item-static:hover .premium-mega-content-container {
5843
- -webkit-transform: translateX(0);
5844
- -ms-transform: translateX(0);
5845
- transform: translateX(0); }
5846
-
5847
- /************ Premium Team Members ************/
5848
- /**********************************************/
5849
- .premium-person-container {
5850
- position: relative; }
5851
-
5852
- .premium-person-image-container {
5853
- position: relative;
5854
- text-align: center;
5855
- overflow: hidden; }
5856
- .premium-person-image-container .premium-person-image-wrap {
5857
- overflow: hidden; }
5858
-
5859
- .premium-person-zoomout-effect .premium-person-image-container img,
5860
- .premium-person-scale-effect .premium-person-image-container img {
5861
- -webkit-transform: scale(1.2);
5862
- -ms-transform: scale(1.2);
5863
- transform: scale(1.2); }
5864
-
5865
- .premium-person-sepia-effect .premium-person-image-container img {
5866
- -webkit-filter: sepia(30%);
5867
- filter: sepia(30%); }
5868
-
5869
- .premium-person-bright-effect .premium-person-image-container img {
5870
- -webkit-filter: brightness(1);
5871
- filter: brightness(1); }
5872
-
5873
- .premium-person-trans-effect .premium-person-image-container img {
5874
- -webkit-transform: translateX(-15px) scale(1.1);
5875
- -ms-transform: translateX(-15px) scale(1.1);
5876
- transform: translateX(-15px) scale(1.1); }
5877
-
5878
- .premium-person-zoomin-effect:hover .premium-person-image-container img {
5879
- -webkit-transform: scale(1.2);
5880
- -ms-transform: scale(1.2);
5881
- transform: scale(1.2); }
5882
-
5883
- .premium-person-zoomout-effect:hover .premium-person-image-container img {
5884
- -webkit-transform: scale(1.1);
5885
- -ms-transform: scale(1.1);
5886
- transform: scale(1.1); }
5887
-
5888
- .premium-person-scale-effect:hover .premium-person-image-container img {
5889
- -webkit-transform: scale(1.3) rotate(5deg);
5890
- -ms-transform: scale(1.3) rotate(5deg);
5891
- transform: scale(1.3) rotate(5deg); }
5892
-
5893
- .premium-person-grayscale-effect:hover .premium-person-image-container img {
5894
- -webkit-filter: grayscale(100%);
5895
- filter: grayscale(100%); }
5896
-
5897
- .premium-person-blur-effect:hover .premium-person-image-container img {
5898
- -webkit-filter: blur(3px);
5899
- filter: blur(3px); }
5900
-
5901
- .premium-person-sepia-effect:hover .premium-person-image-container img {
5902
- -webkit-filter: sepia(0%);
5903
- filter: sepia(0%); }
5904
-
5905
- .premium-person-bright-effect:hover .premium-person-image-container img {
5906
- -webkit-filter: brightness(1.2);
5907
- filter: brightness(1.2); }
5908
-
5909
- .premium-person-trans-effect:hover .premium-person-image-container img {
5910
- -webkit-transform: translateX(0px) scale(1.1);
5911
- -ms-transform: translateX(0px) scale(1.1);
5912
- transform: translateX(0px) scale(1.1); }
5913
-
5914
- .premium-person-container .premium-person-image-container img {
5915
- width: 100%;
5916
- height: 100%;
5917
- display: block;
5918
- -o-object-fit: cover;
5919
- object-fit: cover;
5920
- -webkit-transition: all 0.5s ease-in-out;
5921
- transition: all 0.5s ease-in-out; }
5922
-
5923
- .premium-person-style2 .premium-person-social {
5924
- position: absolute;
5925
- top: 0;
5926
- left: 0;
5927
- width: 100%;
5928
- height: 100%;
5929
- z-index: 2;
5930
- -js-display: flex;
5931
- display: -webkit-box;
5932
- display: -webkit-flex;
5933
- display: -moz-box;
5934
- display: -ms-flexbox;
5935
- display: flex;
5936
- -webkit-box-pack: center;
5937
- -webkit-justify-content: center;
5938
- -moz-box-pack: center;
5939
- -ms-flex-pack: center;
5940
- justify-content: center;
5941
- -webkit-box-align: center;
5942
- -webkit-align-items: center;
5943
- -moz-box-align: center;
5944
- -ms-flex-align: center;
5945
- align-items: center;
5946
- -webkit-box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
5947
- box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
5948
- -webkit-transition: all 0.5s linear 0s;
5949
- transition: all 0.5s linear 0s;
5950
- opacity: 0; }
5951
-
5952
- .premium-person-style2 .premium-person-image-container:hover .premium-person-social {
5953
- opacity: 1; }
5954
-
5955
- .premium-person-list-item a {
5956
- display: inline-block; }
5957
-
5958
- .premium-person-style2 .premium-person-list-item a {
5959
- opacity: 0;
5960
- -webkit-transform: scale(0);
5961
- -ms-transform: scale(0);
5962
- transform: scale(0);
5963
- -webkit-transition: all 0.5s ease-in-out 0s;
5964
- transition: all 0.5s ease-in-out 0s; }
5965
-
5966
- .premium-person-style2 .premium-person-image-container:hover .premium-person-list-item a {
5967
- opacity: 1;
5968
- -webkit-transform: scale(1);
5969
- -ms-transform: scale(1);
5970
- transform: scale(1); }
5971
-
5972
- .premium-person-info-container {
5973
- padding: 30px 15px; }
5974
-
5975
- .premium-person-name {
5976
- margin: 0 0 5px;
5977
- font-weight: 700; }
5978
-
5979
- .premium-person-title {
5980
- margin: 0 0 20px;
5981
- padding: 0; }
5982
-
5983
- .premium-person-content {
5984
- margin: 0 0 30px; }
5985
-
5986
- /*Override Theme List Margin*/
5987
- ul.premium-person-social-list {
5988
- margin: 0px !important;
5989
- padding: 0; }
5990
-
5991
- .premium-person-social-list .premium-person-list-item {
5992
- display: inline;
5993
- list-style: none; }
5994
-
5995
- .premium-person-social-list li {
5996
- position: relative;
5997
- bottom: 0px;
5998
- -webkit-transition: all 0.2s ease-in-out;
5999
- transition: all 0.2s ease-in-out; }
6000
- .premium-person-social-list li i {
6001
- position: relative;
6002
- bottom: 0px;
6003
- -webkit-transition: all 0.2s ease-in-out;
6004
- transition: all 0.2s ease-in-out; }
6005
-
6006
- .premium-person-defaults-yes li.premium-person-facebook:hover a {
6007
- background-color: #3b5998 !important; }
6008
-
6009
- .premium-person-defaults-yes li.premium-person-twitter:hover a {
6010
- background-color: #55acee !important; }
6011
-
6012
- .premium-person-defaults-yes li.premium-person-linkedin:hover a {
6013
- background-color: #0077b5 !important; }
6014
-
6015
- .premium-person-defaults-yes li.premium-person-google:hover a {
6016
- background-color: #dc4e41 !important; }
6017
-
6018
- .premium-person-defaults-yes li.premium-person-youtube:hover a {
6019
- background-color: #b31217 !important; }
6020
-
6021
- .premium-person-defaults-yes li.premium-person-instagram:hover a {
6022
- background-color: #e4405f !important; }
6023
-
6024
- .premium-person-defaults-yes li.premium-person-skype:hover a {
6025
- background-color: #00aff0 !important; }
6026
-
6027
- .premium-person-defaults-yes li.premium-person-pinterest:hover a {
6028
- background-color: #bd081c !important; }
6029
-
6030
- .premium-person-defaults-yes li.premium-person-dribbble:hover a {
6031
- background-color: #ea4c89 !important; }
6032
-
6033
- .premium-person-defaults-yes li.premium-person-mail:hover a {
6034
- background-color: #b23121 !important; }
6035
-
6036
- .premium-person-defaults-yes li.premium-person-behance:hover a {
6037
- background-color: #1769ff !important; }
6038
-
6039
- .premium-person-defaults-yes li.premium-person-whatsapp:hover a {
6040
- background-color: #25d366 !important; }
6041
-
6042
- .premium-person-defaults-yes li.premium-person-telegram:hover a {
6043
- background-color: #0088cc !important; }
6044
-
6045
- .premium-person-defaults-yes li.premium-person-site:hover a {
6046
- background-color: #0055a5 !important; }
6047
-
6048
- .premium-person-social-list li:hover a {
6049
- -webkit-box-shadow: none;
6050
- box-shadow: none; }
6051
-
6052
- .premium-person-social-list li a:focus {
6053
- -webkit-box-shadow: none;
6054
- box-shadow: none;
6055
- outline: none; }
6056
-
6057
- .premium-person-social-list li i {
6058
- font-size: 18px; }
6059
-
6060
- .elementor-widget-premium-addon-person .elementor-widget-container {
6061
- -js-display: flex;
6062
- display: -webkit-box;
6063
- display: -webkit-flex;
6064
- display: -moz-box;
6065
- display: -ms-flexbox;
6066
- display: flex;
6067
- -webkit-box-pack: center;
6068
- -webkit-justify-content: center;
6069
- -moz-box-pack: center;
6070
- -ms-flex-pack: center;
6071
- justify-content: center; }
6072
-
6073
- .premium-persons-container.multiple-persons {
6074
- -js-display: flex;
6075
- display: -webkit-box;
6076
- display: -webkit-flex;
6077
- display: -moz-box;
6078
- display: -ms-flexbox;
6079
- display: flex;
6080
- -webkit-flex-wrap: wrap;
6081
- -ms-flex-wrap: wrap;
6082
- flex-wrap: wrap;
6083
- width: 100%; }
6084
-
6085
- .premium-person-style1 .premium-person-container {
6086
- overflow: hidden; }
6087
- .premium-person-style1 .premium-person-container .premium-person-info {
6088
- position: absolute;
6089
- top: auto;
6090
- right: 0;
6091
- left: 0;
6092
- -webkit-transition: all 500ms ease 0s;
6093
- transition: all 500ms ease 0s;
6094
- -webkit-transform: translate3d(0, 100%, 0);
6095
- transform: translate3d(0, 100%, 0); }
6096
- .premium-person-style1 .premium-person-container:hover .premium-person-info {
6097
- -webkit-transform: translate3d(0, 0, 0);
6098
- transform: translate3d(0, 0, 0);
6099
- bottom: -1px !important; }
6100
-
6101
- .premium-person-style1 .premium-person-social-list li:hover {
6102
- bottom: 5px; }
6103
-
6104
- .premium-person-style1.multiple-persons:not([data-persons-equal="yes"]) {
6105
- -webkit-box-align: start;
6106
- -webkit-align-items: flex-start;
6107
- -moz-box-align: start;
6108
- -ms-flex-align: start;
6109
- align-items: flex-start; }
6110
-
6111
- .premium-person-style1 .slick-track {
6112
- -js-display: flex;
6113
- display: -webkit-box;
6114
- display: -webkit-flex;
6115
- display: -moz-box;
6116
- display: -ms-flexbox;
6117
- display: flex; }
6118
-
6119
- .premium-person-style1 .slick-slide {
6120
- height: inherit !important; }
6121
-
6122
- .premium-person-style3 .premium-person-info-container {
6123
- position: absolute;
6124
- top: 0;
6125
- left: 0;
6126
- width: 100%;
6127
- height: 100%;
6128
- -js-display: flex;
6129
- display: -webkit-box;
6130
- display: -webkit-flex;
6131
- display: -moz-box;
6132
- display: -ms-flexbox;
6133
- display: flex;
6134
- -webkit-box-orient: vertical;
6135
- -webkit-box-direction: normal;
6136
- -webkit-flex-direction: column;
6137
- -moz-box-orient: vertical;
6138
- -moz-box-direction: normal;
6139
- -ms-flex-direction: column;
6140
- flex-direction: column;
6141
- -webkit-box-pack: justify;
6142
- -webkit-justify-content: space-between;
6143
- -moz-box-pack: justify;
6144
- -ms-flex-pack: justify;
6145
- justify-content: space-between; }
6146
-
6147
- .premium-person-style3 .premium-person-title-desc-wrap {
6148
- -js-display: flex;
6149
- display: -webkit-box;
6150
- display: -webkit-flex;
6151
- display: -moz-box;
6152
- display: -ms-flexbox;
6153
- display: flex;
6154
- -webkit-box-orient: horizontal;
6155
- -webkit-box-direction: reverse;
6156
- -webkit-flex-direction: row-reverse;
6157
- -moz-box-orient: horizontal;
6158
- -moz-box-direction: reverse;
6159
- -ms-flex-direction: row-reverse;
6160
- flex-direction: row-reverse;
6161
- -webkit-box-pack: justify;
6162
- -webkit-justify-content: space-between;
6163
- -moz-box-pack: justify;
6164
- -ms-flex-pack: justify;
6165
- justify-content: space-between;
6166
- -webkit-box-align: start;
6167
- -webkit-align-items: flex-start;
6168
- -moz-box-align: start;
6169
- -ms-flex-align: start;
6170
- align-items: flex-start; }
6171
-
6172
- .premium-person-style3 .premium-person-name-icons-wrap {
6173
- -js-display: flex;
6174
- display: -webkit-box;
6175
- display: -webkit-flex;
6176
- display: -moz-box;
6177
- display: -ms-flexbox;
6178
- display: flex;
6179
- -webkit-box-pack: justify;
6180
- -webkit-justify-content: space-between;
6181
- -moz-box-pack: justify;
6182
- -ms-flex-pack: justify;
6183
- justify-content: space-between;
6184
- -webkit-box-align: end;
6185
- -webkit-align-items: flex-end;
6186
- -moz-box-align: end;
6187
- -ms-flex-align: end;
6188
- align-items: flex-end; }
6189
-
6190
- .premium-person-style3 .premium-person-title {
6191
- opacity: 0;
6192
- -webkit-transition: all 0.3s ease;
6193
- transition: all 0.3s ease;
6194
- width: 0; }
6195
- .premium-person-style3 .premium-person-title span {
6196
- display: inline-block; }
6197
-
6198
- .premium-person-style3 .premium-person-name {
6199
- padding-left: 10px; }
6200
-
6201
- .premium-person-style3 .premium-person-social-list {
6202
- -js-display: flex;
6203
- display: -webkit-box;
6204
- display: -webkit-flex;
6205
- display: -moz-box;
6206
- display: -ms-flexbox;
6207
- display: flex;
6208
- -webkit-box-orient: vertical;
6209
- -webkit-box-direction: normal;
6210
- -webkit-flex-direction: column;
6211
- -moz-box-orient: vertical;
6212
- -moz-box-direction: normal;
6213
- -ms-flex-direction: column;
6214
- flex-direction: column;
6215
- -webkit-transform: translateY(20px);
6216
- -ms-transform: translateY(20px);
6217
- transform: translateY(20px);
6218
- opacity: 0;
6219
- -webkit-transition: all 0.3s ease;
6220
- transition: all 0.3s ease; }
6221
-
6222
- .premium-person-style3 .premium-person-list-item {
6223
- line-height: 0; }
6224
- .premium-person-style3 .premium-person-list-item a {
6225
- padding: 5px 10px 0 0;
6226
- margin: 5px 0; }
6227
-
6228
- .premium-person-style3 .premium-person-container:hover .premium-person-title {
6229
- opacity: 1; }
6230
-
6231
- .premium-person-style3 .premium-person-container:hover .premium-person-social-list {
6232
- opacity: 1;
6233
- -webkit-transform: translateY(0);
6234
- -ms-transform: translateY(0);
6235
- transform: translateY(0); }
6236
-
6237
- .premium-persons-title-cw .premium-person-title {
6238
- -webkit-transform: translateX(15px) rotate(90deg);
6239
- -ms-transform: translateX(15px) rotate(90deg);
6240
- transform: translateX(15px) rotate(90deg);
6241
- -webkit-transform-origin: top;
6242
- -ms-transform-origin: top;
6243
- transform-origin: top; }
6244
-
6245
- .premium-persons-title-cw .premium-person-container:hover .premium-person-title {
6246
- -webkit-transform: translateX(0) rotate(90deg);
6247
- -ms-transform: translateX(0) rotate(90deg);
6248
- transform: translateX(0) rotate(90deg); }
6249
-
6250
- .premium-persons-title-ccw .premium-person-title {
6251
- width: auto;
6252
- margin-right: 20px;
6253
- -webkit-transform: translateX(15px) rotate(-90deg);
6254
- -ms-transform: translateX(15px) rotate(-90deg);
6255
- transform: translateX(15px) rotate(-90deg);
6256
- -webkit-transform-origin: center right;
6257
- -ms-transform-origin: center right;
6258
- transform-origin: center right; }
6259
-
6260
- .premium-persons-title-ccw .premium-person-container:hover .premium-person-title {
6261
- -webkit-transform: translateX(0) rotate(-90deg);
6262
- -ms-transform: translateX(0) rotate(-90deg);
6263
- transform: translateX(0) rotate(-90deg); }
6264
 
6265
- /**************** Premium Pricing Table ****************/
6266
- /*******************************************************/
6267
- .premium-pricing-table-container {
6268
- position: relative;
6269
- text-align: center;
6270
- display: inline-block;
6271
- width: 100%;
6272
- -webkit-transition: all 0.3s ease-in-out;
6273
- transition: all 0.3s ease-in-out; }
 
 
 
 
6274
 
6275
- .premium-pricing-icon-container {
6276
- -js-display: flex;
6277
- display: -webkit-box;
6278
- display: -webkit-flex;
6279
- display: -moz-box;
6280
- display: -ms-flexbox;
6281
- display: flex;
6282
- -webkit-box-pack: center;
6283
- -webkit-justify-content: center;
6284
- -moz-box-pack: center;
6285
- -ms-flex-pack: center;
6286
- justify-content: center;
6287
- line-height: 0; }
6288
- .premium-pricing-icon-container .premium-pricing-icon {
6289
- display: inline-block; }
6290
- .premium-pricing-icon-container .premium-pricing-image {
6291
- overflow: hidden; }
6292
- .premium-pricing-icon-container .premium-pricing-image img {
6293
- width: 25px;
6294
- height: 25px;
6295
- -o-object-fit: cover;
6296
- object-fit: cover; }
6297
 
6298
- .premium-badge-left {
6299
- position: absolute;
6300
- top: 0; }
6301
 
6302
- .premium-badge-right {
6303
- position: absolute;
6304
- top: 0;
6305
- right: 0; }
 
 
 
 
6306
 
6307
- .premium-badge-left {
6308
- left: 0; }
 
 
 
6309
 
6310
- .premium-badge-triangle.premium-badge-left .corner {
6311
- width: 0;
6312
- height: 0;
6313
- border-top: 150px solid;
6314
- border-bottom: 150px solid transparent;
6315
- border-right: 150px solid transparent; }
 
 
 
 
 
 
 
6316
 
6317
- .premium-badge-triangle.premium-badge-right .corner {
6318
- width: 0;
6319
- height: 0;
6320
- border-bottom: 150px solid transparent;
6321
- border-right: 150px solid;
6322
- border-left: 150px solid transparent; }
6323
 
6324
- .premium-badge-triangle span {
6325
- position: absolute;
6326
- top: 35px;
6327
- width: 100px;
6328
- text-align: center;
6329
- -webkit-transform: rotate(-45deg);
6330
- -ms-transform: rotate(-45deg);
6331
- transform: rotate(-45deg);
6332
- display: block;
6333
- text-transform: uppercase; }
6334
 
6335
- .premium-badge-triangle.premium-badge-right span {
6336
- -webkit-transform: rotate(45deg);
6337
- -ms-transform: rotate(45deg);
6338
- transform: rotate(45deg);
6339
- right: 0; }
6340
 
6341
- .premium-badge-circle {
6342
- min-width: 4em;
6343
- min-height: 4em;
6344
- line-height: 4em;
6345
- text-align: center;
6346
- -webkit-border-radius: 100%;
6347
- border-radius: 100%;
6348
- position: absolute;
6349
- z-index: 1; }
6350
 
6351
- .premium-badge-stripe {
6352
- position: absolute;
6353
- -webkit-transform: rotate(90deg);
6354
- -ms-transform: rotate(90deg);
6355
- transform: rotate(90deg);
6356
- width: 15em;
6357
- overflow: hidden;
6358
- height: 15em; }
6359
- .premium-badge-stripe.premium-badge-left {
6360
- -webkit-transform: rotate(0);
6361
- -ms-transform: rotate(0);
6362
- transform: rotate(0); }
6363
- .premium-badge-stripe .corner {
6364
- text-align: center;
6365
- left: 0;
6366
- width: 150%;
6367
- -webkit-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
6368
- -ms-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
6369
- transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
6370
- margin-top: 35px;
6371
- font-size: 13px;
6372
- line-height: 2;
6373
- font-weight: 800;
6374
- text-transform: uppercase; }
6375
 
6376
- .premium-badge-flag .corner {
6377
- text-align: center;
6378
- -webkit-border-radius: 4px 4px 0 4px;
6379
- border-radius: 4px 4px 0 4px;
6380
- padding: 3px 15px;
6381
- position: absolute;
6382
- top: 10%;
6383
- right: -8px; }
6384
- .premium-badge-flag .corner::before, .premium-badge-flag .corner::after {
6385
- content: "";
6386
  display: block;
 
 
 
 
 
6387
  position: absolute;
6388
- width: 0;
6389
- height: 0;
6390
- top: 100%;
6391
- right: 0;
6392
- border-bottom: 8px solid transparent; }
 
 
 
 
6393
 
6394
- .elementor-widget-premium-addon-pricing-table .elementor-widget-container {
6395
- overflow: visible !important; }
 
 
 
 
 
 
 
6396
 
6397
- .premium-badge-flag .corner::after {
6398
- border-left: 8px solid rgba(0, 0, 0, 0.2); }
 
6399
 
6400
- .premium-pricing-price-currency {
6401
- position: relative; }
 
6402
 
6403
- .premium-pricing-button-container {
6404
- display: block; }
 
6405
 
6406
- .premium-pricing-list {
6407
- -js-display: flex;
6408
- display: -webkit-box;
6409
- display: -webkit-flex;
6410
- display: -moz-box;
6411
- display: -ms-flexbox;
6412
- display: flex;
6413
- -webkit-box-orient: vertical;
6414
- -webkit-box-direction: normal;
6415
- -webkit-flex-direction: column;
6416
- -moz-box-orient: vertical;
6417
- -moz-box-direction: normal;
6418
- -ms-flex-direction: column;
6419
- flex-direction: column;
6420
- list-style-type: none;
6421
- margin: 0; }
6422
- .premium-pricing-list .premium-pricing-list-item {
6423
- -js-display: flex;
6424
- display: -webkit-box;
6425
- display: -webkit-flex;
6426
- display: -moz-box;
6427
- display: -ms-flexbox;
6428
- display: flex;
6429
- -webkit-box-align: center;
6430
- -webkit-align-items: center;
6431
- -moz-box-align: center;
6432
- -ms-flex-align: center;
6433
- align-items: center; }
6434
- .premium-pricing-list .premium-pricing-list-item svg {
6435
- width: 50px;
6436
- height: 50px; }
6437
- .premium-pricing-list .premium-pricing-list-item img {
6438
- width: 30px;
6439
- height: 30px;
6440
- -o-object-fit: cover;
6441
- object-fit: cover; }
6442
- .premium-pricing-list .premium-pricing-list-span {
6443
- position: relative; }
6444
- .premium-pricing-list .list-item-tooltip {
6445
- border-bottom: 1px dotted; }
6446
- .premium-pricing-list .premium-pricing-list-tooltip {
6447
- position: absolute;
6448
- top: -webkit-calc(100% + 1px);
6449
- top: calc(100% + 1px);
6450
- left: 0;
6451
- visibility: hidden;
6452
- padding: 15px 20px;
6453
- -webkit-border-radius: 5px;
6454
- border-radius: 5px;
6455
- min-width: 200px;
6456
- overflow: hidden;
6457
- text-align: left;
6458
- font-size: 0.8rem;
6459
- color: #fff;
6460
- background-color: #aaa; }
6461
 
6462
- .premium-pricing-features-left .premium-pricing-list-span {
6463
- text-align: left; }
 
6464
 
6465
- .premium-pricing-features-center .premium-pricing-list-span {
6466
- text-align: center; }
 
 
 
 
6467
 
6468
- .premium-pricing-features-right .premium-pricing-list-span {
6469
- text-align: right; }
 
 
 
 
6470
 
6471
- .premium-pricing-list-span:hover .premium-pricing-list-tooltip {
6472
- z-index: 99;
6473
- visibility: visible;
6474
- opacity: 1; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6475
 
6476
- .premium-pricing-slashed-price-value {
6477
- display: inline-block;
6478
- font-size: 20px;
6479
- font-weight: 400;
6480
- margin-right: 5px; }
 
 
 
 
 
 
 
 
6481
 
6482
- .premium-pricing-price-value {
6483
- font-size: 70px; }
 
6484
 
6485
- .premium-pricing-description-container li {
6486
- list-style-position: inside;
6487
- text-indent: -40px; }
 
 
6488
 
6489
- @-moz-document url-prefix() {
6490
- .premium-pricing-description-container li {
6491
- text-indent: 0px; } }
 
 
 
6492
 
6493
- .premium-pricing-price-button {
6494
- display: block;
6495
- padding: 6px 12px;
6496
- line-height: 1.42857143;
6497
- text-align: center;
6498
- color: #fff;
6499
- background: #6ec1e4;
6500
- margin-bottom: 0;
6501
- -webkit-transition: all 0.3s ease-in-out;
6502
- transition: all 0.3s ease-in-out; }
6503
-
6504
- /**************** Premium Progress Bar ****************/
6505
- /******************************************************/
6506
- .premium-progressbar-container {
6507
- position: relative; }
6508
-
6509
- .premium-progressbar-bar-wrap {
6510
- position: relative;
6511
- text-align: left;
6512
- overflow: hidden;
6513
- height: 25px;
6514
- margin-bottom: 50px;
6515
- background-color: #f5f5f5;
6516
- -webkit-border-radius: 4px;
6517
- border-radius: 4px;
6518
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
6519
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }
6520
- .premium-progressbar-bar-wrap.premium-progressbar-dots {
6521
- background-color: transparent;
6522
- width: 100%;
6523
- -js-display: flex;
6524
- display: -webkit-box;
6525
- display: -webkit-flex;
6526
- display: -moz-box;
6527
- display: -ms-flexbox;
6528
- display: flex;
6529
- height: auto;
6530
- -webkit-box-shadow: none;
6531
- box-shadow: none; }
6532
- .premium-progressbar-bar-wrap .progress-segment {
6533
- position: relative;
6534
- width: 25px;
6535
- height: 25px;
6536
- -webkit-border-radius: 50%;
6537
- border-radius: 50%;
6538
- overflow: hidden;
6539
- background-color: #f5f5f5; }
6540
- .premium-progressbar-bar-wrap .progress-segment.filled {
6541
- background: #6ec1e4; }
6542
- .premium-progressbar-bar-wrap .progress-segment:not(:first-child):not(:last-child) {
6543
- margin: 0 4px; }
6544
- .premium-progressbar-bar-wrap .progress-segment:first-child {
6545
- margin-right: 4px; }
6546
- .premium-progressbar-bar-wrap .progress-segment:last-child {
6547
- margin-left: 4px; }
6548
- .premium-progressbar-bar-wrap .progress-segment .segment-inner {
6549
- position: absolute;
6550
- top: 0;
6551
- left: 0;
6552
- height: 100%;
6553
- background-color: #6ec1e4; }
6554
-
6555
- .premium-progressbar-bar {
6556
- float: left;
6557
- width: 0%;
6558
- height: 100%;
6559
- font-size: 12px;
6560
- line-height: 20px;
6561
- background: #6ec1e4;
6562
- text-align: center;
6563
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
6564
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); }
6565
-
6566
- .premium-progressbar-striped .premium-progressbar-bar {
6567
- 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);
6568
- 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);
6569
- -webkit-background-size: 40px 40px;
6570
- background-size: 40px 40px; }
6571
-
6572
- .premium-progressbar-active .premium-progressbar-bar {
6573
- -webkit-animation: progress-bar-stripes 2s linear infinite;
6574
- animation: progress-bar-stripes 2s linear infinite; }
6575
-
6576
- .premium-progressbar-gradient .premium-progressbar-bar {
6577
- -webkit-background-size: 400% 400% !important;
6578
- background-size: 400% 400% !important;
6579
- -webkit-animation: progress-bar-gradient 10s ease-in-out infinite;
6580
- animation: progress-bar-gradient 10s ease-in-out infinite; }
6581
-
6582
- .premium-progressbar-bar {
6583
- position: absolute;
6584
- overflow: hidden;
6585
- line-height: 20px; }
6586
-
6587
- .premium-progressbar-container .clearfix {
6588
- clear: both; }
6589
-
6590
- .premium-progressbar-bar {
6591
- -webkit-transition: width 0s ease-in-out !important;
6592
- transition: width 0s ease-in-out !important; }
6593
-
6594
- .premium-progressbar-container p:first-of-type {
6595
- margin: 0;
6596
- float: left; }
6597
-
6598
- .premium-progressbar-container p:nth-of-type(2) {
6599
- margin: 0;
6600
- float: right; }
6601
-
6602
- .premium-progressbar-name {
6603
- left: 50%;
6604
- top: 0;
6605
- right: 0;
6606
- -webkit-transform: translateX(-12.5px);
6607
- -ms-transform: translateX(-12.5px);
6608
- transform: translateX(-12.5px);
6609
- z-index: 1; }
6610
-
6611
- .premium-progressbar-multiple-label {
6612
- position: relative;
6613
- float: left;
6614
- width: 0;
6615
- left: 50%; }
6616
-
6617
- .premium-progressbar-center-label {
6618
- position: relative;
6619
- white-space: nowrap; }
6620
-
6621
- .premium-progressbar-arrow {
6622
- height: 15px;
6623
- left: 50%;
6624
- display: inline-block;
6625
- border-left: 7px solid transparent;
6626
- border-right: 7px solid transparent;
6627
- border-top: 11px solid;
6628
- -webkit-transform: translateX(-50%);
6629
- -ms-transform: translateX(-50%);
6630
- transform: translateX(-50%); }
6631
-
6632
- .premium-progressbar-pin {
6633
- border-left: 1px solid;
6634
- height: 12px;
6635
- left: 50%;
6636
- display: inline-block; }
6637
-
6638
- /**
6639
- * Circle Progress Bar
6640
- */
6641
- .premium-progressbar-circle-wrap,
6642
- .premium-progressbar-hf-circle-wrap {
6643
- width: 200px;
6644
- height: 200px;
6645
- position: relative;
6646
- margin: 0 auto; }
6647
- .premium-progressbar-circle-wrap .premium-progressbar-circle-content,
6648
- .premium-progressbar-hf-circle-wrap .premium-progressbar-circle-content {
6649
- position: absolute;
6650
- top: 0;
6651
- left: 0;
6652
- width: 100%;
6653
- height: 100%;
6654
- -js-display: flex;
6655
- display: -webkit-box;
6656
- display: -webkit-flex;
6657
- display: -moz-box;
6658
- display: -ms-flexbox;
6659
- display: flex;
6660
- -webkit-box-orient: vertical;
6661
- -webkit-box-direction: normal;
6662
- -webkit-flex-direction: column;
6663
- -moz-box-orient: vertical;
6664
- -moz-box-direction: normal;
6665
- -ms-flex-direction: column;
6666
- flex-direction: column;
6667
- -webkit-box-pack: center;
6668
- -webkit-justify-content: center;
6669
- -moz-box-pack: center;
6670
- -ms-flex-pack: center;
6671
- justify-content: center;
6672
- -webkit-box-align: center;
6673
- -webkit-align-items: center;
6674
- -moz-box-align: center;
6675
- -ms-flex-align: center;
6676
- align-items: center;
6677
- text-align: center; }
6678
- .premium-progressbar-circle-wrap .premium-lottie-animation,
6679
- .premium-progressbar-hf-circle-wrap .premium-lottie-animation {
6680
- line-height: 1; }
6681
-
6682
- .premium-progressbar-circle-wrap .premium-progressbar-circle {
6683
- position: absolute;
6684
- top: 0;
6685
- left: 0;
6686
- width: 100%;
6687
- height: 100%;
6688
- -webkit-clip-path: inset(0 0 0 50%);
6689
- clip-path: inset(0 0 0 50%); }
6690
- .premium-progressbar-circle-wrap .premium-progressbar-circle div {
6691
- position: absolute;
6692
- left: 0;
6693
- top: 0;
6694
- height: 100%;
6695
- width: 100%;
6696
- border-width: 6px;
6697
- border-style: solid;
6698
- border-color: #54595f;
6699
- -webkit-border-radius: 50%;
6700
- border-radius: 50%;
6701
- -webkit-clip-path: inset(0 50% 0 0);
6702
- clip-path: inset(0 50% 0 0); }
6703
- .premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-left {
6704
- -webkit-transform: rotate(0);
6705
- -ms-transform: rotate(0);
6706
- transform: rotate(0); }
6707
- .premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-right {
6708
- -webkit-transform: rotate(180deg);
6709
- -ms-transform: rotate(180deg);
6710
- transform: rotate(180deg);
6711
- visibility: hidden; }
6712
-
6713
- .premium-progressbar-circle-wrap .premium-progressbar-circle-base {
6714
- width: 100%;
6715
- height: 100%;
6716
- border: 6px solid #eee;
6717
- -webkit-border-radius: 50%;
6718
- border-radius: 50%; }
6719
-
6720
- /**
6721
- * Half Circle Progress Bar
6722
- */
6723
- .premium-progressbar-hf-container {
6724
- position: relative;
6725
- width: 200px;
6726
- height: 200px; }
6727
-
6728
- .premium-progressbar-hf-circle-wrap {
6729
- overflow: hidden; }
6730
- .premium-progressbar-hf-circle-wrap .premium-progressbar-left-label {
6731
- -webkit-box-ordinal-group: 2;
6732
- -webkit-order: 1;
6733
- -moz-box-ordinal-group: 2;
6734
- -ms-flex-order: 1;
6735
- order: 1; }
6736
-
6737
- .premium-progressbar-hf-circle {
6738
- position: absolute;
6739
- top: 0;
6740
- left: 0;
6741
- width: 100%;
6742
- height: 100%;
6743
- -webkit-clip-path: inset(0 0 50% 0);
6744
- clip-path: inset(0 0 50% 0); }
6745
-
6746
- .premium-progressbar-hf-circle-progress {
6747
- position: absolute;
6748
- left: 0;
6749
- top: 0;
6750
- height: 100%;
6751
- width: 100%;
6752
- border: 12px solid #000;
6753
- -webkit-border-radius: 50%;
6754
- border-radius: 50%;
6755
- -webkit-clip-path: inset(50% 0 0 0);
6756
- clip-path: inset(50% 0 0 0);
6757
- -webkit-transform: rotate(0deg);
6758
- -ms-transform: rotate(0deg);
6759
- transform: rotate(0deg);
6760
- -webkit-transition: -webkit-transform 1500ms linear;
6761
- transition: -webkit-transform 1500ms linear;
6762
- transition: transform 1500ms linear;
6763
- transition: transform 1500ms linear, -webkit-transform 1500ms linear; }
6764
-
6765
- .premium-progressbar-circle-inner {
6766
- height: 100%;
6767
- width: 100%;
6768
- border: 12px solid #eee;
6769
- -webkit-border-radius: 50%;
6770
- border-radius: 50%; }
6771
-
6772
- .premium-progressbar-hf-labels {
6773
- margin: 0 auto;
6774
- position: relative;
6775
- font-size: 12px;
6776
- font-weight: 400;
6777
- -js-display: flex;
6778
- display: -webkit-box;
6779
- display: -webkit-flex;
6780
- display: -moz-box;
6781
- display: -ms-flexbox;
6782
- display: flex;
6783
- -webkit-box-pack: justify;
6784
- -webkit-justify-content: space-between;
6785
- -moz-box-pack: justify;
6786
- -ms-flex-pack: justify;
6787
- justify-content: space-between; }
6788
-
6789
- @-webkit-keyframes progress-bar-stripes {
6790
- from {
6791
- background-position: 0 0; }
6792
- to {
6793
- background-position: 40px 0; } }
6794
-
6795
- @keyframes progress-bar-stripes {
6796
- from {
6797
- background-position: 0 0; }
6798
- to {
6799
- background-position: 40px 0; } }
6800
-
6801
- @-webkit-keyframes progress-bar-gradient {
6802
- 0% {
6803
- background-position: 0% 50%; }
6804
- 50% {
6805
- background-position: 100% 50%; }
6806
- 100% {
6807
- background-position: 0% 50%; } }
6808
-
6809
- @keyframes progress-bar-gradient {
6810
- 0% {
6811
- background-position: 0% 50%; }
6812
- 50% {
6813
- background-position: 100% 50%; }
6814
- 100% {
6815
- background-position: 0% 50%; } }
6816
-
6817
- @media (max-width: 768px) {
6818
- .premium-progressbar-center-label {
6819
- -webkit-transform: rotate(-90deg) !important;
6820
- -ms-transform: rotate(-90deg) !important;
6821
- transform: rotate(-90deg) !important;
6822
- -webkit-transform-origin: 0;
6823
- -ms-transform-origin: 0;
6824
- transform-origin: 0; } }
6825
-
6826
- /**************** Premium Testimonials ****************/
6827
- /******************************************************/
6828
- .premium-testimonial-box {
6829
- width: 100%;
6830
- background: transparent;
6831
- -webkit-transition: all 0.3s ease-in-out;
6832
- transition: all 0.3s ease-in-out; }
6833
- .premium-testimonial-box .premium-testimonial-author-info {
6834
- -js-display: flex;
6835
- display: -webkit-box;
6836
- display: -webkit-flex;
6837
- display: -moz-box;
6838
- display: -ms-flexbox;
6839
- display: flex;
6840
- -webkit-box-pack: center;
6841
- -webkit-justify-content: center;
6842
- -moz-box-pack: center;
6843
- -ms-flex-pack: center;
6844
- justify-content: center;
6845
- -webkit-box-align: center;
6846
- -webkit-align-items: center;
6847
- -moz-box-align: center;
6848
- -ms-flex-align: center;
6849
- align-items: center; }
6850
- .premium-testimonial-box .premium-testimonial-person-name,
6851
- .premium-testimonial-box .premium-testimonial-company-name {
6852
- font-weight: 600;
6853
- margin: 0; }
6854
-
6855
- .premium-testimonial-container {
6856
- position: relative; }
6857
-
6858
- .premium-testimonial-img-wrapper {
6859
- margin-left: auto;
6860
- margin-right: auto;
6861
- overflow: hidden;
6862
- border-style: solid !important; }
6863
- .premium-testimonial-img-wrapper.circle {
6864
- -webkit-border-radius: 50%;
6865
- border-radius: 50%; }
6866
- .premium-testimonial-img-wrapper.rounded {
6867
- -webkit-border-radius: 15px;
6868
- border-radius: 15px; }
6869
- .premium-testimonial-img-wrapper img {
6870
- -o-object-fit: cover;
6871
- object-fit: cover;
6872
- width: 100%;
6873
- height: 100% !important; }
6874
-
6875
- .premium-testimonial-content-wrapper {
6876
- position: relative;
6877
- -js-display: flex;
6878
- display: -webkit-box;
6879
- display: -webkit-flex;
6880
- display: -moz-box;
6881
- display: -ms-flexbox;
6882
- display: flex;
6883
- -webkit-box-orient: vertical;
6884
- -webkit-box-direction: normal;
6885
- -webkit-flex-direction: column;
6886
- -moz-box-orient: vertical;
6887
- -moz-box-direction: normal;
6888
- -ms-flex-direction: column;
6889
- flex-direction: column;
6890
- z-index: 2;
6891
- width: 100%;
6892
- padding: 20px;
6893
- text-align: center; }
6894
-
6895
- .premium-testimonial-clear-float {
6896
- clear: both; }
6897
-
6898
- .premium-testimonial-upper-quote,
6899
- .premium-testimonial-lower-quote {
6900
- position: absolute;
6901
- z-index: 1; }
6902
-
6903
- /**************** Premium Title ****************/
6904
- /***********************************************/
6905
- .premium-title-container .premium-title-header {
6906
- position: relative;
6907
- margin: 0;
6908
- padding: 10px; }
6909
- .premium-title-container .premium-title-header:not(.premium-title-style7) {
6910
- -webkit-box-align: center;
6911
- -webkit-align-items: center;
6912
- -moz-box-align: center;
6913
- -ms-flex-align: center;
6914
- align-items: center; }
6915
- .premium-title-container .premium-title-header svg {
6916
- width: 40px;
6917
- height: 40px; }
6918
- .premium-title-container .premium-title-header img {
6919
- width: 40px;
6920
- height: 40px;
6921
- -o-object-fit: cover;
6922
- object-fit: cover; }
6923
- .premium-title-container .premium-title-header a {
6924
- position: absolute;
6925
- top: 0;
6926
- left: 0;
6927
- width: 100%;
6928
- height: 100%; }
6929
-
6930
- .premium-title-container .premium-lottie-animation {
6931
- -js-display: flex;
6932
- display: -webkit-box;
6933
- display: -webkit-flex;
6934
- display: -moz-box;
6935
- display: -ms-flexbox;
6936
- display: flex; }
6937
-
6938
- .premium-title-icon-row .premium-title-icon {
6939
- margin-right: 10px; }
6940
-
6941
- .premium-title-icon-row-reverse .premium-title-icon {
6942
- margin-left: 10px; }
6943
-
6944
- .premium-title-style3,
6945
- .premium-title-style4 {
6946
- -js-display: flex;
6947
- display: -webkit-box;
6948
- display: -webkit-flex;
6949
- display: -moz-box;
6950
- display: -ms-flexbox;
6951
- display: flex; }
6952
-
6953
- .premium-title-style1,
6954
- .premium-title-style2,
6955
- .premium-title-style5,
6956
- .premium-title-style6,
6957
- .premium-title-style8,
6958
- .premium-title-style9 {
6959
- -js-display: inline-flex;
6960
- display: -webkit-inline-box;
6961
- display: -webkit-inline-flex;
6962
- display: -moz-inline-box;
6963
- display: -ms-inline-flexbox;
6964
- display: inline-flex; }
6965
-
6966
- .premium-title-style7 {
6967
- -js-display: inline-flex;
6968
- display: -webkit-inline-box;
6969
- display: -webkit-inline-flex;
6970
- display: -moz-inline-box;
6971
- display: -ms-inline-flexbox;
6972
- display: inline-flex;
6973
- -webkit-box-orient: vertical;
6974
- -webkit-box-direction: normal;
6975
- -webkit-flex-direction: column;
6976
- -moz-box-orient: vertical;
6977
- -moz-box-direction: normal;
6978
- -ms-flex-direction: column;
6979
- flex-direction: column; }
6980
- .premium-title-style7 .premium-title-style7-inner {
6981
- -js-display: flex;
6982
- display: -webkit-box;
6983
- display: -webkit-flex;
6984
- display: -moz-box;
6985
- display: -ms-flexbox;
6986
- display: flex;
6987
- -webkit-box-align: center;
6988
- -webkit-align-items: center;
6989
- -moz-box-align: center;
6990
- -ms-flex-align: center;
6991
- align-items: center; }
6992
-
6993
- .premium-title-style1 {
6994
- border-width: 0;
6995
- border-left: 3px solid #6ec1e4; }
6996
-
6997
- .premium-title-container.style2, .premium-title-container.style4, .premium-title-container.style5, .premium-title-container.style6 {
6998
- border-bottom: 3px solid #6ec1e4; }
6999
-
7000
- /*Style 6 Header*/
7001
- .premium-title-style6:before {
7002
- position: absolute;
7003
- left: 50%;
7004
- bottom: 0;
7005
- margin-left: -2px;
7006
- content: "";
7007
- border: 3px solid transparent; }
7008
-
7009
- /*Style 6 Trinagle*/
7010
- .premium-title-style7-stripe-wrap {
7011
- -js-display: flex;
7012
- display: -webkit-box;
7013
- display: -webkit-flex;
7014
- display: -moz-box;
7015
- display: -ms-flexbox;
7016
- display: flex; }
7017
-
7018
- .premium-title-style7:before {
7019
- display: none; }
7020
-
7021
- .premium-title-style8 .premium-title-text[data-animation="shiny"] {
7022
- -webkit-background-size: 125px 125px !important;
7023
- background-size: 125px !important;
7024
- color: rgba(255, 255, 255, 0);
7025
- -webkit-background-clip: text !important;
7026
- background-clip: text !important;
7027
- -webkit-animation-name: pa-shinny-text !important;
7028
- animation-name: pa-shinny-text !important;
7029
- -webkit-animation-duration: var(--animation-speed) !important;
7030
- animation-duration: var(--animation-speed) !important;
7031
- -webkit-animation-iteration-count: infinite !important;
7032
- animation-iteration-count: infinite !important;
7033
- 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; }
7034
-
7035
- @-webkit-keyframes pa-shinny-text {
7036
- 0% {
7037
- background-position: 0%; }
7038
- 100% {
7039
- background-position: 200%; } }
7040
-
7041
- @keyframes pa-shinny-text {
7042
- 0% {
7043
- background-position: 0%; }
7044
- 100% {
7045
- background-position: 200%; } }
7046
-
7047
- .premium-title-style9[data-animation-blur="process"] .premium-title-style9-letter {
7048
- -webkit-animation: pa-blur-shadow 2s 1 alternate;
7049
- animation: pa-blur-shadow 2s 1 alternate; }
7050
-
7051
- @-webkit-keyframes pa-blur-shadow {
7052
- from {
7053
- text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
7054
- color: transparent; }
7055
- to {
7056
- text-shadow: 0; } }
7057
-
7058
- @keyframes pa-blur-shadow {
7059
- from {
7060
- text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
7061
- color: transparent; }
7062
- to {
7063
- text-shadow: 0; } }
7064
-
7065
- .premium-title-gradient-yes .premium-title-text,
7066
- .premium-title-gradient-yes .premium-title-icon {
7067
- -webkit-background-clip: text;
7068
- -webkit-text-fill-color: transparent;
7069
- background-image: -webkit-gradient(linear, left top, right top, from(#ffa648), color-stop(#f17cc1), to(#4da9fd));
7070
- background-image: -webkit-linear-gradient(left, #ffa648, #f17cc1, #4da9fd);
7071
- background-image: linear-gradient(to right, #ffa648, #f17cc1, #4da9fd);
7072
- -webkit-animation: pa-text-gradient 8s infinite;
7073
- animation: pa-text-gradient 8s infinite; }
7074
-
7075
- .premium-title-clipped .premium-title-header {
7076
- -webkit-text-fill-color: transparent;
7077
- -webkit-background-clip: text;
7078
- background-clip: text; }
7079
-
7080
- @-webkit-keyframes pa-text-gradient {
7081
- 0%,
7082
- 100% {
7083
- -webkit-filter: hue-rotate(0deg);
7084
- filter: hue-rotate(0deg); }
7085
- 50% {
7086
- -webkit-filter: hue-rotate(360deg);
7087
- filter: hue-rotate(360deg); } }
7088
-
7089
- @keyframes pa-text-gradient {
7090
- 0%,
7091
- 100% {
7092
- -webkit-filter: hue-rotate(0deg);
7093
- filter: hue-rotate(0deg); }
7094
- 50% {
7095
- -webkit-filter: hue-rotate(360deg);
7096
- filter: hue-rotate(360deg); } }
7097
-
7098
- /**************** Premium Video Box ************/
7099
- /***********************************************/
7100
- .premium-video-box-transform {
7101
- -webkit-transform: none !important;
7102
- -ms-transform: none !important;
7103
- transform: none !important; }
7104
-
7105
- .premium-video-box-container {
7106
- -js-display: flex;
7107
- display: -webkit-box;
7108
- display: -webkit-flex;
7109
- display: -moz-box;
7110
- display: -ms-flexbox;
7111
- display: flex;
7112
- -webkit-box-orient: vertical;
7113
- -webkit-box-direction: normal;
7114
- -webkit-flex-direction: column;
7115
- -moz-box-orient: vertical;
7116
- -moz-box-direction: normal;
7117
- -ms-flex-direction: column;
7118
- flex-direction: column; }
7119
-
7120
- .premium-video-box-container > div {
7121
- position: relative;
7122
- overflow: hidden; }
7123
-
7124
- .pa-aspect-ratio-11 .premium-video-box-container > div {
7125
- padding-bottom: 100%; }
7126
-
7127
- .pa-aspect-ratio-169 .premium-video-box-container > div {
7128
- padding-bottom: 56.25%; }
7129
-
7130
- .pa-aspect-ratio-43 .premium-video-box-container > div {
7131
- padding-bottom: 75%; }
7132
-
7133
- .pa-aspect-ratio-32 .premium-video-box-container > div {
7134
- padding-bottom: 66.6666%; }
7135
-
7136
- .pa-aspect-ratio-219 .premium-video-box-container > div {
7137
- padding-bottom: 42.8571%; }
7138
-
7139
- .pa-aspect-ratio-916 .premium-video-box-container > div {
7140
- padding-bottom: 177.8%; }
7141
-
7142
- .premium-video-box-image-container {
7143
- position: absolute;
7144
- top: 0;
7145
- left: 0;
7146
- bottom: 0;
7147
- right: 0;
7148
- width: 100%;
7149
- height: 100%;
7150
- -webkit-background-size: cover;
7151
- background-size: cover;
7152
- background-position: 50%;
7153
- cursor: pointer;
7154
- margin: auto;
7155
- -webkit-transition: 0.2s all;
7156
- transition: 0.2s all; }
7157
-
7158
- .premium-video-box-play-icon-container {
7159
- position: absolute;
7160
- z-index: 2;
7161
- cursor: pointer;
7162
- -webkit-transform: translate(-50%, -50%);
7163
- -ms-transform: translate(-50%, -50%);
7164
- transform: translate(-50%, -50%);
7165
- background: rgba(252, 252, 252, 0.35); }
7166
-
7167
- .premium-video-box-description-container {
7168
- position: absolute;
7169
- z-index: 2;
7170
- padding: 5px;
7171
- text-align: center;
7172
- cursor: pointer;
7173
- -webkit-transform: translate(-50%, -50%);
7174
- -ms-transform: translate(-50%, -50%);
7175
- transform: translate(-50%, -50%); }
7176
-
7177
- .premium-video-box-text {
7178
- margin-bottom: 0 !important;
7179
- -webkit-transition: all 0.3s ease-in-out;
7180
- transition: all 0.3s ease-in-out; }
7181
-
7182
- .premium-video-box-play-icon {
7183
- padding: 15px;
7184
- -webkit-transform: translateX(4%);
7185
- -ms-transform: translateX(4%);
7186
- transform: translateX(4%);
7187
- -webkit-transition: all 0.3s ease-in-out;
7188
- transition: all 0.3s ease-in-out; }
7189
-
7190
- .premium-video-box-video-container,
7191
- .premium-vid-lightbox-container {
7192
- position: absolute;
7193
- top: 0;
7194
- left: 0;
7195
- z-index: 2;
7196
- width: 100%;
7197
- height: 100%;
7198
- -webkit-transition: opacity 0.8s ease-in-out;
7199
- transition: opacity 0.8s ease-in-out;
7200
- overflow: hidden;
7201
- cursor: pointer; }
7202
-
7203
- .premium-video-box-container[data-overlay="true"][data-type="self"] .premium-video-box-video-container {
7204
- opacity: 0;
7205
- visibility: hidden; }
7206
-
7207
- .premium-video-box-video-container iframe {
7208
- max-width: 100%;
7209
- width: 100%;
7210
- height: 100%;
7211
- margin: 0;
7212
- line-height: 1;
7213
- border: none; }
7214
-
7215
- .premium-video-box-video-container video {
7216
- max-width: 100%;
7217
- width: 100%;
7218
- height: 100%;
7219
- margin: 0;
7220
- line-height: 1;
7221
- border: none;
7222
- background-color: #000;
7223
- -o-object-fit: contain;
7224
- object-fit: contain; }
7225
-
7226
- .premium-video-box-container .premium-video-box-vimeo-wrap {
7227
- -js-display: flex;
7228
- display: -webkit-box;
7229
- display: -webkit-flex;
7230
- display: -moz-box;
7231
- display: -ms-flexbox;
7232
- display: flex;
7233
- position: absolute;
7234
- top: 0;
7235
- left: 0;
7236
- z-index: 3;
7237
- margin: 10px;
7238
- margin-right: 10px;
7239
- -webkit-transition: opacity 0.2s ease-out;
7240
- transition: opacity 0.2s ease-out;
7241
- margin-right: 4.6em; }
7242
-
7243
- .premium-video-box-vimeo-wrap .premium-video-box-vimeo-portrait {
7244
- width: 60px;
7245
- height: 60px;
7246
- background: rgba(23, 35, 34, 0.75);
7247
- margin-right: 1px;
7248
- -webkit-box-flex: 1;
7249
- -webkit-flex: 1 0 auto;
7250
- -moz-box-flex: 1;
7251
- -ms-flex: 1 0 auto;
7252
- flex: 1 0 auto;
7253
- padding: 0; }
7254
-
7255
- .premium-video-box-vimeo-portrait img {
7256
- width: 50px;
7257
- height: 50px;
7258
- margin: 5px;
7259
- padding: 0;
7260
- border: 0;
7261
- -webkit-border-radius: 50%;
7262
- border-radius: 50%; }
7263
-
7264
- .premium-video-box-vimeo-wrap .premium-video-box-vimeo-headers {
7265
- font-size: 10px; }
7266
-
7267
- .premium-video-box-vimeo-wrap .premium-video-box-vimeo-title {
7268
- max-width: 100%;
7269
- font-size: 2em !important;
7270
- font-weight: 700;
7271
- margin: 0;
7272
- padding: 0.1em 0.2em;
7273
- background: rgba(23, 35, 34, 0.75);
7274
- display: inline-block;
7275
- text-transform: none;
7276
- line-height: normal;
7277
- letter-spacing: normal; }
7278
-
7279
- .premium-video-box-vimeo-wrap .premium-video-box-vimeo-byline {
7280
- font-size: 1.2em !important;
7281
- font-weight: 400;
7282
- color: #fff;
7283
- margin-top: 0.1em;
7284
- padding: 0.2em 0.5em;
7285
- background: rgba(23, 35, 34, 0.75);
7286
- text-transform: none;
7287
- line-height: normal;
7288
- letter-spacing: normal; }
7289
-
7290
- .premium-video-box-playlist-container {
7291
- -js-display: flex;
7292
- display: -webkit-box;
7293
- display: -webkit-flex;
7294
- display: -moz-box;
7295
- display: -ms-flexbox;
7296
- display: flex;
7297
- -webkit-flex-wrap: wrap;
7298
- -ms-flex-wrap: wrap;
7299
- flex-wrap: wrap; }
7300
- .premium-video-box-playlist-container .premium-video-box-container {
7301
- height: 100%;
7302
- overflow: hidden; }
7303
-
7304
- .premium-video-box-container:hover .premium-video-box-image-container.zoomin {
7305
- -webkit-transform: scale(1.1);
7306
- -ms-transform: scale(1.1);
7307
- transform: scale(1.1); }
7308
-
7309
- .premium-video-box-container:hover .premium-video-box-image-container.zoomout {
7310
- -webkit-transform: scale(1);
7311
- -ms-transform: scale(1);
7312
- transform: scale(1); }
7313
-
7314
- .premium-video-box-container:hover .premium-video-box-image-container.scale {
7315
- -webkit-transform: scale(1.3) rotate(5deg);
7316
- -ms-transform: scale(1.3) rotate(5deg);
7317
- transform: scale(1.3) rotate(5deg); }
7318
-
7319
- .premium-video-box-container:hover .premium-video-box-image-container.gray {
7320
- -webkit-filter: grayscale(0%);
7321
- filter: grayscale(0%); }
7322
-
7323
- .premium-video-box-container:hover .premium-video-box-image-container.blur {
7324
- -webkit-filter: blur(3px);
7325
- filter: blur(3px); }
7326
-
7327
- .premium-video-box-container:hover .premium-video-box-image-container.sepia {
7328
- -webkit-filter: sepia(0%);
7329
- filter: sepia(0%); }
7330
-
7331
- .premium-video-box-container:hover .premium-video-box-image-container.trans {
7332
- -webkit-transform: translateX(0px) scale(1.1);
7333
- -ms-transform: translateX(0px) scale(1.1);
7334
- transform: translateX(0px) scale(1.1); }
7335
-
7336
- .premium-video-box-container:hover .premium-video-box-image-container.bright {
7337
- -webkit-filter: brightness(1.2);
7338
- filter: brightness(1.2); }
7339
-
7340
- .premium-video-box-image-container.gray {
7341
- -webkit-filter: grayscale(100%);
7342
- filter: grayscale(100%); }
7343
-
7344
- .premium-video-box-image-container.zoomout, .premium-video-box-image-container.scale {
7345
- -webkit-transform: scale(1.2);
7346
- -ms-transform: scale(1.2);
7347
- transform: scale(1.2); }
7348
-
7349
- .premium-video-box-image-container.sepia {
7350
- -webkit-filter: sepia(30%);
7351
- filter: sepia(30%); }
7352
-
7353
- .premium-video-box-image-container.bright {
7354
- -webkit-filter: brightness(1);
7355
- filter: brightness(1); }
7356
-
7357
- .premium-video-box-image-container.trans {
7358
- -webkit-transform: translateX(-15px) scale(1.1);
7359
- -ms-transform: translateX(-15px) scale(1.1);
7360
- transform: translateX(-15px) scale(1.1); }
7361
-
7362
- .premium-video-box-mask-media {
7363
- -webkit-mask-repeat: no-repeat;
7364
- mask-repeat: no-repeat; }
7365
-
7366
- /* Sticky Video Option */
7367
- .premium-video-box-container.premium-video-box-sticky-apply {
7368
- z-index: 99;
7369
- overflow: unset; }
7370
- .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
7371
- position: fixed !important;
7372
- z-index: 99999;
7373
- height: 225px;
7374
- width: 400px;
7375
- background: #fff; }
7376
- .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-vimeo-wrap,
7377
- .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-container:before {
7378
- visibility: hidden; }
7379
- .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 {
7380
- -webkit-box-shadow: unset;
7381
- box-shadow: unset; }
7382
-
7383
- .premium-video-box-sticky-close,
7384
- .premium-video-box-sticky-infobar {
7385
- display: none; }
7386
-
7387
- .premium-video-box-sticky-apply .premium-video-box-sticky-close {
7388
- position: absolute;
7389
- padding: 5px;
7390
- cursor: pointer;
7391
- z-index: 99999;
7392
- height: 14px;
7393
- width: 14px;
7394
- -webkit-box-sizing: content-box;
7395
- -moz-box-sizing: content-box;
7396
- box-sizing: content-box;
7397
- -webkit-border-radius: 100%;
7398
- border-radius: 100%;
7399
- -js-display: flex;
7400
- display: -webkit-box;
7401
- display: -webkit-flex;
7402
- display: -moz-box;
7403
- display: -ms-flexbox;
7404
- display: flex;
7405
- -webkit-box-pack: center;
7406
- -webkit-justify-content: center;
7407
- -moz-box-pack: center;
7408
- -ms-flex-pack: center;
7409
- justify-content: center;
7410
- -webkit-box-align: center;
7411
- -webkit-align-items: center;
7412
- -moz-box-align: center;
7413
- -ms-flex-align: center;
7414
- align-items: center; }
7415
-
7416
- .premium-video-box-sticky-apply .premium-video-box-play-icon-container {
7417
- -js-display: flex;
7418
- display: -webkit-box;
7419
- display: -webkit-flex;
7420
- display: -moz-box;
7421
- display: -ms-flexbox;
7422
- display: flex; }
7423
-
7424
- .premium-video-box-sticky-apply .premium-video-box-play-icon {
7425
- -webkit-transition: none;
7426
- transition: none; }
7427
-
7428
- .premium-video-box-sticky-apply .premium-video-box-sticky-infobar {
7429
- display: block;
7430
- position: relative;
7431
- top: 100%;
7432
- width: 100%;
7433
- padding: 5px;
7434
- text-align: center;
7435
- z-index: 9999;
7436
- margin-top: -1px; }
7437
-
7438
- .premium-video-box-sticky-apply .premium-video-box-inner-wrap.ui-draggable {
7439
- cursor: move; }
7440
-
7441
- .premium-video-sticky-top-left
7442
- .premium-video-box-container.premium-video-box-sticky-apply
7443
- .premium-video-box-inner-wrap {
7444
- right: auto;
7445
- left: 20px;
7446
- top: 20px; }
7447
-
7448
- .premium-video-sticky-bottom-left
7449
- .premium-video-box-container.premium-video-box-sticky-apply
7450
- .premium-video-box-inner-wrap {
7451
- right: auto;
7452
- left: 20px;
7453
- bottom: 20px; }
7454
-
7455
- .premium-video-sticky-top-right
7456
- .premium-video-box-container.premium-video-box-sticky-apply
7457
- .premium-video-box-inner-wrap {
7458
- left: auto;
7459
- right: 20px;
7460
- top: 20px; }
7461
-
7462
- .premium-video-sticky-bottom-right
7463
- .premium-video-box-container.premium-video-box-sticky-apply
7464
- .premium-video-box-inner-wrap {
7465
- left: auto;
7466
- right: 20px;
7467
- bottom: 20px; }
7468
-
7469
- .premium-video-sticky-center-left
7470
- .premium-video-box-container.premium-video-box-sticky-apply
7471
- .premium-video-box-inner-wrap {
7472
- right: auto;
7473
- left: 20px;
7474
- top: 50%;
7475
- -webkit-transform: translateY(-50%);
7476
- -ms-transform: translateY(-50%);
7477
- transform: translateY(-50%); }
7478
-
7479
- .premium-video-sticky-center-right
7480
- .premium-video-box-container.premium-video-box-sticky-apply
7481
- .premium-video-box-inner-wrap {
7482
- left: auto;
7483
- right: 20px;
7484
- top: 50%;
7485
- -webkit-transform: translateY(-50%);
7486
- -ms-transform: translateY(-50%);
7487
- transform: translateY(-50%); }
7488
-
7489
- .premium-video-sticky-bottom-right
7490
- .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply
7491
- .premium-video-box-inner-wrap,
7492
- .premium-video-sticky-bottom-left
7493
- .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply
7494
- .premium-video-box-inner-wrap {
7495
- bottom: 55px; }
7496
-
7497
- .premium-video-sticky-top-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
7498
- .premium-video-sticky-bottom-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
7499
- .premium-video-sticky-center-left .premium-video-box-sticky-apply .premium-video-box-sticky-close {
7500
- top: -10px;
7501
- right: -10px; }
7502
-
7503
- .premium-video-sticky-top-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
7504
- .premium-video-sticky-bottom-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
7505
- .premium-video-sticky-center-right .premium-video-box-sticky-apply .premium-video-box-sticky-close {
7506
- top: -10px;
7507
- left: -10px; }
7508
-
7509
- .premium-video-box-filter-sticky {
7510
- -webkit-filter: none !important;
7511
- filter: none !important; }
7512
-
7513
- .premium-mscroll-yes.elementor-widget-premium-addon-video-box div {
7514
- cursor: default; }
7515
-
7516
- /************ Premium Vertical Scroll ************/
7517
- /*************************************************/
7518
- .premium-vscroll-inner {
7519
- position: relative;
7520
- min-height: 100%; }
7521
- .premium-vscroll-inner .premium-vscroll-dots {
7522
- position: fixed;
7523
- z-index: 100;
7524
- opacity: 1;
7525
- margin-top: -32px;
7526
- -webkit-transition: all 0.3s ease-in-out;
7527
- transition: all 0.3s ease-in-out; }
7528
-
7529
- .premium-vscroll-wrap .premium-vscroll-nav-menu {
7530
- opacity: 1;
7531
- -webkit-transition: all 0.3s ease-in-out;
7532
- transition: all 0.3s ease-in-out; }
7533
-
7534
- .premium-vscroll-inner .premium-vscroll-dots,
7535
- .premium-vscroll-wrap .premium-vscroll-dots-hide {
7536
- opacity: 0;
7537
- visibility: hidden; }
7538
-
7539
- .premium-vscroll-nav-dots-yes .premium-vscroll-inner .premium-vscroll-dots:not(.premium-vscroll-dots-hide) {
7540
- opacity: 1;
7541
- visibility: visible; }
7542
-
7543
- .premium-vscroll-dots.middle {
7544
- top: 50%;
7545
- margin-top: 0;
7546
- -webkit-transform: translateY(-50%);
7547
- -ms-transform: translateY(-50%);
7548
- transform: translateY(-50%); }
7549
-
7550
- .premium-vscroll-dots.top {
7551
- top: 40px; }
7552
-
7553
- .premium-vscroll-dots.bottom {
7554
- bottom: 30px; }
7555
-
7556
- .premium-vscroll-dots.right {
7557
- right: 17px; }
7558
-
7559
- .premium-vscroll-dots.left {
7560
- left: 17px; }
7561
-
7562
- .premium-vscroll-inner ul.premium-vscroll-dots-list,
7563
- .premium-vscroll-wrap .premium-vscroll-nav-menu {
7564
- margin: 0 !important;
7565
- padding: 0; }
7566
-
7567
- .premium-vscroll-inner ul.premium-vscroll-dots-list li {
7568
- width: 14px;
7569
- height: 13px;
7570
- margin: 7px;
7571
- position: relative;
7572
- -js-display: flex;
7573
- display: -webkit-box;
7574
- display: -webkit-flex;
7575
- display: -moz-box;
7576
- display: -ms-flexbox;
7577
- display: flex;
7578
- -webkit-box-pack: center;
7579
- -webkit-justify-content: center;
7580
- -moz-box-pack: center;
7581
- -ms-flex-pack: center;
7582
- justify-content: center;
7583
- -webkit-box-align: center;
7584
- -webkit-align-items: center;
7585
- -moz-box-align: center;
7586
- -ms-flex-align: center;
7587
- align-items: center;
7588
- overflow: visible; }
7589
-
7590
- .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link {
7591
- display: block;
7592
- position: relative;
7593
- z-index: 1;
7594
- width: 100%;
7595
- height: 100%;
7596
- cursor: pointer;
7597
- text-decoration: none; }
7598
- .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link span {
7599
- top: 2px;
7600
- left: 2.5px;
7601
- width: 8px;
7602
- height: 8px;
7603
- border: 1px solid #000;
7604
- -webkit-border-radius: 50%;
7605
- border-radius: 50%;
7606
- position: absolute;
7607
- z-index: 1;
7608
- -webkit-transition: all 0.3s ease-in-out;
7609
- transition: all 0.3s ease-in-out; }
7610
-
7611
- .premium-vscroll-inner .premium-vscroll-dot-item.active .premium-vscroll-nav-link span {
7612
- -webkit-transform: scale(1.6);
7613
- -ms-transform: scale(1.6);
7614
- transform: scale(1.6); }
7615
-
7616
- .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-tooltip {
7617
- position: absolute;
7618
- color: #fff;
7619
- font-size: 14px;
7620
- font-family: arial, helvetica, sans-serif;
7621
- white-space: nowrap;
7622
- max-width: 220px;
7623
- padding-left: 0.4em;
7624
- padding-right: 0.4em; }
7625
-
7626
- .premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip {
7627
- right: 27px; }
7628
-
7629
- .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item {
7630
- width: 4px;
7631
- height: 30px; }
7632
- .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item span {
7633
- width: 100%;
7634
- height: 100%;
7635
- -webkit-border-radius: 0;
7636
- border-radius: 0; }
7637
- .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item.active span {
7638
- -webkit-transform: scale(1);
7639
- -ms-transform: scale(1);
7640
- transform: scale(1); }
7641
-
7642
- .premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip::after {
7643
- position: absolute;
7644
- top: 50%;
7645
- content: "";
7646
- left: -webkit-calc(100% - 1px);
7647
- left: calc(100% - 1px);
7648
- width: 10px;
7649
- height: 0;
7650
- border-top: 6px solid transparent;
7651
- border-bottom: 6px solid transparent;
7652
- border-left: 6px solid;
7653
- -webkit-transform: translateY(-50%);
7654
- -ms-transform: translateY(-50%);
7655
- transform: translateY(-50%); }
7656
-
7657
- .premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip {
7658
- left: 27px; }
7659
- .premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip::after {
7660
- position: absolute;
7661
- top: 50%;
7662
- content: "";
7663
- right: -webkit-calc(100% - 1px);
7664
- right: calc(100% - 1px);
7665
- width: 10px;
7666
- height: 0;
7667
- border-top: 6px solid transparent;
7668
- border-bottom: 6px solid transparent;
7669
- border-right: 6px solid;
7670
- -webkit-transform: translateY(-50%);
7671
- -ms-transform: translateY(-50%);
7672
- transform: translateY(-50%); }
7673
-
7674
- /* * Lines */
7675
- @media (max-width: 768px) {
7676
- .premium-vscroll-dots.right {
7677
- right: 7px; }
7678
- .premium-vscroll-dots.left {
7679
- left: 7px; } }
7680
-
7681
- .premium-vscroll-nav-menu {
7682
- position: fixed;
7683
- top: 20px;
7684
- height: 40px;
7685
- z-index: 100;
7686
- padding: 0;
7687
- margin: 0; }
7688
- .premium-vscroll-nav-menu.left {
7689
- left: 0; }
7690
- .premium-vscroll-nav-menu.right {
7691
- right: 0; }
7692
- .premium-vscroll-nav-menu .premium-vscroll-nav-item {
7693
- display: inline-block;
7694
- margin: 10px;
7695
- color: #000;
7696
- background: #fff;
7697
- background: rgba(255, 255, 255, 0.3); }
7698
- .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link {
7699
- padding: 9px 18px;
7700
- display: block;
7701
- cursor: pointer;
7702
- color: #000; }
7703
- .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:hover {
7704
- color: #000; }
7705
- .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:focus {
7706
- outline: none; }
7707
-
7708
- .multiscroll-nav li a:focus {
7709
- outline: none; }
7710
-
7711
- .premium-vscroll-temp .slimScrollBar {
7712
- visibility: hidden; }
7713
-
7714
- [data-hijacking="off"] .premium-vscroll-temp {
7715
- height: 100vh; }
7716
- [data-hijacking="off"] .premium-vscroll-temp > div {
7717
- opacity: 0;
7718
- top: 0;
7719
- left: 0;
7720
- width: 100%;
7721
- /* Force Hardware Acceleration */
7722
- -webkit-transform: translateZ(0);
7723
- transform: translateZ(0);
7724
- -webkit-backface-visibility: hidden;
7725
- backface-visibility: hidden; }
7726
-
7727
- [data-hijacking="off"] .premium-vscroll-temp:first-of-type > div::before {
7728
- display: none;
7729
- position: absolute;
7730
- width: 100%;
7731
- top: 20px;
7732
- z-index: 2; }
7733
-
7734
- [data-hijacking="off"][data-animation="rotate"] .premium-vscroll-temp {
7735
- position: relative;
7736
- /* enable a 3D-space for children elements */
7737
- -webkit-perspective: 1800px;
7738
- perspective: 1800px; }
7739
- [data-hijacking="off"][data-animation="rotate"] .premium-vscroll-temp > div {
7740
- position: absolute;
7741
- -webkit-transform-origin: center bottom;
7742
- -ms-transform-origin: center bottom;
7743
- transform-origin: center bottom; }
7744
- [data-hijacking="off"][data-animation="rotate"] .premium-vscroll-temp:last-of-type > div {
7745
- opacity: 1 !important;
7746
- -webkit-transform: translateY(0px) scale(1) rotateX(0deg) !important;
7747
- transform: translateY(0px) scale(1) rotateX(0deg) !important; }
7748
-
7749
- [data-hijacking="off"][data-animation="parallax"] .premium-vscroll-temp > div {
7750
- position: fixed; }
7751
-
7752
- [data-hijacking="off"][data-animation="scaleDown"] .premium-vscroll-temp > div {
7753
- position: fixed; }
7754
-
7755
- [data-hijacking="off"] .premium-vscroll-parallax-last {
7756
- -webkit-transform: translateY(0px) scale(1) !important;
7757
- -ms-transform: translateY(0px) scale(1) !important;
7758
- transform: translateY(0px) scale(1) !important; }
7759
-
7760
- [data-hijacking="off"] .premium-vscroll-parallax-position {
7761
- position: unset !important; }
7762
-
7763
- /********** Premium Woo Products **********/
7764
- /******************************************/
7765
- .ast-single-post .entry-content .premium-woocommerce a {
7766
- text-decoration: none; }
7767
-
7768
- .premium-woocommerce .premium-woo-qv-btn {
7769
- cursor: pointer; }
7770
-
7771
- .premium-woocommerce:not(.premium-woo-skin-grid-7) li.product .star-rating {
7772
- margin: 0 auto 0.5em; }
7773
-
7774
- .premium-woocommerce:not(.premium-woo-skin-grid-10) .premium-woo-product-sale-wrap .premium-woo-product-onsale,
7775
- .premium-woocommerce:not(.premium-woo-skin-grid-10) .premium-woo-product-featured-wrap .premium-woo-product-featured {
7776
- display: block;
7777
- text-align: center;
7778
- color: #fff;
7779
- min-width: 2em;
7780
- min-height: 2em;
7781
- line-height: 2em;
7782
- padding: 0.3em 0.6em;
7783
- margin: 0.5em 0.6em; }
7784
-
7785
- .premium-woocommerce .pa-out-of-stock {
7786
- display: block;
7787
- text-align: center;
7788
- color: #fff;
7789
- min-width: 2em;
7790
- min-height: 2em;
7791
- line-height: 2em;
7792
- padding: 0.3em 0.6em;
7793
- margin: 0.5em 0.6em; }
7794
-
7795
- .premium-woocommerce .woocommerce-loop-product__title {
7796
- margin-bottom: 0.5em;
7797
- font-size: 1em;
7798
- -webkit-transition: all 0.3s ease-in-out;
7799
- transition: all 0.3s ease-in-out; }
7800
-
7801
- .premium-woocommerce .premium-woo-product-category {
7802
- display: block;
7803
- font-size: 0.85em;
7804
- margin-bottom: 0.5em;
7805
- line-height: 1.3; }
7806
-
7807
- .premium-woocommerce .star-rating {
7808
- display: block;
7809
- float: none;
7810
- -webkit-backface-visibility: hidden;
7811
- backface-visibility: hidden;
7812
- overflow: hidden;
7813
- position: relative;
7814
- height: 1em;
7815
- line-height: 1;
7816
- font-size: 0.857em;
7817
- width: 5.4em;
7818
- font-family: "star"; }
7819
- .premium-woocommerce .star-rating::before {
7820
- content: "\73\73\73\73\73";
7821
- color: #54595f;
7822
- float: left;
7823
- top: 0;
7824
- left: 0;
7825
- position: absolute; }
7826
- .premium-woocommerce .star-rating span {
7827
- overflow: hidden;
7828
- float: left;
7829
- top: 0;
7830
- left: 0;
7831
- position: absolute;
7832
- padding-top: 1.5em; }
7833
- .premium-woocommerce .star-rating span::before {
7834
- content: "\53\53\53\53\53";
7835
- color: inherit;
7836
- top: 0;
7837
- position: absolute;
7838
- left: 0; }
7839
-
7840
- .premium-woocommerce .premium-woo-products-inner ul.products {
7841
- -js-display: flex;
7842
- display: -webkit-box;
7843
- display: -webkit-flex;
7844
- display: -moz-box;
7845
- display: -ms-flexbox;
7846
- display: flex;
7847
- margin: 0;
7848
- padding: 0;
7849
- -webkit-flex-wrap: wrap;
7850
- -ms-flex-wrap: wrap;
7851
- flex-wrap: wrap;
7852
- list-style: none outside;
7853
- -webkit-column-gap: 0;
7854
- -moz-column-gap: 0;
7855
- column-gap: 0; }
7856
- .premium-woocommerce .premium-woo-products-inner ul.products li.product {
7857
- margin: 0 0 10px;
7858
- padding: 0 10px; }
7859
- .premium-woocommerce .premium-woo-products-inner ul.products li.product .premium-woo-product-wrapper {
7860
- overflow: hidden;
7861
- -webkit-transition: all 0.3s ease-in-out;
7862
- transition: all 0.3s ease-in-out; }
7863
-
7864
- .premium-woocommerce .woocommerce-loop-product__link {
7865
- position: relative;
7866
- display: block !important;
7867
- overflow: hidden;
7868
- -webkit-transition: all 0.3s ease-in-out;
7869
- transition: all 0.3s ease-in-out; }
7870
-
7871
- .premium-woocommerce .premium-woo-ribbon-container,
7872
- .premium-woocommerce .pa-out-of-stock {
7873
- position: absolute;
7874
- z-index: 9; }
7875
-
7876
- .premium-woocommerce .premium-woo-ribbon-container {
7877
- top: 0;
7878
- left: 0; }
7879
-
7880
- .premium-woocommerce .pa-out-of-stock {
7881
- top: 7px;
7882
- left: 9px;
7883
- margin: 0; }
7884
-
7885
- .premium-woo-product-thumbnail {
7886
- position: relative;
7887
- overflow: hidden; }
7888
- .premium-woo-product-thumbnail .woocommerce-loop-product__link img {
7889
- margin: 0;
7890
- width: 100%; }
7891
-
7892
- .premium-woo-product-sale-wrap,
7893
- .premium-woo-product-featured-wrap {
7894
- margin: 0; }
7895
-
7896
- .premium-woocommerce .premium-woo-products-details-wrap {
7897
- padding: 1em 1.2em; }
7898
- .premium-woocommerce .premium-woo-products-details-wrap .button {
7899
- display: inline-block;
7900
- background-color: #6ec1e4;
7901
- color: #fff;
7902
- margin: 0.5em 0;
7903
- line-height: 1.3;
7904
- padding: 10px 40px;
7905
- font-size: 100%;
7906
- cursor: pointer;
7907
- text-decoration: none;
7908
- overflow: visible;
7909
- font-weight: 700;
7910
- background-image: none;
7911
- border: none;
7912
- -webkit-border-radius: 0px;
7913
- border-radius: 0px;
7914
- -webkit-box-shadow: none;
7915
- box-shadow: none;
7916
- text-shadow: none;
7917
- -webkit-transition: all 0.3s ease-in-out;
7918
- transition: all 0.3s ease-in-out; }
7919
-
7920
- .premium-woocommerce li.product .price {
7921
- display: block;
7922
- line-height: 1.3;
7923
- font-weight: 700;
7924
- margin-bottom: 0.5em;
7925
- font-size: 0.9em; }
7926
- .premium-woocommerce li.product .price del {
7927
- display: inline-block;
7928
- font-weight: 400;
7929
- background: transparent;
7930
- opacity: 1; }
7931
- .premium-woocommerce li.product .price ins {
7932
- display: inline-block;
7933
- background: transparent;
7934
- text-decoration: none;
7935
- font-weight: inherit; }
7936
- .premium-woocommerce li.product .price .amount {
7937
- color: inherit !important; }
7938
-
7939
- .premium-woocommerce li.product .premium-woo-product-desc p {
7940
- margin: 0; }
7941
-
7942
- .premium-woo-product-align-left .premium-woocommerce li.product .star-rating {
7943
- margin-left: 0;
7944
- margin-right: auto; }
7945
-
7946
- .premium-woo-product-align-center .premium-woocommerce li.product .star-rating {
7947
- margin-left: auto;
7948
- margin-right: auto; }
7949
-
7950
- .premium-woo-product-align-right .premium-woocommerce li.product .star-rating {
7951
- margin-left: auto;
7952
- margin-right: 0; }
7953
-
7954
- .premium-woo-products-pagination ul.page-numbers {
7955
- -js-display: flex;
7956
- display: -webkit-box;
7957
- display: -webkit-flex;
7958
- display: -moz-box;
7959
- display: -ms-flexbox;
7960
- display: flex;
7961
- list-style-type: none;
7962
- margin: 0;
7963
- margin-top: 10px;
7964
- padding: 0;
7965
- border: none;
7966
- -webkit-box-pack: center;
7967
- -webkit-justify-content: center;
7968
- -moz-box-pack: center;
7969
- -ms-flex-pack: center;
7970
- justify-content: center; }
7971
- .premium-woo-products-pagination ul.page-numbers li {
7972
- margin: 0 0.4em 0.4em 0;
7973
- padding: 0;
7974
- text-align: center; }
7975
- .premium-woo-products-pagination ul.page-numbers li .page-numbers {
7976
- margin: 0;
7977
- text-decoration: none;
7978
- color: #000;
7979
- border: 1px solid #54595f;
7980
- padding: 0;
7981
- line-height: 1;
7982
- font-size: 1em;
7983
- font-weight: 400;
7984
- padding: 0.75em;
7985
- display: block;
7986
- min-width: 2.5em;
7987
- -webkit-transition: all 0.3s ease-in-out;
7988
- transition: all 0.3s ease-in-out; }
7989
- .premium-woo-products-pagination ul.page-numbers li .page-numbers:hover, .premium-woo-products-pagination ul.page-numbers li .page-numbers.current {
7990
- background-color: #54595f;
7991
- color: #fff;
7992
- outline: none; }
7993
-
7994
- .premium-woocommerce .premium-loading-feed,
7995
- .premium-woo-quick-view-loader .premium-loading-feed {
7996
- display: block;
7997
- position: absolute;
7998
- width: 100%;
7999
- height: 100%;
8000
- top: 0px;
8001
- left: 0px;
8002
- bottom: 0px;
8003
- right: 0px;
8004
- background: rgba(255, 255, 255, 0.2);
8005
- -js-display: flex;
8006
- display: -webkit-box;
8007
- display: -webkit-flex;
8008
- display: -moz-box;
8009
- display: -ms-flexbox;
8010
- display: flex;
8011
- -webkit-box-align: center;
8012
- -webkit-align-items: center;
8013
- -moz-box-align: center;
8014
- -ms-flex-align: center;
8015
- align-items: center; }
8016
-
8017
- /**
8018
- * Image Hover Effects
8019
- */
8020
- .premium-woocommerce .woocommerce-loop-product__link img {
8021
- -webkit-transition: all 0.3s ease-in-out;
8022
- transition: all 0.3s ease-in-out; }
8023
-
8024
- .premium-woo-product__hover-zoomout .woocommerce-loop-product__link img {
8025
- -webkit-transform: scale(1.2);
8026
- -ms-transform: scale(1.2);
8027
- transform: scale(1.2); }
8028
-
8029
- .premium-woo-product__hover-zoomout li.product:hover .woocommerce-loop-product__link img {
8030
- -webkit-transform: none;
8031
- -ms-transform: none;
8032
- transform: none; }
8033
-
8034
- .premium-woo-product__hover-zoomin .woocommerce-loop-product__link img {
8035
- -webkit-transform: none;
8036
- -ms-transform: none;
8037
- transform: none; }
8038
-
8039
- .premium-woo-product__hover-zoomin li.product:hover .woocommerce-loop-product__link img {
8040
- -webkit-transform: scale(1.2);
8041
- -ms-transform: scale(1.2);
8042
- transform: scale(1.2); }
8043
-
8044
- .premium-woo-product__hover-gray .woocommerce-loop-product__link img {
8045
- -webkit-filter: grayscale(100%);
8046
- filter: grayscale(100%); }
8047
-
8048
- .premium-woo-product__hover-gray li.product:hover .woocommerce-loop-product__link img {
8049
- -webkit-filter: grayscale(0%);
8050
- filter: grayscale(0%); }
8051
-
8052
- .premium-woo-product__hover-sepia .woocommerce-loop-product__link img {
8053
- -webkit-filter: sepia(30%);
8054
- filter: sepia(30%); }
8055
-
8056
- .premium-woo-product__hover-sepia li.product:hover .woocommerce-loop-product__link img {
8057
- -webkit-filter: sepia(0%);
8058
- filter: sepia(0%); }
8059
-
8060
- .premium-woo-product__hover-bright .woocommerce-loop-product__link img {
8061
- -webkit-filter: brightness(1);
8062
- filter: brightness(1); }
8063
-
8064
- .premium-woo-product__hover-bright li.product:hover .woocommerce-loop-product__link img {
8065
- -webkit-filter: brightness(1.2);
8066
- filter: brightness(1.2); }
8067
-
8068
- .premium-woo-product__hover-trans .woocommerce-loop-product__link img {
8069
- -webkit-transform: translateX(-15px) scale(1.1);
8070
- -ms-transform: translateX(-15px) scale(1.1);
8071
- transform: translateX(-15px) scale(1.1); }
8072
-
8073
- .premium-woo-product__hover-trans li.product:hover .woocommerce-loop-product__link img {
8074
- -webkit-transform: translateX(0px) scale(1.1);
8075
- -ms-transform: translateX(0px) scale(1.1);
8076
- transform: translateX(0px) scale(1.1); }
8077
-
8078
- .premium-woo-product__hover-scale li.product:hover .woocommerce-loop-product__link img {
8079
- -webkit-transform: scaleX(1.3) scaleY(1.3) rotate(5deg);
8080
- -ms-transform: scaleX(1.3) scaleY(1.3) rotate(5deg);
8081
- transform: scaleX(1.3) scaleY(1.3) rotate(5deg); }
8082
-
8083
- .premium-woocommerce .premium-woo-product__on_hover {
8084
- position: absolute;
8085
- top: 0;
8086
- right: 0;
8087
- bottom: 0;
8088
- left: 0;
8089
- height: 100%;
8090
- opacity: 0; }
8091
-
8092
- .premium-woo-product__hover-swap li.product:hover .premium-woo-product__on_hover {
8093
- opacity: 1; }
8094
-
8095
- .premium-woo-skin-grid-1 .premium-woo-qv-btn,
8096
- .premium-woo-skin-grid-3 .premium-woo-qv-btn,
8097
- .premium-woo-skin-grid-4 .premium-woo-qv-btn {
8098
- position: absolute;
8099
- bottom: 0;
8100
- left: 0;
8101
- width: 100%;
8102
- text-align: center;
8103
- padding: 5px;
8104
- background: rgba(2, 2, 2, 0.5);
8105
- color: #fff;
8106
- -webkit-transition: all 0.3s ease-in-out;
8107
- transition: all 0.3s ease-in-out;
8108
- z-index: 2;
8109
- -webkit-transform: translateY(100%);
8110
- -ms-transform: translateY(100%);
8111
- transform: translateY(100%); }
8112
-
8113
- .premium-woo-skin-grid-4 .premium-woo-qv-btn {
8114
- -webkit-transition-delay: 0.1s;
8115
- transition-delay: 0.1s; }
8116
-
8117
- .premium-woo-skin-grid-1 .premium-woo-qv-icon,
8118
- .premium-woo-skin-grid-3 .premium-woo-qv-icon,
8119
- .premium-woo-skin-grid-4 .premium-woo-qv-icon,
8120
- .premium-woo-skin-grid-6 .premium-woo-qv-icon {
8121
- margin-left: 0.5em; }
8122
-
8123
- .premium-woo-product-thumbnail:hover .premium-woo-qv-btn-translate {
8124
- -webkit-transform: translateY(0);
8125
- -ms-transform: translateY(0);
8126
- transform: translateY(0); }
8127
-
8128
- .premium-woo-product-wrapper .premium-woo-qv-data {
8129
- position: absolute;
8130
- top: 0;
8131
- left: 0;
8132
- width: 100%;
8133
- height: 100%;
8134
- z-index: 1;
8135
- overflow: hidden;
8136
- cursor: pointer; }
8137
-
8138
- /**
8139
- * Skin 1,4
8140
- */
8141
- .premium-woo-skin-grid-1 .premium-woo-product-actions-wrapper,
8142
- .premium-woo-skin-grid-4 .premium-woo-product-actions-wrapper {
8143
- position: absolute;
8144
- top: 0.7em;
8145
- right: 1em;
8146
- -webkit-transform: translate3d(15px, 0, 0);
8147
- transform: translate3d(15px, 0, 0);
8148
- -webkit-transition: all 0.3s ease-in-out;
8149
- transition: all 0.3s ease-in-out;
8150
- opacity: 0;
8151
- z-index: 9; }
8152
-
8153
- .premium-woocommerce .premium-woo-product-actions-wrapper .premium-woo-cart-btn {
8154
- position: relative;
8155
- display: block;
8156
- margin: 0 0 3px;
8157
- background: #fff;
8158
- text-align: center;
8159
- outline: 0;
8160
- -webkit-transition: all 0.3s ease-in-out;
8161
- transition: all 0.3s ease-in-out; }
8162
-
8163
- .premium-woocommerce .premium-woo-product-actions-wrapper .premium-woo-add-cart-icon {
8164
- display: block;
8165
- color: #54595f;
8166
- width: 30px;
8167
- line-height: 30px;
8168
- height: 30px;
8169
- cursor: pointer;
8170
- -webkit-transition: all 0.3s ease-in-out;
8171
- transition: all 0.3s ease-in-out; }
8172
-
8173
- .premium-woo-skin-grid-1 li.product:hover .premium-woo-product-actions-wrapper,
8174
- .premium-woo-skin-grid-4 li.product:hover .premium-woo-product-actions-wrapper {
8175
- -webkit-transform: translate3d(5px, 0, 0);
8176
- transform: translate3d(5px, 0, 0);
8177
- opacity: 1; }
8178
-
8179
- .premium-woocommerce .premium-woo-cart-btn.adding .premium-woo-add-cart-icon {
8180
- -webkit-animation: spin 2s linear infinite;
8181
- animation: spin 2s linear infinite; }
8182
-
8183
- .premium-woocommerce .premium-woo-cart-btn.adding .premium-woo-add-cart-icon::before {
8184
- content: "\f013"; }
8185
-
8186
- .premium-woocommerce .premium-woo-cart-btn.added .premium-woo-add-cart-icon::before {
8187
- content: "\f00c"; }
8188
-
8189
- /**
8190
- * Skin 2
8191
- */
8192
- .premium-woo-skin-grid-2 li.product .premium-woo-products-details-wrap {
8193
- position: absolute;
8194
- background: #fff;
8195
- bottom: 0;
8196
- left: 0;
8197
- width: 100%;
8198
- z-index: 2;
8199
- padding: 0;
8200
- opacity: 0;
8201
- -webkit-transition: opacity 0.2s, -webkit-transform 0.4s;
8202
- transition: opacity 0.2s, -webkit-transform 0.4s;
8203
- transition: transform 0.4s, opacity 0.2s;
8204
- transition: transform 0.4s, opacity 0.2s, -webkit-transform 0.4s;
8205
- -webkit-transform: translateZ(0) translateY(5px);
8206
- transform: translateZ(0) translateY(5px); }
8207
-
8208
- .premium-woo-skin-grid-2 .premium-woo-product-details {
8209
- padding: 15px 0; }
8210
-
8211
- .premium-woo-skin-grid-2 li.product:hover .premium-woo-products-details-wrap {
8212
- opacity: 1;
8213
- -webkit-transform: translateZ(0) translateY(0);
8214
- transform: translateZ(0) translateY(0); }
8215
-
8216
- .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper {
8217
- position: static;
8218
- -js-display: flex;
8219
- display: -webkit-box;
8220
- display: -webkit-flex;
8221
- display: -moz-box;
8222
- display: -ms-flexbox;
8223
- display: flex;
8224
- -webkit-box-orient: horizontal;
8225
- -webkit-box-direction: reverse;
8226
- -webkit-flex-direction: row-reverse;
8227
- -moz-box-orient: horizontal;
8228
- -moz-box-direction: reverse;
8229
- -ms-flex-direction: row-reverse;
8230
- flex-direction: row-reverse; }
8231
-
8232
- .premium-woo-skin-grid-2 .premium-woo-product-actions-wrapper > * {
8233
- -webkit-box-flex: 1;
8234
- -webkit-flex: 1;
8235
- -moz-box-flex: 1;
8236
- -ms-flex: 1;
8237
- flex: 1;
8238
- min-width: 50%; }
8239
-
8240
- .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper .button {
8241
- -js-display: flex;
8242
- display: -webkit-box;
8243
- display: -webkit-flex;
8244
- display: -moz-box;
8245
- display: -ms-flexbox;
8246
- display: flex;
8247
- margin: 0;
8248
- text-align: center;
8249
- -webkit-box-pack: center;
8250
- -webkit-justify-content: center;
8251
- -moz-box-pack: center;
8252
- -ms-flex-pack: center;
8253
- justify-content: center;
8254
- -webkit-box-align: center;
8255
- -webkit-align-items: center;
8256
- -moz-box-align: center;
8257
- -ms-flex-align: center;
8258
- align-items: center; }
8259
-
8260
- .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper .premium-woo-qv-btn {
8261
- background-color: #54595f; }
8262
-
8263
- /**
8264
- * Skin 4
8265
- */
8266
- .premium-woo-skin-grid-4 li.product .premium-woo-products-details-wrap {
8267
- position: absolute;
8268
- left: 0;
8269
- right: 0;
8270
- top: 50%;
8271
- -webkit-transform: scale(0.9) translateZ(0) translateY(-50%);
8272
- transform: scale(0.9) translateZ(0) translateY(-50%);
8273
- text-align: center;
8274
- z-index: 2;
8275
- opacity: 0;
8276
- -webkit-transition: opacity 0.5s, -webkit-transform 0.3s;
8277
- transition: opacity 0.5s, -webkit-transform 0.3s;
8278
- transition: opacity 0.5s, transform 0.3s;
8279
- transition: opacity 0.5s, transform 0.3s, -webkit-transform 0.3s; }
8280
-
8281
- .premium-woo-skin-grid-4 li.product .premium-woo-product-overlay,
8282
- .premium-woo-skin-grid-8 li.product .premium-woo-product-overlay {
8283
- position: absolute;
8284
- top: 0;
8285
- left: 0;
8286
- width: 100%;
8287
- height: 100%;
8288
- opacity: 0;
8289
- visibility: hidden;
8290
- background-color: rgba(27, 27, 23, 0.3);
8291
- -webkit-transition: all 0.25s ease-in-out;
8292
- transition: all 0.25s ease-in-out; }
8293
-
8294
- .premium-woo-skin-grid-4 li.product:hover .premium-woo-product-overlay,
8295
- .premium-woo-skin-grid-8 li.product:hover .premium-woo-product-overlay {
8296
- opacity: 1;
8297
- visibility: visible;
8298
- z-index: 1; }
8299
-
8300
- .premium-woo-skin-grid-4 li.product:hover .premium-woo-products-details-wrap {
8301
- -webkit-transform: scale(1) translateZ(0) translateY(-50%);
8302
- transform: scale(1) translateZ(0) translateY(-50%);
8303
- opacity: 1; }
8304
-
8305
- /**
8306
- * Skin 5
8307
- */
8308
- .premium-woo-skin-grid-5 li.product .premium-woo-product-actions-wrapper {
8309
- -js-display: flex;
8310
- display: -webkit-box;
8311
- display: -webkit-flex;
8312
- display: -moz-box;
8313
- display: -ms-flexbox;
8314
- display: flex; }
8315
- .premium-woo-skin-grid-5 li.product .premium-woo-product-actions-wrapper .premium-woo-qv-btn {
8316
- -js-display: flex;
8317
- display: -webkit-box;
8318
- display: -webkit-flex;
8319
- display: -moz-box;
8320
- display: -ms-flexbox;
8321
- display: flex;
8322
- -webkit-box-align: center;
8323
- -webkit-align-items: center;
8324
- -moz-box-align: center;
8325
- -ms-flex-align: center;
8326
- align-items: center;
8327
- background-color: #54595f;
8328
- padding: 10px;
8329
- -webkit-transition: all 0.25s ease 0s;
8330
- transition: all 0.25s ease 0s; }
8331
-
8332
- .premium-woo-skin-grid-5 li.product .premium-woo-products-details-wrap {
8333
- width: 75%; }
8334
-
8335
- .premium-woo-skin-grid-5 .premium-woo-product-wrapper {
8336
- -js-display: flex;
8337
- display: -webkit-box;
8338
- display: -webkit-flex;
8339
- display: -moz-box;
8340
- display: -ms-flexbox;
8341
- display: flex;
8342
- -webkit-box-align: center;
8343
- -webkit-align-items: center;
8344
- -moz-box-align: center;
8345
- -ms-flex-align: center;
8346
- align-items: center; }
8347
-
8348
- .premium-woo-product-align-right .premium-woo-skin-grid-5 .premium-woo-product-actions-wrapper {
8349
- -webkit-box-pack: end;
8350
- -webkit-justify-content: flex-end;
8351
- -moz-box-pack: end;
8352
- -ms-flex-pack: end;
8353
- justify-content: flex-end; }
8354
-
8355
- .premium-woo-product-align-center .premium-woo-skin-grid-5 .premium-woo-product-actions-wrapper {
8356
- -webkit-box-pack: center;
8357
- -webkit-justify-content: center;
8358
- -moz-box-pack: center;
8359
- -ms-flex-pack: center;
8360
- justify-content: center; }
8361
-
8362
- /**
8363
- * Skin 6
8364
- */
8365
- .premium-woo-skin-grid-6 .premium-woo-qv-btn {
8366
- position: absolute;
8367
- top: 50%;
8368
- left: 50%;
8369
- min-width: 40%;
8370
- text-align: center;
8371
- padding: 5px;
8372
- background: rgba(2, 2, 2, 0.5);
8373
- color: #fff;
8374
- -webkit-transform: translate(-50%, -50%);
8375
- -ms-transform: translate(-50%, -50%);
8376
- transform: translate(-50%, -50%);
8377
- opacity: 0;
8378
- visibility: hidden;
8379
- -webkit-transition: all 0.3s ease-in-out;
8380
- transition: all 0.3s ease-in-out;
8381
- cursor: pointer;
8382
- z-index: 2; }
8383
-
8384
- .premium-woo-skin-grid-6 li.product:hover .premium-woo-qv-btn {
8385
- opacity: 1;
8386
- visibility: visible; }
8387
-
8388
- .premium-woo-product-align-right .premium-woo-skin-grid-6 li.product .premium-woo-product-info .star-rating,
8389
- .premium-woo-product-align-left .premium-woo-skin-grid-6 li.product .premium-woo-product-info .star-rating,
8390
- .premium-woo-product-align-right .premium-woo-skin-grid-7 li.product .premium-woo-product-info .star-rating,
8391
- .premium-woo-product-align-left .premium-woo-skin-grid-7 li.product .premium-woo-product-info .star-rating {
8392
- margin: 0; }
8393
-
8394
- .premium-woo-skin-grid-6 li.product .premium-woo-product-info {
8395
- -js-display: flex;
8396
- display: -webkit-box;
8397
- display: -webkit-flex;
8398
- display: -moz-box;
8399
- display: -ms-flexbox;
8400
- display: flex;
8401
- -webkit-box-pack: justify;
8402
- -webkit-justify-content: space-between;
8403
- -moz-box-pack: justify;
8404
- -ms-flex-pack: justify;
8405
- justify-content: space-between; }
8406
-
8407
- .premium-woo-product-align-center .premium-woocommerce li.product .premium-woo-product-info {
8408
- -webkit-box-orient: vertical;
8409
- -webkit-box-direction: normal;
8410
- -webkit-flex-direction: column;
8411
- -moz-box-orient: vertical;
8412
- -moz-box-direction: normal;
8413
- -ms-flex-direction: column;
8414
- flex-direction: column; }
8415
-
8416
- .premium-woo-product-align-right .premium-woocommerce li.product .premium-woo-product-info {
8417
- -webkit-box-orient: horizontal;
8418
- -webkit-box-direction: reverse;
8419
- -webkit-flex-direction: row-reverse;
8420
- -moz-box-orient: horizontal;
8421
- -moz-box-direction: reverse;
8422
- -ms-flex-direction: row-reverse;
8423
- flex-direction: row-reverse; }
8424
-
8425
- .premium-woo-skin-grid-6 li.product .premium-woo-product-gallery-images {
8426
- -js-display: flex;
8427
- display: -webkit-box;
8428
- display: -webkit-flex;
8429
- display: -moz-box;
8430
- display: -ms-flexbox;
8431
- display: flex;
8432
- position: absolute;
8433
- bottom: 10px;
8434
- width: 100%;
8435
- -webkit-box-pack: center;
8436
- -webkit-justify-content: center;
8437
- -moz-box-pack: center;
8438
- -ms-flex-pack: center;
8439
- justify-content: center; }
8440
-
8441
- .premium-woo-product-gallery-images .premium-woo-product__gallery_image {
8442
- width: 20%;
8443
- margin: 0 0.2em;
8444
- border: 2px solid #aaa;
8445
- cursor: pointer; }
8446
-
8447
- /**
8448
- * Metro
8449
- */
8450
- .premium-woo-products-metro li.product .premium-woo-product-thumbnail img,
8451
- .premium-woo-products-metro li.product .premium-woo-product-wrapper,
8452
- .premium-woo-products-metro li.product .premium-woo-product-thumbnail,
8453
- .premium-woo-products-metro li.product .woocommerce-LoopProduct-link {
8454
- height: 100%; }
8455
-
8456
- .premium-woo-products-metro ul.products li.product {
8457
- margin-bottom: 0; }
8458
-
8459
- .premium-woo-products-metro li.product .premium-woo-product-thumbnail img {
8460
- -o-object-fit: cover;
8461
- object-fit: cover; }
8462
-
8463
- /*
8464
- * Carousel
8465
- */
8466
- .premium-carousel-hidden {
8467
- opacity: 0;
8468
- visibility: hidden; }
8469
-
8470
- .premium-woocommerce:not(.premium-woo-skin-grid-7) .slick-arrow {
8471
- -webkit-border-radius: 50%;
8472
- border-radius: 50%; }
8473
-
8474
- .premium-woocommerce ul.slick-dots {
8475
- width: 100%; }
8476
-
8477
- /*
8478
- * Quick View Html/body
8479
- */
8480
- html.premium-woo-qv-opened,
8481
- html.premium-woo-qv-opened body {
8482
- overflow: hidden; }
8483
-
8484
- /**
8485
- * Quick View Modal
8486
- */
8487
- .premium-woo-quick-view-back {
8488
- position: fixed;
8489
- visibility: hidden;
8490
- overflow: hidden;
8491
- background: rgba(2, 2, 2, 0.5);
8492
- opacity: 0;
8493
- -webkit-transition: opacity 0.25s;
8494
- transition: opacity 0.25s;
8495
- z-index: 999; }
8496
-
8497
- .premium-woo-quick-view-active {
8498
- top: 0;
8499
- left: 0;
8500
- width: 100%;
8501
- height: 100%;
8502
- opacity: 1;
8503
- visibility: visible; }
8504
-
8505
- #premium-woo-quick-view-modal {
8506
- position: fixed;
8507
- visibility: hidden;
8508
- opacity: 0;
8509
- top: 0;
8510
- left: 0;
8511
- width: 100%;
8512
- height: 100%;
8513
- z-index: 1400;
8514
- text-align: center;
8515
- -webkit-transition: all 0.3s;
8516
- transition: all 0.3s;
8517
- overflow-x: hidden;
8518
- overflow-y: auto; }
8519
- #premium-woo-quick-view-modal.active {
8520
- visibility: visible;
8521
- opacity: 1; }
8522
- #premium-woo-quick-view-modal.active .premium-woo-content-main {
8523
- -webkit-transform: translateY(0);
8524
- -ms-transform: translateY(0);
8525
- transform: translateY(0);
8526
- opacity: 1;
8527
- width: 100%; }
8528
- #premium-woo-quick-view-modal .premium-woo-content-main-wrapper {
8529
- position: absolute;
8530
- width: 100%;
8531
- height: 100%;
8532
- top: 0;
8533
- left: 0;
8534
- text-align: center;
8535
- padding: 30px;
8536
- -js-display: flex;
8537
- display: -webkit-box;
8538
- display: -webkit-flex;
8539
- display: -moz-box;
8540
- display: -ms-flexbox;
8541
- display: flex;
8542
- -webkit-box-align: center;
8543
- -webkit-align-items: center;
8544
- -moz-box-align: center;
8545
- -ms-flex-align: center;
8546
- align-items: center; }
8547
- #premium-woo-quick-view-modal .premium-woo-content-main {
8548
- position: relative;
8549
- pointer-events: none;
8550
- max-width: 100%;
8551
- text-align: left;
8552
- z-index: 1045;
8553
- -webkit-transform: translateY(-30px);
8554
- -ms-transform: translateY(-30px);
8555
- transform: translateY(-30px);
8556
- opacity: 0;
8557
- -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
8558
- transition: opacity 0.3s, -webkit-transform 0.5s;
8559
- transition: transform 0.5s, opacity 0.3s;
8560
- transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
8561
- margin: 0 auto; }
8562
- #premium-woo-quick-view-modal .premium-woo-lightbox-content {
8563
- position: relative;
8564
- display: table;
8565
- pointer-events: auto;
8566
- background-color: #fff;
8567
- max-width: 975px;
8568
- margin: 20px auto;
8569
- -webkit-transform: translateZ(0);
8570
- transform: translateZ(0);
8571
- -webkit-box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.15);
8572
- box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.15);
8573
- overflow: hidden; }
8574
- #premium-woo-quick-view-modal .summary {
8575
- width: 50%;
8576
- margin: 0;
8577
- padding: 30px;
8578
- float: left;
8579
- -webkit-box-sizing: border-box;
8580
- -moz-box-sizing: border-box;
8581
- box-sizing: border-box; }
8582
- #premium-woo-quick-view-modal .summary .quantity {
8583
- min-width: auto; }
8584
- #premium-woo-quick-view-modal .summary .quantity input.qty {
8585
- width: 54px;
8586
- -webkit-appearance: button;
8587
- -moz-appearance: button;
8588
- appearance: button; }
8589
- #premium-woo-quick-view-modal .summary .quantity input[type="number"]::-webkit-inner-spin-button,
8590
- #premium-woo-quick-view-modal .summary .quantity input[type="number"]::-webkit-outer-spin-button {
8591
- display: unset; }
8592
- #premium-woo-quick-view-modal .woocommerce-product-details__short-description p {
8593
- margin: 0; }
8594
-
8595
- #premium-woo-quick-view-close {
8596
- position: absolute;
8597
- font-size: 22px;
8598
- top: 10px;
8599
- right: 10px;
8600
- width: 22px;
8601
- height: 22px;
8602
- line-height: 22px;
8603
- opacity: 0.7;
8604
- text-align: center;
8605
- z-index: 2;
8606
- color: #000; }
8607
-
8608
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider {
8609
- position: relative; }
8610
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider li {
8611
- list-style: none; }
8612
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav {
8613
- margin: 0;
8614
- padding: 0;
8615
- width: 100%;
8616
- position: absolute;
8617
- bottom: 10px;
8618
- text-align: center; }
8619
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li {
8620
- margin: 0 6px;
8621
- display: inline-block;
8622
- vertical-align: middle; }
8623
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a {
8624
- width: 11px;
8625
- height: 11px;
8626
- display: block;
8627
- background: #666;
8628
- background: rgba(0, 0, 0, 0.5);
8629
- cursor: pointer;
8630
- text-indent: -9999px;
8631
- -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
8632
- box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
8633
- -webkit-border-radius: 20px;
8634
- border-radius: 20px; }
8635
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a.flex-active {
8636
- background: rgba(0, 0, 0, 0.9);
8637
- cursor: default; }
8638
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a:focus {
8639
- outline: none; }
8640
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider img {
8641
- -o-object-fit: cover;
8642
- object-fit: cover;
8643
- width: 100%; }
8644
-
8645
- #premium-woo-quick-view-content div.images {
8646
- width: 50%;
8647
- float: left;
8648
- opacity: 1 !important;
8649
- margin: 0; }
8650
-
8651
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav {
8652
- margin: 0;
8653
- padding: 0;
8654
- list-style: none; }
8655
-
8656
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav a {
8657
- text-decoration: none;
8658
- display: block;
8659
- width: 14px;
8660
- height: 32px;
8661
- font-size: 32px;
8662
- line-height: 32px;
8663
- margin: -20px 0 0;
8664
- position: absolute;
8665
- top: 50%;
8666
- z-index: 10;
8667
- overflow: hidden;
8668
- cursor: pointer;
8669
- color: rgba(0, 0, 0, 0.8);
8670
- text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
8671
- -webkit-transition: all 0.3s ease-in-out;
8672
- transition: all 0.3s ease-in-out; }
8673
-
8674
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next,
8675
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev {
8676
- display: inline-block;
8677
- font-family: "Font Awesome 5 Free";
8678
- font-weight: 900;
8679
- text-rendering: auto;
8680
- -webkit-font-smoothing: antialiased;
8681
- -moz-osx-font-smoothing: grayscale; }
8682
-
8683
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev {
8684
- left: 10px; }
8685
-
8686
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next {
8687
- right: 10px; }
8688
-
8689
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev::before {
8690
- content: "\f104"; }
8691
-
8692
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next::before {
8693
- content: "\f105"; }
8694
-
8695
- .premium-woocommerce li.product .added_to_cart.wc-forward {
8696
- display: none; }
8697
-
8698
- .premium-woo-atc-button .add_to_cart_button .premium-woo-cart-loader {
8699
- -webkit-animation: spin 2s linear infinite;
8700
- animation: spin 2s linear infinite;
8701
- margin-left: 5px;
8702
- vertical-align: baseline; }
8703
-
8704
- /*
8705
- * Load More Button
8706
- */
8707
- .premium-woo-load-more {
8708
- position: relative; }
8709
- .premium-woo-load-more .premium-woo-load-more-btn {
8710
- -webkit-box-shadow: none;
8711
- box-shadow: none;
8712
- text-shadow: none;
8713
- border: none;
8714
- outline: none;
8715
- -webkit-box-align: center;
8716
- -webkit-align-items: center;
8717
- -moz-box-align: center;
8718
- -ms-flex-align: center;
8719
- align-items: center;
8720
- vertical-align: bottom;
8721
- cursor: pointer;
8722
- line-height: 1;
8723
- font-style: normal;
8724
- font-weight: normal;
8725
- background-image: none;
8726
- color: #fff;
8727
- -webkit-transition: all 0.3s ease-in-out;
8728
- transition: all 0.3s ease-in-out;
8729
- padding: 10px 20px; }
8730
-
8731
- .premium-woo-load-more-btn {
8732
- -js-display: inline-flex;
8733
- display: -webkit-inline-box;
8734
- display: -webkit-inline-flex;
8735
- display: -moz-inline-box;
8736
- display: -ms-inline-flexbox;
8737
- display: inline-flex;
8738
- -webkit-box-align: center;
8739
- -webkit-align-items: center;
8740
- -moz-box-align: center;
8741
- -ms-flex-align: center;
8742
- align-items: center; }
8743
-
8744
- .premium-woo-load-more-btn span {
8745
- margin-right: 3px; }
8746
-
8747
- .premium-woo-load-more-btn .premium-loader {
8748
- display: inline-block;
8749
- width: 20px;
8750
- height: 20px; }
8751
-
8752
- @media (min-width: 545px) {
8753
- #premium-woo-quick-view-content div.summary {
8754
- content: "544";
8755
- overflow-y: auto; } }
8756
-
8757
- @media (max-width: 544px) {
8758
- #premium-woo-quick-view-content .premium-woo-lightbox-content {
8759
- display: block; }
8760
- #premium-woo-quick-view-content div.images,
8761
- #premium-woo-quick-view-content div.summary {
8762
- width: 100%;
8763
- float: none; } }
8764
 
8765
  /*
8766
  * Common Title/Dual Heading
8767
  */
8768
  .premium-title-bg-text:before {
8769
- position: absolute;
8770
- content: attr(data-background);
8771
- top: 0;
8772
- left: 0;
8773
- text-align: left; }
 
8774
 
8775
  .premium-bg-text-yes .elementor-widget-container:before {
8776
- position: absolute;
8777
- top: 0;
8778
- left: 0;
8779
- text-align: left; }
 
8780
 
8781
  .premium-mask-yes .premium-dual-header-first-clip .premium-dual-header-first-span .premium-mask-span,
8782
  .premium-mask-yes .premium-dual-header-second-clip .premium-mask-span {
8783
- background: inherit; }
 
8784
 
8785
  .premium-mask-yes .premium-mask-span {
8786
- position: relative;
8787
- overflow: hidden;
8788
- -js-display: inline-flex !important;
8789
- display: -webkit-inline-box !important;
8790
- display: -webkit-inline-flex !important;
8791
- display: -moz-inline-box !important;
8792
- display: -ms-inline-flexbox !important;
8793
- display: inline-flex !important; }
8794
- .premium-mask-yes .premium-mask-span::after {
 
 
8795
  content: "";
8796
  position: absolute;
8797
  top: 0;
@@ -8800,222 +10619,302 @@ html.premium-woo-qv-opened body {
8800
  height: 100%;
8801
  background-color: currentColor;
8802
  -webkit-backface-visibility: visible;
8803
- backface-visibility: visible; }
 
8804
 
8805
  .premium-mask-active.premium-mask-tr .premium-mask-span::after {
8806
- -webkit-animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
8807
- animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
8808
- -webkit-transform: translateX(-103%);
8809
- -ms-transform: translateX(-103%);
8810
- transform: translateX(-103%); }
 
8811
 
8812
  .premium-mask-active.premium-mask-tl .premium-mask-span::after {
8813
- -webkit-animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
8814
- animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
8815
- -webkit-transform: translateX(103%);
8816
- -ms-transform: translateX(103%);
8817
- transform: translateX(103%); }
 
8818
 
8819
  .premium-mask-active.premium-mask-tb .premium-mask-span::after {
8820
- -webkit-animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
8821
- animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
8822
- -webkit-transform: translateY(-103%);
8823
- -ms-transform: translateY(-103%);
8824
- transform: translateY(-103%); }
 
8825
 
8826
  .premium-mask-active.premium-mask-tt .premium-mask-span::after {
8827
- -webkit-animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
8828
- animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
8829
- -webkit-transform: translateY(103%);
8830
- -ms-transform: translateY(103%);
8831
- transform: translateY(103%); }
 
8832
 
8833
  @-webkit-keyframes pa-mask-tr {
8834
- 0% {
8835
- -webkit-transform: translateX(0%);
8836
- transform: translateX(0%); }
8837
- 100% {
8838
- -webkit-transform: translateX(103%);
8839
- transform: translateX(103%); } }
 
 
 
 
8840
 
8841
  @keyframes pa-mask-tr {
8842
- 0% {
8843
- -webkit-transform: translateX(0%);
8844
- transform: translateX(0%); }
8845
- 100% {
8846
- -webkit-transform: translateX(103%);
8847
- transform: translateX(103%); } }
 
 
 
 
8848
 
8849
  @-webkit-keyframes pa-mask-tl {
8850
- 0% {
8851
- -webkit-transform: translateX(0%);
8852
- transform: translateX(0%); }
8853
- 100% {
8854
- -webkit-transform: translateX(-103%);
8855
- transform: translateX(-103%); } }
 
 
 
 
8856
 
8857
  @keyframes pa-mask-tl {
8858
- 0% {
8859
- -webkit-transform: translateX(0%);
8860
- transform: translateX(0%); }
8861
- 100% {
8862
- -webkit-transform: translateX(-103%);
8863
- transform: translateX(-103%); } }
 
 
 
 
8864
 
8865
  @-webkit-keyframes pa-mask-tb {
8866
- 0% {
8867
- -webkit-transform: translateY(0%);
8868
- transform: translateY(0%); }
8869
- 100% {
8870
- -webkit-transform: translateY(103%);
8871
- transform: translateY(103%); } }
 
 
 
 
8872
 
8873
  @keyframes pa-mask-tb {
8874
- 0% {
8875
- -webkit-transform: translateY(0%);
8876
- transform: translateY(0%); }
8877
- 100% {
8878
- -webkit-transform: translateY(103%);
8879
- transform: translateY(103%); } }
 
 
 
 
8880
 
8881
  @-webkit-keyframes pa-mask-tt {
8882
- 0% {
8883
- -webkit-transform: translateY(0%);
8884
- transform: translateY(0%); }
8885
- 100% {
8886
- -webkit-transform: translateY(-103%);
8887
- transform: translateY(-103%); } }
 
 
 
 
8888
 
8889
  @keyframes pa-mask-tt {
8890
- 0% {
8891
- -webkit-transform: translateY(0%);
8892
- transform: translateY(0%); }
8893
- 100% {
8894
- -webkit-transform: translateY(-103%);
8895
- transform: translateY(-103%); } }
 
 
 
 
8896
 
8897
  /*
8898
  * Common Buttons Style.
8899
  */
8900
  .premium-button .premium-lottie-animation,
8901
  .premium-image-button .premium-lottie-animation {
8902
- -js-display: flex;
8903
- display: -webkit-box;
8904
- display: -webkit-flex;
8905
- display: -moz-box;
8906
- display: -ms-flexbox;
8907
- display: flex; }
 
8908
 
8909
  .premium-button svg,
8910
  .premium-image-button svg {
8911
- width: 30px;
8912
- height: 30px; }
 
8913
 
8914
  .premium-btn-sm,
8915
  .premium-btn-md,
8916
  .premium-btn-lg,
8917
  .premium-btn-block {
8918
- background-color: #eee;
8919
- color: #042551;
8920
- margin: 0px;
8921
- text-decoration: none; }
8922
- .premium-btn-sm:hover,
8923
- .premium-btn-md:hover,
8924
- .premium-btn-lg:hover,
8925
- .premium-btn-block:hover {
 
 
8926
  background-color: #54595f;
8927
- color: #eee; }
 
8928
 
8929
  .premium-btn-sm {
8930
- padding: 12px 24px;
8931
- font-size: 14px;
8932
- line-height: 1; }
 
8933
 
8934
  .premium-btn-md {
8935
- padding: 14px 26px;
8936
- font-size: 16px;
8937
- line-height: 1.2; }
 
8938
 
8939
  .premium-btn-lg {
8940
- padding: 16px 28px;
8941
- font-size: 18px;
8942
- line-height: 1.3333; }
 
8943
 
8944
  .premium-btn-block {
8945
- font-size: 18px;
8946
- line-height: 1;
8947
- padding: 20px 0px;
8948
- width: 100%;
8949
- text-align: center; }
 
8950
 
8951
  .premium-button-text {
8952
- display: inline-block;
8953
- width: 100%; }
 
8954
 
8955
  /*
8956
  * Common Button/Image Button Mouse Detect Effect.
8957
  */
8958
  .premium-mouse-detect-yes .premium-button-style6 .premium-button-style6-bg {
8959
- position: absolute;
8960
- z-index: 0;
8961
- top: 0;
8962
- left: 0;
8963
- width: 0px;
8964
- height: 0px;
8965
- -webkit-border-radius: 50%;
8966
- border-radius: 50%;
8967
- display: block;
8968
- -webkit-transform: translate(-50%, -50%);
8969
- -ms-transform: translate(-50%, -50%);
8970
- transform: translate(-50%, -50%);
8971
- -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
8972
- transition: width 0.4s ease-in-out, height 0.4s ease-in-out; }
 
8973
 
8974
  .premium-mouse-detect-yes .premium-button-style6:hover .premium-button-style6-bg {
8975
- width: 225%;
8976
- height: 560px; }
 
8977
 
8978
  .premium-mouse-detect-yes .premium-button-style6:before {
8979
- width: 0;
8980
- height: 0; }
 
8981
 
8982
  /** Loader */
8983
  .premium-loader {
8984
- border: 3px solid #f3f3f3;
8985
- border-top-width: 3px;
8986
- border-top-style: solid;
8987
- border-top-color: #f3f3f3;
8988
- -webkit-border-radius: 50%;
8989
- border-radius: 50%;
8990
- border-top: 3px solid;
8991
- border-top-color: #bbb;
8992
- width: 30px;
8993
- height: 30px;
8994
- -webkit-animation: spin 2s linear infinite;
8995
- animation: spin 2s linear infinite;
8996
- margin: 0 auto; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8997
 
8998
  /** Common Animation */
8999
  @-webkit-keyframes spin {
9000
- 0% {
9001
- -webkit-transform: rotate(0deg);
9002
- transform: rotate(0deg); }
9003
- 100% {
9004
- -webkit-transform: rotate(360deg);
9005
- transform: rotate(360deg); } }
 
 
 
 
 
9006
  @keyframes spin {
9007
- 0% {
9008
- -webkit-transform: rotate(0deg);
9009
- transform: rotate(0deg); }
9010
- 100% {
9011
- -webkit-transform: rotate(360deg);
9012
- transform: rotate(360deg); } }
 
 
 
 
9013
 
9014
  /**Notice*/
9015
  .premium-error-notice {
9016
- width: 100%;
9017
- padding: 10px;
9018
- color: #b94a48;
9019
- background-color: #f2dede;
9020
- border-color: #eed3d7;
9021
- text-align: center; }
 
1
  @charset "UTF-8";
2
+
3
+ @font-face {
4
+ font-family: "pa-elements";
5
+ src: url("../../editor/fonts/pa-elements.eot?vcwy2s");
6
+ src: url("../../editor/fonts/pa-elements.eot?vcwy2s#iefix") format("embedded-opentype"), url("../../editor/fonts/pa-elements.ttf?vcwy2s") format("truetype"), url("../../editor/fonts/pa-elements.woff?vcwy2s") format("woff"), url("../../editor/fonts/pa-elements.svg?vcwy2s#pa-elements") format("svg");
7
+ font-weight: normal;
8
+ font-style: normal;
9
+ }
10
+
11
+ /**************** Premium Banner ****************/
12
+ /************************************************/
13
+ .elementor-widget-premium-addon-banner {
14
+ overflow: hidden;
15
+ }
16
+
17
+ .premium-banner-ib {
18
+ display: block;
19
+ position: relative;
20
+ z-index: 1;
21
+ overflow: hidden;
22
+ margin: 0;
23
+ text-align: center;
24
+ -webkit-box-sizing: border-box;
25
+ -moz-box-sizing: border-box;
26
+ box-sizing: border-box;
27
+ }
28
+
29
+ .premium-banner-ib img {
30
+ display: block;
31
+ position: relative;
32
+ }
33
+
34
+ .premium-banner-img-wrap {
35
+ -js-display: flex;
36
+ display: -webkit-box;
37
+ display: -webkit-flex;
38
+ display: -moz-box;
39
+ display: -ms-flexbox;
40
+ display: flex;
41
+ height: 100%;
42
+ }
43
+
44
+ .premium-banner-img-wrap .premium-banner-ib-img {
45
+ -webkit-flex-shrink: 0;
46
+ -ms-flex-negative: 0;
47
+ flex-shrink: 0;
48
+ }
49
+
50
+ .premium-banner-ib-desc .premium-banner-read-more {
51
+ z-index: 100;
52
+ }
53
+
54
+ .elementor-widget-premium-addon-banner .premium-banner-ib-title {
55
+ background: transparent;
56
+ }
57
+
58
+ .premium-banner-ib *,
59
+ .premium-banner-ib .premium-banner-ib-desc {
60
+ -webkit-box-sizing: border-box;
61
+ -moz-box-sizing: border-box;
62
+ box-sizing: border-box;
63
+ }
64
+
65
+ .premium-banner-ib img {
66
+ min-width: 100%;
67
+ max-width: 100%;
68
+ -webkit-transition: opacity 0.35s;
69
+ transition: opacity 0.35s;
70
+ }
71
+
72
+ .premium-banner-ib .premium-banner-ib-desc {
73
+ padding: 15px;
74
+ -webkit-backface-visibility: hidden;
75
+ backface-visibility: hidden;
76
+ -webkit-box-sizing: border-box;
77
+ -moz-box-sizing: border-box;
78
+ box-sizing: border-box;
79
+ position: absolute;
80
+ top: 0;
81
+ left: 0;
82
+ width: 100%;
83
+ height: 100%;
84
+ }
85
+
86
+ .premium-banner-ib .premium-banner-ib-link {
87
+ position: absolute;
88
+ top: 0;
89
+ left: 0;
90
+ width: 100%;
91
+ height: 100%;
92
+ z-index: 1000;
93
+ text-indent: 200%;
94
+ white-space: nowrap;
95
+ font-size: 0;
96
+ opacity: 0;
97
+ }
98
+
99
+ .premium-banner-ib a.premium-banner-ib-link {
100
+ display: block;
101
+ background: 0 0;
102
+ }
103
+
104
+ .premium-banner-animation1 img {
105
+ width: -webkit-calc(100% + 50px) !important;
106
+ width: calc(100% + 50px) !important;
107
+ max-width: -webkit-calc(100% + 50px) !important;
108
+ max-width: calc(100% + 50px) !important;
109
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
110
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
111
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
112
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
113
+ -webkit-transform: translate3d(-40px, 0, 0);
114
+ transform: translate3d(-40px, 0, 0);
115
+ }
116
+
117
+ .premium-banner-animation2 .premium-banner-ib-title {
118
+ padding: 15px;
119
+ }
120
+
121
+ .premium-banner-animation1 .premium-banner-ib-desc {
122
+ top: auto;
123
+ bottom: 0;
124
+ min-height: 25%;
125
+ height: auto;
126
+ max-height: 100%;
127
+ text-align: left;
128
+ }
129
+
130
+ .premium-banner-animation1 .premium-banner-ib-content,
131
+ .premium-banner-animation1 .premium-banner-ib-title,
132
+ .premium-banner-animation1 .premium-banner-read-more {
133
+ -webkit-transform: translate3d(0, 40px, 0);
134
+ transform: translate3d(0, 40px, 0);
135
+ -webkit-transition-delay: 0.05s;
136
+ transition-delay: 0.05s;
137
+ -webkit-transition-duration: 0.35s;
138
+ transition-duration: 0.35s;
139
+ }
140
+
141
+ .premium-banner-animation1 .premium-banner-ib-title {
142
+ -webkit-transition: -webkit-transform 0.35s;
143
+ transition: -webkit-transform 0.35s;
144
+ transition: transform 0.35s;
145
+ transition: transform 0.35s, -webkit-transform 0.35s;
146
+ }
147
+
148
+ .premium-banner-animation1 .premium-banner-ib-content,
149
+ .premium-banner-animation1 .premium-banner-read-more {
150
+ margin-top: 10px;
151
+ opacity: 0;
152
+ -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
153
+ transition: opacity 0.2s, -webkit-transform 0.35s;
154
+ transition: opacity 0.2s, transform 0.35s;
155
+ transition: opacity 0.2s, transform 0.35s, -webkit-transform 0.35s;
156
+ }
157
+
158
+ .premium-banner-animation1:hover .premium-banner-ib-content,
159
+ .premium-banner-animation1.active .premium-banner-ib-content,
160
+ .premium-banner-animation1:hover .premium-banner-read-more,
161
+ .premium-banner-animation1.active .premium-banner-read-more {
162
+ opacity: 1;
163
+ -webkit-transition-delay: 0.05s;
164
+ transition-delay: 0.05s;
165
+ -webkit-transition-duration: 0.35s;
166
+ transition-duration: 0.35s;
167
+ }
168
+
169
+ .premium-banner-animation1:hover .premium-banner-ib-content,
170
+ .premium-banner-animation1.active .premium-banner-ib-content,
171
+ .premium-banner-animation1:hover .premium-banner-read-more,
172
+ .premium-banner-animation1.active .premium-banner-read-more,
173
+ .premium-banner-animation1:hover .premium-banner-ib-title,
174
+ .premium-banner-animation1.active .premium-banner-ib-title,
175
+ .premium-banner-animation1:hover img,
176
+ .premium-banner-animation1.active img {
177
+ -webkit-transform: translate3d(0, 0, 0);
178
+ transform: translate3d(0, 0, 0);
179
+ -webkit-transition-delay: 0.05s;
180
+ transition-delay: 0.05s;
181
+ -webkit-transition-duration: 0.35s;
182
+ transition-duration: 0.35s;
183
+ }
184
+
185
+ .premium-banner-animation1.zoomout img,
186
+ .premium-banner-animation1.scale img {
187
+ -webkit-transform: translate3d(-40px, 0, 0) scale(1.1);
188
+ transform: translate3d(-40px, 0, 0) scale(1.1);
189
+ }
190
+
191
+ .premium-banner-ib.sepia img {
192
+ -webkit-filter: sepia(30%);
193
+ filter: sepia(30%);
194
+ }
195
+
196
+ .premium-banner-ib.bright img {
197
+ -webkit-filter: brightness(1);
198
+ filter: brightness(1);
199
+ }
200
+
201
+ .premium-banner-ib.sepia:hover img {
202
+ -webkit-filter: sepia(0%);
203
+ filter: sepia(0%);
204
+ }
205
+
206
+ .premium-banner-ib.bright:hover img {
207
+ -webkit-filter: brightness(1.2);
208
+ filter: brightness(1.2);
209
+ }
210
+
211
+ .premium-banner-animation1.premium-banner-min-height img,
212
+ .premium-banner-animation2.premium-banner-min-height img,
213
+ .premium-banner-animation4.premium-banner-min-height img,
214
+ .premium-banner-animation5.premium-banner-min-height img,
215
+ .premium-banner-animation6.premium-banner-min-height img,
216
+ .premium-banner-animation13.premium-banner-min-height img {
217
+ height: auto;
218
+ }
219
+
220
+ .premium-banner-animation2 img {
221
+ width: 100%;
222
+ }
223
+
224
+ .premium-banner-animation2 .premium-banner-ib-desc::before {
225
+ position: absolute;
226
+ content: "";
227
+ top: 0;
228
+ left: 0;
229
+ width: 100%;
230
+ height: 100%;
231
+ opacity: 0;
232
+ -webkit-transform: translate3d(0, 50%, 0);
233
+ transform: translate3d(0, 50%, 0);
234
+ }
235
+
236
+ .premium-banner-animation2 .premium-banner-ib-title {
237
+ position: absolute;
238
+ top: 50%;
239
+ left: 0;
240
+ width: 100%;
241
+ -webkit-transition: color 0.35s, -webkit-transform 0.35s;
242
+ transition: color 0.35s, -webkit-transform 0.35s;
243
+ transition: transform 0.35s, color 0.35s;
244
+ transition: transform 0.35s, color 0.35s, -webkit-transform 0.35s;
245
+ -webkit-transform: translate3d(0, -50%, 0);
246
+ transform: translate3d(0, -50%, 0);
247
+ }
248
+
249
+ .premium-banner-animation2 .premium-banner-ib-content,
250
+ .premium-banner-animation2 .premium-banner-read-more,
251
+ .premium-banner-animation2 .premium-banner-ib-desc::before {
252
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
253
+ transition: opacity 0.35s, -webkit-transform 0.35s;
254
+ transition: opacity 0.35s, transform 0.35s;
255
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
256
+ }
257
+
258
+ .premium-banner-animation2 .premium-banner-ib-content,
259
+ .premium-banner-animation2 .premium-banner-read-more {
260
+ position: absolute;
261
+ bottom: 0;
262
+ left: 0;
263
+ padding: 15px;
264
+ width: 100%;
265
+ max-height: 50%;
266
+ opacity: 0;
267
+ -webkit-transform: translate3d(0, 10px, 0);
268
+ transform: translate3d(0, 10px, 0);
269
+ }
270
+
271
+ .premium-banner-animation2:hover .premium-banner-ib-title,
272
+ .premium-banner-animation2.active .premium-banner-ib-title {
273
+ -webkit-transform: translate3d(0, -40px, 0);
274
+ transform: translate3d(0, -40px, 0);
275
+ }
276
+
277
+ .premium-banner-animation2:hover .premium-banner-read-more,
278
+ .premium-banner-animation2.active .premium-banner-read-more,
279
+ .premium-banner-animation2:hover .premium-banner-ib-desc::before,
280
+ .premium-banner-animation2.active .premium-banner-ib-desc::before {
281
+ opacity: 1;
282
+ -webkit-transform: translate3d(0, 0, 0);
283
+ transform: translate3d(0, 0, 0);
284
+ }
285
+
286
+ .premium-banner-animation2:hover .premium-banner-ib-content,
287
+ .premium-banner-animation2.active .premium-banner-ib-content {
288
+ opacity: 1;
289
+ -webkit-transform: translate3d(0, -30px, 0);
290
+ transform: translate3d(0, -30px, 0);
291
+ }
292
+
293
+ .premium-banner-animation3 .premium-banner-ib-title {
294
+ position: absolute;
295
+ bottom: 0;
296
+ left: 0;
297
+ padding: 15px;
298
+ width: 100%;
299
+ text-align: left;
300
+ -webkit-transform: translate3d(0, -30px, 0);
301
+ transform: translate3d(0, -30px, 0);
302
+ }
303
+
304
+ .premium-banner-animation3 .premium-banner-ib-desc::before,
305
+ .premium-banner-animation3 .premium-banner-ib-title {
306
+ -webkit-transition: -webkit-transform 0.35s;
307
+ transition: -webkit-transform 0.35s;
308
+ transition: transform 0.35s;
309
+ transition: transform 0.35s, -webkit-transform 0.35s;
310
+ }
311
+
312
+ .premium-banner-animation3:hover .premium-banner-ib-desc::before,
313
+ .premium-banner-animation3.active .premium-banner-ib-desc::before,
314
+ .premium-banner-animation3:hover .premium-banner-ib-title,
315
+ .premium-banner-animation3.active .premium-banner-ib-title {
316
+ opacity: 1;
317
+ -webkit-transform: translate3d(0, 0, 0);
318
+ transform: translate3d(0, 0, 0);
319
+ }
320
+
321
+ .premium-banner-animation3 .premium-banner-ib-content {
322
+ max-height: -webkit-calc(100% - 60px - 1.5em);
323
+ max-height: calc(100% - 60px - 1.5em);
324
+ overflow: hidden;
325
+ }
326
+
327
+ .premium-banner-animation4 img {
328
+ width: -webkit-calc(100% + 40px) !important;
329
+ width: calc(100% + 40px) !important;
330
+ max-width: -webkit-calc(100% + 40px) !important;
331
+ max-width: calc(100% + 40px) !important;
332
+ }
333
+
334
+ .premium-banner-animation4 .premium-banner-ib-desc {
335
+ padding: 30px;
336
+ }
337
+
338
+ .premium-banner-animation4 .premium-banner-ib-desc::after {
339
+ position: absolute;
340
+ content: "";
341
+ opacity: 0;
342
+ }
343
+
344
+ .premium-banner-animation4 .premium-banner-ib-desc::before {
345
+ position: absolute;
346
+ content: "";
347
+ opacity: 0;
348
+ top: 50px;
349
+ right: 30px;
350
+ bottom: 50px;
351
+ left: 30px;
352
+ border-top: 1px solid #fff;
353
+ border-bottom: 1px solid #fff;
354
+ -webkit-transform: scale(0, 1);
355
+ -ms-transform: scale(0, 1);
356
+ transform: scale(0, 1);
357
+ -webkit-transform-origin: 0 0;
358
+ -ms-transform-origin: 0 0;
359
+ transform-origin: 0 0;
360
+ }
361
+
362
+ .premium-banner-animation4 .premium-banner-ib-desc::after {
363
+ top: 30px;
364
+ right: 50px;
365
+ bottom: 30px;
366
+ left: 50px;
367
+ border-right: 1px solid #fff;
368
+ border-left: 1px solid #fff;
369
+ -webkit-transform: scale(1, 0);
370
+ -ms-transform: scale(1, 0);
371
+ transform: scale(1, 0);
372
+ -webkit-transform-origin: 100% 0;
373
+ -ms-transform-origin: 100% 0;
374
+ transform-origin: 100% 0;
375
+ }
376
+
377
+ .premium-banner-animation4 .premium-banner-ib-title {
378
+ padding: 50px 30px 0 30px;
379
+ -webkit-transition: -webkit-transform 0.35s;
380
+ transition: -webkit-transform 0.35s;
381
+ transition: transform 0.35s;
382
+ transition: transform 0.35s, -webkit-transform 0.35s;
383
+ }
384
+
385
+ .premium-banner-animation4 .premium-banner-ib-content,
386
+ .premium-banner-animation4 .premium-banner-read-more {
387
+ padding: 10px 30px;
388
+ opacity: 0;
389
+ overflow: hidden;
390
+ -webkit-transform: translate3d(0, -10px, 0);
391
+ transform: translate3d(0, -10px, 0);
392
+ }
393
+
394
+ .premium-banner-animation4 .premium-banner-ib-title,
395
+ .premium-banner-animation4 img {
396
+ -webkit-transform: translate3d(-30px, 0, 0);
397
+ transform: translate3d(-30px, 0, 0);
398
+ }
399
+
400
+ .premium-banner-animation4.zoomout img,
401
+ .premium-banner-animation4.scale img {
402
+ -webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
403
+ transform: translate3d(-30px, 0, 0) scale(1.1);
404
+ }
405
+
406
+ .premium-banner-animation4 .premium-banner-ib-content,
407
+ .premium-banner-animation4 .premium-banner-read-more {
408
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
409
+ transition: opacity 0.35s, -webkit-transform 0.35s;
410
+ transition: opacity 0.35s, transform 0.35s;
411
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
412
+ }
413
+
414
+ .premium-banner-animation4 .premium-banner-ib-desc::after,
415
+ .premium-banner-animation4 .premium-banner-ib-desc::before {
416
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
417
+ transition: opacity 0.35s, -webkit-transform 0.35s;
418
+ transition: opacity 0.35s, transform 0.35s;
419
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
420
+ }
421
+
422
+ .premium-banner-animation4 img {
423
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
424
+ transition: opacity 0.35s, -webkit-transform 0.35s;
425
+ transition: opacity 0.35s, transform 0.35s;
426
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
427
+ }
428
+
429
+ .premium-banner-animation4:hover .premium-banner-ib-desc::after,
430
+ .premium-banner-animation4.active .premium-banner-ib-desc::after,
431
+ .premium-banner-animation4:hover .premium-banner-ib-desc::before,
432
+ .premium-banner-animation4.active .premium-banner-ib-desc::before {
433
+ opacity: 1;
434
+ -webkit-transform: scale(1);
435
+ -ms-transform: scale(1);
436
+ transform: scale(1);
437
+ }
438
+
439
+ .premium-banner-animation4:hover .premium-banner-ib-content,
440
+ .premium-banner-animation4.active .premium-banner-ib-content,
441
+ .premium-banner-animation4:hover .premium-banner-read-more,
442
+ .premium-banner-animation4.active .premium-banner-read-more,
443
+ .premium-banner-animation4:hover .premium-banner-ib-title,
444
+ .premium-banner-animation4.active .premium-banner-ib-title {
445
+ opacity: 1;
446
+ -webkit-transform: translate3d(0, 0, 0);
447
+ transform: translate3d(0, 0, 0);
448
+ }
449
+
450
+ .premium-banner-animation4:hover .premium-banner-ib-content,
451
+ .premium-banner-animation4:hover .premium-banner-ib-desc::after,
452
+ .premium-banner-animation4:hover .premium-banner-ib-title,
453
+ .premium-banner-animation4:hover img {
454
+ -webkit-transition-delay: 0.15s;
455
+ transition-delay: 0.15s;
456
+ }
457
+
458
+ .premium-banner-animation5 .premium-banner-ib-desc {
459
+ top: auto;
460
+ bottom: 0;
461
+ padding: 15px;
462
+ height: auto;
463
+ background: #f2f2f2;
464
+ color: #3c4a50;
465
+ -webkit-transition: -webkit-transform 0.35s;
466
+ transition: -webkit-transform 0.35s;
467
+ transition: transform 0.35s;
468
+ transition: transform 0.35s, -webkit-transform 0.35s;
469
+ -webkit-transform: translate3d(0, 100%, 0);
470
+ transform: translate3d(0, 100%, 0);
471
+ }
472
+
473
+ .premium-banner-animation5 .premium-banner-ib-content {
474
+ position: absolute;
475
+ top: auto;
476
+ bottom: 100%;
477
+ left: 0;
478
+ width: 100%;
479
+ padding: 15px;
480
+ opacity: 0;
481
+ -webkit-transition: opacity 0.35s;
482
+ transition: opacity 0.35s;
483
+ }
484
+
485
+ .premium-banner-animation5 .premium-banner-ib-title,
486
+ .premium-banner-animation5 .premium-banner-read-more {
487
+ -webkit-transition: -webkit-transform 0.35s;
488
+ transition: -webkit-transform 0.35s;
489
+ transition: transform 0.35s;
490
+ transition: transform 0.35s, -webkit-transform 0.35s;
491
+ -webkit-transform: translate3d(0, 200%, 0);
492
+ transform: translate3d(0, 200%, 0);
493
+ text-align: center;
494
+ }
495
+
496
+ .premium-banner-animation5 .premium-banner-ib-title {
497
+ margin: 10px 0;
498
+ }
499
+
500
+ .premium-banner-animation5:hover .premium-banner-ib-content,
501
+ .premium-banner-animation5.active .premium-banner-ib-content,
502
+ .premium-banner-animation5:hover .premium-banner-ib-content *,
503
+ .premium-banner-animation5.active .premium-banner-ib-content * {
504
+ opacity: 1 !important;
505
+ z-index: 99 !important;
506
+ -webkit-backface-visibility: hidden !important;
507
+ backface-visibility: hidden !important;
508
+ }
509
+
510
+ .premium-banner-animation5:hover .premium-banner-ib-desc,
511
+ .premium-banner-animation5.active .premium-banner-ib-desc,
512
+ .premium-banner-animation5:hover .premium-banner-ib-title,
513
+ .premium-banner-animation5.active .premium-banner-ib-title,
514
+ .premium-banner-animation5:hover .premium-banner-read-more,
515
+ .premium-banner-animation5.active .premium-banner-read-more {
516
+ -webkit-transform: translateY(0);
517
+ -ms-transform: translateY(0);
518
+ transform: translateY(0);
519
+ }
520
+
521
+ .premium-banner-animation5:hover .premium-banner-ib-title {
522
+ -webkit-transition-delay: 0.05s;
523
+ transition-delay: 0.05s;
524
+ }
525
+
526
+ .premium-banner-animation5 img {
527
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
528
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
529
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
530
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
531
+ }
532
+
533
+ .premium-banner-animation2 img,
534
+ .premium-banner-animation4 img,
535
+ .premium-banner-animation6 img {
536
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
537
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
538
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
539
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
540
+ }
541
+
542
+ .premium-banner-animation5.zoomout img,
543
+ .premium-banner-animation5.scale img {
544
+ -webkit-transform: scale(1.1);
545
+ -ms-transform: scale(1.1);
546
+ transform: scale(1.1);
547
+ }
548
+
549
+ .premium-banner-animation2.zoomout img,
550
+ .premium-banner-animation2.scale img {
551
+ -webkit-transform: scale(1.1);
552
+ -ms-transform: scale(1.1);
553
+ transform: scale(1.1);
554
+ }
555
+
556
+ .premium-banner-animation6.zoomout img,
557
+ .premium-banner-animation6.scale img {
558
+ -webkit-transform: scale(1.1);
559
+ -ms-transform: scale(1.1);
560
+ transform: scale(1.1);
561
+ }
562
+
563
+ .premium-banner-animation5.zoomin:hover img,
564
+ .premium-banner-animation2.zoomin:hover img,
565
+ .premium-banner-animation6.zoomin:hover img {
566
+ -webkit-transform: scale(1.1);
567
+ -ms-transform: scale(1.1);
568
+ transform: scale(1.1);
569
+ }
570
+
571
+ .premium-banner-animation5.zoomout:hover img,
572
+ .premium-banner-animation2.zoomout:hover img,
573
+ .premium-banner-animation6.zoomout:hover img {
574
+ -webkit-transform: scale(1);
575
+ -ms-transform: scale(1);
576
+ transform: scale(1);
577
+ }
578
+
579
+ .premium-banner-animation5.scale:hover img,
580
+ .premium-banner-animation2.scale:hover img,
581
+ .premium-banner-animation6.scale:hover img {
582
+ -webkit-transform: scale(1.2) rotate(5deg);
583
+ -ms-transform: scale(1.2) rotate(5deg);
584
+ transform: scale(1.2) rotate(5deg);
585
+ }
586
+
587
+ .premium-banner-animation5.grayscale:hover img,
588
+ .premium-banner-animation2.grayscale:hover img,
589
+ .premium-banner-animation6.grayscale:hover img {
590
+ -webkit-filter: grayscale(100%);
591
+ filter: grayscale(100%);
592
+ }
593
+
594
+ .premium-banner-animation5.blur:hover img,
595
+ .premium-banner-animation2.blur:hover img {
596
+ -webkit-filter: blur(3px);
597
+ filter: blur(3px);
598
+ }
599
+
600
+ .premium-banner-animation6.blur:hover img {
601
+ -webkit-filter: blur(3px);
602
+ filter: blur(3px);
603
+ }
604
+
605
+ .premium-banner-animation6 .premium-banner-ib-desc {
606
+ padding: 45px;
607
+ }
608
+
609
+ .premium-banner-animation6 .premium-banner-ib-desc::before {
610
+ position: absolute;
611
+ content: "";
612
+ top: 30px;
613
+ right: 30px;
614
+ bottom: 30px;
615
+ left: 30px;
616
+ border: 1px solid #fff;
617
+ }
618
+
619
+ .premium-banner-animation6 .premium-banner-ib-title {
620
+ margin: 20px 0 10px;
621
+ -webkit-transition: -webkit-transform 0.35s;
622
+ transition: -webkit-transform 0.35s;
623
+ transition: transform 0.35s;
624
+ transition: transform 0.35s, -webkit-transform 0.35s;
625
+ -webkit-transform: translate3d(0, 100%, 0);
626
+ transform: translate3d(0, 100%, 0);
627
+ }
628
+
629
+ .premium-banner-animation6 .premium-banner-ib-content,
630
+ .premium-banner-animation6 .premium-banner-read-more,
631
+ .premium-banner-animation6 .premium-banner-ib-desc::before {
632
+ opacity: 0;
633
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
634
+ transition: opacity 0.35s, -webkit-transform 0.35s;
635
+ transition: opacity 0.35s, transform 0.35s;
636
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
637
+ -webkit-transform: scale(0);
638
+ -ms-transform: scale(0);
639
+ transform: scale(0);
640
+ }
641
+
642
+ .premium-banner-animation6 .premium-banner-read-more {
643
+ margin-top: 10px;
644
+ }
645
+
646
+ .premium-banner-animation6:hover .premium-banner-ib-title,
647
+ .premium-banner-animation6.active .premium-banner-ib-title {
648
+ -webkit-transform: translate3d(0, 0, 0);
649
+ transform: translate3d(0, 0, 0);
650
+ }
651
+
652
+ .premium-banner-animation6:hover .premium-banner-ib-content,
653
+ .premium-banner-animation6.active .premium-banner-ib-content,
654
+ .premium-banner-animation6:hover .premium-banner-read-more,
655
+ .premium-banner-animation6.active .premium-banner-read-more,
656
+ .premium-banner-animation6:hover .premium-banner-ib-desc::before,
657
+ .premium-banner-animation6.active .premium-banner-ib-desc::before {
658
+ opacity: 1;
659
+ -webkit-transform: scale(1);
660
+ -ms-transform: scale(1);
661
+ transform: scale(1);
662
+ }
663
+
664
+ .premium-banner-animation12 .premium-banner-ib-desc::after {
665
+ position: absolute;
666
+ content: "";
667
+ right: 30px;
668
+ bottom: 30px;
669
+ left: 30px;
670
+ height: -webkit-calc(50% - 30px);
671
+ height: calc(50% - 30px);
672
+ border: 7px solid #fff;
673
+ -webkit-transition: -webkit-transform 0.35s;
674
+ transition: -webkit-transform 0.35s;
675
+ transition: transform 0.35s;
676
+ transition: transform 0.35s, -webkit-transform 0.35s;
677
+ -webkit-transform: translate3d(0, -100%, 0);
678
+ transform: translate3d(0, -100%, 0);
679
+ }
680
+
681
+ .premium-banner-animation12:hover .premium-banner-ib-desc::after,
682
+ .premium-banner-animation12.active .premium-banner-ib-desc::after {
683
+ -webkit-transform: translate3d(0, 0, 0);
684
+ transform: translate3d(0, 0, 0);
685
+ }
686
+
687
+ .premium-banner-animation12 .premium-banner-ib-desc {
688
+ padding: 45px;
689
+ text-align: left;
690
+ }
691
+
692
+ .premium-banner-animation12 .premium-banner-ib-content {
693
+ position: absolute;
694
+ right: 60px;
695
+ bottom: 60px;
696
+ left: 60px;
697
+ opacity: 0;
698
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
699
+ transition: opacity 0.35s, -webkit-transform 0.35s;
700
+ transition: opacity 0.35s, transform 0.35s;
701
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
702
+ -webkit-transform: translate3d(0, -100px, 0);
703
+ transform: translate3d(0, -100px, 0);
704
+ }
705
+
706
+ .premium-banner-animation12:hover .premium-banner-ib-content,
707
+ .premium-banner-animation12.active .premium-banner-ib-content {
708
+ opacity: 1;
709
+ -webkit-transform: translate3d(0, 0, 0);
710
+ transform: translate3d(0, 0, 0);
711
+ }
712
+
713
+ .premium-banner-animation13 img {
714
+ width: -webkit-calc(100% + 20px) !important;
715
+ width: calc(100% + 20px) !important;
716
+ max-width: -webkit-calc(100% + 20px) !important;
717
+ max-width: calc(100% + 20px) !important;
718
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
719
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
720
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
721
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
722
+ -webkit-transform: translate3d(-10px, 0, 0);
723
+ transform: translate3d(-10px, 0, 0);
724
+ -webkit-backface-visibility: hidden;
725
+ backface-visibility: hidden;
726
+ }
727
+
728
+ .premium-banner-animation13.zoomout img,
729
+ .premium-banner-animation13.scale img {
730
+ -webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
731
+ transform: translate3d(-10px, 0, 0) scale(1.1);
732
+ }
733
+
734
+ .premium-banner-animation13.none:hover img {
735
+ -webkit-transform: translate3d(0, 0, 0);
736
+ transform: translate3d(0, 0, 0);
737
+ }
738
+
739
+ .premium-banner-animation1.none:hover img,
740
+ .premium-banner-animation4.none:hover img {
741
+ -webkit-transform: translate3d(0, 0, 0);
742
+ transform: translate3d(0, 0, 0);
743
+ }
744
+
745
+ .premium-banner-animation13.zoomin:hover img,
746
+ .premium-banner-animation1.zoomin:hover img,
747
+ .premium-banner-animation4.zoomin:hover img,
748
+ .premium-banner-animation8.zoomin:hover img,
749
+ .premium-banner-animation7.zoomin:hover img,
750
+ .premium-banner-animation9.zoomin:hover img,
751
+ .premium-banner-animation10.zoomin:hover img,
752
+ .premium-banner-animation11.zoomin:hover img {
753
+ -webkit-transform: translate3d(0, 0, 0) scale(1.1);
754
+ transform: translate3d(0, 0, 0) scale(1.1);
755
+ }
756
+
757
+ .premium-banner-animation13.zoomout:hover img,
758
+ .premium-banner-animation1.zoomout:hover img,
759
+ .premium-banner-animation4.zoomout:hover img,
760
+ .premium-banner-animation8.zoomout:hover img,
761
+ .premium-banner-animation7.zoomout:hover img,
762
+ .premium-banner-animation9.zoomout:hover img,
763
+ .premium-banner-animation10.zoomout:hover img,
764
+ .premium-banner-animation11.zoomout:hover img {
765
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
766
+ transform: translate3d(0, 0, 0) scale(1);
767
+ }
768
+
769
+ .premium-banner-animation13.scale:hover img,
770
+ .premium-banner-animation1.scale:hover img,
771
+ .premium-banner-animation4.scale:hover img,
772
+ .premium-banner-animation8.scale:hover img,
773
+ .premium-banner-animation7.scale:hover img,
774
+ .premium-banner-animation9.scale:hover img,
775
+ .premium-banner-animation10.scale:hover img,
776
+ .premium-banner-animation11.scale:hover img {
777
+ -webkit-transform: translate3d(0, 0, 0) scale(1.2) rotate(5deg);
778
+ transform: translate3d(0, 0, 0) scale(1.2) rotate(5deg);
779
+ }
780
+
781
+ .premium-banner-animation13.grayscale:hover img,
782
+ .premium-banner-animation1.grayscale:hover img,
783
+ .premium-banner-animation4.grayscale:hover img,
784
+ .premium-banner-animation8.grayscale:hover img,
785
+ .premium-banner-animation7.grayscale:hover img,
786
+ .premium-banner-animation9.grayscale:hover img,
787
+ .premium-banner-animation10.grayscale:hover img,
788
+ .premium-banner-animation11.grayscale:hover img {
789
+ -webkit-transform: translate3d(0, 0, 0);
790
+ transform: translate3d(0, 0, 0);
791
+ -webkit-filter: grayscale(100%);
792
+ filter: grayscale(100%);
793
+ }
794
+
795
+ .premium-banner-animation13.blur:hover img,
796
+ .premium-banner-animation1.blur:hover img,
797
+ .premium-banner-animation4.blur:hover,
798
+ .premium-banner-animation8.blur:hover img,
799
+ .premium-banner-animation7.blur:hover img,
800
+ .premium-banner-animation9.blur:hover img,
801
+ .premium-banner-animation10.blur:hover img,
802
+ .premium-banner-animation11.blur:hover img {
803
+ -webkit-transform: translate3d(0, 0, 0);
804
+ transform: translate3d(0, 0, 0);
805
+ -webkit-filter: blur(3px);
806
+ filter: blur(3px);
807
+ }
808
+
809
+ .premium-banner-animation13 .premium-banner-ib-desc {
810
+ text-align: left;
811
+ }
812
+
813
+ .premium-banner-animation13 .premium-banner-ib-title {
814
+ position: relative;
815
+ overflow: hidden;
816
+ padding: 5px 0 10px;
817
+ }
818
+
819
+ .premium-banner-animation13 .premium-banner-ib-title::after {
820
+ position: absolute;
821
+ content: "";
822
+ bottom: 0;
823
+ left: 0;
824
+ width: 100%;
825
+ height: 2px;
826
+ background: #fff;
827
+ -webkit-transition: -webkit-transform 0.35s;
828
+ transition: -webkit-transform 0.35s;
829
+ transition: transform 0.35s;
830
+ transition: transform 0.35s, -webkit-transform 0.35s;
831
+ -webkit-transform: translate3d(-101%, 0, 0);
832
+ transform: translate3d(-101%, 0, 0);
833
+ }
834
+
835
+ .premium-banner-animation13:hover .premium-banner-ib-title::after,
836
+ .premium-banner-animation13.active .premium-banner-ib-title::after {
837
+ -webkit-transform: translate3d(0, 0, 0);
838
+ transform: translate3d(0, 0, 0);
839
+ }
840
+
841
+ .premium-banner-animation13 .premium-banner-ib-content,
842
+ .premium-banner-animation13 .premium-banner-read-more {
843
+ padding: 15px 0;
844
+ opacity: 0;
845
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
846
+ transition: opacity 0.35s, -webkit-transform 0.35s;
847
+ transition: opacity 0.35s, transform 0.35s;
848
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
849
+ -webkit-transform: translate3d(100%, 0, 0);
850
+ transform: translate3d(100%, 0, 0);
851
+ }
852
+
853
+ .premium-banner-animation13:hover .premium-banner-ib-content,
854
+ .premium-banner-animation13.active .premium-banner-ib-content,
855
+ .premium-banner-animation13:hover .premium-banner-read-more,
856
+ .premium-banner-animation13.active .premium-banner-read-more {
857
+ opacity: 1;
858
+ -webkit-transform: translate3d(0, 0, 0);
859
+ transform: translate3d(0, 0, 0);
860
+ }
861
+
862
+ .premium-banner-ib.premium-banner-animation5 .premium-banner-toggle-size {
863
+ left: 50%;
864
+ width: auto !important;
865
+ height: 100%;
866
+ max-width: none;
867
+ -webkit-transform: translateX(-50%);
868
+ -ms-transform: translateX(-50%);
869
+ transform: translateX(-50%);
870
+ }
871
+
872
+ .premium-banner-ib img {
873
+ border: none;
874
+ padding: 0;
875
+ margin: 0;
876
+ }
877
+
878
+ .premium-banner-animation7 img {
879
+ width: -webkit-calc(100% + 40px) !important;
880
+ width: calc(100% + 40px) !important;
881
+ max-width: -webkit-calc(100% + 40px) !important;
882
+ max-width: calc(100% + 40px) !important;
883
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
884
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
885
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
886
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
887
+ }
888
+
889
+ .premium-banner-animation7 .premium-banner-brlr {
890
+ width: 7px;
891
+ }
892
+
893
+ .premium-banner-animation7 .premium-banner-brtb {
894
+ height: 7px;
895
+ }
896
+
897
+ .premium-banner-animation7 .premium-banner-br {
898
+ position: absolute;
899
+ z-index: 1;
900
+ background-color: white;
901
+ -webkit-transition: all 0.3s ease-in-out;
902
+ transition: all 0.3s ease-in-out;
903
+ -webkit-transition-delay: 0.2s;
904
+ transition-delay: 0.2s;
905
+ }
906
+
907
+ .premium-banner-animation7 .premium-banner-bleft {
908
+ left: 30px;
909
+ top: -webkit-calc(100% - 150px);
910
+ top: calc(100% - 150px);
911
+ height: 0;
912
+ }
913
+
914
+ .premium-banner-animation7 .premium-banner-bright {
915
+ right: 30px;
916
+ bottom: -webkit-calc(100% - 150px);
917
+ bottom: calc(100% - 150px);
918
+ height: 0;
919
+ }
920
+
921
+ .premium-banner-animation7 .premium-banner-bottom {
922
+ right: -webkit-calc(100% - 150px);
923
+ right: calc(100% - 150px);
924
+ bottom: 30px;
925
+ width: 0;
926
+ }
927
+
928
+ .premium-banner-animation7 .premium-banner-btop {
929
+ left: -webkit-calc(100% - 150px);
930
+ left: calc(100% - 150px);
931
+ top: 30px;
932
+ width: 0;
933
+ }
934
+
935
+ .premium-banner-animation7 .premium-banner-ib-desc {
936
+ padding: 70px;
937
+ display: table;
938
+ }
939
+
940
+ .premium-banner-animation7 .premium-banner-ib-desc .premium-banner-desc-centered {
941
+ display: table-cell;
942
+ vertical-align: middle;
943
+ }
944
+
945
+ .premium-banner-animation7 .premium-banner-ib-title {
946
+ margin-top: 0;
947
+ }
948
+
949
+ .premium-banner-animation7 .premium-banner-ib-title,
950
+ .premium-banner-animation7 img {
951
+ -webkit-transform: translate3d(-30px, 0, 0);
952
+ transform: translate3d(-30px, 0, 0);
953
+ }
954
+
955
+ .premium-banner-animation7.zoomout img,
956
+ .premium-banner-animation7.scale img {
957
+ -webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
958
+ transform: translate3d(-30px, 0, 0) scale(1.1);
959
+ }
960
+
961
+ .premium-banner-animation7 .premium-banner-ib-content,
962
+ .premium-banner-animation7 .premium-banner-read-more {
963
+ margin-top: 10px;
964
+ }
965
+
966
+ .premium-banner-animation7 .premium-banner-ib-desc::after,
967
+ .premium-banner-animation7 .premium-banner-ib-desc::before {
968
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
969
+ transition: opacity 0.35s, -webkit-transform 0.35s;
970
+ transition: opacity 0.35s, transform 0.35s;
971
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
972
+ }
973
+
974
+ .premium-banner-animation7 .premium-banner-ib-title,
975
+ .premium-banner-animation7 .premium-banner-ib-content,
976
+ .premium-banner-animation7 .premium-banner-read-more {
977
+ opacity: 0;
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
+ }
983
+
984
+ .premium-banner-animation7:hover .premium-banner-ib-content,
985
+ .premium-banner-animation7.active .premium-banner-ib-content,
986
+ .premium-banner-animation7:hover .premium-banner-read-more,
987
+ .premium-banner-animation7.active .premium-banner-read-more,
988
+ .premium-banner-animation7:hover .premium-banner-ib-title,
989
+ .premium-banner-animation7.active .premium-banner-ib-title {
990
+ opacity: 1;
991
+ -webkit-transform: translate3d(0, 0, 0);
992
+ transform: translate3d(0, 0, 0);
993
+ }
994
+
995
+ .premium-banner-animation7:hover .premium-banner-bleft,
996
+ .premium-banner-animation7.active .premium-banner-bleft {
997
+ top: 30px;
998
+ height: 70px;
999
+ }
1000
+
1001
+ .premium-banner-animation7:hover .premium-banner-bright,
1002
+ .premium-banner-animation7.active .premium-banner-bright {
1003
+ bottom: 30px;
1004
+ height: 70px;
1005
+ }
1006
+
1007
+ .premium-banner-animation7:hover .premium-banner-bottom,
1008
+ .premium-banner-animation7.active .premium-banner-bottom {
1009
+ right: 30px;
1010
+ width: 70px;
1011
+ }
1012
+
1013
+ .premium-banner-animation7:hover .premium-banner-btop,
1014
+ .premium-banner-animation7.active .premium-banner-btop {
1015
+ left: 30px;
1016
+ width: 70px;
1017
+ }
1018
+
1019
+ .premium-banner-animation7:hover .premium-banner-ib-content,
1020
+ .premium-banner-animation7:hover .premium-banner-read-more,
1021
+ .premium-banner-animation7:hover .premium-banner-ib-title,
1022
+ .premium-banner-animation7:hover img {
1023
+ -webkit-transition-delay: 0.15s;
1024
+ transition-delay: 0.15s;
1025
+ }
1026
+
1027
+ .premium-banner-animation8 img {
1028
+ width: -webkit-calc(100% + 40px) !important;
1029
+ width: calc(100% + 40px) !important;
1030
+ max-width: -webkit-calc(100% + 40px) !important;
1031
+ max-width: calc(100% + 40px) !important;
1032
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1033
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1034
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
1035
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1036
+ }
1037
+
1038
+ .premium-banner-animation8 .premium-banner-brlr {
1039
+ width: 7px;
1040
+ }
1041
+
1042
+ .premium-banner-animation8 .premium-banner-brtb {
1043
+ height: 7px;
1044
+ }
1045
+
1046
+ .premium-banner-animation8 .premium-banner-br {
1047
+ position: absolute;
1048
+ z-index: 1;
1049
+ background-color: white;
1050
+ -webkit-transition: all 0.3s ease-in-out;
1051
+ transition: all 0.3s ease-in-out;
1052
+ -webkit-transition-delay: 0.2s;
1053
+ transition-delay: 0.2s;
1054
+ }
1055
+
1056
+ .premium-banner-animation8 .premium-banner-bleft {
1057
+ left: 30px;
1058
+ top: 50%;
1059
+ -webkit-transform: translateY(-50%);
1060
+ -ms-transform: translateY(-50%);
1061
+ transform: translateY(-50%);
1062
+ height: 0;
1063
+ }
1064
+
1065
+ .premium-banner-animation8 .premium-banner-bright {
1066
+ right: 30px;
1067
+ top: 50%;
1068
+ -webkit-transform: translateY(-50%);
1069
+ -ms-transform: translateY(-50%);
1070
+ transform: translateY(-50%);
1071
+ height: 0;
1072
+ }
1073
+
1074
+ .premium-banner-animation8 .premium-banner-bottom {
1075
+ left: 50%;
1076
+ -webkit-transform: translateX(-50%);
1077
+ -ms-transform: translateX(-50%);
1078
+ transform: translateX(-50%);
1079
+ bottom: 30px;
1080
+ width: 0;
1081
+ }
1082
+
1083
+ .premium-banner-animation8 .premium-banner-btop {
1084
+ left: 50%;
1085
+ -webkit-transform: translateX(-50%);
1086
+ -ms-transform: translateX(-50%);
1087
+ transform: translateX(-50%);
1088
+ top: 30px;
1089
+ width: 0;
1090
+ }
1091
+
1092
+ .premium-banner-animation8 .premium-banner-ib-desc {
1093
+ padding: 70px;
1094
+ display: table;
1095
+ }
1096
+
1097
+ .premium-banner-animation8 .premium-banner-ib-desc .premium-banner-desc-centered {
1098
+ display: table-cell;
1099
+ vertical-align: middle;
1100
+ }
1101
+
1102
+ .premium-banner-animation8 .premium-banner-ib-title {
1103
+ margin-top: 0;
1104
+ }
1105
+
1106
+ .premium-banner-animation8 .premium-banner-ib-title,
1107
+ .premium-banner-animation8 img {
1108
+ -webkit-transform: translate3d(-30px, 0, 0);
1109
+ transform: translate3d(-30px, 0, 0);
1110
+ }
1111
+
1112
+ .premium-banner-animation8.zoomout img,
1113
+ .premium-banner-animation8.scale img {
1114
+ -webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
1115
+ transform: translate3d(-30px, 0, 0) scale(1.1);
1116
+ }
1117
+
1118
+ .premium-banner-animation8 .premium-banner-ib-content,
1119
+ .premium-banner-animation8 .premium-banner-read-more {
1120
+ margin-top: 10px;
1121
+ }
1122
+
1123
+ .premium-banner-animation8 .premium-banner-ib-desc::after,
1124
+ .premium-banner-animation8 .premium-banner-ib-desc::before {
1125
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1126
+ transition: opacity 0.35s, -webkit-transform 0.35s;
1127
+ transition: opacity 0.35s, transform 0.35s;
1128
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1129
+ }
1130
+
1131
+ .premium-banner-animation8 .premium-banner-ib-title,
1132
+ .premium-banner-animation8 .premium-banner-ib-content,
1133
+ .premium-banner-animation8 .premium-banner-read-more {
1134
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1135
+ transition: opacity 0.35s, -webkit-transform 0.35s;
1136
+ transition: opacity 0.35s, transform 0.35s;
1137
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1138
+ opacity: 0;
1139
+ }
1140
+
1141
+ .premium-banner-animation8:hover .premium-banner-ib-content,
1142
+ .premium-banner-animation8.active .premium-banner-ib-content,
1143
+ .premium-banner-animation8:hover .premium-banner-read-more,
1144
+ .premium-banner-animation8.active .premium-banner-read-more,
1145
+ .premium-banner-animation8:hover .premium-banner-ib-title,
1146
+ .premium-banner-animation8.active .premium-banner-ib-title {
1147
+ opacity: 1;
1148
+ -webkit-transform: translate3d(0, 0, 0);
1149
+ transform: translate3d(0, 0, 0);
1150
+ }
1151
+
1152
+ .premium-banner-animation8:hover .premium-banner-bleft,
1153
+ .premium-banner-animation8.active .premium-banner-bleft {
1154
+ height: -webkit-calc(100% - 61px);
1155
+ height: calc(100% - 61px);
1156
+ }
1157
+
1158
+ .premium-banner-animation8:hover .premium-banner-bright,
1159
+ .premium-banner-animation8.active .premium-banner-bright {
1160
+ height: -webkit-calc(100% - 61px);
1161
+ height: calc(100% - 61px);
1162
+ }
1163
+
1164
+ .premium-banner-animation8:hover .premium-banner-bottom,
1165
+ .premium-banner-animation8.active .premium-banner-bottom {
1166
+ width: -webkit-calc(100% - 61px);
1167
+ width: calc(100% - 61px);
1168
+ }
1169
+
1170
+ .premium-banner-animation8:hover .premium-banner-btop,
1171
+ .premium-banner-animation8.active .premium-banner-btop {
1172
+ width: -webkit-calc(100% - 61px);
1173
+ width: calc(100% - 61px);
1174
+ }
1175
+
1176
+ .premium-banner-animation8:hover .premium-banner-ib-content,
1177
+ .premium-banner-animation8:hover .premium-banner-ib-title,
1178
+ .premium-banner-animation8:hover .premium-banner-read-more,
1179
+ .premium-banner-animation8:hover img {
1180
+ -webkit-transition-delay: 0.15s;
1181
+ transition-delay: 0.15s;
1182
+ }
1183
+
1184
+ .premium-banner-animation9 img {
1185
+ width: -webkit-calc(100% + 20px) !important;
1186
+ width: calc(100% + 20px) !important;
1187
+ max-width: -webkit-calc(100% + 20px) !important;
1188
+ max-width: calc(100% + 20px) !important;
1189
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1190
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1191
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
1192
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1193
+ -webkit-transform: scale(1.2);
1194
+ -ms-transform: scale(1.2);
1195
+ transform: scale(1.2);
1196
+ }
1197
+
1198
+ .premium-banner-animation9 .premium-banner-ib-desc {
1199
+ width: 100%;
1200
+ height: 100%;
1201
+ }
1202
+
1203
+ .premium-banner-animation9 .premium-banner-ib-desc::before {
1204
+ position: absolute;
1205
+ top: 50%;
1206
+ left: 50%;
1207
+ width: 80%;
1208
+ height: 1px;
1209
+ background: #fff;
1210
+ content: "";
1211
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1212
+ transition: opacity 0.35s, -webkit-transform 0.35s;
1213
+ transition: opacity 0.35s, transform 0.35s;
1214
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1215
+ -webkit-transform: translate3d(-50%, -50%, 0);
1216
+ transform: translate3d(-50%, -50%, 0);
1217
+ }
1218
+
1219
+ .premium-banner-animation9 .premium-banner-ib-desc::after {
1220
+ position: absolute;
1221
+ top: 50%;
1222
+ left: 50%;
1223
+ width: 80%;
1224
+ height: 1px;
1225
+ background: #fff;
1226
+ content: "";
1227
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1228
+ transition: opacity 0.35s, -webkit-transform 0.35s;
1229
+ transition: opacity 0.35s, transform 0.35s;
1230
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1231
+ -webkit-transform: translate3d(-50%, -50%, 0);
1232
+ transform: translate3d(-50%, -50%, 0);
1233
+ }
1234
+
1235
+ .premium-banner-animation9 .premium-banner-ib-title {
1236
+ position: absolute;
1237
+ top: 50%;
1238
+ left: 0;
1239
+ width: 100%;
1240
+ -webkit-transition: -webkit-transform 0.35s;
1241
+ transition: -webkit-transform 0.35s;
1242
+ transition: transform 0.35s;
1243
+ transition: transform 0.35s, -webkit-transform 0.35s;
1244
+ -webkit-transform: translate3d(0, -70px, 0);
1245
+ transform: translate3d(0, -70px, 0);
1246
+ margin-top: 0;
1247
+ padding: 0 10%;
1248
+ }
1249
+
1250
+ .premium-banner-animation9:hover .premium-banner-ib-title,
1251
+ .premium-banner-animation9.active .premium-banner-ib-title {
1252
+ -webkit-transform: translate3d(0, -80px, 0);
1253
+ transform: translate3d(0, -80px, 0);
1254
+ }
1255
+
1256
+ .premium-banner-animation9 .premium-banner-ib-content,
1257
+ .premium-banner-animation9 .premium-banner-read-more {
1258
+ position: absolute;
1259
+ top: 50%;
1260
+ left: 0;
1261
+ width: 100%;
1262
+ -webkit-transition: -webkit-transform 0.35s;
1263
+ transition: -webkit-transform 0.35s;
1264
+ transition: transform 0.35s;
1265
+ transition: transform 0.35s, -webkit-transform 0.35s;
1266
+ padding: 0 10%;
1267
+ -webkit-transform: translate3d(0, 35px, 0);
1268
+ transform: translate3d(0, 35px, 0);
1269
+ }
1270
+
1271
+ .premium-banner-animation9 .premium-banner-read-more {
1272
+ top: 75%;
1273
+ }
1274
+
1275
+ .premium-banner-animation9:hover .premium-banner-ib-content,
1276
+ .premium-banner-animation9.active .premium-banner-ib-content,
1277
+ .premium-banner-animation9:hover .premium-banner-read-more,
1278
+ .premium-banner-animation9.active .premium-banner-read-more {
1279
+ -webkit-transform: translate3d(0, 45px, 0);
1280
+ transform: translate3d(0, 45px, 0);
1281
+ }
1282
+
1283
+ .premium-banner-animation9:hover .premium-banner-ib-desc::before,
1284
+ .premium-banner-animation9.active .premium-banner-ib-desc::before {
1285
+ opacity: 0.5;
1286
+ -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
1287
+ transform: translate3d(-50%, -50%, 0) rotate(45deg);
1288
+ }
1289
+
1290
+ .premium-banner-animation9:hover .premium-banner-ib-desc::after,
1291
+ .premium-banner-animation9.active .premium-banner-ib-desc::after {
1292
+ opacity: 0.5;
1293
+ -webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
1294
+ transform: translate3d(-50%, -50%, 0) rotate(-45deg);
1295
+ }
1296
+
1297
+ .premium-banner-animation9:hover img {
1298
+ -webkit-transform: scale(1);
1299
+ -ms-transform: scale(1);
1300
+ transform: scale(1);
1301
+ }
1302
+
1303
+ .premium-banner-animation10 img {
1304
+ width: -webkit-calc(100% + 20px) !important;
1305
+ width: calc(100% + 20px) !important;
1306
+ max-width: -webkit-calc(100% + 20px) !important;
1307
+ max-width: calc(100% + 20px) !important;
1308
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1309
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1310
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
1311
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1312
+ }
1313
+
1314
+ .premium-banner-animation10 .premium-banner-ib-title {
1315
+ position: relative;
1316
+ overflow: hidden;
1317
+ padding: 5px 0 15px;
1318
+ -webkit-transition: -webkit-transform 0.35s;
1319
+ transition: -webkit-transform 0.35s;
1320
+ transition: transform 0.35s;
1321
+ transition: transform 0.35s, -webkit-transform 0.35s;
1322
+ -webkit-transform: translate3d(0, 20px, 0);
1323
+ transform: translate3d(0, 20px, 0);
1324
+ margin-bottom: 0;
1325
+ }
1326
+
1327
+ .premium-banner-animation10 .premium-banner-ib-title::after {
1328
+ position: absolute;
1329
+ content: "";
1330
+ bottom: 0;
1331
+ left: 0;
1332
+ width: 100%;
1333
+ height: 3px;
1334
+ background: #fff;
1335
+ opacity: 0;
1336
+ -webkit-transform: translate3d(0, 100%, 0);
1337
+ transform: translate3d(0, 100%, 0);
1338
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1339
+ transition: opacity 0.35s, -webkit-transform 0.35s;
1340
+ transition: opacity 0.35s, transform 0.35s;
1341
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1342
+ }
1343
+
1344
+ .premium-banner-animation10:hover .premium-banner-ib-title,
1345
+ .premium-banner-animation10.active .premium-banner-ib-title {
1346
+ -webkit-transform: translate3d(0, 0, 0);
1347
+ transform: translate3d(0, 0, 0);
1348
+ }
1349
+
1350
+ .premium-banner-animation10:hover .premium-banner-ib-title::after,
1351
+ .premium-banner-animation10.active .premium-banner-ib-title::after {
1352
+ opacity: 1;
1353
+ -webkit-transform: translate3d(0, 0, 0);
1354
+ transform: translate3d(0, 0, 0);
1355
+ }
1356
+
1357
+ .premium-banner-animation10.zoomout img,
1358
+ .premium-banner-animation10.scale img {
1359
+ -webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
1360
+ transform: translate3d(-10px, 0, 0) scale(1.1);
1361
+ }
1362
+
1363
+ .premium-banner-animation10 .premium-banner-ib-content,
1364
+ .premium-banner-animation10 .premium-banner-read-more {
1365
+ padding-top: 15px;
1366
+ opacity: 0;
1367
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1368
+ transition: opacity 0.35s, -webkit-transform 0.35s;
1369
+ transition: opacity 0.35s, transform 0.35s;
1370
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1371
+ -webkit-transform: translate3d(0, 100%, 0);
1372
+ transform: translate3d(0, 100%, 0);
1373
+ }
1374
+
1375
+ .premium-banner-animation10 .premium-banner-read-more {
1376
+ padding: 0;
1377
+ }
1378
+
1379
+ .premium-banner-animation10:hover .premium-banner-ib-content,
1380
+ .premium-banner-animation10.active .premium-banner-ib-content,
1381
+ .premium-banner-animation10:hover .premium-banner-read-more,
1382
+ .premium-banner-animation10.active .premium-banner-read-more {
1383
+ opacity: 1;
1384
+ -webkit-transform: translate3d(0, 0, 0);
1385
+ transform: translate3d(0, 0, 0);
1386
+ }
1387
+
1388
+ .premium-banner-animation11 {
1389
+ -webkit-transition: -webkit-transform 1s ease-out;
1390
+ transition: -webkit-transform 1s ease-out;
1391
+ transition: transform 1s ease-out;
1392
+ transition: transform 1s ease-out, -webkit-transform 1s ease-out;
1393
+ -webkit-transition-delay: 0.125s;
1394
+ transition-delay: 0.125s;
1395
+ }
1396
+
1397
+ .premium-banner-animation11 .premium-banner-ib-desc {
1398
+ position: absolute;
1399
+ z-index: 5;
1400
+ -webkit-transform: translate3d(-30px, 0, 0);
1401
+ transform: translate3d(-30px, 0, 0);
1402
+ opacity: 0;
1403
+ top: auto;
1404
+ bottom: 0;
1405
+ min-height: 25%;
1406
+ height: auto;
1407
+ max-height: 100%;
1408
+ text-align: left;
1409
+ padding: 30px;
1410
+ -webkit-transition: all 0.6s ease-out;
1411
+ transition: all 0.6s ease-out;
1412
+ }
1413
+
1414
+ .premium-banner-animation11 img {
1415
+ width: 100%;
1416
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1417
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1418
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
1419
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1420
+ }
1421
+
1422
+ .premium-banner-animation11 .premium-banner-ib-title {
1423
+ margin-bottom: 10px;
1424
+ }
1425
+
1426
+ .premium-banner-animation11 .premium-banner-gradient {
1427
+ position: absolute;
1428
+ left: 0;
1429
+ top: 0;
1430
+ right: 0;
1431
+ bottom: 0;
1432
+ }
1433
+
1434
+ .premium-banner-animation11 .premium-banner-gradient:after,
1435
+ .premium-banner-animation11 .premium-banner-gradient:before {
1436
+ position: absolute;
1437
+ content: "";
1438
+ left: 0;
1439
+ top: 0;
1440
+ right: 0;
1441
+ bottom: 0;
1442
+ -webkit-transform: translate3d(-100%, 0, 0);
1443
+ transform: translate3d(-100%, 0, 0);
1444
+ background-image: -webkit-linear-gradient(40deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
1445
+ background-image: linear-gradient(50deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
1446
+ z-index: 2;
1447
+ }
1448
+
1449
+ .premium-banner-animation11 .premium-banner-gradient:before {
1450
+ mix-blend-mode: color;
1451
+ }
1452
+
1453
+ .premium-banner-animation11 .premium-banner-gradient:after {
1454
+ mix-blend-mode: multiply;
1455
+ }
1456
+
1457
+ .premium-banner-animation11:hover .premium-banner-ib-desc,
1458
+ .premium-banner-animation11.active .premium-banner-ib-desc {
1459
+ opacity: 1;
1460
+ -webkit-transform: translate3d(0, 0, 0);
1461
+ transform: translate3d(0, 0, 0);
1462
+ }
1463
+
1464
+ .premium-banner-animation11:hover .premium-banner-gradient:after,
1465
+ .premium-banner-animation11:hover .premium-banner-gradient:before,
1466
+ .premium-banner-animation11.active .premium-banner-gradient:after,
1467
+ .premium-banner-animation11.active .premium-banner-gradient:before {
1468
+ -webkit-transform: translate3d(0, 0, 0);
1469
+ transform: translate3d(0, 0, 0);
1470
+ }
1471
+
1472
+ .premium-banner-animation11.zoomout img,
1473
+ .premium-banner-animation11.scale img {
1474
+ -webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
1475
+ transform: translate3d(-10px, 0, 0) scale(1.1);
1476
+ }
1477
+
1478
+ /**************** Premium Blog *****************/
1479
+ /***********************************************/
1480
+ .premium-blog-thumb-effect-wrapper {
1481
+ position: relative;
1482
+ overflow: hidden;
1483
+ }
1484
+
1485
+ .premium-blog-effect-container:not(.premium-blog-bordered-effect) .premium-blog-post-link {
1486
+ position: absolute;
1487
+ top: 0;
1488
+ left: 0;
1489
+ width: 100%;
1490
+ height: 100%;
1491
+ z-index: 2;
1492
+ padding: 20px;
1493
+ }
1494
+
1495
+ .premium-blog-bordered-effect .premium-blog-post-link {
1496
+ display: block;
1497
+ height: 100%;
1498
+ position: relative;
1499
+ }
1500
+
1501
+ /*Thumbnail Img*/
1502
+ .premium-blog-thumbnail-container {
1503
+ overflow: hidden;
1504
+ }
1505
+
1506
+ .premium-blog-thumbnail-container img,
1507
+ .premium-blog-thumbnail-container .below-entry-meta {
1508
+ width: 100%;
1509
+ height: 100%;
1510
+ margin: 0 !important;
1511
+ -webkit-transition: all 0.4s ease-in-out;
1512
+ transition: all 0.4s ease-in-out;
1513
+ display: block;
1514
+ }
1515
+
1516
+ .premium-blog-zoomout-effect img,
1517
+ .premium-blog-scale-effect img {
1518
+ -webkit-transform: scale(1.2);
1519
+ -ms-transform: scale(1.2);
1520
+ transform: scale(1.2);
1521
+ }
1522
+
1523
+ .premium-blog-sepia-effect img {
1524
+ -webkit-filter: sepia(30%);
1525
+ filter: sepia(30%);
1526
+ }
1527
+
1528
+ .premium-blog-bright-effect img {
1529
+ -webkit-filter: brightness(1);
1530
+ filter: brightness(1);
1531
+ }
1532
+
1533
+ .premium-blog-trans-effect img {
1534
+ -webkit-transform: translateX(-15px) scale(1.1);
1535
+ -ms-transform: translateX(-15px) scale(1.1);
1536
+ transform: translateX(-15px) scale(1.1);
1537
+ }
1538
+
1539
+ .premium-blog-post-outer-container:hover .premium-blog-zoomin-effect img {
1540
+ -webkit-transform: scale(1.2);
1541
+ -ms-transform: scale(1.2);
1542
+ transform: scale(1.2);
1543
+ }
1544
+
1545
+ .premium-blog-post-outer-container:hover .premium-blog-zoomout-effect img {
1546
+ -webkit-transform: scale(1.1);
1547
+ -ms-transform: scale(1.1);
1548
+ transform: scale(1.1);
1549
+ }
1550
+
1551
+ .premium-blog-post-outer-container:hover .premium-blog-scale-effect img {
1552
+ -webkit-transform: scale(1.3) rotate(5deg);
1553
+ -ms-transform: scale(1.3) rotate(5deg);
1554
+ transform: scale(1.3) rotate(5deg);
1555
+ }
1556
+
1557
+ .premium-blog-post-outer-container:hover .premium-blog-gray-effect img {
1558
+ -webkit-filter: grayscale(100%);
1559
+ filter: grayscale(100%);
1560
+ }
1561
+
1562
+ .premium-blog-post-outer-container:hover .premium-blog-blur-effect img {
1563
+ -webkit-filter: blur(3px);
1564
+ filter: blur(3px);
1565
+ }
1566
+
1567
+ .premium-blog-post-outer-container:hover .premium-blog-sepia-effect img {
1568
+ -webkit-filter: sepia(0%);
1569
+ filter: sepia(0%);
1570
+ }
1571
+
1572
+ .premium-blog-post-outer-container:hover .premium-blog-bright-effect img {
1573
+ -webkit-filter: brightness(1.2);
1574
+ filter: brightness(1.2);
1575
+ }
1576
+
1577
+ .premium-blog-post-outer-container:hover .premium-blog-trans-effect img {
1578
+ -webkit-transform: translateX(0px) scale(1.1);
1579
+ -ms-transform: translateX(0px) scale(1.1);
1580
+ transform: translateX(0px) scale(1.1);
1581
+ }
1582
+
1583
+ .premium-blog-post-container {
1584
+ overflow: hidden;
1585
+ }
1586
+
1587
+ .premium-blog-post-container .premium-blog-inner-container {
1588
+ -js-display: flex;
1589
+ display: -webkit-box;
1590
+ display: -webkit-flex;
1591
+ display: -moz-box;
1592
+ display: -ms-flexbox;
1593
+ display: flex;
1594
+ -webkit-box-orient: vertical;
1595
+ -webkit-box-direction: normal;
1596
+ -webkit-flex-direction: column;
1597
+ -moz-box-orient: vertical;
1598
+ -moz-box-direction: normal;
1599
+ -ms-flex-direction: column;
1600
+ flex-direction: column;
1601
+ }
1602
+
1603
+ .premium-blog-post-container .premium-blog-post-content {
1604
+ line-height: 1.5em;
1605
+ color: #777;
1606
+ font-size: 14px;
1607
+ margin-bottom: 10px;
1608
+ }
1609
+
1610
+ .premium-blog-post-container ul.post-categories a:hover,
1611
+ .premium-blog-post-container ul.post-categories a:focus,
1612
+ .premium-blog-post-container .premium-blog-post-link:hover,
1613
+ .premium-blog-post-container .premium-blog-post-link:focus {
1614
+ -webkit-box-shadow: none !important;
1615
+ box-shadow: none !important;
1616
+ outline: none !important;
1617
+ }
1618
+
1619
+ .premium-blog-post-container .premium-blog-entry-title {
1620
+ font-size: 18px;
1621
+ margin-bottom: 5px;
1622
+ }
1623
+
1624
+ .premium-blog-post-container.premium-blog-skin-modern .premium-blog-content-wrapper {
1625
+ position: relative;
1626
+ z-index: 3;
1627
+ top: -50px;
1628
+ }
1629
+
1630
+ .premium-blog-post-container .premium-blog-content-wrapper {
1631
+ background-color: #f5f5f5;
1632
+ padding: 30px;
1633
+ }
1634
+
1635
+ .premium-blog-post-container .premium-blog-content-wrapper.empty-thumb {
1636
+ top: 0;
1637
+ }
1638
+
1639
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before,
1640
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:after {
1641
+ position: absolute;
1642
+ content: "";
1643
+ z-index: 1;
1644
+ top: 50%;
1645
+ left: 50%;
1646
+ opacity: 0;
1647
+ -webkit-transform: translate(-50%, -50%);
1648
+ -ms-transform: translate(-50%, -50%);
1649
+ transform: translate(-50%, -50%);
1650
+ -webkit-transition: all 0.4s linear 0s;
1651
+ transition: all 0.4s linear 0s;
1652
+ height: 1px;
1653
+ width: 100%;
1654
+ background-color: #fff;
1655
+ }
1656
+
1657
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before {
1658
+ width: 1px;
1659
+ height: 100%;
1660
+ }
1661
+
1662
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner):hover .premium-blog-thumbnail-container:after {
1663
+ width: 20px;
1664
+ opacity: 1;
1665
+ }
1666
+
1667
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner):hover .premium-blog-thumbnail-container:before {
1668
+ height: 20px;
1669
+ opacity: 1;
1670
+ }
1671
+
1672
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-content-wrapper {
1673
+ margin: 0px 10px 20px;
1674
+ clear: both;
1675
+ }
1676
+
1677
+ .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay,
1678
+ .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay,
1679
+ .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay {
1680
+ position: absolute;
1681
+ top: 0;
1682
+ left: 0;
1683
+ width: 100%;
1684
+ height: 100%;
1685
+ -webkit-transition: all 0.3s ease-in-out;
1686
+ transition: all 0.3s ease-in-out;
1687
+ opacity: 0;
1688
+ }
1689
+
1690
+ .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay a,
1691
+ .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay a,
1692
+ .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay a {
1693
+ -js-display: flex;
1694
+ display: -webkit-box;
1695
+ display: -webkit-flex;
1696
+ display: -moz-box;
1697
+ display: -ms-flexbox;
1698
+ display: flex;
1699
+ -webkit-box-pack: center;
1700
+ -webkit-justify-content: center;
1701
+ -moz-box-pack: center;
1702
+ -ms-flex-pack: center;
1703
+ justify-content: center;
1704
+ -webkit-box-align: center;
1705
+ -webkit-align-items: center;
1706
+ -moz-box-align: center;
1707
+ -ms-flex-align: center;
1708
+ align-items: center;
1709
+ width: 100%;
1710
+ height: 100%;
1711
+ }
1712
+
1713
+ .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay span,
1714
+ .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay i,
1715
+ .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay span,
1716
+ .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay i,
1717
+ .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay span,
1718
+ .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay i {
1719
+ -webkit-transition: all 0.3s ease-in-out;
1720
+ transition: all 0.3s ease-in-out;
1721
+ }
1722
+
1723
+ .premium-blog-post-container.premium-blog-skin-side {
1724
+ -js-display: flex;
1725
+ display: -webkit-box;
1726
+ display: -webkit-flex;
1727
+ display: -moz-box;
1728
+ display: -ms-flexbox;
1729
+ display: flex;
1730
+ }
1731
+
1732
+ .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-container {
1733
+ height: 100%;
1734
+ }
1735
+
1736
+ .premium-blog-post-container.premium-blog-skin-side .premium-blog-content-wrapper {
1737
+ -webkit-box-flex: 1;
1738
+ -webkit-flex: 1;
1739
+ -moz-box-flex: 1;
1740
+ -ms-flex: 1;
1741
+ flex: 1;
1742
+ }
1743
+
1744
+ .premium-blog-post-container.premium-blog-skin-banner {
1745
+ position: relative;
1746
+ }
1747
+
1748
+ .premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper {
1749
+ position: absolute;
1750
+ width: 100%;
1751
+ bottom: -5px;
1752
+ -js-display: flex;
1753
+ display: -webkit-box;
1754
+ display: -webkit-flex;
1755
+ display: -moz-box;
1756
+ display: -ms-flexbox;
1757
+ display: flex;
1758
+ -webkit-box-orient: vertical;
1759
+ -webkit-box-direction: normal;
1760
+ -webkit-flex-direction: column;
1761
+ -moz-box-orient: vertical;
1762
+ -moz-box-direction: normal;
1763
+ -ms-flex-direction: column;
1764
+ flex-direction: column;
1765
+ background-color: transparent;
1766
+ z-index: 3;
1767
+ -webkit-transition: bottom 0.3s ease-in-out;
1768
+ transition: bottom 0.3s ease-in-out;
1769
+ }
1770
+
1771
+ .premium-blog-post-container.premium-blog-skin-banner:hover .premium-blog-content-wrapper {
1772
+ bottom: 0px;
1773
+ }
1774
+
1775
+ .premium-blog-post-container .premium-blog-cats-container ul.post-categories {
1776
+ margin: 0;
1777
+ padding: 0;
1778
+ list-style: none;
1779
+ -js-display: flex;
1780
+ display: -webkit-box;
1781
+ display: -webkit-flex;
1782
+ display: -moz-box;
1783
+ display: -ms-flexbox;
1784
+ display: flex;
1785
+ }
1786
+
1787
+ .premium-blog-post-container .premium-blog-cats-container a {
1788
+ display: block;
1789
+ font-size: 12px;
1790
+ color: #fff;
1791
+ background-color: #777;
1792
+ margin: 0 3px 10px 0;
1793
+ padding: 5px;
1794
+ -webkit-transition: all 0.3s ease-in-out;
1795
+ transition: all 0.3s ease-in-out;
1796
+ }
1797
+
1798
  /*
1799
  * Diagonal Effect
1800
+ */
1801
+ .premium-blog-diagonal-container {
1802
+ position: absolute;
1803
+ top: 0;
1804
+ left: 0;
1805
+ width: 100%;
1806
+ height: 100%;
1807
+ }
1808
+
1809
+ .premium-blog-diagonal-effect:before {
1810
+ position: absolute;
1811
+ top: 0px;
1812
+ left: 0px;
1813
+ width: 100%;
1814
+ height: 100%;
1815
+ content: " ";
1816
+ z-index: 1;
1817
+ background: rgba(255, 255, 255, 0.2);
1818
+ -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
1819
+ transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
1820
+ -webkit-transition: all 0.3s linear 0s;
1821
+ transition: all 0.3s linear 0s;
1822
+ }
1823
+
1824
+ .premium-blog-post-outer-container:hover .premium-blog-diagonal-effect:before {
1825
+ -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
1826
+ transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
1827
+ }
1828
+
1829
  /*
1830
  * Framed Effect
1831
+ */
1832
+ .premium-blog-framed-effect {
1833
+ position: absolute;
1834
+ width: -webkit-calc(100% - 30px);
1835
+ width: calc(100% - 30px);
1836
+ height: -webkit-calc(100% - 30px);
1837
+ height: calc(100% - 30px);
1838
+ top: 15px;
1839
+ left: 15px;
1840
+ opacity: 0;
1841
+ -webkit-transform: scale(0.3);
1842
+ -ms-transform: scale(0.3);
1843
+ transform: scale(0.3);
1844
+ -webkit-transition: all 0.3s linear 0s;
1845
+ transition: all 0.3s linear 0s;
1846
+ }
1847
+
1848
+ .premium-blog-post-outer-container:hover .premium-blog-framed-effect {
1849
+ opacity: 0.99;
1850
+ -webkit-transform: scale(1);
1851
+ -ms-transform: scale(1);
1852
+ transform: scale(1);
1853
+ }
1854
+
1855
+ /*
1856
+ * Bordered Effect
1857
+ */
1858
+ .premium-blog-bordered-effect {
1859
+ position: absolute;
1860
+ top: 0;
1861
+ left: 0;
1862
+ width: 100%;
1863
+ height: 100%;
1864
+ opacity: 0;
1865
+ padding: 15px;
1866
+ -webkit-transition: all 0.3s linear 0s;
1867
+ transition: all 0.3s linear 0s;
1868
+ }
1869
+
1870
+ .premium-blog-bordered-effect .premium-blog-post-link:before,
1871
+ .premium-blog-bordered-effect .premium-blog-post-link:after {
1872
+ content: "";
1873
+ display: block;
1874
+ position: absolute;
1875
+ top: 0;
1876
+ left: 0;
1877
+ width: 100%;
1878
+ height: 100%;
1879
+ -webkit-transition: all 0.5s linear 0s;
1880
+ transition: all 0.5s linear 0s;
1881
+ -webkit-transition-delay: 0s;
1882
+ transition-delay: 0s;
1883
+ border-color: rgba(255, 255, 255, 0.45);
1884
+ }
1885
+
1886
+ .premium-blog-bordered-effect .premium-blog-post-link:before {
1887
+ border-right: 2px solid;
1888
+ border-left: 2px solid;
1889
+ -webkit-transform: scale(1, 0);
1890
+ -ms-transform: scale(1, 0);
1891
+ transform: scale(1, 0);
1892
+ -webkit-transform-origin: 100% 0;
1893
+ -ms-transform-origin: 100% 0;
1894
+ transform-origin: 100% 0;
1895
+ }
1896
+
1897
+ .premium-blog-bordered-effect .premium-blog-post-link:after {
1898
+ border-top: 2px solid;
1899
+ border-bottom: 2px solid;
1900
+ -webkit-transform: scale(0, 1);
1901
+ -ms-transform: scale(0, 1);
1902
+ transform: scale(0, 1);
1903
+ -webkit-transform-origin: 0 0;
1904
+ -ms-transform-origin: 0 0;
1905
+ transform-origin: 0 0;
1906
+ }
1907
+
1908
+ .premium-blog-bordered-effect:hover {
1909
+ opacity: 0.99;
1910
+ }
1911
+
1912
+ .premium-blog-bordered-effect:hover .premium-blog-post-link:before,
1913
+ .premium-blog-bordered-effect:hover .premium-blog-post-link:after {
1914
+ -webkit-transition-delay: 0.15s;
1915
+ transition-delay: 0.15s;
1916
+ opacity: 1;
1917
+ -webkit-transform: scale(1);
1918
+ -ms-transform: scale(1);
1919
+ transform: scale(1);
1920
+ }
1921
+
1922
+ /*
1923
+ * Squares Effect
1924
+ */
1925
+ .premium-blog-squares-effect,
1926
+ .premium-blog-squares-square-container {
1927
+ position: absolute;
1928
+ top: 0;
1929
+ left: 0;
1930
+ width: 100%;
1931
+ height: 100%;
1932
+ }
1933
+
1934
+ .premium-blog-squares-effect:before,
1935
+ .premium-blog-squares-effect:after {
1936
+ position: absolute;
1937
+ content: "";
1938
+ top: 0;
1939
+ left: 0;
1940
+ width: 50%;
1941
+ height: 50%;
1942
+ -webkit-transform: translate(-100%, -100%);
1943
+ -ms-transform: translate(-100%, -100%);
1944
+ transform: translate(-100%, -100%);
1945
+ opacity: 0.7;
1946
+ -webkit-transition: all 0.3s linear 0s;
1947
+ transition: all 0.3s linear 0s;
1948
+ }
1949
+
1950
+ .premium-blog-squares-square-container:before,
1951
+ .premium-blog-squares-square-container:after {
1952
+ position: absolute;
1953
+ content: "";
1954
+ top: 0;
1955
+ left: 0;
1956
+ width: 50%;
1957
+ height: 50%;
1958
+ -webkit-transform: translate(-100%, -100%);
1959
+ -ms-transform: translate(-100%, -100%);
1960
+ transform: translate(-100%, -100%);
1961
+ opacity: 0.7;
1962
+ -webkit-transition: all 0.3s linear 0s;
1963
+ transition: all 0.3s linear 0s;
1964
+ }
1965
+
1966
+ .premium-blog-squares-square-container:before,
1967
+ .premium-blog-squares-square-container:after {
1968
+ opacity: 0.8;
1969
+ }
1970
+
1971
+ .premium-blog-squares-effect:after {
1972
+ -webkit-transform: translate(200%, 200%);
1973
+ -ms-transform: translate(200%, 200%);
1974
+ transform: translate(200%, 200%);
1975
+ }
1976
+
1977
+ .premium-blog-squares-square-container:before {
1978
+ -webkit-transform: translate(-100%, 200%);
1979
+ -ms-transform: translate(-100%, 200%);
1980
+ transform: translate(-100%, 200%);
1981
+ }
1982
+
1983
+ .premium-blog-squares-square-container:after {
1984
+ -webkit-transform: translate(200%, -100%);
1985
+ -ms-transform: translate(200%, -100%);
1986
+ transform: translate(200%, -100%);
1987
+ }
1988
+
1989
+ .premium-blog-squares-effect:hover:before {
1990
+ -webkit-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
1991
+ -ms-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
1992
+ transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
1993
+ }
1994
+
1995
+ .premium-blog-squares-effect:hover:after {
1996
+ -webkit-transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003);
1997
+ -ms-transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003);
1998
+ transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003);
1999
+ }
2000
+
2001
+ .premium-blog-squares-effect:hover .premium-blog-squares-square-container:before {
2002
+ -webkit-transform: translate(0, 100%);
2003
+ -ms-transform: translate(0, 100%);
2004
+ transform: translate(0, 100%);
2005
+ }
2006
+
2007
+ .premium-blog-squares-effect:hover .premium-blog-squares-square-container:after {
2008
+ -webkit-transform: translate(100%, 0%);
2009
+ -ms-transform: translate(100%, 0%);
2010
+ transform: translate(100%, 0%);
2011
+ }
2012
+
2013
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay {
2014
+ opacity: 1;
2015
+ }
2016
+
2017
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay a {
2018
+ opacity: 1;
2019
+ -webkit-transform: scale(1);
2020
+ -ms-transform: scale(1);
2021
+ transform: scale(1);
2022
+ }
2023
+
2024
+ .premium-blog-clear-fix {
2025
+ clear: both;
2026
+ }
2027
+
2028
+ .premium-blog-masked .premium-blog-thumbnail-container {
2029
+ position: relative;
2030
+ overflow: visible;
2031
+ }
2032
+
2033
+ .premium-blog-masked .premium-blog-thumbnail-container svg {
2034
+ position: absolute;
2035
+ height: 100px;
2036
+ width: 100%;
2037
+ bottom: -5px;
2038
+ left: 0;
2039
+ fill: #f5f5f5;
2040
+ z-index: 99;
2041
+ }
2042
+
2043
+ .premium-blog-masked .premium-blog-thumbnail-container svg.premium-blog-shape-divider-svg {
2044
+ -webkit-transform: rotate(180deg);
2045
+ -ms-transform: rotate(180deg);
2046
+ transform: rotate(180deg);
2047
+ }
2048
+
2049
+ .premium-blog-masked .premium-blog-author-thumbnail,
2050
+ .premium-blog-masked .premium-blog-skin-banner .premium-blog-content-wrapper {
2051
+ z-index: 999 !important;
2052
+ }
2053
+
2054
+ .premium-blog-format-link {
2055
+ padding: 5px;
2056
+ line-height: 0;
2057
+ }
2058
+
2059
+ .premium-blog-entry-meta {
2060
+ line-height: 1.3em;
2061
+ font-size: 12px;
2062
+ margin-bottom: 13px;
2063
+ color: #adadad;
2064
+ }
2065
+
2066
+ .premium-blog-entry-meta i {
2067
+ margin-right: 3px;
2068
+ -webkit-transition: all 0.3s ease-in-out;
2069
+ transition: all 0.3s ease-in-out;
2070
+ }
2071
+
2072
+ .premium-blog-meta-data {
2073
+ display: inline-block;
2074
+ }
2075
+
2076
+ .premium-blog-meta-data .premium-blog-meta-separator {
2077
+ margin: 0 5px;
2078
+ }
2079
+
2080
+ .premium-blog-meta-data a,
2081
+ .premium-blog-meta-data span {
2082
+ color: inherit;
2083
+ -webkit-transition: all 0.3s ease-in-out;
2084
+ transition: all 0.3s ease-in-out;
2085
+ }
2086
+
2087
+ .premium-blog-author-thumbnail {
2088
+ position: relative;
2089
+ padding: 0 30px;
2090
+ width: 100%;
2091
+ top: -10px;
2092
+ height: 0;
2093
+ pointer-events: none;
2094
+ }
2095
+
2096
+ .premium-blog-author-thumbnail img {
2097
+ -webkit-border-radius: 50%;
2098
+ border-radius: 50%;
2099
+ width: 60px;
2100
+ pointer-events: all;
2101
+ -webkit-transform: translateY(-50%);
2102
+ -ms-transform: translateY(-50%);
2103
+ transform: translateY(-50%);
2104
+ }
2105
+
2106
+ .premium-blog-entry-title a,
2107
+ .premium-blog-post-tags-container a,
2108
+ .premium-blog-post-content .premium-blog-excerpt-link {
2109
+ -webkit-transition: all 0.3s ease-in-out;
2110
+ transition: all 0.3s ease-in-out;
2111
+ }
2112
+
2113
+ .premium-blog-excerpt-link-wrap a.premium-blog-excerpt-link {
2114
+ background-color: transparent;
2115
+ color: #54595f;
2116
+ padding: 0;
2117
+ }
2118
+
2119
+ .premium-blog-cta-full-yes .premium-blog-excerpt-link {
2120
+ width: 100%;
2121
+ }
2122
+
2123
+ .premium-blog-post-tags-container {
2124
+ margin-top: 8px;
2125
+ -js-display: flex;
2126
+ display: -webkit-box;
2127
+ display: -webkit-flex;
2128
+ display: -moz-box;
2129
+ display: -ms-flexbox;
2130
+ display: flex;
2131
+ -webkit-box-align: center;
2132
+ -webkit-align-items: center;
2133
+ -moz-box-align: center;
2134
+ -ms-flex-align: center;
2135
+ align-items: center;
2136
+ -webkit-flex-wrap: wrap;
2137
+ -ms-flex-wrap: wrap;
2138
+ flex-wrap: wrap;
2139
+ }
2140
+
2141
+ .premium-blog-post-tags-container a {
2142
+ color: inherit;
2143
+ margin-left: 5px;
2144
+ }
2145
+
2146
+ /*Tags align*/
2147
+ .premium-blog-align-left .post-categories,
2148
+ .premium-blog-align-left .premium-blog-post-tags-container {
2149
+ -webkit-box-pack: start;
2150
+ -webkit-justify-content: flex-start;
2151
+ -moz-box-pack: start;
2152
+ -ms-flex-pack: start;
2153
+ justify-content: flex-start;
2154
+ }
2155
+
2156
+ .premium-blog-align-left .premium-blog-inner-container {
2157
+ -webkit-box-align: start;
2158
+ -webkit-align-items: flex-start;
2159
+ -moz-box-align: start;
2160
+ -ms-flex-align: start;
2161
+ align-items: flex-start;
2162
+ }
2163
+
2164
+ .premium-blog-align-center .post-categories,
2165
+ .premium-blog-align-center .premium-blog-post-tags-container {
2166
+ -webkit-box-pack: center;
2167
+ -webkit-justify-content: center;
2168
+ -moz-box-pack: center;
2169
+ -ms-flex-pack: center;
2170
+ justify-content: center;
2171
+ }
2172
+
2173
+ .premium-blog-align-center .premium-blog-inner-container {
2174
+ -webkit-box-align: center;
2175
+ -webkit-align-items: center;
2176
+ -moz-box-align: center;
2177
+ -ms-flex-align: center;
2178
+ align-items: center;
2179
+ }
2180
+
2181
+ .premium-blog-align-right .post-categories,
2182
+ .premium-blog-align-right .premium-blog-post-tags-container {
2183
+ -webkit-box-pack: end;
2184
+ -webkit-justify-content: flex-end;
2185
+ -moz-box-pack: end;
2186
+ -ms-flex-pack: end;
2187
+ justify-content: flex-end;
2188
+ }
2189
+
2190
+ .premium-blog-align-right .premium-blog-inner-container {
2191
+ -webkit-box-align: end;
2192
+ -webkit-align-items: flex-end;
2193
+ -moz-box-align: end;
2194
+ -ms-flex-align: end;
2195
+ align-items: flex-end;
2196
+ }
2197
+
2198
+ /* Pagination */
2199
+ .premium-blog-pagination-container {
2200
+ text-align: right;
2201
+ }
2202
+
2203
+ .premium-blog-pagination-container span {
2204
+ cursor: default;
2205
+ }
2206
+
2207
+ .premium-blog-pagination-container .page-numbers {
2208
+ display: inline-block;
2209
+ color: #000;
2210
+ line-height: 1;
2211
+ font-size: 1em;
2212
+ font-weight: 400;
2213
+ text-decoration: none;
2214
+ padding: 0.75em;
2215
+ margin: 0 0.4em 0.4em 0;
2216
+ -webkit-transition: all 0.3s ease-in-out;
2217
+ transition: all 0.3s ease-in-out;
2218
+ }
2219
+
2220
+ .premium-blog-wrap .premium-loading-feed {
2221
+ display: block;
2222
+ position: absolute;
2223
+ width: 100%;
2224
+ height: 100%;
2225
+ top: 0px;
2226
+ left: 0px;
2227
+ bottom: 0px;
2228
+ right: 0px;
2229
+ background: rgba(255, 255, 255, 0.2);
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-align: center;
2237
+ -webkit-align-items: center;
2238
+ -moz-box-align: center;
2239
+ -ms-flex-align: center;
2240
+ align-items: center;
2241
+ z-index: 99;
2242
+ }
2243
+
2244
+ .premium-blog-wrap {
2245
+ -js-display: flex;
2246
+ display: -webkit-box;
2247
+ display: -webkit-flex;
2248
+ display: -moz-box;
2249
+ display: -ms-flexbox;
2250
+ display: flex;
2251
+ -webkit-flex-wrap: wrap;
2252
+ -ms-flex-wrap: wrap;
2253
+ flex-wrap: wrap;
2254
+ }
2255
+
2256
+ .premium-blog-wrap ul.slick-dots {
2257
+ width: 100%;
2258
+ }
2259
+
2260
  /*
2261
+ * List Layout
2262
+ */
2263
+ .premium-blog-list .premium-blog-post-outer-container {
2264
+ width: 100%;
2265
+ }
2266
+
2267
+ /**
2268
+ * Even Layout
2269
+ */
2270
+ .premium-blog-even .premium-blog-post-container {
2271
+ height: 100%;
2272
+ }
2273
+
2274
+ .premium-blog-even .slick-track {
2275
+ -js-display: flex;
2276
+ display: -webkit-box;
2277
+ display: -webkit-flex;
2278
+ display: -moz-box;
2279
+ display: -ms-flexbox;
2280
+ display: flex;
2281
+ }
2282
+
2283
+ .premium-blog-even .slick-slide {
2284
+ height: inherit !important;
2285
+ }
2286
+
2287
+ .premium-blog-filter {
2288
+ -js-display: flex;
2289
+ display: -webkit-box;
2290
+ display: -webkit-flex;
2291
+ display: -moz-box;
2292
+ display: -ms-flexbox;
2293
+ display: flex;
2294
+ -webkit-box-align: center;
2295
+ -webkit-align-items: center;
2296
+ -moz-box-align: center;
2297
+ -ms-flex-align: center;
2298
+ align-items: center;
2299
+ -webkit-box-pack: center;
2300
+ -webkit-justify-content: center;
2301
+ -moz-box-pack: center;
2302
+ -ms-flex-pack: center;
2303
+ justify-content: center;
2304
+ }
2305
+
2306
+ .premium-blog-filter .premium-blog-filters-container li a.category {
2307
+ outline: none;
2308
+ text-decoration: none;
2309
+ -webkit-border-radius: 75px;
2310
+ border-radius: 75px;
2311
+ margin: 15px 5px 20px;
2312
+ padding: 7px 20px;
2313
+ -webkit-transition: all 0.3s ease-in-out;
2314
+ transition: all 0.3s ease-in-out;
2315
+ }
2316
+
2317
+ .premium-blog-filter ul.premium-blog-filters-container {
2318
+ text-align: center;
2319
+ margin: 0;
2320
+ padding: 0;
2321
+ }
2322
+
2323
+ .premium-blog-filter .premium-blog-filters-container li {
2324
+ list-style: none;
2325
+ -js-display: inline-flex;
2326
+ display: -webkit-inline-box;
2327
+ display: -webkit-inline-flex;
2328
+ display: -moz-inline-box;
2329
+ display: -ms-inline-flexbox;
2330
+ display: inline-flex;
2331
+ }
2332
+
2333
+ /**
2334
+ * Responsive Style
2335
+ */
2336
+ @media (max-width: 768px) {
2337
+ .premium-blog-content-wrapper {
2338
+ top: 0;
2339
+ margin: 0;
2340
+ padding: 15px;
2341
+ }
2342
+
2343
+ .premium-blog-skin-side {
2344
+ -webkit-box-orient: vertical;
2345
+ -webkit-box-direction: normal;
2346
+ -webkit-flex-direction: column;
2347
+ -moz-box-orient: vertical;
2348
+ -moz-box-direction: normal;
2349
+ -ms-flex-direction: column;
2350
+ flex-direction: column;
2351
+ }
2352
+ }
2353
+
2354
+ /**************** Premium Button ***********************/
2355
+ /*******************************************************/
2356
+ .premium-button {
2357
+ -js-display: inline-flex;
2358
+ display: -webkit-inline-box;
2359
+ display: -webkit-inline-flex;
2360
+ display: -moz-inline-box;
2361
+ display: -ms-inline-flexbox;
2362
+ display: inline-flex;
2363
+ position: relative;
2364
+ overflow: hidden;
2365
+ -webkit-backface-visibility: hidden;
2366
+ backface-visibility: hidden;
2367
+ -webkit-transform: translate3d(0, 0, 0);
2368
+ transform: translate3d(0, 0, 0);
2369
+ cursor: pointer;
2370
+ -webkit-transition: all 0.2s ease-in-out !important;
2371
+ transition: all 0.2s ease-in-out !important;
2372
+ }
2373
+
2374
+ .premium-button-style1,
2375
+ .premium-button-style2,
2376
+ .premium-button-style5,
2377
+ .premium-button-style7 {
2378
+ display: inline-block;
2379
+ vertical-align: middle;
2380
+ -webkit-transform: perspective(1px) translateZ(0);
2381
+ transform: perspective(1px) translateZ(0);
2382
+ -webkit-box-shadow: 0 0 1px transparent;
2383
+ box-shadow: 0 0 1px transparent;
2384
+ position: relative;
2385
+ -webkit-transition-property: color;
2386
+ transition-property: color;
2387
+ -webkit-transition-duration: 0.15s;
2388
+ transition-duration: 0.15s;
2389
+ }
2390
+
2391
+ .premium-button-style1:before,
2392
+ .premium-button-style2:before,
2393
+ .premium-button-style5:before {
2394
+ content: "";
2395
+ position: absolute;
2396
+ z-index: -1;
2397
+ top: 0;
2398
+ left: 0;
2399
+ right: 0;
2400
+ bottom: 0;
2401
+ -webkit-transform: scaleY(0);
2402
+ -ms-transform: scaleY(0);
2403
+ transform: scaleY(0);
2404
+ -webkit-transform-origin: 50% 0;
2405
+ -ms-transform-origin: 50% 0;
2406
+ transform-origin: 50% 0;
2407
+ -webkit-transition-property: -webkit-transform;
2408
+ transition-property: -webkit-transform;
2409
+ transition-property: transform;
2410
+ transition-property: transform, -webkit-transform;
2411
+ -webkit-transition-duration: 0.15s;
2412
+ transition-duration: 0.15s;
2413
+ -webkit-transition-timing-function: ease-out;
2414
+ transition-timing-function: ease-out;
2415
+ }
2416
+
2417
+ .premium-button-style5-radialin:before,
2418
+ .premium-button-style5-radialout:before {
2419
+ -webkit-transform-origin: 50%;
2420
+ -ms-transform-origin: 50%;
2421
+ transform-origin: 50%;
2422
+ -webkit-border-radius: 100%;
2423
+ border-radius: 100%;
2424
+ -webkit-transform: scale(0);
2425
+ -ms-transform: scale(0);
2426
+ transform: scale(0);
2427
+ }
2428
+
2429
+ .premium-button-style5-radialin:before {
2430
+ -webkit-transform: scale(2);
2431
+ -ms-transform: scale(2);
2432
+ transform: scale(2);
2433
+ }
2434
+
2435
+ .premium-button-style5-rectin:before {
2436
+ -webkit-transform-origin: 50%;
2437
+ -ms-transform-origin: 50%;
2438
+ transform-origin: 50%;
2439
+ -webkit-transform: scale(1);
2440
+ -ms-transform: scale(1);
2441
+ transform: scale(1);
2442
+ }
2443
+
2444
+ .premium-button-style5-rectout:before {
2445
+ -webkit-transform-origin: 50%;
2446
+ -ms-transform-origin: 50%;
2447
+ transform-origin: 50%;
2448
+ -webkit-transform: scale(0);
2449
+ -ms-transform: scale(0);
2450
+ transform: scale(0);
2451
+ }
2452
+
2453
+ .premium-button-style5-rectout:hover:before {
2454
+ -webkit-transform: scale(1);
2455
+ -ms-transform: scale(1);
2456
+ transform: scale(1);
2457
+ }
2458
+
2459
+ .premium-button-style5-rectin:hover:before {
2460
+ -webkit-transform: scale(0);
2461
+ -ms-transform: scale(0);
2462
+ transform: scale(0);
2463
+ }
2464
+
2465
+ .premium-button-style5-radialout:hover:before {
2466
+ -webkit-transform: scale(2);
2467
+ -ms-transform: scale(2);
2468
+ transform: scale(2);
2469
+ }
2470
+
2471
+ .premium-button-style5-radialin:hover:before {
2472
+ -webkit-transform: scale(0);
2473
+ -ms-transform: scale(0);
2474
+ transform: scale(0);
2475
+ }
2476
+
2477
+ .premium-button-style1-top:before {
2478
+ -webkit-transform-origin: 50% 100%;
2479
+ -ms-transform-origin: 50% 100%;
2480
+ transform-origin: 50% 100%;
2481
+ }
2482
+
2483
+ .premium-button-style1-right:before {
2484
+ -webkit-transform: scaleX(0);
2485
+ -ms-transform: scaleX(0);
2486
+ transform: scaleX(0);
2487
+ -webkit-transform-origin: 0% 50%;
2488
+ -ms-transform-origin: 0% 50%;
2489
+ transform-origin: 0% 50%;
2490
+ }
2491
+
2492
+ .premium-button-style1-left:before {
2493
+ -webkit-transform: scaleX(0);
2494
+ -ms-transform: scaleX(0);
2495
+ transform: scaleX(0);
2496
+ -webkit-transform-origin: 100% 50%;
2497
+ -ms-transform-origin: 100% 50%;
2498
+ transform-origin: 100% 50%;
2499
+ }
2500
+
2501
+ .premium-button-style2-shutouthor:before,
2502
+ .premium-button-style2-scshutoutver:before {
2503
+ -webkit-transform: scaleY(0);
2504
+ -ms-transform: scaleY(0);
2505
+ transform: scaleY(0);
2506
+ -webkit-transform-origin: 100% 50%;
2507
+ -ms-transform-origin: 100% 50%;
2508
+ transform-origin: 100% 50%;
2509
+ }
2510
+
2511
+ .premium-button-style2-shutoutver:before,
2512
+ .premium-button-style2-scshutouthor:before {
2513
+ -webkit-transform: scaleX(0);
2514
+ -ms-transform: scaleX(0);
2515
+ transform: scaleX(0);
2516
+ -webkit-transform-origin: 50% 50%;
2517
+ -ms-transform-origin: 50% 50%;
2518
+ transform-origin: 50% 50%;
2519
+ }
2520
+
2521
+ .premium-button-style2-shutinhor:before {
2522
+ -webkit-transform: scaleX(1);
2523
+ -ms-transform: scaleX(1);
2524
+ transform: scaleX(1);
2525
+ -webkit-transform-origin: 50%;
2526
+ -ms-transform-origin: 50%;
2527
+ transform-origin: 50%;
2528
+ }
2529
+
2530
+ .premium-button-style2-shutinver:before {
2531
+ -webkit-transform: scaleY(1);
2532
+ -ms-transform: scaleY(1);
2533
+ transform: scaleY(1);
2534
+ -webkit-transform-origin: 50%;
2535
+ -ms-transform-origin: 50%;
2536
+ transform-origin: 50%;
2537
+ }
2538
+
2539
+ .premium-button-style1-bottom:hover:before,
2540
+ .premium-button-style1-top:hover:before {
2541
+ -webkit-transform: scaleY(1);
2542
+ -ms-transform: scaleY(1);
2543
+ transform: scaleY(1);
2544
+ }
2545
+
2546
+ .premium-button-style1-left:hover:before,
2547
+ .premium-button-style1-right:hover:before,
2548
+ .premium-button-style2-shutouthor:hover:before,
2549
+ .premium-button-style2-shutoutver:hover:before {
2550
+ -webkit-transform: scaleX(1);
2551
+ -ms-transform: scaleX(1);
2552
+ transform: scaleX(1);
2553
+ }
2554
+
2555
+ .premium-button-style2-shutinhor:hover:before {
2556
+ -webkit-transform: scaleX(0);
2557
+ -ms-transform: scaleX(0);
2558
+ transform: scaleX(0);
2559
+ }
2560
+
2561
+ .premium-button-style2-shutinver:hover:before {
2562
+ -webkit-transform: scaleY(0);
2563
+ -ms-transform: scaleY(0);
2564
+ transform: scaleY(0);
2565
+ }
2566
+
2567
+ .premium-button-style2-scshutouthor:hover:before {
2568
+ -webkit-transform: scaleX(0.9);
2569
+ -ms-transform: scaleX(0.9);
2570
+ transform: scaleX(0.9);
2571
+ }
2572
+
2573
+ .premium-button-style2-scshutoutver:hover:before {
2574
+ -webkit-transform: scaleY(0.8);
2575
+ -ms-transform: scaleY(0.8);
2576
+ transform: scaleY(0.8);
2577
+ }
2578
+
2579
+ /*Diagonal*/
2580
+ .premium-button-style2-dshutinhor:before {
2581
+ top: 50%;
2582
+ left: 50%;
2583
+ width: 120%;
2584
+ height: 0%;
2585
+ -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
2586
+ -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
2587
+ transform: translateX(-50%) translateY(-50%) rotate(-45deg);
2588
+ -webkit-transform-origin: 50%;
2589
+ -ms-transform-origin: 50%;
2590
+ transform-origin: 50%;
2591
+ -webkit-transition-property: all;
2592
+ transition-property: all;
2593
+ }
2594
+
2595
+ .premium-button-style2-dshutinver:before {
2596
+ top: 50%;
2597
+ left: 50%;
2598
+ width: 120%;
2599
+ height: 0%;
2600
+ -webkit-transform-origin: 50%;
2601
+ -ms-transform-origin: 50%;
2602
+ transform-origin: 50%;
2603
+ -webkit-transition-property: all;
2604
+ transition-property: all;
2605
+ -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
2606
+ -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
2607
+ transform: translateX(-50%) translateY(-50%) rotate(45deg);
2608
+ }
2609
+
2610
+ .premium-button-style2-dshutinhor:hover:before,
2611
+ .premium-button-style2-dshutinver:hover:before {
2612
+ height: 220%;
2613
+ }
2614
+
2615
+ .premium-button-style3-before i,
2616
+ .premium-button-style3-before svg {
2617
+ opacity: 0;
2618
+ -webkit-transform: translateX(-5px);
2619
+ -ms-transform: translateX(-5px);
2620
+ transform: translateX(-5px);
2621
+ -webkit-transition: all 0.5s ease-in-out;
2622
+ transition: all 0.5s ease-in-out;
2623
+ }
2624
+
2625
+ .premium-button-style3-after i,
2626
+ .premium-button-style3-after svg {
2627
+ opacity: 0;
2628
+ -webkit-transform: translateX(-5px);
2629
+ -ms-transform: translateX(-5px);
2630
+ transform: translateX(-5px);
2631
+ -webkit-transition: all 0.5s ease-in-out;
2632
+ transition: all 0.5s ease-in-out;
2633
+ -webkit-transform: translateX(5px);
2634
+ -ms-transform: translateX(5px);
2635
+ transform: translateX(5px);
2636
+ }
2637
+
2638
+ .premium-button-style3-after:hover i,
2639
+ .premium-button-style3-after:hover svg {
2640
+ opacity: 1;
2641
+ }
2642
+
2643
+ .premium-button-style3-before:hover i,
2644
+ .premium-button-style3-before:hover svg {
2645
+ opacity: 1;
2646
+ }
2647
+
2648
+ .premium-button-text-icon-wrapper {
2649
+ width: 100%;
2650
+ -js-display: flex;
2651
+ display: -webkit-box;
2652
+ display: -webkit-flex;
2653
+ display: -moz-box;
2654
+ display: -ms-flexbox;
2655
+ display: flex;
2656
+ -webkit-box-pack: center;
2657
+ -webkit-justify-content: center;
2658
+ -moz-box-pack: center;
2659
+ -ms-flex-pack: center;
2660
+ justify-content: center;
2661
+ -webkit-box-align: center;
2662
+ -webkit-align-items: center;
2663
+ -moz-box-align: center;
2664
+ -ms-flex-align: center;
2665
+ align-items: center;
2666
+ -webkit-transition: all 0.2s ease-in-out;
2667
+ transition: all 0.2s ease-in-out;
2668
+ }
2669
+
2670
+ .premium-button-text-icon-wrapper span,
2671
+ .premium-button-text-icon-wrapper i,
2672
+ .premium-button-text-icon-wrapper svg {
2673
+ -webkit-transition: all 0.2s ease-in-out;
2674
+ transition: all 0.2s ease-in-out;
2675
+ }
2676
+
2677
+ .premium-button-style4-icon-wrapper {
2678
+ position: absolute;
2679
+ z-index: 2;
2680
+ width: 100%;
2681
+ text-align: center;
2682
+ -js-display: flex;
2683
+ display: -webkit-box;
2684
+ display: -webkit-flex;
2685
+ display: -moz-box;
2686
+ display: -ms-flexbox;
2687
+ display: flex;
2688
+ -webkit-box-align: center;
2689
+ -webkit-align-items: center;
2690
+ -moz-box-align: center;
2691
+ -ms-flex-align: center;
2692
+ align-items: center;
2693
+ -webkit-box-pack: center;
2694
+ -webkit-justify-content: center;
2695
+ -moz-box-pack: center;
2696
+ -ms-flex-pack: center;
2697
+ justify-content: center;
2698
+ height: 100%;
2699
+ opacity: 0;
2700
+ -webkit-transition: all 0.3s ease-in-out;
2701
+ transition: all 0.3s ease-in-out;
2702
+ }
2703
+
2704
+ .premium-button-style4-icon-wrapper.top {
2705
+ bottom: -100%;
2706
+ left: 0;
2707
+ }
2708
+
2709
+ .premium-button-style4-icon-wrapper.bottom {
2710
+ top: -100%;
2711
+ left: 0;
2712
+ }
2713
+
2714
+ .premium-button-style4-icon-wrapper.left {
2715
+ top: 0;
2716
+ left: -100%;
2717
+ }
2718
+
2719
+ .premium-button-style4-icon-wrapper.right {
2720
+ top: 0;
2721
+ right: -100%;
2722
+ }
2723
+
2724
+ .premium-button-style4-bottom:hover .premium-button-style4-icon-wrapper {
2725
+ top: 0;
2726
+ opacity: 1;
2727
+ }
2728
+
2729
+ .premium-button-style4-top:hover .premium-button-style4-icon-wrapper {
2730
+ bottom: 0;
2731
+ opacity: 1;
2732
+ }
2733
+
2734
+ .premium-button-style4-left:hover .premium-button-style4-icon-wrapper {
2735
+ left: 0;
2736
+ opacity: 1;
2737
+ }
2738
+
2739
+ .premium-button-style4-right:hover .premium-button-style4-icon-wrapper {
2740
+ right: 0;
2741
+ opacity: 1;
2742
+ }
2743
+
2744
+ .premium-button-style4-bottom:hover .premium-button-text-icon-wrapper {
2745
+ -webkit-transform: translateY(100%);
2746
+ -ms-transform: translateY(100%);
2747
+ transform: translateY(100%);
2748
+ opacity: 0;
2749
+ }
2750
+
2751
+ .premium-button-style4-top:hover .premium-button-text-icon-wrapper {
2752
+ -webkit-transform: translateY(-100%);
2753
+ -ms-transform: translateY(-100%);
2754
+ transform: translateY(-100%);
2755
+ opacity: 0;
2756
+ }
2757
+
2758
+ .premium-button-style4-left:hover .premium-button-text-icon-wrapper {
2759
+ -webkit-transform: translateX(100%);
2760
+ -ms-transform: translateX(100%);
2761
+ transform: translateX(100%);
2762
+ opacity: 0;
2763
+ }
2764
+
2765
+ .premium-button-style4-right:hover .premium-button-text-icon-wrapper {
2766
+ -webkit-transform: translateX(-100%);
2767
+ -ms-transform: translateX(-100%);
2768
+ transform: translateX(-100%);
2769
+ opacity: 0;
2770
+ }
2771
+
2772
+ .premium-button-style6:before {
2773
+ content: "";
2774
+ position: absolute;
2775
+ left: 50%;
2776
+ top: 50%;
2777
+ width: 100px;
2778
+ height: 100px;
2779
+ -webkit-border-radius: 100%;
2780
+ border-radius: 100%;
2781
+ -webkit-transform: translate(-50%, -50%) scale(0);
2782
+ -ms-transform: translate(-50%, -50%) scale(0);
2783
+ transform: translate(-50%, -50%) scale(0);
2784
+ -webkit-transition: all 0.3s ease-in-out;
2785
+ transition: all 0.3s ease-in-out;
2786
+ }
2787
+
2788
+ .premium-button-style6:hover:before {
2789
+ -webkit-transform: translate(-50%, -50%) scale(3);
2790
+ -ms-transform: translate(-50%, -50%) scale(3);
2791
+ transform: translate(-50%, -50%) scale(3);
2792
+ }
2793
+
2794
+ .premium-button-style6 .premium-button-text-icon-wrapper {
2795
+ position: relative;
2796
+ z-index: 1;
2797
+ }
2798
+
2799
+ .premium-button-style7-right .premium-button-text-icon-wrapper:before,
2800
+ .premium-button-style7-left .premium-button-text-icon-wrapper:before {
2801
+ -webkit-transition: width 0.3s ease-out 0.15s;
2802
+ transition: width 0.3s ease-out 0.15s;
2803
+ }
2804
+
2805
+ .premium-button-style7-right .premium-button-text-icon-wrapper:after,
2806
+ .premium-button-style7-left .premium-button-text-icon-wrapper:after {
2807
+ -webkit-transition: width 0.3s ease-out 0s;
2808
+ transition: width 0.3s ease-out 0s;
2809
+ }
2810
+
2811
+ .premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
2812
+ .premium-button-style7-top .premium-button-text-icon-wrapper:before {
2813
+ -webkit-transition: height 0.3s ease-out 0.15s;
2814
+ transition: height 0.3s ease-out 0.15s;
2815
+ }
2816
+
2817
+ .premium-button-style7-bottom .premium-button-text-icon-wrapper:after,
2818
+ .premium-button-style7-top .premium-button-text-icon-wrapper:after {
2819
+ -webkit-transition: height 0.3s ease-out 0s;
2820
+ transition: height 0.3s ease-out 0s;
2821
+ }
2822
+
2823
+ .premium-button-style7:hover .premium-button-text-icon-wrapper:before {
2824
+ -webkit-transition-delay: 0s;
2825
+ transition-delay: 0s;
2826
+ }
2827
+
2828
+ .premium-button-style7:hover .premium-button-text-icon-wrapper:after {
2829
+ -webkit-transition-delay: 0.15s;
2830
+ transition-delay: 0.15s;
2831
+ }
2832
+
2833
+ .premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
2834
+ .premium-button-style7-bottom .premium-button-text-icon-wrapper:after {
2835
+ content: "";
2836
+ position: absolute;
2837
+ right: 0;
2838
+ top: 0;
2839
+ left: 0;
2840
+ height: 0;
2841
+ z-index: -1;
2842
+ }
2843
+
2844
+ .premium-button-style7-top .premium-button-text-icon-wrapper:after,
2845
+ .premium-button-style7-top .premium-button-text-icon-wrapper:before {
2846
+ content: "";
2847
+ position: absolute;
2848
+ right: 0;
2849
+ bottom: 0;
2850
+ left: 0;
2851
+ height: 0;
2852
+ z-index: -1;
2853
+ }
2854
+
2855
+ .premium-button-style7-right .premium-button-text-icon-wrapper:after,
2856
+ .premium-button-style7-right .premium-button-text-icon-wrapper:before {
2857
+ content: "";
2858
+ position: absolute;
2859
+ right: 0;
2860
+ top: 0;
2861
+ bottom: 0;
2862
+ width: 0;
2863
+ z-index: -1;
2864
+ }
2865
+
2866
+ .premium-button-style7-left .premium-button-text-icon-wrapper:after,
2867
+ .premium-button-style7-left .premium-button-text-icon-wrapper:before {
2868
+ content: "";
2869
+ position: absolute;
2870
+ left: 0;
2871
+ top: 0;
2872
+ bottom: 0;
2873
+ width: 0;
2874
+ z-index: -1;
2875
+ }
2876
+
2877
+ .premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:after,
2878
+ .premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:before {
2879
+ height: 100%;
2880
+ top: 0;
2881
+ }
2882
+
2883
+ .premium-button-style7-top:hover .premium-button-text-icon-wrapper:after,
2884
+ .premium-button-style7-top:hover .premium-button-text-icon-wrapper:before {
2885
+ height: 100%;
2886
+ bottom: 0;
2887
+ }
2888
+
2889
+ .premium-button-style7-left:hover .premium-button-text-icon-wrapper:after,
2890
+ .premium-button-style7-left:hover .premium-button-text-icon-wrapper:before {
2891
+ width: 100%;
2892
+ left: 0;
2893
+ }
2894
+
2895
+ .premium-button-style7-right:hover .premium-button-text-icon-wrapper:after,
2896
+ .premium-button-style7-right:hover .premium-button-text-icon-wrapper:before {
2897
+ width: 100%;
2898
+ right: 0;
2899
+ }
2900
+
2901
+ /**************** Premium Carousel ****************/
2902
+ /**************************************************/
2903
+ .premium-carousel-wrapper a.carousel-arrow,
2904
+ .premium-carousel-wrapper a.ver-carousel-arrow {
2905
+ -js-display: flex;
2906
+ display: -webkit-box;
2907
+ display: -webkit-flex;
2908
+ display: -moz-box;
2909
+ display: -ms-flexbox;
2910
+ display: flex;
2911
+ -webkit-box-align: center;
2912
+ -webkit-align-items: center;
2913
+ -moz-box-align: center;
2914
+ -ms-flex-align: center;
2915
+ align-items: center;
2916
+ -webkit-box-pack: center;
2917
+ -webkit-justify-content: center;
2918
+ -moz-box-pack: center;
2919
+ -ms-flex-pack: center;
2920
+ justify-content: center;
2921
+ width: 2em;
2922
+ height: 2em;
2923
+ line-height: 0;
2924
+ text-align: center;
2925
+ position: absolute;
2926
+ z-index: 99;
2927
+ cursor: pointer;
2928
+ -webkit-transition: all 0.3s ease-in-out;
2929
+ transition: all 0.3s ease-in-out;
2930
+ -webkit-appearance: inherit;
2931
+ border: none;
2932
+ -webkit-box-shadow: none;
2933
+ box-shadow: none;
2934
+ }
2935
+
2936
+ .premium-carousel-wrapper a.carousel-arrow svg,
2937
+ .premium-carousel-wrapper a.ver-carousel-arrow svg {
2938
+ -webkit-transition: all 0.3s ease-in-out;
2939
+ transition: all 0.3s ease-in-out;
2940
+ }
2941
+
2942
+ .ver-carousel-arrow.carousel-next i {
2943
+ margin-bottom: -3px;
2944
+ }
2945
+
2946
+ .premium-carousel-wrapper a.slick-arrow:hover {
2947
+ -webkit-box-shadow: none !important;
2948
+ box-shadow: none !important;
2949
+ }
2950
+
2951
+ .premium-carousel-wrapper .premium-carousel-content-hidden {
2952
+ visibility: hidden;
2953
+ }
2954
+
2955
+ .premium-carousel-wrapper a.carousel-arrow {
2956
+ top: 50%;
2957
+ }
2958
+
2959
+ .premium-carousel-wrapper a.ver-carousel-arrow {
2960
+ left: 50%;
2961
+ -webkit-transform: translateX(-50%);
2962
+ -ms-transform: translateX(-50%);
2963
+ transform: translateX(-50%);
2964
+ }
2965
+
2966
+ .premium-carousel-dots-above ul.slick-dots {
2967
+ position: absolute;
2968
+ -js-display: flex;
2969
+ display: -webkit-box;
2970
+ display: -webkit-flex;
2971
+ display: -moz-box;
2972
+ display: -ms-flexbox;
2973
+ display: flex;
2974
+ width: auto;
2975
+ top: 50%;
2976
+ bottom: auto;
2977
+ -webkit-transform: translateY(-50%);
2978
+ -ms-transform: translateY(-50%);
2979
+ transform: translateY(-50%);
2980
+ -webkit-box-orient: vertical;
2981
+ -webkit-box-direction: normal;
2982
+ -webkit-flex-direction: column;
2983
+ -moz-box-orient: vertical;
2984
+ -moz-box-direction: normal;
2985
+ -ms-flex-direction: column;
2986
+ flex-direction: column;
2987
+ }
2988
+
2989
  /*
2990
+ * Custom Navigation Dot
2991
+ */
2992
+ .premium-carousel-wrapper .premium-carousel-nav-dot,
2993
+ .premium-carousel-wrapper .premium-carousel-nav-arrow-prev,
2994
+ .premium-carousel-wrapper .premium-carousel-nav-arrow-next {
2995
+ display: none;
2996
+ }
2997
+
2998
+ .premium-carousel-wrapper ul.slick-dots svg {
2999
+ width: 20px;
3000
+ height: 20px;
3001
+ outline: none !important;
3002
+ }
3003
+
3004
+ /* Ripple Out */
3005
+ @-webkit-keyframes hvr-ripple-out {
3006
+ 0% {
3007
+ -webkit-transform: scale(1);
3008
+ transform: scale(1);
3009
+ opacity: 1;
3010
+ }
3011
+
3012
+ 100% {
3013
+ -webkit-transform: scale(1.5);
3014
+ transform: scale(1.5);
3015
+ opacity: 0;
3016
+ }
3017
+ }
3018
+
3019
+ @keyframes hvr-ripple-out {
3020
+ 0% {
3021
+ -webkit-transform: scale(1);
3022
+ transform: scale(1);
3023
+ opacity: 1;
3024
+ }
3025
+
3026
+ 100% {
3027
+ -webkit-transform: scale(1.5);
3028
+ transform: scale(1.5);
3029
+ opacity: 0;
3030
+ }
3031
+ }
3032
+
3033
+ .premium-carousel-ripple-yes .premium-carousel-wrapper {
3034
+ padding-bottom: 1px;
3035
+ }
3036
+
3037
+ .premium-carousel-ripple-yes ul.slick-dots li {
3038
+ position: relative;
3039
+ }
3040
+
3041
+ .premium-carousel-ripple-yes ul.slick-dots li i {
3042
+ position: relative;
3043
+ z-index: 1;
3044
+ }
3045
+
3046
+ .premium-carousel-ripple-yes ul.slick-dots li:hover:before {
3047
+ content: "";
3048
+ position: absolute;
3049
+ -webkit-transform: scale(1);
3050
+ -ms-transform: scale(1);
3051
+ transform: scale(1);
3052
+ top: 0;
3053
+ right: 0;
3054
+ bottom: 0;
3055
+ left: 0;
3056
+ -webkit-border-radius: 50%;
3057
+ border-radius: 50%;
3058
+ pointer-events: none;
3059
+ background-color: rgba(0, 0, 0, 0.15);
3060
+ }
3061
+
3062
+ .premium-carousel-ripple-yes ul.slick-dots li.slick-active:hover:before {
3063
+ background-color: rgba(0, 0, 0, 0.3);
3064
+ }
3065
+
3066
+ .premium-carousel-ripple-yes ul.slick-dots li:hover:before {
3067
+ -webkit-animation: hvr-ripple-out 1.3s infinite;
3068
+ animation: hvr-ripple-out 1.3s infinite;
3069
+ }
3070
+
3071
+ .premium-carousel-wrapper.premium-carousel-scale .slick-slide {
3072
+ -webkit-transform: scale(1.25, 1.25);
3073
+ -ms-transform: scale(1.25, 1.25);
3074
+ transform: scale(1.25, 1.25);
3075
+ -webkit-transition: all 0.3s ease-in-out;
3076
+ transition: all 0.3s ease-in-out;
3077
+ }
3078
+
3079
+ .premium-carousel-wrapper.premium-carousel-scale div.slick-active {
3080
+ -webkit-transform: scale(1, 1);
3081
+ -ms-transform: scale(1, 1);
3082
+ transform: scale(1, 1);
3083
+ }
3084
+
3085
+ [dir="rtl"] .premium-carousel-inner .slick-slide {
3086
+ float: right;
3087
+ }
3088
+
3089
+ /**************** Premium Contact Form7 **********/
3090
+ /*************************************************/
3091
+ .premium-contact-form-anim-yes .wpcf7-span::after {
3092
+ display: block;
3093
+ height: 2px;
3094
+ content: "";
3095
+ top: -2px;
3096
+ position: relative;
3097
+ width: 0px;
3098
+ -webkit-transition: all ease-in-out 0.3s;
3099
+ transition: all ease-in-out 0.3s;
3100
+ }
3101
+
3102
+ .premium-contact-form-anim-yes .wpcf7-span.is-focused::after {
3103
+ width: 100%;
3104
+ }
3105
+
3106
+ .premium-cf7-container input.wpcf7-submit {
3107
+ -webkit-transition: all 0.3s ease-in-out;
3108
+ transition: all 0.3s ease-in-out;
3109
+ }
3110
+
3111
+ /**************** Premium CountDown *************/
3112
+ /************************************************/
3113
+ .premium-countdown {
3114
+ -js-display: flex;
3115
+ display: -webkit-box;
3116
+ display: -webkit-flex;
3117
+ display: -moz-box;
3118
+ display: -ms-flexbox;
3119
+ display: flex;
3120
+ text-align: center;
3121
+ }
3122
+
3123
+ .countdown-row {
3124
+ display: block;
3125
+ text-align: center;
3126
+ }
3127
+
3128
+ .countdown .countdown-section {
3129
+ display: inline-block;
3130
+ max-width: 100%;
3131
+ margin-bottom: 15px;
3132
+ -js-display: inline-flex;
3133
+ display: -webkit-inline-box;
3134
+ display: -webkit-inline-flex;
3135
+ display: -moz-inline-box;
3136
+ display: -ms-inline-flexbox;
3137
+ display: inline-flex;
3138
+ -webkit-box-align: center;
3139
+ -webkit-align-items: center;
3140
+ -moz-box-align: center;
3141
+ -ms-flex-align: center;
3142
+ align-items: center;
3143
+ }
3144
+
3145
+ .countdown .countdown-section:last-child {
3146
+ margin-right: 0;
3147
+ }
3148
+
3149
+ .countdown span.countdown-amount {
3150
+ font-size: 70px;
3151
+ line-height: 1;
3152
+ padding: 40px;
3153
+ }
3154
+
3155
+ .countdown .pre_time-mid {
3156
+ display: block;
3157
+ }
3158
+
3159
+ .premium-countdown-separator-yes .countdown_separator {
3160
+ display: block;
3161
+ margin: 0 50px;
3162
+ font-size: 30px;
3163
+ }
3164
+
3165
+ .premium-countdown-separator-yes .countdown-row .countdown-section:last-child .countdown_separator,
3166
+ .premium-countdown-separator-yes .premium-countdown-block:last-child .countdown_separator {
3167
+ display: none;
3168
+ }
3169
+
3170
+ /**
3171
+ * Digit and unit styles
3172
+ */
3173
+ .side .countdown-section .countdown-period {
3174
+ vertical-align: bottom;
3175
+ }
3176
+
3177
+ .countdown .countdown-section .countdown-period {
3178
+ font-size: 17px;
3179
+ line-height: 3em;
3180
+ }
3181
+
3182
+ .side .countdown-section .countdown-amount,
3183
+ .side .countdown-section .countdown-period {
3184
+ display: inline-block;
3185
+ }
3186
+
3187
+ .side .countdown-section .countdown-amount {
3188
+ margin-right: 5px;
3189
+ }
3190
+
3191
+ .down .countdown-section .countdown-amount,
3192
+ .down .countdown-section .countdown-period {
3193
+ display: block;
3194
+ }
3195
+
3196
+ /**
3197
+ * Flip Layout
3198
+ */
3199
+ .premium-countdown-flip .premium-countdown-block {
3200
+ text-align: center;
3201
+ -js-display: inline-flex;
3202
+ display: -webkit-inline-box;
3203
+ display: -webkit-inline-flex;
3204
+ display: -moz-inline-box;
3205
+ display: -ms-inline-flexbox;
3206
+ display: inline-flex;
3207
+ -webkit-box-align: center;
3208
+ -webkit-align-items: center;
3209
+ -moz-box-align: center;
3210
+ -ms-flex-align: center;
3211
+ align-items: center;
3212
+ }
3213
+
3214
+ .premium-countdown-flip .premium-countdown-block:last-child {
3215
+ margin-right: 0;
3216
+ }
3217
+
3218
+ .premium-countdown-flip .premium-countdown-label {
3219
+ overflow: hidden;
3220
+ color: #1a1a1a;
3221
+ text-transform: uppercase;
3222
+ }
3223
+
3224
+ .premium-countdown-flip .premium-countdown-figure {
3225
+ position: relative;
3226
+ height: 110px;
3227
+ width: 100px;
3228
+ line-height: 107px;
3229
+ background-color: #fff;
3230
+ -webkit-border-radius: 10px;
3231
+ border-radius: 10px;
3232
+ -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
3233
+ box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
3234
+ }
3235
+
3236
+ .premium-countdown-flip .premium-countdown-figure:last-child {
3237
+ margin-right: 0;
3238
+ }
3239
+
3240
+ .premium-countdown-flip .premium-countdown-figure>span {
3241
+ position: absolute;
3242
+ left: 0;
3243
+ right: 0;
3244
+ margin: auto;
3245
+ font-weight: 700;
3246
+ }
3247
+
3248
+ .premium-countdown-flip .premium-countdown-figure .top {
3249
+ z-index: 3;
3250
+ -webkit-transform-origin: 50% 100%;
3251
+ -ms-transform-origin: 50% 100%;
3252
+ transform-origin: 50% 100%;
3253
+ -webkit-transform: perspective(200px);
3254
+ transform: perspective(200px);
3255
+ -webkit-backface-visibility: hidden;
3256
+ backface-visibility: hidden;
3257
+ }
3258
+
3259
+ .premium-countdown-flip .premium-countdown-figure .bottom {
3260
+ z-index: 1;
3261
+ }
3262
+
3263
+ .premium-countdown-flip .premium-countdown-figure .bottom::before {
3264
+ content: "";
3265
+ position: absolute;
3266
+ display: block;
3267
+ top: 0;
3268
+ left: 0;
3269
+ width: 100%;
3270
+ height: 50%;
3271
+ background-color: rgba(0, 0, 0, 0.02);
3272
+ }
3273
+
3274
+ .premium-countdown-flip .premium-countdown-figure .top-back {
3275
+ -webkit-backface-visibility: hidden;
3276
+ backface-visibility: hidden;
3277
+ z-index: 4;
3278
+ bottom: 0;
3279
+ -webkit-transform-origin: 50% 0;
3280
+ -ms-transform-origin: 50% 0;
3281
+ transform-origin: 50% 0;
3282
+ -webkit-transform: perspective(200px) rotateX(180deg);
3283
+ transform: perspective(200px) rotateX(180deg);
3284
+ }
3285
+
3286
+ .premium-countdown-flip .premium-countdown-figure .top-back span {
3287
+ position: absolute;
3288
+ top: -100%;
3289
+ left: 0;
3290
+ right: 0;
3291
+ margin: auto;
3292
+ }
3293
+
3294
+ .premium-countdown-flip .premium-countdown-figure .bottom-back {
3295
+ z-index: 2;
3296
+ top: 0;
3297
+ }
3298
+
3299
+ .premium-countdown-flip .premium-countdown-figure .bottom-back span {
3300
+ position: absolute;
3301
+ top: 0;
3302
+ left: 0;
3303
+ right: 0;
3304
+ margin: auto;
3305
+ }
3306
+
3307
+ .premium-countdown-flip .premium-countdown-figure .top,
3308
+ .premium-countdown-flip .premium-countdown-figure .bottom-back,
3309
+ .premium-countdown-flip .premium-countdown-figure .top-back {
3310
+ height: 50%;
3311
+ overflow: hidden;
3312
+ background-color: #f7f7f7;
3313
+ -webkit-border-top-left-radius: 10px;
3314
+ border-top-left-radius: 10px;
3315
+ -webkit-border-top-right-radius: 10px;
3316
+ border-top-right-radius: 10px;
3317
+ }
3318
+
3319
+ .premium-countdown-flip .premium-countdown-figure .top-back {
3320
+ -webkit-border-bottom-left-radius: 10px;
3321
+ border-bottom-left-radius: 10px;
3322
+ -webkit-border-bottom-right-radius: 10px;
3323
+ border-bottom-right-radius: 10px;
3324
+ }
3325
+
3326
+ .premium-countdown-flip .premium-countdown-figure .top::after,
3327
+ .premium-countdown-flip .premium-countdown-figure .bottom-back::after {
3328
+ content: "";
3329
+ position: absolute;
3330
+ z-index: -1;
3331
+ left: 0;
3332
+ bottom: 0;
3333
+ width: 100%;
3334
+ height: 100%;
3335
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1);
3336
+ }
3337
+
3338
+ .side .premium-countdown-figure,
3339
+ .side .premium-countdown-label {
3340
+ display: inline-block;
3341
+ }
3342
+
3343
+ .side .premium-countdown-figure {
3344
+ margin-right: 5px;
3345
+ }
3346
+
3347
+ .down .premium-countdown-figure,
3348
+ .down .premium-countdown-label {
3349
+ display: block;
3350
+ }
3351
+
3352
+ .down .premium-countdown-label {
3353
+ width: 100%;
3354
+ }
3355
+
3356
+ /**************** Premium Counter ***************/
3357
+ /************************************************/
3358
+ .premium-counter-area {
3359
+ padding: 10px 0;
3360
+ -js-display: flex;
3361
+ display: -webkit-box;
3362
+ display: -webkit-flex;
3363
+ display: -moz-box;
3364
+ display: -ms-flexbox;
3365
+ display: flex;
3366
+ -webkit-box-pack: center;
3367
+ -webkit-justify-content: center;
3368
+ -moz-box-pack: center;
3369
+ -ms-flex-pack: center;
3370
+ justify-content: center;
3371
+ -webkit-box-align: center;
3372
+ -webkit-align-items: center;
3373
+ -moz-box-align: center;
3374
+ -ms-flex-align: center;
3375
+ align-items: center;
3376
+ }
3377
+
3378
+ .premium-counter-area.top {
3379
+ -webkit-box-orient: vertical;
3380
+ -webkit-box-direction: normal;
3381
+ -webkit-flex-direction: column;
3382
+ -moz-box-orient: vertical;
3383
+ -moz-box-direction: normal;
3384
+ -ms-flex-direction: column;
3385
+ flex-direction: column;
3386
+ }
3387
+
3388
+ .premium-counter-area.right {
3389
+ -webkit-box-orient: horizontal;
3390
+ -webkit-box-direction: reverse;
3391
+ -webkit-flex-direction: row-reverse;
3392
+ -moz-box-orient: horizontal;
3393
+ -moz-box-direction: reverse;
3394
+ -ms-flex-direction: row-reverse;
3395
+ flex-direction: row-reverse;
3396
+ }
3397
+
3398
+ .premium-counter-area.right .premium-counter-icon {
3399
+ padding-left: 20px;
3400
+ }
3401
+
3402
+ .premium-counter-area.left .premium-counter-icon {
3403
+ padding-right: 20px;
3404
+ }
3405
+
3406
+ .premium-counter-area .premium-counter-icon .icon i.fa:before {
3407
+ vertical-align: text-top;
3408
+ }
3409
+
3410
+ .premium-counter-area .premium-counter-icon span.icon {
3411
+ text-align: center;
3412
+ display: inline-block;
3413
+ vertical-align: middle;
3414
+ }
3415
+
3416
+ .premium-counter-area .premium-counter-icon .circle {
3417
+ -webkit-border-radius: 100%;
3418
+ border-radius: 100%;
3419
+ }
3420
+
3421
+ .premium-counter-area .premium-counter-icon img,
3422
+ .premium-counter-area .premium-counter-icon svg {
3423
+ width: 80px;
3424
+ }
3425
+
3426
+ .premium-counter-area .premium-counter-icon .premium-counter-animation svg {
3427
+ height: 80px;
3428
+ }
3429
+
3430
+ .premium-counter-area .premium-counter-title p {
3431
+ padding: 0;
3432
+ margin: 0;
3433
+ }
3434
+
3435
+ .premium-counter-area .premium-counter-value-wrap {
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-align: center;
3443
+ -webkit-align-items: center;
3444
+ -moz-box-align: center;
3445
+ -ms-flex-align: center;
3446
+ align-items: center;
3447
+ }
3448
+
3449
+ .premium-init-wrapper {
3450
+ -js-display: flex;
3451
+ display: -webkit-box;
3452
+ display: -webkit-flex;
3453
+ display: -moz-box;
3454
+ display: -ms-flexbox;
3455
+ display: flex;
3456
+ }
3457
+
3458
+ .premium-init-wrapper.row {
3459
+ -webkit-box-align: center;
3460
+ -webkit-align-items: center;
3461
+ -moz-box-align: center;
3462
+ -ms-flex-align: center;
3463
+ align-items: center;
3464
+ }
3465
+
3466
+ .premium-init-wrapper.right {
3467
+ text-align: right;
3468
+ }
3469
+
3470
+ span.icon.flex-width {
3471
+ width: auto !important;
3472
+ height: auto !important;
3473
+ }
3474
+
3475
+ .premium-counter-area .premium-counter-init {
3476
+ font-size: 35px;
3477
+ }
3478
+
3479
+ /**************** Premium Dual Heading *****************/
3480
+ /*******************************************************/
3481
+ .premium-dual-header-first-header,
3482
+ .premium-dual-header-second-header {
3483
+ position: relative;
3484
+ padding: 0;
3485
+ margin: 0;
3486
+ display: inline-block;
3487
+ -webkit-transform: translate(0, 0);
3488
+ -ms-transform: translate(0, 0);
3489
+ transform: translate(0, 0);
3490
+ }
3491
+
3492
+ .premium-dual-header-first-clip .premium-dual-header-first-span,
3493
+ .premium-dual-header-second-clip {
3494
+ -webkit-text-fill-color: transparent;
3495
+ -webkit-background-clip: text;
3496
+ background-clip: text;
3497
+ }
3498
+
3499
+ .premium-dual-header-first-clip.stroke .premium-dual-header-first-span,
3500
+ .premium-dual-header-second-clip.stroke {
3501
+ -webkit-text-stroke-color: transparent;
3502
+ -webkit-text-fill-color: #fafafa;
3503
+ -webkit-text-stroke-width: 2px;
3504
+ }
3505
+
3506
+ @media (max-width: 500px) {
3507
+
3508
+ .premium-dual-header-first-header,
3509
+ .premium-dual-header-second-header {
3510
+ word-wrap: break-word;
3511
+ }
3512
+ }
3513
+
3514
+ .premium-dual-header-first-header.gradient .premium-dual-header-first-span,
3515
+ .premium-dual-header-second-header.gradient {
3516
+ -webkit-background-size: 300% 300% !important;
3517
+ background-size: 300% 300% !important;
3518
+ -webkit-animation: Gradient 10s ease-in-out infinite;
3519
+ animation: Gradient 10s ease-in-out infinite;
3520
+ }
3521
+
3522
+ @-webkit-keyframes Gradient {
3523
+ 0% {
3524
+ background-position: 0% 50%;
3525
+ }
3526
+
3527
+ 50% {
3528
+ background-position: 100% 50%;
3529
+ }
3530
+
3531
+ 100% {
3532
+ background-position: 0% 50%;
3533
+ }
3534
+ }
3535
+
3536
+ @keyframes Gradient {
3537
+ 0% {
3538
+ background-position: 0% 50%;
3539
+ }
3540
+
3541
+ 50% {
3542
+ background-position: 100% 50%;
3543
+ }
3544
+
3545
+ 100% {
3546
+ background-position: 0% 50%;
3547
+ }
3548
+ }
3549
+
3550
+ .premium-mask-yes.premium-header-inline .premium-dual-header-first-span,
3551
+ .premium-mask-yes.premium-header-inline .premium-dual-header-first-span {
3552
+ display: inline-block !important;
3553
+ }
3554
+
3555
+ /**************** Premium Fancy Text *******************/
3556
+ /*******************************************************/
3557
+ .premium-suffix-text,
3558
+ .premium-fancy-text,
3559
+ .premium-prefix-text {
3560
+ font-size: 40px;
3561
+ }
3562
+
3563
+ .premium-fancy-text-wrapper:not(.typing) .premium-fancy-text,
3564
+ .premium-fancy-item-hidden {
3565
+ opacity: 0;
3566
+ }
3567
+
3568
+ .premium-fancy-text-wrapper .premium-fancy-list-items {
3569
+ list-style: none;
3570
+ }
3571
+
3572
+ .premium-fancy-text-wrapper .premium-fancy-text-span-align {
3573
+ vertical-align: top;
3574
+ }
3575
+
3576
+ .premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-text-items-wrapper {
3577
+ margin: 0;
3578
+ padding: 0;
3579
+ border: none;
3580
+ position: relative;
3581
+ }
3582
+
3583
+ .premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-list-items {
3584
+ position: absolute;
3585
+ top: 0;
3586
+ left: 0;
3587
+ display: inline-block;
3588
+ }
3589
+
3590
+ .premium-fancy-text-wrapper.zoomout .premium-fancy-item-hidden {
3591
+ -webkit-animation: pa-zoom-out 0.8s;
3592
+ animation: pa-zoom-out 0.8s;
3593
+ }
3594
+
3595
+ .premium-fancy-text-wrapper.zoomout .premium-fancy-item-visible {
3596
+ position: relative !important;
3597
+ -webkit-animation: pa-zoom-in 0.8s;
3598
+ animation: pa-zoom-in 0.8s;
3599
+ }
3600
+
3601
+ .premium-fancy-text-wrapper.zoomout .premium-fancy-text-items-wrapper {
3602
+ -webkit-perspective: 300px;
3603
+ perspective: 300px;
3604
+ }
3605
+
3606
+ .premium-fancy-text-wrapper.rotate .premium-fancy-list-items {
3607
+ -webkit-transform-origin: 50% 100%;
3608
+ -ms-transform-origin: 50% 100%;
3609
+ transform-origin: 50% 100%;
3610
+ }
3611
+
3612
+ .premium-fancy-text-wrapper.rotate .premium-fancy-item-hidden {
3613
+ -webkit-transform: rotateX(180deg);
3614
+ transform: rotateX(180deg);
3615
+ -webkit-animation: pa-rotate-out 1.2s;
3616
+ animation: pa-rotate-out 1.2s;
3617
+ }
3618
+
3619
+ .premium-fancy-text-wrapper.rotate .premium-fancy-item-visible {
3620
+ position: relative !important;
3621
+ -webkit-transform: rotateX(0deg);
3622
+ transform: rotateX(0deg);
3623
+ -webkit-animation: pa-rotate-in 1.2s;
3624
+ animation: pa-rotate-in 1.2s;
3625
+ }
3626
+
3627
+ .premium-fancy-text-wrapper.custom .premium-fancy-item-visible {
3628
+ position: relative !important;
3629
+ }
3630
+
3631
+ .premium-fancy-text-wrapper.auto-fade .premium-fancy-text {
3632
+ display: inline-block;
3633
+ width: 200px;
3634
+ font-weight: 400;
3635
+ }
3636
+
3637
+ .premium-fancy-text-wrapper.auto-fade .premium-fancy-svg-text {
3638
+ position: relative;
3639
+ vertical-align: sub;
3640
+ }
3641
+
3642
+ .premium-fancy-text-wrapper.auto-fade g>text {
3643
+ text-anchor: start;
3644
+ shape-rendering: crispEdges;
3645
+ opacity: 0;
3646
+ font-size: 300px;
3647
+ -webkit-animation-name: pa-auto-fade;
3648
+ animation-name: pa-auto-fade;
3649
+ -moz-animation-name: pa-auto-fade;
3650
+ -webkit-animation-duration: 9s;
3651
+ animation-duration: 9s;
3652
+ -webkit-animation-timing-function: linear;
3653
+ animation-timing-function: linear;
3654
+ -webkit-animation-iteration-count: infinite;
3655
+ animation-iteration-count: infinite;
3656
+ }
3657
+
3658
+ .premium-fancy-text-wrapper.auto-fade g>text:nth-child(1) {
3659
+ -webkit-animation-delay: 0s;
3660
+ animation-delay: 0s;
3661
+ }
3662
+
3663
+ .premium-fancy-text-wrapper.auto-fade g>text:nth-child(2) {
3664
+ -webkit-animation-delay: 3s;
3665
+ animation-delay: 3s;
3666
+ }
3667
+
3668
+ .premium-fancy-text-wrapper.auto-fade g>text:nth-child(3) {
3669
+ -webkit-animation-delay: 6s;
3670
+ animation-delay: 6s;
3671
+ }
3672
+
3673
+ .premium-fancy-text-wrapper.loading .premium-fancy-text {
3674
+ position: relative;
3675
+ }
3676
+
3677
+ .premium-fancy-text-wrapper.loading .premium-fancy-text .premium-loading-bar {
3678
+ position: absolute;
3679
+ width: 100%;
3680
+ height: 3px;
3681
+ bottom: 0;
3682
+ left: 0;
3683
+ animation: pa-loading-bar 2.5s ease-out infinite;
3684
+ -webkit-animation: pa-loading-bar 2.5s ease-out infinite;
3685
+ }
3686
+
3687
+ .premium-fancy-text-wrapper.loading.pause .premium-fancy-text:hover .premium-loading-bar {
3688
+ -webkit-animation-play-state: paused;
3689
+ animation-play-state: paused;
3690
+ }
3691
+
3692
+ @-webkit-keyframes pa-auto-fade {
3693
+ 0% {
3694
+ opacity: 0;
3695
+ }
3696
+
3697
+ 20% {
3698
+ opacity: 1;
3699
+ }
3700
+
3701
+ 35% {
3702
+ opacity: 0;
3703
+ }
3704
+
3705
+ 100% {
3706
+ opacity: 0;
3707
+ }
3708
+ }
3709
+
3710
+ @keyframes pa-auto-fade {
3711
+ 0% {
3712
+ opacity: 0;
3713
+ }
3714
+
3715
+ 20% {
3716
+ opacity: 1;
3717
+ }
3718
+
3719
+ 35% {
3720
+ opacity: 0;
3721
+ }
3722
+
3723
+ 100% {
3724
+ opacity: 0;
3725
+ }
3726
+ }
3727
+
3728
+ @-webkit-keyframes pa-loading-bar {
3729
+ 0% {
3730
+ width: 0;
3731
+ }
3732
+
3733
+ 100% {
3734
+ width: 100;
3735
+ }
3736
+ }
3737
+
3738
+ @keyframes pa-loading-bar {
3739
+ 0% {
3740
+ width: 0;
3741
+ }
3742
+
3743
+ 100% {
3744
+ width: 100;
3745
+ }
3746
+ }
3747
+
3748
+ @-webkit-keyframes pa-zoom-in {
3749
+ 0% {
3750
+ opacity: 0;
3751
+ -webkit-transform: translateZ(100px);
3752
+ transform: translateZ(100px);
3753
+ }
3754
+
3755
+ 100% {
3756
+ opacity: 1;
3757
+ -webkit-transform: translateZ(0);
3758
+ transform: translateZ(0);
3759
+ }
3760
+ }
3761
+
3762
+ @keyframes pa-zoom-in {
3763
+ 0% {
3764
+ opacity: 0;
3765
+ -webkit-transform: translateZ(100px);
3766
+ transform: translateZ(100px);
3767
+ }
3768
+
3769
+ 100% {
3770
+ opacity: 1;
3771
+ -webkit-transform: translateZ(0);
3772
+ transform: translateZ(0);
3773
+ }
3774
+ }
3775
+
3776
+ @-webkit-keyframes pa-zoom-out {
3777
+ 0% {
3778
+ opacity: 1;
3779
+ -webkit-transform: translateZ(0);
3780
+ transform: translateZ(0);
3781
+ }
3782
+
3783
+ 100% {
3784
+ opacity: 0;
3785
+ -webkit-transform: translateZ(-100px);
3786
+ transform: translateZ(-100px);
3787
+ }
3788
+ }
3789
+
3790
+ @keyframes pa-zoom-out {
3791
+ 0% {
3792
+ opacity: 1;
3793
+ -webkit-transform: translateZ(0);
3794
+ transform: translateZ(0);
3795
+ }
3796
+
3797
+ 100% {
3798
+ opacity: 0;
3799
+ -webkit-transform: translateZ(-100px);
3800
+ transform: translateZ(-100px);
3801
+ }
3802
+ }
3803
+
3804
+ @-webkit-keyframes pa-rotate-in {
3805
+ 0% {
3806
+ opacity: 0;
3807
+ -webkit-transform: rotateX(180deg);
3808
+ transform: rotateX(180deg);
3809
+ }
3810
+
3811
+ 35% {
3812
+ opacity: 0;
3813
+ -webkit-transform: rotateX(120deg);
3814
+ transform: rotateX(120deg);
3815
+ }
3816
+
3817
+ 65% {
3818
+ opacity: 0;
3819
+ }
3820
+
3821
+ 100% {
3822
+ opacity: 1;
3823
+ -webkit-transform: rotateX(360deg);
3824
+ transform: rotateX(360deg);
3825
+ }
3826
+ }
3827
+
3828
+ @keyframes pa-rotate-in {
3829
+ 0% {
3830
+ opacity: 0;
3831
+ -webkit-transform: rotateX(180deg);
3832
+ transform: rotateX(180deg);
3833
+ }
3834
+
3835
+ 35% {
3836
+ opacity: 0;
3837
+ -webkit-transform: rotateX(120deg);
3838
+ transform: rotateX(120deg);
3839
+ }
3840
+
3841
+ 65% {
3842
+ opacity: 0;
3843
+ }
3844
+
3845
+ 100% {
3846
+ opacity: 1;
3847
+ -webkit-transform: rotateX(360deg);
3848
+ transform: rotateX(360deg);
3849
+ }
3850
+ }
3851
+
3852
+ @-webkit-keyframes pa-rotate-out {
3853
+ 0% {
3854
+ opacity: 1;
3855
+ -webkit-transform: rotateX(0deg);
3856
+ transform: rotateX(0deg);
3857
+ }
3858
+
3859
+ 35% {
3860
+ opacity: 1;
3861
+ -webkit-transform: rotateX(-40deg);
3862
+ transform: rotateX(-40deg);
3863
+ }
3864
+
3865
+ 65% {
3866
+ opacity: 0;
3867
+ }
3868
+
3869
+ 100% {
3870
+ opacity: 0;
3871
+ -webkit-transform: rotateX(180deg);
3872
+ transform: rotateX(180deg);
3873
+ }
3874
+ }
3875
+
3876
+ @keyframes pa-rotate-out {
3877
+ 0% {
3878
+ opacity: 1;
3879
+ -webkit-transform: rotateX(0deg);
3880
+ transform: rotateX(0deg);
3881
+ }
3882
+
3883
+ 35% {
3884
+ opacity: 1;
3885
+ -webkit-transform: rotateX(-40deg);
3886
+ transform: rotateX(-40deg);
3887
+ }
3888
+
3889
+ 65% {
3890
+ opacity: 0;
3891
+ }
3892
+
3893
+ 100% {
3894
+ opacity: 0;
3895
+ -webkit-transform: rotateX(180deg);
3896
+ transform: rotateX(180deg);
3897
+ }
3898
+ }
3899
+
3900
+ /**************** Premium Bullet List ****************/
3901
+ /*****************************************************/
3902
+ .premium-bullet-list-box {
3903
+ -js-display: flex;
3904
+ display: -webkit-box;
3905
+ display: -webkit-flex;
3906
+ display: -moz-box;
3907
+ display: -ms-flexbox;
3908
+ display: flex;
3909
+ -webkit-flex-wrap: wrap;
3910
+ -ms-flex-wrap: wrap;
3911
+ flex-wrap: wrap;
3912
+ -webkit-box-orient: vertical;
3913
+ -webkit-box-direction: normal;
3914
+ -webkit-flex-direction: column;
3915
+ -moz-box-orient: vertical;
3916
+ -moz-box-direction: normal;
3917
+ -ms-flex-direction: column;
3918
+ flex-direction: column;
3919
+ padding: 0;
3920
+ }
3921
+
3922
+ .premium-bullet-list-box .premium-bullet-list-content-grow-lc {
3923
+ -webkit-transform-origin: left center;
3924
+ -ms-transform-origin: left center;
3925
+ transform-origin: left center;
3926
+ }
3927
+
3928
+ .premium-bullet-list-box .premium-bullet-list-content-grow-rc {
3929
+ -webkit-transform-origin: right center;
3930
+ -ms-transform-origin: right center;
3931
+ transform-origin: right center;
3932
+ }
3933
+
3934
+ .premium-bullet-list-box .premium-bullet-list-content-grow-cc {
3935
+ -webkit-transform-origin: center center;
3936
+ -ms-transform-origin: center center;
3937
+ transform-origin: center center;
3938
+ }
3939
+
3940
+ .premium-bullet-list-content {
3941
+ -js-display: flex;
3942
+ display: -webkit-box;
3943
+ display: -webkit-flex;
3944
+ display: -moz-box;
3945
+ display: -ms-flexbox;
3946
+ display: flex;
3947
+ -webkit-transition: all 0.3s ease-in-out;
3948
+ transition: all 0.3s ease-in-out;
3949
+ width: auto;
3950
+ position: relative;
3951
+ }
3952
+
3953
+ .premium-bullet-list-content .premium-bullet-list-text span,
3954
+ .premium-bullet-list-content .premium-bullet-list-wrapper {
3955
+ display: inline-block;
3956
+ -webkit-align-self: center;
3957
+ -ms-flex-item-align: center;
3958
+ align-self: center;
3959
+ -webkit-transition: all 0.3s ease-in-out;
3960
+ transition: all 0.3s ease-in-out;
3961
+ }
3962
+
3963
+ .premium-bullet-list-content .premium-bullet-list-text span {
3964
+ margin: 0 5px;
3965
+ -webkit-box-flex: 1;
3966
+ -webkit-flex: 1;
3967
+ -moz-box-flex: 1;
3968
+ -ms-flex: 1;
3969
+ flex: 1;
3970
+ }
3971
+
3972
+ .premium-bullet-list-content .premium-bullet-list-icon-text p {
3973
+ font-size: 18px;
3974
+ background-color: #eee;
3975
+ padding: 1px 5px;
3976
+ -webkit-border-radius: 2px;
3977
+ border-radius: 2px;
3978
+ }
3979
+
3980
+ .premium-bullet-list-content .premium-bullet-list-text span,
3981
+ .premium-bullet-list-content .premium-bullet-list-icon-text p,
3982
+ .premium-bullet-list-content .premium-bullet-list-wrapper img,
3983
+ .premium-bullet-list-content .premium-bullet-list-wrapper svg,
3984
+ .premium-bullet-list-content .premium-bullet-list-wrapper i {
3985
+ -webkit-transition: all 0.3s ease-in-out;
3986
+ transition: all 0.3s ease-in-out;
3987
+ }
3988
+
3989
+ .premium-bullet-list-content .premium-bullet-list-wrapper {
3990
+ position: relative;
3991
+ line-height: 0;
3992
+ }
3993
+
3994
+ .premium-bullet-list-content .premium-bullet-list-wrapper img,
3995
+ .premium-bullet-list-content .premium-bullet-list-wrapper svg {
3996
+ width: 30px !important;
3997
+ height: 30px !important;
3998
+ position: relative;
3999
+ z-index: 500;
4000
+ }
4001
+
4002
+ .premium-bullet-list-content .premium-bullet-list-wrapper i,
4003
+ .premium-bullet-list-content .premium-bullet-list-wrapper .premium-bullet-list-icon-text {
4004
+ position: relative;
4005
+ z-index: 500;
4006
+ }
4007
+
4008
+ .premium-bullet-list-content .premium-bullet-list-wrapper i {
4009
+ width: 1.25em;
4010
+ }
4011
+
4012
+ .premium-bullet-list-content .premium-bullet-list-link {
4013
+ position: absolute;
4014
+ top: 0;
4015
+ left: 0;
4016
+ width: 100%;
4017
+ height: 100%;
4018
+ z-index: 1000;
4019
+ }
4020
+
4021
+ .premium-bullet-list-content:not(:last-of-type) .premium-bullet-list-connector {
4022
+ width: 100%;
4023
+ height: 100%;
4024
+ position: absolute;
4025
+ top: 0.5em;
4026
+ z-index: 100;
4027
+ -js-display: flex;
4028
+ display: -webkit-box;
4029
+ display: -webkit-flex;
4030
+ display: -moz-box;
4031
+ display: -ms-flexbox;
4032
+ display: flex;
4033
+ -webkit-box-pack: center;
4034
+ -webkit-justify-content: center;
4035
+ -moz-box-pack: center;
4036
+ -ms-flex-pack: center;
4037
+ justify-content: center;
4038
+ }
4039
+
4040
+ .premium-bullet-list-content:not(:last-of-type) .premium-bullet-list-connector .premium-icon-connector-content:after {
4041
+ content: "";
4042
+ border-right-width: 1px;
4043
+ border-right-style: solid;
4044
+ border-color: #333333;
4045
+ display: block;
4046
+ height: 100%;
4047
+ }
4048
+
4049
+ li.premium-bullet-list-content.premium-bullet-list-content-inline {
4050
+ -webkit-align-self: center;
4051
+ -ms-flex-item-align: center;
4052
+ align-self: center;
4053
+ z-index: 2;
4054
+ }
4055
+
4056
+ li.premium-bullet-list-content.premium-bullet-list-content-inline:not(:first-child) {
4057
+ margin: 0 3px;
4058
+ }
4059
+
4060
+ li.premium-bullet-list-content.premium-bullet-list-content-inline:first-child {
4061
+ margin: 0 3px 0 0;
4062
+ }
4063
+
4064
+ .premium-bullet-list-divider:not(:last-child) {
4065
+ width: 100%;
4066
+ -webkit-box-flex: 0;
4067
+ -webkit-flex: 0 0 100%;
4068
+ -moz-box-flex: 0;
4069
+ -ms-flex: 0 0 100%;
4070
+ flex: 0 0 100%;
4071
+ overflow: hidden;
4072
+ }
4073
+
4074
+ .premium-bullet-list-divider:not(:last-child):after {
4075
+ content: "";
4076
+ display: block;
4077
+ border-top-style: solid;
4078
+ border-top-width: 1px;
4079
+ }
4080
+
4081
+ .premium-bullet-list-divider-inline:not(:last-child) {
4082
+ float: right;
4083
+ display: inline-block;
4084
+ position: relative;
4085
+ height: 100%;
4086
+ overflow: hidden;
4087
+ -webkit-align-self: center;
4088
+ -ms-flex-item-align: center;
4089
+ align-self: center;
4090
+ margin: 0 3px;
4091
+ }
4092
+
4093
+ .premium-bullet-list-divider-inline:not(:last-child):after {
4094
+ content: "";
4095
+ display: block;
4096
+ border-left-width: 1px;
4097
+ height: 33px;
4098
+ border-left-style: solid;
4099
+ }
4100
+
4101
+ .premium-bullet-list-icon-text {
4102
+ line-height: 1.5;
4103
+ }
4104
+
4105
+ .premium-bullet-list-icon-text p,
4106
+ ul.premium-bullet-list-box,
4107
+ li.premium-bullet-list-content {
4108
+ margin: 0;
4109
+ }
4110
+
4111
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper i,
4112
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-text span,
4113
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-icon-text p {
4114
+ color: transparent !important;
4115
+ text-shadow: 0 0 3px #aaa;
4116
+ }
4117
+
4118
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-icon-connector-content,
4119
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper .premium-lottie-animation svg,
4120
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper img,
4121
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-badge {
4122
+ -webkit-filter: blur(3px);
4123
+ filter: blur(3px);
4124
+ }
4125
+
4126
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper i,
4127
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-text span,
4128
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-icon-text p {
4129
+ color: #aaa !important;
4130
+ text-shadow: 0 0px 0 transparent;
4131
+ }
4132
+
4133
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-icon-connector-content,
4134
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper .premium-lottie-animation svg,
4135
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper img,
4136
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-badge {
4137
+ -webkit-filter: none;
4138
+ filter: none;
4139
+ }
4140
+
4141
+ .premium-bullet-list-content .premium-bullet-list-badge {
4142
+ font-size: 11px;
4143
+ top: auto;
4144
+ min-width: -webkit-max-content;
4145
+ min-width: -moz-max-content;
4146
+ min-width: max-content;
4147
+ height: -webkit-fit-content;
4148
+ height: -moz-fit-content;
4149
+ height: fit-content;
4150
+ }
4151
+
4152
+ .premium-bullet-list-content .premium-bullet-list-icon-text p {
4153
+ font-size: 13px;
4154
+ }
4155
+
4156
+ .premium-bullet-list-gradient-effect[data-text] {
4157
+ display: inline-block;
4158
+ position: relative;
4159
+ text-decoration: none;
4160
+ }
4161
+
4162
+ .premium-bullet-list-gradient-effect[data-text]::before {
4163
+ content: attr(data-text);
4164
+ position: absolute;
4165
+ z-index: 1;
4166
+ overflow: hidden;
4167
+ -webkit-clip-path: polygon(0 0, 1px 0, 1px 100%, 0 100%);
4168
+ clip-path: polygon(0 0, 1px 0, 1px 100%, 0 100%);
4169
+ -webkit-background-clip: text;
4170
+ background-clip: text;
4171
+ -webkit-text-fill-color: transparent;
4172
+ -webkit-transition: all 0.4s ease;
4173
+ transition: all 0.4s ease;
4174
+ }
4175
+
4176
+ .premium-bullet-list-content:hover .premium-bullet-list-gradient-effect[data-text]::before,
4177
+ .premium-bullet-list-content:focus .premium-bullet-list-gradient-effect[data-text]::before {
4178
+ -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
4179
+ clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
4180
+ }
4181
+
4182
+ ul[data-list-animation*="animated-"] .premium-bullet-list-divider,
4183
+ ul[data-list-animation*="animated-"] .premium-bullet-list-content,
4184
+ ul[data-list-animation*="animated-"] .premium-bullet-list-divider-inline {
4185
+ opacity: 0;
4186
+ }
4187
+
4188
+ .premium-bullet-list-content-grow-effect:hover {
4189
+ -webkit-transform: scale(1.07);
4190
+ -ms-transform: scale(1.07);
4191
+ transform: scale(1.07);
4192
+ }
4193
+
4194
+ @-webkit-keyframes spin {
4195
+ 100% {
4196
+ -webkit-transform: rotate(360deg);
4197
+ transform: rotate(360deg);
4198
+ }
4199
+ }
4200
+
4201
+ @keyframes spin {
4202
+ 100% {
4203
+ -webkit-transform: rotate(360deg);
4204
+ transform: rotate(360deg);
4205
+ }
4206
+ }
4207
+
4208
+ /**************** Premium Image Button ***********/
4209
+ /*************************************************/
4210
+ .premium-image-button {
4211
+ -js-display: inline-flex;
4212
+ display: -webkit-inline-box;
4213
+ display: -webkit-inline-flex;
4214
+ display: -moz-inline-box;
4215
+ display: -ms-inline-flexbox;
4216
+ display: inline-flex;
4217
+ position: relative;
4218
+ overflow: hidden;
4219
+ background-color: #eee;
4220
+ cursor: pointer;
4221
+ -webkit-transition: all 0.2s ease-in-out !important;
4222
+ transition: all 0.2s ease-in-out !important;
4223
+ }
4224
+
4225
+ .premium-image-button .premium-button-style6-bg,
4226
+ .premium-image-button.premium-button-style6:before,
4227
+ .premium-image-button:not(.premium-image-button-style6):hover {
4228
+ background-color: #54595f;
4229
+ }
4230
+
4231
+ /*Default background for slide styles*/
4232
+ .premium-image-button-style4-icon-wrapper,
4233
+ .premium-image-button-style1:before {
4234
+ background-color: #54595f;
4235
+ }
4236
+
4237
+ .premium-image-button-text-icon-wrapper {
4238
+ width: 100%;
4239
+ -js-display: flex;
4240
+ display: -webkit-box;
4241
+ display: -webkit-flex;
4242
+ display: -moz-box;
4243
+ display: -ms-flexbox;
4244
+ display: flex;
4245
+ -webkit-box-pack: center;
4246
+ -webkit-justify-content: center;
4247
+ -moz-box-pack: center;
4248
+ -ms-flex-pack: center;
4249
+ justify-content: center;
4250
+ -webkit-box-align: center;
4251
+ -webkit-align-items: center;
4252
+ -moz-box-align: center;
4253
+ -ms-flex-align: center;
4254
+ align-items: center;
4255
+ position: relative;
4256
+ z-index: 3;
4257
+ -webkit-transition: all 0.2s ease-in-out;
4258
+ transition: all 0.2s ease-in-out;
4259
+ }
4260
+
4261
+ .premium-image-button-text-icon-wrapper span,
4262
+ .premium-image-button-text-icon-wrapper i,
4263
+ .premium-image-button-text-icon-wrapper svg {
4264
+ -webkit-transition: all 0.2s ease-in-out;
4265
+ transition: all 0.2s ease-in-out;
4266
+ }
4267
+
4268
+ .premium-image-button-style1:before {
4269
+ position: absolute;
4270
+ content: "";
4271
+ -webkit-transition: all 0.2s ease-in-out;
4272
+ transition: all 0.2s ease-in-out;
4273
+ }
4274
+
4275
+ .premium-image-button-style1-bottom:before {
4276
+ width: 100%;
4277
+ height: 0;
4278
+ top: 0;
4279
+ left: 0;
4280
+ }
4281
+
4282
+ .premium-image-button-style1-top:before {
4283
+ width: 100%;
4284
+ height: 0;
4285
+ bottom: 0;
4286
+ left: 0;
4287
+ }
4288
+
4289
+ .premium-image-button-style1-right:before {
4290
+ width: 0;
4291
+ height: 100%;
4292
+ bottom: 0;
4293
+ left: 0;
4294
+ }
4295
+
4296
+ .premium-image-button-style1-left:before {
4297
+ width: 0;
4298
+ height: 100%;
4299
+ top: 0;
4300
+ right: 0;
4301
+ }
4302
+
4303
+ .premium-image-button-style1-bottom:hover:before,
4304
+ .premium-image-button-style1-top:hover:before {
4305
+ height: 100%;
4306
+ }
4307
+
4308
+ .premium-image-button-style1-right:hover:before,
4309
+ .premium-image-button-style1-left:hover:before {
4310
+ width: 100%;
4311
+ }
4312
+
4313
+ .premium-image-button-style3 {
4314
+ z-index: 10;
4315
+ }
4316
+
4317
+ .premium-image-button-style3:before {
4318
+ position: absolute;
4319
+ top: 0px;
4320
+ left: 0px;
4321
+ width: 100%;
4322
+ height: 100%;
4323
+ content: "";
4324
+ z-index: 1;
4325
+ background: rgba(255, 255, 255, 0.2);
4326
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
4327
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
4328
+ -webkit-transition: all 0.8s ease-out;
4329
+ transition: all 0.8s ease-out;
4330
+ }
4331
+
4332
+ .premium-image-button-diagonal-right:before {
4333
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
4334
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
4335
+ }
4336
+
4337
+ .premium-image-button-diagonal-right:hover:before {
4338
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
4339
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
4340
+ }
4341
+
4342
+ .premium-image-button-diagonal-left:before {
4343
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
4344
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
4345
+ }
4346
+
4347
+ .premium-image-button-diagonal-left:hover:before {
4348
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
4349
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
4350
+ }
4351
+
4352
+ .premium-image-button-diagonal-bottom:before {
4353
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
4354
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
4355
+ }
4356
+
4357
+ .premium-image-button-diagonal-bottom:hover:before {
4358
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
4359
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
4360
+ }
4361
+
4362
+ .premium-image-button-diagonal-top:before {
4363
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
4364
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
4365
+ }
4366
+
4367
+ .premium-image-button-diagonal-top:hover:before {
4368
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
4369
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
4370
+ }
4371
+
4372
+ .premium-image-button-style4-icon-wrapper {
4373
+ position: absolute;
4374
+ z-index: 2;
4375
+ width: 100%;
4376
+ text-align: center;
4377
+ -js-display: flex;
4378
+ display: -webkit-box;
4379
+ display: -webkit-flex;
4380
+ display: -moz-box;
4381
+ display: -ms-flexbox;
4382
+ display: flex;
4383
+ -webkit-box-align: center;
4384
+ -webkit-align-items: center;
4385
+ -moz-box-align: center;
4386
+ -ms-flex-align: center;
4387
+ align-items: center;
4388
+ -webkit-box-pack: center;
4389
+ -webkit-justify-content: center;
4390
+ -moz-box-pack: center;
4391
+ -ms-flex-pack: center;
4392
+ justify-content: center;
4393
+ height: 100%;
4394
+ opacity: 0;
4395
+ -webkit-transition: all 0.3s ease-in-out;
4396
+ transition: all 0.3s ease-in-out;
4397
+ }
4398
+
4399
+ .premium-image-button-style4-icon-wrapper.top {
4400
+ bottom: -100%;
4401
+ left: 0;
4402
+ }
4403
+
4404
+ .premium-image-button-style4-icon-wrapper.bottom {
4405
+ top: -100%;
4406
+ left: 0;
4407
+ }
4408
+
4409
+ .premium-image-button-style4-icon-wrapper.left {
4410
+ top: 0;
4411
+ left: -100%;
4412
+ }
4413
+
4414
+ .premium-image-button-style4-icon-wrapper.right {
4415
+ top: 0;
4416
+ right: -100%;
4417
+ }
4418
+
4419
+ .premium-image-button-style4-bottom:hover .premium-image-button-style4-icon-wrapper {
4420
+ top: 0;
4421
+ opacity: 1;
4422
+ }
4423
+
4424
+ .premium-image-button-style4-bottom:hover .premium-image-button-text-icon-wrapper {
4425
+ -webkit-transform: translateY(100%);
4426
+ -ms-transform: translateY(100%);
4427
+ transform: translateY(100%);
4428
+ opacity: 0;
4429
+ }
4430
+
4431
+ .premium-image-button-style4-top:hover .premium-image-button-style4-icon-wrapper {
4432
+ bottom: 0;
4433
+ opacity: 1;
4434
+ }
4435
+
4436
+ .premium-image-button-style4-top:hover .premium-image-button-text-icon-wrapper {
4437
+ -webkit-transform: translateY(-100%);
4438
+ -ms-transform: translateY(-100%);
4439
+ transform: translateY(-100%);
4440
+ opacity: 0;
4441
+ }
4442
+
4443
+ .premium-image-button-style4-left:hover .premium-image-button-style4-icon-wrapper {
4444
+ left: 0;
4445
+ opacity: 1;
4446
+ }
4447
+
4448
+ .premium-image-button-style4-left:hover .premium-image-button-text-icon-wrapper {
4449
+ -webkit-transform: translateX(100%);
4450
+ -ms-transform: translateX(100%);
4451
+ transform: translateX(100%);
4452
+ opacity: 0;
4453
+ }
4454
+
4455
+ .premium-image-button-style4-right:hover .premium-image-button-style4-icon-wrapper {
4456
+ right: 0;
4457
+ opacity: 1;
4458
+ }
4459
+
4460
+ .premium-image-button-style4-right:hover .premium-image-button-text-icon-wrapper {
4461
+ -webkit-transform: translateX(-100%);
4462
+ -ms-transform: translateX(-100%);
4463
+ transform: translateX(-100%);
4464
+ opacity: 0;
4465
+ }
4466
+
4467
+ .premium-image-button-style5:before {
4468
+ position: absolute;
4469
+ content: "";
4470
+ top: 0;
4471
+ left: 0;
4472
+ width: 100%;
4473
+ height: 100%;
4474
+ opacity: 0;
4475
+ -webkit-transition: all 1s ease-in-out;
4476
+ transition: all 1s ease-in-out;
4477
+ background: rgba(255, 255, 255, 0.2);
4478
+ -webkit-animation-name: premium-overlap-effect-done;
4479
+ animation-name: premium-overlap-effect-done;
4480
+ -webkit-animation-duration: 1s;
4481
+ animation-duration: 1s;
4482
+ }
4483
+
4484
+ .premium-image-button-overlap-effect-vertical:before {
4485
+ -webkit-animation-name: premium-overlap-ver-effect-done;
4486
+ animation-name: premium-overlap-ver-effect-done;
4487
+ }
4488
+
4489
+ .premium-image-button-overlap-effect-horizontal:hover:before {
4490
+ -webkit-animation-name: premium-overlap-effect;
4491
+ animation-name: premium-overlap-effect;
4492
+ }
4493
+
4494
+ .premium-image-button-overlap-effect-vertical:hover:before {
4495
+ -webkit-animation-name: premium-overlap-ver-effect;
4496
+ animation-name: premium-overlap-ver-effect;
4497
+ }
4498
+
4499
+ @-webkit-keyframes premium-overlap-effect {
4500
+ 0% {
4501
+ opacity: 0;
4502
+ -webkit-transform: rotateY(0deg);
4503
+ transform: rotateY(0deg);
4504
+ }
4505
+
4506
+ 50% {
4507
+ opacity: 1;
4508
+ -webkit-transform: rotateY(180deg);
4509
+ transform: rotateY(180deg);
4510
+ }
4511
+
4512
+ 100% {
4513
+ opacity: 0;
4514
+ -webkit-transform: rotateY(360deg);
4515
+ transform: rotateY(360deg);
4516
+ }
4517
+ }
4518
+
4519
+ @keyframes premium-overlap-effect {
4520
+ 0% {
4521
+ opacity: 0;
4522
+ -webkit-transform: rotateY(0deg);
4523
+ transform: rotateY(0deg);
4524
+ }
4525
+
4526
+ 50% {
4527
+ opacity: 1;
4528
+ -webkit-transform: rotateY(180deg);
4529
+ transform: rotateY(180deg);
4530
+ }
4531
+
4532
+ 100% {
4533
+ opacity: 0;
4534
+ -webkit-transform: rotateY(360deg);
4535
+ transform: rotateY(360deg);
4536
+ }
4537
+ }
4538
+
4539
+ @-webkit-keyframes premium-overlap-effect-done {
4540
+ 0% {
4541
+ opacity: 0;
4542
+ -webkit-transform: rotateY(0deg);
4543
+ transform: rotateY(0deg);
4544
+ }
4545
+
4546
+ 50% {
4547
+ opacity: 1;
4548
+ -webkit-transform: rotateY(180deg);
4549
+ transform: rotateY(180deg);
4550
+ }
4551
+
4552
+ 100% {
4553
+ opacity: 0;
4554
+ -webkit-transform: rotateY(360deg);
4555
+ transform: rotateY(360deg);
4556
+ }
4557
+ }
4558
+
4559
+ @keyframes premium-overlap-effect-done {
4560
+ 0% {
4561
+ opacity: 0;
4562
+ -webkit-transform: rotateY(0deg);
4563
+ transform: rotateY(0deg);
4564
+ }
4565
+
4566
+ 50% {
4567
+ opacity: 1;
4568
+ -webkit-transform: rotateY(180deg);
4569
+ transform: rotateY(180deg);
4570
+ }
4571
+
4572
+ 100% {
4573
+ opacity: 0;
4574
+ -webkit-transform: rotateY(360deg);
4575
+ transform: rotateY(360deg);
4576
+ }
4577
+ }
4578
+
4579
+ @-webkit-keyframes premium-overlap-ver-effect {
4580
+ 0% {
4581
+ opacity: 0;
4582
+ -webkit-transform: rotateX(0deg);
4583
+ transform: rotateX(0deg);
4584
+ }
4585
+
4586
+ 50% {
4587
+ opacity: 1;
4588
+ -webkit-transform: rotateX(180deg);
4589
+ transform: rotateX(180deg);
4590
+ }
4591
+
4592
+ 100% {
4593
+ opacity: 0;
4594
+ -webkit-transform: rotateX(360deg);
4595
+ transform: rotateX(360deg);
4596
+ }
4597
+ }
4598
+
4599
+ @keyframes premium-overlap-ver-effect {
4600
+ 0% {
4601
+ opacity: 0;
4602
+ -webkit-transform: rotateX(0deg);
4603
+ transform: rotateX(0deg);
4604
+ }
4605
+
4606
+ 50% {
4607
+ opacity: 1;
4608
+ -webkit-transform: rotateX(180deg);
4609
+ transform: rotateX(180deg);
4610
+ }
4611
+
4612
+ 100% {
4613
+ opacity: 0;
4614
+ -webkit-transform: rotateX(360deg);
4615
+ transform: rotateX(360deg);
4616
+ }
4617
+ }
4618
+
4619
+ @-webkit-keyframes premium-overlap-ver-effect-done {
4620
+ 0% {
4621
+ opacity: 0;
4622
+ -webkit-transform: rotateX(0deg);
4623
+ transform: rotateX(0deg);
4624
+ }
4625
+
4626
+ 50% {
4627
+ opacity: 1;
4628
+ -webkit-transform: rotateX(180deg);
4629
+ transform: rotateX(180deg);
4630
+ }
4631
+
4632
+ 100% {
4633
+ opacity: 0;
4634
+ -webkit-transform: rotateX(360deg);
4635
+ transform: rotateX(360deg);
4636
+ }
4637
+ }
4638
+
4639
+ @keyframes premium-overlap-ver-effect-done {
4640
+ 0% {
4641
+ opacity: 0;
4642
+ -webkit-transform: rotateX(0deg);
4643
+ transform: rotateX(0deg);
4644
+ }
4645
+
4646
+ 50% {
4647
+ opacity: 1;
4648
+ -webkit-transform: rotateX(180deg);
4649
+ transform: rotateX(180deg);
4650
+ }
4651
+
4652
+ 100% {
4653
+ opacity: 0;
4654
+ -webkit-transform: rotateX(360deg);
4655
+ transform: rotateX(360deg);
4656
+ }
4657
+ }
4658
+
4659
+ /************ Premium Image Scroll ************/
4660
+ /**********************************************/
4661
+ @font-face {
4662
+ font-family: "pa-elements";
4663
+ src: url("../../plugins/premium-addons-for-elementor/assets/editor/fonts/pa-elements.eot?vcwy2s");
4664
+ src: url("../../plugins/premium-addons-for-elementor/assets/editor/fonts/pa-elements.eot?vcwy2s#iefix") format("embedded-opentype"), url("../../plugins/premium-addons-for-elementor/assets/editor/fonts/pa-elements.ttf?vcwy2s") format("truetype"), url("../../plugins/premium-addons-for-elementor/assets/editor/fonts/pa-elements.woff?vcwy2s") format("woff"), url("../../plugins/premium-addons-for-elementor/assets/editor/fonts/pa-elements.svg?vcwy2s#pa-elements") format("svg");
4665
+ font-weight: normal;
4666
+ font-style: normal;
4667
+ }
4668
+
4669
+ .premium-image-scroll-section,
4670
+ .premium-image-scroll-container {
4671
+ -webkit-transition: all 0.3s ease-in-out;
4672
+ transition: all 0.3s ease-in-out;
4673
+ }
4674
+
4675
+ .premium-image-scroll-section {
4676
+ position: relative;
4677
+ overflow: hidden;
4678
+ width: 100%;
4679
+ -webkit-mask-image: -webkit-radial-gradient(white, black);
4680
+ }
4681
+
4682
+ .premium-image-scroll-container {
4683
+ width: 100%;
4684
+ }
4685
+
4686
+ .premium-image-scroll-container .premium-image-scroll-mask-media {
4687
+ -webkit-mask-repeat: no-repeat;
4688
+ mask-repeat: no-repeat;
4689
+ -webkit-mask-position: center;
4690
+ mask-position: center;
4691
+ }
4692
+
4693
+ .premium-container-scroll {
4694
+ overflow: auto;
4695
+ }
4696
+
4697
+ .premium-image-scroll-container .premium-image-scroll-horizontal {
4698
+ position: relative;
4699
+ width: 100%;
4700
+ height: 100%;
4701
+ }
4702
+
4703
+ .premium-image-scroll-container .premium-image-scroll-horizontal img {
4704
+ max-width: none;
4705
+ height: 100%;
4706
+ }
4707
+
4708
+ .premium-image-scroll-container .premium-image-scroll-vertical img {
4709
+ width: 100%;
4710
+ max-width: 100%;
4711
+ height: auto;
4712
+ }
4713
+
4714
+ .premium-image-scroll-ver {
4715
+ position: relative;
4716
+ }
4717
+
4718
+ .premium-image-scroll-container .premium-image-scroll-overlay {
4719
+ background: rgba(2, 2, 2, 0.3);
4720
+ }
4721
+
4722
+ .premium-image-scroll-container .premium-image-scroll-link,
4723
+ .premium-image-scroll-container .premium-image-scroll-overlay {
4724
+ position: absolute;
4725
+ top: 0;
4726
+ bottom: 0;
4727
+ left: 0;
4728
+ right: 0;
4729
+ z-index: 4;
4730
+ }
4731
+
4732
+ .premium-image-scroll-content {
4733
+ display: inline-block;
4734
+ position: absolute;
4735
+ height: auto;
4736
+ top: 50%;
4737
+ left: 50%;
4738
+ text-align: center;
4739
+ z-index: 5;
4740
+ -webkit-transform: translate(-50%, -50%);
4741
+ -ms-transform: translate(-50%, -50%);
4742
+ transform: translate(-50%, -50%);
4743
+ }
4744
+
4745
+ .premium-container-scroll-instant .premium-image-scroll-image {
4746
+ -webkit-transition: all 0s ease-in-out !important;
4747
+ transition: all 0s ease-in-out !important;
4748
+ }
4749
+
4750
+ .premium-image-scroll-container img {
4751
+ -webkit-transition: -webkit-transform 3s ease-in-out;
4752
+ transition: -webkit-transform 3s ease-in-out;
4753
+ transition: transform 3s ease-in-out;
4754
+ transition: transform 3s ease-in-out, -webkit-transform 3s ease-in-out;
4755
+ }
4756
+
4757
+ .premium-image-scroll-container .premium-image-scroll-overlay,
4758
+ .premium-image-scroll-container .premium-image-scroll-content {
4759
+ -webkit-transition: all 0.3s ease-in-out;
4760
+ transition: all 0.3s ease-in-out;
4761
+ opacity: 1;
4762
+ }
4763
+
4764
+ .premium-image-scroll-container:hover .premium-image-scroll-overlay {
4765
+ opacity: 0;
4766
+ }
4767
+
4768
+ .premium-image-scroll-container:hover .premium-image-scroll-content {
4769
+ opacity: 0;
4770
+ visibility: hidden;
4771
+ }
4772
+
4773
+ .premium-image-scroll-content .premium-image-scroll-icon {
4774
+ display: inline-block;
4775
+ font-family: "pa-elements" !important;
4776
+ speak: none;
4777
+ font-style: normal;
4778
+ font-weight: normal;
4779
+ font-variant: normal;
4780
+ text-transform: none;
4781
+ line-height: 1;
4782
+ -webkit-font-smoothing: antialiased;
4783
+ -moz-osx-font-smoothing: grayscale;
4784
+ -webkit-animation-duration: 0.5s;
4785
+ animation-duration: 0.5s;
4786
+ -webkit-animation-iteration-count: infinite;
4787
+ animation-iteration-count: infinite;
4788
+ -webkit-animation-direction: alternate;
4789
+ animation-direction: alternate;
4790
+ -webkit-animation-timing-function: ease-in-out;
4791
+ animation-timing-function: ease-in-out;
4792
+ }
4793
+
4794
+ .pa-horizontal-mouse-scroll:before {
4795
+ content: "\e901";
4796
+ }
4797
+
4798
+ .pa-vertical-mouse-scroll:before {
4799
+ content: "\e93c";
4800
+ }
4801
+
4802
+ .pa-horizontal-mouse-scroll {
4803
+ -webkit-animation-name: pa-scroll-horizontal;
4804
+ animation-name: pa-scroll-horizontal;
4805
+ }
4806
+
4807
+ .pa-vertical-mouse-scroll {
4808
+ -webkit-animation-name: pa-scroll-vertical;
4809
+ animation-name: pa-scroll-vertical;
4810
+ }
4811
+
4812
+ @-webkit-keyframes pa-scroll-vertical {
4813
+ 0% {
4814
+ -webkit-transform: translateY(0px);
4815
+ transform: translateY(0px);
4816
+ }
4817
+
4818
+ 100% {
4819
+ -webkit-transform: translateY(5px);
4820
+ transform: translateY(5px);
4821
+ }
4822
+ }
4823
+
4824
+ @keyframes pa-scroll-vertical {
4825
+ 0% {
4826
+ -webkit-transform: translateY(0px);
4827
+ transform: translateY(0px);
4828
+ }
4829
+
4830
+ 100% {
4831
+ -webkit-transform: translateY(5px);
4832
+ transform: translateY(5px);
4833
+ }
4834
+ }
4835
+
4836
+ @-webkit-keyframes pa-scroll-horizontal {
4837
+ 0% {
4838
+ -webkit-transform: translateX(0px);
4839
+ transform: translateX(0px);
4840
+ }
4841
+
4842
+ 100% {
4843
+ -webkit-transform: translateX(5px);
4844
+ transform: translateX(5px);
4845
+ }
4846
+ }
4847
+
4848
+ @keyframes pa-scroll-horizontal {
4849
+ 0% {
4850
+ -webkit-transform: translateX(0px);
4851
+ transform: translateX(0px);
4852
+ }
4853
+
4854
+ 100% {
4855
+ -webkit-transform: translateX(5px);
4856
+ transform: translateX(5px);
4857
+ }
4858
+ }
4859
+
4860
+ /**************** Premium Image Separator ****************/
4861
+ /*********************************************************/
4862
+ .premium-image-separator-container {
4863
+ position: absolute;
4864
+ width: 100%;
4865
+ z-index: 2;
4866
+ top: auto;
4867
+ -webkit-transition: all 0.3s ease-in-out;
4868
+ transition: all 0.3s ease-in-out;
4869
+ }
4870
+
4871
+ .premium-image-separator-container svg,
4872
+ .premium-image-separator-container img {
4873
+ display: inline-block !important;
4874
+ -webkit-mask-repeat: no-repeat;
4875
+ mask-repeat: no-repeat;
4876
+ -webkit-mask-position: center;
4877
+ mask-position: center;
4878
+ }
4879
+
4880
+ .premium-image-separator-container .premium-image-separator-link {
4881
+ position: absolute;
4882
+ z-index: 9999;
4883
+ top: 0;
4884
+ left: 0;
4885
+ width: 100%;
4886
+ height: 100%;
4887
+ text-decoration: none;
4888
+ }
4889
+
4890
+ .premium-image-separator-container .premium-image-separator-link:hover,
4891
+ .premium-image-separator-container .premium-image-separator-link:visited,
4892
+ .premium-image-separator-container .premium-image-separator-link:focus,
4893
+ .premium-image-separator-container .premium-image-separator-link:active {
4894
+ -webkit-box-shadow: none !important;
4895
+ box-shadow: none !important;
4896
+ outline: none !important;
4897
+ border: none !important;
4898
+ text-decoration: none !important;
4899
+ }
4900
+
4901
+ .premium-image-separator-container i,
4902
+ .premium-image-separator-container>svg {
4903
+ padding: 20px;
4904
+ -webkit-transition: all 0.3s ease-in-out;
4905
+ transition: all 0.3s ease-in-out;
4906
+ }
4907
+
4908
+ /******** Premium Media Grid ********/
4909
+ /************************************/
4910
+ .premium-img-gallery-filter,
4911
+ .premium-blog-filter {
4912
+ -js-display: flex;
4913
+ display: -webkit-box;
4914
+ display: -webkit-flex;
4915
+ display: -moz-box;
4916
+ display: -ms-flexbox;
4917
+ display: flex;
4918
+ -webkit-box-align: center;
4919
+ -webkit-align-items: center;
4920
+ -moz-box-align: center;
4921
+ -ms-flex-align: center;
4922
+ align-items: center;
4923
+ -webkit-box-pack: center;
4924
+ -webkit-justify-content: center;
4925
+ -moz-box-pack: center;
4926
+ -ms-flex-pack: center;
4927
+ justify-content: center;
4928
+ }
4929
+
4930
+ .premium-img-gallery {
4931
+ clear: both;
4932
+ overflow: hidden;
4933
+ }
4934
+
4935
+ .premium-gallery-container .premium-gallery-item {
4936
+ padding: 10px;
4937
+ float: left;
4938
+ }
4939
+
4940
+ .premium-gallery-container .grid-sizer {
4941
+ width: 33.33%;
4942
+ }
4943
+
4944
+ .premium-gallery-container .pa-gallery-item {
4945
+ padding: 10px;
4946
+ }
4947
+
4948
+ .premium-img-gallery-filter .premium-gallery-cats-container li a.category,
4949
+ .premium-blog-filter .premium-blog-filters-container li a.category {
4950
+ outline: none;
4951
+ text-decoration: none;
4952
+ -webkit-border-radius: 75px;
4953
+ border-radius: 75px;
4954
+ margin: 15px 5px 20px;
4955
+ padding: 7px 20px;
4956
+ -webkit-transition: all 0.3s ease-in-out;
4957
+ transition: all 0.3s ease-in-out;
4958
+ }
4959
+
4960
+ .pa-gallery-img {
4961
+ position: relative;
4962
+ }
4963
+
4964
+ .pa-gallery-img .pa-gallery-whole-link {
4965
+ position: absolute;
4966
+ top: 0;
4967
+ left: 0;
4968
+ width: 100%;
4969
+ height: 100%;
4970
+ z-index: 2;
4971
+ }
4972
+
4973
+ .pa-gallery-img .pa-gallery-whole-link span {
4974
+ display: none;
4975
+ }
4976
+
4977
+ .pa-gallery-img.style2 .pa-gallery-whole-link,
4978
+ .pa-gallery-img.style3 .pa-gallery-whole-link {
4979
+ z-index: 99;
4980
+ }
4981
+
4982
+ .pa-gallery-img-container {
4983
+ overflow: hidden;
4984
+ -webkit-backface-visibility: hidden;
4985
+ backface-visibility: hidden;
4986
+ -webkit-transform: translate3d(0, 0, 0);
4987
+ transform: translate3d(0, 0, 0);
4988
+ }
4989
+
4990
+ .pa-gallery-img-container img {
4991
+ display: block;
4992
+ width: 100%;
4993
+ -webkit-transition: all 0.3s ease-in-out;
4994
+ transition: all 0.3s ease-in-out;
4995
+ }
4996
+
4997
+ .premium-img-gallery.gray img {
4998
+ -webkit-filter: grayscale(100%);
4999
+ filter: grayscale(100%);
5000
+ }
5001
+
5002
+ .premium-img-gallery.zoomout img,
5003
+ .premium-img-gallery.scale img {
5004
+ -webkit-transform: scale(1.2);
5005
+ -ms-transform: scale(1.2);
5006
+ transform: scale(1.2);
5007
+ }
5008
+
5009
+ .premium-img-gallery.sepia img {
5010
+ -webkit-filter: sepia(30%);
5011
+ filter: sepia(30%);
5012
+ }
5013
+
5014
+ .premium-img-gallery.bright img {
5015
+ -webkit-filter: brightness(1);
5016
+ filter: brightness(1);
5017
+ }
5018
+
5019
+ .premium-img-gallery.trans img {
5020
+ -webkit-transform: translateX(-15px) scale(1.1);
5021
+ -ms-transform: translateX(-15px) scale(1.1);
5022
+ transform: translateX(-15px) scale(1.1);
5023
+ }
5024
+
5025
+ .pa-gallery-img .pa-gallery-magnific-image,
5026
+ .pa-gallery-img .pa-gallery-img-link {
5027
+ outline: none;
5028
+ }
5029
+
5030
+ .pa-gallery-img .pa-gallery-magnific-image i,
5031
+ .pa-gallery-img .pa-gallery-magnific-image svg,
5032
+ .pa-gallery-img .pa-gallery-img-link i,
5033
+ .pa-gallery-img .pa-gallery-img-link svg {
5034
+ -webkit-transition: all 0.3s ease-in-out;
5035
+ transition: all 0.3s ease-in-out;
5036
+ }
5037
+
5038
+ .pa-gallery-img .pa-gallery-magnific-image span,
5039
+ .pa-gallery-img .pa-gallery-img-link span {
5040
+ line-height: 1;
5041
+ display: inline-block;
5042
+ opacity: 0;
5043
+ margin: 0 5px;
5044
+ padding: 15px;
5045
+ -webkit-border-radius: 50%;
5046
+ border-radius: 50%;
5047
+ }
5048
+
5049
+ .pa-gallery-img.style2 .pa-gallery-magnific-image span,
5050
+ .pa-gallery-img.style2 .pa-gallery-img-link span {
5051
+ margin: 0 5px 20px;
5052
+ }
5053
+
5054
+ .pa-gallery-img:hover .pa-gallery-magnific-image span {
5055
+ -webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
5056
+ transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
5057
+ }
5058
+
5059
+ .pa-gallery-img:hover .pa-gallery-img-link span {
5060
+ -webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
5061
+ transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
5062
+ }
5063
+
5064
+ .pa-gallery-img:hover .pa-gallery-magnific-image span,
5065
+ .pa-gallery-img:hover .pa-gallery-img-link span {
5066
+ opacity: 1;
5067
+ }
5068
+
5069
+ .premium-gallery-icon-show a.pa-gallery-video-icon span {
5070
+ opacity: 1;
5071
+ }
5072
+
5073
+ .premium-img-gallery-filter ul.premium-gallery-cats-container,
5074
+ .premium-blog-filter ul.premium-blog-filters-container {
5075
+ text-align: center;
5076
+ margin: 0;
5077
+ padding: 0;
5078
+ }
5079
+
5080
+ .premium-img-gallery-filter .premium-gallery-cats-container li,
5081
+ .premium-blog-filter .premium-blog-filters-container li {
5082
+ list-style: none;
5083
+ -js-display: inline-flex;
5084
+ display: -webkit-inline-box;
5085
+ display: -webkit-inline-flex;
5086
+ display: -moz-inline-box;
5087
+ display: -ms-inline-flexbox;
5088
+ display: inline-flex;
5089
+ }
5090
+
5091
+ .premium-img-gallery.zoomin .pa-gallery-img:hover img {
5092
+ -webkit-transform: scale(1.1);
5093
+ -ms-transform: scale(1.1);
5094
+ transform: scale(1.1);
5095
+ }
5096
+
5097
+ .premium-img-gallery.zoomout .pa-gallery-img:hover img {
5098
+ -webkit-transform: scale(1);
5099
+ -ms-transform: scale(1);
5100
+ transform: scale(1);
5101
+ }
5102
+
5103
+ .premium-img-gallery.scale .pa-gallery-img:hover img {
5104
+ -webkit-transform: scale(1.3) rotate(5deg);
5105
+ -ms-transform: scale(1.3) rotate(5deg);
5106
+ transform: scale(1.3) rotate(5deg);
5107
+ }
5108
+
5109
+ .premium-img-gallery.gray .pa-gallery-img:hover img {
5110
+ -webkit-filter: grayscale(0%);
5111
+ filter: grayscale(0%);
5112
+ }
5113
+
5114
+ .premium-img-gallery.blur .pa-gallery-img:hover img {
5115
+ -webkit-filter: blur(3px);
5116
+ filter: blur(3px);
5117
+ }
5118
+
5119
+ .premium-img-gallery.sepia .pa-gallery-img:hover img {
5120
+ -webkit-filter: sepia(0%);
5121
+ filter: sepia(0%);
5122
+ }
5123
+
5124
+ .premium-img-gallery.trans .pa-gallery-img:hover img {
5125
+ -webkit-transform: translateX(0px) scale(1.1);
5126
+ -ms-transform: translateX(0px) scale(1.1);
5127
+ transform: translateX(0px) scale(1.1);
5128
+ }
5129
+
5130
+ .premium-img-gallery.bright .pa-gallery-img:hover img {
5131
+ -webkit-filter: brightness(1.2);
5132
+ filter: brightness(1.2);
5133
+ }
5134
+
5135
+ .pa-gallery-img .premium-gallery-caption {
5136
+ padding: 10px;
5137
+ }
5138
+
5139
+ .pa-gallery-img .premium-gallery-caption .premium-gallery-img-name {
5140
+ margin-bottom: 0;
5141
+ }
5142
+
5143
+ .pa-gallery-img.style1 {
5144
+ overflow: hidden;
5145
+ }
5146
+
5147
+ .pa-gallery-img:not(.style2) .pa-gallery-icons-wrapper {
5148
+ position: absolute;
5149
+ top: 0;
5150
+ left: 0;
5151
+ width: 100%;
5152
+ height: 100%;
5153
+ -webkit-transition: all 0.3s ease-in-out;
5154
+ transition: all 0.3s ease-in-out;
5155
+ }
5156
+
5157
+ .pa-gallery-img:not(.style2) .pa-gallery-icons-inner-container {
5158
+ position: absolute;
5159
+ top: 33.33%;
5160
+ width: 100%;
5161
+ text-align: center;
5162
+ -webkit-transform: translateY(-50%);
5163
+ -ms-transform: translateY(-50%);
5164
+ transform: translateY(-50%);
5165
+ z-index: 3;
5166
+ }
5167
+
5168
+ .pa-gallery-img.style1 .premium-gallery-caption {
5169
+ position: absolute;
5170
+ top: auto;
5171
+ right: 0;
5172
+ bottom: -1px;
5173
+ left: 0;
5174
+ width: 100%;
5175
+ -webkit-transition: all 500ms ease 0s;
5176
+ transition: all 500ms ease 0s;
5177
+ -webkit-transform: translate3d(0, 100%, 0);
5178
+ transform: translate3d(0, 100%, 0);
5179
+ }
5180
+
5181
+ .pa-gallery-img.style1:hover .premium-gallery-caption {
5182
+ -webkit-transform: translate3d(0, 0, 0);
5183
+ transform: translate3d(0, 0, 0);
5184
+ bottom: -1px !important;
5185
+ }
5186
+
5187
+ .pa-gallery-img.default .premium-gallery-caption {
5188
+ position: absolute;
5189
+ top: auto;
5190
+ right: 0;
5191
+ left: 0;
5192
+ width: 100%;
5193
+ bottom: 0;
5194
+ }
5195
+
5196
+ .pa-gallery-img.style2 .pa-gallery-icons-caption-container {
5197
+ position: absolute;
5198
+ top: 0;
5199
+ left: 0;
5200
+ width: 100%;
5201
+ height: 100%;
5202
+ opacity: 0;
5203
+ -webkit-backface-visibility: hidden;
5204
+ backface-visibility: hidden;
5205
+ -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
5206
+ transition: opacity 0.3s, -webkit-transform 0.3s;
5207
+ transition: transform 0.3s, opacity 0.3s;
5208
+ transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
5209
+ z-index: 1;
5210
+ background-color: rgba(108, 191, 226, 0.68);
5211
+ -js-display: flex;
5212
+ display: -webkit-box;
5213
+ display: -webkit-flex;
5214
+ display: -moz-box;
5215
+ display: -ms-flexbox;
5216
+ display: flex;
5217
+ text-align: center;
5218
+ -webkit-box-align: center;
5219
+ -webkit-align-items: center;
5220
+ -moz-box-align: center;
5221
+ -ms-flex-align: center;
5222
+ align-items: center;
5223
+ }
5224
+
5225
+ .pa-gallery-img.style2 .pa-gallery-icons-caption-cell {
5226
+ width: 100%;
5227
+ }
5228
+
5229
+ .pa-gallery-img.style2:hover .pa-gallery-icons-caption-container {
5230
+ opacity: 1;
5231
+ -webkit-transform: translate(15px, 15px);
5232
+ -ms-transform: translate(15px, 15px);
5233
+ transform: translate(15px, 15px);
5234
+ }
5235
+
5236
+ .premium-clearfix {
5237
+ clear: both;
5238
+ }
5239
+
5240
+ /**
5241
+ * Metro Layout
5242
+ */
5243
+ .premium-img-gallery-metro .premium-gallery-item {
5244
+ overflow: hidden;
5245
+ }
5246
+
5247
+ .premium-img-gallery-metro .pa-gallery-img {
5248
+ height: 100%;
5249
+ }
5250
+
5251
+ .premium-img-gallery-metro .pa-gallery-img-container {
5252
+ height: 100%;
5253
+ }
5254
+
5255
+ .premium-img-gallery-metro .pa-gallery-img-container img {
5256
+ min-height: 100%;
5257
+ width: 100%;
5258
+ -o-object-fit: fill;
5259
+ object-fit: fill;
5260
+ }
5261
+
5262
+ .premium-img-gallery .premium-gallery-item-hidden {
5263
+ visibility: hidden;
5264
+ width: 0 !important;
5265
+ height: 0 !important;
5266
+ margin: 0 !important;
5267
+ padding: 0 !important;
5268
+ }
5269
+
5270
+ .premium-gallery-load-more {
5271
+ position: relative;
5272
+ }
5273
+
5274
+ .premium-gallery-load-more .premium-gallery-load-more-btn {
5275
+ -webkit-box-shadow: none;
5276
+ box-shadow: none;
5277
+ text-shadow: none;
5278
+ border: none;
5279
+ outline: none;
5280
+ -webkit-box-align: center;
5281
+ -webkit-align-items: center;
5282
+ -moz-box-align: center;
5283
+ -ms-flex-align: center;
5284
+ align-items: center;
5285
+ vertical-align: bottom;
5286
+ cursor: pointer;
5287
+ line-height: 1;
5288
+ font-style: normal;
5289
+ font-weight: normal;
5290
+ background-image: none;
5291
+ color: #fff;
5292
+ -webkit-transition: all 0.3s ease-in-out;
5293
+ transition: all 0.3s ease-in-out;
5294
+ }
5295
+
5296
+ .premium-gallery-load-more-btn {
5297
+ -js-display: inline-flex;
5298
+ display: -webkit-inline-box;
5299
+ display: -webkit-inline-flex;
5300
+ display: -moz-inline-box;
5301
+ display: -ms-inline-flexbox;
5302
+ display: inline-flex;
5303
+ -webkit-box-align: center;
5304
+ -webkit-align-items: center;
5305
+ -moz-box-align: center;
5306
+ -ms-flex-align: center;
5307
+ align-items: center;
5308
+ }
5309
+
5310
+ .premium-gallery-load-more-btn div {
5311
+ margin-left: 3px;
5312
+ }
5313
+
5314
+ .premium-gallery-load-more-btn .premium-loader {
5315
+ display: inline-block;
5316
+ width: 20px;
5317
+ height: 20px;
5318
+ }
5319
+
5320
+ .pa-gallery-img .pa-gallery-lightbox-wrap {
5321
+ display: inline-block;
5322
+ }
5323
+
5324
+ .premium-img-gallery-no-lightbox .premium-gallery-video-item .pa-gallery-img,
5325
+ .pa-gallery-img .pa-gallery-video-icon {
5326
+ cursor: pointer;
5327
+ }
5328
+
5329
+ .pa-gallery-img-container iframe {
5330
+ position: absolute;
5331
+ visibility: hidden;
5332
+ top: 0;
5333
+ left: 0;
5334
+ max-width: 100%;
5335
+ width: 100%;
5336
+ height: 100%;
5337
+ margin: 0;
5338
+ line-height: 1;
5339
+ border: none;
5340
+ }
5341
+
5342
+ .pa-gallery-img-container video {
5343
+ position: absolute;
5344
+ visibility: hidden;
5345
+ top: 0;
5346
+ left: 0;
5347
+ max-width: 100%;
5348
+ width: 100%;
5349
+ height: 100%;
5350
+ margin: 0;
5351
+ line-height: 1;
5352
+ border: none;
5353
+ -o-object-fit: contain;
5354
+ object-fit: contain;
5355
+ }
5356
+
5357
+ .pa-gallery-icons-inner-container svg,
5358
+ .pa-gallery-icons-caption-cell svg {
5359
+ width: 14px;
5360
+ height: 14px;
5361
+ }
5362
+
5363
+ .premium-gallery-gradient-layer {
5364
+ position: absolute;
5365
+ bottom: 40px;
5366
+ width: 100%;
5367
+ height: 20px;
5368
+ background: -webkit-gradient(linear, left bottom, left top, from(#17181f), to(rgba(255, 255, 255, 0)));
5369
+ background: -webkit-linear-gradient(bottom, #17181f 0%, rgba(255, 255, 255, 0) 100%);
5370
+ background: linear-gradient(to top, #17181f 0%, rgba(255, 255, 255, 0) 100%);
5371
+ }
5372
+
5373
+ /********* Premium Lottie Animations *********/
5374
+ /*********************************************/
5375
+ .elementor-widget-premium-lottie .premium-lottie-animation {
5376
+ position: relative;
5377
+ -js-display: inline-flex;
5378
+ display: -webkit-inline-box;
5379
+ display: -webkit-inline-flex;
5380
+ display: -moz-inline-box;
5381
+ display: -ms-inline-flexbox;
5382
+ display: inline-flex;
5383
+ -webkit-transition: all 0.3s ease-in-out;
5384
+ transition: all 0.3s ease-in-out;
5385
+ }
5386
+
5387
+ .elementor-widget-premium-lottie .premium-lottie-animation a {
5388
+ position: absolute;
5389
+ left: 0;
5390
+ top: 0;
5391
+ width: 100%;
5392
+ height: 100%;
5393
+ z-index: 2;
5394
+ }
5395
+
5396
+ /**************** Premium Google Maps ******************/
5397
+ /*******************************************************/
5398
+ .premium-maps-info-container {
5399
+ margin-top: 10px;
5400
+ margin-bottom: 10px;
5401
+ }
5402
+
5403
+ .premium-maps-info-title,
5404
+ .premium-maps-info-desc {
5405
+ margin: 0;
5406
+ padding: 0;
5407
+ }
5408
+
5409
+ .premium-maps-container .gm-style-iw {
5410
+ text-align: center;
5411
+ }
5412
+
5413
+ .premium-maps-container .gm-style img {
5414
+ max-width: none !important;
5415
+ }
5416
+
5417
+ /**************** Premium Modal Box ****************/
5418
+ /***************************************************/
5419
+ .premium-modal-trigger-btn,
5420
+ .premium-modal-box-modal-lower-close {
5421
+ display: inline-block;
5422
+ padding: 6px 12px;
5423
+ margin-bottom: 0;
5424
+ font-size: 14px;
5425
+ font-weight: normal;
5426
+ line-height: 1.42857143;
5427
+ text-align: center;
5428
+ white-space: nowrap;
5429
+ vertical-align: middle;
5430
+ -ms-touch-action: manipulation;
5431
+ touch-action: manipulation;
5432
+ cursor: pointer;
5433
+ -webkit-user-select: none;
5434
+ -moz-user-select: none;
5435
+ -ms-user-select: none;
5436
+ user-select: none;
5437
+ background-image: none;
5438
+ border: 1px solid transparent;
5439
+ }
5440
+
5441
+ .premium-modal-trigger-btn>svg,
5442
+ .premium-modal-trigger-btn .premium-modal-box-icon {
5443
+ -webkit-transition: all 0.3s ease-in-out;
5444
+ transition: all 0.3s ease-in-out;
5445
+ }
5446
+
5447
+ .premium-modal-trigger-btn>svg {
5448
+ width: 30px;
5449
+ height: 30px;
5450
+ }
5451
+
5452
+ .premium-modal-box-modal-close {
5453
+ float: right;
5454
+ font-size: 21px;
5455
+ font-weight: bold;
5456
+ line-height: 1;
5457
+ color: #000;
5458
+ }
5459
+
5460
+ .premium-modal-box-modal-close:hover,
5461
+ .premium-modal-box-modal-close:focus {
5462
+ color: #000;
5463
+ text-decoration: none;
5464
+ cursor: pointer;
5465
+ }
5466
+
5467
+ button.premium-modal-box-modal-close {
5468
+ -webkit-appearance: none;
5469
+ padding: 0;
5470
+ cursor: pointer;
5471
+ background: transparent;
5472
+ border: 0;
5473
+ }
5474
+
5475
+ .premium-modal-box-modal {
5476
+ position: fixed;
5477
+ top: 0;
5478
+ right: 0;
5479
+ bottom: 0;
5480
+ left: 0;
5481
+ z-index: 1050;
5482
+ display: none;
5483
+ -webkit-overflow-scrolling: touch;
5484
+ outline: 0;
5485
+ padding: 0 !important;
5486
+ background: rgba(0, 0, 0, 0.5);
5487
+ -webkit-box-align: center;
5488
+ -webkit-align-items: center;
5489
+ -moz-box-align: center;
5490
+ -ms-flex-align: center;
5491
+ align-items: center;
5492
+ -webkit-box-pack: center;
5493
+ -webkit-justify-content: center;
5494
+ -moz-box-pack: center;
5495
+ -ms-flex-pack: center;
5496
+ justify-content: center;
5497
+ }
5498
+
5499
+ .premium-modal-box-modal .premium-modal-box-modal-dialog {
5500
+ position: absolute;
5501
+ max-height: -webkit-calc(100vh - 150px);
5502
+ max-height: calc(100vh - 150px);
5503
+ -js-display: flex;
5504
+ display: -webkit-box;
5505
+ display: -webkit-flex;
5506
+ display: -moz-box;
5507
+ display: -ms-flexbox;
5508
+ display: flex;
5509
+ -webkit-box-orient: vertical;
5510
+ -webkit-box-direction: normal;
5511
+ -webkit-flex-direction: column;
5512
+ -moz-box-orient: vertical;
5513
+ -moz-box-direction: normal;
5514
+ -ms-flex-direction: column;
5515
+ flex-direction: column;
5516
+ opacity: 0;
5517
+ background-color: #fff;
5518
+ border: 1px solid rgba(0, 0, 0, 0.2);
5519
+ -webkit-border-radius: 6px;
5520
+ border-radius: 6px;
5521
+ }
5522
+
5523
+ .premium-modal-box-modal-content {
5524
+ background-clip: padding-box;
5525
+ outline: 0;
5526
+ overflow-x: hidden;
5527
+ }
5528
+
5529
+ .premium-modal-backdrop.premium-in {
5530
+ filter: alpha(opacity=50);
5531
+ opacity: 0.5 !important;
5532
+ }
5533
+
5534
+ .premium-in {
5535
+ opacity: 1;
5536
+ }
5537
+
5538
+ .premium-modal-backdrop {
5539
+ position: fixed;
5540
+ top: 0;
5541
+ right: 0;
5542
+ bottom: 0;
5543
+ left: 0;
5544
+ z-index: 1040;
5545
+ background-color: #000;
5546
+ }
5547
+
5548
+ .premium-in {
5549
+ -js-display: flex !important;
5550
+ display: -webkit-box !important;
5551
+ display: -webkit-flex !important;
5552
+ display: -moz-box !important;
5553
+ display: -ms-flexbox !important;
5554
+ display: flex !important;
5555
+ }
5556
+
5557
+ .premium-modal-box-modal-header {
5558
+ -js-display: flex;
5559
+ display: -webkit-box;
5560
+ display: -webkit-flex;
5561
+ display: -moz-box;
5562
+ display: -ms-flexbox;
5563
+ display: flex;
5564
+ -webkit-box-pack: justify;
5565
+ -webkit-justify-content: space-between;
5566
+ -moz-box-pack: justify;
5567
+ -ms-flex-pack: justify;
5568
+ justify-content: space-between;
5569
+ -webkit-box-align: center;
5570
+ -webkit-align-items: center;
5571
+ -moz-box-align: center;
5572
+ -ms-flex-align: center;
5573
+ align-items: center;
5574
+ padding: 5px 15px;
5575
+ border-bottom: 1px solid #e5e5e5;
5576
+ }
5577
+
5578
+ .premium-modal-box-modal-header .premium-modal-box-modal-close {
5579
+ margin-top: -2px;
5580
+ }
5581
+
5582
+ .premium-modal-box-modal-header .premium-modal-box-modal-title {
5583
+ -js-display: flex;
5584
+ display: -webkit-box;
5585
+ display: -webkit-flex;
5586
+ display: -moz-box;
5587
+ display: -ms-flexbox;
5588
+ display: flex;
5589
+ -webkit-box-align: center;
5590
+ -webkit-align-items: center;
5591
+ -moz-box-align: center;
5592
+ -ms-flex-align: center;
5593
+ align-items: center;
5594
+ margin: 0;
5595
+ padding: 0;
5596
+ }
5597
+
5598
+ .premium-modal-box-modal-header .premium-modal-box-modal-title svg {
5599
+ width: 50px;
5600
+ height: 60px;
5601
+ }
5602
+
5603
+ .premium-modal-box-modal-body {
5604
+ position: relative;
5605
+ padding: 15px;
5606
+ }
5607
+
5608
+ .premium-modal-box-modal-footer {
5609
+ padding: 15px;
5610
+ text-align: right;
5611
+ border-top: 1px solid #e5e5e5;
5612
+ }
5613
+
5614
+ .premium-modal-scrollbar-measure {
5615
+ position: absolute;
5616
+ top: -9999px;
5617
+ width: 50px;
5618
+ height: 50px;
5619
+ overflow: scroll;
5620
+ }
5621
+
5622
+ .premium-modal-trigger-text {
5623
+ background: none !important;
5624
+ display: inline-block;
5625
+ }
5626
+
5627
+ .premium-modal-box-container {
5628
+ width: 100% !important;
5629
+ }
5630
+
5631
+ /*Open Modal Button Style*/
5632
+ .premium-modal-trigger-container .premium-modal-trigger-btn {
5633
+ -js-display: inline-flex;
5634
+ display: -webkit-inline-box;
5635
+ display: -webkit-inline-flex;
5636
+ display: -moz-inline-box;
5637
+ display: -ms-inline-flexbox;
5638
+ display: inline-flex;
5639
+ -webkit-box-align: center;
5640
+ -webkit-align-items: center;
5641
+ -moz-box-align: center;
5642
+ -ms-flex-align: center;
5643
+ align-items: center;
5644
+ border: none;
5645
+ -webkit-transition: all 0.3s ease-in-out;
5646
+ transition: all 0.3s ease-in-out;
5647
+ }
5648
+
5649
+ .premium-modal-trigger-container .premium-modal-trigger-btn.premium-btn-block {
5650
+ -webkit-box-pack: center;
5651
+ -webkit-justify-content: center;
5652
+ -moz-box-pack: center;
5653
+ -ms-flex-pack: center;
5654
+ justify-content: center;
5655
+ }
5656
+
5657
+ .premium-modal-trigger-container .premium-modal-trigger-img,
5658
+ .premium-modal-trigger-container .premium-modal-trigger-text,
5659
+ .premium-modal-trigger-container .premium-modal-trigger-animation {
5660
+ cursor: pointer;
5661
+ }
5662
+
5663
+ .premium-modal-trigger-container .premium-modal-trigger-animation {
5664
+ display: inline-block;
5665
+ width: 200px;
5666
+ height: 200px;
5667
+ -webkit-transition: all 0.3s ease-in-out;
5668
+ transition: all 0.3s ease-in-out;
5669
+ }
5670
+
5671
+ /*Image on Modal Header Style*/
5672
+ .premium-modal-box-modal-header img {
5673
+ width: 48px;
5674
+ padding-right: 5px;
5675
+ }
5676
+
5677
+ .premium-modal-box-modal-header i,
5678
+ .premium-modal-box-modal-header svg {
5679
+ padding-right: 6px;
5680
+ }
5681
+
5682
+ .premium-modal-box-modal-close {
5683
+ position: relative;
5684
+ z-index: 99;
5685
+ }
5686
+
5687
+ .premium-modal-trigger-img,
5688
+ .premium-modal-trigger-text,
5689
+ .premium-modal-box-close-button-container,
5690
+ .premium-modal-box-modal-close,
5691
+ .premium-modal-box-modal-lower-close {
5692
+ -webkit-transition: all 0.3s ease-in-out;
5693
+ transition: all 0.3s ease-in-out;
5694
+ }
5695
+
5696
+ @media (min-width: 768px) {
5697
+ .premium-modal-box-modal-dialog {
5698
+ width: 700px;
5699
+ max-height: 600px;
5700
+ overflow: auto;
5701
+ }
5702
+ }
5703
+
5704
+ @media (max-width: 767px) {
5705
+ .premium-modal-box-modal-dialog {
5706
+ width: 100%;
5707
+ max-height: 500px;
5708
+ overflow: auto;
5709
+ }
5710
+ }
5711
+
5712
+ .premium-modal-box-container[data-modal-animation*="animated-"] {
5713
+ opacity: 0;
5714
+ }
5715
+
5716
+ /************ Premium Nav Menu ************/
5717
+ .premium-nav-widget-container ul {
5718
+ list-style: none;
5719
+ margin: 0;
5720
+ padding: 0;
5721
+ }
5722
+
5723
+ .premium-nav-widget-container .premium-main-nav-menu {
5724
+ -js-display: flex;
5725
+ display: -webkit-box;
5726
+ display: -webkit-flex;
5727
+ display: -moz-box;
5728
+ display: -ms-flexbox;
5729
+ display: flex;
5730
+ height: 100%;
5731
+ }
5732
+
5733
+ /*Vertical Main Menu**/
5734
+ .premium-nav-ver .premium-ver-inner-container {
5735
+ width: 45%;
5736
+ position: relative;
5737
+ }
5738
+
5739
+ .premium-nav-ver .premium-nav-menu-container,
5740
+ .premium-nav-ver .premium-ver-toggler {
5741
+ width: 100%;
5742
+ }
5743
+
5744
+ .premium-nav-ver .premium-nav-menu-container {
5745
+ background-color: #fff;
5746
+ -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
5747
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
5748
+ }
5749
+
5750
+ .premium-nav-ver .premium-main-nav-menu {
5751
+ position: relative;
5752
+ -webkit-box-orient: vertical;
5753
+ -webkit-box-direction: normal;
5754
+ -webkit-flex-direction: column;
5755
+ -moz-box-orient: vertical;
5756
+ -moz-box-direction: normal;
5757
+ -ms-flex-direction: column;
5758
+ flex-direction: column;
5759
+ -webkit-box-align: start;
5760
+ -webkit-align-items: flex-start;
5761
+ -moz-box-align: start;
5762
+ -ms-flex-align: start;
5763
+ align-items: flex-start;
5764
+ }
5765
+
5766
+ .premium-nav-ver:not(.premium-hamburger-menu) .premium-nav-menu-item.menu-item-has-children .premium-sub-menu {
5767
+ visibility: hidden;
5768
+ opacity: 0;
5769
+ position: absolute;
5770
+ min-width: 250px;
5771
+ }
5772
+
5773
+ .premium-nav-ver:not(.premium-hamburger-menu) .premium-nav-menu-item.menu-item-has-children:hover>.premium-sub-menu,
5774
+ .premium-nav-ver:not(.premium-hamburger-menu) .premium-nav-menu-item.menu-item-has-children:hover .premium-mega-content-container {
5775
+ opacity: 1;
5776
+ visibility: visible;
5777
+ }
5778
+
5779
+ .premium-nav-ver .premium-nav-menu-item {
5780
+ width: 100%;
5781
+ }
5782
+
5783
+ .premium-nav-ver:not(.premium-hamburger-menu).premium-vertical-right .premium-mega-content-container,
5784
+ .premium-nav-ver:not(.premium-hamburger-menu).premium-vertical-right .premium-nav-menu-item.menu-item-has-children .premium-sub-menu {
5785
+ left: 100%;
5786
+ top: 0;
5787
+ }
5788
+
5789
+ .premium-nav-ver:not(.premium-hamburger-menu).premium-vertical-left .premium-mega-content-container,
5790
+ .premium-nav-ver:not(.premium-hamburger-menu).premium-vertical-left .premium-nav-menu-item.menu-item-has-children .premium-sub-menu {
5791
+ right: 100%;
5792
+ top: 0;
5793
+ }
5794
+
5795
+ .premium-nav-ver:not(.premium-hamburger-menu).premium-vertical-left .premium-menu-link {
5796
+ -webkit-box-orient: horizontal;
5797
+ -webkit-box-direction: reverse;
5798
+ -webkit-flex-direction: row-reverse;
5799
+ -moz-box-orient: horizontal;
5800
+ -moz-box-direction: reverse;
5801
+ -ms-flex-direction: row-reverse;
5802
+ flex-direction: row-reverse;
5803
+ }
5804
+
5805
+ /*Horizontal Main Menu**/
5806
+ .premium-nav-hor .premium-nav-menu-container {
5807
+ height: 60px;
5808
+ }
5809
+
5810
+ .premium-nav-hor:not(.premium-hamburger-menu) .premium-nav-menu-item .premium-sub-menu {
5811
+ visibility: hidden;
5812
+ opacity: 0;
5813
+ position: absolute;
5814
+ min-width: 220px;
5815
+ }
5816
+
5817
+ .premium-nav-hor:not(.premium-hamburger-menu) .premium-nav-menu-item>.premium-sub-menu,
5818
+ .premium-nav-hor:not(.premium-hamburger-menu) .premium-nav-menu-item .premium-mega-content-container {
5819
+ top: 100%;
5820
+ }
5821
+
5822
+ .premium-nav-hor:not(.premium-hamburger-menu) .premium-nav-menu-item>.premium-sub-menu .premium-sub-menu,
5823
+ .premium-nav-hor:not(.premium-hamburger-menu) .premium-nav-menu-item .premium-mega-content-container .premium-sub-menu {
5824
+ left: 100%;
5825
+ top: 0;
5826
+ }
5827
+
5828
+ .premium-nav-hor:not(.premium-hamburger-menu) .premium-nav-menu-item:hover>.premium-sub-menu,
5829
+ .premium-nav-hor:not(.premium-hamburger-menu) .premium-nav-menu-item:hover .premium-mega-content-container {
5830
+ visibility: visible;
5831
+ opacity: 1;
5832
+ pointer-events: auto;
5833
+ }
5834
+
5835
+ .premium-nav-hor:not(.premium-hamburger-menu) .premium-nav-menu-item.premium-mega-item-static .premium-mega-content-container {
5836
+ left: 50%;
5837
+ -webkit-transform: translateX(-50%);
5838
+ -ms-transform: translateX(-50%);
5839
+ transform: translateX(-50%);
5840
+ }
5841
+
5842
+ .premium-nav-hor:not(.premium-hamburger-menu) .premium-nav-menu-item:not(.premium-mega-item-static) .premium-mega-content-container {
5843
+ left: 0;
5844
+ }
5845
+
5846
+ /**Mega Menu Container*/
5847
+ .premium-mega-nav-item .premium-sub-menu {
5848
+ display: none;
5849
+ }
5850
+
5851
+ .premium-mega-nav-item {
5852
+ position: relative;
5853
+ }
5854
+
5855
+ .premium-mega-nav-item:hover .premium-mega-content-container {
5856
+ visibility: visible;
5857
+ opacity: 1;
5858
+ pointer-events: auto;
5859
+ }
5860
+
5861
+ .premium-mega-content-container {
5862
+ visibility: hidden;
5863
+ position: absolute;
5864
+ z-index: 9999;
5865
+ opacity: 0;
5866
+ pointer-events: none;
5867
+ }
5868
+
5869
+ .premium-hamburger-menu .premium-mega-content-container,
5870
+ .premium-nav-slide .premium-mega-content-container,
5871
+ .premium-nav-dropdown .premium-mega-content-container {
5872
+ visibility: visible;
5873
+ position: relative;
5874
+ opacity: 1;
5875
+ pointer-events: auto;
5876
+ }
5877
+
5878
+ /**Hamburger Menu*/
5879
+ .premium-nav-widget-container a.premium-hamburger-toggle,
5880
+ .premium-mobile-menu-outer-container a.premium-mobile-menu-close {
5881
+ text-decoration: none;
5882
+ }
5883
+
5884
+ .premium-nav-widget-container .premium-hamburger-toggle {
5885
+ display: none;
5886
+ -webkit-box-pack: center;
5887
+ -webkit-justify-content: center;
5888
+ -moz-box-pack: center;
5889
+ -ms-flex-pack: center;
5890
+ justify-content: center;
5891
+ -webkit-box-align: center;
5892
+ -webkit-align-items: center;
5893
+ -moz-box-align: center;
5894
+ -ms-flex-align: center;
5895
+ align-items: center;
5896
+ }
5897
+
5898
+ .premium-nav-widget-container .premium-hamburger-toggle i {
5899
+ padding: 0.25em;
5900
+ font-size: 22px;
5901
+ }
5902
+
5903
+ .premium-nav-widget-container .premium-hamburger-toggle svg {
5904
+ width: 22px;
5905
+ height: 22px;
5906
+ }
5907
+
5908
+ .premium-nav-widget-container .premium-hamburger-toggle i,
5909
+ .premium-nav-widget-container .premium-hamburger-toggle .premium-toggle-text,
5910
+ .premium-nav-widget-container .premium-hamburger-toggle .premium-toggle-close {
5911
+ color: #494c4f;
5912
+ }
5913
+
5914
+ .premium-nav-widget-container .premium-hamburger-toggle svg,
5915
+ .premium-nav-widget-container .premium-hamburger-toggle svg path {
5916
+ fill: #494c4f;
5917
+ }
5918
+
5919
+ .premium-nav-widget-container .premium-hamburger-toggle .premium-toggle-text,
5920
+ .premium-nav-widget-container .premium-hamburger-toggle .premium-toggle-close {
5921
+ margin: 2px;
5922
+ }
5923
+
5924
+ .premium-nav-widget-container .premium-hamburger-toggle .premium-toggle-close {
5925
+ display: none;
5926
+ }
5927
+
5928
+ .premium-mobile-menu-container {
5929
+ width: 100%;
5930
+ }
5931
+
5932
+ .premium-mobile-menu-container .premium-main-mobile-menu {
5933
+ width: 100%;
5934
+ }
5935
+
5936
+ .premium-mobile-menu-container ul {
5937
+ list-style: none;
5938
+ margin: 0;
5939
+ padding: 0;
5940
+ }
5941
+
5942
+ .premium-mobile-menu-container .premium-mobile-menu,
5943
+ .premium-mobile-menu-container .premium-sub-menu {
5944
+ display: none;
5945
+ -webkit-box-orient: vertical;
5946
+ -webkit-box-direction: normal;
5947
+ -webkit-flex-direction: column;
5948
+ -moz-box-orient: vertical;
5949
+ -moz-box-direction: normal;
5950
+ -ms-flex-direction: column;
5951
+ flex-direction: column;
5952
+ }
5953
+
5954
+ .premium-mobile-menu-container .premium-nav-menu-item {
5955
+ -webkit-box-orient: vertical;
5956
+ -webkit-box-direction: normal;
5957
+ -webkit-flex-direction: column;
5958
+ -moz-box-orient: vertical;
5959
+ -moz-box-direction: normal;
5960
+ -ms-flex-direction: column;
5961
+ flex-direction: column;
5962
+ }
5963
+
5964
+ .premium-mobile-menu-container .premium-item-badge {
5965
+ top: 50%;
5966
+ right: 0;
5967
+ left: unset;
5968
+ -webkit-transform: translateY(-50%);
5969
+ -ms-transform: translateY(-50%);
5970
+ transform: translateY(-50%);
5971
+ }
5972
+
5973
+ .premium-nav-hor .premium-mobile-menu-container .premium-item-badge {
5974
+ top: 0;
5975
+ -webkit-transform: translateY(0);
5976
+ -ms-transform: translateY(0);
5977
+ transform: translateY(0);
5978
+ }
5979
+
5980
+ /**Vertical Hamburger Menu*/
5981
+ .premium-mobile-menu-outer-container {
5982
+ opacity: 0;
5983
+ }
5984
+
5985
+ .premium-mobile-menu-outer-container.premium-vertical-toggle-open {
5986
+ opacity: 1;
5987
+ }
5988
+
5989
+ .premium-ver-hamburger-menu .premium-mobile-menu-outer-container {
5990
+ background-color: #f7f7f7;
5991
+ width: 300px;
5992
+ -webkit-transform: translateX(-300px);
5993
+ -ms-transform: translateX(-300px);
5994
+ transform: translateX(-300px);
5995
+ height: 100%;
5996
+ position: fixed;
5997
+ top: 0;
5998
+ left: 0;
5999
+ overflow-x: hidden;
6000
+ z-index: 10002;
6001
+ -webkit-transition: 0.5s;
6002
+ transition: 0.5s;
6003
+ padding-top: 50px;
6004
+ }
6005
+
6006
+ .premium-ver-hamburger-menu .premium-mobile-menu-outer-container .premium-mobile-menu {
6007
+ -js-display: flex;
6008
+ display: -webkit-box;
6009
+ display: -webkit-flex;
6010
+ display: -moz-box;
6011
+ display: -ms-flexbox;
6012
+ display: flex;
6013
+ }
6014
+
6015
+ .premium-ver-hamburger-menu .premium-mobile-menu-outer-container .premium-mobile-menu-container {
6016
+ margin-top: 50px;
6017
+ }
6018
+
6019
+ .premium-ver-hamburger-menu .premium-mobile-menu-outer-container .premium-mobile-menu-container .premium-item-badge {
6020
+ -webkit-transform: translateY(0);
6021
+ -ms-transform: translateY(0);
6022
+ transform: translateY(0);
6023
+ }
6024
+
6025
+ .premium-ver-hamburger-menu .premium-mobile-menu-outer-container .premium-mobile-menu-close {
6026
+ position: absolute;
6027
+ top: 2%;
6028
+ right: 5px;
6029
+ padding: 0 9px;
6030
+ z-index: 10000;
6031
+ -js-display: inline-flex;
6032
+ display: -webkit-inline-box;
6033
+ display: -webkit-inline-flex;
6034
+ display: -moz-inline-box;
6035
+ display: -ms-inline-flexbox;
6036
+ display: inline-flex;
6037
+ color: #494c4f;
6038
+ -webkit-box-pack: center;
6039
+ -webkit-justify-content: center;
6040
+ -moz-box-pack: center;
6041
+ -ms-flex-pack: center;
6042
+ justify-content: center;
6043
+ -webkit-box-align: center;
6044
+ -webkit-align-items: center;
6045
+ -moz-box-align: center;
6046
+ -ms-flex-align: center;
6047
+ align-items: center;
6048
+ }
6049
+
6050
+ .premium-ver-hamburger-menu .premium-mobile-menu-outer-container .premium-mobile-menu-close .premium-toggle-close {
6051
+ margin: 5px;
6052
+ }
6053
+
6054
+ .premium-ver-hamburger-menu .premium-mobile-menu-outer-container .premium-mobile-menu-close svg {
6055
+ width: 22px;
6056
+ height: 22px;
6057
+ fill: #494c4f;
6058
+ }
6059
+
6060
+ .premium-ver-hamburger-menu .premium-mobile-menu-outer-container .premium-mobile-menu-close svg path {
6061
+ fill: #494c4f;
6062
+ }
6063
+
6064
+ .premium-ver-hamburger-menu .premium-mobile-menu-outer-container .premium-mobile-menu-close i {
6065
+ font-size: 22px;
6066
+ }
6067
+
6068
+ .premium-ver-hamburger-menu .premium-vertical-toggle-open {
6069
+ -webkit-transform: translateX(0) !important;
6070
+ -ms-transform: translateX(0) !important;
6071
+ transform: translateX(0) !important;
6072
+ -webkit-transition: 0.5s;
6073
+ transition: 0.5s;
6074
+ }
6075
+
6076
+ /** Vertical Toggler*/
6077
+ .premium-ver-toggle-yes .premium-nav-menu-container {
6078
+ height: auto;
6079
+ }
6080
+
6081
+ .premium-ver-toggle-yes .premium-ver-toggler {
6082
+ -js-display: flex;
6083
+ display: -webkit-box;
6084
+ display: -webkit-flex;
6085
+ display: -moz-box;
6086
+ display: -ms-flexbox;
6087
+ display: flex;
6088
+ -webkit-box-align: center;
6089
+ -webkit-align-items: center;
6090
+ -moz-box-align: center;
6091
+ -ms-flex-align: center;
6092
+ align-items: center;
6093
+ -webkit-box-pack: justify;
6094
+ -webkit-justify-content: space-between;
6095
+ -moz-box-pack: justify;
6096
+ -ms-flex-pack: justify;
6097
+ justify-content: space-between;
6098
+ padding: 15px 20px 15px 20px;
6099
+ background: #eeeeee;
6100
+ color: #042551;
6101
+ cursor: pointer;
6102
+ }
6103
+
6104
+ .premium-ver-toggle-yes .premium-ver-toggler .premium-ver-toggler-title,
6105
+ .premium-ver-toggle-yes .premium-ver-toggler .premium-ver-toggler-btn {
6106
+ -js-display: flex;
6107
+ display: -webkit-box;
6108
+ display: -webkit-flex;
6109
+ display: -moz-box;
6110
+ display: -ms-flexbox;
6111
+ display: flex;
6112
+ -webkit-box-pack: center;
6113
+ -webkit-justify-content: center;
6114
+ -moz-box-pack: center;
6115
+ -ms-flex-pack: center;
6116
+ justify-content: center;
6117
+ -webkit-box-align: center;
6118
+ -webkit-align-items: center;
6119
+ -moz-box-align: center;
6120
+ -ms-flex-align: center;
6121
+ align-items: center;
6122
+ }
6123
+
6124
+ .premium-ver-toggle-yes .premium-ver-toggler .premium-ver-toggler-txt {
6125
+ text-indent: 5px;
6126
+ }
6127
+
6128
+ .premium-ver-toggle-yes .premium-ver-toggler:hover {
6129
+ background: #54595f;
6130
+ color: #fff;
6131
+ }
6132
+
6133
+ .premium-ver-toggle-yes .premium-ver-toggler:hover .premium-ver-close svg,
6134
+ .premium-ver-toggle-yes .premium-ver-toggler:hover .premium-ver-close svg path,
6135
+ .premium-ver-toggle-yes .premium-ver-toggler:hover .premium-ver-open svg,
6136
+ .premium-ver-toggle-yes .premium-ver-toggler:hover .premium-ver-open svg path,
6137
+ .premium-ver-toggle-yes .premium-ver-toggler:hover .premium-ver-title-icon svg,
6138
+ .premium-ver-toggle-yes .premium-ver-toggler:hover .premium-ver-title-icon svg path {
6139
+ fill: #fff;
6140
+ }
6141
+
6142
+ .premium-ver-toggle-yes .premium-ver-close,
6143
+ .premium-ver-toggle-yes .premium-ver-open,
6144
+ .premium-ver-toggle-yes .premium-nav-menu-container,
6145
+ .premium-ver-toggle-yes .premium-ver-toggler {
6146
+ -webkit-transition: all 0.3s linear 0s;
6147
+ transition: all 0.3s linear 0s;
6148
+ }
6149
+
6150
+ .premium-ver-toggle-yes .premium-ver-close i,
6151
+ .premium-ver-toggle-yes .premium-ver-close svg,
6152
+ .premium-ver-toggle-yes .premium-ver-open i,
6153
+ .premium-ver-toggle-yes .premium-ver-open svg,
6154
+ .premium-ver-toggle-yes .premium-nav-menu-container i,
6155
+ .premium-ver-toggle-yes .premium-nav-menu-container svg,
6156
+ .premium-ver-toggle-yes .premium-ver-toggler i,
6157
+ .premium-ver-toggle-yes .premium-ver-toggler svg {
6158
+ -webkit-transition: color 0.3s linear 0s;
6159
+ transition: color 0.3s linear 0s;
6160
+ }
6161
+
6162
+ .premium-ver-toggle-yes .premium-ver-toggler-txt {
6163
+ -webkit-transition: all 0.3s linear 0s;
6164
+ transition: all 0.3s linear 0s;
6165
+ }
6166
+
6167
+ .premium-ver-toggle-yes .premium-ver-close,
6168
+ .premium-ver-toggle-yes .premium-ver-open,
6169
+ .premium-ver-toggle-yes .premium-ver-title-icon {
6170
+ -webkit-box-pack: center;
6171
+ -webkit-justify-content: center;
6172
+ -moz-box-pack: center;
6173
+ -ms-flex-pack: center;
6174
+ justify-content: center;
6175
+ -webkit-box-align: center;
6176
+ -webkit-align-items: center;
6177
+ -moz-box-align: center;
6178
+ -ms-flex-align: center;
6179
+ align-items: center;
6180
+ }
6181
+
6182
+ .premium-ver-toggle-yes .premium-ver-close i,
6183
+ .premium-ver-toggle-yes .premium-ver-open i,
6184
+ .premium-ver-toggle-yes .premium-ver-title-icon i {
6185
+ font-size: 16px;
6186
+ }
6187
+
6188
+ .premium-ver-toggle-yes .premium-ver-close svg,
6189
+ .premium-ver-toggle-yes .premium-ver-open svg,
6190
+ .premium-ver-toggle-yes .premium-ver-title-icon svg {
6191
+ width: 17px;
6192
+ height: 17px;
6193
+ fill: #042551;
6194
+ }
6195
+
6196
+ .premium-ver-toggle-yes .premium-ver-close svg path,
6197
+ .premium-ver-toggle-yes .premium-ver-open svg path,
6198
+ .premium-ver-toggle-yes .premium-ver-title-icon svg path {
6199
+ fill: #042551;
6200
+ }
6201
+
6202
+ .premium-ver-toggle-yes.premium-ver-always .premium-ver-open {
6203
+ -js-display: inline-flex;
6204
+ display: -webkit-inline-box;
6205
+ display: -webkit-inline-flex;
6206
+ display: -moz-inline-box;
6207
+ display: -ms-inline-flexbox;
6208
+ display: inline-flex;
6209
+ }
6210
+
6211
+ .premium-ver-toggle-yes .premium-ver-collapsed .premium-nav-menu-container {
6212
+ visibility: hidden;
6213
+ opacity: 0;
6214
+ }
6215
+
6216
+ .premium-ver-toggle-yes .premium-ver-collapsed .premium-ver-close {
6217
+ display: none;
6218
+ }
6219
+
6220
+ .premium-ver-toggle-yes .premium-ver-collapsed .premium-ver-open {
6221
+ -js-display: inline-flex;
6222
+ display: -webkit-inline-box;
6223
+ display: -webkit-inline-flex;
6224
+ display: -moz-inline-box;
6225
+ display: -ms-inline-flexbox;
6226
+ display: inline-flex;
6227
+ }
6228
+
6229
+ .premium-ver-toggle-yes.premium-ver-hover .premium-nav-menu-container {
6230
+ position: absolute;
6231
+ z-index: 10002;
6232
+ }
6233
+
6234
+ .premium-ver-toggle-yes.premium-ver-click .premium-nav-menu-container {
6235
+ position: absolute;
6236
+ z-index: 10001;
6237
+ }
6238
+
6239
+ .premium-ver-toggle-yes .premium-nav-menu-container,
6240
+ .premium-ver-toggle-yes.premium-ver-hover .premium-ver-inner-container:hover .premium-nav-menu-container {
6241
+ visibility: visible;
6242
+ opacity: 1;
6243
+ }
6244
+
6245
+ .premium-ver-toggle-yes .premium-ver-open,
6246
+ .premium-ver-toggle-yes.premium-ver-hover .premium-ver-inner-container:hover .premium-ver-open {
6247
+ display: none;
6248
+ }
6249
+
6250
+ .premium-ver-toggle-yes .premium-ver-close,
6251
+ .premium-ver-toggle-yes .premium-ver-title-icon,
6252
+ .premium-ver-toggle-yes.premium-ver-hover .premium-ver-inner-container:hover .premium-ver-close,
6253
+ .premium-ver-toggle-yes.premium-ver-hover .premium-ver-inner-container:hover .premium-ver-title-icon {
6254
+ -js-display: inline-flex;
6255
+ display: -webkit-inline-box;
6256
+ display: -webkit-inline-flex;
6257
+ display: -moz-inline-box;
6258
+ display: -ms-inline-flexbox;
6259
+ display: inline-flex;
6260
+ }
6261
+
6262
+ /** Sticky Menu */
6263
+ .premium-sticky-parent {
6264
+ position: fixed;
6265
+ z-index: 10003;
6266
+ -webkit-transition: all 0.3s linear;
6267
+ transition: all 0.3s linear;
6268
+ }
6269
+
6270
+ .premium-sticky-scroll-yes.premium-sticky-parent.headroom--not-top {
6271
+ will-change: transform;
6272
+ -webkit-transition: -webkit-transform 500ms linear !important;
6273
+ transition: -webkit-transform 500ms linear !important;
6274
+ transition: transform 500ms linear !important;
6275
+ transition: transform 500ms linear, -webkit-transform 500ms linear !important;
6276
+ -webkit-transition-delay: 1s;
6277
+ transition-delay: 1s;
6278
+ }
6279
+
6280
+ .premium-sticky-scroll-yes.premium-sticky-parent.headroom--not-top.slideDown {
6281
+ -webkit-transform: translateY(0%);
6282
+ -ms-transform: translateY(0%);
6283
+ transform: translateY(0%);
6284
+ }
6285
+
6286
+ .premium-sticky-scroll-yes.premium-sticky-parent.headroom--not-top.slideUp {
6287
+ -webkit-transform: translateY(-100%);
6288
+ -ms-transform: translateY(-100%);
6289
+ transform: translateY(-100%);
6290
+ }
6291
+
6292
+ .premium-nav-sticky-yes.premium-sticky-active.premium-ham-dropdown .premium-mobile-menu-container,
6293
+ .premium-ham-dropdown .premium-stretch-dropdown .premium-mobile-menu-container {
6294
+ max-height: 400px;
6295
+ overflow-y: auto;
6296
+ }
6297
+
6298
+ /**Common*/
6299
+ .premium-nav-slide-overlay {
6300
+ display: none;
6301
+ position: fixed;
6302
+ top: 0;
6303
+ left: 0;
6304
+ right: 0;
6305
+ bottom: 0;
6306
+ -webkit-backface-visibility: hidden;
6307
+ backface-visibility: hidden;
6308
+ background: rgba(0, 0, 0, 0.6);
6309
+ z-index: 10002;
6310
+ }
6311
+
6312
+ .premium-nav-slide-overlay.premium-vertical-toggle-open {
6313
+ display: block;
6314
+ }
6315
+
6316
+ .premium-active-menu,
6317
+ .premium-active-menu:not(.premium-mega-nav-item)>.premium-sub-menu,
6318
+ .premium-active-menu.premium-mega-nav-item>.premium-mega-content-container {
6319
+ -js-display: flex !important;
6320
+ display: -webkit-box !important;
6321
+ display: -webkit-flex !important;
6322
+ display: -moz-box !important;
6323
+ display: -ms-flexbox !important;
6324
+ display: flex !important;
6325
+ -webkit-box-orient: vertical;
6326
+ -webkit-box-direction: normal;
6327
+ -webkit-flex-direction: column;
6328
+ -moz-box-orient: vertical;
6329
+ -moz-box-direction: normal;
6330
+ -ms-flex-direction: column;
6331
+ flex-direction: column;
6332
+ }
6333
+
6334
+ .premium-active-menu .premium-toggle-close {
6335
+ display: block;
6336
+ }
6337
+
6338
+ .premium-nav-menu-container .premium-sub-menu {
6339
+ background-color: #fff;
6340
+ }
6341
+
6342
+ .premium-mobile-menu-container li,
6343
+ .premium-mobile-menu-container li>.premium-mega-content-container {
6344
+ width: 100% !important;
6345
+ }
6346
+
6347
+ .premium-item-icon,
6348
+ .premium-sub-item-icon {
6349
+ font-size: 13px;
6350
+ margin: 0 7px;
6351
+ }
6352
+
6353
+ .premium-item-icon svg,
6354
+ .premium-sub-item-icon svg {
6355
+ width: 100%;
6356
+ height: 100%;
6357
+ }
6358
+
6359
+ .premium-item-icon.premium-lottie-animation,
6360
+ .premium-sub-item-icon.premium-lottie-animation {
6361
+ width: 20px;
6362
+ height: 20px;
6363
+ -js-display: flex;
6364
+ display: -webkit-box;
6365
+ display: -webkit-flex;
6366
+ display: -moz-box;
6367
+ display: -ms-flexbox;
6368
+ display: flex;
6369
+ -webkit-box-pack: center;
6370
+ -webkit-justify-content: center;
6371
+ -moz-box-pack: center;
6372
+ -ms-flex-pack: center;
6373
+ justify-content: center;
6374
+ }
6375
+
6376
+ .premium-item-icon.dashicons,
6377
+ .premium-sub-item-icon.dashicons {
6378
+ width: 13px;
6379
+ height: 13px;
6380
+ }
6381
+
6382
+ .premium-nav-menu-item {
6383
+ position: relative;
6384
+ }
6385
+
6386
+ .premium-nav-menu-item .premium-menu-link {
6387
+ -js-display: flex;
6388
+ display: -webkit-box;
6389
+ display: -webkit-flex;
6390
+ display: -moz-box;
6391
+ display: -ms-flexbox;
6392
+ display: flex;
6393
+ -webkit-box-align: center;
6394
+ -webkit-align-items: center;
6395
+ -moz-box-align: center;
6396
+ -ms-flex-align: center;
6397
+ align-items: center;
6398
+ height: 100%;
6399
+ padding: 7px 10px;
6400
+ text-decoration: none;
6401
+ position: relative;
6402
+ }
6403
+
6404
+ .premium-nav-menu-item .premium-dropdown-icon {
6405
+ margin: 5px;
6406
+ }
6407
+
6408
+ .premium-nav-menu-item.menu-item-has-children {
6409
+ position: relative;
6410
+ }
6411
+
6412
+ .premium-nav-menu-item.menu-item-has-children .premium-sub-menu {
6413
+ z-index: 9999;
6414
+ }
6415
+
6416
+ .premium-nav-menu-item.menu-item-has-children .premium-sub-menu .premium-sub-menu-link {
6417
+ -webkit-box-pack: start;
6418
+ -webkit-justify-content: flex-start;
6419
+ -moz-box-pack: start;
6420
+ -ms-flex-pack: start;
6421
+ justify-content: flex-start;
6422
+ }
6423
+
6424
+ .premium-nav-menu-item .menu-link {
6425
+ position: relative;
6426
+ text-decoration: none;
6427
+ }
6428
+
6429
+ .premium-item-badge,
6430
+ .premium-sub-item-badge {
6431
+ position: absolute;
6432
+ padding: 1px 6px;
6433
+ min-width: 35px;
6434
+ text-align: center;
6435
+ font-size: 10px;
6436
+ -webkit-border-radius: 4px;
6437
+ border-radius: 4px;
6438
+ line-height: 1.8;
6439
+ white-space: nowrap;
6440
+ }
6441
+
6442
+ .premium-nav-hor:not(.premium-hamburger-menu) .premium-item-badge,
6443
+ .premium-nav-hor:not(.premium-nav-slide) .premium-item-badge,
6444
+ .premium-nav-hor:not(.premium-nav-dropdown) .premium-item-badge {
6445
+ position: relative;
6446
+ margin: 8px;
6447
+ }
6448
+
6449
+ .premium-nav-hor .premium-sub-item-badge,
6450
+ .premium-nav-slide .premium-sub-item-badge,
6451
+ .premium-nav-dropdown .premium-sub-item-badge,
6452
+ .premium-nav-ver.premium-vertical-right .premium-item-badge,
6453
+ .premium-nav-ver.premium-vertical-right .premium-sub-item-badge {
6454
+ top: 50%;
6455
+ right: 0;
6456
+ -webkit-transform: translateY(-50%);
6457
+ -ms-transform: translateY(-50%);
6458
+ transform: translateY(-50%);
6459
+ }
6460
+
6461
+ .premium-nav-ver.premium-vertical-left .premium-item-badge,
6462
+ .premium-nav-ver.premium-vertical-left .premium-sub-item-badge {
6463
+ top: 50%;
6464
+ left: 0;
6465
+ -webkit-transform: translateY(-50%);
6466
+ -ms-transform: translateY(-50%);
6467
+ transform: translateY(-50%);
6468
+ }
6469
+
6470
+ .premium-mega-nav-item .premium-sub-menu {
6471
+ display: none;
6472
+ }
6473
+
6474
+ .premium-mega-nav-item {
6475
+ position: relative;
6476
+ }
6477
+
6478
+ .premium-hamburger-menu .premium-mega-content-container,
6479
+ .premium-nav-dropdown .premium-mega-content-container,
6480
+ .premium-nav-slide .premium-mega-content-container {
6481
+ display: none;
6482
+ }
6483
+
6484
+ .premium-mega-item-static {
6485
+ position: static !important;
6486
+ }
6487
+
6488
+ .premium-hamburger-menu .premium-nav-menu-container,
6489
+ .premium-nav-dropdown .premium-nav-menu-container,
6490
+ .premium-nav-slide .premium-nav-menu-container {
6491
+ display: none;
6492
+ }
6493
+
6494
+ .premium-hamburger-menu .premium-hamburger-toggle,
6495
+ .premium-nav-dropdown .premium-hamburger-toggle,
6496
+ .premium-nav-slide .premium-hamburger-toggle {
6497
+ -js-display: inline-flex;
6498
+ display: -webkit-inline-box;
6499
+ display: -webkit-inline-flex;
6500
+ display: -moz-inline-box;
6501
+ display: -ms-inline-flexbox;
6502
+ display: inline-flex;
6503
+ }
6504
+
6505
+ .premium-hidden-icon-yes.premium-hamburger-menu .premium-item-icon,
6506
+ .premium-hidden-icon-yes.premium-hamburger-menu .premium-sub-item-icon,
6507
+ .premium-hidden-icon-yes.premium-nav-dropdown .premium-item-icon,
6508
+ .premium-hidden-icon-yes.premium-nav-dropdown .premium-sub-item-icon,
6509
+ .premium-hidden-icon-yes.premium-nav-slide .premium-item-icon,
6510
+ .premium-hidden-icon-yes.premium-nav-slide .premium-sub-item-icon {
6511
+ display: none;
6512
+ }
6513
+
6514
+ .premium-hidden-badge-yes.premium-hamburger-menu .premium-item-badge,
6515
+ .premium-hidden-badge-yes.premium-hamburger-menu .premium-sub-item-badge,
6516
+ .premium-hidden-badge-yes.premium-nav-dropdown .premium-item-badge,
6517
+ .premium-hidden-badge-yes.premium-nav-dropdown .premium-sub-item-badge,
6518
+ .premium-hidden-badge-yes.premium-nav-slide .premium-item-badge,
6519
+ .premium-hidden-badge-yes.premium-nav-slide .premium-sub-item-badge {
6520
+ display: none;
6521
+ }
6522
+
6523
+ .premium-ham-dropdown .premium-mobile-menu-container,
6524
+ .premium-nav-dropdown .premium-mobile-menu-container {
6525
+ -js-display: flex;
6526
+ display: -webkit-box;
6527
+ display: -webkit-flex;
6528
+ display: -moz-box;
6529
+ display: -ms-flexbox;
6530
+ display: flex;
6531
+ }
6532
+
6533
+ .premium-ham-dropdown .premium-toggle-opened .premium-toggle-close,
6534
+ .premium-nav-dropdown .premium-toggle-opened .premium-toggle-close {
6535
+ display: inline !important;
6536
+ }
6537
+
6538
+ .premium-ham-dropdown .premium-toggle-opened .premium-toggle-text,
6539
+ .premium-nav-dropdown .premium-toggle-opened .premium-toggle-text {
6540
+ display: none !important;
6541
+ }
6542
+
6543
+ .premium-stretch-dropdown .premium-mobile-menu-container {
6544
+ position: absolute;
6545
+ z-index: 9999;
6546
+ }
6547
+
6548
+ .premium-nav-default {
6549
+ display: none;
6550
+ }
6551
+
6552
+ .premium-hamburger-toggle {
6553
+ width: 100%;
6554
+ }
6555
+
6556
  /*
6557
+ * Pointer & Pointer Animations
6558
+ */
6559
+ .premium-menu-link-parent::before,
6560
+ .premium-menu-link-parent::after {
6561
+ display: block;
6562
+ position: absolute;
6563
+ -webkit-transition: all 0.3s cubic-bezier(0.58, 0.3, 0.005, 1);
6564
+ transition: all 0.3s cubic-bezier(0.58, 0.3, 0.005, 1);
6565
+ }
6566
+
6567
+ .premium-nav-pointer-underline .premium-menu-link-parent::after,
6568
+ .premium-nav-pointer-double-line .premium-menu-link-parent::after {
6569
+ content: "";
6570
+ bottom: 0;
6571
+ }
6572
+
6573
+ .premium-nav-pointer-overline .premium-menu-link-parent::before,
6574
+ .premium-nav-pointer-double-line .premium-menu-link-parent::before {
6575
+ content: "";
6576
+ top: 0;
6577
+ }
6578
+
6579
+ .premium-nav-pointer-underline .premium-menu-link-parent::before,
6580
+ .premium-nav-pointer-underline .premium-menu-link-parent::after,
6581
+ .premium-nav-pointer-overline .premium-menu-link-parent::before,
6582
+ .premium-nav-pointer-overline .premium-menu-link-parent::after,
6583
+ .premium-nav-pointer-double-line .premium-menu-link-parent::before,
6584
+ .premium-nav-pointer-double-line .premium-menu-link-parent::after {
6585
+ height: 3px;
6586
+ width: 100%;
6587
+ left: 0;
6588
+ background-color: #55595c;
6589
+ z-index: 2;
6590
+ }
6591
+
6592
+ .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before,
6593
+ .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::after {
6594
+ opacity: 0;
6595
+ }
6596
+
6597
+ .premium-nav-pointer-underline.premium-nav-animation-none,
6598
+ .premium-nav-pointer-overline.premium-nav-animation-none,
6599
+ .premium-nav-pointer-double-line.premium-nav-animation-none {
6600
+ -webkit-transition-duration: 0s;
6601
+ transition-duration: 0s;
6602
+ }
6603
+
6604
+ .premium-nav-pointer-underline.premium-nav-animation-none .premium-menu-link-parent,
6605
+ .premium-nav-pointer-underline.premium-nav-animation-none .premium-menu-link-parent::before,
6606
+ .premium-nav-pointer-underline.premium-nav-animation-none .premium-menu-link-parent::after,
6607
+ .premium-nav-pointer-underline.premium-nav-animation-none .premium-menu-link-parent:focus,
6608
+ .premium-nav-pointer-underline.premium-nav-animation-none .premium-menu-link-parent:hover,
6609
+ .premium-nav-pointer-overline.premium-nav-animation-none .premium-menu-link-parent,
6610
+ .premium-nav-pointer-overline.premium-nav-animation-none .premium-menu-link-parent::before,
6611
+ .premium-nav-pointer-overline.premium-nav-animation-none .premium-menu-link-parent::after,
6612
+ .premium-nav-pointer-overline.premium-nav-animation-none .premium-menu-link-parent:focus,
6613
+ .premium-nav-pointer-overline.premium-nav-animation-none .premium-menu-link-parent:hover,
6614
+ .premium-nav-pointer-double-line.premium-nav-animation-none .premium-menu-link-parent,
6615
+ .premium-nav-pointer-double-line.premium-nav-animation-none .premium-menu-link-parent::before,
6616
+ .premium-nav-pointer-double-line.premium-nav-animation-none .premium-menu-link-parent::after,
6617
+ .premium-nav-pointer-double-line.premium-nav-animation-none .premium-menu-link-parent:focus,
6618
+ .premium-nav-pointer-double-line.premium-nav-animation-none .premium-menu-link-parent:hover {
6619
+ -webkit-transition-duration: 0s;
6620
+ transition-duration: 0s;
6621
+ }
6622
+
6623
+ .premium-nav-pointer-underline.premium-nav-animation-slide .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::after,
6624
+ .premium-nav-pointer-double-line.premium-nav-animation-slide .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::after {
6625
+ width: 10px;
6626
+ inset-inline-start: 100%;
6627
+ }
6628
+
6629
+ .premium-nav-pointer-overline.premium-nav-animation-slide .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before,
6630
+ .premium-nav-pointer-double-line.premium-nav-animation-slide .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before {
6631
+ width: 10px;
6632
+ left: -20px;
6633
+ }
6634
+
6635
+ .premium-nav-pointer-underline.premium-nav-animation-grow .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before,
6636
+ .premium-nav-pointer-underline.premium-nav-animation-grow .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::after,
6637
+ .premium-nav-pointer-overline.premium-nav-animation-grow .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before,
6638
+ .premium-nav-pointer-overline.premium-nav-animation-grow .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::after,
6639
+ .premium-nav-pointer-double-line.premium-nav-animation-grow .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before,
6640
+ .premium-nav-pointer-double-line.premium-nav-animation-grow .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::after {
6641
+ height: 0;
6642
+ width: 0;
6643
+ left: 50%;
6644
+ }
6645
+
6646
+ .premium-nav-pointer-underline.premium-nav-animation-drop-in .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before,
6647
+ .premium-nav-pointer-overline.premium-nav-animation-drop-in .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before,
6648
+ .premium-nav-pointer-double-line.premium-nav-animation-drop-in .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before {
6649
+ top: -10px;
6650
+ }
6651
+
6652
+ .premium-nav-pointer-underline.premium-nav-animation-drop-in .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::after,
6653
+ .premium-nav-pointer-overline.premium-nav-animation-drop-in .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::after,
6654
+ .premium-nav-pointer-double-line.premium-nav-animation-drop-in .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::after {
6655
+ bottom: -10px;
6656
+ }
6657
+
6658
+ .premium-nav-pointer-underline.premium-nav-animation-drop-out .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before,
6659
+ .premium-nav-pointer-overline.premium-nav-animation-drop-out .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before,
6660
+ .premium-nav-pointer-double-line.premium-nav-animation-drop-out .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before {
6661
+ top: 10px;
6662
+ }
6663
+
6664
+ .premium-nav-pointer-underline.premium-nav-animation-drop-out .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::after,
6665
+ .premium-nav-pointer-overline.premium-nav-animation-drop-out .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::after,
6666
+ .premium-nav-pointer-double-line.premium-nav-animation-drop-out .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::after {
6667
+ bottom: 10px;
6668
+ }
6669
+
6670
+ .premium-nav-pointer-framed .premium-menu-link-parent::before {
6671
+ content: "";
6672
+ }
6673
+
6674
+ .premium-nav-pointer-framed .premium-menu-link-parent::before,
6675
+ .premium-nav-pointer-framed .premium-menu-link-parent::after {
6676
+ background: transparent;
6677
+ left: 0;
6678
+ top: 0;
6679
+ bottom: 0;
6680
+ right: 0;
6681
+ border: 3px solid #55595c;
6682
+ }
6683
+
6684
+ .premium-nav-pointer-framed.premium-nav-animation-grow .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before {
6685
+ -webkit-transform: scale(0.75);
6686
+ -ms-transform: scale(0.75);
6687
+ transform: scale(0.75);
6688
+ }
6689
+
6690
+ .premium-nav-pointer-framed.premium-nav-animation-shrink .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before {
6691
+ -webkit-transform: scale(1.25);
6692
+ -ms-transform: scale(1.25);
6693
+ transform: scale(1.25);
6694
+ }
6695
+
6696
+ .premium-nav-pointer-framed.premium-nav-animation-draw .premium-menu-link-parent::before,
6697
+ .premium-nav-pointer-framed.premium-nav-animation-draw .premium-menu-link-parent::after {
6698
+ width: 3px;
6699
+ height: 3px;
6700
+ }
6701
+
6702
+ .premium-nav-pointer-framed.premium-nav-animation-draw .premium-menu-link-parent::before {
6703
+ border-width: 0 0 3px 3px;
6704
+ -webkit-transition: width 0.1s 0.2s, height 0.1s 0.3s, opacity 0.12s 0.22s;
6705
+ transition: width 0.1s 0.2s, height 0.1s 0.3s, opacity 0.12s 0.22s;
6706
+ }
6707
+
6708
+ .premium-nav-pointer-framed.premium-nav-animation-draw .premium-menu-link-parent::after {
6709
+ content: "";
6710
+ top: auto;
6711
+ bottom: 0;
6712
+ left: auto;
6713
+ right: 0;
6714
+ border-width: 3px 3px 0 0;
6715
+ -webkit-transition: width 0.1s, height 0.1s 0.1s, opacity 0.02s 0.18s;
6716
+ transition: width 0.1s, height 0.1s 0.1s, opacity 0.02s 0.18s;
6717
+ }
6718
+
6719
+ .premium-nav-pointer-framed.premium-nav-animation-draw .premium-menu-link-parent:hover::before,
6720
+ .premium-nav-pointer-framed.premium-nav-animation-draw .premium-menu-link-parent:focus::before {
6721
+ -webkit-transition: opacity 0.02s, height 0.1s, width 0.1s 0.1s;
6722
+ transition: opacity 0.02s, height 0.1s, width 0.1s 0.1s;
6723
+ }
6724
+
6725
+ .premium-nav-pointer-framed.premium-nav-animation-draw .premium-menu-link-parent:hover::after,
6726
+ .premium-nav-pointer-framed.premium-nav-animation-draw .premium-menu-link-parent:focus::after {
6727
+ -webkit-transition: opacity 0.02s 0.2s, height 0.1s 0.2s, width 0.1s 0.3s;
6728
+ transition: opacity 0.02s 0.2s, height 0.1s 0.2s, width 0.1s 0.3s;
6729
+ }
6730
+
6731
+ .premium-nav-pointer-framed.premium-nav-animation-draw .premium-menu-link-parent:hover::before,
6732
+ .premium-nav-pointer-framed.premium-nav-animation-draw .premium-menu-link-parent:hover::after,
6733
+ .premium-nav-pointer-framed.premium-nav-animation-draw .premium-menu-link-parent:focus::before,
6734
+ .premium-nav-pointer-framed.premium-nav-animation-draw .premium-menu-link-parent:focus::after {
6735
+ width: 100%;
6736
+ height: 100%;
6737
+ }
6738
+
6739
+ .premium-nav-pointer-framed.premium-nav-animation-draw .premium-active-item .premium-menu-link-parent::before {
6740
+ -webkit-transition: opacity 0.02s, height 0.1s, width 0.1s 0.1s;
6741
+ transition: opacity 0.02s, height 0.1s, width 0.1s 0.1s;
6742
+ }
6743
+
6744
+ .premium-nav-pointer-framed.premium-nav-animation-draw .premium-active-item .premium-menu-link-parent::after {
6745
+ -webkit-transition: opacity 0.02s 0.2s, height 0.1s 0.2s, width 0.1s 0.3s;
6746
+ transition: opacity 0.02s 0.2s, height 0.1s 0.2s, width 0.1s 0.3s;
6747
+ }
6748
+
6749
+ .premium-nav-pointer-framed.premium-nav-animation-draw .premium-active-item .premium-menu-link-parent::before,
6750
+ .premium-nav-pointer-framed.premium-nav-animation-draw .premium-active-item .premium-menu-link-parent::after {
6751
+ width: 100%;
6752
+ height: 100%;
6753
+ }
6754
+
6755
+ .premium-nav-pointer-framed.premium-nav-animation-corners .premium-menu-link-parent::before {
6756
+ border-width: 3px 0 0 3px;
6757
+ }
6758
+
6759
+ .premium-nav-pointer-framed.premium-nav-animation-corners .premium-menu-link-parent::after {
6760
+ content: "";
6761
+ top: auto;
6762
+ bottom: 0;
6763
+ left: auto;
6764
+ right: 0;
6765
+ border-width: 0 3px 3px 0;
6766
+ }
6767
+
6768
+ .premium-nav-pointer-framed.premium-nav-animation-corners .premium-menu-link-parent::before,
6769
+ .premium-nav-pointer-framed.premium-nav-animation-corners .premium-menu-link-parent::after {
6770
+ width: 3px;
6771
+ height: 3px;
6772
+ }
6773
+
6774
+ .premium-nav-pointer-framed.premium-nav-animation-corners .premium-menu-link-parent:hover::before,
6775
+ .premium-nav-pointer-framed.premium-nav-animation-corners .premium-menu-link-parent:hover::after,
6776
+ .premium-nav-pointer-framed.premium-nav-animation-corners .premium-menu-link-parent:focus::before,
6777
+ .premium-nav-pointer-framed.premium-nav-animation-corners .premium-menu-link-parent:focus::after {
6778
+ width: 100%;
6779
+ height: 100%;
6780
+ -webkit-transition: opacity 2ms, width 0.4s, height 0.4s;
6781
+ transition: opacity 2ms, width 0.4s, height 0.4s;
6782
+ }
6783
+
6784
+ .premium-nav-pointer-framed.premium-nav-animation-corners .premium-active-item .premium-menu-link-parent::before,
6785
+ .premium-nav-pointer-framed.premium-nav-animation-corners .premium-active-item .premium-menu-link-parent::after {
6786
+ width: 100%;
6787
+ height: 100%;
6788
+ -webkit-transition: opacity 2ms, width 0.4s, height 0.4s;
6789
+ transition: opacity 2ms, width 0.4s, height 0.4s;
6790
+ }
6791
+
6792
+ .premium-nav-pointer-text.premium-nav-animation-grow .premium-menu-link-parent:hover,
6793
+ .premium-nav-pointer-text.premium-nav-animation-grow .premium-menu-link-parent:focus {
6794
+ -webkit-transform: scale(1.2);
6795
+ -ms-transform: scale(1.2);
6796
+ transform: scale(1.2);
6797
+ }
6798
+
6799
+ .premium-nav-pointer-text.premium-nav-animation-shrink .premium-menu-link-parent:hover,
6800
+ .premium-nav-pointer-text.premium-nav-animation-shrink .premium-menu-link-parent:focus {
6801
+ -webkit-transform: scale(0.8);
6802
+ -ms-transform: scale(0.8);
6803
+ transform: scale(0.8);
6804
+ }
6805
+
6806
+ .premium-nav-pointer-text.premium-nav-animation-sink .premium-menu-link-parent:hover,
6807
+ .premium-nav-pointer-text.premium-nav-animation-sink .premium-menu-link-parent:focus {
6808
+ -webkit-transform: translateY(8px);
6809
+ -ms-transform: translateY(8px);
6810
+ transform: translateY(8px);
6811
+ }
6812
+
6813
+ .premium-nav-pointer-text.premium-nav-animation-float .premium-menu-link-parent:hover,
6814
+ .premium-nav-pointer-text.premium-nav-animation-float .premium-menu-link-parent:focus {
6815
+ -webkit-transform: translateY(-8px);
6816
+ -ms-transform: translateY(-8px);
6817
+ transform: translateY(-8px);
6818
+ }
6819
+
6820
+ .premium-nav-pointer-text.premium-nav-animation-skew .premium-menu-link-parent:hover,
6821
+ .premium-nav-pointer-text.premium-nav-animation-skew .premium-menu-link-parent:focus {
6822
+ -webkit-transform: skew(-8deg);
6823
+ -ms-transform: skew(-8deg);
6824
+ transform: skew(-8deg);
6825
+ }
6826
+
6827
+ .premium-nav-pointer-text.premium-nav-animation-rotate .premium-menu-link-parent:hover,
6828
+ .premium-nav-pointer-text.premium-nav-animation-rotate .premium-menu-link-parent:focus {
6829
+ -webkit-transform: rotate(6deg);
6830
+ -ms-transform: rotate(6deg);
6831
+ transform: rotate(6deg);
6832
+ }
6833
+
6834
+ .premium-nav-pointer-background .premium-menu-link-parent::before {
6835
+ top: 0;
6836
+ left: 0;
6837
+ right: 0;
6838
+ bottom: 0;
6839
+ background: #55595c;
6840
+ background-color: #55595c;
6841
+ z-index: -1;
6842
+ }
6843
+
6844
+ .premium-nav-pointer-background .premium-menu-link-parent::before,
6845
+ .premium-nav-pointer-background .premium-menu-link-parent::after {
6846
+ content: "";
6847
+ -webkit-transition: 0.3s;
6848
+ transition: 0.3s;
6849
+ }
6850
+
6851
+ .premium-nav-pointer-background.premium-nav-animation-grow .premium-menu-link-parent::before {
6852
+ -webkit-transform: scale(0.5);
6853
+ -ms-transform: scale(0.5);
6854
+ transform: scale(0.5);
6855
+ }
6856
+
6857
+ .premium-nav-pointer-background.premium-nav-animation-grow .premium-menu-link-parent:hover::before,
6858
+ .premium-nav-pointer-background.premium-nav-animation-grow .premium-menu-link-parent:focus::before {
6859
+ -webkit-transform: scale(1);
6860
+ -ms-transform: scale(1);
6861
+ transform: scale(1);
6862
+ }
6863
+
6864
+ .premium-nav-pointer-background.premium-nav-animation-grow .premium-active-item .premium-menu-link-parent::before {
6865
+ -webkit-transform: scale(1);
6866
+ -ms-transform: scale(1);
6867
+ transform: scale(1);
6868
+ }
6869
+
6870
+ .premium-nav-pointer-background.premium-nav-animation-shrink .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before {
6871
+ -webkit-transform: scale(1.2);
6872
+ -ms-transform: scale(1.2);
6873
+ transform: scale(1.2);
6874
+ -webkit-transition: 0.3;
6875
+ transition: 0.3;
6876
+ }
6877
+
6878
+ .premium-nav-pointer-background.premium-nav-animation-sweep-left .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before {
6879
+ left: 100%;
6880
+ }
6881
+
6882
+ .premium-nav-pointer-background.premium-nav-animation-sweep-right .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before {
6883
+ right: 100%;
6884
+ }
6885
+
6886
+ .premium-nav-pointer-background.premium-nav-animation-sweep-up .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before {
6887
+ top: 100%;
6888
+ }
6889
+
6890
+ .premium-nav-pointer-background.premium-nav-animation-sweep-down .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before {
6891
+ bottom: 100%;
6892
+ }
6893
+
6894
+ .premium-nav-pointer-background.premium-nav-animation-shutter-in-vertical .premium-menu-link-parent::after,
6895
+ .premium-nav-pointer-background.premium-nav-animation-shutter-in-horizontal .premium-menu-link-parent::after {
6896
+ top: 0;
6897
+ left: 0;
6898
+ right: 0;
6899
+ bottom: 0;
6900
+ background: #55595c;
6901
+ background-color: #55595c;
6902
+ z-index: -1;
6903
+ }
6904
+
6905
+ .premium-nav-pointer-background.premium-nav-animation-shutter-in-vertical .premium-menu-link-parent::before {
6906
+ top: 0;
6907
+ bottom: 100%;
6908
+ }
6909
+
6910
+ .premium-nav-pointer-background.premium-nav-animation-shutter-in-vertical .premium-menu-link-parent::after {
6911
+ top: 100%;
6912
+ bottom: 0;
6913
+ }
6914
+
6915
+ .premium-nav-pointer-background.premium-nav-animation-shutter-in-vertical .premium-menu-link-parent:hover::before,
6916
+ .premium-nav-pointer-background.premium-nav-animation-shutter-in-vertical .premium-menu-link-parent:focus::before {
6917
+ bottom: 50%;
6918
+ }
6919
+
6920
+ .premium-nav-pointer-background.premium-nav-animation-shutter-in-vertical .premium-menu-link-parent:hover::after,
6921
+ .premium-nav-pointer-background.premium-nav-animation-shutter-in-vertical .premium-menu-link-parent:focus::after {
6922
+ top: 50%;
6923
+ }
6924
+
6925
+ .premium-nav-pointer-background.premium-nav-animation-shutter-in-vertical .premium-active-item .premium-menu-link-parent::before {
6926
+ bottom: 50%;
6927
+ }
6928
+
6929
+ .premium-nav-pointer-background.premium-nav-animation-shutter-in-vertical .premium-active-item .premium-menu-link-parent::after {
6930
+ top: 50%;
6931
+ }
6932
+
6933
+ .premium-nav-pointer-background.premium-nav-animation-shutter-out-vertical .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before {
6934
+ bottom: 50%;
6935
+ top: 50%;
6936
+ }
6937
+
6938
+ .premium-nav-pointer-background.premium-nav-animation-shutter-in-horizontal .premium-menu-link-parent::before {
6939
+ right: 0;
6940
+ left: 100%;
6941
+ }
6942
+
6943
+ .premium-nav-pointer-background.premium-nav-animation-shutter-in-horizontal .premium-menu-link-parent::after {
6944
+ right: 100%;
6945
+ left: 0;
6946
+ }
6947
+
6948
+ .premium-nav-pointer-background.premium-nav-animation-shutter-in-horizontal .premium-menu-link-parent:hover::before,
6949
+ .premium-nav-pointer-background.premium-nav-animation-shutter-in-horizontal .premium-menu-link-parent:focus::before {
6950
+ left: 50%;
6951
+ }
6952
+
6953
+ .premium-nav-pointer-background.premium-nav-animation-shutter-in-horizontal .premium-menu-link-parent:hover::after,
6954
+ .premium-nav-pointer-background.premium-nav-animation-shutter-in-horizontal .premium-menu-link-parent:focus::after {
6955
+ right: 50%;
6956
+ }
6957
+
6958
+ .premium-nav-pointer-background.premium-nav-animation-shutter-in-horizontal .premium-active-item .premium-menu-link-parent::before {
6959
+ left: 50%;
6960
+ }
6961
+
6962
+ .premium-nav-pointer-background.premium-nav-animation-shutter-in-horizontal .premium-active-item .premium-menu-link-parent::after {
6963
+ right: 50%;
6964
+ }
6965
+
6966
+ .premium-nav-pointer-background.premium-nav-animation-shutter-out-horizontal .premium-nav-menu-item:not(.premium-active-item) .premium-menu-link-parent:not(:hover):not(:focus)::before {
6967
+ left: 50%;
6968
+ right: 50%;
6969
+ }
6970
+
6971
+ .premium-active-item::before,
6972
+ .premium-active-item::after,
6973
+ .premium-menu-link-parent:hover::before,
6974
+ .premium-menu-link-parent:hover::after,
6975
+ .premium-menu-link-parent:focus::before,
6976
+ .premium-menu-link-parent:focus::after {
6977
+ -webkit-transform: scale(1);
6978
+ -ms-transform: scale(1);
6979
+ transform: scale(1);
6980
+ }
6981
+
6982
+ /**Sub Menu Animation*/
6983
+ .premium-nav-menu-item .premium-sub-menu,
6984
+ .premium-nav-menu-item .premium-mega-content-container {
6985
+ -webkit-transition: 0.5s all ease-in-out;
6986
+ transition: 0.5s all ease-in-out;
6987
+ -webkit-transition-delay: 0.1s;
6988
+ transition-delay: 0.1s;
6989
+ }
6990
+
6991
+ [class*="premium-nav-slide-"].premium-nav-hor:not(.premium-hamburger-menu) .premium-nav-menu-item:hover>.premium-sub-menu,
6992
+ [class*="premium-nav-slide-"].premium-nav-hor:not(.premium-hamburger-menu) .premium-nav-menu-item:hover>.premium-mega-content-container,
6993
+ [class*="premium-nav-slide-"].premium-nav-hor:not(.premium-hamburger-menu) .premium-sub-menu:hover>.premium-sub-menu,
6994
+ [class*="premium-nav-slide-"].premium-nav-ver:not(.premium-hamburger-menu) .premium-nav-menu-item:hover>.premium-sub-menu,
6995
+ [class*="premium-nav-slide-"].premium-nav-ver:not(.premium-hamburger-menu) .premium-nav-menu-item:hover>.premium-mega-content-container,
6996
+ [class*="premium-nav-slide-"].premium-nav-ver:not(.premium-hamburger-menu) .premium-sub-menu:hover>.premium-sub-menu {
6997
+ -webkit-transform: translate(0);
6998
+ -ms-transform: translate(0);
6999
+ transform: translate(0);
7000
+ }
7001
+
7002
+ .premium-nav-slide-up.premium-nav-hor:not(.premium-hamburger-menu) .premium-sub-menu,
7003
+ .premium-nav-slide-up.premium-nav-hor:not(.premium-hamburger-menu) .premium-mega-content-container,
7004
+ .premium-nav-slide-up.premium-nav-ver:not(.premium-hamburger-menu) .premium-sub-menu,
7005
+ .premium-nav-slide-up.premium-nav-ver:not(.premium-hamburger-menu) .premium-mega-content-container {
7006
+ -webkit-transform: translateY(10px);
7007
+ -ms-transform: translateY(10px);
7008
+ transform: translateY(10px);
7009
+ }
7010
+
7011
+ .premium-nav-slide-down.premium-nav-hor:not(.premium-hamburger-menu) .premium-sub-menu,
7012
+ .premium-nav-slide-down.premium-nav-hor:not(.premium-hamburger-menu) .premium-mega-content-container,
7013
+ .premium-nav-slide-down.premium-nav-ver:not(.premium-hamburger-menu) .premium-sub-menu,
7014
+ .premium-nav-slide-down.premium-nav-ver:not(.premium-hamburger-menu) .premium-mega-content-container {
7015
+ -webkit-transform: translateY(-10px);
7016
+ -ms-transform: translateY(-10px);
7017
+ transform: translateY(-10px);
7018
+ }
7019
+
7020
+ .premium-nav-slide-right.premium-nav-hor:not(.premium-hamburger-menu) .premium-sub-menu,
7021
+ .premium-nav-slide-right.premium-nav-hor:not(.premium-hamburger-menu) .premium-mega-content-container,
7022
+ .premium-nav-slide-right.premium-nav-ver:not(.premium-hamburger-menu) .premium-sub-menu,
7023
+ .premium-nav-slide-right.premium-nav-ver:not(.premium-hamburger-menu) .premium-mega-content-container {
7024
+ -webkit-transform: translateX(-10px);
7025
+ -ms-transform: translateX(-10px);
7026
+ transform: translateX(-10px);
7027
+ }
7028
+
7029
+ .premium-nav-slide-left.premium-nav-hor:not(.premium-hamburger-menu) .premium-sub-menu,
7030
+ .premium-nav-slide-left.premium-nav-hor:not(.premium-hamburger-menu) .premium-mega-content-container,
7031
+ .premium-nav-slide-left.premium-nav-ver:not(.premium-hamburger-menu) .premium-sub-menu,
7032
+ .premium-nav-slide-left.premium-nav-ver:not(.premium-hamburger-menu) .premium-mega-content-container {
7033
+ -webkit-transform: translateX(10px);
7034
+ -ms-transform: translateX(10px);
7035
+ transform: translateX(10px);
7036
+ }
7037
+
7038
+ /**Horizontal - Static Mega Content*/
7039
+ /*UP*/
7040
+ .premium-nav-slide-up.premium-nav-hor:not(.premium-hamburger-menu) .premium-mega-item-static .premium-mega-content-container {
7041
+ -webkit-transform: translateX(-50%) translateY(10px);
7042
+ -ms-transform: translateX(-50%) translateY(10px);
7043
+ transform: translateX(-50%) translateY(10px);
7044
+ }
7045
+
7046
+ .premium-nav-slide-up.premium-nav-hor:not(.premium-hamburger-menu) .premium-mega-item-static:hover .premium-mega-content-container {
7047
+ -webkit-transform: translateX(-50%) translateY(0);
7048
+ -ms-transform: translateX(-50%) translateY(0);
7049
+ transform: translateX(-50%) translateY(0);
7050
+ }
7051
+
7052
+ /*DOWN*/
7053
+ .premium-nav-slide-down.premium-nav-hor:not(.premium-hamburger-menu) .premium-mega-item-static .premium-mega-content-container {
7054
+ -webkit-transform: translateX(-50%) translateY(-10px);
7055
+ -ms-transform: translateX(-50%) translateY(-10px);
7056
+ transform: translateX(-50%) translateY(-10px);
7057
+ }
7058
+
7059
+ .premium-nav-slide-down.premium-nav-hor:not(.premium-hamburger-menu) .premium-mega-item-static:hover .premium-mega-content-container {
7060
+ -webkit-transform: translateX(-50%) translateY(0);
7061
+ -ms-transform: translateX(-50%) translateY(0);
7062
+ transform: translateX(-50%) translateY(0);
7063
+ }
7064
+
7065
+ /*Left*/
7066
+ .premium-nav-slide-left.premium-nav-hor:not(.premium-hamburger-menu) .premium-mega-item-static .premium-mega-content-container {
7067
+ -webkit-transform: translateX(-45%);
7068
+ -ms-transform: translateX(-45%);
7069
+ transform: translateX(-45%);
7070
+ }
7071
+
7072
+ .premium-nav-slide-left.premium-nav-hor:not(.premium-hamburger-menu) .premium-mega-item-static:hover .premium-mega-content-container {
7073
+ -webkit-transform: translateX(-50%);
7074
+ -ms-transform: translateX(-50%);
7075
+ transform: translateX(-50%);
7076
+ }
7077
+
7078
+ /*Right*/
7079
+ .premium-nav-slide-right.premium-nav-hor:not(.premium-hamburger-menu) .premium-mega-item-static .premium-mega-content-container {
7080
+ -webkit-transform: translateX(-55%);
7081
+ -ms-transform: translateX(-55%);
7082
+ transform: translateX(-55%);
7083
+ }
7084
+
7085
+ .premium-nav-slide-right.premium-nav-hor:not(.premium-hamburger-menu) .premium-mega-item-static:hover .premium-mega-content-container {
7086
+ -webkit-transform: translateX(-50%);
7087
+ -ms-transform: translateX(-50%);
7088
+ transform: translateX(-50%);
7089
+ }
7090
+
7091
+ /**Vertical - Static Mega Content*/
7092
+ .premium-nav-slide-down.premium-nav-ver:not(.premium-hamburger-menu) .premium-mega-item-static:hover .premium-mega-content-container,
7093
+ .premium-nav-slide-up.premium-nav-ver:not(.premium-hamburger-menu) .premium-mega-item-static:hover .premium-mega-content-container {
7094
+ -webkit-transform: translateY(0);
7095
+ -ms-transform: translateY(0);
7096
+ transform: translateY(0);
7097
+ }
7098
+
7099
+ .premium-nav-slide-right.premium-nav-ver:not(.premium-hamburger-menu) .premium-mega-item-static:hover .premium-mega-content-container,
7100
+ .premium-nav-slide-left.premium-nav-ver:not(.premium-hamburger-menu) .premium-mega-item-static:hover .premium-mega-content-container {
7101
+ -webkit-transform: translateX(0);
7102
+ -ms-transform: translateX(0);
7103
+ transform: translateX(0);
7104
+ }
7105
+
7106
+ /************ Premium Team Members ************/
7107
+ /**********************************************/
7108
+ .premium-person-container {
7109
+ position: relative;
7110
+ }
7111
+
7112
+ .premium-person-image-container {
7113
+ position: relative;
7114
+ text-align: center;
7115
+ overflow: hidden;
7116
+ }
7117
+
7118
+ .premium-person-image-container .premium-person-image-wrap {
7119
+ overflow: hidden;
7120
+ }
7121
+
7122
+ .premium-person-zoomout-effect .premium-person-image-container img,
7123
+ .premium-person-scale-effect .premium-person-image-container img {
7124
+ -webkit-transform: scale(1.2);
7125
+ -ms-transform: scale(1.2);
7126
+ transform: scale(1.2);
7127
+ }
7128
+
7129
+ .premium-person-sepia-effect .premium-person-image-container img {
7130
+ -webkit-filter: sepia(30%);
7131
+ filter: sepia(30%);
7132
+ }
7133
+
7134
+ .premium-person-bright-effect .premium-person-image-container img {
7135
+ -webkit-filter: brightness(1);
7136
+ filter: brightness(1);
7137
+ }
7138
+
7139
+ .premium-person-trans-effect .premium-person-image-container img {
7140
+ -webkit-transform: translateX(-15px) scale(1.1);
7141
+ -ms-transform: translateX(-15px) scale(1.1);
7142
+ transform: translateX(-15px) scale(1.1);
7143
+ }
7144
+
7145
+ .premium-person-zoomin-effect:hover .premium-person-image-container img {
7146
+ -webkit-transform: scale(1.2);
7147
+ -ms-transform: scale(1.2);
7148
+ transform: scale(1.2);
7149
+ }
7150
+
7151
+ .premium-person-zoomout-effect:hover .premium-person-image-container img {
7152
+ -webkit-transform: scale(1.1);
7153
+ -ms-transform: scale(1.1);
7154
+ transform: scale(1.1);
7155
+ }
7156
+
7157
+ .premium-person-scale-effect:hover .premium-person-image-container img {
7158
+ -webkit-transform: scale(1.3) rotate(5deg);
7159
+ -ms-transform: scale(1.3) rotate(5deg);
7160
+ transform: scale(1.3) rotate(5deg);
7161
+ }
7162
+
7163
+ .premium-person-grayscale-effect:hover .premium-person-image-container img {
7164
+ -webkit-filter: grayscale(100%);
7165
+ filter: grayscale(100%);
7166
+ }
7167
+
7168
+ .premium-person-blur-effect:hover .premium-person-image-container img {
7169
+ -webkit-filter: blur(3px);
7170
+ filter: blur(3px);
7171
+ }
7172
+
7173
+ .premium-person-sepia-effect:hover .premium-person-image-container img {
7174
+ -webkit-filter: sepia(0%);
7175
+ filter: sepia(0%);
7176
+ }
7177
+
7178
+ .premium-person-bright-effect:hover .premium-person-image-container img {
7179
+ -webkit-filter: brightness(1.2);
7180
+ filter: brightness(1.2);
7181
+ }
7182
+
7183
+ .premium-person-trans-effect:hover .premium-person-image-container img {
7184
+ -webkit-transform: translateX(0px) scale(1.1);
7185
+ -ms-transform: translateX(0px) scale(1.1);
7186
+ transform: translateX(0px) scale(1.1);
7187
+ }
7188
+
7189
+ .premium-person-container .premium-person-image-container img {
7190
+ width: 100%;
7191
+ height: 100%;
7192
+ display: block;
7193
+ -o-object-fit: cover;
7194
+ object-fit: cover;
7195
+ -webkit-transition: all 0.5s ease-in-out;
7196
+ transition: all 0.5s ease-in-out;
7197
+ }
7198
+
7199
+ .premium-person-style2 .premium-person-social {
7200
+ position: absolute;
7201
+ top: 0;
7202
+ left: 0;
7203
+ width: 100%;
7204
+ height: 100%;
7205
+ z-index: 2;
7206
+ -js-display: flex;
7207
+ display: -webkit-box;
7208
+ display: -webkit-flex;
7209
+ display: -moz-box;
7210
+ display: -ms-flexbox;
7211
+ display: flex;
7212
+ -webkit-box-pack: center;
7213
+ -webkit-justify-content: center;
7214
+ -moz-box-pack: center;
7215
+ -ms-flex-pack: center;
7216
+ justify-content: center;
7217
+ -webkit-box-align: center;
7218
+ -webkit-align-items: center;
7219
+ -moz-box-align: center;
7220
+ -ms-flex-align: center;
7221
+ align-items: center;
7222
+ -webkit-box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
7223
+ box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
7224
+ -webkit-transition: all 0.5s linear 0s;
7225
+ transition: all 0.5s linear 0s;
7226
+ opacity: 0;
7227
+ }
7228
+
7229
+ .premium-person-style2 .premium-person-image-container:hover .premium-person-social {
7230
+ opacity: 1;
7231
+ }
7232
+
7233
+ .premium-person-list-item a {
7234
+ display: inline-block;
7235
+ }
7236
+
7237
+ .premium-person-style2 .premium-person-list-item a {
7238
+ opacity: 0;
7239
+ -webkit-transform: scale(0);
7240
+ -ms-transform: scale(0);
7241
+ transform: scale(0);
7242
+ -webkit-transition: all 0.5s ease-in-out 0s;
7243
+ transition: all 0.5s ease-in-out 0s;
7244
+ }
7245
+
7246
+ .premium-person-style2 .premium-person-image-container:hover .premium-person-list-item a {
7247
+ opacity: 1;
7248
+ -webkit-transform: scale(1);
7249
+ -ms-transform: scale(1);
7250
+ transform: scale(1);
7251
+ }
7252
+
7253
+ .premium-person-info-container {
7254
+ padding: 30px 15px;
7255
+ }
7256
+
7257
+ .premium-person-name {
7258
+ margin: 0 0 5px;
7259
+ font-weight: 700;
7260
+ }
7261
+
7262
+ .premium-person-title {
7263
+ margin: 0 0 20px;
7264
+ padding: 0;
7265
+ }
7266
+
7267
+ .premium-person-content {
7268
+ margin: 0 0 30px;
7269
+ }
7270
+
7271
+ /*Override Theme List Margin*/
7272
+ ul.premium-person-social-list {
7273
+ margin: 0px !important;
7274
+ padding: 0;
7275
+ }
7276
+
7277
+ .premium-person-social-list .premium-person-list-item {
7278
+ display: inline;
7279
+ list-style: none;
7280
+ }
7281
+
7282
+ .premium-person-social-list li {
7283
+ position: relative;
7284
+ bottom: 0px;
7285
+ -webkit-transition: all 0.2s ease-in-out;
7286
+ transition: all 0.2s ease-in-out;
7287
+ }
7288
+
7289
+ .premium-person-social-list li i {
7290
+ position: relative;
7291
+ bottom: 0px;
7292
+ -webkit-transition: all 0.2s ease-in-out;
7293
+ transition: all 0.2s ease-in-out;
7294
+ }
7295
+
7296
+ .premium-person-defaults-yes li.premium-person-facebook:hover a {
7297
+ background-color: #3b5998 !important;
7298
+ }
7299
+
7300
+ .premium-person-defaults-yes li.premium-person-twitter:hover a {
7301
+ background-color: #55acee !important;
7302
+ }
7303
+
7304
+ .premium-person-defaults-yes li.premium-person-linkedin:hover a {
7305
+ background-color: #0077b5 !important;
7306
+ }
7307
+
7308
+ .premium-person-defaults-yes li.premium-person-google:hover a {
7309
+ background-color: #dc4e41 !important;
7310
+ }
7311
+
7312
+ .premium-person-defaults-yes li.premium-person-youtube:hover a {
7313
+ background-color: #b31217 !important;
7314
+ }
7315
+
7316
+ .premium-person-defaults-yes li.premium-person-instagram:hover a {
7317
+ background-color: #e4405f !important;
7318
+ }
7319
+
7320
+ .premium-person-defaults-yes li.premium-person-skype:hover a {
7321
+ background-color: #00aff0 !important;
7322
+ }
7323
+
7324
+ .premium-person-defaults-yes li.premium-person-pinterest:hover a {
7325
+ background-color: #bd081c !important;
7326
+ }
7327
+
7328
+ .premium-person-defaults-yes li.premium-person-dribbble:hover a {
7329
+ background-color: #ea4c89 !important;
7330
+ }
7331
+
7332
+ .premium-person-defaults-yes li.premium-person-mail:hover a {
7333
+ background-color: #b23121 !important;
7334
+ }
7335
+
7336
+ .premium-person-defaults-yes li.premium-person-behance:hover a {
7337
+ background-color: #1769ff !important;
7338
+ }
7339
+
7340
+ .premium-person-defaults-yes li.premium-person-whatsapp:hover a {
7341
+ background-color: #25d366 !important;
7342
+ }
7343
+
7344
+ .premium-person-defaults-yes li.premium-person-telegram:hover a {
7345
+ background-color: #0088cc !important;
7346
+ }
7347
+
7348
+ .premium-person-defaults-yes li.premium-person-site:hover a {
7349
+ background-color: #0055a5 !important;
7350
+ }
7351
+
7352
+ .premium-person-social-list li:hover a {
7353
+ -webkit-box-shadow: none;
7354
+ box-shadow: none;
7355
+ }
7356
+
7357
+ .premium-person-social-list li a:focus {
7358
+ -webkit-box-shadow: none;
7359
+ box-shadow: none;
7360
+ outline: none;
7361
+ }
7362
+
7363
+ .premium-person-social-list li i {
7364
+ font-size: 18px;
7365
+ }
7366
+
7367
+ .elementor-widget-premium-addon-person .elementor-widget-container {
7368
+ -js-display: flex;
7369
+ display: -webkit-box;
7370
+ display: -webkit-flex;
7371
+ display: -moz-box;
7372
+ display: -ms-flexbox;
7373
+ display: flex;
7374
+ -webkit-box-pack: center;
7375
+ -webkit-justify-content: center;
7376
+ -moz-box-pack: center;
7377
+ -ms-flex-pack: center;
7378
+ justify-content: center;
7379
+ }
7380
+
7381
+ .premium-persons-container.multiple-persons {
7382
+ -js-display: flex;
7383
+ display: -webkit-box;
7384
+ display: -webkit-flex;
7385
+ display: -moz-box;
7386
+ display: -ms-flexbox;
7387
+ display: flex;
7388
+ -webkit-flex-wrap: wrap;
7389
+ -ms-flex-wrap: wrap;
7390
+ flex-wrap: wrap;
7391
+ width: 100%;
7392
+ }
7393
+
7394
+ .premium-person-style1 .premium-person-container {
7395
+ overflow: hidden;
7396
+ }
7397
+
7398
+ .premium-person-style1 .premium-person-container .premium-person-info {
7399
+ position: absolute;
7400
+ top: auto;
7401
+ right: 0;
7402
+ left: 0;
7403
+ -webkit-transition: all 500ms ease 0s;
7404
+ transition: all 500ms ease 0s;
7405
+ -webkit-transform: translate3d(0, 100%, 0);
7406
+ transform: translate3d(0, 100%, 0);
7407
+ }
7408
+
7409
+ .premium-person-style1 .premium-person-container:hover .premium-person-info {
7410
+ -webkit-transform: translate3d(0, 0, 0);
7411
+ transform: translate3d(0, 0, 0);
7412
+ bottom: -1px !important;
7413
+ }
7414
+
7415
+ .premium-person-style1 .premium-person-social-list li:hover {
7416
+ bottom: 5px;
7417
+ }
7418
+
7419
+ .premium-person-style1.multiple-persons:not([data-persons-equal="yes"]) {
7420
+ -webkit-box-align: start;
7421
+ -webkit-align-items: flex-start;
7422
+ -moz-box-align: start;
7423
+ -ms-flex-align: start;
7424
+ align-items: flex-start;
7425
+ }
7426
+
7427
+ .premium-person-style1 .slick-track {
7428
+ -js-display: flex;
7429
+ display: -webkit-box;
7430
+ display: -webkit-flex;
7431
+ display: -moz-box;
7432
+ display: -ms-flexbox;
7433
+ display: flex;
7434
+ }
7435
+
7436
+ .premium-person-style1 .slick-slide {
7437
+ height: inherit !important;
7438
+ }
7439
+
7440
+ .premium-person-style3 .premium-person-info-container {
7441
+ position: absolute;
7442
+ top: 0;
7443
+ left: 0;
7444
+ width: 100%;
7445
+ height: 100%;
7446
+ -js-display: flex;
7447
+ display: -webkit-box;
7448
+ display: -webkit-flex;
7449
+ display: -moz-box;
7450
+ display: -ms-flexbox;
7451
+ display: flex;
7452
+ -webkit-box-orient: vertical;
7453
+ -webkit-box-direction: normal;
7454
+ -webkit-flex-direction: column;
7455
+ -moz-box-orient: vertical;
7456
+ -moz-box-direction: normal;
7457
+ -ms-flex-direction: column;
7458
+ flex-direction: column;
7459
+ -webkit-box-pack: justify;
7460
+ -webkit-justify-content: space-between;
7461
+ -moz-box-pack: justify;
7462
+ -ms-flex-pack: justify;
7463
+ justify-content: space-between;
7464
+ }
7465
+
7466
+ .premium-person-style3 .premium-person-title-desc-wrap {
7467
+ -js-display: flex;
7468
+ display: -webkit-box;
7469
+ display: -webkit-flex;
7470
+ display: -moz-box;
7471
+ display: -ms-flexbox;
7472
+ display: flex;
7473
+ -webkit-box-orient: horizontal;
7474
+ -webkit-box-direction: reverse;
7475
+ -webkit-flex-direction: row-reverse;
7476
+ -moz-box-orient: horizontal;
7477
+ -moz-box-direction: reverse;
7478
+ -ms-flex-direction: row-reverse;
7479
+ flex-direction: row-reverse;
7480
+ -webkit-box-pack: justify;
7481
+ -webkit-justify-content: space-between;
7482
+ -moz-box-pack: justify;
7483
+ -ms-flex-pack: justify;
7484
+ justify-content: space-between;
7485
+ -webkit-box-align: start;
7486
+ -webkit-align-items: flex-start;
7487
+ -moz-box-align: start;
7488
+ -ms-flex-align: start;
7489
+ align-items: flex-start;
7490
+ }
7491
+
7492
+ .premium-person-style3 .premium-person-name-icons-wrap {
7493
+ -js-display: flex;
7494
+ display: -webkit-box;
7495
+ display: -webkit-flex;
7496
+ display: -moz-box;
7497
+ display: -ms-flexbox;
7498
+ display: flex;
7499
+ -webkit-box-pack: justify;
7500
+ -webkit-justify-content: space-between;
7501
+ -moz-box-pack: justify;
7502
+ -ms-flex-pack: justify;
7503
+ justify-content: space-between;
7504
+ -webkit-box-align: end;
7505
+ -webkit-align-items: flex-end;
7506
+ -moz-box-align: end;
7507
+ -ms-flex-align: end;
7508
+ align-items: flex-end;
7509
+ }
7510
+
7511
+ .premium-person-style3 .premium-person-title {
7512
+ opacity: 0;
7513
+ -webkit-transition: all 0.3s ease;
7514
+ transition: all 0.3s ease;
7515
+ width: 0;
7516
+ }
7517
+
7518
+ .premium-person-style3 .premium-person-title span {
7519
+ display: inline-block;
7520
+ }
7521
+
7522
+ .premium-person-style3 .premium-person-name {
7523
+ padding-left: 10px;
7524
+ }
7525
+
7526
+ .premium-person-style3 .premium-person-social-list {
7527
+ -js-display: flex;
7528
+ display: -webkit-box;
7529
+ display: -webkit-flex;
7530
+ display: -moz-box;
7531
+ display: -ms-flexbox;
7532
+ display: flex;
7533
+ -webkit-box-orient: vertical;
7534
+ -webkit-box-direction: normal;
7535
+ -webkit-flex-direction: column;
7536
+ -moz-box-orient: vertical;
7537
+ -moz-box-direction: normal;
7538
+ -ms-flex-direction: column;
7539
+ flex-direction: column;
7540
+ -webkit-transform: translateY(20px);
7541
+ -ms-transform: translateY(20px);
7542
+ transform: translateY(20px);
7543
+ opacity: 0;
7544
+ -webkit-transition: all 0.3s ease;
7545
+ transition: all 0.3s ease;
7546
+ }
7547
+
7548
+ .premium-person-style3 .premium-person-list-item {
7549
+ line-height: 0;
7550
+ }
7551
+
7552
+ .premium-person-style3 .premium-person-list-item a {
7553
+ padding: 5px 10px 0 0;
7554
+ margin: 5px 0;
7555
+ }
7556
+
7557
+ .premium-person-style3 .premium-person-container:hover .premium-person-title {
7558
+ opacity: 1;
7559
+ }
7560
+
7561
+ .premium-person-style3 .premium-person-container:hover .premium-person-social-list {
7562
+ opacity: 1;
7563
+ -webkit-transform: translateY(0);
7564
+ -ms-transform: translateY(0);
7565
+ transform: translateY(0);
7566
+ }
7567
+
7568
+ .premium-persons-title-cw .premium-person-title {
7569
+ -webkit-transform: translateX(15px) rotate(90deg);
7570
+ -ms-transform: translateX(15px) rotate(90deg);
7571
+ transform: translateX(15px) rotate(90deg);
7572
+ -webkit-transform-origin: top;
7573
+ -ms-transform-origin: top;
7574
+ transform-origin: top;
7575
+ }
7576
+
7577
+ .premium-persons-title-cw .premium-person-container:hover .premium-person-title {
7578
+ -webkit-transform: translateX(0) rotate(90deg);
7579
+ -ms-transform: translateX(0) rotate(90deg);
7580
+ transform: translateX(0) rotate(90deg);
7581
+ }
7582
+
7583
+ .premium-persons-title-ccw .premium-person-title {
7584
+ width: auto;
7585
+ margin-right: 20px;
7586
+ -webkit-transform: translateX(15px) rotate(-90deg);
7587
+ -ms-transform: translateX(15px) rotate(-90deg);
7588
+ transform: translateX(15px) rotate(-90deg);
7589
+ -webkit-transform-origin: center right;
7590
+ -ms-transform-origin: center right;
7591
+ transform-origin: center right;
7592
+ }
7593
+
7594
+ .premium-persons-title-ccw .premium-person-container:hover .premium-person-title {
7595
+ -webkit-transform: translateX(0) rotate(-90deg);
7596
+ -ms-transform: translateX(0) rotate(-90deg);
7597
+ transform: translateX(0) rotate(-90deg);
7598
+ }
7599
+
7600
+ /**************** Premium Pricing Table ****************/
7601
+ /*******************************************************/
7602
+ .premium-pricing-table-container {
7603
+ position: relative;
7604
+ text-align: center;
7605
+ display: inline-block;
7606
+ width: 100%;
7607
+ -webkit-transition: all 0.3s ease-in-out;
7608
+ transition: all 0.3s ease-in-out;
7609
+ }
7610
+
7611
+ .premium-pricing-icon-container {
7612
+ -js-display: flex;
7613
+ display: -webkit-box;
7614
+ display: -webkit-flex;
7615
+ display: -moz-box;
7616
+ display: -ms-flexbox;
7617
+ display: flex;
7618
+ -webkit-box-pack: center;
7619
+ -webkit-justify-content: center;
7620
+ -moz-box-pack: center;
7621
+ -ms-flex-pack: center;
7622
+ justify-content: center;
7623
+ line-height: 0;
7624
+ }
7625
+
7626
+ .premium-pricing-icon-container .premium-pricing-icon {
7627
+ display: inline-block;
7628
+ }
7629
+
7630
+ .premium-pricing-icon-container .premium-pricing-image {
7631
+ overflow: hidden;
7632
+ }
7633
+
7634
+ .premium-pricing-icon-container .premium-pricing-image img {
7635
+ width: 25px;
7636
+ height: 25px;
7637
+ -o-object-fit: cover;
7638
+ object-fit: cover;
7639
+ }
7640
+
7641
+ .premium-badge-left {
7642
+ position: absolute;
7643
+ top: 0;
7644
+ }
7645
+
7646
+ .premium-badge-right {
7647
+ position: absolute;
7648
+ top: 0;
7649
+ right: 0;
7650
+ }
7651
+
7652
+ .premium-badge-left {
7653
+ left: 0;
7654
+ }
7655
+
7656
+ .premium-badge-triangle.premium-badge-left .corner {
7657
+ width: 0;
7658
+ height: 0;
7659
+ border-top: 150px solid;
7660
+ border-bottom: 150px solid transparent;
7661
+ border-right: 150px solid transparent;
7662
+ }
7663
+
7664
+ .premium-badge-triangle.premium-badge-right .corner {
7665
+ width: 0;
7666
+ height: 0;
7667
+ border-bottom: 150px solid transparent;
7668
+ border-right: 150px solid;
7669
+ border-left: 150px solid transparent;
7670
+ }
7671
+
7672
+ .premium-badge-triangle span {
7673
+ position: absolute;
7674
+ top: 35px;
7675
+ width: 100px;
7676
+ text-align: center;
7677
+ -webkit-transform: rotate(-45deg);
7678
+ -ms-transform: rotate(-45deg);
7679
+ transform: rotate(-45deg);
7680
+ display: block;
7681
+ text-transform: uppercase;
7682
+ }
7683
+
7684
+ .premium-badge-triangle.premium-badge-right span {
7685
+ -webkit-transform: rotate(45deg);
7686
+ -ms-transform: rotate(45deg);
7687
+ transform: rotate(45deg);
7688
+ right: 0;
7689
+ }
7690
+
7691
+ .premium-badge-circle {
7692
+ min-width: 4em;
7693
+ min-height: 4em;
7694
+ line-height: 4em;
7695
+ text-align: center;
7696
+ -webkit-border-radius: 100%;
7697
+ border-radius: 100%;
7698
+ position: absolute;
7699
+ z-index: 1;
7700
+ }
7701
+
7702
+ .premium-badge-stripe {
7703
+ position: absolute;
7704
+ -webkit-transform: rotate(90deg);
7705
+ -ms-transform: rotate(90deg);
7706
+ transform: rotate(90deg);
7707
+ width: 15em;
7708
+ overflow: hidden;
7709
+ height: 15em;
7710
+ }
7711
+
7712
+ .premium-badge-stripe.premium-badge-left {
7713
+ -webkit-transform: rotate(0);
7714
+ -ms-transform: rotate(0);
7715
+ transform: rotate(0);
7716
+ }
7717
+
7718
+ .premium-badge-stripe .corner {
7719
+ text-align: center;
7720
+ left: 0;
7721
+ width: 150%;
7722
+ -webkit-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
7723
+ -ms-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
7724
+ transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
7725
+ margin-top: 35px;
7726
+ font-size: 13px;
7727
+ line-height: 2;
7728
+ font-weight: 800;
7729
+ text-transform: uppercase;
7730
+ }
7731
+
7732
+ .premium-badge-flag .corner {
7733
+ text-align: center;
7734
+ -webkit-border-radius: 4px 4px 0 4px;
7735
+ border-radius: 4px 4px 0 4px;
7736
+ padding: 3px 15px;
7737
+ position: absolute;
7738
+ top: 10%;
7739
+ right: -8px;
7740
+ }
7741
+
7742
+ .premium-badge-flag .corner::before,
7743
+ .premium-badge-flag .corner::after {
7744
+ content: "";
7745
+ display: block;
7746
+ position: absolute;
7747
+ width: 0;
7748
+ height: 0;
7749
+ top: 100%;
7750
+ right: 0;
7751
+ border-bottom: 8px solid transparent;
7752
+ }
7753
+
7754
+ .elementor-widget-premium-addon-pricing-table .elementor-widget-container {
7755
+ overflow: visible !important;
7756
+ }
7757
+
7758
+ .premium-badge-flag .corner::after {
7759
+ border-left: 8px solid rgba(0, 0, 0, 0.2);
7760
+ }
7761
+
7762
+ .premium-pricing-price-currency {
7763
+ position: relative;
7764
+ }
7765
+
7766
+ .premium-pricing-button-container {
7767
+ display: block;
7768
+ }
7769
+
7770
+ .premium-pricing-list {
7771
+ -js-display: flex;
7772
+ display: -webkit-box;
7773
+ display: -webkit-flex;
7774
+ display: -moz-box;
7775
+ display: -ms-flexbox;
7776
+ display: flex;
7777
+ -webkit-box-orient: vertical;
7778
+ -webkit-box-direction: normal;
7779
+ -webkit-flex-direction: column;
7780
+ -moz-box-orient: vertical;
7781
+ -moz-box-direction: normal;
7782
+ -ms-flex-direction: column;
7783
+ flex-direction: column;
7784
+ list-style-type: none;
7785
+ margin: 0;
7786
+ padding: 0;
7787
+ }
7788
+
7789
+ .premium-pricing-list .premium-pricing-list-item {
7790
+ -js-display: flex;
7791
+ display: -webkit-box;
7792
+ display: -webkit-flex;
7793
+ display: -moz-box;
7794
+ display: -ms-flexbox;
7795
+ display: flex;
7796
+ -webkit-box-align: center;
7797
+ -webkit-align-items: center;
7798
+ -moz-box-align: center;
7799
+ -ms-flex-align: center;
7800
+ align-items: center;
7801
+ }
7802
+
7803
+ .premium-pricing-list .premium-pricing-list-item svg {
7804
+ width: 50px;
7805
+ height: 50px;
7806
+ }
7807
+
7808
+ .premium-pricing-list .premium-pricing-list-item img {
7809
+ width: 30px;
7810
+ height: 30px;
7811
+ -o-object-fit: cover;
7812
+ object-fit: cover;
7813
+ }
7814
+
7815
+ .premium-pricing-list .premium-pricing-list-span {
7816
+ position: relative;
7817
+ }
7818
+
7819
+ .premium-pricing-list .list-item-tooltip {
7820
+ border-bottom: 1px dotted;
7821
+ }
7822
+
7823
+ .premium-pricing-list .premium-pricing-list-tooltip {
7824
+ position: absolute;
7825
+ top: -webkit-calc(100% + 1px);
7826
+ top: calc(100% + 1px);
7827
+ left: 0;
7828
+ visibility: hidden;
7829
+ padding: 15px 20px;
7830
+ -webkit-border-radius: 5px;
7831
+ border-radius: 5px;
7832
+ min-width: 200px;
7833
+ overflow: hidden;
7834
+ text-align: left;
7835
+ font-size: 0.8rem;
7836
+ color: #fff;
7837
+ background-color: #aaa;
7838
+ }
7839
+
7840
+ .premium-pricing-features-left .premium-pricing-list-span {
7841
+ text-align: left;
7842
+ }
7843
+
7844
+ .premium-pricing-features-center .premium-pricing-list-span {
7845
+ text-align: center;
7846
+ }
7847
+
7848
+ .premium-pricing-features-right .premium-pricing-list-span {
7849
+ text-align: right;
7850
+ }
7851
+
7852
+ .premium-pricing-list-span:hover .premium-pricing-list-tooltip {
7853
+ z-index: 99;
7854
+ visibility: visible;
7855
+ opacity: 1;
7856
+ }
7857
+
7858
+ .premium-pricing-slashed-price-value {
7859
+ display: inline-block;
7860
+ font-size: 20px;
7861
+ font-weight: 400;
7862
+ margin-right: 5px;
7863
+ }
7864
+
7865
+ .premium-pricing-price-value {
7866
+ font-size: 70px;
7867
+ }
7868
+
7869
+ .premium-pricing-description-container li {
7870
+ list-style-position: inside;
7871
+ text-indent: -40px;
7872
+ }
7873
+
7874
+ @-moz-document url-prefix() {
7875
+ .premium-pricing-description-container li {
7876
+ text-indent: 0px;
7877
+ }
7878
+ }
7879
+
7880
+ .premium-pricing-price-button {
7881
+ display: block;
7882
+ padding: 6px 12px;
7883
+ line-height: 1.42857143;
7884
+ text-align: center;
7885
+ color: #fff;
7886
+ background: #6ec1e4;
7887
+ margin-bottom: 0;
7888
+ -webkit-transition: all 0.3s ease-in-out;
7889
+ transition: all 0.3s ease-in-out;
7890
+ }
7891
+
7892
+ /**************** Premium Progress Bar ****************/
7893
+ /******************************************************/
7894
+ .premium-progressbar-container {
7895
+ position: relative;
7896
+ }
7897
+
7898
+ .premium-progressbar-bar-wrap {
7899
+ position: relative;
7900
+ text-align: left;
7901
+ overflow: hidden;
7902
+ height: 25px;
7903
+ margin-bottom: 50px;
7904
+ background-color: #f5f5f5;
7905
+ -webkit-border-radius: 4px;
7906
+ border-radius: 4px;
7907
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
7908
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
7909
+ }
7910
+
7911
+ .premium-progressbar-bar-wrap.premium-progressbar-dots {
7912
+ background-color: transparent;
7913
+ width: 100%;
7914
+ -js-display: flex;
7915
+ display: -webkit-box;
7916
+ display: -webkit-flex;
7917
+ display: -moz-box;
7918
+ display: -ms-flexbox;
7919
+ display: flex;
7920
+ height: auto;
7921
+ -webkit-box-shadow: none;
7922
+ box-shadow: none;
7923
+ }
7924
+
7925
+ .premium-progressbar-bar-wrap .progress-segment {
7926
+ position: relative;
7927
+ width: 25px;
7928
+ height: 25px;
7929
+ -webkit-border-radius: 50%;
7930
+ border-radius: 50%;
7931
+ overflow: hidden;
7932
+ background-color: #f5f5f5;
7933
+ }
7934
+
7935
+ .premium-progressbar-bar-wrap .progress-segment.filled {
7936
+ background: #6ec1e4;
7937
+ }
7938
+
7939
+ .premium-progressbar-bar-wrap .progress-segment:not(:first-child):not(:last-child) {
7940
+ margin: 0 4px;
7941
+ }
7942
+
7943
+ .premium-progressbar-bar-wrap .progress-segment:first-child {
7944
+ margin-right: 4px;
7945
+ }
7946
+
7947
+ .premium-progressbar-bar-wrap .progress-segment:last-child {
7948
+ margin-left: 4px;
7949
+ }
7950
+
7951
+ .premium-progressbar-bar-wrap .progress-segment .segment-inner {
7952
+ position: absolute;
7953
+ top: 0;
7954
+ left: 0;
7955
+ height: 100%;
7956
+ background-color: #6ec1e4;
7957
+ }
7958
+
7959
+ .premium-progressbar-bar {
7960
+ float: left;
7961
+ width: 0%;
7962
+ height: 100%;
7963
+ font-size: 12px;
7964
+ line-height: 20px;
7965
+ background: #6ec1e4;
7966
+ text-align: center;
7967
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
7968
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
7969
+ }
7970
+
7971
+ .premium-progressbar-striped .premium-progressbar-bar {
7972
+ 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);
7973
+ 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);
7974
+ -webkit-background-size: 40px 40px;
7975
+ background-size: 40px 40px;
7976
+ }
7977
+
7978
+ .premium-progressbar-active .premium-progressbar-bar {
7979
+ -webkit-animation: progress-bar-stripes 2s linear infinite;
7980
+ animation: progress-bar-stripes 2s linear infinite;
7981
+ }
7982
+
7983
+ .premium-progressbar-gradient .premium-progressbar-bar {
7984
+ -webkit-background-size: 400% 400% !important;
7985
+ background-size: 400% 400% !important;
7986
+ -webkit-animation: progress-bar-gradient 10s ease-in-out infinite;
7987
+ animation: progress-bar-gradient 10s ease-in-out infinite;
7988
+ }
7989
+
7990
+ .premium-progressbar-bar {
7991
+ position: absolute;
7992
+ overflow: hidden;
7993
+ line-height: 20px;
7994
+ }
7995
+
7996
+ .premium-progressbar-container .clearfix {
7997
+ clear: both;
7998
+ }
7999
+
8000
+ .premium-progressbar-bar {
8001
+ -webkit-transition: width 0s ease-in-out !important;
8002
+ transition: width 0s ease-in-out !important;
8003
+ }
8004
+
8005
+ .premium-progressbar-container p:first-of-type {
8006
+ margin: 0;
8007
+ float: left;
8008
+ }
8009
+
8010
+ .premium-progressbar-container p:nth-of-type(2) {
8011
+ margin: 0;
8012
+ float: right;
8013
+ }
8014
+
8015
+ .premium-progressbar-name {
8016
+ left: 50%;
8017
+ top: 0;
8018
+ right: 0;
8019
+ -webkit-transform: translateX(-12.5px);
8020
+ -ms-transform: translateX(-12.5px);
8021
+ transform: translateX(-12.5px);
8022
+ z-index: 1;
8023
+ }
8024
+
8025
+ .premium-progressbar-multiple-label {
8026
+ position: relative;
8027
+ float: left;
8028
+ width: 0;
8029
+ left: 50%;
8030
+ }
8031
+
8032
+ .premium-progressbar-center-label {
8033
+ position: relative;
8034
+ white-space: nowrap;
8035
+ }
8036
+
8037
+ .premium-progressbar-arrow {
8038
+ height: 15px;
8039
+ left: 50%;
8040
+ display: inline-block;
8041
+ border-left: 7px solid transparent;
8042
+ border-right: 7px solid transparent;
8043
+ border-top: 11px solid;
8044
+ -webkit-transform: translateX(-50%);
8045
+ -ms-transform: translateX(-50%);
8046
+ transform: translateX(-50%);
8047
+ }
8048
+
8049
+ .premium-progressbar-pin {
8050
+ border-left: 1px solid;
8051
+ height: 12px;
8052
+ left: 50%;
8053
+ display: inline-block;
8054
+ }
8055
+
8056
  /**
8057
+ * Circle Progress Bar
8058
+ */
8059
+ .premium-progressbar-circle-wrap,
8060
+ .premium-progressbar-hf-circle-wrap {
8061
+ width: 200px;
8062
+ height: 200px;
8063
+ position: relative;
8064
+ margin: 0 auto;
8065
+ }
8066
+
8067
+ .premium-progressbar-circle-wrap .premium-progressbar-circle-content,
8068
+ .premium-progressbar-hf-circle-wrap .premium-progressbar-circle-content {
8069
+ position: absolute;
8070
+ top: 0;
8071
+ left: 0;
8072
+ width: 100%;
8073
+ height: 100%;
8074
+ -js-display: flex;
8075
+ display: -webkit-box;
8076
+ display: -webkit-flex;
8077
+ display: -moz-box;
8078
+ display: -ms-flexbox;
8079
+ display: flex;
8080
+ -webkit-box-orient: vertical;
8081
+ -webkit-box-direction: normal;
8082
+ -webkit-flex-direction: column;
8083
+ -moz-box-orient: vertical;
8084
+ -moz-box-direction: normal;
8085
+ -ms-flex-direction: column;
8086
+ flex-direction: column;
8087
+ -webkit-box-pack: center;
8088
+ -webkit-justify-content: center;
8089
+ -moz-box-pack: center;
8090
+ -ms-flex-pack: center;
8091
+ justify-content: center;
8092
+ -webkit-box-align: center;
8093
+ -webkit-align-items: center;
8094
+ -moz-box-align: center;
8095
+ -ms-flex-align: center;
8096
+ align-items: center;
8097
+ text-align: center;
8098
+ }
8099
+
8100
+ .premium-progressbar-circle-wrap .premium-lottie-animation,
8101
+ .premium-progressbar-hf-circle-wrap .premium-lottie-animation {
8102
+ line-height: 1;
8103
+ }
8104
+
8105
+ .premium-progressbar-circle-wrap .premium-progressbar-circle {
8106
+ position: absolute;
8107
+ top: 0;
8108
+ left: 0;
8109
+ width: 100%;
8110
+ height: 100%;
8111
+ -webkit-clip-path: inset(0 0 0 50%);
8112
+ clip-path: inset(0 0 0 50%);
8113
+ }
8114
+
8115
+ .premium-progressbar-circle-wrap .premium-progressbar-circle div {
8116
+ position: absolute;
8117
+ left: 0;
8118
+ top: 0;
8119
+ height: 100%;
8120
+ width: 100%;
8121
+ border-width: 6px;
8122
+ border-style: solid;
8123
+ border-color: #54595f;
8124
+ -webkit-border-radius: 50%;
8125
+ border-radius: 50%;
8126
+ -webkit-clip-path: inset(0 50% 0 0);
8127
+ clip-path: inset(0 50% 0 0);
8128
+ }
8129
+
8130
+ .premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-left {
8131
+ -webkit-transform: rotate(0);
8132
+ -ms-transform: rotate(0);
8133
+ transform: rotate(0);
8134
+ }
8135
+
8136
+ .premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-right {
8137
+ -webkit-transform: rotate(180deg);
8138
+ -ms-transform: rotate(180deg);
8139
+ transform: rotate(180deg);
8140
+ visibility: hidden;
8141
+ }
8142
+
8143
+ .premium-progressbar-circle-wrap .premium-progressbar-circle-base {
8144
+ width: 100%;
8145
+ height: 100%;
8146
+ border: 6px solid #eee;
8147
+ -webkit-border-radius: 50%;
8148
+ border-radius: 50%;
8149
+ }
8150
+
8151
  /**
8152
+ * Half Circle Progress Bar
8153
+ */
8154
+ .premium-progressbar-hf-container {
8155
+ position: relative;
8156
+ width: 200px;
8157
+ height: 200px;
8158
+ }
8159
+
8160
+ .premium-progressbar-hf-circle-wrap {
8161
+ overflow: hidden;
8162
+ }
8163
+
8164
+ .premium-progressbar-hf-circle-wrap .premium-progressbar-left-label {
8165
+ -webkit-box-ordinal-group: 2;
8166
+ -webkit-order: 1;
8167
+ -moz-box-ordinal-group: 2;
8168
+ -ms-flex-order: 1;
8169
+ order: 1;
8170
+ }
8171
+
8172
+ .premium-progressbar-hf-circle {
8173
+ position: absolute;
8174
+ top: 0;
8175
+ left: 0;
8176
+ width: 100%;
8177
+ height: 100%;
8178
+ -webkit-clip-path: inset(0 0 50% 0);
8179
+ clip-path: inset(0 0 50% 0);
8180
+ }
8181
+
8182
+ .premium-progressbar-hf-circle-progress {
8183
+ position: absolute;
8184
+ left: 0;
8185
+ top: 0;
8186
+ height: 100%;
8187
+ width: 100%;
8188
+ border: 12px solid #000;
8189
+ -webkit-border-radius: 50%;
8190
+ border-radius: 50%;
8191
+ -webkit-clip-path: inset(50% 0 0 0);
8192
+ clip-path: inset(50% 0 0 0);
8193
+ -webkit-transform: rotate(0deg);
8194
+ -ms-transform: rotate(0deg);
8195
+ transform: rotate(0deg);
8196
+ -webkit-transition: -webkit-transform 1500ms linear;
8197
+ transition: -webkit-transform 1500ms linear;
8198
+ transition: transform 1500ms linear;
8199
+ transition: transform 1500ms linear, -webkit-transform 1500ms linear;
8200
+ }
8201
+
8202
+ .premium-progressbar-circle-inner {
8203
+ height: 100%;
8204
+ width: 100%;
8205
+ border: 12px solid #eee;
8206
+ -webkit-border-radius: 50%;
8207
+ border-radius: 50%;
8208
+ }
8209
+
8210
+ .premium-progressbar-hf-labels {
8211
+ margin: 0 auto;
8212
+ position: relative;
8213
+ font-size: 12px;
8214
+ font-weight: 400;
8215
+ -js-display: flex;
8216
+ display: -webkit-box;
8217
+ display: -webkit-flex;
8218
+ display: -moz-box;
8219
+ display: -ms-flexbox;
8220
+ display: flex;
8221
+ -webkit-box-pack: justify;
8222
+ -webkit-justify-content: space-between;
8223
+ -moz-box-pack: justify;
8224
+ -ms-flex-pack: justify;
8225
+ justify-content: space-between;
8226
+ }
8227
+
8228
+ @-webkit-keyframes progress-bar-stripes {
8229
+ from {
8230
+ background-position: 0 0;
8231
+ }
8232
+
8233
+ to {
8234
+ background-position: 40px 0;
8235
+ }
8236
+ }
8237
+
8238
+ @keyframes progress-bar-stripes {
8239
+ from {
8240
+ background-position: 0 0;
8241
+ }
8242
+
8243
+ to {
8244
+ background-position: 40px 0;
8245
+ }
8246
+ }
8247
+
8248
+ @-webkit-keyframes progress-bar-gradient {
8249
+ 0% {
8250
+ background-position: 0% 50%;
8251
+ }
8252
+
8253
+ 50% {
8254
+ background-position: 100% 50%;
8255
+ }
8256
+
8257
+ 100% {
8258
+ background-position: 0% 50%;
8259
+ }
8260
+ }
8261
+
8262
+ @keyframes progress-bar-gradient {
8263
+ 0% {
8264
+ background-position: 0% 50%;
8265
+ }
8266
+
8267
+ 50% {
8268
+ background-position: 100% 50%;
8269
+ }
8270
+
8271
+ 100% {
8272
+ background-position: 0% 50%;
8273
+ }
8274
+ }
8275
+
8276
+ @media (max-width: 768px) {
8277
+ .premium-progressbar-center-label {
8278
+ -webkit-transform: rotate(-90deg) !important;
8279
+ -ms-transform: rotate(-90deg) !important;
8280
+ transform: rotate(-90deg) !important;
8281
+ -webkit-transform-origin: 0;
8282
+ -ms-transform-origin: 0;
8283
+ transform-origin: 0;
8284
+ }
8285
+ }
8286
+
8287
+ /**************** Premium Testimonials ****************/
8288
+ /******************************************************/
8289
+ .premium-testimonial-box {
8290
+ width: 100%;
8291
+ background: transparent;
8292
+ -webkit-transition: all 0.3s ease-in-out;
8293
+ transition: all 0.3s ease-in-out;
8294
+ }
8295
+
8296
+ .premium-testimonial-box .premium-testimonial-author-info {
8297
+ -js-display: flex;
8298
+ display: -webkit-box;
8299
+ display: -webkit-flex;
8300
+ display: -moz-box;
8301
+ display: -ms-flexbox;
8302
+ display: flex;
8303
+ -webkit-box-pack: center;
8304
+ -webkit-justify-content: center;
8305
+ -moz-box-pack: center;
8306
+ -ms-flex-pack: center;
8307
+ justify-content: center;
8308
+ -webkit-box-align: center;
8309
+ -webkit-align-items: center;
8310
+ -moz-box-align: center;
8311
+ -ms-flex-align: center;
8312
+ align-items: center;
8313
+ }
8314
+
8315
+ .premium-testimonial-box .premium-testimonial-person-name,
8316
+ .premium-testimonial-box .premium-testimonial-company-name {
8317
+ font-weight: 600;
8318
+ margin: 0;
8319
+ }
8320
+
8321
+ .premium-testimonial-container {
8322
+ position: relative;
8323
+ }
8324
+
8325
+ .premium-testimonial-img-wrapper {
8326
+ margin-left: auto;
8327
+ margin-right: auto;
8328
+ overflow: hidden;
8329
+ border-style: solid !important;
8330
+ }
8331
+
8332
+ .premium-testimonial-img-wrapper.circle {
8333
+ -webkit-border-radius: 50%;
8334
+ border-radius: 50%;
8335
+ }
8336
+
8337
+ .premium-testimonial-img-wrapper.rounded {
8338
+ -webkit-border-radius: 15px;
8339
+ border-radius: 15px;
8340
+ }
8341
+
8342
+ .premium-testimonial-img-wrapper img {
8343
+ -o-object-fit: cover;
8344
+ object-fit: cover;
8345
+ width: 100%;
8346
+ height: 100% !important;
8347
+ }
8348
+
8349
+ .premium-testimonial-content-wrapper {
8350
+ position: relative;
8351
+ -js-display: flex;
8352
+ display: -webkit-box;
8353
+ display: -webkit-flex;
8354
+ display: -moz-box;
8355
+ display: -ms-flexbox;
8356
+ display: flex;
8357
+ -webkit-box-orient: vertical;
8358
+ -webkit-box-direction: normal;
8359
+ -webkit-flex-direction: column;
8360
+ -moz-box-orient: vertical;
8361
+ -moz-box-direction: normal;
8362
+ -ms-flex-direction: column;
8363
+ flex-direction: column;
8364
+ z-index: 2;
8365
+ width: 100%;
8366
+ padding: 20px;
8367
+ text-align: center;
8368
+ }
8369
+
8370
+ .premium-testimonial-clear-float {
8371
+ clear: both;
8372
+ }
8373
+
8374
+ .premium-testimonial-upper-quote,
8375
+ .premium-testimonial-lower-quote {
8376
+ position: absolute;
8377
+ z-index: 1;
8378
+ }
8379
+
8380
+ /**************** Premium Title ****************/
8381
+ /***********************************************/
8382
+ .premium-title-container .premium-title-header {
8383
+ position: relative;
8384
+ margin: 0;
8385
+ padding: 10px;
8386
+ }
8387
+
8388
+ .premium-title-container .premium-title-header:not(.premium-title-style7) {
8389
+ -webkit-box-align: center;
8390
+ -webkit-align-items: center;
8391
+ -moz-box-align: center;
8392
+ -ms-flex-align: center;
8393
+ align-items: center;
8394
+ }
8395
+
8396
+ .premium-title-container .premium-title-header svg {
8397
+ width: 40px;
8398
+ height: 40px;
8399
+ }
8400
+
8401
+ .premium-title-container .premium-title-header img {
8402
+ width: 40px;
8403
+ height: 40px;
8404
+ -o-object-fit: cover;
8405
+ object-fit: cover;
8406
+ }
8407
+
8408
+ .premium-title-container .premium-title-header a {
8409
+ position: absolute;
8410
+ top: 0;
8411
+ left: 0;
8412
+ width: 100%;
8413
+ height: 100%;
8414
+ }
8415
+
8416
+ .premium-title-container .premium-lottie-animation {
8417
+ -js-display: flex;
8418
+ display: -webkit-box;
8419
+ display: -webkit-flex;
8420
+ display: -moz-box;
8421
+ display: -ms-flexbox;
8422
+ display: flex;
8423
+ }
8424
+
8425
+ .premium-title-icon-row .premium-title-icon {
8426
+ margin-right: 10px;
8427
+ }
8428
+
8429
+ .premium-title-icon-row-reverse .premium-title-icon {
8430
+ margin-left: 10px;
8431
+ }
8432
+
8433
+ .premium-title-style3,
8434
+ .premium-title-style4 {
8435
+ -js-display: flex;
8436
+ display: -webkit-box;
8437
+ display: -webkit-flex;
8438
+ display: -moz-box;
8439
+ display: -ms-flexbox;
8440
+ display: flex;
8441
+ }
8442
+
8443
+ .premium-title-style1,
8444
+ .premium-title-style2,
8445
+ .premium-title-style5,
8446
+ .premium-title-style6,
8447
+ .premium-title-style8,
8448
+ .premium-title-style9 {
8449
+ -js-display: inline-flex;
8450
+ display: -webkit-inline-box;
8451
+ display: -webkit-inline-flex;
8452
+ display: -moz-inline-box;
8453
+ display: -ms-inline-flexbox;
8454
+ display: inline-flex;
8455
+ }
8456
+
8457
+ .premium-title-style7 {
8458
+ -js-display: inline-flex;
8459
+ display: -webkit-inline-box;
8460
+ display: -webkit-inline-flex;
8461
+ display: -moz-inline-box;
8462
+ display: -ms-inline-flexbox;
8463
+ display: inline-flex;
8464
+ -webkit-box-orient: vertical;
8465
+ -webkit-box-direction: normal;
8466
+ -webkit-flex-direction: column;
8467
+ -moz-box-orient: vertical;
8468
+ -moz-box-direction: normal;
8469
+ -ms-flex-direction: column;
8470
+ flex-direction: column;
8471
+ }
8472
+
8473
+ .premium-title-style7 .premium-title-style7-inner {
8474
+ -js-display: flex;
8475
+ display: -webkit-box;
8476
+ display: -webkit-flex;
8477
+ display: -moz-box;
8478
+ display: -ms-flexbox;
8479
+ display: flex;
8480
+ -webkit-box-align: center;
8481
+ -webkit-align-items: center;
8482
+ -moz-box-align: center;
8483
+ -ms-flex-align: center;
8484
+ align-items: center;
8485
+ }
8486
+
8487
+ .premium-title-style1 {
8488
+ border-width: 0;
8489
+ border-left: 3px solid #6ec1e4;
8490
+ }
8491
+
8492
+ .premium-title-container.style2,
8493
+ .premium-title-container.style4,
8494
+ .premium-title-container.style5,
8495
+ .premium-title-container.style6 {
8496
+ border-bottom: 3px solid #6ec1e4;
8497
+ }
8498
+
8499
+ /*Style 6 Header*/
8500
+ .premium-title-style6:before {
8501
+ position: absolute;
8502
+ left: 50%;
8503
+ bottom: 0;
8504
+ margin-left: -2px;
8505
+ content: "";
8506
+ border: 3px solid transparent;
8507
+ }
8508
+
8509
+ /*Style 6 Trinagle*/
8510
+ .premium-title-style7-stripe-wrap {
8511
+ -js-display: flex;
8512
+ display: -webkit-box;
8513
+ display: -webkit-flex;
8514
+ display: -moz-box;
8515
+ display: -ms-flexbox;
8516
+ display: flex;
8517
+ }
8518
+
8519
+ .premium-title-style7:before {
8520
+ display: none;
8521
+ }
8522
+
8523
+ .premium-title-style8 .premium-title-text[data-animation="shiny"] {
8524
+ -webkit-background-size: 125px 125px !important;
8525
+ background-size: 125px !important;
8526
+ color: rgba(255, 255, 255, 0);
8527
+ -webkit-background-clip: text !important;
8528
+ background-clip: text !important;
8529
+ -webkit-animation-name: pa-shinny-text !important;
8530
+ animation-name: pa-shinny-text !important;
8531
+ -webkit-animation-duration: var(--animation-speed) !important;
8532
+ animation-duration: var(--animation-speed) !important;
8533
+ -webkit-animation-iteration-count: infinite !important;
8534
+ animation-iteration-count: infinite !important;
8535
+ 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;
8536
+ }
8537
+
8538
+ @-webkit-keyframes pa-shinny-text {
8539
+ 0% {
8540
+ background-position: 0%;
8541
+ }
8542
+
8543
+ 100% {
8544
+ background-position: 200%;
8545
+ }
8546
+ }
8547
+
8548
+ @keyframes pa-shinny-text {
8549
+ 0% {
8550
+ background-position: 0%;
8551
+ }
8552
+
8553
+ 100% {
8554
+ background-position: 200%;
8555
+ }
8556
+ }
8557
+
8558
+ .premium-title-style9[data-animation-blur="process"] .premium-title-style9-letter {
8559
+ -webkit-animation: pa-blur-shadow 2s 1 alternate;
8560
+ animation: pa-blur-shadow 2s 1 alternate;
8561
+ }
8562
+
8563
+ @-webkit-keyframes pa-blur-shadow {
8564
+ from {
8565
+ text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
8566
+ color: transparent;
8567
+ }
8568
+
8569
+ to {
8570
+ text-shadow: 0;
8571
+ }
8572
+ }
8573
+
8574
+ @keyframes pa-blur-shadow {
8575
+ from {
8576
+ text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
8577
+ color: transparent;
8578
+ }
8579
+
8580
+ to {
8581
+ text-shadow: 0;
8582
+ }
8583
+ }
8584
+
8585
+ .premium-title-gradient-yes .premium-title-text,
8586
+ .premium-title-gradient-yes .premium-title-icon {
8587
+ -webkit-background-clip: text;
8588
+ -webkit-text-fill-color: transparent;
8589
+ background-image: -webkit-gradient(linear, left top, right top, from(#ffa648), color-stop(#f17cc1), to(#4da9fd));
8590
+ background-image: -webkit-linear-gradient(left, #ffa648, #f17cc1, #4da9fd);
8591
+ background-image: linear-gradient(to right, #ffa648, #f17cc1, #4da9fd);
8592
+ -webkit-animation: pa-text-gradient 8s infinite;
8593
+ animation: pa-text-gradient 8s infinite;
8594
+ }
8595
+
8596
+ .premium-title-clipped .premium-title-header {
8597
+ -webkit-text-fill-color: transparent;
8598
+ -webkit-background-clip: text;
8599
+ background-clip: text;
8600
+ }
8601
+
8602
+ @-webkit-keyframes pa-text-gradient {
8603
+
8604
+ 0%,
8605
+ 100% {
8606
+ -webkit-filter: hue-rotate(0deg);
8607
+ filter: hue-rotate(0deg);
8608
+ }
8609
+
8610
+ 50% {
8611
+ -webkit-filter: hue-rotate(360deg);
8612
+ filter: hue-rotate(360deg);
8613
+ }
8614
+ }
8615
+
8616
+ @keyframes pa-text-gradient {
8617
+
8618
+ 0%,
8619
+ 100% {
8620
+ -webkit-filter: hue-rotate(0deg);
8621
+ filter: hue-rotate(0deg);
8622
+ }
8623
+
8624
+ 50% {
8625
+ -webkit-filter: hue-rotate(360deg);
8626
+ filter: hue-rotate(360deg);
8627
+ }
8628
+ }
8629
+
8630
+ /**************** Premium Video Box ************/
8631
+ /***********************************************/
8632
+ .premium-video-box-transform {
8633
+ -webkit-transform: none !important;
8634
+ -ms-transform: none !important;
8635
+ transform: none !important;
8636
+ }
8637
+
8638
+ .premium-video-box-container {
8639
+ -js-display: flex;
8640
+ display: -webkit-box;
8641
+ display: -webkit-flex;
8642
+ display: -moz-box;
8643
+ display: -ms-flexbox;
8644
+ display: flex;
8645
+ -webkit-box-orient: vertical;
8646
+ -webkit-box-direction: normal;
8647
+ -webkit-flex-direction: column;
8648
+ -moz-box-orient: vertical;
8649
+ -moz-box-direction: normal;
8650
+ -ms-flex-direction: column;
8651
+ flex-direction: column;
8652
+ }
8653
+
8654
+ .premium-video-box-container>div {
8655
+ position: relative;
8656
+ overflow: hidden;
8657
+ }
8658
+
8659
+ .pa-aspect-ratio-11 .premium-video-box-container>div {
8660
+ padding-bottom: 100%;
8661
+ }
8662
+
8663
+ .pa-aspect-ratio-169 .premium-video-box-container>div {
8664
+ padding-bottom: 56.25%;
8665
+ }
8666
+
8667
+ .pa-aspect-ratio-43 .premium-video-box-container>div {
8668
+ padding-bottom: 75%;
8669
+ }
8670
+
8671
+ .pa-aspect-ratio-32 .premium-video-box-container>div {
8672
+ padding-bottom: 66.6666%;
8673
+ }
8674
+
8675
+ .pa-aspect-ratio-219 .premium-video-box-container>div {
8676
+ padding-bottom: 42.8571%;
8677
+ }
8678
+
8679
+ .pa-aspect-ratio-916 .premium-video-box-container>div {
8680
+ padding-bottom: 177.8%;
8681
+ }
8682
+
8683
+ .premium-video-box-image-container {
8684
+ position: absolute;
8685
+ top: 0;
8686
+ left: 0;
8687
+ bottom: 0;
8688
+ right: 0;
8689
+ width: 100%;
8690
+ height: 100%;
8691
+ -webkit-background-size: cover;
8692
+ background-size: cover;
8693
+ background-position: 50%;
8694
+ cursor: pointer;
8695
+ margin: auto;
8696
+ -webkit-transition: 0.2s all;
8697
+ transition: 0.2s all;
8698
+ }
8699
+
8700
+ .premium-video-box-play-icon-container {
8701
+ position: absolute;
8702
+ z-index: 2;
8703
+ cursor: pointer;
8704
+ -webkit-transform: translate(-50%, -50%);
8705
+ -ms-transform: translate(-50%, -50%);
8706
+ transform: translate(-50%, -50%);
8707
+ background: rgba(252, 252, 252, 0.35);
8708
+ }
8709
+
8710
+ .premium-video-box-description-container {
8711
+ position: absolute;
8712
+ z-index: 2;
8713
+ padding: 5px;
8714
+ text-align: center;
8715
+ cursor: pointer;
8716
+ -webkit-transform: translate(-50%, -50%);
8717
+ -ms-transform: translate(-50%, -50%);
8718
+ transform: translate(-50%, -50%);
8719
+ }
8720
+
8721
+ .premium-video-box-text {
8722
+ margin-bottom: 0 !important;
8723
+ -webkit-transition: all 0.3s ease-in-out;
8724
+ transition: all 0.3s ease-in-out;
8725
+ }
8726
+
8727
+ .premium-video-box-play-icon {
8728
+ padding: 15px;
8729
+ -webkit-transform: translateX(4%);
8730
+ -ms-transform: translateX(4%);
8731
+ transform: translateX(4%);
8732
+ -webkit-transition: all 0.3s ease-in-out;
8733
+ transition: all 0.3s ease-in-out;
8734
+ }
8735
+
8736
+ .premium-video-box-video-container,
8737
+ .premium-vid-lightbox-container {
8738
+ position: absolute;
8739
+ top: 0;
8740
+ left: 0;
8741
+ z-index: 2;
8742
+ width: 100%;
8743
+ height: 100%;
8744
+ -webkit-transition: opacity 0.8s ease-in-out;
8745
+ transition: opacity 0.8s ease-in-out;
8746
+ overflow: hidden;
8747
+ cursor: pointer;
8748
+ }
8749
+
8750
+ .premium-video-box-container[data-overlay="true"][data-type="self"] .premium-video-box-video-container {
8751
+ opacity: 0;
8752
+ visibility: hidden;
8753
+ }
8754
+
8755
+ .premium-video-box-video-container iframe {
8756
+ max-width: 100%;
8757
+ width: 100%;
8758
+ height: 100%;
8759
+ margin: 0;
8760
+ line-height: 1;
8761
+ border: none;
8762
+ }
8763
+
8764
+ .premium-video-box-video-container video {
8765
+ max-width: 100%;
8766
+ width: 100%;
8767
+ height: 100%;
8768
+ margin: 0;
8769
+ line-height: 1;
8770
+ border: none;
8771
+ background-color: #000;
8772
+ -o-object-fit: contain;
8773
+ object-fit: contain;
8774
+ }
8775
+
8776
+ .premium-video-box-container .premium-video-box-vimeo-wrap {
8777
+ -js-display: flex;
8778
+ display: -webkit-box;
8779
+ display: -webkit-flex;
8780
+ display: -moz-box;
8781
+ display: -ms-flexbox;
8782
+ display: flex;
8783
+ position: absolute;
8784
+ top: 0;
8785
+ left: 0;
8786
+ z-index: 3;
8787
+ margin: 10px;
8788
+ margin-right: 10px;
8789
+ -webkit-transition: opacity 0.2s ease-out;
8790
+ transition: opacity 0.2s ease-out;
8791
+ margin-right: 4.6em;
8792
+ }
8793
+
8794
+ .premium-video-box-vimeo-wrap .premium-video-box-vimeo-portrait {
8795
+ width: 60px;
8796
+ height: 60px;
8797
+ background: rgba(23, 35, 34, 0.75);
8798
+ margin-right: 1px;
8799
+ -webkit-box-flex: 1;
8800
+ -webkit-flex: 1 0 auto;
8801
+ -moz-box-flex: 1;
8802
+ -ms-flex: 1 0 auto;
8803
+ flex: 1 0 auto;
8804
+ padding: 0;
8805
+ }
8806
+
8807
+ .premium-video-box-vimeo-portrait img {
8808
+ width: 50px;
8809
+ height: 50px;
8810
+ margin: 5px;
8811
+ padding: 0;
8812
+ border: 0;
8813
+ -webkit-border-radius: 50%;
8814
+ border-radius: 50%;
8815
+ }
8816
+
8817
+ .premium-video-box-vimeo-wrap .premium-video-box-vimeo-headers {
8818
+ font-size: 10px;
8819
+ }
8820
+
8821
+ .premium-video-box-vimeo-wrap .premium-video-box-vimeo-title {
8822
+ max-width: 100%;
8823
+ font-size: 2em !important;
8824
+ font-weight: 700;
8825
+ margin: 0;
8826
+ padding: 0.1em 0.2em;
8827
+ background: rgba(23, 35, 34, 0.75);
8828
+ display: inline-block;
8829
+ text-transform: none;
8830
+ line-height: normal;
8831
+ letter-spacing: normal;
8832
+ }
8833
+
8834
+ .premium-video-box-vimeo-wrap .premium-video-box-vimeo-byline {
8835
+ font-size: 1.2em !important;
8836
+ font-weight: 400;
8837
+ color: #fff;
8838
+ margin-top: 0.1em;
8839
+ padding: 0.2em 0.5em;
8840
+ background: rgba(23, 35, 34, 0.75);
8841
+ text-transform: none;
8842
+ line-height: normal;
8843
+ letter-spacing: normal;
8844
+ }
8845
+
8846
+ .premium-video-box-playlist-container {
8847
+ -js-display: flex;
8848
+ display: -webkit-box;
8849
+ display: -webkit-flex;
8850
+ display: -moz-box;
8851
+ display: -ms-flexbox;
8852
+ display: flex;
8853
+ -webkit-flex-wrap: wrap;
8854
+ -ms-flex-wrap: wrap;
8855
+ flex-wrap: wrap;
8856
+ }
8857
+
8858
+ .premium-video-box-playlist-container .premium-video-box-container {
8859
+ height: 100%;
8860
+ overflow: hidden;
8861
+ }
8862
+
8863
+ .premium-video-box-container:hover .premium-video-box-image-container.zoomin {
8864
+ -webkit-transform: scale(1.1);
8865
+ -ms-transform: scale(1.1);
8866
+ transform: scale(1.1);
8867
+ }
8868
+
8869
+ .premium-video-box-container:hover .premium-video-box-image-container.zoomout {
8870
+ -webkit-transform: scale(1);
8871
+ -ms-transform: scale(1);
8872
+ transform: scale(1);
8873
+ }
8874
+
8875
+ .premium-video-box-container:hover .premium-video-box-image-container.scale {
8876
+ -webkit-transform: scale(1.3) rotate(5deg);
8877
+ -ms-transform: scale(1.3) rotate(5deg);
8878
+ transform: scale(1.3) rotate(5deg);
8879
+ }
8880
+
8881
+ .premium-video-box-container:hover .premium-video-box-image-container.gray {
8882
+ -webkit-filter: grayscale(0%);
8883
+ filter: grayscale(0%);
8884
+ }
8885
+
8886
+ .premium-video-box-container:hover .premium-video-box-image-container.blur {
8887
+ -webkit-filter: blur(3px);
8888
+ filter: blur(3px);
8889
+ }
8890
+
8891
+ .premium-video-box-container:hover .premium-video-box-image-container.sepia {
8892
+ -webkit-filter: sepia(0%);
8893
+ filter: sepia(0%);
8894
+ }
8895
+
8896
+ .premium-video-box-container:hover .premium-video-box-image-container.trans {
8897
+ -webkit-transform: translateX(0px) scale(1.1);
8898
+ -ms-transform: translateX(0px) scale(1.1);
8899
+ transform: translateX(0px) scale(1.1);
8900
+ }
8901
+
8902
+ .premium-video-box-container:hover .premium-video-box-image-container.bright {
8903
+ -webkit-filter: brightness(1.2);
8904
+ filter: brightness(1.2);
8905
+ }
8906
+
8907
+ .premium-video-box-image-container.gray {
8908
+ -webkit-filter: grayscale(100%);
8909
+ filter: grayscale(100%);
8910
+ }
8911
+
8912
+ .premium-video-box-image-container.zoomout,
8913
+ .premium-video-box-image-container.scale {
8914
+ -webkit-transform: scale(1.2);
8915
+ -ms-transform: scale(1.2);
8916
+ transform: scale(1.2);
8917
+ }
8918
+
8919
+ .premium-video-box-image-container.sepia {
8920
+ -webkit-filter: sepia(30%);
8921
+ filter: sepia(30%);
8922
+ }
8923
+
8924
+ .premium-video-box-image-container.bright {
8925
+ -webkit-filter: brightness(1);
8926
+ filter: brightness(1);
8927
+ }
8928
+
8929
+ .premium-video-box-image-container.trans {
8930
+ -webkit-transform: translateX(-15px) scale(1.1);
8931
+ -ms-transform: translateX(-15px) scale(1.1);
8932
+ transform: translateX(-15px) scale(1.1);
8933
+ }
8934
+
8935
+ .premium-video-box-mask-media {
8936
+ -webkit-mask-repeat: no-repeat;
8937
+ mask-repeat: no-repeat;
8938
+ }
8939
+
8940
+ /* Sticky Video Option */
8941
+ .premium-video-box-container.premium-video-box-sticky-apply {
8942
+ z-index: 99;
8943
+ overflow: unset;
8944
+ }
8945
+
8946
+ .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
8947
+ position: fixed !important;
8948
+ z-index: 99999;
8949
+ height: 225px;
8950
+ width: 400px;
8951
+ background: #fff;
8952
+ }
8953
+
8954
+ .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-vimeo-wrap,
8955
+ .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-container:before {
8956
+ visibility: hidden;
8957
+ }
8958
+
8959
+ .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 {
8960
+ -webkit-box-shadow: unset;
8961
+ box-shadow: unset;
8962
+ }
8963
+
8964
+ .premium-video-box-sticky-close,
8965
+ .premium-video-box-sticky-infobar {
8966
+ display: none;
8967
+ }
8968
+
8969
+ .premium-video-box-sticky-apply .premium-video-box-sticky-close {
8970
+ position: absolute;
8971
+ padding: 5px;
8972
+ cursor: pointer;
8973
+ z-index: 99999;
8974
+ height: 14px;
8975
+ width: 14px;
8976
+ -webkit-box-sizing: content-box;
8977
+ -moz-box-sizing: content-box;
8978
+ box-sizing: content-box;
8979
+ -webkit-border-radius: 100%;
8980
+ border-radius: 100%;
8981
+ -js-display: flex;
8982
+ display: -webkit-box;
8983
+ display: -webkit-flex;
8984
+ display: -moz-box;
8985
+ display: -ms-flexbox;
8986
+ display: flex;
8987
+ -webkit-box-pack: center;
8988
+ -webkit-justify-content: center;
8989
+ -moz-box-pack: center;
8990
+ -ms-flex-pack: center;
8991
+ justify-content: center;
8992
+ -webkit-box-align: center;
8993
+ -webkit-align-items: center;
8994
+ -moz-box-align: center;
8995
+ -ms-flex-align: center;
8996
+ align-items: center;
8997
+ }
8998
+
8999
+ .premium-video-box-sticky-apply .premium-video-box-play-icon-container {
9000
+ -js-display: flex;
9001
+ display: -webkit-box;
9002
+ display: -webkit-flex;
9003
+ display: -moz-box;
9004
+ display: -ms-flexbox;
9005
+ display: flex;
9006
+ }
9007
+
9008
+ .premium-video-box-sticky-apply .premium-video-box-play-icon {
9009
+ -webkit-transition: none;
9010
+ transition: none;
9011
+ }
9012
+
9013
+ .premium-video-box-sticky-apply .premium-video-box-sticky-infobar {
9014
+ display: block;
9015
+ position: relative;
9016
+ top: 100%;
9017
+ width: 100%;
9018
+ padding: 5px;
9019
+ text-align: center;
9020
+ z-index: 9999;
9021
+ margin-top: -1px;
9022
+ }
9023
+
9024
+ .premium-video-box-sticky-apply .premium-video-box-inner-wrap.ui-draggable {
9025
+ cursor: move;
9026
+ }
9027
+
9028
+ .premium-video-sticky-top-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
9029
+ right: auto;
9030
+ left: 20px;
9031
+ top: 20px;
9032
+ }
9033
+
9034
+ .premium-video-sticky-bottom-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
9035
+ right: auto;
9036
+ left: 20px;
9037
+ bottom: 20px;
9038
+ }
9039
+
9040
+ .premium-video-sticky-top-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
9041
+ left: auto;
9042
+ right: 20px;
9043
+ top: 20px;
9044
+ }
9045
+
9046
+ .premium-video-sticky-bottom-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
9047
+ left: auto;
9048
+ right: 20px;
9049
+ bottom: 20px;
9050
+ }
9051
+
9052
+ .premium-video-sticky-center-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
9053
+ right: auto;
9054
+ left: 20px;
9055
+ top: 50%;
9056
+ -webkit-transform: translateY(-50%);
9057
+ -ms-transform: translateY(-50%);
9058
+ transform: translateY(-50%);
9059
+ }
9060
+
9061
+ .premium-video-sticky-center-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
9062
+ left: auto;
9063
+ right: 20px;
9064
+ top: 50%;
9065
+ -webkit-transform: translateY(-50%);
9066
+ -ms-transform: translateY(-50%);
9067
+ transform: translateY(-50%);
9068
+ }
9069
+
9070
+ .premium-video-sticky-bottom-right .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap,
9071
+ .premium-video-sticky-bottom-left .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
9072
+ bottom: 55px;
9073
+ }
9074
+
9075
+ .premium-video-sticky-top-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
9076
+ .premium-video-sticky-bottom-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
9077
+ .premium-video-sticky-center-left .premium-video-box-sticky-apply .premium-video-box-sticky-close {
9078
+ top: -10px;
9079
+ right: -10px;
9080
+ }
9081
+
9082
+ .premium-video-sticky-top-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
9083
+ .premium-video-sticky-bottom-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
9084
+ .premium-video-sticky-center-right .premium-video-box-sticky-apply .premium-video-box-sticky-close {
9085
+ top: -10px;
9086
+ left: -10px;
9087
+ }
9088
+
9089
+ .premium-video-box-filter-sticky {
9090
+ -webkit-filter: none !important;
9091
+ filter: none !important;
9092
+ }
9093
+
9094
+ .premium-mscroll-yes.elementor-widget-premium-addon-video-box div {
9095
+ cursor: default;
9096
+ }
9097
+
9098
+ /************ Premium Vertical Scroll ************/
9099
+ /*************************************************/
9100
+ .premium-vscroll-inner {
9101
+ position: relative;
9102
+ min-height: 100%;
9103
+ }
9104
+
9105
+ .premium-vscroll-inner .premium-vscroll-dots {
9106
+ position: fixed;
9107
+ z-index: 100;
9108
+ opacity: 1;
9109
+ margin-top: -32px;
9110
+ -webkit-transition: all 0.3s ease-in-out;
9111
+ transition: all 0.3s ease-in-out;
9112
+ }
9113
+
9114
+ .premium-vscroll-wrap .premium-vscroll-nav-menu {
9115
+ opacity: 1;
9116
+ -webkit-transition: all 0.3s ease-in-out;
9117
+ transition: all 0.3s ease-in-out;
9118
+ }
9119
+
9120
+ .premium-vscroll-inner .premium-vscroll-dots,
9121
+ .premium-vscroll-wrap .premium-vscroll-dots-hide {
9122
+ opacity: 0;
9123
+ visibility: hidden;
9124
+ }
9125
+
9126
+ .premium-vscroll-nav-dots-yes .premium-vscroll-inner .premium-vscroll-dots:not(.premium-vscroll-dots-hide) {
9127
+ opacity: 1;
9128
+ visibility: visible;
9129
+ }
9130
+
9131
+ .premium-vscroll-dots.middle {
9132
+ top: 50%;
9133
+ margin-top: 0;
9134
+ -webkit-transform: translateY(-50%);
9135
+ -ms-transform: translateY(-50%);
9136
+ transform: translateY(-50%);
9137
+ }
9138
+
9139
+ .premium-vscroll-dots.top {
9140
+ top: 40px;
9141
+ }
9142
+
9143
+ .premium-vscroll-dots.bottom {
9144
+ bottom: 30px;
9145
+ }
9146
+
9147
+ .premium-vscroll-dots.right {
9148
+ right: 17px;
9149
+ }
9150
+
9151
+ .premium-vscroll-dots.left {
9152
+ left: 17px;
9153
+ }
9154
+
9155
+ .premium-vscroll-inner ul.premium-vscroll-dots-list,
9156
+ .premium-vscroll-wrap .premium-vscroll-nav-menu {
9157
+ margin: 0 !important;
9158
+ padding: 0;
9159
+ }
9160
+
9161
+ .premium-vscroll-inner ul.premium-vscroll-dots-list li {
9162
+ width: 14px;
9163
+ height: 13px;
9164
+ margin: 7px;
9165
+ position: relative;
9166
+ -js-display: flex;
9167
+ display: -webkit-box;
9168
+ display: -webkit-flex;
9169
+ display: -moz-box;
9170
+ display: -ms-flexbox;
9171
+ display: flex;
9172
+ -webkit-box-pack: center;
9173
+ -webkit-justify-content: center;
9174
+ -moz-box-pack: center;
9175
+ -ms-flex-pack: center;
9176
+ justify-content: center;
9177
+ -webkit-box-align: center;
9178
+ -webkit-align-items: center;
9179
+ -moz-box-align: center;
9180
+ -ms-flex-align: center;
9181
+ align-items: center;
9182
+ overflow: visible;
9183
+ }
9184
+
9185
+ .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link {
9186
+ display: block;
9187
+ position: relative;
9188
+ z-index: 1;
9189
+ width: 100%;
9190
+ height: 100%;
9191
+ cursor: pointer;
9192
+ text-decoration: none;
9193
+ }
9194
+
9195
+ .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link span {
9196
+ top: 2px;
9197
+ left: 2.5px;
9198
+ width: 8px;
9199
+ height: 8px;
9200
+ border: 1px solid #000;
9201
+ -webkit-border-radius: 50%;
9202
+ border-radius: 50%;
9203
+ position: absolute;
9204
+ z-index: 1;
9205
+ -webkit-transition: all 0.3s ease-in-out;
9206
+ transition: all 0.3s ease-in-out;
9207
+ }
9208
+
9209
+ .premium-vscroll-inner .premium-vscroll-dot-item.active .premium-vscroll-nav-link span {
9210
+ -webkit-transform: scale(1.6);
9211
+ -ms-transform: scale(1.6);
9212
+ transform: scale(1.6);
9213
+ }
9214
+
9215
+ .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-tooltip {
9216
+ position: absolute;
9217
+ color: #fff;
9218
+ font-size: 14px;
9219
+ font-family: arial, helvetica, sans-serif;
9220
+ white-space: nowrap;
9221
+ max-width: 220px;
9222
+ padding-left: 0.4em;
9223
+ padding-right: 0.4em;
9224
+ }
9225
+
9226
+ .premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip {
9227
+ right: 27px;
9228
+ }
9229
+
9230
+ .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item {
9231
+ width: 4px;
9232
+ height: 30px;
9233
+ }
9234
+
9235
+ .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item span {
9236
+ width: 100%;
9237
+ height: 100%;
9238
+ -webkit-border-radius: 0;
9239
+ border-radius: 0;
9240
+ }
9241
+
9242
+ .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item.active span {
9243
+ -webkit-transform: scale(1);
9244
+ -ms-transform: scale(1);
9245
+ transform: scale(1);
9246
+ }
9247
+
9248
+ .premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip::after {
9249
+ position: absolute;
9250
+ top: 50%;
9251
+ content: "";
9252
+ left: -webkit-calc(100% - 1px);
9253
+ left: calc(100% - 1px);
9254
+ width: 10px;
9255
+ height: 0;
9256
+ border-top: 6px solid transparent;
9257
+ border-bottom: 6px solid transparent;
9258
+ border-left: 6px solid;
9259
+ -webkit-transform: translateY(-50%);
9260
+ -ms-transform: translateY(-50%);
9261
+ transform: translateY(-50%);
9262
+ }
9263
+
9264
+ .premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip {
9265
+ left: 27px;
9266
+ }
9267
+
9268
+ .premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip::after {
9269
+ position: absolute;
9270
+ top: 50%;
9271
+ content: "";
9272
+ right: -webkit-calc(100% - 1px);
9273
+ right: calc(100% - 1px);
9274
+ width: 10px;
9275
+ height: 0;
9276
+ border-top: 6px solid transparent;
9277
+ border-bottom: 6px solid transparent;
9278
+ border-right: 6px solid;
9279
+ -webkit-transform: translateY(-50%);
9280
+ -ms-transform: translateY(-50%);
9281
+ transform: translateY(-50%);
9282
+ }
9283
+
9284
+ /* * Lines */
9285
+ @media (max-width: 768px) {
9286
+ .premium-vscroll-dots.right {
9287
+ right: 7px;
9288
+ }
9289
+
9290
+ .premium-vscroll-dots.left {
9291
+ left: 7px;
9292
+ }
9293
+ }
9294
+
9295
+ .premium-vscroll-nav-menu {
9296
+ position: fixed;
9297
+ top: 20px;
9298
+ height: 40px;
9299
+ z-index: 100;
9300
+ padding: 0;
9301
+ margin: 0;
9302
+ }
9303
+
9304
+ .premium-vscroll-nav-menu.left {
9305
+ left: 0;
9306
+ }
9307
+
9308
+ .premium-vscroll-nav-menu.right {
9309
+ right: 0;
9310
+ }
9311
+
9312
+ .premium-vscroll-nav-menu .premium-vscroll-nav-item {
9313
+ display: inline-block;
9314
+ margin: 10px;
9315
+ color: #000;
9316
+ background: #fff;
9317
+ background: rgba(255, 255, 255, 0.3);
9318
+ }
9319
+
9320
+ .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link {
9321
+ padding: 9px 18px;
9322
+ display: block;
9323
+ cursor: pointer;
9324
+ color: #000;
9325
+ }
9326
+
9327
+ .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:hover {
9328
+ color: #000;
9329
+ }
9330
+
9331
+ .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:focus {
9332
+ outline: none;
9333
+ }
9334
+
9335
+ .multiscroll-nav li a:focus {
9336
+ outline: none;
9337
+ }
9338
+
9339
+ .premium-vscroll-temp .slimScrollBar {
9340
+ visibility: hidden;
9341
+ }
9342
+
9343
+ [data-hijacking="off"] .premium-vscroll-temp {
9344
+ height: 100vh;
9345
+ }
9346
+
9347
+ [data-hijacking="off"] .premium-vscroll-temp>div {
9348
+ opacity: 0;
9349
+ top: 0;
9350
+ left: 0;
9351
+ width: 100%;
9352
+ /* Force Hardware Acceleration */
9353
+ -webkit-transform: translateZ(0);
9354
+ transform: translateZ(0);
9355
+ -webkit-backface-visibility: hidden;
9356
+ backface-visibility: hidden;
9357
+ }
9358
+
9359
+ [data-hijacking="off"] .premium-vscroll-temp:first-of-type>div::before {
9360
+ display: none;
9361
+ position: absolute;
9362
+ width: 100%;
9363
+ top: 20px;
9364
+ z-index: 2;
9365
+ }
9366
+
9367
+ [data-hijacking="off"][data-animation="rotate"] .premium-vscroll-temp {
9368
+ position: relative;
9369
+ /* enable a 3D-space for children elements */
9370
+ -webkit-perspective: 1800px;
9371
+ perspective: 1800px;
9372
+ }
9373
+
9374
+ [data-hijacking="off"][data-animation="rotate"] .premium-vscroll-temp>div {
9375
+ position: absolute;
9376
+ -webkit-transform-origin: center bottom;
9377
+ -ms-transform-origin: center bottom;
9378
+ transform-origin: center bottom;
9379
+ }
9380
+
9381
+ [data-hijacking="off"][data-animation="rotate"] .premium-vscroll-temp:last-of-type>div {
9382
+ opacity: 1 !important;
9383
+ -webkit-transform: translateY(0px) scale(1) rotateX(0deg) !important;
9384
+ transform: translateY(0px) scale(1) rotateX(0deg) !important;
9385
+ }
9386
+
9387
+ [data-hijacking="off"][data-animation="parallax"] .premium-vscroll-temp>div {
9388
+ position: fixed;
9389
+ }
9390
+
9391
+ [data-hijacking="off"][data-animation="scaleDown"] .premium-vscroll-temp>div {
9392
+ position: fixed;
9393
+ }
9394
+
9395
+ [data-hijacking="off"] .premium-vscroll-parallax-last {
9396
+ -webkit-transform: translateY(0px) scale(1) !important;
9397
+ -ms-transform: translateY(0px) scale(1) !important;
9398
+ transform: translateY(0px) scale(1) !important;
9399
+ }
9400
+
9401
+ [data-hijacking="off"] .premium-vscroll-parallax-position {
9402
+ position: unset !important;
9403
+ }
9404
+
9405
+ /********** Premium Woo Products **********/
9406
+ /******************************************/
9407
+ .ast-single-post .entry-content .premium-woocommerce a {
9408
+ text-decoration: none;
9409
+ }
9410
+
9411
+ .premium-woocommerce .premium-woo-qv-btn {
9412
+ cursor: pointer;
9413
+ }
9414
+
9415
+ .premium-woocommerce:not(.premium-woo-skin-grid-7) li.product .star-rating {
9416
+ margin: 0 auto 0.5em;
9417
+ }
9418
+
9419
+ .premium-woocommerce:not(.premium-woo-skin-grid-10) .premium-woo-product-sale-wrap .premium-woo-product-onsale,
9420
+ .premium-woocommerce:not(.premium-woo-skin-grid-10) .premium-woo-product-featured-wrap .premium-woo-product-featured {
9421
+ display: block;
9422
+ text-align: center;
9423
+ color: #fff;
9424
+ min-width: 2em;
9425
+ min-height: 2em;
9426
+ line-height: 2em;
9427
+ padding: 0.3em 0.6em;
9428
+ margin: 0.5em 0.6em;
9429
+ }
9430
+
9431
+ .premium-woocommerce .pa-out-of-stock {
9432
+ display: block;
9433
+ text-align: center;
9434
+ color: #fff;
9435
+ min-width: 2em;
9436
+ min-height: 2em;
9437
+ line-height: 2em;
9438
+ padding: 0.3em 0.6em;
9439
+ margin: 0.5em 0.6em;
9440
+ }
9441
+
9442
+ .premium-woocommerce .woocommerce-loop-product__title {
9443
+ margin-bottom: 0.5em;
9444
+ font-size: 1em;
9445
+ -webkit-transition: all 0.3s ease-in-out;
9446
+ transition: all 0.3s ease-in-out;
9447
+ }
9448
+
9449
+ .premium-woocommerce .premium-woo-product-category {
9450
+ display: block;
9451
+ font-size: 0.85em;
9452
+ margin-bottom: 0.5em;
9453
+ line-height: 1.3;
9454
+ }
9455
+
9456
+ .premium-woocommerce .star-rating {
9457
+ display: block;
9458
+ float: none;
9459
+ -webkit-backface-visibility: hidden;
9460
+ backface-visibility: hidden;
9461
+ overflow: hidden;
9462
+ position: relative;
9463
+ height: 1em;
9464
+ line-height: 1;
9465
+ font-size: 0.857em;
9466
+ width: 5.4em;
9467
+ font-family: "star";
9468
+ }
9469
+
9470
+ .premium-woocommerce .star-rating::before {
9471
+ content: "\73\73\73\73\73";
9472
+ color: #54595f;
9473
+ float: left;
9474
+ top: 0;
9475
+ left: 0;
9476
+ position: absolute;
9477
+ }
9478
+
9479
+ .premium-woocommerce .star-rating span {
9480
+ overflow: hidden;
9481
+ float: left;
9482
+ top: 0;
9483
+ left: 0;
9484
+ position: absolute;
9485
+ padding-top: 1.5em;
9486
+ }
9487
+
9488
+ .premium-woocommerce .star-rating span::before {
9489
+ content: "\53\53\53\53\53";
9490
+ color: inherit;
9491
+ top: 0;
9492
+ position: absolute;
9493
+ left: 0;
9494
+ }
9495
+
9496
+ .premium-woocommerce .premium-woo-products-inner ul.products {
9497
+ -js-display: flex;
9498
+ display: -webkit-box;
9499
+ display: -webkit-flex;
9500
+ display: -moz-box;
9501
+ display: -ms-flexbox;
9502
+ display: flex;
9503
+ margin: 0;
9504
+ padding: 0;
9505
+ -webkit-flex-wrap: wrap;
9506
+ -ms-flex-wrap: wrap;
9507
+ flex-wrap: wrap;
9508
+ list-style: none outside;
9509
+ -webkit-column-gap: 0;
9510
+ -moz-column-gap: 0;
9511
+ column-gap: 0;
9512
+ }
9513
+
9514
+ .premium-woocommerce .premium-woo-products-inner ul.products li.product {
9515
+ margin: 0 0 10px;
9516
+ padding: 0 10px;
9517
+ }
9518
+
9519
+ .premium-woocommerce .premium-woo-products-inner ul.products li.product .premium-woo-product-wrapper {
9520
+ overflow: hidden;
9521
+ -webkit-transition: all 0.3s ease-in-out;
9522
+ transition: all 0.3s ease-in-out;
9523
+ }
9524
+
9525
+ .premium-woocommerce .woocommerce-loop-product__link {
9526
+ position: relative;
9527
+ display: block !important;
9528
+ overflow: hidden;
9529
+ -webkit-transition: all 0.3s ease-in-out;
9530
+ transition: all 0.3s ease-in-out;
9531
+ }
9532
+
9533
+ .premium-woocommerce .premium-woo-ribbon-container,
9534
+ .premium-woocommerce .pa-out-of-stock {
9535
+ position: absolute;
9536
+ z-index: 9;
9537
+ }
9538
+
9539
+ .premium-woocommerce .premium-woo-ribbon-container {
9540
+ top: 0;
9541
+ left: 0;
9542
+ }
9543
+
9544
+ .premium-woocommerce .pa-out-of-stock {
9545
+ top: 7px;
9546
+ left: 9px;
9547
+ margin: 0;
9548
+ }
9549
+
9550
+ .premium-woo-product-thumbnail {
9551
+ position: relative;
9552
+ overflow: hidden;
9553
+ }
9554
+
9555
+ .premium-woo-product-thumbnail .woocommerce-loop-product__link img {
9556
+ margin: 0;
9557
+ width: 100%;
9558
+ }
9559
+
9560
+ .premium-woo-product-sale-wrap,
9561
+ .premium-woo-product-featured-wrap {
9562
+ margin: 0;
9563
+ }
9564
+
9565
+ .premium-woocommerce .premium-woo-products-details-wrap {
9566
+ padding: 1em 1.2em;
9567
+ }
9568
+
9569
+ .premium-woocommerce .premium-woo-products-details-wrap .button {
9570
+ display: inline-block;
9571
+ background-color: #6ec1e4;
9572
+ color: #fff;
9573
+ margin: 0.5em 0;
9574
+ line-height: 1.3;
9575
+ padding: 10px 40px;
9576
+ font-size: 100%;
9577
+ cursor: pointer;
9578
+ text-decoration: none;
9579
+ overflow: visible;
9580
+ font-weight: 700;
9581
+ background-image: none;
9582
+ border: none;
9583
+ -webkit-border-radius: 0px;
9584
+ border-radius: 0px;
9585
+ -webkit-box-shadow: none;
9586
+ box-shadow: none;
9587
+ text-shadow: none;
9588
+ -webkit-transition: all 0.3s ease-in-out;
9589
+ transition: all 0.3s ease-in-out;
9590
+ }
9591
+
9592
+ .premium-woocommerce li.product .price {
9593
+ display: block;
9594
+ line-height: 1.3;
9595
+ font-weight: 700;
9596
+ margin-bottom: 0.5em;
9597
+ font-size: 0.9em;
9598
+ }
9599
+
9600
+ .premium-woocommerce li.product .price del {
9601
+ display: inline-block;
9602
+ font-weight: 400;
9603
+ background: transparent;
9604
+ opacity: 1;
9605
+ }
9606
+
9607
+ .premium-woocommerce li.product .price ins {
9608
+ display: inline-block;
9609
+ background: transparent;
9610
+ text-decoration: none;
9611
+ font-weight: inherit;
9612
+ }
9613
+
9614
+ .premium-woocommerce li.product .price .amount {
9615
+ color: inherit !important;
9616
+ }
9617
+
9618
+ .premium-woocommerce li.product .premium-woo-product-desc p {
9619
+ margin: 0;
9620
+ }
9621
+
9622
+ .premium-woo-product-align-left .premium-woocommerce li.product .star-rating {
9623
+ margin-left: 0;
9624
+ margin-right: auto;
9625
+ }
9626
+
9627
+ .premium-woo-product-align-center .premium-woocommerce li.product .star-rating {
9628
+ margin-left: auto;
9629
+ margin-right: auto;
9630
+ }
9631
+
9632
+ .premium-woo-product-align-right .premium-woocommerce li.product .star-rating {
9633
+ margin-left: auto;
9634
+ margin-right: 0;
9635
+ }
9636
+
9637
+ .premium-woo-products-pagination ul.page-numbers {
9638
+ -js-display: flex;
9639
+ display: -webkit-box;
9640
+ display: -webkit-flex;
9641
+ display: -moz-box;
9642
+ display: -ms-flexbox;
9643
+ display: flex;
9644
+ list-style-type: none;
9645
+ margin: 0;
9646
+ margin-top: 10px;
9647
+ padding: 0;
9648
+ border: none;
9649
+ -webkit-box-pack: center;
9650
+ -webkit-justify-content: center;
9651
+ -moz-box-pack: center;
9652
+ -ms-flex-pack: center;
9653
+ justify-content: center;
9654
+ }
9655
+
9656
+ .premium-woo-products-pagination ul.page-numbers li {
9657
+ margin: 0 0.4em 0.4em 0;
9658
+ padding: 0;
9659
+ text-align: center;
9660
+ }
9661
+
9662
+ .premium-woo-products-pagination ul.page-numbers li .page-numbers {
9663
+ margin: 0;
9664
+ text-decoration: none;
9665
+ color: #000;
9666
+ border: 1px solid #54595f;
9667
+ padding: 0;
9668
+ line-height: 1;
9669
+ font-size: 1em;
9670
+ font-weight: 400;
9671
+ padding: 0.75em;
9672
+ display: block;
9673
+ min-width: 2.5em;
9674
+ -webkit-transition: all 0.3s ease-in-out;
9675
+ transition: all 0.3s ease-in-out;
9676
+ }
9677
+
9678
+ .premium-woo-products-pagination ul.page-numbers li .page-numbers:hover,
9679
+ .premium-woo-products-pagination ul.page-numbers li .page-numbers.current {
9680
+ background-color: #54595f;
9681
+ color: #fff;
9682
+ outline: none;
9683
+ }
9684
+
9685
+ .premium-woocommerce .premium-loading-feed,
9686
+ .premium-woo-quick-view-loader .premium-loading-feed {
9687
+ display: block;
9688
+ position: absolute;
9689
+ width: 100%;
9690
+ height: 100%;
9691
+ top: 0px;
9692
+ left: 0px;
9693
+ bottom: 0px;
9694
+ right: 0px;
9695
+ background: rgba(255, 255, 255, 0.2);
9696
+ -js-display: flex;
9697
+ display: -webkit-box;
9698
+ display: -webkit-flex;
9699
+ display: -moz-box;
9700
+ display: -ms-flexbox;
9701
+ display: flex;
9702
+ -webkit-box-align: center;
9703
+ -webkit-align-items: center;
9704
+ -moz-box-align: center;
9705
+ -ms-flex-align: center;
9706
+ align-items: center;
9707
+ }
9708
+
9709
  /**
9710
+ * Image Hover Effects
9711
+ */
9712
+ .premium-woocommerce .woocommerce-loop-product__link img {
9713
+ -webkit-transition: all 0.3s ease-in-out;
9714
+ transition: all 0.3s ease-in-out;
9715
+ }
9716
+
9717
+ .premium-woo-product__hover-zoomout .woocommerce-loop-product__link img {
9718
+ -webkit-transform: scale(1.2);
9719
+ -ms-transform: scale(1.2);
9720
+ transform: scale(1.2);
9721
+ }
9722
+
9723
+ .premium-woo-product__hover-zoomout li.product:hover .woocommerce-loop-product__link img {
9724
+ -webkit-transform: none;
9725
+ -ms-transform: none;
9726
+ transform: none;
9727
+ }
9728
+
9729
+ .premium-woo-product__hover-zoomin .woocommerce-loop-product__link img {
9730
+ -webkit-transform: none;
9731
+ -ms-transform: none;
9732
+ transform: none;
9733
+ }
9734
+
9735
+ .premium-woo-product__hover-zoomin li.product:hover .woocommerce-loop-product__link img {
9736
+ -webkit-transform: scale(1.2);
9737
+ -ms-transform: scale(1.2);
9738
+ transform: scale(1.2);
9739
+ }
9740
+
9741
+ .premium-woo-product__hover-gray .woocommerce-loop-product__link img {
9742
+ -webkit-filter: grayscale(100%);
9743
+ filter: grayscale(100%);
9744
+ }
9745
+
9746
+ .premium-woo-product__hover-gray li.product:hover .woocommerce-loop-product__link img {
9747
+ -webkit-filter: grayscale(0%);
9748
+ filter: grayscale(0%);
9749
+ }
9750
+
9751
+ .premium-woo-product__hover-sepia .woocommerce-loop-product__link img {
9752
+ -webkit-filter: sepia(30%);
9753
+ filter: sepia(30%);
9754
+ }
9755
+
9756
+ .premium-woo-product__hover-sepia li.product:hover .woocommerce-loop-product__link img {
9757
+ -webkit-filter: sepia(0%);
9758
+ filter: sepia(0%);
9759
+ }
9760
+
9761
+ .premium-woo-product__hover-bright .woocommerce-loop-product__link img {
9762
+ -webkit-filter: brightness(1);
9763
+ filter: brightness(1);
9764
+ }
9765
+
9766
+ .premium-woo-product__hover-bright li.product:hover .woocommerce-loop-product__link img {
9767
+ -webkit-filter: brightness(1.2);
9768
+ filter: brightness(1.2);
9769
+ }
9770
+
9771
+ .premium-woo-product__hover-trans .woocommerce-loop-product__link img {
9772
+ -webkit-transform: translateX(-15px) scale(1.1);
9773
+ -ms-transform: translateX(-15px) scale(1.1);
9774
+ transform: translateX(-15px) scale(1.1);
9775
+ }
9776
+
9777
+ .premium-woo-product__hover-trans li.product:hover .woocommerce-loop-product__link img {
9778
+ -webkit-transform: translateX(0px) scale(1.1);
9779
+ -ms-transform: translateX(0px) scale(1.1);
9780
+ transform: translateX(0px) scale(1.1);
9781
+ }
9782
+
9783
+ .premium-woo-product__hover-scale li.product:hover .woocommerce-loop-product__link img {
9784
+ -webkit-transform: scaleX(1.3) scaleY(1.3) rotate(5deg);
9785
+ -ms-transform: scaleX(1.3) scaleY(1.3) rotate(5deg);
9786
+ transform: scaleX(1.3) scaleY(1.3) rotate(5deg);
9787
+ }
9788
+
9789
+ .premium-woocommerce .premium-woo-product__on_hover {
9790
+ position: absolute;
9791
+ top: 0;
9792
+ right: 0;
9793
+ bottom: 0;
9794
+ left: 0;
9795
+ height: 100%;
9796
+ opacity: 0;
9797
+ }
9798
+
9799
+ .premium-woo-product__hover-swap li.product:hover .premium-woo-product__on_hover {
9800
+ opacity: 1;
9801
+ }
9802
+
9803
+ .premium-woo-skin-grid-1 .premium-woo-qv-btn,
9804
+ .premium-woo-skin-grid-3 .premium-woo-qv-btn,
9805
+ .premium-woo-skin-grid-4 .premium-woo-qv-btn {
9806
+ position: absolute;
9807
+ bottom: 0;
9808
+ left: 0;
9809
+ width: 100%;
9810
+ text-align: center;
9811
+ padding: 5px;
9812
+ background: rgba(2, 2, 2, 0.5);
9813
+ color: #fff;
9814
+ -webkit-transition: all 0.3s ease-in-out;
9815
+ transition: all 0.3s ease-in-out;
9816
+ z-index: 2;
9817
+ -webkit-transform: translateY(100%);
9818
+ -ms-transform: translateY(100%);
9819
+ transform: translateY(100%);
9820
+ }
9821
+
9822
+ .premium-woo-skin-grid-4 .premium-woo-qv-btn {
9823
+ -webkit-transition-delay: 0.1s;
9824
+ transition-delay: 0.1s;
9825
+ }
9826
+
9827
+ .premium-woo-skin-grid-1 .premium-woo-qv-icon,
9828
+ .premium-woo-skin-grid-3 .premium-woo-qv-icon,
9829
+ .premium-woo-skin-grid-4 .premium-woo-qv-icon,
9830
+ .premium-woo-skin-grid-6 .premium-woo-qv-icon {
9831
+ margin-left: 0.5em;
9832
+ }
9833
+
9834
+ .premium-woo-product-thumbnail:hover .premium-woo-qv-btn-translate {
9835
+ -webkit-transform: translateY(0);
9836
+ -ms-transform: translateY(0);
9837
+ transform: translateY(0);
9838
+ }
9839
+
9840
+ .premium-woo-product-wrapper .premium-woo-qv-data {
9841
+ position: absolute;
9842
+ top: 0;
9843
+ left: 0;
9844
+ width: 100%;
9845
+ height: 100%;
9846
+ z-index: 1;
9847
+ overflow: hidden;
9848
+ cursor: pointer;
9849
+ }
9850
+
9851
  /**
9852
+ * Skin 1,4
9853
+ */
9854
+ .premium-woo-skin-grid-1 .premium-woo-product-actions-wrapper,
9855
+ .premium-woo-skin-grid-4 .premium-woo-product-actions-wrapper {
9856
+ position: absolute;
9857
+ top: 0.7em;
9858
+ right: 1em;
9859
+ -webkit-transform: translate3d(15px, 0, 0);
9860
+ transform: translate3d(15px, 0, 0);
9861
+ -webkit-transition: all 0.3s ease-in-out;
9862
+ transition: all 0.3s ease-in-out;
9863
+ opacity: 0;
9864
+ z-index: 9;
9865
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9866
 
9867
+ .premium-woocommerce .premium-woo-product-actions-wrapper .premium-woo-cart-btn {
9868
+ position: relative;
9869
+ display: block;
9870
+ margin: 0 0 3px;
9871
+ background: #fff;
9872
+ text-align: center;
9873
+ outline: 0;
9874
+ -webkit-transition: all 0.3s ease-in-out;
9875
+ transition: all 0.3s ease-in-out;
9876
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9877
 
9878
+ .premium-woocommerce .premium-woo-product-actions-wrapper .premium-woo-add-cart-icon {
9879
+ display: block;
9880
+ color: #54595f;
9881
+ width: 30px;
9882
+ line-height: 30px;
9883
+ height: 30px;
9884
+ cursor: pointer;
 
 
 
 
 
 
 
 
 
 
9885
  -webkit-transition: all 0.3s ease-in-out;
9886
+ transition: all 0.3s ease-in-out;
9887
+ }
9888
+
9889
+ .premium-woo-skin-grid-1 li.product:hover .premium-woo-product-actions-wrapper,
9890
+ .premium-woo-skin-grid-4 li.product:hover .premium-woo-product-actions-wrapper {
9891
+ -webkit-transform: translate3d(5px, 0, 0);
9892
+ transform: translate3d(5px, 0, 0);
9893
+ opacity: 1;
9894
+ }
9895
+
9896
+ .premium-woocommerce .premium-woo-cart-btn.adding .premium-woo-add-cart-icon {
9897
+ -webkit-animation: spin 2s linear infinite;
9898
+ animation: spin 2s linear infinite;
9899
+ }
9900
+
9901
+ .premium-woocommerce .premium-woo-cart-btn.adding .premium-woo-add-cart-icon::before {
9902
+ content: "\f013";
9903
+ }
9904
+
9905
+ .premium-woocommerce .premium-woo-cart-btn.added .premium-woo-add-cart-icon::before {
9906
+ content: "\f00c";
9907
+ }
9908
+
9909
+ /**
9910
+ * Skin 2
9911
+ */
9912
+ .premium-woo-skin-grid-2 li.product .premium-woo-products-details-wrap {
9913
+ position: absolute;
9914
+ background: #fff;
9915
+ bottom: 0;
9916
+ left: 0;
9917
+ width: 100%;
9918
+ z-index: 2;
9919
+ padding: 0;
9920
+ opacity: 0;
9921
+ -webkit-transition: opacity 0.2s, -webkit-transform 0.4s;
9922
+ transition: opacity 0.2s, -webkit-transform 0.4s;
9923
+ transition: transform 0.4s, opacity 0.2s;
9924
+ transition: transform 0.4s, opacity 0.2s, -webkit-transform 0.4s;
9925
+ -webkit-transform: translateZ(0) translateY(5px);
9926
+ transform: translateZ(0) translateY(5px);
9927
+ }
9928
+
9929
+ .premium-woo-skin-grid-2 .premium-woo-product-details {
9930
+ padding: 15px 0;
9931
+ }
9932
+
9933
+ .premium-woo-skin-grid-2 li.product:hover .premium-woo-products-details-wrap {
9934
+ opacity: 1;
9935
+ -webkit-transform: translateZ(0) translateY(0);
9936
+ transform: translateZ(0) translateY(0);
9937
+ }
9938
+
9939
+ .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper {
9940
+ position: static;
9941
+ -js-display: flex;
9942
+ display: -webkit-box;
9943
+ display: -webkit-flex;
9944
+ display: -moz-box;
9945
+ display: -ms-flexbox;
9946
+ display: flex;
9947
+ -webkit-box-orient: horizontal;
9948
+ -webkit-box-direction: reverse;
9949
+ -webkit-flex-direction: row-reverse;
9950
+ -moz-box-orient: horizontal;
9951
+ -moz-box-direction: reverse;
9952
+ -ms-flex-direction: row-reverse;
9953
+ flex-direction: row-reverse;
9954
+ }
9955
+
9956
+ .premium-woo-skin-grid-2 .premium-woo-product-actions-wrapper>* {
9957
  -webkit-box-flex: 1;
9958
  -webkit-flex: 1;
9959
+ -moz-box-flex: 1;
9960
+ -ms-flex: 1;
9961
+ flex: 1;
9962
+ min-width: 50%;
9963
+ }
9964
+
9965
+ .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper .button {
9966
+ -js-display: flex;
9967
+ display: -webkit-box;
9968
+ display: -webkit-flex;
9969
+ display: -moz-box;
9970
+ display: -ms-flexbox;
9971
+ display: flex;
9972
+ margin: 0;
9973
+ text-align: center;
9974
+ -webkit-box-pack: center;
9975
+ -webkit-justify-content: center;
9976
+ -moz-box-pack: center;
9977
+ -ms-flex-pack: center;
9978
+ justify-content: center;
9979
+ -webkit-box-align: center;
9980
+ -webkit-align-items: center;
9981
+ -moz-box-align: center;
9982
+ -ms-flex-align: center;
9983
+ align-items: center;
9984
+ }
9985
+
9986
+ .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper .premium-woo-qv-btn {
9987
+ background-color: #54595f;
9988
+ }
9989
+
9990
+ /**
9991
+ * Skin 4
9992
+ */
9993
+ .premium-woo-skin-grid-4 li.product .premium-woo-products-details-wrap {
9994
+ position: absolute;
9995
+ left: 0;
9996
+ right: 0;
9997
+ top: 50%;
9998
+ -webkit-transform: scale(0.9) translateZ(0) translateY(-50%);
9999
+ transform: scale(0.9) translateZ(0) translateY(-50%);
10000
+ text-align: center;
10001
+ z-index: 2;
10002
+ opacity: 0;
10003
+ -webkit-transition: opacity 0.5s, -webkit-transform 0.3s;
10004
+ transition: opacity 0.5s, -webkit-transform 0.3s;
10005
+ transition: opacity 0.5s, transform 0.3s;
10006
+ transition: opacity 0.5s, transform 0.3s, -webkit-transform 0.3s;
10007
+ }
10008
+
10009
+ .premium-woo-skin-grid-4 li.product .premium-woo-product-overlay,
10010
+ .premium-woo-skin-grid-8 li.product .premium-woo-product-overlay {
10011
  position: absolute;
10012
  top: 0;
10013
  left: 0;
10014
  width: 100%;
10015
  height: 100%;
10016
+ opacity: 0;
10017
+ visibility: hidden;
10018
+ background-color: rgba(27, 27, 23, 0.3);
10019
+ -webkit-transition: all 0.25s ease-in-out;
10020
+ transition: all 0.25s ease-in-out;
10021
+ }
10022
 
10023
+ .premium-woo-skin-grid-4 li.product:hover .premium-woo-product-overlay,
10024
+ .premium-woo-skin-grid-8 li.product:hover .premium-woo-product-overlay {
10025
+ opacity: 1;
10026
+ visibility: visible;
10027
+ z-index: 1;
10028
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10029
 
10030
+ .premium-woo-skin-grid-4 li.product:hover .premium-woo-products-details-wrap {
10031
+ -webkit-transform: scale(1) translateZ(0) translateY(-50%);
10032
+ transform: scale(1) translateZ(0) translateY(-50%);
10033
+ opacity: 1;
10034
+ }
10035
 
10036
+ /**
10037
+ * Skin 5
10038
+ */
10039
+ .premium-woo-skin-grid-5 li.product .premium-woo-product-actions-wrapper {
10040
+ -js-display: flex;
10041
+ display: -webkit-box;
10042
+ display: -webkit-flex;
10043
+ display: -moz-box;
10044
+ display: -ms-flexbox;
10045
+ display: flex;
10046
+ }
10047
 
10048
+ .premium-woo-skin-grid-5 li.product .premium-woo-product-actions-wrapper .premium-woo-qv-btn {
10049
+ -js-display: flex;
10050
+ display: -webkit-box;
10051
+ display: -webkit-flex;
10052
+ display: -moz-box;
10053
+ display: -ms-flexbox;
10054
+ display: flex;
10055
+ -webkit-box-align: center;
10056
+ -webkit-align-items: center;
10057
+ -moz-box-align: center;
10058
+ -ms-flex-align: center;
10059
+ align-items: center;
10060
+ background-color: #54595f;
10061
+ padding: 10px;
10062
+ -webkit-transition: all 0.25s ease 0s;
10063
+ transition: all 0.25s ease 0s;
10064
+ }
10065
 
10066
+ .premium-woo-skin-grid-5 li.product .premium-woo-products-details-wrap {
10067
+ width: 75%;
10068
+ }
 
 
 
 
 
10069
 
10070
+ .premium-woo-skin-grid-5 .premium-woo-product-wrapper {
10071
+ -js-display: flex;
10072
+ display: -webkit-box;
10073
+ display: -webkit-flex;
10074
+ display: -moz-box;
10075
+ display: -ms-flexbox;
10076
+ display: flex;
10077
+ -webkit-box-align: center;
10078
+ -webkit-align-items: center;
10079
+ -moz-box-align: center;
10080
+ -ms-flex-align: center;
10081
+ align-items: center;
10082
+ }
10083
 
10084
+ .premium-woo-product-align-right .premium-woo-skin-grid-5 .premium-woo-product-actions-wrapper {
10085
+ -webkit-box-pack: end;
10086
+ -webkit-justify-content: flex-end;
10087
+ -moz-box-pack: end;
10088
+ -ms-flex-pack: end;
10089
+ justify-content: flex-end;
10090
+ }
 
 
 
10091
 
10092
+ .premium-woo-product-align-center .premium-woo-skin-grid-5 .premium-woo-product-actions-wrapper {
10093
+ -webkit-box-pack: center;
10094
+ -webkit-justify-content: center;
10095
+ -moz-box-pack: center;
10096
+ -ms-flex-pack: center;
10097
+ justify-content: center;
10098
+ }
10099
 
10100
+ /**
10101
+ * Skin 6
10102
+ */
10103
+ .premium-woo-skin-grid-6 .premium-woo-qv-btn {
10104
+ position: absolute;
10105
+ top: 50%;
10106
+ left: 50%;
10107
+ min-width: 40%;
10108
+ text-align: center;
10109
+ padding: 5px;
10110
+ background: rgba(2, 2, 2, 0.5);
10111
+ color: #fff;
10112
+ -webkit-transform: translate(-50%, -50%);
10113
+ -ms-transform: translate(-50%, -50%);
10114
+ transform: translate(-50%, -50%);
10115
+ opacity: 0;
10116
+ visibility: hidden;
10117
+ -webkit-transition: all 0.3s ease-in-out;
10118
+ transition: all 0.3s ease-in-out;
10119
+ cursor: pointer;
10120
+ z-index: 2;
10121
+ }
10122
 
10123
+ .premium-woo-skin-grid-6 li.product:hover .premium-woo-qv-btn {
10124
+ opacity: 1;
10125
+ visibility: visible;
10126
+ }
10127
 
10128
+ .premium-woo-product-align-right .premium-woo-skin-grid-6 li.product .premium-woo-product-info .star-rating,
10129
+ .premium-woo-product-align-left .premium-woo-skin-grid-6 li.product .premium-woo-product-info .star-rating,
10130
+ .premium-woo-product-align-right .premium-woo-skin-grid-7 li.product .premium-woo-product-info .star-rating,
10131
+ .premium-woo-product-align-left .premium-woo-skin-grid-7 li.product .premium-woo-product-info .star-rating {
10132
+ margin: 0;
10133
+ }
10134
 
10135
+ .premium-woo-skin-grid-6 li.product .premium-woo-product-info {
10136
+ -js-display: flex;
10137
+ display: -webkit-box;
10138
+ display: -webkit-flex;
10139
+ display: -moz-box;
10140
+ display: -ms-flexbox;
10141
+ display: flex;
10142
+ -webkit-box-pack: justify;
10143
+ -webkit-justify-content: space-between;
10144
+ -moz-box-pack: justify;
10145
+ -ms-flex-pack: justify;
10146
+ justify-content: space-between;
10147
+ }
10148
 
10149
+ .premium-woo-product-align-center .premium-woocommerce li.product .premium-woo-product-info {
10150
+ -webkit-box-orient: vertical;
10151
+ -webkit-box-direction: normal;
10152
+ -webkit-flex-direction: column;
10153
+ -moz-box-orient: vertical;
10154
+ -moz-box-direction: normal;
10155
+ -ms-flex-direction: column;
10156
+ flex-direction: column;
10157
+ }
10158
 
10159
+ .premium-woo-product-align-right .premium-woocommerce li.product .premium-woo-product-info {
10160
+ -webkit-box-orient: horizontal;
10161
+ -webkit-box-direction: reverse;
10162
+ -webkit-flex-direction: row-reverse;
10163
+ -moz-box-orient: horizontal;
10164
+ -moz-box-direction: reverse;
10165
+ -ms-flex-direction: row-reverse;
10166
+ flex-direction: row-reverse;
10167
+ }
10168
+
10169
+ .premium-woo-skin-grid-6 li.product .premium-woo-product-gallery-images {
10170
+ -js-display: flex;
10171
+ display: -webkit-box;
10172
+ display: -webkit-flex;
10173
+ display: -moz-box;
10174
+ display: -ms-flexbox;
10175
+ display: flex;
10176
+ position: absolute;
10177
+ bottom: 10px;
10178
+ width: 100%;
10179
+ -webkit-box-pack: center;
10180
+ -webkit-justify-content: center;
10181
+ -moz-box-pack: center;
10182
+ -ms-flex-pack: center;
10183
+ justify-content: center;
10184
+ }
10185
+
10186
+ .premium-woo-product-gallery-images .premium-woo-product__gallery_image {
10187
+ width: 20%;
10188
+ margin: 0 0.2em;
10189
+ border: 2px solid #aaa;
10190
+ cursor: pointer;
10191
+ }
10192
+
10193
+ /**
10194
+ * Metro
10195
+ */
10196
+ .premium-woo-products-metro li.product .premium-woo-product-thumbnail img,
10197
+ .premium-woo-products-metro li.product .premium-woo-product-wrapper,
10198
+ .premium-woo-products-metro li.product .premium-woo-product-thumbnail,
10199
+ .premium-woo-products-metro li.product .woocommerce-LoopProduct-link {
10200
+ height: 100%;
10201
+ }
10202
+
10203
+ .premium-woo-products-metro ul.products li.product {
10204
+ margin-bottom: 0;
10205
+ }
10206
+
10207
+ .premium-woo-products-metro li.product .premium-woo-product-thumbnail img {
10208
+ -o-object-fit: cover;
10209
+ object-fit: cover;
10210
+ }
10211
+
10212
+ /*
10213
+ * Carousel
10214
+ */
10215
+ .premium-carousel-hidden {
10216
+ opacity: 0;
10217
+ visibility: hidden;
10218
+ }
10219
+
10220
+ .premium-woocommerce:not(.premium-woo-skin-grid-7) .slick-arrow {
10221
+ -webkit-border-radius: 50%;
10222
+ border-radius: 50%;
10223
+ }
10224
+
10225
+ .premium-woocommerce ul.slick-dots {
10226
+ width: 100%;
10227
+ }
10228
+
10229
+ /*
10230
+ * Quick View Html/body
10231
+ */
10232
+ html.premium-woo-qv-opened,
10233
+ html.premium-woo-qv-opened body {
10234
+ overflow: hidden;
10235
+ }
10236
+
10237
+ /**
10238
+ * Quick View Modal
10239
+ */
10240
+ .premium-woo-quick-view-back {
10241
+ position: fixed;
10242
+ visibility: hidden;
10243
+ overflow: hidden;
10244
+ background: rgba(2, 2, 2, 0.5);
10245
+ opacity: 0;
10246
+ -webkit-transition: opacity 0.25s;
10247
+ transition: opacity 0.25s;
10248
+ z-index: 999;
10249
+ }
10250
+
10251
+ .premium-woo-quick-view-active {
10252
+ top: 0;
10253
+ left: 0;
10254
+ width: 100%;
10255
+ height: 100%;
10256
+ opacity: 1;
10257
+ visibility: visible;
10258
+ }
10259
+
10260
+ #premium-woo-quick-view-modal {
10261
+ position: fixed;
10262
+ visibility: hidden;
10263
+ opacity: 0;
10264
+ top: 0;
10265
+ left: 0;
10266
+ width: 100%;
10267
+ height: 100%;
10268
+ z-index: 1400;
10269
+ text-align: center;
10270
+ -webkit-transition: all 0.3s;
10271
+ transition: all 0.3s;
10272
+ overflow-x: hidden;
10273
+ overflow-y: auto;
10274
+ }
10275
+
10276
+ #premium-woo-quick-view-modal.active {
10277
+ visibility: visible;
10278
+ opacity: 1;
10279
+ }
10280
 
10281
+ #premium-woo-quick-view-modal.active .premium-woo-content-main {
10282
+ -webkit-transform: translateY(0);
10283
+ -ms-transform: translateY(0);
10284
+ transform: translateY(0);
10285
+ opacity: 1;
10286
+ width: 100%;
10287
+ }
 
 
10288
 
10289
+ #premium-woo-quick-view-modal .premium-woo-content-main-wrapper {
10290
+ position: absolute;
10291
+ width: 100%;
10292
+ height: 100%;
10293
+ top: 0;
10294
+ left: 0;
10295
+ text-align: center;
10296
+ padding: 30px;
10297
+ -js-display: flex;
10298
+ display: -webkit-box;
10299
+ display: -webkit-flex;
10300
+ display: -moz-box;
10301
+ display: -ms-flexbox;
10302
+ display: flex;
10303
+ -webkit-box-align: center;
10304
+ -webkit-align-items: center;
10305
+ -moz-box-align: center;
10306
+ -ms-flex-align: center;
10307
+ align-items: center;
10308
+ }
10309
 
10310
+ #premium-woo-quick-view-modal .premium-woo-content-main {
10311
+ position: relative;
10312
+ pointer-events: none;
10313
+ max-width: 100%;
10314
+ text-align: left;
10315
+ z-index: 1045;
10316
+ -webkit-transform: translateY(-30px);
10317
+ -ms-transform: translateY(-30px);
10318
+ transform: translateY(-30px);
10319
+ opacity: 0;
10320
+ -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
10321
+ transition: opacity 0.3s, -webkit-transform 0.5s;
10322
+ transition: transform 0.5s, opacity 0.3s;
10323
+ transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
10324
+ margin: 0 auto;
10325
+ }
10326
 
10327
+ #premium-woo-quick-view-modal .premium-woo-lightbox-content {
10328
+ position: relative;
10329
+ display: table;
10330
+ pointer-events: auto;
10331
+ background-color: #fff;
10332
+ max-width: 975px;
10333
+ margin: 20px auto;
10334
+ -webkit-transform: translateZ(0);
10335
+ transform: translateZ(0);
10336
+ -webkit-box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.15);
10337
+ box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.15);
10338
+ overflow: hidden;
10339
+ }
10340
 
10341
+ #premium-woo-quick-view-modal .summary {
10342
+ width: 50%;
10343
+ margin: 0;
10344
+ padding: 30px;
10345
+ float: left;
10346
+ -webkit-box-sizing: border-box;
10347
+ -moz-box-sizing: border-box;
10348
+ box-sizing: border-box;
10349
+ }
10350
 
10351
+ #premium-woo-quick-view-modal .summary .quantity {
10352
+ min-width: auto;
10353
+ }
 
10354
 
10355
+ #premium-woo-quick-view-modal .summary .quantity input.qty {
10356
+ width: 54px;
10357
+ -webkit-appearance: button;
10358
+ -moz-appearance: button;
10359
+ appearance: button;
10360
+ }
10361
 
10362
+ #premium-woo-quick-view-modal .summary .quantity input[type="number"]::-webkit-inner-spin-button,
10363
+ #premium-woo-quick-view-modal .summary .quantity input[type="number"]::-webkit-outer-spin-button {
10364
+ display: unset;
10365
+ }
10366
 
10367
+ #premium-woo-quick-view-modal .woocommerce-product-details__short-description p {
10368
+ margin: 0;
10369
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10370
 
10371
+ #premium-woo-quick-view-close {
10372
+ position: absolute;
10373
+ font-size: 22px;
10374
+ top: 10px;
10375
+ right: 10px;
10376
+ width: 22px;
10377
+ height: 22px;
10378
+ line-height: 22px;
10379
+ opacity: 0.7;
10380
+ text-align: center;
10381
+ z-index: 2;
10382
+ color: #000;
10383
+ }
10384
 
10385
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider {
10386
+ position: relative;
10387
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10388
 
10389
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider li {
10390
+ list-style: none;
10391
+ }
10392
 
10393
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav {
10394
+ margin: 0;
10395
+ padding: 0;
10396
+ width: 100%;
10397
+ position: absolute;
10398
+ bottom: 10px;
10399
+ text-align: center;
10400
+ }
10401
 
10402
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li {
10403
+ margin: 0 6px;
10404
+ display: inline-block;
10405
+ vertical-align: middle;
10406
+ }
10407
 
10408
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a {
10409
+ width: 11px;
10410
+ height: 11px;
10411
+ display: block;
10412
+ background: #666;
10413
+ background: rgba(0, 0, 0, 0.5);
10414
+ cursor: pointer;
10415
+ text-indent: -9999px;
10416
+ -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
10417
+ box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
10418
+ -webkit-border-radius: 20px;
10419
+ border-radius: 20px;
10420
+ }
10421
 
10422
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a.flex-active {
10423
+ background: rgba(0, 0, 0, 0.9);
10424
+ cursor: default;
10425
+ }
 
 
10426
 
10427
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a:focus {
10428
+ outline: none;
10429
+ }
 
 
 
 
 
 
 
10430
 
10431
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider img {
10432
+ -o-object-fit: cover;
10433
+ object-fit: cover;
10434
+ width: 100%;
10435
+ }
10436
 
10437
+ #premium-woo-quick-view-content div.images {
10438
+ width: 50%;
10439
+ float: left;
10440
+ opacity: 1 !important;
10441
+ margin: 0;
10442
+ }
 
 
 
10443
 
10444
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav {
10445
+ margin: 0;
10446
+ padding: 0;
10447
+ list-style: none;
10448
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10449
 
10450
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav a {
10451
+ text-decoration: none;
 
 
 
 
 
 
 
 
10452
  display: block;
10453
+ width: 14px;
10454
+ height: 32px;
10455
+ font-size: 32px;
10456
+ line-height: 32px;
10457
+ margin: -20px 0 0;
10458
  position: absolute;
10459
+ top: 50%;
10460
+ z-index: 10;
10461
+ overflow: hidden;
10462
+ cursor: pointer;
10463
+ color: rgba(0, 0, 0, 0.8);
10464
+ text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
10465
+ -webkit-transition: all 0.3s ease-in-out;
10466
+ transition: all 0.3s ease-in-out;
10467
+ }
10468
 
10469
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next,
10470
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev {
10471
+ display: inline-block;
10472
+ font-family: "Font Awesome 5 Free";
10473
+ font-weight: 900;
10474
+ text-rendering: auto;
10475
+ -webkit-font-smoothing: antialiased;
10476
+ -moz-osx-font-smoothing: grayscale;
10477
+ }
10478
 
10479
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev {
10480
+ left: 10px;
10481
+ }
10482
 
10483
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next {
10484
+ right: 10px;
10485
+ }
10486
 
10487
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev::before {
10488
+ content: "\f104";
10489
+ }
10490
 
10491
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next::before {
10492
+ content: "\f105";
10493
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10494
 
10495
+ .premium-woocommerce li.product .added_to_cart.wc-forward {
10496
+ display: none;
10497
+ }
10498
 
10499
+ .premium-woo-atc-button .add_to_cart_button .premium-woo-cart-loader {
10500
+ -webkit-animation: spin 2s linear infinite;
10501
+ animation: spin 2s linear infinite;
10502
+ margin-left: 5px;
10503
+ vertical-align: baseline;
10504
+ }
10505
 
10506
+ /*
10507
+ * Load More Button
10508
+ */
10509
+ .premium-woo-load-more {
10510
+ position: relative;
10511
+ }
10512
 
10513
+ .premium-woo-load-more .premium-woo-load-more-btn {
10514
+ -webkit-box-shadow: none;
10515
+ box-shadow: none;
10516
+ text-shadow: none;
10517
+ border: none;
10518
+ outline: none;
10519
+ -webkit-box-align: center;
10520
+ -webkit-align-items: center;
10521
+ -moz-box-align: center;
10522
+ -ms-flex-align: center;
10523
+ align-items: center;
10524
+ vertical-align: bottom;
10525
+ cursor: pointer;
10526
+ line-height: 1;
10527
+ font-style: normal;
10528
+ font-weight: normal;
10529
+ background-image: none;
10530
+ color: #fff;
10531
+ -webkit-transition: all 0.3s ease-in-out;
10532
+ transition: all 0.3s ease-in-out;
10533
+ padding: 10px 20px;
10534
+ }
10535
 
10536
+ .premium-woo-load-more-btn {
10537
+ -js-display: inline-flex;
10538
+ display: -webkit-inline-box;
10539
+ display: -webkit-inline-flex;
10540
+ display: -moz-inline-box;
10541
+ display: -ms-inline-flexbox;
10542
+ display: inline-flex;
10543
+ -webkit-box-align: center;
10544
+ -webkit-align-items: center;
10545
+ -moz-box-align: center;
10546
+ -ms-flex-align: center;
10547
+ align-items: center;
10548
+ }
10549
 
10550
+ .premium-woo-load-more-btn span {
10551
+ margin-right: 3px;
10552
+ }
10553
 
10554
+ .premium-woo-load-more-btn .premium-loader {
10555
+ display: inline-block;
10556
+ width: 20px;
10557
+ height: 20px;
10558
+ }
10559
 
10560
+ @media (min-width: 545px) {
10561
+ #premium-woo-quick-view-content div.summary {
10562
+ content: "544";
10563
+ overflow-y: auto;
10564
+ }
10565
+ }
10566
 
10567
+ @media (max-width: 544px) {
10568
+ #premium-woo-quick-view-content .premium-woo-lightbox-content {
10569
+ display: block;
10570
+ }
10571
+
10572
+ #premium-woo-quick-view-content div.images,
10573
+ #premium-woo-quick-view-content div.summary {
10574
+ width: 100%;
10575
+ float: none;
10576
+ }
10577
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10578
 
10579
  /*
10580
  * Common Title/Dual Heading
10581
  */
10582
  .premium-title-bg-text:before {
10583
+ position: absolute;
10584
+ content: attr(data-background);
10585
+ top: 0;
10586
+ left: 0;
10587
+ text-align: left;
10588
+ }
10589
 
10590
  .premium-bg-text-yes .elementor-widget-container:before {
10591
+ position: absolute;
10592
+ top: 0;
10593
+ left: 0;
10594
+ text-align: left;
10595
+ }
10596
 
10597
  .premium-mask-yes .premium-dual-header-first-clip .premium-dual-header-first-span .premium-mask-span,
10598
  .premium-mask-yes .premium-dual-header-second-clip .premium-mask-span {
10599
+ background: inherit;
10600
+ }
10601
 
10602
  .premium-mask-yes .premium-mask-span {
10603
+ position: relative;
10604
+ overflow: hidden;
10605
+ -js-display: inline-flex !important;
10606
+ display: -webkit-inline-box !important;
10607
+ display: -webkit-inline-flex !important;
10608
+ display: -moz-inline-box !important;
10609
+ display: -ms-inline-flexbox !important;
10610
+ display: inline-flex !important;
10611
+ }
10612
+
10613
+ .premium-mask-yes .premium-mask-span::after {
10614
  content: "";
10615
  position: absolute;
10616
  top: 0;
10619
  height: 100%;
10620
  background-color: currentColor;
10621
  -webkit-backface-visibility: visible;
10622
+ backface-visibility: visible;
10623
+ }
10624
 
10625
  .premium-mask-active.premium-mask-tr .premium-mask-span::after {
10626
+ -webkit-animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
10627
+ animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
10628
+ -webkit-transform: translateX(-103%);
10629
+ -ms-transform: translateX(-103%);
10630
+ transform: translateX(-103%);
10631
+ }
10632
 
10633
  .premium-mask-active.premium-mask-tl .premium-mask-span::after {
10634
+ -webkit-animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
10635
+ animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
10636
+ -webkit-transform: translateX(103%);
10637
+ -ms-transform: translateX(103%);
10638
+ transform: translateX(103%);
10639
+ }
10640
 
10641
  .premium-mask-active.premium-mask-tb .premium-mask-span::after {
10642
+ -webkit-animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
10643
+ animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
10644
+ -webkit-transform: translateY(-103%);
10645
+ -ms-transform: translateY(-103%);
10646
+ transform: translateY(-103%);
10647
+ }
10648
 
10649
  .premium-mask-active.premium-mask-tt .premium-mask-span::after {
10650
+ -webkit-animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
10651
+ animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
10652
+ -webkit-transform: translateY(103%);
10653
+ -ms-transform: translateY(103%);
10654
+ transform: translateY(103%);
10655
+ }
10656
 
10657
  @-webkit-keyframes pa-mask-tr {
10658
+ 0% {
10659
+ -webkit-transform: translateX(0%);
10660
+ transform: translateX(0%);
10661
+ }
10662
+
10663
+ 100% {
10664
+ -webkit-transform: translateX(103%);
10665
+ transform: translateX(103%);
10666
+ }
10667
+ }
10668
 
10669
  @keyframes pa-mask-tr {
10670
+ 0% {
10671
+ -webkit-transform: translateX(0%);
10672
+ transform: translateX(0%);
10673
+ }
10674
+
10675
+ 100% {
10676
+ -webkit-transform: translateX(103%);
10677
+ transform: translateX(103%);
10678
+ }
10679
+ }
10680
 
10681
  @-webkit-keyframes pa-mask-tl {
10682
+ 0% {
10683
+ -webkit-transform: translateX(0%);
10684
+ transform: translateX(0%);
10685
+ }
10686
+
10687
+ 100% {
10688
+ -webkit-transform: translateX(-103%);
10689
+ transform: translateX(-103%);
10690
+ }
10691
+ }
10692
 
10693
  @keyframes pa-mask-tl {
10694
+ 0% {
10695
+ -webkit-transform: translateX(0%);
10696
+ transform: translateX(0%);
10697
+ }
10698
+
10699
+ 100% {
10700
+ -webkit-transform: translateX(-103%);
10701
+ transform: translateX(-103%);
10702
+ }
10703
+ }
10704
 
10705
  @-webkit-keyframes pa-mask-tb {
10706
+ 0% {
10707
+ -webkit-transform: translateY(0%);
10708
+ transform: translateY(0%);
10709
+ }
10710
+
10711
+ 100% {
10712
+ -webkit-transform: translateY(103%);
10713
+ transform: translateY(103%);
10714
+ }
10715
+ }
10716
 
10717
  @keyframes pa-mask-tb {
10718
+ 0% {
10719
+ -webkit-transform: translateY(0%);
10720
+ transform: translateY(0%);
10721
+ }
10722
+
10723
+ 100% {
10724
+ -webkit-transform: translateY(103%);
10725
+ transform: translateY(103%);
10726
+ }
10727
+ }
10728
 
10729
  @-webkit-keyframes pa-mask-tt {
10730
+ 0% {
10731
+ -webkit-transform: translateY(0%);
10732
+ transform: translateY(0%);
10733
+ }
10734
+
10735
+ 100% {
10736
+ -webkit-transform: translateY(-103%);
10737
+ transform: translateY(-103%);
10738
+ }
10739
+ }
10740
 
10741
  @keyframes pa-mask-tt {
10742
+ 0% {
10743
+ -webkit-transform: translateY(0%);
10744
+ transform: translateY(0%);
10745
+ }
10746
+
10747
+ 100% {
10748
+ -webkit-transform: translateY(-103%);
10749
+ transform: translateY(-103%);
10750
+ }
10751
+ }
10752
 
10753
  /*
10754
  * Common Buttons Style.
10755
  */
10756
  .premium-button .premium-lottie-animation,
10757
  .premium-image-button .premium-lottie-animation {
10758
+ -js-display: flex;
10759
+ display: -webkit-box;
10760
+ display: -webkit-flex;
10761
+ display: -moz-box;
10762
+ display: -ms-flexbox;
10763
+ display: flex;
10764
+ }
10765
 
10766
  .premium-button svg,
10767
  .premium-image-button svg {
10768
+ width: 30px;
10769
+ height: 30px;
10770
+ }
10771
 
10772
  .premium-btn-sm,
10773
  .premium-btn-md,
10774
  .premium-btn-lg,
10775
  .premium-btn-block {
10776
+ background-color: #eee;
10777
+ color: #042551;
10778
+ margin: 0px;
10779
+ text-decoration: none;
10780
+ }
10781
+
10782
+ .premium-btn-sm:hover,
10783
+ .premium-btn-md:hover,
10784
+ .premium-btn-lg:hover,
10785
+ .premium-btn-block:hover {
10786
  background-color: #54595f;
10787
+ color: #eee;
10788
+ }
10789
 
10790
  .premium-btn-sm {
10791
+ padding: 12px 24px;
10792
+ font-size: 14px;
10793
+ line-height: 1;
10794
+ }
10795
 
10796
  .premium-btn-md {
10797
+ padding: 14px 26px;
10798
+ font-size: 16px;
10799
+ line-height: 1.2;
10800
+ }
10801
 
10802
  .premium-btn-lg {
10803
+ padding: 16px 28px;
10804
+ font-size: 18px;
10805
+ line-height: 1.3333;
10806
+ }
10807
 
10808
  .premium-btn-block {
10809
+ font-size: 18px;
10810
+ line-height: 1;
10811
+ padding: 20px 0px;
10812
+ width: 100%;
10813
+ text-align: center;
10814
+ }
10815
 
10816
  .premium-button-text {
10817
+ display: inline-block;
10818
+ width: 100%;
10819
+ }
10820
 
10821
  /*
10822
  * Common Button/Image Button Mouse Detect Effect.
10823
  */
10824
  .premium-mouse-detect-yes .premium-button-style6 .premium-button-style6-bg {
10825
+ position: absolute;
10826
+ z-index: 0;
10827
+ top: 0;
10828
+ left: 0;
10829
+ width: 0px;
10830
+ height: 0px;
10831
+ -webkit-border-radius: 50%;
10832
+ border-radius: 50%;
10833
+ display: block;
10834
+ -webkit-transform: translate(-50%, -50%);
10835
+ -ms-transform: translate(-50%, -50%);
10836
+ transform: translate(-50%, -50%);
10837
+ -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
10838
+ transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
10839
+ }
10840
 
10841
  .premium-mouse-detect-yes .premium-button-style6:hover .premium-button-style6-bg {
10842
+ width: 225%;
10843
+ height: 560px;
10844
+ }
10845
 
10846
  .premium-mouse-detect-yes .premium-button-style6:before {
10847
+ width: 0;
10848
+ height: 0;
10849
+ }
10850
 
10851
  /** Loader */
10852
  .premium-loader {
10853
+ border: 3px solid #f3f3f3;
10854
+ border-top-width: 3px;
10855
+ border-top-style: solid;
10856
+ border-top-color: #f3f3f3;
10857
+ -webkit-border-radius: 50%;
10858
+ border-radius: 50%;
10859
+ border-top: 3px solid;
10860
+ border-top-color: #bbb;
10861
+ width: 30px;
10862
+ height: 30px;
10863
+ -webkit-animation: spin 2s linear infinite;
10864
+ animation: spin 2s linear infinite;
10865
+ margin: 0 auto;
10866
+ }
10867
+
10868
+ /*
10869
+ Common SVG Draw
10870
+ premium-svg-drawer not prefixed with 'svg'
10871
+ because it's rendered as div with custom SVG code.
10872
+ */
10873
+ .premium-svg-nodraw *,
10874
+ .premium-svg-drawer * {
10875
+ -webkit-transition: all 0.3s ease-in-out;
10876
+ transition: all 0.3s ease-in-out;
10877
+ -webkit-transition-property: stroke, fill, background-color;
10878
+ transition-property: stroke, fill, background-color;
10879
+ }
10880
+
10881
+ .premium-svg-nodraw .no-transition,
10882
+ .premium-svg-drawer .no-transition {
10883
+ -webkit-transition: none !important;
10884
+ transition: none !important;
10885
+ }
10886
 
10887
  /** Common Animation */
10888
  @-webkit-keyframes spin {
10889
+ 0% {
10890
+ -webkit-transform: rotate(0deg);
10891
+ transform: rotate(0deg);
10892
+ }
10893
+
10894
+ 100% {
10895
+ -webkit-transform: rotate(360deg);
10896
+ transform: rotate(360deg);
10897
+ }
10898
+ }
10899
+
10900
  @keyframes spin {
10901
+ 0% {
10902
+ -webkit-transform: rotate(0deg);
10903
+ transform: rotate(0deg);
10904
+ }
10905
+
10906
+ 100% {
10907
+ -webkit-transform: rotate(360deg);
10908
+ transform: rotate(360deg);
10909
+ }
10910
+ }
10911
 
10912
  /**Notice*/
10913
  .premium-error-notice {
10914
+ width: 100%;
10915
+ padding: 10px;
10916
+ color: #b94a48;
10917
+ background-color: #f2dede;
10918
+ border-color: #eed3d7;
10919
+ text-align: center;
10920
+ }
assets/frontend/css/premium-icon-list-rtl.css CHANGED
@@ -1,330 +1,331 @@
1
- /**************** Premium Bullet List *****************/
2
- /******************************************************/
3
- .premium-bullet-list-box {
4
- -js-display: flex;
5
- display: -webkit-box;
6
- display: -webkit-flex;
7
- display: -moz-box;
8
- display: -ms-flexbox;
9
- display: flex;
10
- -webkit-flex-wrap: wrap;
11
- -ms-flex-wrap: wrap;
12
- flex-wrap: wrap;
13
- -webkit-box-orient: vertical;
14
- -webkit-box-direction: normal;
15
- -webkit-flex-direction: column;
16
- -moz-box-orient: vertical;
17
- -moz-box-direction: normal;
18
- -ms-flex-direction: column;
19
- flex-direction: column;
20
- }
21
-
22
- .premium-bullet-list-box .premium-bullet-list-content-grow-lc {
23
- -webkit-transform-origin: right center;
24
- -ms-transform-origin: right center;
25
- transform-origin: right center;
26
- }
27
-
28
- .premium-bullet-list-box .premium-bullet-list-content-grow-rc {
29
- -webkit-transform-origin: left center;
30
- -ms-transform-origin: left center;
31
- transform-origin: left center;
32
- }
33
-
34
- .premium-bullet-list-box .premium-bullet-list-content-grow-cc {
35
- -webkit-transform-origin: center center;
36
- -ms-transform-origin: center center;
37
- transform-origin: center center;
38
- }
39
-
40
- .premium-bullet-list-content {
41
- -js-display: flex;
42
- display: -webkit-box;
43
- display: -webkit-flex;
44
- display: -moz-box;
45
- display: -ms-flexbox;
46
- display: flex;
47
- -webkit-transition: all 0.3s ease-in-out;
48
- transition: all 0.3s ease-in-out;
49
- width: auto;
50
- position: relative;
51
- }
52
-
53
- .premium-bullet-list-content .premium-bullet-list-text span,
54
- .premium-bullet-list-content .premium-bullet-list-wrapper {
55
- display: inline-block;
56
- -webkit-align-self: center;
57
- -ms-flex-item-align: center;
58
- align-self: center;
59
- -webkit-transition: all 0.3s ease-in-out;
60
- transition: all 0.3s ease-in-out;
61
- }
62
-
63
- .premium-bullet-list-content .premium-bullet-list-text span {
64
- margin: 0 5px;
65
- -webkit-box-flex: 1;
66
- -webkit-flex: 1;
67
- -moz-box-flex: 1;
68
- -ms-flex: 1;
69
- flex: 1;
70
- }
71
-
72
- .premium-bullet-list-content .premium-bullet-list-icon-text p {
73
- font-size: 18px;
74
- background-color: #eee;
75
- padding: 1px 5px;
76
- -webkit-border-radius: 2px;
77
- border-radius: 2px;
78
- }
79
-
80
- .premium-bullet-list-content .premium-bullet-list-text span,
81
- .premium-bullet-list-content .premium-bullet-list-icon-text p,
82
- .premium-bullet-list-content .premium-bullet-list-wrapper img,
83
- .premium-bullet-list-content .premium-bullet-list-wrapper svg,
84
- .premium-bullet-list-content .premium-bullet-list-wrapper i {
85
- -webkit-transition: all 0.3s ease-in-out;
86
- transition: all 0.3s ease-in-out;
87
- }
88
-
89
- .premium-bullet-list-content .premium-bullet-list-wrapper {
90
- position: relative;
91
- line-height: 0;
92
- }
93
-
94
- .premium-bullet-list-content .premium-bullet-list-wrapper img,
95
- .premium-bullet-list-content .premium-bullet-list-wrapper svg {
96
- width: 30px !important;
97
- height: 30px !important;
98
- position: relative;
99
- z-index: 500;
100
- }
101
-
102
- .premium-bullet-list-content .premium-bullet-list-wrapper i {
103
- width: 1.25em;
104
- }
105
-
106
- .premium-bullet-list-content .premium-bullet-list-wrapper i,
107
- .premium-bullet-list-content .premium-bullet-list-wrapper .premium-bullet-list-icon-text {
108
- position: relative;
109
- z-index: 500;
110
- }
111
-
112
- .premium-bullet-list-content .premium-bullet-list-link {
113
- position: absolute;
114
- top: 0;
115
- right: 0;
116
- width: 100%;
117
- height: 100%;
118
- z-index: 1000;
119
- }
120
-
121
- .premium-bullet-list-content:not(:last-of-type) .premium-bullet-list-connector {
122
- width: 100%;
123
- height: 100%;
124
- position: absolute;
125
- top: 0.5em;
126
- z-index: 100;
127
- -js-display: flex;
128
- display: -webkit-box;
129
- display: -webkit-flex;
130
- display: -moz-box;
131
- display: -ms-flexbox;
132
- display: flex;
133
- -webkit-box-pack: center;
134
- -webkit-justify-content: center;
135
- -moz-box-pack: center;
136
- -ms-flex-pack: center;
137
- justify-content: center;
138
- }
139
-
140
- .premium-bullet-list-content:not(:last-of-type) .premium-bullet-list-connector .premium-icon-connector-content:after {
141
- content: "";
142
- border-left-width: 1px;
143
- border-left-style: solid;
144
- border-color: #333333;
145
- display: block;
146
- height: 100%;
147
- }
148
-
149
- li.premium-bullet-list-content.premium-bullet-list-content-inline {
150
- -webkit-align-self: center;
151
- -ms-flex-item-align: center;
152
- align-self: center;
153
- z-index: 2;
154
- }
155
-
156
- li.premium-bullet-list-content.premium-bullet-list-content-inline:not(:first-child) {
157
- margin: 0 3px;
158
- }
159
-
160
- li.premium-bullet-list-content.premium-bullet-list-content-inline:first-child {
161
- margin: 0 0 0 3px;
162
- }
163
-
164
- .premium-bullet-list-divider:not(:last-child) {
165
- width: 100%;
166
- -webkit-box-flex: 0;
167
- -webkit-flex: 0 0 100%;
168
- -moz-box-flex: 0;
169
- -ms-flex: 0 0 100%;
170
- flex: 0 0 100%;
171
- overflow: hidden;
172
- }
173
-
174
- .premium-bullet-list-divider:not(:last-child):after {
175
- content: "";
176
- display: block;
177
- border-top-style: solid;
178
- border-top-width: 1px;
179
- }
180
-
181
- .premium-bullet-list-divider-inline:not(:last-child) {
182
- float: left;
183
- display: inline-block;
184
- position: relative;
185
- height: 100%;
186
- overflow: hidden;
187
- -webkit-align-self: center;
188
- -ms-flex-item-align: center;
189
- align-self: center;
190
- margin: 0 3px;
191
- }
192
-
193
- .premium-bullet-list-divider-inline:not(:last-child):after {
194
- content: "";
195
- display: block;
196
- border-right-width: 1px;
197
- height: 33px;
198
- border-right-style: solid;
199
- }
200
-
201
- .premium-bullet-list-icon-text {
202
- line-height: 1.5;
203
- }
204
-
205
- .premium-bullet-list-icon-text p,
206
- ul.premium-bullet-list-box,
207
- li.premium-bullet-list-content {
208
- margin: 0;
209
- }
210
-
211
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper i,
212
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-text span,
213
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-icon-text p {
214
- color: transparent !important;
215
- text-shadow: 0 0 3px #aaa;
216
- }
217
-
218
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-icon-connector-content,
219
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper .premium-lottie-animation svg,
220
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper img,
221
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-badge {
222
- -webkit-filter: blur(3px);
223
- filter: blur(3px);
224
- }
225
-
226
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper i,
227
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-text span,
228
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-icon-text p {
229
- color: #aaa !important;
230
- text-shadow: 0 0px 0 transparent;
231
- }
232
-
233
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-icon-connector-content,
234
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper .premium-lottie-animation svg,
235
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper img,
236
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-badge {
237
- -webkit-filter: none;
238
- filter: none;
239
- }
240
-
241
- .premium-bullet-list-content .premium-bullet-list-badge {
242
- font-size: 11px;
243
- top: auto;
244
- min-width: -webkit-max-content;
245
- min-width: -moz-max-content;
246
- min-width: max-content;
247
- height: -webkit-fit-content;
248
- height: -moz-fit-content;
249
- height: fit-content;
250
- }
251
-
252
- .premium-bullet-list-content .premium-bullet-list-icon-text p {
253
- font-size: 13px;
254
- }
255
-
256
- .premium-bullet-list-gradient-effect[data-text] {
257
- display: inline-block;
258
- position: relative;
259
- text-decoration: none;
260
- }
261
-
262
- .premium-bullet-list-gradient-effect[data-text]::before {
263
- content: attr(data-text);
264
- position: absolute;
265
- z-index: 1;
266
- overflow: hidden;
267
- -webkit-clip-path: polygon(100% 100%, 100% 100%, 50% 50%);
268
- clip-path: polygon(100% 100%, 100% 100%, 50% 50%);
269
- -webkit-background-clip: text;
270
- background-clip: text;
271
- -webkit-text-fill-color: transparent;
272
- -webkit-transition: all 0.4s ease;
273
- transition: all 0.4s ease;
274
- }
275
-
276
- .premium-bullet-list-content:hover .premium-bullet-list-gradient-effect[data-text]::before,
277
- .premium-bullet-list-content:focus .premium-bullet-list-gradient-effect[data-text]::before {
278
- -webkit-animation: rtlgradient 1s forwards;
279
- animation: rtlgradient 1s forwards;
280
- }
281
-
282
- @-webkit-keyframes rtlgradient {
283
- 0% {
284
- -webkit-clip-path: circle(0% at 150% 50%);
285
- clip-path: circle(0% at 150% 50%);
286
- }
287
-
288
- 100% {
289
- -webkit-clip-path: circle(100% at 50% 50%);
290
- clip-path: circle(100% at 50% 50%);
291
- }
292
- }
293
-
294
- @keyframes rtlgradient {
295
- 0% {
296
- -webkit-clip-path: circle(0% at 150% 50%);
297
- clip-path: circle(0% at 150% 50%);
298
- }
299
-
300
- 100% {
301
- -webkit-clip-path: circle(100% at 50% 50%);
302
- clip-path: circle(100% at 50% 50%);
303
- }
304
- }
305
-
306
- ul[data-list-animation*="animated-"] .premium-bullet-list-divider,
307
- ul[data-list-animation*="animated-"] .premium-bullet-list-content,
308
- ul[data-list-animation*="animated-"] .premium-bullet-list-divider-inline {
309
- opacity: 0;
310
- }
311
-
312
- .premium-bullet-list-content-grow-effect:hover {
313
- -webkit-transform: scale(1.07);
314
- -ms-transform: scale(1.07);
315
- transform: scale(1.07);
316
- }
317
-
318
- @-webkit-keyframes spin {
319
- 100% {
320
- -webkit-transform: rotate(360deg);
321
- transform: rotate(360deg);
322
- }
323
- }
324
-
325
- @keyframes spin {
326
- 100% {
327
- -webkit-transform: rotate(360deg);
328
- transform: rotate(360deg);
329
- }
 
330
  }
1
+ /**************** Premium Bullet List *****************/
2
+ /******************************************************/
3
+ .premium-bullet-list-box {
4
+ -js-display: flex;
5
+ display: -webkit-box;
6
+ display: -webkit-flex;
7
+ display: -moz-box;
8
+ display: -ms-flexbox;
9
+ display: flex;
10
+ -webkit-flex-wrap: wrap;
11
+ -ms-flex-wrap: wrap;
12
+ flex-wrap: wrap;
13
+ -webkit-box-orient: vertical;
14
+ -webkit-box-direction: normal;
15
+ -webkit-flex-direction: column;
16
+ -moz-box-orient: vertical;
17
+ -moz-box-direction: normal;
18
+ -ms-flex-direction: column;
19
+ flex-direction: column;
20
+ padding: 0;
21
+ }
22
+
23
+ .premium-bullet-list-box .premium-bullet-list-content-grow-lc {
24
+ -webkit-transform-origin: right center;
25
+ -ms-transform-origin: right center;
26
+ transform-origin: right center;
27
+ }
28
+
29
+ .premium-bullet-list-box .premium-bullet-list-content-grow-rc {
30
+ -webkit-transform-origin: left center;
31
+ -ms-transform-origin: left center;
32
+ transform-origin: left center;
33
+ }
34
+
35
+ .premium-bullet-list-box .premium-bullet-list-content-grow-cc {
36
+ -webkit-transform-origin: center center;
37
+ -ms-transform-origin: center center;
38
+ transform-origin: center center;
39
+ }
40
+
41
+ .premium-bullet-list-content {
42
+ -js-display: flex;
43
+ display: -webkit-box;
44
+ display: -webkit-flex;
45
+ display: -moz-box;
46
+ display: -ms-flexbox;
47
+ display: flex;
48
+ -webkit-transition: all 0.3s ease-in-out;
49
+ transition: all 0.3s ease-in-out;
50
+ width: auto;
51
+ position: relative;
52
+ }
53
+
54
+ .premium-bullet-list-content .premium-bullet-list-text span,
55
+ .premium-bullet-list-content .premium-bullet-list-wrapper {
56
+ display: inline-block;
57
+ -webkit-align-self: center;
58
+ -ms-flex-item-align: center;
59
+ align-self: center;
60
+ -webkit-transition: all 0.3s ease-in-out;
61
+ transition: all 0.3s ease-in-out;
62
+ }
63
+
64
+ .premium-bullet-list-content .premium-bullet-list-text span {
65
+ margin: 0 5px;
66
+ -webkit-box-flex: 1;
67
+ -webkit-flex: 1;
68
+ -moz-box-flex: 1;
69
+ -ms-flex: 1;
70
+ flex: 1;
71
+ }
72
+
73
+ .premium-bullet-list-content .premium-bullet-list-icon-text p {
74
+ font-size: 18px;
75
+ background-color: #eee;
76
+ padding: 1px 5px;
77
+ -webkit-border-radius: 2px;
78
+ border-radius: 2px;
79
+ }
80
+
81
+ .premium-bullet-list-content .premium-bullet-list-text span,
82
+ .premium-bullet-list-content .premium-bullet-list-icon-text p,
83
+ .premium-bullet-list-content .premium-bullet-list-wrapper img,
84
+ .premium-bullet-list-content .premium-bullet-list-wrapper svg,
85
+ .premium-bullet-list-content .premium-bullet-list-wrapper i {
86
+ -webkit-transition: all 0.3s ease-in-out;
87
+ transition: all 0.3s ease-in-out;
88
+ }
89
+
90
+ .premium-bullet-list-content .premium-bullet-list-wrapper {
91
+ position: relative;
92
+ line-height: 0;
93
+ }
94
+
95
+ .premium-bullet-list-content .premium-bullet-list-wrapper img,
96
+ .premium-bullet-list-content .premium-bullet-list-wrapper svg {
97
+ width: 30px !important;
98
+ height: 30px !important;
99
+ position: relative;
100
+ z-index: 500;
101
+ }
102
+
103
+ .premium-bullet-list-content .premium-bullet-list-wrapper i {
104
+ width: 1.25em;
105
+ }
106
+
107
+ .premium-bullet-list-content .premium-bullet-list-wrapper i,
108
+ .premium-bullet-list-content .premium-bullet-list-wrapper .premium-bullet-list-icon-text {
109
+ position: relative;
110
+ z-index: 500;
111
+ }
112
+
113
+ .premium-bullet-list-content .premium-bullet-list-link {
114
+ position: absolute;
115
+ top: 0;
116
+ right: 0;
117
+ width: 100%;
118
+ height: 100%;
119
+ z-index: 1000;
120
+ }
121
+
122
+ .premium-bullet-list-content:not(:last-of-type) .premium-bullet-list-connector {
123
+ width: 100%;
124
+ height: 100%;
125
+ position: absolute;
126
+ top: 0.5em;
127
+ z-index: 100;
128
+ -js-display: flex;
129
+ display: -webkit-box;
130
+ display: -webkit-flex;
131
+ display: -moz-box;
132
+ display: -ms-flexbox;
133
+ display: flex;
134
+ -webkit-box-pack: center;
135
+ -webkit-justify-content: center;
136
+ -moz-box-pack: center;
137
+ -ms-flex-pack: center;
138
+ justify-content: center;
139
+ }
140
+
141
+ .premium-bullet-list-content:not(:last-of-type) .premium-bullet-list-connector .premium-icon-connector-content:after {
142
+ content: "";
143
+ border-left-width: 1px;
144
+ border-left-style: solid;
145
+ border-color: #333333;
146
+ display: block;
147
+ height: 100%;
148
+ }
149
+
150
+ li.premium-bullet-list-content.premium-bullet-list-content-inline {
151
+ -webkit-align-self: center;
152
+ -ms-flex-item-align: center;
153
+ align-self: center;
154
+ z-index: 2;
155
+ }
156
+
157
+ li.premium-bullet-list-content.premium-bullet-list-content-inline:not(:first-child) {
158
+ margin: 0 3px;
159
+ }
160
+
161
+ li.premium-bullet-list-content.premium-bullet-list-content-inline:first-child {
162
+ margin: 0 0 0 3px;
163
+ }
164
+
165
+ .premium-bullet-list-divider:not(:last-child) {
166
+ width: 100%;
167
+ -webkit-box-flex: 0;
168
+ -webkit-flex: 0 0 100%;
169
+ -moz-box-flex: 0;
170
+ -ms-flex: 0 0 100%;
171
+ flex: 0 0 100%;
172
+ overflow: hidden;
173
+ }
174
+
175
+ .premium-bullet-list-divider:not(:last-child):after {
176
+ content: "";
177
+ display: block;
178
+ border-top-style: solid;
179
+ border-top-width: 1px;
180
+ }
181
+
182
+ .premium-bullet-list-divider-inline:not(:last-child) {
183
+ float: left;
184
+ display: inline-block;
185
+ position: relative;
186
+ height: 100%;
187
+ overflow: hidden;
188
+ -webkit-align-self: center;
189
+ -ms-flex-item-align: center;
190
+ align-self: center;
191
+ margin: 0 3px;
192
+ }
193
+
194
+ .premium-bullet-list-divider-inline:not(:last-child):after {
195
+ content: "";
196
+ display: block;
197
+ border-right-width: 1px;
198
+ height: 33px;
199
+ border-right-style: solid;
200
+ }
201
+
202
+ .premium-bullet-list-icon-text {
203
+ line-height: 1.5;
204
+ }
205
+
206
+ .premium-bullet-list-icon-text p,
207
+ ul.premium-bullet-list-box,
208
+ li.premium-bullet-list-content {
209
+ margin: 0;
210
+ }
211
+
212
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper i,
213
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-text span,
214
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-icon-text p {
215
+ color: transparent !important;
216
+ text-shadow: 0 0 3px #aaa;
217
+ }
218
+
219
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-icon-connector-content,
220
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper .premium-lottie-animation svg,
221
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper img,
222
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-badge {
223
+ -webkit-filter: blur(3px);
224
+ filter: blur(3px);
225
+ }
226
+
227
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper i,
228
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-text span,
229
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-icon-text p {
230
+ color: #aaa !important;
231
+ text-shadow: 0 0px 0 transparent;
232
+ }
233
+
234
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-icon-connector-content,
235
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper .premium-lottie-animation svg,
236
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper img,
237
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-badge {
238
+ -webkit-filter: none;
239
+ filter: none;
240
+ }
241
+
242
+ .premium-bullet-list-content .premium-bullet-list-badge {
243
+ font-size: 11px;
244
+ top: auto;
245
+ min-width: -webkit-max-content;
246
+ min-width: -moz-max-content;
247
+ min-width: max-content;
248
+ height: -webkit-fit-content;
249
+ height: -moz-fit-content;
250
+ height: fit-content;
251
+ }
252
+
253
+ .premium-bullet-list-content .premium-bullet-list-icon-text p {
254
+ font-size: 13px;
255
+ }
256
+
257
+ .premium-bullet-list-gradient-effect[data-text] {
258
+ display: inline-block;
259
+ position: relative;
260
+ text-decoration: none;
261
+ }
262
+
263
+ .premium-bullet-list-gradient-effect[data-text]::before {
264
+ content: attr(data-text);
265
+ position: absolute;
266
+ z-index: 1;
267
+ overflow: hidden;
268
+ -webkit-clip-path: polygon(100% 100%, 100% 100%, 50% 50%);
269
+ clip-path: polygon(100% 100%, 100% 100%, 50% 50%);
270
+ -webkit-background-clip: text;
271
+ background-clip: text;
272
+ -webkit-text-fill-color: transparent;
273
+ -webkit-transition: all 0.4s ease;
274
+ transition: all 0.4s ease;
275
+ }
276
+
277
+ .premium-bullet-list-content:hover .premium-bullet-list-gradient-effect[data-text]::before,
278
+ .premium-bullet-list-content:focus .premium-bullet-list-gradient-effect[data-text]::before {
279
+ -webkit-animation: rtlgradient 1s forwards;
280
+ animation: rtlgradient 1s forwards;
281
+ }
282
+
283
+ @-webkit-keyframes rtlgradient {
284
+ 0% {
285
+ -webkit-clip-path: circle(0% at 150% 50%);
286
+ clip-path: circle(0% at 150% 50%);
287
+ }
288
+
289
+ 100% {
290
+ -webkit-clip-path: circle(100% at 50% 50%);
291
+ clip-path: circle(100% at 50% 50%);
292
+ }
293
+ }
294
+
295
+ @keyframes rtlgradient {
296
+ 0% {
297
+ -webkit-clip-path: circle(0% at 150% 50%);
298
+ clip-path: circle(0% at 150% 50%);
299
+ }
300
+
301
+ 100% {
302
+ -webkit-clip-path: circle(100% at 50% 50%);
303
+ clip-path: circle(100% at 50% 50%);
304
+ }
305
+ }
306
+
307
+ ul[data-list-animation*="animated-"] .premium-bullet-list-divider,
308
+ ul[data-list-animation*="animated-"] .premium-bullet-list-content,
309
+ ul[data-list-animation*="animated-"] .premium-bullet-list-divider-inline {
310
+ opacity: 0;
311
+ }
312
+
313
+ .premium-bullet-list-content-grow-effect:hover {
314
+ -webkit-transform: scale(1.07);
315
+ -ms-transform: scale(1.07);
316
+ transform: scale(1.07);
317
+ }
318
+
319
+ @-webkit-keyframes spin {
320
+ 100% {
321
+ -webkit-transform: rotate(360deg);
322
+ transform: rotate(360deg);
323
+ }
324
+ }
325
+
326
+ @keyframes spin {
327
+ 100% {
328
+ -webkit-transform: rotate(360deg);
329
+ transform: rotate(360deg);
330
+ }
331
  }
assets/frontend/css/premium-icon-list.css CHANGED
@@ -1,253 +1,254 @@
1
- /**************** Premium Bullet List ****************/
2
- /*****************************************************/
3
- .premium-bullet-list-box {
4
- -js-display: flex;
5
- display: -webkit-box;
6
- display: -webkit-flex;
7
- display: -moz-box;
8
- display: -ms-flexbox;
9
- display: flex;
10
- -webkit-flex-wrap: wrap;
11
- -ms-flex-wrap: wrap;
12
- flex-wrap: wrap;
13
- -webkit-box-orient: vertical;
14
- -webkit-box-direction: normal;
15
- -webkit-flex-direction: column;
16
- -moz-box-orient: vertical;
17
- -moz-box-direction: normal;
18
- -ms-flex-direction: column;
19
- flex-direction: column; }
20
- .premium-bullet-list-box .premium-bullet-list-content-grow-lc {
21
- -webkit-transform-origin: left center;
22
- -ms-transform-origin: left center;
23
- transform-origin: left center; }
24
- .premium-bullet-list-box .premium-bullet-list-content-grow-rc {
25
- -webkit-transform-origin: right center;
26
- -ms-transform-origin: right center;
27
- transform-origin: right center; }
28
- .premium-bullet-list-box .premium-bullet-list-content-grow-cc {
29
- -webkit-transform-origin: center center;
30
- -ms-transform-origin: center center;
31
- transform-origin: center center; }
32
-
33
- .premium-bullet-list-content {
34
- -js-display: flex;
35
- display: -webkit-box;
36
- display: -webkit-flex;
37
- display: -moz-box;
38
- display: -ms-flexbox;
39
- display: flex;
40
- -webkit-transition: all 0.3s ease-in-out;
41
- transition: all 0.3s ease-in-out;
42
- width: auto;
43
- position: relative; }
44
- .premium-bullet-list-content .premium-bullet-list-text span,
45
- .premium-bullet-list-content .premium-bullet-list-wrapper {
46
- display: inline-block;
47
- -webkit-align-self: center;
48
- -ms-flex-item-align: center;
49
- align-self: center;
50
- -webkit-transition: all 0.3s ease-in-out;
51
- transition: all 0.3s ease-in-out; }
52
- .premium-bullet-list-content .premium-bullet-list-text span {
53
- margin: 0 5px;
54
- -webkit-box-flex: 1;
55
- -webkit-flex: 1;
56
- -moz-box-flex: 1;
57
- -ms-flex: 1;
58
- flex: 1; }
59
- .premium-bullet-list-content .premium-bullet-list-icon-text p {
60
- font-size: 18px;
61
- background-color: #eee;
62
- padding: 1px 5px;
63
- -webkit-border-radius: 2px;
64
- border-radius: 2px; }
65
- .premium-bullet-list-content .premium-bullet-list-text span,
66
- .premium-bullet-list-content .premium-bullet-list-icon-text p,
67
- .premium-bullet-list-content .premium-bullet-list-wrapper img,
68
- .premium-bullet-list-content .premium-bullet-list-wrapper svg,
69
- .premium-bullet-list-content .premium-bullet-list-wrapper i {
70
- -webkit-transition: all 0.3s ease-in-out;
71
- transition: all 0.3s ease-in-out; }
72
- .premium-bullet-list-content .premium-bullet-list-wrapper {
73
- position: relative;
74
- line-height: 0; }
75
- .premium-bullet-list-content .premium-bullet-list-wrapper img,
76
- .premium-bullet-list-content .premium-bullet-list-wrapper svg {
77
- width: 30px !important;
78
- height: 30px !important;
79
- position: relative;
80
- z-index: 500; }
81
- .premium-bullet-list-content .premium-bullet-list-wrapper i,
82
- .premium-bullet-list-content .premium-bullet-list-wrapper .premium-bullet-list-icon-text {
83
- position: relative;
84
- z-index: 500; }
85
- .premium-bullet-list-content .premium-bullet-list-wrapper i {
86
- width: 1.25em; }
87
- .premium-bullet-list-content .premium-bullet-list-link {
88
- position: absolute;
89
- top: 0;
90
- left: 0;
91
- width: 100%;
92
- height: 100%;
93
- z-index: 1000; }
94
-
95
- .premium-bullet-list-content:not(:last-of-type) .premium-bullet-list-connector {
96
- width: 100%;
97
- height: 100%;
98
- position: absolute;
99
- top: 0.5em;
100
- z-index: 100;
101
- -js-display: flex;
102
- display: -webkit-box;
103
- display: -webkit-flex;
104
- display: -moz-box;
105
- display: -ms-flexbox;
106
- display: flex;
107
- -webkit-box-pack: center;
108
- -webkit-justify-content: center;
109
- -moz-box-pack: center;
110
- -ms-flex-pack: center;
111
- justify-content: center; }
112
- .premium-bullet-list-content:not(:last-of-type) .premium-bullet-list-connector .premium-icon-connector-content:after {
113
- content: "";
114
- border-right-width: 1px;
115
- border-right-style: solid;
116
- border-color: #333333;
117
- display: block;
118
- height: 100%; }
119
-
120
- li.premium-bullet-list-content.premium-bullet-list-content-inline {
121
- -webkit-align-self: center;
122
- -ms-flex-item-align: center;
123
- align-self: center;
124
- z-index: 2; }
125
-
126
- li.premium-bullet-list-content.premium-bullet-list-content-inline:not(:first-child) {
127
- margin: 0 3px; }
128
-
129
- li.premium-bullet-list-content.premium-bullet-list-content-inline:first-child {
130
- margin: 0 3px 0 0; }
131
-
132
- .premium-bullet-list-divider:not(:last-child) {
133
- width: 100%;
134
- -webkit-box-flex: 0;
135
- -webkit-flex: 0 0 100%;
136
- -moz-box-flex: 0;
137
- -ms-flex: 0 0 100%;
138
- flex: 0 0 100%;
139
- overflow: hidden; }
140
-
141
- .premium-bullet-list-divider:not(:last-child):after {
142
- content: "";
143
- display: block;
144
- border-top-style: solid;
145
- border-top-width: 1px; }
146
-
147
- .premium-bullet-list-divider-inline:not(:last-child) {
148
- float: right;
149
- display: inline-block;
150
- position: relative;
151
- height: 100%;
152
- overflow: hidden;
153
- -webkit-align-self: center;
154
- -ms-flex-item-align: center;
155
- align-self: center;
156
- margin: 0 3px; }
157
-
158
- .premium-bullet-list-divider-inline:not(:last-child):after {
159
- content: "";
160
- display: block;
161
- border-left-width: 1px;
162
- height: 33px;
163
- border-left-style: solid; }
164
-
165
- .premium-bullet-list-icon-text {
166
- line-height: 1.5; }
167
-
168
- .premium-bullet-list-icon-text p,
169
- ul.premium-bullet-list-box,
170
- li.premium-bullet-list-content {
171
- margin: 0; }
172
-
173
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper i,
174
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-text span,
175
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-icon-text p {
176
- color: transparent !important;
177
- text-shadow: 0 0 3px #aaa; }
178
-
179
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-icon-connector-content,
180
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper .premium-lottie-animation svg,
181
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper img,
182
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-badge {
183
- -webkit-filter: blur(3px);
184
- filter: blur(3px); }
185
-
186
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper i,
187
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-text span,
188
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-icon-text p {
189
- color: #aaa !important;
190
- text-shadow: 0 0px 0 transparent; }
191
-
192
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-icon-connector-content,
193
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper .premium-lottie-animation svg,
194
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper img,
195
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-badge {
196
- -webkit-filter: none;
197
- filter: none; }
198
-
199
- .premium-bullet-list-content .premium-bullet-list-badge {
200
- font-size: 11px;
201
- top: auto;
202
- min-width: -webkit-max-content;
203
- min-width: -moz-max-content;
204
- min-width: max-content;
205
- height: -webkit-fit-content;
206
- height: -moz-fit-content;
207
- height: fit-content; }
208
-
209
- .premium-bullet-list-content .premium-bullet-list-icon-text p {
210
- font-size: 13px; }
211
-
212
- .premium-bullet-list-gradient-effect[data-text] {
213
- display: inline-block;
214
- position: relative;
215
- text-decoration: none; }
216
-
217
- .premium-bullet-list-gradient-effect[data-text]::before {
218
- content: attr(data-text);
219
- position: absolute;
220
- z-index: 1;
221
- overflow: hidden;
222
- -webkit-clip-path: polygon(0 0, 1px 0, 1px 100%, 0 100%);
223
- clip-path: polygon(0 0, 1px 0, 1px 100%, 0 100%);
224
- -webkit-background-clip: text;
225
- background-clip: text;
226
- -webkit-text-fill-color: transparent;
227
- -webkit-transition: all 0.4s ease;
228
- transition: all 0.4s ease; }
229
-
230
- .premium-bullet-list-content:hover .premium-bullet-list-gradient-effect[data-text]::before,
231
- .premium-bullet-list-content:focus .premium-bullet-list-gradient-effect[data-text]::before {
232
- -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
233
- clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
234
-
235
- ul[data-list-animation*="animated-"] .premium-bullet-list-divider,
236
- ul[data-list-animation*="animated-"] .premium-bullet-list-content,
237
- ul[data-list-animation*="animated-"] .premium-bullet-list-divider-inline {
238
- opacity: 0; }
239
-
240
- .premium-bullet-list-content-grow-effect:hover {
241
- -webkit-transform: scale(1.07);
242
- -ms-transform: scale(1.07);
243
- transform: scale(1.07); }
244
-
245
- @-webkit-keyframes spin {
246
- 100% {
247
- -webkit-transform: rotate(360deg);
248
- transform: rotate(360deg); } }
249
-
250
- @keyframes spin {
251
- 100% {
252
- -webkit-transform: rotate(360deg);
253
- transform: rotate(360deg); } }
1
+ /**************** Premium Bullet List ****************/
2
+ /*****************************************************/
3
+ .premium-bullet-list-box {
4
+ -js-display: flex;
5
+ display: -webkit-box;
6
+ display: -webkit-flex;
7
+ display: -moz-box;
8
+ display: -ms-flexbox;
9
+ display: flex;
10
+ -webkit-flex-wrap: wrap;
11
+ -ms-flex-wrap: wrap;
12
+ flex-wrap: wrap;
13
+ -webkit-box-orient: vertical;
14
+ -webkit-box-direction: normal;
15
+ -webkit-flex-direction: column;
16
+ -moz-box-orient: vertical;
17
+ -moz-box-direction: normal;
18
+ -ms-flex-direction: column;
19
+ flex-direction: column;
20
+ padding: 0; }
21
+ .premium-bullet-list-box .premium-bullet-list-content-grow-lc {
22
+ -webkit-transform-origin: left center;
23
+ -ms-transform-origin: left center;
24
+ transform-origin: left center; }
25
+ .premium-bullet-list-box .premium-bullet-list-content-grow-rc {
26
+ -webkit-transform-origin: right center;
27
+ -ms-transform-origin: right center;
28
+ transform-origin: right center; }
29
+ .premium-bullet-list-box .premium-bullet-list-content-grow-cc {
30
+ -webkit-transform-origin: center center;
31
+ -ms-transform-origin: center center;
32
+ transform-origin: center center; }
33
+
34
+ .premium-bullet-list-content {
35
+ -js-display: flex;
36
+ display: -webkit-box;
37
+ display: -webkit-flex;
38
+ display: -moz-box;
39
+ display: -ms-flexbox;
40
+ display: flex;
41
+ -webkit-transition: all 0.3s ease-in-out;
42
+ transition: all 0.3s ease-in-out;
43
+ width: auto;
44
+ position: relative; }
45
+ .premium-bullet-list-content .premium-bullet-list-text span,
46
+ .premium-bullet-list-content .premium-bullet-list-wrapper {
47
+ display: inline-block;
48
+ -webkit-align-self: center;
49
+ -ms-flex-item-align: center;
50
+ align-self: center;
51
+ -webkit-transition: all 0.3s ease-in-out;
52
+ transition: all 0.3s ease-in-out; }
53
+ .premium-bullet-list-content .premium-bullet-list-text span {
54
+ margin: 0 5px;
55
+ -webkit-box-flex: 1;
56
+ -webkit-flex: 1;
57
+ -moz-box-flex: 1;
58
+ -ms-flex: 1;
59
+ flex: 1; }
60
+ .premium-bullet-list-content .premium-bullet-list-icon-text p {
61
+ font-size: 18px;
62
+ background-color: #eee;
63
+ padding: 1px 5px;
64
+ -webkit-border-radius: 2px;
65
+ border-radius: 2px; }
66
+ .premium-bullet-list-content .premium-bullet-list-text span,
67
+ .premium-bullet-list-content .premium-bullet-list-icon-text p,
68
+ .premium-bullet-list-content .premium-bullet-list-wrapper img,
69
+ .premium-bullet-list-content .premium-bullet-list-wrapper svg,
70
+ .premium-bullet-list-content .premium-bullet-list-wrapper i {
71
+ -webkit-transition: all 0.3s ease-in-out;
72
+ transition: all 0.3s ease-in-out; }
73
+ .premium-bullet-list-content .premium-bullet-list-wrapper {
74
+ position: relative;
75
+ line-height: 0; }
76
+ .premium-bullet-list-content .premium-bullet-list-wrapper img,
77
+ .premium-bullet-list-content .premium-bullet-list-wrapper svg {
78
+ width: 30px !important;
79
+ height: 30px !important;
80
+ position: relative;
81
+ z-index: 500; }
82
+ .premium-bullet-list-content .premium-bullet-list-wrapper i,
83
+ .premium-bullet-list-content .premium-bullet-list-wrapper .premium-bullet-list-icon-text {
84
+ position: relative;
85
+ z-index: 500; }
86
+ .premium-bullet-list-content .premium-bullet-list-wrapper i {
87
+ width: 1.25em; }
88
+ .premium-bullet-list-content .premium-bullet-list-link {
89
+ position: absolute;
90
+ top: 0;
91
+ left: 0;
92
+ width: 100%;
93
+ height: 100%;
94
+ z-index: 1000; }
95
+
96
+ .premium-bullet-list-content:not(:last-of-type) .premium-bullet-list-connector {
97
+ width: 100%;
98
+ height: 100%;
99
+ position: absolute;
100
+ top: 0.5em;
101
+ z-index: 100;
102
+ -js-display: flex;
103
+ display: -webkit-box;
104
+ display: -webkit-flex;
105
+ display: -moz-box;
106
+ display: -ms-flexbox;
107
+ display: flex;
108
+ -webkit-box-pack: center;
109
+ -webkit-justify-content: center;
110
+ -moz-box-pack: center;
111
+ -ms-flex-pack: center;
112
+ justify-content: center; }
113
+ .premium-bullet-list-content:not(:last-of-type) .premium-bullet-list-connector .premium-icon-connector-content:after {
114
+ content: "";
115
+ border-right-width: 1px;
116
+ border-right-style: solid;
117
+ border-color: #333333;
118
+ display: block;
119
+ height: 100%; }
120
+
121
+ li.premium-bullet-list-content.premium-bullet-list-content-inline {
122
+ -webkit-align-self: center;
123
+ -ms-flex-item-align: center;
124
+ align-self: center;
125
+ z-index: 2; }
126
+
127
+ li.premium-bullet-list-content.premium-bullet-list-content-inline:not(:first-child) {
128
+ margin: 0 3px; }
129
+
130
+ li.premium-bullet-list-content.premium-bullet-list-content-inline:first-child {
131
+ margin: 0 3px 0 0; }
132
+
133
+ .premium-bullet-list-divider:not(:last-child) {
134
+ width: 100%;
135
+ -webkit-box-flex: 0;
136
+ -webkit-flex: 0 0 100%;
137
+ -moz-box-flex: 0;
138
+ -ms-flex: 0 0 100%;
139
+ flex: 0 0 100%;
140
+ overflow: hidden; }
141
+
142
+ .premium-bullet-list-divider:not(:last-child):after {
143
+ content: "";
144
+ display: block;
145
+ border-top-style: solid;
146
+ border-top-width: 1px; }
147
+
148
+ .premium-bullet-list-divider-inline:not(:last-child) {
149
+ float: right;
150
+ display: inline-block;
151
+ position: relative;
152
+ height: 100%;
153
+ overflow: hidden;
154
+ -webkit-align-self: center;
155
+ -ms-flex-item-align: center;
156
+ align-self: center;
157
+ margin: 0 3px; }
158
+
159
+ .premium-bullet-list-divider-inline:not(:last-child):after {
160
+ content: "";
161
+ display: block;
162
+ border-left-width: 1px;
163
+ height: 33px;
164
+ border-left-style: solid; }
165
+
166
+ .premium-bullet-list-icon-text {
167
+ line-height: 1.5; }
168
+
169
+ .premium-bullet-list-icon-text p,
170
+ ul.premium-bullet-list-box,
171
+ li.premium-bullet-list-content {
172
+ margin: 0; }
173
+
174
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper i,
175
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-text span,
176
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-icon-text p {
177
+ color: transparent !important;
178
+ text-shadow: 0 0 3px #aaa; }
179
+
180
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-icon-connector-content,
181
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper .premium-lottie-animation svg,
182
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper img,
183
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-badge {
184
+ -webkit-filter: blur(3px);
185
+ filter: blur(3px); }
186
+
187
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper i,
188
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-text span,
189
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-icon-text p {
190
+ color: #aaa !important;
191
+ text-shadow: 0 0px 0 transparent; }
192
+
193
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-icon-connector-content,
194
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper .premium-lottie-animation svg,
195
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper img,
196
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-badge {
197
+ -webkit-filter: none;
198
+ filter: none; }
199
+
200
+ .premium-bullet-list-content .premium-bullet-list-badge {
201
+ font-size: 11px;
202
+ top: auto;
203
+ min-width: -webkit-max-content;
204
+ min-width: -moz-max-content;
205
+ min-width: max-content;
206
+ height: -webkit-fit-content;
207
+ height: -moz-fit-content;
208
+ height: fit-content; }
209
+
210
+ .premium-bullet-list-content .premium-bullet-list-icon-text p {
211
+ font-size: 13px; }
212
+
213
+ .premium-bullet-list-gradient-effect[data-text] {
214
+ display: inline-block;
215
+ position: relative;
216
+ text-decoration: none; }
217
+
218
+ .premium-bullet-list-gradient-effect[data-text]::before {
219
+ content: attr(data-text);
220
+ position: absolute;
221
+ z-index: 1;
222
+ overflow: hidden;
223
+ -webkit-clip-path: polygon(0 0, 1px 0, 1px 100%, 0 100%);
224
+ clip-path: polygon(0 0, 1px 0, 1px 100%, 0 100%);
225
+ -webkit-background-clip: text;
226
+ background-clip: text;
227
+ -webkit-text-fill-color: transparent;
228
+ -webkit-transition: all 0.4s ease;
229
+ transition: all 0.4s ease; }
230
+
231
+ .premium-bullet-list-content:hover .premium-bullet-list-gradient-effect[data-text]::before,
232
+ .premium-bullet-list-content:focus .premium-bullet-list-gradient-effect[data-text]::before {
233
+ -webkit-c