Premium Addons for Elementor - Version 4.9.0-beta2

Version Description

Download this release

Release Info

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

Code changes from version 4.9.0-beta1 to 4.9.0-beta2

admin/includes/admin-helper.php CHANGED
@@ -1,1180 +1,1180 @@
1
- <?php
2
- /**
3
- * PA Admin Helper
4
- */
5
-
6
- namespace PremiumAddons\Admin\Includes;
7
-
8
- use PremiumAddons\Includes\Helper_Functions;
9
- use Elementor\Modules\Usage\Module;
10
-
11
- if ( ! defined( 'ABSPATH' ) ) {
12
- exit;
13
- }
14
-
15
- /**
16
- * Class Admin_Helper
17
- */
18
- class Admin_Helper {
19
-
20
- /**
21
- * Admin settings tabs
22
- *
23
- * @var tabs
24
- */
25
- private static $tabs = null;
26
-
27
- /**
28
- * Class instance
29
- *
30
- * @var instance
31
- */
32
- private static $instance = null;
33
-
34
- /**
35
- * Premium Addons Settings Page Slug
36
- *
37
- * @var page_slug
38
- */
39
- protected $page_slug = 'premium-addons';
40
-
41
- /**
42
- * Current Screen ID
43
- *
44
- * @var current_screen
45
- */
46
- public static $current_screen = null;
47
-
48
- /**
49
- * Elements List
50
- *
51
- * @var elements_list
52
- */
53
- public static $elements_list = null;
54
-
55
- /**
56
- * Elements Names
57
- *
58
- * @var elements_names
59
- */
60
- public static $elements_names = null;
61
-
62
- /**
63
- * Integrations List
64
- *
65
- * @var integrations_list
66
- */
67
- public static $integrations_list = null;
68
-
69
- /**
70
- * Constructor for the class
71
- */
72
- public function __construct() {
73
-
74
- // Get current screen ID.
75
- add_action( 'current_screen', array( $this, 'get_current_screen' ) );
76
-
77
- // Insert admin settings submenus.
78
- $this->set_admin_tabs();
79
- add_action( 'admin_menu', array( $this, 'add_menu_tabs' ), 100 );
80
-
81
- // Enqueue required admin scripts.
82
- add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
83
-
84
- // Plugin Action Links.
85
- add_filter( 'plugin_action_links_' . PREMIUM_ADDONS_BASENAME, array( $this, 'insert_action_links' ) );
86
- add_filter( 'plugin_row_meta', array( $this, 'plugin_row_meta' ), 10, 2 );
87
-
88
- // Register AJAX HOOKS.
89
- add_action( 'wp_ajax_pa_save_global_btn', array( $this, 'save_global_btn_value' ) );
90
- add_action( 'wp_ajax_pa_elements_settings', array( $this, 'save_settings' ) );
91
- add_action( 'wp_ajax_pa_additional_settings', array( $this, 'save_additional_settings' ) );
92
- add_action( 'wp_ajax_pa_get_unused_widgets', array( $this, 'get_unused_widgets' ) );
93
-
94
- // Register AJAX Hooks for regenerate assets
95
- // add_action( 'wp_ajax_pa_clear_cached_assets', array( $this, 'clear_cached_assets' ) );
96
-
97
- add_action( 'wp_ajax_subscribe_newsletter', array( $this, 'subscribe_newsletter' ) );
98
-
99
- add_action( 'pa_before_render_admin_tabs', array( $this, 'render_dashboard_header' ) );
100
-
101
- // Register Rollback hooks.
102
- add_action( 'admin_post_premium_addons_rollback', array( $this, 'run_pa_rollback' ) );
103
-
104
- if ( is_admin() ) {
105
- $current_page = $_SERVER['REQUEST_URI'];
106
- if ( false === strpos( $current_page, 'action=elementor' ) ) {
107
- Admin_Notices::get_instance();
108
-
109
- // Beta tester
110
- Beta_Testers::get_instance();
111
-
112
- // PA Duplicator.
113
- if ( self::check_duplicator() ) {
114
- Duplicator::get_instance();
115
- }
116
- }
117
- }
118
-
119
- }
120
-
121
- /**
122
- * Checks user credentials for specific action
123
- *
124
- * @since 2.6.8
125
- *
126
- * @return boolean
127
- */
128
- public static function check_user_can( $action ) {
129
- return current_user_can( $action );
130
- }
131
-
132
- /**
133
- * Get Elements List
134
- *
135
- * Get a list of all the elements available in the plugin
136
- *
137
- * @since 3.20.9
138
- * @access private
139
- *
140
- * @return array widget_list
141
- */
142
- public static function get_elements_list() {
143
-
144
- if ( null === self::$elements_list ) {
145
-
146
- self::$elements_list = require_once PREMIUM_ADDONS_PATH . 'admin/includes/elements.php';
147
-
148
- }
149
-
150
- return self::$elements_list;
151
-
152
- }
153
-
154
- /**
155
- * Get Integrations List
156
- *
157
- * Get a list of all the integrations available in the plugin
158
- *
159
- * @since 3.20.9
160
- * @access private
161
- *
162
- * @return array integrations_list
163
- */
164
- private static function get_integrations_list() {
165
-
166
- if ( null === self::$integrations_list ) {
167
-
168
- self::$integrations_list = array(
169
- 'premium-map-api',
170
- 'premium-youtube-api',
171
- 'premium-map-disable-api',
172
- 'premium-map-cluster',
173
- 'premium-map-locale',
174
- 'is-beta-tester',
175
- );
176
-
177
- }
178
-
179
- return self::$integrations_list;
180
-
181
- }
182
-
183
- /**
184
- * Admin Enqueue Scripts
185
- *
186
- * Enqueue the required assets on our admin pages
187
- *
188
- * @since 1.0.0
189
- * @access public
190
- */
191
- public function admin_enqueue_scripts() {
192
-
193
- wp_enqueue_style(
194
- 'pa_admin_icon',
195
- PREMIUM_ADDONS_URL . 'admin/assets/fonts/style.css',
196
- array(),
197
- PREMIUM_ADDONS_VERSION,
198
- 'all'
199
- );
200
-
201
- $suffix = is_rtl() ? '-rtl' : '';
202
-
203
- $current_screen = self::get_current_screen();
204
-
205
- wp_enqueue_style(
206
- 'pa-notice-css',
207
- PREMIUM_ADDONS_URL . 'admin/assets/css/notice' . $suffix . '.css',
208
- array(),
209
- PREMIUM_ADDONS_VERSION,
210
- 'all'
211
- );
212
-
213
- if ( strpos( $current_screen, $this->page_slug ) !== false ) {
214
-
215
- wp_enqueue_style(
216
- 'pa-admin-css',
217
- PREMIUM_ADDONS_URL . 'admin/assets/css/admin' . $suffix . '.css',
218
- array(),
219
- PREMIUM_ADDONS_VERSION,
220
- 'all'
221
- );
222
-
223
- wp_enqueue_style(
224
- 'pa-sweetalert-style',
225
- PREMIUM_ADDONS_URL . 'admin/assets/js/sweetalert2/sweetalert2.min.css',
226
- array(),
227
- PREMIUM_ADDONS_VERSION,
228
- 'all'
229
- );
230
-
231
- wp_enqueue_script(
232
- 'pa-admin',
233
- PREMIUM_ADDONS_URL . 'admin/assets/js/admin.js',
234
- array( 'jquery' ),
235
- PREMIUM_ADDONS_VERSION,
236
- true
237
- );
238
-
239
- wp_enqueue_script(
240
- 'pa-sweetalert-core',
241
- PREMIUM_ADDONS_URL . 'admin/assets/js/sweetalert2/core.js',
242
- array( 'jquery' ),
243
- PREMIUM_ADDONS_VERSION,
244
- true
245
- );
246
-
247
- wp_enqueue_script(
248
- 'pa-sweetalert',
249
- PREMIUM_ADDONS_URL . 'admin/assets/js/sweetalert2/sweetalert2.min.js',
250
- array( 'jquery', 'pa-sweetalert-core' ),
251
- PREMIUM_ADDONS_VERSION,
252
- true
253
- );
254
-
255
- $theme_slug = Helper_Functions::get_installed_theme();
256
-
257
- $localized_data = array(
258
- 'settings' => array(
259
- 'ajaxurl' => admin_url( 'admin-ajax.php' ),
260
- 'nonce' => wp_create_nonce( 'pa-settings-tab' ),
261
- 'theme' => $theme_slug,
262
- 'isTrackerAllowed' => 'yes' === get_option( 'elementor_allow_tracking', 'no' ) ? true : false,
263
- ),
264
- 'premiumRollBackConfirm' => array(
265
- 'home_url' => home_url(),
266
- 'i18n' => array(
267
- 'rollback_to_previous_version' => __( 'Rollback to Previous Version', 'premium-addons-for-elementor' ),
268
- /* translators: %s: PA stable version */
269
- 'rollback_confirm' => sprintf( __( 'Are you sure you want to reinstall version %s?', 'premium-addons-for-elementor' ), PREMIUM_ADDONS_STABLE_VERSION ),
270
- 'yes' => __( 'Continue', 'premium-addons-for-elementor' ),
271
- 'cancel' => __( 'Cancel', 'premium-addons-for-elementor' ),
272
- ),
273
- ),
274
- );
275
-
276
- // Add PAPRO Rollback Confirm message if PAPRO installed.
277
- if ( Helper_Functions::check_papro_version() ) {
278
- /* translators: %s: PA stable version */
279
- $localized_data['premiumRollBackConfirm']['i18n']['papro_rollback_confirm'] = sprintf( __( 'Are you sure you want to reinstall version %s?', 'premium-addons-for-elementor' ), PREMIUM_ADDONS_STABLE_VERSION );
280
- }
281
-
282
- wp_localize_script( 'pa-admin', 'premiumAddonsSettings', $localized_data );
283
-
284
- }
285
- }
286
-
287
- /**
288
- * Insert action links.
289
- *
290
- * Adds action links to the plugin list table
291
- *
292
- * Fired by `plugin_action_links` filter.
293
- *
294
- * @param array $links plugin action links.
295
- *
296
- * @since 1.0.0
297
- * @access public
298
- */
299
- public function insert_action_links( $links ) {
300
-
301
- $papro_path = 'premium-addons-pro/premium-addons-pro-for-elementor.php';
302
-
303
- $is_papro_installed = Helper_Functions::is_plugin_installed( $papro_path );
304
-
305
- $settings_link = sprintf( '<a href="%1$s">%2$s</a>', admin_url( 'admin.php?page=' . $this->page_slug . '#tab=elements' ), __( 'Settings', 'premium-addons-for-elementor' ) );
306
-
307
- $rollback_link = sprintf( '<a href="%1$s">%2$s %3$s</a>', wp_nonce_url( admin_url( 'admin-post.php?action=premium_addons_rollback' ), 'premium_addons_rollback' ), __( 'Rollback to Version ', 'premium-addons-for-elementor' ), PREMIUM_ADDONS_STABLE_VERSION );
308
-
309
- $new_links = array( $settings_link, $rollback_link );
310
-
311
- if ( ! $is_papro_installed ) {
312
-
313
- $link = Helper_Functions::get_campaign_link( 'https://premiumaddons.com/pro', 'plugins-page', 'wp-dash', 'get-pro' );
314
-
315
- $pro_link = sprintf( '<a href="%s" target="_blank" style="color: #FF6000; font-weight: bold;">%s</a>', $link, __( 'Go Pro', 'premium-addons-for-elementor' ) );
316
- array_push( $new_links, $pro_link );
317
- }
318
-
319
- $new_links = array_merge( $links, $new_links );
320
-
321
- return $new_links;
322
- }
323
-
324
- /**
325
- * Plugin row meta.
326
- *
327
- * Extends plugin row meta links
328
- *
329
- * Fired by `plugin_row_meta` filter.
330
- *
331
- * @since 3.8.4
332
- * @access public
333
- *
334
- * @param array $meta array of the plugin's metadata.
335
- * @param string $file path to the plugin file.
336
- *
337
- * @return array An array of plugin row meta links.
338
- */
339
- public function plugin_row_meta( $meta, $file ) {
340
-
341
- if ( Helper_Functions::is_hide_row_meta() ) {
342
- return $meta;
343
- }
344
-
345
- if ( PREMIUM_ADDONS_BASENAME === $file ) {
346
-
347
- $link = Helper_Functions::get_campaign_link( 'https://premiumaddons.com/support', 'plugins-page', 'wp-dash', 'get-support' );
348
-
349
- $row_meta = array(
350
- 'docs' => '<a href="' . esc_attr( $link ) . '" aria-label="' . esc_attr( __( 'View Premium Addons for Elementor Documentation', 'premium-addons-for-elementor' ) ) . '" target="_blank">' . __( 'Docs & FAQs', 'premium-addons-for-elementor' ) . '</a>',
351
- 'videos' => '<a href="https://www.youtube.com/watch?v=D3INxWw_jKI&list=PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv" aria-label="' . esc_attr( __( 'View Premium Addons Video Tutorials', 'premium-addons-for-elementor' ) ) . '" target="_blank">' . __( 'Video Tutorials', 'premium-addons-for-elementor' ) . '</a>',
352
- );
353
-
354
- $meta = array_merge( $meta, $row_meta );
355
- }
356
-
357
- return $meta;
358
-
359
- }
360
-
361
- /**
362
- * Gets current screen slug
363
- *
364
- * @since 3.3.8
365
- * @access public
366
- *
367
- * @return string current screen slug
368
- */
369
- public static function get_current_screen() {
370
-
371
- self::$current_screen = get_current_screen()->id;
372
-
373
- return isset( self::$current_screen ) ? self::$current_screen : false;
374
-
375
- }
376
-
377
- /**
378
- * Set Admin Tabs
379
- *
380
- * @access private
381
- * @since 3.20.8
382
- */
383
- private function set_admin_tabs() {
384
-
385
- $slug = $this->page_slug;
386
-
387
- self::$tabs = array(
388
- 'general' => array(
389
- 'id' => 'general',
390
- 'slug' => $slug . '#tab=general',
391
- 'title' => __( 'General', 'premium-addons-for-elementor' ),
392
- 'href' => '#tab=general',
393
- 'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/general',
394
- ),
395
- 'elements' => array(
396
- 'id' => 'elements',
397
- 'slug' => $slug . '#tab=elements',
398
- 'title' => __( 'Widgets & Add-ons', 'premium-addons-for-elementor' ),
399
- 'href' => '#tab=elements',
400
- 'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/modules-settings',
401
- ),
402
- 'features' => array(
403
- 'id' => 'features',
404
- 'slug' => $slug . '#tab=features',
405
- 'title' => __( 'Global Features', 'premium-addons-for-elementor' ),
406
- 'href' => '#tab=features',
407
- 'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/features',
408
- ),
409
- 'integrations' => array(
410
- 'id' => 'integrations',
411
- 'slug' => $slug . '#tab=integrations',
412
- 'title' => __( 'Integrations', 'premium-addons-for-elementor' ),
413
- 'href' => '#tab=integrations',
414
- 'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/integrations',
415
- ),
416
- 'version-control' => array(
417
- 'id' => 'vcontrol',
418
- 'slug' => $slug . '#tab=vcontrol',
419
- 'title' => __( 'Version Control', 'premium-addons-for-elementor' ),
420
- 'href' => '#tab=vcontrol',
421
- 'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/version-control',
422
- ),
423
- 'white-label' => array(
424
- 'id' => 'white-label',
425
- 'slug' => $slug . '#tab=white-label',
426
- 'title' => __( 'White Labeling', 'premium-addons-for-elementor' ),
427
- 'href' => '#tab=white-label',
428
- 'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/white-label',
429
- ),
430
- 'info' => array(
431
- 'id' => 'system-info',
432
- 'slug' => $slug . '#tab=system-info',
433
- 'title' => __( 'System Info', 'premium-addons-for-elementor' ),
434
- 'href' => '#tab=system-info',
435
- 'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/info',
436
- ),
437
- );
438
-
439
- self::$tabs = apply_filters( 'pa_admin_register_tabs', self::$tabs );
440
-
441
- }
442
-
443
- /**
444
- * Add Menu Tabs
445
- *
446
- * Create Submenu Page
447
- *
448
- * @since 3.20.9
449
- * @access public
450
- *
451
- * @return void
452
- */
453
- public function add_menu_tabs() {
454
-
455
- $plugin_name = Helper_Functions::name();
456
-
457
- call_user_func(
458
- 'add_menu_page',
459
- $plugin_name,
460
- $plugin_name,
461
- 'manage_options',
462
- $this->page_slug,
463
- array( $this, 'render_setting_tabs' ),
464
- '',
465
- 100
466
- );
467
-
468
- foreach ( self::$tabs as $tab ) {
469
-
470
- call_user_func(
471
- 'add_submenu_page',
472
- $this->page_slug,
473
- $tab['title'],
474
- $tab['title'],
475
- 'manage_options',
476
- $tab['slug'],
477
- '__return_null'
478
- );
479
- }
480
-
481
- remove_submenu_page( $this->page_slug, $this->page_slug );
482
- }
483
-
484
- /**
485
- * Render Setting Tabs
486
- *
487
- * Render the final HTML content for admin setting tabs
488
- *
489
- * @access public
490
- * @since 3.20.8
491
- */
492
- public function render_setting_tabs() {
493
-
494
- ?>
495
- <div class="pa-settings-wrap">
496
- <?php do_action( 'pa_before_render_admin_tabs' ); ?>
497
- <div class="pa-settings-tabs">
498
- <ul class="pa-settings-tabs-list">
499
- <?php
500
- foreach ( self::$tabs as $key => $tab ) {
501
- $link = '<li class="pa-settings-tab">';
502
- $link .= '<a id="pa-tab-link-' . esc_attr( $tab['id'] ) . '"';
503
- $link .= ' href="' . esc_url( $tab['href'] ) . '">';
504
- $link .= '<i class="pa-dash-' . esc_attr( $tab['id'] ) . '"></i>';
505
- $link .= '<span>' . esc_html( $tab['title'] ) . '</span>';
506
- $link .= '</a>';
507
- $link .= '</li>';
508
-
509
- echo $link;
510
- }
511
- ?>
512
- </ul>
513
- </div> <!-- Settings Tabs -->
514
-
515
- <div class="pa-settings-sections">
516
- <?php
517
- foreach ( self::$tabs as $key => $tab ) {
518
- echo wp_kses_post( '<div id="pa-section-' . $tab['id'] . '" class="pa-section pa-section-' . $key . '">' );
519
- include_once $tab['template'] . '.php';
520
- echo '</div>';
521
- }
522
- ?>
523
- </div> <!-- Settings Sections -->
524
- <?php do_action( 'pa_after_render_admin_tabs' ); ?>
525
- </div> <!-- Settings Wrap -->
526
- <?php
527
- }
528
-
529
- /**
530
- * Render Dashboard Header
531
- *
532
- * @since 4.0.0
533
- * @access public
534
- */
535
- public function render_dashboard_header() {
536
-
537
- $url = Helper_Functions::get_campaign_link( 'https://premiumaddons.com/pro/', 'settings-page', 'wp-dash', 'dashboard' );
538
-
539
- $show_logo = Helper_Functions::is_hide_logo();
540
-
541
- ?>
542
-
543
- <div class="papro-admin-notice">
544
- <?php if ( ! $show_logo ) : ?>
545
- <div class="papro-admin-notice-left">
546
- <div class="papro-admin-notice-logo">
547
- <img class="pa-notice-logo" src="<?php echo esc_attr( PREMIUM_ADDONS_URL . 'admin/images/papro-notice-logo.png' ); ?>">
548
- </div>
549
- <a href="https://premiumaddons.com" target="_blank"></a>
550
- </div>
551
- <?php endif; ?>
552
-
553
- <?php if ( ! Helper_Functions::check_papro_version() ) : ?>
554
- <div class="papro-admin-notice-right">
555
- <div class="papro-admin-notice-info">
556
- <h4>
557
- <?php echo esc_html( __( 'Get Premium Addons PRO', 'premium-addons-for-elementor' ) ); ?>
558
- </h4>
559
- <p>
560
- <?php
561
- /* translators: %s: html tags */
562
- echo wp_kses_post( sprintf( __( 'Supercharge your Elementor with %1$sPRO Widgets & Addons%2$s that you won\'t find anywhere else.', 'premium-addons-for-elementor' ), '<span>', '</span>' ) );
563
- ?>
564
- </p>
565
- </div>
566
- <div class="papro-admin-notice-cta">
567
- <a class="papro-notice-btn" href="<?php echo esc_url( $url ); ?>" target="_blank">
568
- <?php echo esc_html( __( 'Get PRO', 'premium-addons-for-elementor' ) ); ?>
569
- </a>
570
- </div>
571
- </div>
572
- <?php endif; ?>
573
- </div>
574
-
575
- <?php
576
- }
577
-
578
- /**
579
- * Save Settings
580
- *
581
- * Save elements settings using AJAX
582
- *
583
- * @access public
584
- * @since 3.20.8
585
- */
586
- public function save_settings() {
587
-
588
- check_ajax_referer( 'pa-settings-tab', 'security' );
589
-
590
- if ( ! isset( $_POST['fields'] ) ) {
591
- return;
592
- }
593
-
594
- parse_str( sanitize_text_field( $_POST['fields'] ), $settings );
595
-
596
- $defaults = self::get_default_elements();
597
-
598
- $elements = array_fill_keys( array_keys( array_intersect_key( $settings, $defaults ) ), true );
599
-
600
- update_option( 'pa_save_settings', $elements );
601
-
602
- wp_send_json_success();
603
- }
604
-
605
- /**
606
- * Save Integrations Control Settings
607
- *
608
- * Stores integration and version control settings
609
- *
610
- * @since 3.20.8
611
- * @access public
612
- */
613
- public function save_additional_settings() {
614
-
615
- check_ajax_referer( 'pa-settings-tab', 'security' );
616
-
617
- if ( ! isset( $_POST['fields'] ) ) {
618
- return;
619
- }
620
-
621
- parse_str( sanitize_text_field( $_POST['fields'] ), $settings );
622
-
623
- $new_settings = array(
624
- 'premium-map-api' => sanitize_text_field( $settings['premium-map-api'] ),
625
- 'premium-youtube-api' => sanitize_text_field( $settings['premium-youtube-api'] ),
626
- 'premium-map-disable-api' => intval( $settings['premium-map-disable-api'] ? 1 : 0 ),
627
- 'premium-map-cluster' => intval( $settings['premium-map-cluster'] ? 1 : 0 ),
628
- 'premium-map-locale' => sanitize_text_field( $settings['premium-map-locale'] ),
629
- 'is-beta-tester' => intval( $settings['is-beta-tester'] ? 1 : 0 ),
630
- );
631
-
632
- update_option( 'pa_maps_save_settings', $new_settings );
633
-
634
- wp_send_json_success( $settings );
635
-
636
- }
637
-
638
- /**
639
- * Save Global Button Value
640
- *
641
- * Saves value for elements global switcher
642
- *
643
- * @since 4.0.0
644
- * @access public
645
- */
646
- public function save_global_btn_value() {
647
-
648
- check_ajax_referer( 'pa-settings-tab', 'security' );
649
-
650
- if ( ! isset( $_POST['isGlobalOn'] ) ) {
651
- wp_send_json_error();
652
- }
653
-
654
- $global_btn_value = sanitize_text_field( $_POST['isGlobalOn'] );
655
-
656
- update_option( 'pa_global_btn_value', $global_btn_value );
657
-
658
- wp_send_json_success();
659
-
660
- }
661
-
662
- /**
663
- * Get default Elements
664
- *
665
- * @since 3.20.9
666
- * @access private
667
- *
668
- * @return $default_keys array keys defaults
669
- */
670
- private static function get_default_elements() {
671
-
672
- $elements = self::get_elements_list();
673
-
674
- $keys = array();
675
-
676
- // Now, we need to fill our array with elements keys.
677
- foreach ( $elements as $cat ) {
678
- if ( count( $cat['elements'] ) ) {
679
- foreach ( $cat['elements'] as $elem ) {
680
- array_push( $keys, $elem['key'] );
681
- }
682
- }
683
- }
684
-
685
- $default_keys = array_fill_keys( $keys, true );
686
-
687
- return $default_keys;
688
-
689
- }
690
-
691
- /**
692
- * Get Pro Elements.
693
- * Return PAPRO Widgets.
694
- *
695
- * @since 4.5.3
696
- * @access public
697
- *
698
- * @return array
699
- */
700
- public static function get_pro_elements() {
701
-
702
- $elements = self::get_elements_list();
703
-
704
- $pro_elements = array();
705
-
706
- $all_elements = $elements['cat-1'];
707
-
708
- if ( count( $all_elements['elements'] ) ) {
709
- foreach ( $all_elements['elements'] as $elem ) {
710
- if ( isset( $elem['is_pro'] ) && ! isset( $elem['is_global'] ) ) {
711
- array_push( $pro_elements, $elem );
712
- }
713
- }
714
- }
715
-
716
- return $pro_elements;
717
- }
718
-
719
- /**
720
- * Get PA Free Elements.
721
- * Return PA Widgets.
722
- *
723
- * @since 4.6.1
724
- * @access public
725
- *
726
- * @return array
727
- */
728
- public static function get_free_widgets_names() {
729
-
730
- $elements = self::get_elements_list()['cat-1']['elements'];
731
-
732
- $pa_elements = array();
733
-
734
- if ( count( $elements ) ) {
735
- foreach ( $elements as $elem ) {
736
- if ( ! isset( $elem['is_pro'] ) && ! isset( $elem['is_global'] ) && isset( $elem['name'] ) ) {
737
- array_push( $pa_elements, $elem['name'] );
738
- }
739
- }
740
- }
741
-
742
- return $pa_elements;
743
- }
744
-
745
- /**
746
- * Get Global Elements Switchers.
747
- * Construct an associative array of addon_switcher => 'yes' pairs
748
- * Example :
749
- * + array( 'premium_gradient_switcher' => yes').
750
- *
751
- * @since 4.6.1
752
- * @access public
753
- *
754
- * @return array
755
- */
756
- public static function get_global_elements_switchers() {
757
-
758
- $elements = self::get_elements_list()['cat-4'];
759
-
760
- $global_elems = array();
761
-
762
- if ( count( $elements['elements'] ) ) {
763
- foreach ( $elements['elements'] as $elem ) {
764
- if ( isset( $elem['is_pro'] ) && isset( $elem['is_global'] ) ) {
765
- $global_elems[ str_replace( '-', '_', $elem['key'] ) . '_switcher' ] = 'yes';
766
- }
767
- }
768
- }
769
-
770
- return $global_elems;
771
- }
772
-
773
- /**
774
- * Get Default Interations
775
- *
776
- * @since 3.20.9
777
- * @access private
778
- *
779
- * @return $default_keys array default keys
780
- */
781
- private static function get_default_integrations() {
782
-
783
- $settings = self::get_integrations_list();
784
-
785
- $default_keys = array_fill_keys( $settings, true );
786
-
787
- // Beta Tester should NOT be enabled by default.
788
- $default_keys['is-beta-tester'] = false;
789
-
790
- return $default_keys;
791
-
792
- }
793
-
794
- /**
795
- * Get enabled widgets
796
- *
797
- * @since 3.20.9
798
- * @access public
799
- *
800
- * @return array $enabled_keys enabled elements
801
- */
802
- public static function get_enabled_elements() {
803
-
804
- $defaults = self::get_default_elements();
805
-
806
- $enabled_keys = get_option( 'pa_save_settings', $defaults );
807
-
808
- foreach ( $defaults as $key => $value ) {
809
- if ( ! isset( $enabled_keys[ $key ] ) ) {
810
- $defaults[ $key ] = 0;
811
- }
812
- }
813
-
814
- return $defaults;
815
-
816
- }
817
-
818
- /**
819
- * Check If Premium Templates is enabled
820
- *
821
- * @since 3.6.0
822
- * @access public
823
- *
824
- * @return boolean
825
- */
826
- public static function check_premium_templates() {
827
-
828
- $settings = self::get_enabled_elements();
829
-
830
- if ( ! isset( $settings['premium-templates'] ) ) {
831
- return true;
832
- }
833
-
834
- $is_enabled = $settings['premium-templates'];
835
-
836
- return $is_enabled;
837
- }
838
-
839
-
840
- /**
841
- * Check If Premium Duplicator is enabled
842
- *
843
- * @since 3.20.9
844
- * @access public
845
- *
846
- * @return boolean
847
- */
848
- public static function check_duplicator() {
849
-
850
- $settings = self::get_enabled_elements();
851
-
852
- if ( ! isset( $settings['premium-duplicator'] ) ) {
853
- return true;
854
- }
855
-
856
- $is_enabled = $settings['premium-duplicator'];
857
-
858
- return $is_enabled;
859
- }
860
-
861
- /**
862
- * Get Integrations Settings
863
- *
864
- * Get plugin integrations settings
865
- *
866
- * @since 3.20.9
867
- * @access public
868
- *
869
- * @return array $settings integrations settings
870
- */
871
- public static function get_integrations_settings() {
872
-
873
- $enabled_keys = get_option( 'pa_maps_save_settings', self::get_default_integrations() );
874
-
875
- return $enabled_keys;
876
-
877
- }
878
-
879
- /**
880
- * Run PA Rollback
881
- *
882
- * Trigger PA Rollback actions
883
- *
884
- * @since 4.2.5
885
- * @access public
886
- */
887
- public function run_pa_rollback() {
888
-
889
- check_admin_referer( 'premium_addons_rollback' );
890
-
891
- $plugin_slug = basename( PREMIUM_ADDONS_FILE, '.php' );
892
-
893
- $pa_rollback = new PA_Rollback(
894
- array(
895
- 'version' => PREMIUM_ADDONS_STABLE_VERSION,
896
- 'plugin_name' => PREMIUM_ADDONS_BASENAME,
897
- 'plugin_slug' => $plugin_slug,
898
- 'package_url' => sprintf( 'https://downloads.wordpress.org/plugin/%s.%s.zip', $plugin_slug, PREMIUM_ADDONS_STABLE_VERSION ),
899
- )
900
- );
901
-
902
- $pa_rollback->run();
903
-
904
- wp_die(
905
- '',
906
- esc_html( __( 'Rollback to Previous Version', 'premium-addons-for-elementor' ) ),
907
- array(
908
- 'response' => 200,
909
- )
910
- );
911
-
912
- }
913
-
914
- /**
915
- * Disable unused widgets.
916
- *
917
- * @access public
918
- * @since 4.5.8
919
- */
920
- public function get_unused_widgets() {
921
-
922
- check_ajax_referer( 'pa-settings-tab', 'security' );
923
-
924
- if ( ! current_user_can( 'install_plugins' ) ) {
925
- wp_send_json_error();
926
- }
927
-
928
- $pa_elements = self::get_pa_elements_names();
929
-
930
- $used_widgets = self::get_used_widgets();
931
-
932
- $unused_widgets = array_diff( $pa_elements, array_keys( $used_widgets ) );
933
-
934
- wp_send_json_success( $unused_widgets );
935
-
936
- }
937
-
938
- /**
939
- * Clear Cached Assets.
940
- * Deletes assets options from DB And
941
- * deletes assets files from uploads/premium-addons-for-elementor
942
- * diretory.
943
- *
944
- * @access public
945
- * @since 4.6.1
946
- */
947
- public function clear_cached_assets() {
948
-
949
- check_ajax_referer( 'pa-settings-tab', 'security' );
950
-
951
- if ( ! current_user_can( 'manage_options' ) ) {
952
- wp_send_json_error( __( 'You are not allowed to do this action', 'essential-addons-for-elementor-lite' ) );
953
- }
954
-
955
- $this->delete_assets_options();
956
- $this->delete_assets_files();
957
-
958
- wp_send_json_success( 'Cached Assets Cleared' );
959
- }
960
-
961
- /**
962
- * Delete Assets Options.
963
- *
964
- * @access public
965
- * @since 4.6.1
966
- */
967
- public function delete_assets_options() {
968
-
969
- global $wpdb;
970
- $wpdb->query( "DELETE FROM $wpdb->options WHERE option_name LIKE '%pa_elements_%' OR option_name LIKE '%pa_edit_%' AND autoload = 'no'" );
971
- }
972
-
973
- /**
974
- * Delete Assets Files.
975
- *
976
- * @access public
977
- * @since 4.6.1
978
- */
979
- public function delete_assets_files() {
980
-
981
- $path = PREMIUM_ASSETS_PATH;
982
-
983
- if ( ! is_dir( $path ) || ! file_exists( $path ) ) {
984
- return;
985
- }
986
-
987
- foreach ( scandir( $path ) as $file ) {
988
- if ( $file == '.' || $file == '..' ) {
989
- continue;
990
- }
991
-
992
- unlink( Helper_Functions::get_safe_path( $path . DIRECTORY_SEPARATOR . $file ) );
993
- }
994
-
995
- }
996
-
997
- /**
998
- * Get PA widget names.
999
- *
1000
- * @access public
1001
- * @since 4.5.8
1002
- *
1003
- * @return array
1004
- */
1005
- public static function get_pa_elements_names() {
1006
-
1007
- $names = self::$elements_names;
1008
-
1009
- if ( null === $names ) {
1010
-
1011
- $names = array_map(
1012
- function( $item ) {
1013
- return isset( $item['name'] ) ? $item['name'] : 'global';
1014
- },
1015
- self::get_elements_list()['cat-1']['elements']
1016
- );
1017
-
1018
- $names = array_filter(
1019
- $names,
1020
- function( $name ) {
1021
- return 'global' !== $name;
1022
- }
1023
- );
1024
-
1025
- }
1026
-
1027
- return $names;
1028
- }
1029
-
1030
- /**
1031
- * Get used widgets.
1032
- *
1033
- * @access public
1034
- * @since 4.5.8
1035
- *
1036
- * @return array
1037
- */
1038
- public static function get_used_widgets() {
1039
-
1040
- $used_widgets = array();
1041
- $tracker_allowed = 'yes' === get_option( 'elementor_allow_tracking' ) ? true : false;
1042
-
1043
- if ( ! $tracker_allowed ) {
1044
- return false;
1045
- }
1046
-
1047
- if ( class_exists( 'Elementor\Modules\Usage\Module' ) ) {
1048
-
1049
- $module = Module::instance();
1050
- $elements = $module->get_formatted_usage( 'raw' );
1051
-
1052
- $pa_elements = self::get_pa_elements_names();
1053
-
1054
- if ( is_array( $elements ) || is_object( $elements ) ) {
1055
-
1056
- foreach ( $elements as $post_type => $data ) {
1057
-
1058
- foreach ( $data['elements'] as $element => $count ) {
1059
-
1060
- if ( in_array( $element, $pa_elements, true ) ) {
1061
-
1062
- if ( isset( $used_widgets[ $element ] ) ) {
1063
- $used_widgets[ $element ] += $count;
1064
- } else {
1065
- $used_widgets[ $element ] = $count;
1066
- }
1067
- }
1068
- }
1069
- }
1070
- }
1071
- }
1072
-
1073
- return $used_widgets;
1074
- }
1075
-
1076
- /**
1077
- * Subscribe Newsletter
1078
- *
1079
- * Adds an email to Premium Addons subscribers list
1080
- *
1081
- * @since 4.7.0
1082
- *
1083
- * @access public
1084
- */
1085
- public function subscribe_newsletter() {
1086
-
1087
- check_ajax_referer( 'pa-settings-tab', 'security' );
1088
-
1089
- if ( ! self::check_user_can( 'manage_options' ) ) {
1090
- wp_send_json_error();
1091
- }
1092
-
1093
- $email = isset( $_POST['email'] ) ? $_POST['email'] : '';
1094
-
1095
- $api_url = 'https://premiumaddons.com/wp-json/mailchimp/v2/add';
1096
-
1097
- $request = add_query_arg(
1098
- array(
1099
- 'email' => $email,
1100
- ),
1101
- $api_url
1102
- );
1103
-
1104
- $response = wp_remote_get(
1105
- $request,
1106
- array(
1107
- 'timeout' => 60,
1108
- 'sslverify' => true,
1109
- )
1110
- );
1111
-
1112
- $body = wp_remote_retrieve_body( $response );
1113
- $body = json_decode( $body, true );
1114
-
1115
- wp_send_json_success( $body );
1116
-
1117
- }
1118
-
1119
- /**
1120
- * Get PA News
1121
- *
1122
- * Gets a list of the latest three blog posts
1123
- *
1124
- * @since 4.7.0
1125
- *
1126
- * @access public
1127
- */
1128
- public function get_pa_news() {
1129
-
1130
- $posts = get_transient( 'pa_news' );
1131
-
1132
- if ( empty( $posts ) ) {
1133
-
1134
- $api_url = 'https://premiumaddons.com/wp-json/wp/v2/posts';
1135
-
1136
- $request = add_query_arg(
1137
- array(
1138
- 'per_page' => 3,
1139
- ),
1140
- $api_url
1141
- );
1142
-
1143
- $response = wp_remote_get(
1144
- $request,
1145
- array(
1146
- 'timeout' => 60,
1147
- 'sslverify' => true,
1148
- )
1149
- );
1150
-
1151
- $body = wp_remote_retrieve_body( $response );
1152
- $posts = json_decode( $body, true );
1153
-
1154
- set_transient( 'pa_news', $posts, WEEK_IN_SECONDS );
1155
-
1156
- }
1157
-
1158
- return $posts;
1159
-
1160
- }
1161
-
1162
- /**
1163
- * Creates and returns an instance of the class
1164
- *
1165
- * @since 1.0.0
1166
- * @access public
1167
- *
1168
- * @return object
1169
- */
1170
- public static function get_instance() {
1171
-
1172
- if ( ! isset( self::$instance ) ) {
1173
-
1174
- self::$instance = new self();
1175
-
1176
- }
1177
-
1178
- return self::$instance;
1179
- }
1180
- }
1
+ <?php
2
+ /**
3
+ * PA Admin Helper
4
+ */
5
+
6
+ namespace PremiumAddons\Admin\Includes;
7
+
8
+ use PremiumAddons\Includes\Helper_Functions;
9
+ use Elementor\Modules\Usage\Module;
10
+
11
+ if ( ! defined( 'ABSPATH' ) ) {
12
+ exit;
13
+ }
14
+
15
+ /**
16
+ * Class Admin_Helper
17
+ */
18
+ class Admin_Helper {
19
+
20
+ /**
21
+ * Admin settings tabs
22
+ *
23
+ * @var tabs
24
+ */
25
+ private static $tabs = null;
26
+
27
+ /**
28
+ * Class instance
29
+ *
30
+ * @var instance
31
+ */
32
+ private static $instance = null;
33
+
34
+ /**
35
+ * Premium Addons Settings Page Slug
36
+ *
37
+ * @var page_slug
38
+ */
39
+ protected $page_slug = 'premium-addons';
40
+
41
+ /**
42
+ * Current Screen ID
43
+ *
44
+ * @var current_screen
45
+ */
46
+ public static $current_screen = null;
47
+
48
+ /**
49
+ * Elements List
50
+ *
51
+ * @var elements_list
52
+ */
53
+ public static $elements_list = null;
54
+
55
+ /**
56
+ * Elements Names
57
+ *
58
+ * @var elements_names
59
+ */
60
+ public static $elements_names = null;
61
+
62
+ /**
63
+ * Integrations List
64
+ *
65
+ * @var integrations_list
66
+ */
67
+ public static $integrations_list = null;
68
+
69
+ /**
70
+ * Constructor for the class
71
+ */
72
+ public function __construct() {
73
+
74
+ // Get current screen ID.
75
+ add_action( 'current_screen', array( $this, 'get_current_screen' ) );
76
+
77
+ // Insert admin settings submenus.
78
+ $this->set_admin_tabs();
79
+ add_action( 'admin_menu', array( $this, 'add_menu_tabs' ), 100 );
80
+
81
+ // Enqueue required admin scripts.
82
+ add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
83
+
84
+ // Plugin Action Links.
85
+ add_filter( 'plugin_action_links_' . PREMIUM_ADDONS_BASENAME, array( $this, 'insert_action_links' ) );
86
+ add_filter( 'plugin_row_meta', array( $this, 'plugin_row_meta' ), 10, 2 );
87
+
88
+ // Register AJAX HOOKS.
89
+ add_action( 'wp_ajax_pa_save_global_btn', array( $this, 'save_global_btn_value' ) );
90
+ add_action( 'wp_ajax_pa_elements_settings', array( $this, 'save_settings' ) );
91
+ add_action( 'wp_ajax_pa_additional_settings', array( $this, 'save_additional_settings' ) );
92
+ add_action( 'wp_ajax_pa_get_unused_widgets', array( $this, 'get_unused_widgets' ) );
93
+
94
+ // Register AJAX Hooks for regenerate assets
95
+ // add_action( 'wp_ajax_pa_clear_cached_assets', array( $this, 'clear_cached_assets' ) );
96
+
97
+ add_action( 'wp_ajax_subscribe_newsletter', array( $this, 'subscribe_newsletter' ) );
98
+
99
+ add_action( 'pa_before_render_admin_tabs', array( $this, 'render_dashboard_header' ) );
100
+
101
+ // Register Rollback hooks.
102
+ add_action( 'admin_post_premium_addons_rollback', array( $this, 'run_pa_rollback' ) );
103
+
104
+ if ( is_admin() ) {
105
+ $current_page = $_SERVER['REQUEST_URI'];
106
+ if ( false === strpos( $current_page, 'action=elementor' ) ) {
107
+ Admin_Notices::get_instance();
108
+
109
+ // Beta tester
110
+ Beta_Testers::get_instance();
111
+
112
+ // PA Duplicator.
113
+ if ( self::check_duplicator() ) {
114
+ Duplicator::get_instance();
115
+ }
116
+ }
117
+ }
118
+
119
+ }
120
+
121
+ /**
122
+ * Checks user credentials for specific action
123
+ *
124
+ * @since 2.6.8
125
+ *
126
+ * @return boolean
127
+ */
128
+ public static function check_user_can( $action ) {
129
+ return current_user_can( $action );
130
+ }
131
+
132
+ /**
133
+ * Get Elements List
134
+ *
135
+ * Get a list of all the elements available in the plugin
136
+ *
137
+ * @since 3.20.9
138
+ * @access private
139
+ *
140
+ * @return array widget_list
141
+ */
142
+ public static function get_elements_list() {
143
+
144
+ if ( null === self::$elements_list ) {
145
+
146
+ self::$elements_list = require_once PREMIUM_ADDONS_PATH . 'admin/includes/elements.php';
147
+
148
+ }
149
+
150
+ return self::$elements_list;
151
+
152
+ }
153
+
154
+ /**
155
+ * Get Integrations List
156
+ *
157
+ * Get a list of all the integrations available in the plugin
158
+ *
159
+ * @since 3.20.9
160
+ * @access private
161
+ *
162
+ * @return array integrations_list
163
+ */
164
+ private static function get_integrations_list() {
165
+
166
+ if ( null === self::$integrations_list ) {
167
+
168
+ self::$integrations_list = array(
169
+ 'premium-map-api',
170
+ 'premium-youtube-api',
171
+ 'premium-map-disable-api',
172
+ 'premium-map-cluster',
173
+ 'premium-map-locale',
174
+ 'is-beta-tester',
175
+ );
176
+
177
+ }
178
+
179
+ return self::$integrations_list;
180
+
181
+ }
182
+
183
+ /**
184
+ * Admin Enqueue Scripts
185
+ *
186
+ * Enqueue the required assets on our admin pages
187
+ *
188
+ * @since 1.0.0
189
+ * @access public
190
+ */
191
+ public function admin_enqueue_scripts() {
192
+
193
+ wp_enqueue_style(
194
+ 'pa_admin_icon',
195
+ PREMIUM_ADDONS_URL . 'admin/assets/fonts/style.css',
196
+ array(),
197
+ PREMIUM_ADDONS_VERSION,
198
+ 'all'
199
+ );
200
+
201
+ $suffix = is_rtl() ? '-rtl' : '';
202
+
203
+ $current_screen = self::get_current_screen();
204
+
205
+ wp_enqueue_style(
206
+ 'pa-notice-css',
207
+ PREMIUM_ADDONS_URL . 'admin/assets/css/notice' . $suffix . '.css',
208
+ array(),
209
+ PREMIUM_ADDONS_VERSION,
210
+ 'all'
211
+ );
212
+
213
+ if ( strpos( $current_screen, $this->page_slug ) !== false ) {
214
+
215
+ wp_enqueue_style(
216
+ 'pa-admin-css',
217
+ PREMIUM_ADDONS_URL . 'admin/assets/css/admin' . $suffix . '.css',
218
+ array(),
219
+ PREMIUM_ADDONS_VERSION,
220
+ 'all'
221
+ );
222
+
223
+ wp_enqueue_style(
224
+ 'pa-sweetalert-style',
225
+ PREMIUM_ADDONS_URL . 'admin/assets/js/sweetalert2/sweetalert2.min.css',
226
+ array(),
227
+ PREMIUM_ADDONS_VERSION,
228
+ 'all'
229
+ );
230
+
231
+ wp_enqueue_script(
232
+ 'pa-admin',
233
+ PREMIUM_ADDONS_URL . 'admin/assets/js/admin.js',
234
+ array( 'jquery' ),
235
+ PREMIUM_ADDONS_VERSION,
236
+ true
237
+ );
238
+
239
+ wp_enqueue_script(
240
+ 'pa-sweetalert-core',
241
+ PREMIUM_ADDONS_URL . 'admin/assets/js/sweetalert2/core.js',
242
+ array( 'jquery' ),
243
+ PREMIUM_ADDONS_VERSION,
244
+ true
245
+ );
246
+
247
+ wp_enqueue_script(
248
+ 'pa-sweetalert',
249
+ PREMIUM_ADDONS_URL . 'admin/assets/js/sweetalert2/sweetalert2.min.js',
250
+ array( 'jquery', 'pa-sweetalert-core' ),
251
+ PREMIUM_ADDONS_VERSION,
252
+ true
253
+ );
254
+
255
+ $theme_slug = Helper_Functions::get_installed_theme();
256
+
257
+ $localized_data = array(
258
+ 'settings' => array(
259
+ 'ajaxurl' => admin_url( 'admin-ajax.php' ),
260
+ 'nonce' => wp_create_nonce( 'pa-settings-tab' ),
261
+ 'theme' => $theme_slug,
262
+ 'isTrackerAllowed' => 'yes' === get_option( 'elementor_allow_tracking', 'no' ) ? true : false,
263
+ ),
264
+ 'premiumRollBackConfirm' => array(
265
+ 'home_url' => home_url(),
266
+ 'i18n' => array(
267
+ 'rollback_to_previous_version' => __( 'Rollback to Previous Version', 'premium-addons-for-elementor' ),
268
+ /* translators: %s: PA stable version */
269
+ 'rollback_confirm' => sprintf( __( 'Are you sure you want to reinstall version %s?', 'premium-addons-for-elementor' ), PREMIUM_ADDONS_STABLE_VERSION ),
270
+ 'yes' => __( 'Continue', 'premium-addons-for-elementor' ),
271
+ 'cancel' => __( 'Cancel', 'premium-addons-for-elementor' ),
272
+ ),
273
+ ),
274
+ );
275
+
276
+ // Add PAPRO Rollback Confirm message if PAPRO installed.
277
+ if ( Helper_Functions::check_papro_version() ) {
278
+ /* translators: %s: PA stable version */
279
+ $localized_data['premiumRollBackConfirm']['i18n']['papro_rollback_confirm'] = sprintf( __( 'Are you sure you want to reinstall version %s?', 'premium-addons-for-elementor' ), PREMIUM_ADDONS_STABLE_VERSION );
280
+ }
281
+
282
+ wp_localize_script( 'pa-admin', 'premiumAddonsSettings', $localized_data );
283
+
284
+ }
285
+ }
286
+
287
+ /**
288
+ * Insert action links.
289
+ *
290
+ * Adds action links to the plugin list table
291
+ *
292
+ * Fired by `plugin_action_links` filter.
293
+ *
294
+ * @param array $links plugin action links.
295
+ *
296
+ * @since 1.0.0
297
+ * @access public
298
+ */
299
+ public function insert_action_links( $links ) {
300
+
301
+ $papro_path = 'premium-addons-pro/premium-addons-pro-for-elementor.php';
302
+
303
+ $is_papro_installed = Helper_Functions::is_plugin_installed( $papro_path );
304
+
305
+ $settings_link = sprintf( '<a href="%1$s">%2$s</a>', admin_url( 'admin.php?page=' . $this->page_slug . '#tab=elements' ), __( 'Settings', 'premium-addons-for-elementor' ) );
306
+
307
+ $rollback_link = sprintf( '<a href="%1$s">%2$s %3$s</a>', wp_nonce_url( admin_url( 'admin-post.php?action=premium_addons_rollback' ), 'premium_addons_rollback' ), __( 'Rollback to Version ', 'premium-addons-for-elementor' ), PREMIUM_ADDONS_STABLE_VERSION );
308
+
309
+ $new_links = array( $settings_link, $rollback_link );
310
+
311
+ if ( ! $is_papro_installed ) {
312
+
313
+ $link = Helper_Functions::get_campaign_link( 'https://premiumaddons.com/pro', 'plugins-page', 'wp-dash', 'get-pro' );
314
+
315
+ $pro_link = sprintf( '<a href="%s" target="_blank" style="color: #FF6000; font-weight: bold;">%s</a>', $link, __( 'Go Pro', 'premium-addons-for-elementor' ) );
316
+ array_push( $new_links, $pro_link );
317
+ }
318
+
319
+ $new_links = array_merge( $links, $new_links );
320
+
321
+ return $new_links;
322
+ }
323
+
324
+ /**
325
+ * Plugin row meta.
326
+ *
327
+ * Extends plugin row meta links
328
+ *
329
+ * Fired by `plugin_row_meta` filter.
330
+ *
331
+ * @since 3.8.4
332
+ * @access public
333
+ *
334
+ * @param array $meta array of the plugin's metadata.
335
+ * @param string $file path to the plugin file.
336
+ *
337
+ * @return array An array of plugin row meta links.
338
+ */
339
+ public function plugin_row_meta( $meta, $file ) {
340
+
341
+ if ( Helper_Functions::is_hide_row_meta() ) {
342
+ return $meta;
343
+ }
344
+
345
+ if ( PREMIUM_ADDONS_BASENAME === $file ) {
346
+
347
+ $link = Helper_Functions::get_campaign_link( 'https://premiumaddons.com/support', 'plugins-page', 'wp-dash', 'get-support' );
348
+
349
+ $row_meta = array(
350
+ 'docs' => '<a href="' . esc_attr( $link ) . '" aria-label="' . esc_attr( __( 'View Premium Addons for Elementor Documentation', 'premium-addons-for-elementor' ) ) . '" target="_blank">' . __( 'Docs & FAQs', 'premium-addons-for-elementor' ) . '</a>',
351
+ 'videos' => '<a href="https://www.youtube.com/watch?v=D3INxWw_jKI&list=PLLpZVOYpMtTArB4hrlpSnDJB36D2sdoTv" aria-label="' . esc_attr( __( 'View Premium Addons Video Tutorials', 'premium-addons-for-elementor' ) ) . '" target="_blank">' . __( 'Video Tutorials', 'premium-addons-for-elementor' ) . '</a>',
352
+ );
353
+
354
+ $meta = array_merge( $meta, $row_meta );
355
+ }
356
+
357
+ return $meta;
358
+
359
+ }
360
+
361
+ /**
362
+ * Gets current screen slug
363
+ *
364
+ * @since 3.3.8
365
+ * @access public
366
+ *
367
+ * @return string current screen slug
368
+ */
369
+ public static function get_current_screen() {
370
+
371
+ self::$current_screen = get_current_screen()->id;
372
+
373
+ return isset( self::$current_screen ) ? self::$current_screen : false;
374
+
375
+ }
376
+
377
+ /**
378
+ * Set Admin Tabs
379
+ *
380
+ * @access private
381
+ * @since 3.20.8
382
+ */
383
+ private function set_admin_tabs() {
384
+
385
+ $slug = $this->page_slug;
386
+
387
+ self::$tabs = array(
388
+ 'general' => array(
389
+ 'id' => 'general',
390
+ 'slug' => $slug . '#tab=general',
391
+ 'title' => __( 'General', 'premium-addons-for-elementor' ),
392
+ 'href' => '#tab=general',
393
+ 'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/general',
394
+ ),
395
+ 'elements' => array(
396
+ 'id' => 'elements',
397
+ 'slug' => $slug . '#tab=elements',
398
+ 'title' => __( 'Widgets & Add-ons', 'premium-addons-for-elementor' ),
399
+ 'href' => '#tab=elements',
400
+ 'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/modules-settings',
401
+ ),
402
+ 'features' => array(
403
+ 'id' => 'features',
404
+ 'slug' => $slug . '#tab=features',
405
+ 'title' => __( 'Global Features', 'premium-addons-for-elementor' ),
406
+ 'href' => '#tab=features',
407
+ 'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/features',
408
+ ),
409
+ 'integrations' => array(
410
+ 'id' => 'integrations',
411
+ 'slug' => $slug . '#tab=integrations',
412
+ 'title' => __( 'Integrations', 'premium-addons-for-elementor' ),
413
+ 'href' => '#tab=integrations',
414
+ 'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/integrations',
415
+ ),
416
+ 'version-control' => array(
417
+ 'id' => 'vcontrol',
418
+ 'slug' => $slug . '#tab=vcontrol',
419
+ 'title' => __( 'Version Control', 'premium-addons-for-elementor' ),
420
+ 'href' => '#tab=vcontrol',
421
+ 'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/version-control',
422
+ ),
423
+ 'white-label' => array(
424
+ 'id' => 'white-label',
425
+ 'slug' => $slug . '#tab=white-label',
426
+ 'title' => __( 'White Labeling', 'premium-addons-for-elementor' ),
427
+ 'href' => '#tab=white-label',
428
+ 'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/white-label',
429
+ ),
430
+ 'info' => array(
431
+ 'id' => 'system-info',
432
+ 'slug' => $slug . '#tab=system-info',
433
+ 'title' => __( 'System Info', 'premium-addons-for-elementor' ),
434
+ 'href' => '#tab=system-info',
435
+ 'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/info',
436
+ ),
437
+ );
438
+
439
+ self::$tabs = apply_filters( 'pa_admin_register_tabs', self::$tabs );
440
+
441
+ }
442
+
443
+ /**
444
+ * Add Menu Tabs
445
+ *
446
+ * Create Submenu Page
447
+ *
448
+ * @since 3.20.9
449
+ * @access public
450
+ *
451
+ * @return void
452
+ */
453
+ public function add_menu_tabs() {
454
+
455
+ $plugin_name = Helper_Functions::name();
456
+
457
+ call_user_func(
458
+ 'add_menu_page',
459
+ $plugin_name,
460
+ $plugin_name,
461
+ 'manage_options',
462
+ $this->page_slug,
463
+ array( $this, 'render_setting_tabs' ),
464
+ '',
465
+ 100
466
+ );
467
+
468
+ foreach ( self::$tabs as $tab ) {
469
+
470
+ call_user_func(
471
+ 'add_submenu_page',
472
+ $this->page_slug,
473
+ $tab['title'],
474
+ $tab['title'],
475
+ 'manage_options',
476
+ $tab['slug'],
477
+ '__return_null'
478
+ );
479
+ }
480
+
481
+ remove_submenu_page( $this->page_slug, $this->page_slug );
482
+ }
483
+
484
+ /**
485
+ * Render Setting Tabs
486
+ *
487
+ * Render the final HTML content for admin setting tabs
488
+ *
489
+ * @access public
490
+ * @since 3.20.8
491
+ */
492
+ public function render_setting_tabs() {
493
+
494
+ ?>
495
+ <div class="pa-settings-wrap">
496
+ <?php do_action( 'pa_before_render_admin_tabs' ); ?>
497
+ <div class="pa-settings-tabs">
498
+ <ul class="pa-settings-tabs-list">
499
+ <?php
500
+ foreach ( self::$tabs as $key => $tab ) {
501
+ $link = '<li class="pa-settings-tab">';
502
+ $link .= '<a id="pa-tab-link-' . esc_attr( $tab['id'] ) . '"';
503
+ $link .= ' href="' . esc_url( $tab['href'] ) . '">';
504
+ $link .= '<i class="pa-dash-' . esc_attr( $tab['id'] ) . '"></i>';
505
+ $link .= '<span>' . esc_html( $tab['title'] ) . '</span>';
506
+ $link .= '</a>';
507
+ $link .= '</li>';
508
+
509
+ echo $link;
510
+ }
511
+ ?>
512
+ </ul>
513
+ </div> <!-- Settings Tabs -->
514
+
515
+ <div class="pa-settings-sections">
516
+ <?php
517
+ foreach ( self::$tabs as $key => $tab ) {
518
+ echo wp_kses_post( '<div id="pa-section-' . $tab['id'] . '" class="pa-section pa-section-' . $key . '">' );
519
+ include_once $tab['template'] . '.php';
520
+ echo '</div>';
521
+ }
522
+ ?>
523
+ </div> <!-- Settings Sections -->
524
+ <?php do_action( 'pa_after_render_admin_tabs' ); ?>
525
+ </div> <!-- Settings Wrap -->
526
+ <?php
527
+ }
528
+
529
+ /**
530
+ * Render Dashboard Header
531
+ *
532
+ * @since 4.0.0
533
+ * @access public
534
+ */
535
+ public function render_dashboard_header() {
536
+
537
+ $url = Helper_Functions::get_campaign_link( 'https://premiumaddons.com/pro/', 'settings-page', 'wp-dash', 'dashboard' );
538
+
539
+ $show_logo = Helper_Functions::is_hide_logo();
540
+
541
+ ?>
542
+
543
+ <div class="papro-admin-notice">
544
+ <?php if ( ! $show_logo ) : ?>
545
+ <div class="papro-admin-notice-left">
546
+ <div class="papro-admin-notice-logo">
547
+ <img class="pa-notice-logo" src="<?php echo esc_attr( PREMIUM_ADDONS_URL . 'admin/images/papro-notice-logo.png' ); ?>">
548
+ </div>
549
+ <a href="https://premiumaddons.com" target="_blank"></a>
550
+ </div>
551
+ <?php endif; ?>
552
+
553
+ <?php if ( ! Helper_Functions::check_papro_version() ) : ?>
554
+ <div class="papro-admin-notice-right">
555
+ <div class="papro-admin-notice-info">
556
+ <h4>
557
+ <?php echo esc_html( __( 'Get Premium Addons PRO', 'premium-addons-for-elementor' ) ); ?>
558
+ </h4>
559
+ <p>
560
+ <?php
561
+ /* translators: %s: html tags */
562
+ echo wp_kses_post( sprintf( __( 'Supercharge your Elementor with %1$sPRO Widgets & Addons%2$s that you won\'t find anywhere else.', 'premium-addons-for-elementor' ), '<span>', '</span>' ) );
563
+ ?>
564
+ </p>
565
+ </div>
566
+ <div class="papro-admin-notice-cta">
567
+ <a class="papro-notice-btn" href="<?php echo esc_url( $url ); ?>" target="_blank">
568
+ <?php echo esc_html( __( 'Get PRO', 'premium-addons-for-elementor' ) ); ?>
569
+ </a>
570
+ </div>
571
+ </div>
572
+ <?php endif; ?>
573
+ </div>
574
+
575
+ <?php
576
+ }
577
+
578
+ /**
579
+ * Save Settings
580
+ *
581
+ * Save elements settings using AJAX
582
+ *
583
+ * @access public
584
+ * @since 3.20.8
585
+ */
586
+ public function save_settings() {
587
+
588
+ check_ajax_referer( 'pa-settings-tab', 'security' );
589
+
590
+ if ( ! isset( $_POST['fields'] ) ) {
591
+ return;
592
+ }
593
+
594
+ parse_str( sanitize_text_field( $_POST['fields'] ), $settings );
595
+
596
+ $defaults = self::get_default_elements();
597
+
598
+ $elements = array_fill_keys( array_keys( array_intersect_key( $settings, $defaults ) ), true );
599
+
600
+ update_option( 'pa_save_settings', $elements );
601
+
602
+ wp_send_json_success();
603
+ }
604
+
605
+ /**
606
+ * Save Integrations Control Settings
607
+ *
608
+ * Stores integration and version control settings
609
+ *
610
+ * @since 3.20.8
611
+ * @access public
612
+ */
613
+ public function save_additional_settings() {
614
+
615
+ check_ajax_referer( 'pa-settings-tab', 'security' );
616
+
617
+ if ( ! isset( $_POST['fields'] ) ) {
618
+ return;
619
+ }
620
+
621
+ parse_str( sanitize_text_field( $_POST['fields'] ), $settings );
622
+
623
+ $new_settings = array(
624
+ 'premium-map-api' => sanitize_text_field( $settings['premium-map-api'] ),
625
+ 'premium-youtube-api' => sanitize_text_field( $settings['premium-youtube-api'] ),
626
+ 'premium-map-disable-api' => intval( $settings['premium-map-disable-api'] ? 1 : 0 ),
627
+ 'premium-map-cluster' => intval( $settings['premium-map-cluster'] ? 1 : 0 ),
628
+ 'premium-map-locale' => sanitize_text_field( $settings['premium-map-locale'] ),
629
+ 'is-beta-tester' => intval( $settings['is-beta-tester'] ? 1 : 0 ),
630
+ );
631
+
632
+ update_option( 'pa_maps_save_settings', $new_settings );
633
+
634
+ wp_send_json_success( $settings );
635
+
636
+ }
637
+
638
+ /**
639
+ * Save Global Button Value
640
+ *
641
+ * Saves value for elements global switcher
642
+ *
643
+ * @since 4.0.0
644
+ * @access public
645
+ */
646
+ public function save_global_btn_value() {
647
+
648
+ check_ajax_referer( 'pa-settings-tab', 'security' );
649
+
650
+ if ( ! isset( $_POST['isGlobalOn'] ) ) {
651
+ wp_send_json_error();
652
+ }
653
+
654
+ $global_btn_value = sanitize_text_field( $_POST['isGlobalOn'] );
655
+
656
+ update_option( 'pa_global_btn_value', $global_btn_value );
657
+
658
+ wp_send_json_success();
659
+
660
+ }
661
+
662
+ /**
663
+ * Get default Elements
664
+ *
665
+ * @since 3.20.9
666
+ * @access private
667
+ *
668
+ * @return $default_keys array keys defaults
669
+ */
670
+ private static function get_default_elements() {
671
+
672
+ $elements = self::get_elements_list();
673
+
674
+ $keys = array();
675
+
676
+ // Now, we need to fill our array with elements keys.
677
+ foreach ( $elements as $cat ) {
678
+ if ( count( $cat['elements'] ) ) {
679
+ foreach ( $cat['elements'] as $elem ) {
680
+ array_push( $keys, $elem['key'] );
681
+ }
682
+ }
683
+ }
684
+
685
+ $default_keys = array_fill_keys( $keys, true );
686
+
687
+ return $default_keys;
688
+
689
+ }
690
+
691
+ /**
692
+ * Get Pro Elements.
693
+ * Return PAPRO Widgets.
694
+ *
695
+ * @since 4.5.3
696
+ * @access public
697
+ *
698
+ * @return array
699
+ */
700
+ public static function get_pro_elements() {
701
+
702
+ $elements = self::get_elements_list();
703
+
704
+ $pro_elements = array();
705
+
706
+ $all_elements = $elements['cat-1'];
707
+
708
+ if ( count( $all_elements['elements'] ) ) {
709
+ foreach ( $all_elements['elements'] as $elem ) {
710
+ if ( isset( $elem['is_pro'] ) && ! isset( $elem['is_global'] ) ) {
711
+ array_push( $pro_elements, $elem );
712
+ }
713
+ }
714
+ }
715
+
716
+ return $pro_elements;
717
+ }
718
+
719
+ /**
720
+ * Get PA Free Elements.
721
+ * Return PA Widgets.
722
+ *
723
+ * @since 4.6.1
724
+ * @access public
725
+ *
726
+ * @return array
727
+ */
728
+ public static function get_free_widgets_names() {
729
+
730
+ $elements = self::get_elements_list()['cat-1']['elements'];
731
+
732
+ $pa_elements = array();
733
+
734
+ if ( count( $elements ) ) {
735
+ foreach ( $elements as $elem ) {
736
+ if ( ! isset( $elem['is_pro'] ) && ! isset( $elem['is_global'] ) && isset( $elem['name'] ) ) {
737
+ array_push( $pa_elements, $elem['name'] );
738
+ }
739
+ }
740
+ }
741
+
742
+ return $pa_elements;
743
+ }
744
+
745
+ /**
746
+ * Get Global Elements Switchers.
747
+ * Construct an associative array of addon_switcher => 'yes' pairs
748
+ * Example :
749
+ * + array( 'premium_gradient_switcher' => yes').
750
+ *
751
+ * @since 4.6.1
752
+ * @access public
753
+ *
754
+ * @return array
755
+ */
756
+ public static function get_global_elements_switchers() {
757
+
758
+ $elements = self::get_elements_list()['cat-4'];
759
+
760
+ $global_elems = array();
761
+
762
+ if ( count( $elements['elements'] ) ) {
763
+ foreach ( $elements['elements'] as $elem ) {
764
+ if ( isset( $elem['is_pro'] ) && isset( $elem['is_global'] ) ) {
765
+ $global_elems[ str_replace( '-', '_', $elem['key'] ) . '_switcher' ] = 'yes';
766
+ }
767
+ }
768
+ }
769
+
770
+ return $global_elems;
771
+ }
772
+
773
+ /**
774
+ * Get Default Interations
775
+ *
776
+ * @since 3.20.9
777
+ * @access private
778
+ *
779
+ * @return $default_keys array default keys
780
+ */
781
+ private static function get_default_integrations() {
782
+
783
+ $settings = self::get_integrations_list();
784
+
785
+ $default_keys = array_fill_keys( $settings, true );
786
+
787
+ // Beta Tester should NOT be enabled by default.
788
+ $default_keys['is-beta-tester'] = false;
789
+
790
+ return $default_keys;
791
+
792
+ }
793
+
794
+ /**
795
+ * Get enabled widgets
796
+ *
797
+ * @since 3.20.9
798
+ * @access public
799
+ *
800
+ * @return array $enabled_keys enabled elements
801
+ */
802
+ public static function get_enabled_elements() {
803
+
804
+ $defaults = self::get_default_elements();
805
+
806
+ $enabled_keys = get_option( 'pa_save_settings', $defaults );
807
+
808
+ foreach ( $defaults as $key => $value ) {
809
+ if ( ! isset( $enabled_keys[ $key ] ) ) {
810
+ $defaults[ $key ] = 0;
811
+ }
812
+ }
813
+
814
+ return $defaults;
815
+
816
+ }
817
+
818
+ /**
819
+ * Check If Premium Templates is enabled
820
+ *
821
+ * @since 3.6.0
822
+ * @access public
823
+ *
824
+ * @return boolean
825
+ */
826
+ public static function check_premium_templates() {
827
+
828
+ $settings = self::get_enabled_elements();
829
+
830
+ if ( ! isset( $settings['premium-templates'] ) ) {
831
+ return true;
832
+ }
833
+
834
+ $is_enabled = $settings['premium-templates'];
835
+
836
+ return $is_enabled;
837
+ }
838
+
839
+
840
+ /**
841
+ * Check If Premium Duplicator is enabled
842
+ *
843
+ * @since 3.20.9
844
+ * @access public
845
+ *
846
+ * @return boolean
847
+ */
848
+ public static function check_duplicator() {
849
+
850
+ $settings = self::get_enabled_elements();
851
+
852
+ if ( ! isset( $settings['premium-duplicator'] ) ) {
853
+ return true;
854
+ }
855
+
856
+ $is_enabled = $settings['premium-duplicator'];
857
+
858
+ return $is_enabled;
859
+ }
860
+
861
+ /**
862
+ * Get Integrations Settings
863
+ *
864
+ * Get plugin integrations settings
865
+ *
866
+ * @since 3.20.9
867
+ * @access public
868
+ *
869
+ * @return array $settings integrations settings
870
+ */
871
+ public static function get_integrations_settings() {
872
+
873
+ $enabled_keys = get_option( 'pa_maps_save_settings', self::get_default_integrations() );
874
+
875
+ return $enabled_keys;
876
+
877
+ }
878
+
879
+ /**
880
+ * Run PA Rollback
881
+ *
882
+ * Trigger PA Rollback actions
883
+ *
884
+ * @since 4.2.5
885
+ * @access public
886
+ */
887
+ public function run_pa_rollback() {
888
+
889
+ check_admin_referer( 'premium_addons_rollback' );
890
+
891
+ $plugin_slug = basename( PREMIUM_ADDONS_FILE, '.php' );
892
+
893
+ $pa_rollback = new PA_Rollback(
894
+ array(
895
+ 'version' => PREMIUM_ADDONS_STABLE_VERSION,
896
+ 'plugin_name' => PREMIUM_ADDONS_BASENAME,
897
+ 'plugin_slug' => $plugin_slug,
898
+ 'package_url' => sprintf( 'https://downloads.wordpress.org/plugin/%s.%s.zip', $plugin_slug, PREMIUM_ADDONS_STABLE_VERSION ),
899
+ )
900
+ );
901
+
902
+ $pa_rollback->run();
903
+
904
+ wp_die(
905
+ '',
906
+ esc_html( __( 'Rollback to Previous Version', 'premium-addons-for-elementor' ) ),
907
+ array(
908
+ 'response' => 200,
909
+ )
910
+ );
911
+
912
+ }
913
+
914
+ /**
915
+ * Disable unused widgets.
916
+ *
917
+ * @access public
918
+ * @since 4.5.8
919
+ */
920
+ public function get_unused_widgets() {
921
+
922
+ check_ajax_referer( 'pa-settings-tab', 'security' );
923
+
924
+ if ( ! current_user_can( 'install_plugins' ) ) {
925
+ wp_send_json_error();
926
+ }
927
+
928
+ $pa_elements = self::get_pa_elements_names();
929
+
930
+ $used_widgets = self::get_used_widgets();
931
+
932
+ $unused_widgets = array_diff( $pa_elements, array_keys( $used_widgets ) );
933
+
934
+ wp_send_json_success( $unused_widgets );
935
+
936
+ }
937
+
938
+ /**
939
+ * Clear Cached Assets.
940
+ * Deletes assets options from DB And
941
+ * deletes assets files from uploads/premium-addons-for-elementor
942
+ * diretory.
943
+ *
944
+ * @access public
945
+ * @since 4.6.1
946
+ */
947
+ public function clear_cached_assets() {
948
+
949
+ check_ajax_referer( 'pa-settings-tab', 'security' );
950
+
951
+ if ( ! current_user_can( 'manage_options' ) ) {
952
+ wp_send_json_error( __( 'You are not allowed to do this action', 'essential-addons-for-elementor-lite' ) );
953
+ }
954
+
955
+ $this->delete_assets_options();
956
+ $this->delete_assets_files();
957
+
958
+ wp_send_json_success( 'Cached Assets Cleared' );
959
+ }
960
+
961
+ /**
962
+ * Delete Assets Options.
963
+ *
964
+ * @access public
965
+ * @since 4.6.1
966
+ */
967
+ public function delete_assets_options() {
968
+
969
+ global $wpdb;
970
+ $wpdb->query( "DELETE FROM $wpdb->options WHERE option_name LIKE '%pa_elements_%' OR option_name LIKE '%pa_edit_%' AND autoload = 'no'" );
971
+ }
972
+
973
+ /**
974
+ * Delete Assets Files.
975
+ *
976
+ * @access public
977
+ * @since 4.6.1
978
+ */
979
+ public function delete_assets_files() {
980
+
981
+ $path = PREMIUM_ASSETS_PATH;
982
+
983
+ if ( ! is_dir( $path ) || ! file_exists( $path ) ) {
984
+ return;
985
+ }
986
+
987
+ foreach ( scandir( $path ) as $file ) {
988
+ if ( $file == '.' || $file == '..' ) {
989
+ continue;
990
+ }
991
+
992
+ unlink( Helper_Functions::get_safe_path( $path . DIRECTORY_SEPARATOR . $file ) );
993
+ }
994
+
995
+ }
996
+
997
+ /**
998
+ * Get PA widget names.
999
+ *
1000
+ * @access public
1001
+ * @since 4.5.8
1002
+ *
1003
+ * @return array
1004
+ */
1005
+ public static function get_pa_elements_names() {
1006
+
1007
+ $names = self::$elements_names;
1008
+
1009
+ if ( null === $names ) {
1010
+
1011
+ $names = array_map(
1012
+ function( $item ) {
1013
+ return isset( $item['name'] ) ? $item['name'] : 'global';
1014
+ },
1015
+ self::get_elements_list()['cat-1']['elements']
1016
+ );
1017
+
1018
+ $names = array_filter(
1019
+ $names,
1020
+ function( $name ) {
1021
+ return 'global' !== $name;
1022
+ }
1023
+ );
1024
+
1025
+ }
1026
+
1027
+ return $names;
1028
+ }
1029
+
1030
+ /**
1031
+ * Get used widgets.
1032
+ *
1033
+ * @access public
1034
+ * @since 4.5.8
1035
+ *
1036
+ * @return array
1037
+ */
1038
+ public static function get_used_widgets() {
1039
+
1040
+ $used_widgets = array();
1041
+ $tracker_allowed = 'yes' === get_option( 'elementor_allow_tracking' ) ? true : false;
1042
+
1043
+ if ( ! $tracker_allowed ) {
1044
+ return false;
1045
+ }
1046
+
1047
+ if ( class_exists( 'Elementor\Modules\Usage\Module' ) ) {
1048
+
1049
+ $module = Module::instance();
1050
+ $elements = $module->get_formatted_usage( 'raw' );
1051
+
1052
+ $pa_elements = self::get_pa_elements_names();
1053
+
1054
+ if ( is_array( $elements ) || is_object( $elements ) ) {
1055
+
1056
+ foreach ( $elements as $post_type => $data ) {
1057
+
1058
+ foreach ( $data['elements'] as $element => $count ) {
1059
+
1060
+ if ( in_array( $element, $pa_elements, true ) ) {
1061
+
1062
+ if ( isset( $used_widgets[ $element ] ) ) {
1063
+ $used_widgets[ $element ] += $count;
1064
+ } else {
1065
+ $used_widgets[ $element ] = $count;
1066
+ }
1067
+ }
1068
+ }
1069
+ }
1070
+ }
1071
+ }
1072
+
1073
+ return $used_widgets;
1074
+ }
1075
+
1076
+ /**
1077
+ * Subscribe Newsletter
1078
+ *
1079
+ * Adds an email to Premium Addons subscribers list
1080
+ *
1081
+ * @since 4.7.0
1082
+ *
1083
+ * @access public
1084
+ */
1085
+ public function subscribe_newsletter() {
1086
+
1087
+ check_ajax_referer( 'pa-settings-tab', 'security' );
1088
+
1089
+ if ( ! self::check_user_can( 'manage_options' ) ) {
1090
+ wp_send_json_error();
1091
+ }
1092
+
1093
+ $email = isset( $_POST['email'] ) ? $_POST['email'] : '';
1094
+
1095
+ $api_url = 'https://premiumaddons.com/wp-json/mailchimp/v2/add';
1096
+
1097
+ $request = add_query_arg(
1098
+ array(
1099
+ 'email' => $email,
1100
+ ),
1101
+ $api_url
1102
+ );
1103
+
1104
+ $response = wp_remote_get(
1105
+ $request,
1106
+ array(
1107
+ 'timeout' => 60,
1108
+ 'sslverify' => true,
1109
+ )
1110
+ );
1111
+
1112
+ $body = wp_remote_retrieve_body( $response );
1113
+ $body = json_decode( $body, true );
1114
+
1115
+ wp_send_json_success( $body );
1116
+
1117
+ }
1118
+
1119
+ /**
1120
+ * Get PA News
1121
+ *
1122
+ * Gets a list of the latest three blog posts
1123
+ *
1124
+ * @since 4.7.0
1125
+ *
1126
+ * @access public
1127
+ */
1128
+ public function get_pa_news() {
1129
+
1130
+ $posts = get_transient( 'pa_news' );
1131
+
1132
+ if ( empty( $posts ) ) {
1133
+
1134
+ $api_url = 'https://premiumaddons.com/wp-json/wp/v2/posts';
1135
+
1136
+ $request = add_query_arg(
1137
+ array(
1138
+ 'per_page' => 3,
1139
+ ),
1140
+ $api_url
1141
+ );
1142
+
1143
+ $response = wp_remote_get(
1144
+ $request,
1145
+ array(
1146
+ 'timeout' => 60,
1147
+ 'sslverify' => true,
1148
+ )
1149
+ );
1150
+
1151
+ $body = wp_remote_retrieve_body( $response );
1152
+ $posts = json_decode( $body, true );
1153
+
1154
+ set_transient( 'pa_news', $posts, WEEK_IN_SECONDS );
1155
+
1156
+ }
1157
+
1158
+ return $posts;
1159
+
1160
+ }
1161
+
1162
+ /**
1163
+ * Creates and returns an instance of the class
1164
+ *
1165
+ * @since 1.0.0
1166
+ * @access public
1167
+ *
1168
+ * @return object
1169
+ */
1170
+ public static function get_instance() {
1171
+
1172
+ if ( ! isset( self::$instance ) ) {
1173
+
1174
+ self::$instance = new self();
1175
+
1176
+ }
1177
+
1178
+ return self::$instance;
1179
+ }
1180
+ }
admin/includes/admin-notices.php CHANGED
@@ -1,405 +1,405 @@
1
- <?php
2
- /**
3
- * PA Admin Notices.
4
- */
5
-
6
- namespace PremiumAddons\Admin\Includes;
7
-
8
- use PremiumAddons\Includes\Helper_Functions;
9
-
10
- if ( ! defined( 'ABSPATH' ) ) {
11
- exit();
12
- }
13
-
14
- /**
15
- * Class Admin_Notices
16
- */
17
- class Admin_Notices {
18
-
19
- /**
20
- * Class object
21
- *
22
- * @var instance
23
- */
24
- private static $instance = null;
25
-
26
- /**
27
- * Elementor slug
28
- *
29
- * @var elementor
30
- */
31
- private static $elementor = 'elementor';
32
-
33
- /**
34
- * PAPRO Slug
35
- *
36
- * @var papro
37
- */
38
- private static $papro = 'premium-addons-pro';
39
-
40
- /**
41
- * Notices Keys
42
- *
43
- * @var notices
44
- */
45
- private static $notices = null;
46
-
47
- /**
48
- * Constructor for the class
49
- */
50
- public function __construct() {
51
-
52
- add_action( 'admin_init', array( $this, 'init' ) );
53
-
54
- add_action( 'admin_notices', array( $this, 'admin_notices' ) );
55
-
56
- add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
57
-
58
- add_action( 'wp_ajax_pa_reset_admin_notice', array( $this, 'reset_admin_notice' ) );
59
-
60
- add_action( 'wp_ajax_pa_dismiss_admin_notice', array( $this, 'dismiss_admin_notice' ) );
61
-
62
- self::$notices = array(
63
- 'pa-review',
64
- 'badge_notice',
65
- );
66
-
67
- delete_option( 'woo_notice' );
68
-
69
- }
70
-
71
- /**
72
- * Init
73
- *
74
- * Init required functions
75
- *
76
- * @since 1.0.0
77
- * @access public
78
- */
79
- public function init() {
80
-
81
- $this->handle_review_notice();
82
-
83
- }
84
-
85
- /**
86
- * init notices check functions
87
- */
88
- public function admin_notices() {
89
-
90
- $this->required_plugins_check();
91
-
92
- $cache_key = 'premium_notice_' . PREMIUM_ADDONS_VERSION;
93
-
94
- $response = get_transient( $cache_key );
95
-
96
- $show_review = get_option( 'pa_review_notice' );
97
-
98
- // Make sure Already did was not clicked before.
99
- if ( '1' !== $show_review ) {
100
- if ( false == $response ) {
101
- $this->get_review_notice();
102
- }
103
- }
104
-
105
- $this->get_badge_notice();
106
-
107
- }
108
-
109
- /**
110
- * Handle Review Notice
111
- *
112
- * Checks if review message is dismissed.
113
- *
114
- * @access public
115
- * @return void
116
- */
117
- public function handle_review_notice() {
118
-
119
- if ( ! isset( $_GET['pa_review'] ) ) {
120
- return;
121
- }
122
-
123
- if ( 'opt_out' === $_GET['pa_review'] ) {
124
- check_admin_referer( 'opt_out' );
125
-
126
- update_option( 'pa_review_notice', '1' );
127
- }
128
-
129
- wp_safe_redirect( remove_query_arg( 'pa_review' ) );
130
-
131
- exit;
132
- }
133
-
134
- /**
135
- * Required plugin check
136
- *
137
- * Shows an admin notice when Elementor is missing.
138
- *
139
- * @since 1.0.0
140
- * @access public
141
- */
142
- public function required_plugins_check() {
143
-
144
- $elementor_path = sprintf( '%1$s/%1$s.php', self::$elementor );
145
-
146
- if ( ! defined( 'ELEMENTOR_VERSION' ) ) {
147
-
148
- if ( ! Helper_Functions::is_plugin_installed( $elementor_path ) ) {
149
-
150
- if ( Admin_Helper::check_user_can( 'install_plugins' ) ) {
151
-
152
- $install_url = wp_nonce_url( self_admin_url( sprintf( 'update.php?action=install-plugin&plugin=%s', self::$elementor ) ), 'install-plugin_elementor' );
153
-
154
- $message = sprintf( '<p>%s</p>', __( 'Premium Addons for Elementor is not working because you need to Install Elementor plugin.', 'premium-addons-for-elementor' ) );
155
-
156
- $message .= sprintf( '<p><a href="%s" class="button-primary">%s</a></p>', $install_url, __( 'Install Now', 'premium-addons-for-elementor' ) );
157
-
158
- }
159
- } else {
160
-
161
- if ( Admin_Helper::check_user_can( 'activate_plugins' ) ) {
162
-
163
- $activation_url = wp_nonce_url( 'plugins.php?action=activate&amp;plugin=' . $elementor_path . '&amp;plugin_status=all&amp;paged=1&amp;s', 'activate-plugin_' . $elementor_path );
164
-
165
- $message = '<p>' . __( 'Premium Addons for Elementor is not working because you need to activate Elementor plugin.', 'premium-addons-for-elementor' ) . '</p>';
166
-
167
- $message .= '<p>' . sprintf( '<a href="%s" class="button-primary">%s</a>', $activation_url, __( 'Activate Now', 'premium-addons-for-elementor' ) ) . '</p>';
168
-
169
- }
170
- }
171
- $this->render_admin_notices( $message );
172
- }
173
- }
174
-
175
- /**
176
- * Get Review Text
177
- *
178
- * Gets admin review notice HTML.
179
- *
180
- * @since 2.8.4
181
- * @access public
182
- *
183
- * @param string $review_url plugin page.
184
- * @param string $optout_url redirect url.
185
- */
186
- public function get_review_text( $review_url, $optout_url ) {
187
-
188
- $notice = sprintf(
189
- '<p>' . __( 'Can we take only 2 minutes of your time? We would be really grateful it if you give ', 'premium-addons-for-elementor' ) .
190
- '<b>' . __( 'Premium Addons for Elementor', 'premium-addons-for-elementor' ) . '</b> a 5 Stars Rating on WordPress.org. By speading the love, we can create even greater free stuff in the future!</p>
191
- <div>
192
- <a class="button button-primary" href="%s" target="_blank"><span>' . __( 'Sure, leave a Review', 'premium-addons-for-elementor' ) . '</span></a>
193
- <a class="button" href="%2$s"><span>' . __( 'I Already Did', 'premium-addons-for-elementor' ) . '</span></a>
194
- <a class="button button-secondary pa-notice-reset"><span>' . __( 'Maybe Later', 'premium-addons-for-elementor' ) . '</span></a>
195
- </div>',
196
- $review_url,
197
- $optout_url
198
- );
199
-
200
- return $notice;
201
- }
202
-
203
- /**
204
- * Checks if review admin notice is dismissed
205
- *
206
- * @since 2.6.8
207
- * @return void
208
- */
209
- public function get_review_notice() {
210
-
211
- $review_url = 'https://wordpress.org/support/plugin/premium-addons-for-elementor/reviews/?filter=5';
212
-
213
- $optout_url = wp_nonce_url( add_query_arg( 'pa_review', 'opt_out' ), 'opt_out' );
214
- ?>
215
-
216
- <div class="error pa-notice-wrap pa-review-notice" data-notice="pa-review">
217
- <div class="pa-img-wrap">
218
- <img src="<?php echo esc_url( PREMIUM_ADDONS_URL . 'admin/images/pa-logo-symbol.png' ); ?>">
219
- </div>
220
- <div class="pa-text-wrap">
221
- <?php echo wp_kses_post( $this->get_review_text( $review_url, $optout_url ) ); ?>
222
- </div>
223
- <div class="pa-notice-close">
224
- <a href="<?php echo esc_url( $optout_url ); ?>"><span class="dashicons dashicons-dismiss"></span></a>
225
- </div>
226
- </div>
227
-
228
- <?php
229
-
230
- }
231
-
232
- /**
233
- *
234
- * Shows admin notice for Premium Badge Addon.
235
- *
236
- * @since 4.8.8
237
- * @access public
238
- *
239
- * @return void
240
- */
241
- public function get_badge_notice() {
242
-
243
- $badge_notice = get_option( 'badge_notice' );
244
-
245
- if ( '1' === $badge_notice ) {
246
- return;
247
- }
248
-
249
- $notice_url = Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-badge-global-addon', 'badge-notification', 'wp-dash', 'badge' );
250
-
251
- ?>
252
-
253
- <div class="error pa-notice-wrap pa-new-feature-notice">
254
- <div class="pa-img-wrap">
255
- <img src="<?php echo PREMIUM_ADDONS_URL . 'admin/images/pa-logo-symbol.png'; ?>">
256
- </div>
257
- <div class="pa-text-wrap">
258
- <p>
259
- <strong><?php echo __( 'Premium Badge Global Addon', 'premium-addons-for-elemetor' ); ?></strong>
260
- <?php echo sprintf( __( 'is now available in Premium Addons Pro. <a href="%s" target="_blank">Check it out now!</a>', 'premium-addons-for-elementor' ), $notice_url ); ?>
261
- </p>
262
- </div>
263
- <div class="pa-notice-close" data-notice="badge">
264
- <span class="dashicons dashicons-dismiss"></span>
265
- </div>
266
- </div>
267
-
268
- <?php
269
- }
270
-
271
-
272
-
273
- /**
274
- * Renders an admin notice error message
275
- *
276
- * @since 1.0.0
277
- * @access private
278
- *
279
- * @param string $message notice text.
280
- * @param string $class notice class.
281
- * @param string $handle notice handle.
282
- *
283
- * @return void
284
- */
285
- private function render_admin_notices( $message, $class = '', $handle = '' ) {
286
- ?>
287
- <div class="error pa-new-feature-notice <?php echo esc_attr( $class ); ?>" data-notice="<?php echo esc_attr( $handle ); ?>">
288
- <?php echo wp_kses_post( $message ); ?>
289
- </div>
290
- <?php
291
- }
292
-
293
- /**
294
- * Register admin scripts
295
- *
296
- * @since 3.2.8
297
- * @access public
298
- */
299
- public function admin_enqueue_scripts() {
300
-
301
- wp_enqueue_script(
302
- 'pa-notice',
303
- PREMIUM_ADDONS_URL . 'admin/assets/js/pa-notice.js',
304
- array( 'jquery' ),
305
- PREMIUM_ADDONS_VERSION,
306
- true
307
- );
308
-
309
- wp_localize_script(
310
- 'pa-notice',
311
- 'PaNoticeSettings',
312
- array(
313
- 'ajaxurl' => esc_url( admin_url( 'admin-ajax.php' ) ),
314
- 'nonce' => wp_create_nonce( 'pa-notice-nonce' ),
315
- )
316
- );
317
-
318
- }
319
-
320
- /**
321
- * Set transient for admin notice
322
- *
323
- * @since 3.2.8
324
- * @access public
325
- *
326
- * @return void
327
- */
328
- public function reset_admin_notice() {
329
-
330
- check_ajax_referer( 'pa-notice-nonce', 'nonce' );
331
-
332
- if ( ! Admin_Helper::check_user_can( 'manage_options' ) ) {
333
- wp_send_json_error();
334
- }
335
-
336
- $key = isset( $_POST['notice'] ) ? sanitize_text_field( wp_unslash( $_POST['notice'] ) ) : '';
337
-
338
- if ( ! empty( $key ) && in_array( $key, self::$notices, true ) ) {
339
-
340
- $cache_key = 'premium_notice_' . PREMIUM_ADDONS_VERSION;
341
-
342
- set_transient( $cache_key, true, WEEK_IN_SECONDS );
343
-
344
- wp_send_json_success();
345
-
346
- } else {
347
-
348
- wp_send_json_error();
349
-
350
- }
351
-
352
- }
353
-
354
- /**
355
- * Dismiss admin notice
356
- *
357
- * @since 3.11.7
358
- * @access public
359
- *
360
- * @return void
361
- */
362
- public function dismiss_admin_notice() {
363
-
364
- check_ajax_referer( 'pa-notice-nonce', 'nonce' );
365
-
366
- if ( ! current_user_can( 'manage_options' ) ) {
367
- wp_send_json_error();
368
- }
369
-
370
- $key = isset( $_POST['notice'] ) ? sanitize_text_field( wp_unslash( $_POST['notice'] ) ) : '';
371
-
372
- if ( ! empty( $key ) && in_array( $key, self::$notices, true ) ) {
373
-
374
- update_option( $key, '1' );
375
-
376
- wp_send_json_success();
377
-
378
- } else {
379
-
380
- wp_send_json_error();
381
-
382
- }
383
-
384
- }
385
-
386
- /**
387
- * Creates and returns an instance of the class
388
- *
389
- * @since 2.8.4
390
- * @access public
391
- *
392
- * @return object
393
- */
394
- public static function get_instance() {
395
-
396
- if ( ! isset( self::$instance ) ) {
397
-
398
- self::$instance = new self();
399
-
400
- }
401
-
402
- return self::$instance;
403
- }
404
-
405
- }
1
+ <?php
2
+ /**
3
+ * PA Admin Notices.
4
+ */
5
+
6
+ namespace PremiumAddons\Admin\Includes;
7
+
8
+ use PremiumAddons\Includes\Helper_Functions;
9
+
10
+ if ( ! defined( 'ABSPATH' ) ) {
11
+ exit();
12
+ }
13
+
14
+ /**
15
+ * Class Admin_Notices
16
+ */
17
+ class Admin_Notices {
18
+
19
+ /**
20
+ * Class object
21
+ *
22
+ * @var instance
23
+ */
24
+ private static $instance = null;
25
+
26
+ /**
27
+ * Elementor slug
28
+ *
29
+ * @var elementor
30
+ */
31
+ private static $elementor = 'elementor';
32
+
33
+ /**
34
+ * PAPRO Slug
35
+ *
36
+ * @var papro
37
+ */
38
+ private static $papro = 'premium-addons-pro';
39
+
40
+ /**
41
+ * Notices Keys
42
+ *
43
+ * @var notices
44
+ */
45
+ private static $notices = null;
46
+
47
+ /**
48
+ * Constructor for the class
49
+ */
50
+ public function __construct() {
51
+
52
+ add_action( 'admin_init', array( $this, 'init' ) );
53
+
54
+ add_action( 'admin_notices', array( $this, 'admin_notices' ) );
55
+
56
+ add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
57
+
58
+ add_action( 'wp_ajax_pa_reset_admin_notice', array( $this, 'reset_admin_notice' ) );
59
+
60
+ add_action( 'wp_ajax_pa_dismiss_admin_notice', array( $this, 'dismiss_admin_notice' ) );
61
+
62
+ self::$notices = array(
63
+ 'pa-review',
64
+ 'badge_notice',
65
+ );
66
+
67
+ delete_option( 'woo_notice' );
68
+
69
+ }
70
+
71
+ /**
72
+ * Init
73
+ *
74
+ * Init required functions
75
+ *
76
+ * @since 1.0.0
77
+ * @access public
78
+ */
79
+ public function init() {
80
+
81
+ $this->handle_review_notice();
82
+
83
+ }
84
+
85
+ /**
86
+ * init notices check functions
87
+ */
88
+ public function admin_notices() {
89
+
90
+ $this->required_plugins_check();
91
+
92
+ $cache_key = 'premium_notice_' . PREMIUM_ADDONS_VERSION;
93
+
94
+ $response = get_transient( $cache_key );
95
+
96
+ $show_review = get_option( 'pa_review_notice' );
97
+
98
+ // Make sure Already did was not clicked before.
99
+ if ( '1' !== $show_review ) {
100
+ if ( false == $response ) {
101
+ $this->get_review_notice();
102
+ }
103
+ }
104
+
105
+ $this->get_badge_notice();
106
+
107
+ }
108
+
109
+ /**
110
+ * Handle Review Notice
111
+ *
112
+ * Checks if review message is dismissed.
113
+ *
114
+ * @access public
115
+ * @return void
116
+ */
117
+ public function handle_review_notice() {
118
+
119
+ if ( ! isset( $_GET['pa_review'] ) ) {
120
+ return;
121
+ }
122
+
123
+ if ( 'opt_out' === $_GET['pa_review'] ) {
124
+ check_admin_referer( 'opt_out' );
125
+
126
+ update_option( 'pa_review_notice', '1' );
127
+ }
128
+
129
+ wp_safe_redirect( remove_query_arg( 'pa_review' ) );
130
+
131
+ exit;
132
+ }
133
+
134
+ /**
135
+ * Required plugin check
136
+ *
137
+ * Shows an admin notice when Elementor is missing.
138
+ *
139
+ * @since 1.0.0
140
+ * @access public
141
+ */
142
+ public function required_plugins_check() {
143
+
144
+ $elementor_path = sprintf( '%1$s/%1$s.php', self::$elementor );
145
+
146
+ if ( ! defined( 'ELEMENTOR_VERSION' ) ) {
147
+
148
+ if ( ! Helper_Functions::is_plugin_installed( $elementor_path ) ) {
149
+
150
+ if ( Admin_Helper::check_user_can( 'install_plugins' ) ) {
151
+
152
+ $install_url = wp_nonce_url( self_admin_url( sprintf( 'update.php?action=install-plugin&plugin=%s', self::$elementor ) ), 'install-plugin_elementor' );
153
+
154
+ $message = sprintf( '<p>%s</p>', __( 'Premium Addons for Elementor is not working because you need to Install Elementor plugin.', 'premium-addons-for-elementor' ) );
155
+
156
+ $message .= sprintf( '<p><a href="%s" class="button-primary">%s</a></p>', $install_url, __( 'Install Now', 'premium-addons-for-elementor' ) );
157
+
158
+ }
159
+ } else {
160
+
161
+ if ( Admin_Helper::check_user_can( 'activate_plugins' ) ) {
162
+
163
+ $activation_url = wp_nonce_url( 'plugins.php?action=activate&amp;plugin=' . $elementor_path . '&amp;plugin_status=all&amp;paged=1&amp;s', 'activate-plugin_' . $elementor_path );
164
+
165
+ $message = '<p>' . __( 'Premium Addons for Elementor is not working because you need to activate Elementor plugin.', 'premium-addons-for-elementor' ) . '</p>';
166
+
167
+ $message .= '<p>' . sprintf( '<a href="%s" class="button-primary">%s</a>', $activation_url, __( 'Activate Now', 'premium-addons-for-elementor' ) ) . '</p>';
168
+
169
+ }
170
+ }
171
+ $this->render_admin_notices( $message );
172
+ }
173
+ }
174
+
175
+ /**
176
+ * Get Review Text
177
+ *
178
+ * Gets admin review notice HTML.
179
+ *
180
+ * @since 2.8.4
181
+ * @access public
182
+ *
183
+ * @param string $review_url plugin page.
184
+ * @param string $optout_url redirect url.
185
+ */
186
+ public function get_review_text( $review_url, $optout_url ) {
187
+
188
+ $notice = sprintf(
189
+ '<p>' . __( 'Can we take only 2 minutes of your time? We would be really grateful it if you give ', 'premium-addons-for-elementor' ) .
190
+ '<b>' . __( 'Premium Addons for Elementor', 'premium-addons-for-elementor' ) . '</b> a 5 Stars Rating on WordPress.org. By speading the love, we can create even greater free stuff in the future!</p>
191
+ <div>
192
+ <a class="button button-primary" href="%s" target="_blank"><span>' . __( 'Sure, leave a Review', 'premium-addons-for-elementor' ) . '</span></a>
193
+ <a class="button" href="%2$s"><span>' . __( 'I Already Did', 'premium-addons-for-elementor' ) . '</span></a>
194
+ <a class="button button-secondary pa-notice-reset"><span>' . __( 'Maybe Later', 'premium-addons-for-elementor' ) . '</span></a>
195
+ </div>',
196
+ $review_url,
197
+ $optout_url
198
+ );
199
+
200
+ return $notice;
201
+ }
202
+
203
+ /**
204
+ * Checks if review admin notice is dismissed
205
+ *
206
+ * @since 2.6.8
207
+ * @return void
208
+ */
209
+ public function get_review_notice() {
210
+
211
+ $review_url = 'https://wordpress.org/support/plugin/premium-addons-for-elementor/reviews/?filter=5';
212
+
213
+ $optout_url = wp_nonce_url( add_query_arg( 'pa_review', 'opt_out' ), 'opt_out' );
214
+ ?>
215
+
216
+ <div class="error pa-notice-wrap pa-review-notice" data-notice="pa-review">
217
+ <div class="pa-img-wrap">
218
+ <img src="<?php echo esc_url( PREMIUM_ADDONS_URL . 'admin/images/pa-logo-symbol.png' ); ?>">
219
+ </div>
220
+ <div class="pa-text-wrap">
221
+ <?php echo wp_kses_post( $this->get_review_text( $review_url, $optout_url ) ); ?>
222
+ </div>
223
+ <div class="pa-notice-close">
224
+ <a href="<?php echo esc_url( $optout_url ); ?>"><span class="dashicons dashicons-dismiss"></span></a>
225
+ </div>
226
+ </div>
227
+
228
+ <?php
229
+
230
+ }
231
+
232
+ /**
233
+ *
234
+ * Shows admin notice for Premium Badge Addon.
235
+ *
236
+ * @since 4.8.8
237
+ * @access public
238
+ *
239
+ * @return void
240
+ */
241
+ public function get_badge_notice() {
242
+
243
+ $badge_notice = get_option( 'badge_notice' );
244
+
245
+ if ( '1' === $badge_notice ) {
246
+ return;
247
+ }
248
+
249
+ $notice_url = Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-badge-global-addon', 'badge-notification', 'wp-dash', 'badge' );
250
+
251
+ ?>
252
+
253
+ <div class="error pa-notice-wrap pa-new-feature-notice">
254
+ <div class="pa-img-wrap">
255
+ <img src="<?php echo PREMIUM_ADDONS_URL . 'admin/images/pa-logo-symbol.png'; ?>">
256
+ </div>
257
+ <div class="pa-text-wrap">
258
+ <p>
259
+ <strong><?php echo __( 'Premium Badge Global Addon', 'premium-addons-for-elemetor' ); ?></strong>
260
+ <?php echo sprintf( __( 'is now available in Premium Addons Pro. <a href="%s" target="_blank">Check it out now!</a>', 'premium-addons-for-elementor' ), $notice_url ); ?>
261
+ </p>
262
+ </div>
263
+ <div class="pa-notice-close" data-notice="badge">
264
+ <span class="dashicons dashicons-dismiss"></span>
265
+ </div>
266
+ </div>
267
+
268
+ <?php
269
+ }
270
+
271
+
272
+
273
+ /**
274
+ * Renders an admin notice error message
275
+ *
276
+ * @since 1.0.0
277
+ * @access private
278
+ *
279
+ * @param string $message notice text.
280
+ * @param string $class notice class.
281
+ * @param string $handle notice handle.
282
+ *
283
+ * @return void
284
+ */
285
+ private function render_admin_notices( $message, $class = '', $handle = '' ) {
286
+ ?>
287
+ <div class="error pa-new-feature-notice <?php echo esc_attr( $class ); ?>" data-notice="<?php echo esc_attr( $handle ); ?>">
288
+ <?php echo wp_kses_post( $message ); ?>
289
+ </div>
290
+ <?php
291
+ }
292
+
293
+ /**
294
+ * Register admin scripts
295
+ *
296
+ * @since 3.2.8
297
+ * @access public
298
+ */
299
+ public function admin_enqueue_scripts() {
300
+
301
+ wp_enqueue_script(
302
+ 'pa-notice',
303
+ PREMIUM_ADDONS_URL . 'admin/assets/js/pa-notice.js',
304
+ array( 'jquery' ),
305
+ PREMIUM_ADDONS_VERSION,
306
+ true
307
+ );
308
+
309
+ wp_localize_script(
310
+ 'pa-notice',
311
+ 'PaNoticeSettings',
312
+ array(
313
+ 'ajaxurl' => esc_url( admin_url( 'admin-ajax.php' ) ),
314
+ 'nonce' => wp_create_nonce( 'pa-notice-nonce' ),
315
+ )
316
+ );
317
+
318
+ }
319
+
320
+ /**
321
+ * Set transient for admin notice
322
+ *
323
+ * @since 3.2.8
324
+ * @access public
325
+ *
326
+ * @return void
327
+ */
328
+ public function reset_admin_notice() {
329
+
330
+ check_ajax_referer( 'pa-notice-nonce', 'nonce' );
331
+
332
+ if ( ! Admin_Helper::check_user_can( 'manage_options' ) ) {
333
+ wp_send_json_error();
334
+ }
335
+
336
+ $key = isset( $_POST['notice'] ) ? sanitize_text_field( wp_unslash( $_POST['notice'] ) ) : '';
337
+
338
+ if ( ! empty( $key ) && in_array( $key, self::$notices, true ) ) {
339
+
340
+ $cache_key = 'premium_notice_' . PREMIUM_ADDONS_VERSION;
341
+
342
+ set_transient( $cache_key, true, WEEK_IN_SECONDS );
343
+
344
+ wp_send_json_success();
345
+
346
+ } else {
347
+
348
+ wp_send_json_error();
349
+
350
+ }
351
+
352
+ }
353
+
354
+ /**
355
+ * Dismiss admin notice
356
+ *
357
+ * @since 3.11.7
358
+ * @access public
359
+ *
360
+ * @return void
361
+ */
362
+ public function dismiss_admin_notice() {
363
+
364
+ check_ajax_referer( 'pa-notice-nonce', 'nonce' );
365
+
366
+ if ( ! current_user_can( 'manage_options' ) ) {
367
+ wp_send_json_error();
368
+ }
369
+
370
+ $key = isset( $_POST['notice'] ) ? sanitize_text_field( wp_unslash( $_POST['notice'] ) ) : '';
371
+
372
+ if ( ! empty( $key ) && in_array( $key, self::$notices, true ) ) {
373
+
374
+ update_option( $key, '1' );
375
+
376
+ wp_send_json_success();
377
+
378
+ } else {
379
+
380
+ wp_send_json_error();
381
+
382
+ }
383
+
384
+ }
385
+
386
+ /**
387
+ * Creates and returns an instance of the class
388
+ *
389
+ * @since 2.8.4
390
+ * @access public
391
+ *
392
+ * @return object
393
+ */
394
+ public static function get_instance() {
395
+
396
+ if ( ! isset( self::$instance ) ) {
397
+
398
+ self::$instance = new self();
399
+
400
+ }
401
+
402
+ return self::$instance;
403
+ }
404
+
405
+ }
admin/includes/elements.php CHANGED
@@ -1,1112 +1,1112 @@
1
- <?php
2
- /**
3
- * PA Elements.
4
- */
5
-
6
- use PremiumAddons\Includes\Helper_Functions;
7
-
8
- $prefix = Helper_Functions::get_prefix();
9
-
10
- $elements = array(
11
- 'cat-1' => array(
12
- 'icon' => 'all',
13
- 'title' => __( 'All Widgets', 'premium-addons-for-elementor' ),
14
- 'elements' => array(
15
- array(
16
- 'key' => 'premium-lottie-widget',
17
- 'name' => 'premium-lottie',
18
- 'title' => __( 'Lottie Animations', 'premium-addons-for-elementor' ),
19
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-lottie-animations-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
20
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/lottie-animations-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
21
- 'tutorial' => 'https://www.youtube.com/watch?v=0QWzUpF57dw',
22
- ),
23
- array(
24
- 'key' => 'premium-carousel',
25
- 'name' => 'premium-carousel-widget',
26
- 'title' => __( 'Carousel', 'premium-addons-for-elementor' ),
27
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/carousel-widget-for-elementor-page-builder', 'settings-page', 'wp-dash', 'dashboard' ),
28
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/carousel/', 'settings-page', 'wp-dash', 'dashboard' ),
29
- 'tutorial' => 'https://www.youtube.com/watch?v=ZMgprLKvq24',
30
- ),
31
- array(
32
- 'key' => 'premium-blog',
33
- 'name' => 'premium-addon-blog',
34
- 'title' => __( 'Blog', 'premium-addons-for-elementor' ),
35
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/blog-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
36
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/blog/', 'settings-page', 'wp-dash', 'dashboard' ),
37
- ),
38
- array(
39
- 'key' => 'premium-maps',
40
- 'name' => 'premium-addon-maps',
41
- 'title' => __( 'Google Maps', 'premium-addons-for-elementor' ),
42
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/google-maps-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
43
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/google-maps/', 'settings-page', 'wp-dash', 'dashboard' ),
44
- 'tutorial' => 'https://www.youtube.com/watch?v=z4taEeCY77Q',
45
- ),
46
- array(
47
- 'key' => 'premium-person',
48
- 'name' => 'premium-addon-person',
49
- 'title' => __( 'Team Members', 'premium-addons-for-elementor' ),
50
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/persons-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
51
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/persons-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
52
- ),
53
- array(
54
- 'key' => 'premium-tabs',
55
- 'name' => 'premium-addon-tabs',
56
- 'title' => __( 'Tabs', 'premium-addons-for-elementor' ),
57
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-tabs-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
58
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/tabs-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
59
- 'is_pro' => true,
60
- 'icon' => 'pa-pro-tabs',
61
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-tabs-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
62
- ),
63
- array(
64
- 'key' => 'premium-content-toggle',
65
- 'name' => 'premium-addon-content-toggle',
66
- 'title' => __( 'Content Switcher', 'premium-addons-for-elementor' ),
67
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/content-switcher-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
68
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-content-switcher/', 'settings-page', 'wp-dash', 'dashboard' ),
69
- 'is_pro' => true,
70
- 'icon' => 'pa-pro-content-switcher',
71
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/content-switcher-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
72
- ),
73
- array(
74
- 'key' => 'premium-fancytext',
75
- 'name' => 'premium-addon-fancy-text',
76
- 'title' => __( 'Fancy Text', 'premium-addons-for-elementor' ),
77
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/fancy-text-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
78
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/fancy-text-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
79
- ),
80
- array(
81
- 'key' => 'premium-title',
82
- 'name' => 'premium-addon-title',
83
- 'title' => __( 'Heading', 'premium-addons-for-elementor' ),
84
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/heading-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
85
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/heading-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
86
- ),
87
- array(
88
- 'key' => 'premium-dual-header',
89
- 'name' => 'premium-addon-dual-header',
90
- 'title' => __( 'Dual Heading', 'premium-addons-for-elementor' ),
91
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/dual-header-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
92
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/dual-heading-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
93
- ),
94
- array(
95
- 'key' => 'premium-divider',
96
- 'name' => 'premium-divider',
97
- 'title' => __( 'Divider', 'premium-addons-for-elementor' ),
98
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/divider-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
99
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/divider-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
100
- 'is_pro' => true,
101
- 'icon' => 'pa-pro-separator',
102
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/divider-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
103
- ),
104
- array(
105
- 'key' => 'premium-grid',
106
- 'name' => 'premium-img-gallery',
107
- 'title' => __( 'Media Grid', 'premium-addons-for-elementor' ),
108
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/grid-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
109
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/grid/', 'settings-page', 'wp-dash', 'dashboard' ),
110
- ),
111
- array(
112
- 'key' => 'premium-image-scroll',
113
- 'name' => 'premium-image-scroll',
114
- 'title' => __( 'Image Scroll', 'premium-addons-for-elementor' ),
115
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-image-scroll-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
116
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-scroll-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
117
- ),
118
- array(
119
- 'key' => 'premium-image-separator',
120
- 'name' => 'premium-addon-image-separator',
121
- 'title' => __( 'Image Separator', 'premium-addons-for-elementor' ),
122
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-separator-widget-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
123
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-separator-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
124
- ),
125
- array(
126
- 'key' => 'premium-image-comparison',
127
- 'name' => 'premium-addon-image-comparison',
128
- 'title' => __( 'Image Comparison', 'premium-addons-for-elementor' ),
129
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-comparison-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
130
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-image-comparison-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
131
- 'is_pro' => true,
132
- 'icon' => 'pa-pro-image-comparison',
133
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-comparison-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
134
- ),
135
- array(
136
- 'key' => 'premium-image-hotspots',
137
- 'name' => 'premium-addon-image-hotspots',
138
- 'title' => __( 'Image Hotspots', 'premium-addons-for-elementor' ),
139
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-hotspots-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
140
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-hotspots-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
141
- 'is_pro' => true,
142
- 'icon' => 'pa-pro-hot-spot',
143
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-hotspots-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
144
- ),
145
- array(
146
- 'key' => 'premium-img-layers',
147
- 'name' => 'premium-img-layers-addon',
148
- 'title' => __( 'Image Layers', 'premium-addons-for-elementor' ),
149
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-layers-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
150
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/image-layers/', 'settings-page', 'wp-dash', 'dashboard' ),
151
- 'tutorial' => 'https://www.youtube.com/watch?v=D3INxWw_jKI',
152
- 'is_pro' => true,
153
- 'icon' => 'pa-pro-image-layers',
154
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-layers-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
155
- ),
156
- array(
157
- 'key' => 'premium-image-accordion',
158
- 'name' => 'premium-image-accordion',
159
- 'title' => __( 'Image Accordion', 'premium-addons-for-elementor' ),
160
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-image-accordion-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
161
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-accordion-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
162
- 'is_pro' => true,
163
- 'icon' => 'pa-pro-image-accordion',
164
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-image-accordion-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
165
- ),
166
- array(
167
- 'key' => 'premium-videobox',
168
- 'name' => 'premium-addon-video-box',
169
- 'title' => __( 'Video Box', 'premium-addons-for-elementor' ),
170
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/video-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
171
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/video-box/', 'settings-page', 'wp-dash', 'dashboard' ),
172
- ),
173
- array(
174
- 'key' => 'premium-hscroll',
175
- 'name' => 'premium-hscroll',
176
- 'title' => __( 'Horizontal Scroll', 'premium-addons-for-elementor' ),
177
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-horizontal-scroll-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
178
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/horizontal-scroll/', 'settings-page', 'wp-dash', 'dashboard' ),
179
- 'tutorial' => 'https://www.youtube.com/watch?v=4HqT_3s-ZXg',
180
- 'is_pro' => true,
181
- 'icon' => 'pa-pro-horizontal-scroll',
182
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-horizontal-scroll-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
183
- ),
184
- array(
185
- 'key' => 'premium-vscroll',
186
- 'name' => 'premium-vscroll',
187
- 'title' => __( 'Vertical Scroll', 'premium-addons-for-elementor' ),
188
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/vertical-scroll-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
189
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/vertical-scroll-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
190
- 'tutorial' => 'https://www.youtube.com/watch?v=MuLaIn1QXfQ',
191
- ),
192
- array(
193
- 'key' => 'premium-color-transition',
194
- 'name' => 'premium-color-transition',
195
- 'title' => __( 'Background Transition', 'premium-addons-for-elementor' ),
196
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-background-transition-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
197
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/background-transition-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
198
- 'is_pro' => true,
199
- 'icon' => 'pa-pro-color-transition',
200
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-background-transition-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
201
- ),
202
- array(
203
- 'key' => 'premium-multi-scroll',
204
- 'name' => 'premium-multi-scroll',
205
- 'title' => __( 'Multi Scroll', 'premium-addons-for-elementor' ),
206
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/multi-scroll-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
207
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/multi-scroll-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
208
- 'tutorial' => 'https://www.youtube.com/watch?v=IzYnD6oDYXw',
209
- 'is_pro' => true,
210
- 'icon' => 'pa-pro-multi-scroll',
211
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/multi-scroll-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
212
- ),
213
- array(
214
- 'key' => 'premium-lottie',
215
- 'title' => __( 'Lottie Animations', 'premium-addons-for-elementor' ),
216
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-lottie-animations-section-addon/', 'settings-page', 'wp-dash', 'dashboard' ),
217
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/lottie-background/', 'settings-page', 'wp-dash', 'dashboard' ),
218
- 'tutorial' => 'https://www.youtube.com/watch?v=KVrenWNEdkY',
219
- 'is_pro' => true,
220
- 'is_global' => true,
221
- ),
222
- array(
223
- 'key' => 'premium-parallax',
224
- 'title' => __( 'Parallax', 'premium-addons-for-elementor' ),
225
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/parallax-section-addon-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
226
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/parallax-section-addon-tutorial-2/', 'settings-page', 'wp-dash', 'dashboard' ),
227
- 'tutorial' => 'https://www.youtube.com/watch?v=hkMNjxLoZ2w',
228
- 'is_pro' => true,
229
- 'is_global' => true,
230
- ),
231
- array(
232
- 'key' => 'premium-particles',
233
- 'title' => __( 'Particles', 'premium-addons-for-elementor' ),
234
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/particles-section-addon-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
235
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/particles/', 'settings-page', 'wp-dash', 'dashboard' ),
236
- 'tutorial' => 'https://www.youtube.com/watch?v=bPmWKv4VWrI',
237
- 'is_pro' => true,
238
- 'is_global' => true,
239
- ),
240
- array(
241
- 'key' => 'premium-gradient',
242
- 'title' => __( 'Animated Gradient', 'premium-addons-for-elementor' ),
243
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/animated-section-gradients-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
244
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/animated-gradient-section-addon-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
245
- 'tutorial' => 'https://www.youtube.com/watch?v=IL4USvwR6K4',
246
- 'is_pro' => true,
247
- 'is_global' => true,
248
- ),
249
- array(
250
- 'key' => 'premium-kenburns',
251
- 'title' => __( 'Animated Ken Burns', 'premium-addons-for-elementor' ),
252
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/ken-burns-section-addon-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
253
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/ken-burns-section-addon-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
254
- 'tutorial' => 'https://www.youtube.com/watch?v=DUNFjWphZfs',
255
- 'is_pro' => true,
256
- 'is_global' => true,
257
- ),
258
- array(
259
- 'key' => 'premium-blob',
260
- 'title' => __( 'Blob Generator', 'premium-addons-for-elementor' ),
261
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-animated-blob-generator/', 'settings-page', 'wp-dash', 'dashboard' ),
262
- 'is_pro' => true,
263
- 'is_global' => true,
264
- ),
265
- array(
266
- 'key' => 'premium-modalbox',
267
- 'name' => 'premium-addon-modal-box',
268
- 'title' => __( 'Modal Box', 'premium-addons-for-elementor' ),
269
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/modal-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
270
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/modal-box/', 'settings-page', 'wp-dash', 'dashboard' ),
271
- 'tutorial' => 'https://www.youtube.com/watch?v=3lLxSyf2nyk',
272
- ),
273
- array(
274
- 'key' => 'premium-notbar',
275
- 'name' => 'premium-notbar',
276
- 'title' => __( 'Alert Box', 'premium-addons-for-elementor' ),
277
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/alert-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
278
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/alert-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
279
- 'is_pro' => true,
280
- 'icon' => 'pa-pro-notification-bar',
281
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/alert-box-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
282
- ),
283
- array(
284
- 'key' => 'premium-magic-section',
285
- 'name' => 'premium-addon-magic-section',
286
- 'title' => __( 'Magic Section', 'premium-addons-for-elementor' ),
287
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/magic-section-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
288
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/magic-section-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
289
- 'is_pro' => true,
290
- 'icon' => 'pa-pro-magic-section',
291
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/magic-section-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
292
- ),
293
- array(
294
- 'key' => 'premium-prev-img',
295
- 'name' => 'premium-addon-preview-image',
296
- 'title' => __( 'Preview Window', 'premium-addons-for-elementor' ),
297
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/preview-window-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
298
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/preview-window-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
299
- 'tutorial' => 'https://www.youtube.com/watch?v=EmptjFjrc4E',
300
- 'is_pro' => true,
301
- 'icon' => 'pa-pro-preview-window',
302
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/preview-window-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
303
- ),
304
- array(
305
- 'key' => 'premium-testimonials',
306
- 'name' => 'premium-addon-testimonials',
307
- 'title' => __( 'Testimonials', 'premium-addons-for-elementor' ),
308
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/testimonials-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
309
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/testimonials-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
310
- ),
311
- array(
312
- 'key' => 'premium-facebook-reviews',
313
- 'name' => 'premium-facebook-reviews',
314
- 'title' => __( 'Facebook Reviews', 'premium-addons-for-elementor' ),
315
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/facebook-reviews-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
316
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/facebook-reviews/', 'settings-page', 'wp-dash', 'dashboard' ),
317
- 'tutorial' => 'https://www.youtube.com/watch?v=zl-OFo3IFd8',
318
- 'is_pro' => true,
319
- 'icon' => 'pa-pro-facebook-reviews',
320
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/facebook-reviews-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
321
- ),
322
- array(
323
- 'key' => 'premium-google-reviews',
324
- 'name' => 'premium-google-reviews',
325
- 'title' => __( 'Google Reviews', 'premium-addons-for-elementor' ),
326
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/google-reviews-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
327
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/google-reviews/', 'settings-page', 'wp-dash', 'dashboard' ),
328
- 'tutorial' => 'https://www.youtube.com/watch?v=Z0EeGyD34Zk',
329
- 'is_pro' => true,
330
- 'icon' => 'pa-pro-google-reviews',
331
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/google-reviews-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
332
- ),
333
- array(
334
- 'key' => 'premium-yelp-reviews',
335
- 'name' => 'premium-yelp-reviews',
336
- 'title' => __( 'Yelp Reviews', 'premium-addons-for-elementor' ),
337
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-yelp-reviews-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
338
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/yelp-reviews/', 'settings-page', 'wp-dash', 'dashboard' ),
339
- 'tutorial' => 'https://www.youtube.com/watch?v=5T-MveVFvns',
340
- 'is_pro' => true,
341
- 'icon' => 'pa-pro-yelp-reviews',
342
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-yelp-reviews-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
343
- ),
344
- array(
345
- 'key' => 'premium-trustpilot-reviews',
346
- 'name' => 'premium-trustpilot-reviews',
347
- 'title' => __( 'Trustpilot Reviews', 'premium-addons-for-elementor' ),
348
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-trustpilot-reviews-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
349
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/elementor-trustpilot-reviews-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
350
- 'is_pro' => true,
351
- 'is_new' => true,
352
- 'icon' => 'pa-pro-trust-reviews',
353
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-trustpilot-reviews-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
354
- ),
355
- array(
356
- 'key' => 'premium-countdown',
357
- 'name' => 'premium-countdown-timer',
358
- 'title' => __( 'Countdown', 'premium-addons-for-elementor' ),
359
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/countdown-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
360
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/countdown-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
361
- ),
362
- array(
363
- 'key' => 'premium-banner',
364
- 'name' => 'premium-addon-banner',
365
- 'title' => __( 'Banner', 'premium-addons-for-elementor' ),
366
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/banner-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
367
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-banner-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
368
- ),
369
- array(
370
- 'key' => 'premium-button',
371
- 'name' => 'premium-addon-button',
372
- 'title' => __( 'Button', 'premium-addons-for-elementor' ),
373
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/button-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
374
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/button/', 'settings-page', 'wp-dash', 'dashboard' ),
375
- 'tutorial' => 'https://www.youtube.com/watch?v=w4NuCUkCIV4',
376
- ),
377
- array(
378
- 'key' => 'premium-image-button',
379
- 'name' => 'premium-addon-image-button',
380
- 'title' => __( 'Image Button', 'premium-addons-for-elementor' ),
381
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-button-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
382
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/image-button/', 'settings-page', 'wp-dash', 'dashboard' ),
383
- ),
384
- array(
385
- 'key' => 'premium-flipbox',
386
- 'name' => 'premium-addon-flip-box',
387
- 'title' => __( '3D Hover Box', 'premium-addons-for-elementor' ),
388
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/3d-hover-box-flip-box-widget-for-elementor/', 'settings-page', 'wp-dash', 'dashboard' ),
389
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/flip-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
390
- 'is_pro' => true,
391
- 'icon' => 'pa-pro-flip-box',
392
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/3d-hover-box-flip-box-widget-for-elementor/', 'editor-page', 'wp-editor', 'get-pro' ),
393
- ),
394
- array(
395
- 'key' => 'premium-iconbox',
396
- 'name' => 'premium-addon-icon-box',
397
- 'title' => __( 'Icon Box', 'premium-addons-for-elementor' ),
398
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/icon-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
399
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/icon-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
400
- 'is_pro' => true,
401
- 'icon' => 'pa-pro-icon-box',
402
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/icon-box-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
403
- ),
404
- array(
405
- 'key' => 'premium-ihover',
406
- 'name' => 'premium-ihover',
407
- 'title' => __( 'iHover', 'premium-addons-for-elementor' ),
408
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/ihover-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
409
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-ihover-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
410
- 'is_pro' => true,
411
- 'icon' => 'pa-pro-ihover',
412
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/ihover-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
413
- ),
414
- array(
415
- 'key' => 'premium-unfold',
416
- 'name' => 'premium-unfold-addon',
417
- 'title' => __( 'Unfold', 'premium-addons-for-elementor' ),
418
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/unfold-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
419
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-unfold-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
420
- 'is_pro' => true,
421
- 'icon' => 'pa-pro-unfold',
422
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/unfold-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
423
- ),
424
- array(
425
- 'key' => 'premium-icon-list',
426
- 'name' => 'premium-icon-list',
427
- 'title' => __( 'Bullet List', 'premium-addons-for-elementor' ),
428
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-bullet-list-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
429
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/bullet-list-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
430
- 'tutorial' => 'https://www.youtube.com/watch?v=MPeXJiZ14sI',
431
- ),
432
- array(
433
- 'key' => 'premium-facebook-feed',
434
- 'name' => 'premium-facebook-feed',
435
- 'title' => __( 'Facebook Feed', 'premium-addons-for-elementor' ),
436
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-facebook-feed-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
437
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/facebook-feed-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
438
- 'is_pro' => true,
439
- 'icon' => 'pa-pro-facebook-feed',
440
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-facebook-feed-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
441
- ),
442
- array(
443
- 'key' => 'premium-twitter-feed',
444
- 'name' => 'premium-twitter-feed',
445
- 'title' => __( 'Twitter Feed', 'premium-addons-for-elementor' ),
446
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/twitter-feed-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
447
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/twitter-feed-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
448
- 'tutorial' => 'https://www.youtube.com/watch?v=wsurRDuR6pg',
449
- 'is_pro' => true,
450
- 'icon' => 'pa-pro-twitter-feed',
451
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/twitter-feed-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
452
- ),
453
- array(
454
- 'key' => 'premium-instagram-feed',
455
- 'name' => 'premium-addon-instagram-feed',
456
- 'title' => __( 'Instagram Feed', 'premium-addons-for-elementor' ),
457
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/instagram-feed-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
458
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/instagram-feed/', 'settings-page', 'wp-dash', 'dashboard' ),
459
- 'is_pro' => true,
460
- 'icon' => 'pa-pro-instagram-feed',
461
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/instagram-feed-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
462
- ),
463
- array(
464
- 'key' => 'premium-behance',
465
- 'name' => 'premium-behance-feed',
466
- 'title' => __( 'Behance Feed', 'premium-addons-for-elementor' ),
467
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/behance-feed-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
468
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/behance-feed-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
469
- 'tutorial' => 'https://www.youtube.com/watch?v=AXATK3oIXl0',
470
- 'is_pro' => true,
471
- 'icon' => 'pa-pro-behance-feed',
472
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/behance-feed-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
473
- ),
474
- array(
475
- 'key' => 'premium-progressbar',
476
- 'name' => 'premium-addon-progressbar',
477
- 'title' => __( 'Progress Bar', 'premium-addons-for-elementor' ),
478
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/progress-bar-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
479
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-progress-bar-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
480
- 'tutorial' => 'https://www.youtube.com/watch?v=Y7xqwhgDQJg',
481
- ),
482
- array(
483
- 'key' => 'premium-pricing-table',
484
- 'name' => 'premium-addon-pricing-table',
485
- 'title' => __( 'Pricing Table', 'premium-addons-for-elementor' ),
486
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/pricing-table-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
487
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/pricing-table-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
488
- ),
489
- array(
490
- 'key' => 'premium-charts',
491
- 'name' => 'premium-chart',
492
- 'title' => __( 'Charts', 'premium-addons-for-elementor' ),
493
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/charts-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
494
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/charts-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
495
- 'tutorial' => 'https://www.youtube.com/watch?v=lZZvslQ2UYU',
496
- 'is_pro' => true,
497
- 'icon' => 'pa-pro-charts',
498
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/charts-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
499
- ),
500
- array(
501
- 'key' => 'premium-tables',
502
- 'name' => 'premium-tables-addon',
503
- 'title' => __( 'Table', 'premium-addons-for-elementor' ),
504
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/table-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
505
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/table-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
506
- 'is_pro' => true,
507
- 'icon' => 'pa-pro-table',
508
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/table-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
509
- ),
510
- array(
511
- 'key' => 'premium-counter',
512
- 'name' => 'premium-counter',
513
- 'title' => __( 'Counter', 'premium-addons-for-elementor' ),
514
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/counter-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
515
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/counter-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
516
- ),
517
- array(
518
- 'key' => 'premium-contactform',
519
- 'name' => 'premium-contact-form',
520
- 'title' => __( 'Contact Form 7', 'premium-addons-for-elementor' ),
521
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/contact-form-7-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
522
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/contact-form-7-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
523
- ),
524
- array(
525
- 'key' => 'premium-fb-chat',
526
- 'name' => 'premium-addon-facebook-chat',
527
- 'title' => __( 'Facebook Messenger Chat', 'premium-addons-for-elementor' ),
528
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/facebook-messenger-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
529
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/facebook-messenger/', 'settings-page', 'wp-dash', 'dashboard' ),
530
- 'is_pro' => true,
531
- 'icon' => 'pa-pro-messenger-chat',
532
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/facebook-messenger-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
533
- ),
534
- array(
535
- 'key' => 'premium-whatsapp-chat',
536
- 'name' => 'premium-whatsapp-chat',
537
- 'title' => __( 'WhatsApp Chat', 'premium-addons-for-elementor' ),
538
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/whatsapp-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
539
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/whatsapp-chat-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
540
- 'is_pro' => true,
541
- 'icon' => 'pa-pro-whatsapp',
542
- 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/whatsapp-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
543
- ),
544
- array(
545
- 'key' => 'woo-products',
546
- 'title' => __( 'Woo Products', 'premium-addons-for-elementor' ),
547
- 'name' => 'premium-woo-products',
548
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-woocommerce-products/', 'settings-page', 'wp-dash', 'dashboard' ),
549
- ),
550
- ),
551
- ),
552
- 'cat-2' => array(
553
- 'icon' => 'content',
554
- 'title' => __( 'Content Widgets', 'premium-addons-for-elementor' ),
555
- 'elements' => array(
556
- array(
557
- 'key' => 'premium-carousel',
558
- 'name' => 'premium-carousel-widget',
559
- 'title' => __( 'Carousel', 'premium-addons-for-elementor' ),
560
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/carousel-widget-for-elementor-page-builder', 'settings-page', 'wp-dash', 'dashboard' ),
561
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/carousel/', 'settings-page', 'wp-dash', 'dashboard' ),
562
- 'tutorial' => 'https://www.youtube.com/watch?v=ZMgprLKvq24',
563
- ),
564
- array(
565
- 'key' => 'premium-blog',
566
- 'name' => 'premium-addon-blog',
567
- 'title' => __( 'Blog', 'premium-addons-for-elementor' ),
568
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/blog-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
569
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/blog/', 'settings-page', 'wp-dash', 'dashboard' ),
570
- ),
571
- array(
572
- 'key' => 'premium-maps',
573
- 'name' => 'premium-addon-maps',
574
- 'title' => __( 'Google Maps', 'premium-addons-for-elementor' ),
575
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/google-maps-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
576
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/google-maps/', 'settings-page', 'wp-dash', 'dashboard' ),
577
- 'tutorial' => 'https://www.youtube.com/watch?v=z4taEeCY77Q',
578
- ),
579
- array(
580
- 'key' => 'premium-person',
581
- 'name' => 'premium-addon-person',
582
- 'title' => __( 'Team Members', 'premium-addons-for-elementor' ),
583
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/persons-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
584
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/persons-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
585
- ),
586
- array(
587
- 'key' => 'premium-tabs',
588
- 'name' => 'premium-addon-tabs',
589
- 'title' => __( 'Tabs', 'premium-addons-for-elementor' ),
590
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-tabs-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
591
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/tabs-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
592
- 'is_pro' => true,
593
- ),
594
- array(
595
- 'key' => 'premium-content-toggle',
596
- 'name' => 'premium-addon-content-toggle',
597
- 'title' => __( 'Content Switcher', 'premium-addons-for-elementor' ),
598
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/content-switcher-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
599
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-content-switcher/', 'settings-page', 'wp-dash', 'dashboard' ),
600
- 'is_pro' => true,
601
- ),
602
- array(
603
- 'key' => 'premium-fancytext',
604
- 'name' => 'premium-addon-fancy-text',
605
- 'title' => __( 'Fancy Text', 'premium-addons-for-elementor' ),
606
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/fancy-text-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
607
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/fancy-text-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
608
- ),
609
- array(
610
- 'key' => 'premium-title',
611
- 'name' => 'premium-addon-title',
612
- 'title' => __( 'Heading', 'premium-addons-for-elementor' ),
613
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/heading-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
614
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/heading-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
615
- ),
616
- array(
617
- 'key' => 'premium-dual-header',
618
- 'name' => 'premium-addon-dual-header',
619
- 'title' => __( 'Dual Heading', 'premium-addons-for-elementor' ),
620
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/dual-header-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
621
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/dual-heading-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
622
- ),
623
- array(
624
- 'key' => 'premium-divider',
625
- 'name' => 'premium-divider',
626
- 'title' => __( 'Divider', 'premium-addons-for-elementor' ),
627
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/divider-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
628
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/divider-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
629
- 'is_pro' => true,
630
- ),
631
- ),
632
- ),
633
- 'cat-3' => array(
634
- 'icon' => 'images',
635
- 'title' => __( 'Image & Video Widgets', 'premium-addons-for-elementor' ),
636
- 'elements' => array(
637
- array(
638
- 'key' => 'premium-grid',
639
- 'name' => 'premium-img-gallery',
640
- 'title' => __( 'Media Grid', 'premium-addons-for-elementor' ),
641
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/grid-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
642
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/grid-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
643
- ),
644
- array(
645
- 'key' => 'premium-image-scroll',
646
- 'name' => 'premium-image-scroll',
647
- 'title' => __( 'Image Scroll', 'premium-addons-for-elementor' ),
648
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-image-scroll-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
649
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-scroll-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
650
- ),
651
- array(
652
- 'key' => 'premium-image-separator',
653
- 'name' => 'premium-addon-image-separator',
654
- 'title' => __( 'Image Separator', 'premium-addons-for-elementor' ),
655
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-separator-widget-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
656
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-separator-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
657
- ),
658
- array(
659
- 'key' => 'premium-image-comparison',
660
- 'name' => 'premium-addon-image-comparison',
661
- 'title' => __( 'Image Comparison', 'premium-addons-for-elementor' ),
662
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-comparison-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
663
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-image-comparison-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
664
- 'is_pro' => true,
665
- ),
666
- array(
667
- 'key' => 'premium-image-hotspots',
668
- 'name' => 'premium-addon-image-hotspots',
669
- 'title' => __( 'Image Hotspots', 'premium-addons-for-elementor' ),
670
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-hotspots-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
671
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-hotspots-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
672
- 'is_pro' => true,
673
- ),
674
- array(
675
- 'key' => 'premium-img-layers',
676
- 'name' => 'premium-img-layers-addon',
677
- 'title' => __( 'Image Layers', 'premium-addons-for-elementor' ),
678
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-layers-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
679
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/image-layers/', 'settings-page', 'wp-dash', 'dashboard' ),
680
- 'tutorial' => 'https://www.youtube.com/watch?v=D3INxWw_jKI',
681
- 'is_pro' => true,
682
- ),
683
- array(
684
- 'key' => 'premium-image-accordion',
685
- 'name' => 'premium-image-accordion',
686
- 'title' => __( 'Image Accordion', 'premium-addons-for-elementor' ),
687
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-image-accordion-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
688
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-accordion-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
689
- 'is_pro' => true,
690
- ),
691
- array(
692
- 'key' => 'premium-videobox',
693
- 'name' => 'premium-addon-video-box',
694
- 'title' => __( 'Video Box', 'premium-addons-for-elementor' ),
695
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/video-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
696
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/video-box/', 'settings-page', 'wp-dash', 'dashboard' ),
697
- ),
698
- ),
699
- ),
700
- 'cat-4' => array(
701
- 'icon' => 'section',
702
- 'title' => __( 'Section Addons & Widgets', 'premium-addons-for-elementor' ),
703
- 'elements' => array(
704
- array(
705
- 'key' => 'premium-hscroll',
706
- 'name' => 'premium-hscroll',
707
- 'title' => __( 'Horizontal Scroll', 'premium-addons-for-elementor' ),
708
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-horizontal-scroll-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
709
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/horizontal-scroll/', 'settings-page', 'wp-dash', 'dashboard' ),
710
- 'tutorial' => 'https://www.youtube.com/watch?v=4HqT_3s-ZXg',
711
- 'is_pro' => true,
712
- ),
713
- array(
714
- 'key' => 'premium-vscroll',
715
- 'name' => 'premium-vscroll',
716
- 'title' => __( 'Vertical Scroll', 'premium-addons-for-elementor' ),
717
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/vertical-scroll-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
718
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/vertical-scroll-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
719
- 'tutorial' => 'https://www.youtube.com/watch?v=MuLaIn1QXfQ',
720
- ),
721
- array(
722
- 'key' => 'premium-color-transition',
723
- 'name' => 'premium-color-transition',
724
- 'title' => __( 'Background Transition', 'premium-addons-for-elementor' ),
725
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-background-transition-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
726
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/background-transition-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
727
- 'is_pro' => true,
728
- ),
729
- array(
730
- 'key' => 'premium-multi-scroll',
731
- 'name' => 'premium-multi-scroll',
732
- 'title' => __( 'Multi Scroll', 'premium-addons-for-elementor' ),
733
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/multi-scroll-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
734
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/multi-scroll-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
735
- 'tutorial' => 'https://www.youtube.com/watch?v=IzYnD6oDYXw',
736
- 'is_pro' => true,
737
- ),
738
- array(
739
- 'key' => 'premium-lottie',
740
- 'title' => __( 'Lottie Animations', 'premium-addons-for-elementor' ),
741
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-lottie-animations-section-addon/', 'settings-page', 'wp-dash', 'dashboard' ),
742
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/lottie-background/', 'settings-page', 'wp-dash', 'dashboard' ),
743
- 'tutorial' => 'https://www.youtube.com/watch?v=KVrenWNEdkY',
744
- 'is_pro' => true,
745
- 'is_global' => true,
746
- ),
747
- array(
748
- 'key' => 'premium-parallax',
749
- 'title' => __( 'Parallax', 'premium-addons-for-elementor' ),
750
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/parallax-section-addon-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
751
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/parallax-section-addon-tutorial-2/', 'settings-page', 'wp-dash', 'dashboard' ),
752
- 'tutorial' => 'https://www.youtube.com/watch?v=hkMNjxLoZ2w',
753
- 'is_pro' => true,
754
- 'is_global' => true,
755
- ),
756
- array(
757
- 'key' => 'premium-particles',
758
- 'title' => __( 'Particles', 'premium-addons-for-elementor' ),
759
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/particles-section-addon-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
760
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/particles/', 'settings-page', 'wp-dash', 'dashboard' ),
761
- 'tutorial' => 'https://www.youtube.com/watch?v=bPmWKv4VWrI',
762
- 'is_pro' => true,
763
- 'is_global' => true,
764
- ),
765
- array(
766
- 'key' => 'premium-gradient',
767
- 'title' => __( 'Animated Gradient', 'premium-addons-for-elementor' ),
768
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/animated-section-gradients-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
769
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/animated-gradient-section-addon-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
770
- 'tutorial' => 'https://www.youtube.com/watch?v=IL4USvwR6K4',
771
- 'is_pro' => true,
772
- 'is_global' => true,
773
- ),
774
- array(
775
- 'key' => 'premium-kenburns',
776
- 'title' => __( 'Animated Ken Burns', 'premium-addons-for-elementor' ),
777
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/ken-burns-section-addon-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
778
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/ken-burns-section-addon-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
779
- 'tutorial' => 'https://www.youtube.com/watch?v=DUNFjWphZfs',
780
- 'is_pro' => true,
781
- 'is_global' => true,
782
- ),
783
- array(
784
- 'key' => 'premium-blob',
785
- 'title' => __( 'Blob Generator', 'premium-addons-for-elementor' ),
786
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-animated-blob-generator/', 'settings-page', 'wp-dash', 'dashboard' ),
787
- 'is_pro' => true,
788
- 'is_global' => true,
789
- ),
790
- ),
791
- ),
792
- 'cat-5' => array(
793
- 'icon' => 'off-grid',
794
- 'title' => __( 'Off-Grid Widgets', 'premium-addons-for-elementor' ),
795
- 'elements' => array(
796
- array(
797
- 'key' => 'premium-modalbox',
798
- 'name' => 'premium-addon-modal-box',
799
- 'title' => __( 'Modal Box', 'premium-addons-for-elementor' ),
800
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/modal-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
801
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/modal-box/', 'settings-page', 'wp-dash', 'dashboard' ),
802
- 'tutorial' => 'https://www.youtube.com/watch?v=3lLxSyf2nyk',
803
- ),
804
- array(
805
- 'key' => 'premium-notbar',
806
- 'name' => 'premium-notbar',
807
- 'title' => __( 'Alert Box', 'premium-addons-for-elementor' ),
808
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/alert-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
809
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/alert-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
810
- 'is_pro' => true,
811
- ),
812
- array(
813
- 'key' => 'premium-magic-section',
814
- 'name' => 'premium-addon-magic-section',
815
- 'title' => __( 'Magic Section', 'premium-addons-for-elementor' ),
816
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/magic-section-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
817
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/magic-section-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
818
- 'is_pro' => true,
819
- ),
820
- array(
821
- 'key' => 'premium-prev-img',
822
- 'name' => 'premium-addon-preview-image',
823
- 'title' => __( 'Preview Window', 'premium-addons-for-elementor' ),
824
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/preview-window-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
825
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/preview-window-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
826
- 'tutorial' => 'https://www.youtube.com/watch?v=EmptjFjrc4E',
827
- 'is_pro' => true,
828
- ),
829
- ),
830
- ),
831
- 'cat-6' => array(
832
- 'icon' => 'social',
833
- 'title' => __( 'Reviews & Testimonials Widgets', 'premium-addons-for-elementor' ),
834
- 'elements' => array(
835
- array(
836
- 'key' => 'premium-testimonials',
837
- 'name' => 'premium-addon-testimonials',
838
- 'title' => __( 'Testimonials', 'premium-addons-for-elementor' ),
839
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/testimonials-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
840
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/testimonials-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
841
- ),
842
- array(
843
- 'key' => 'premium-facebook-reviews',
844
- 'name' => 'premium-facebook-reviews',
845
- 'title' => __( 'Facebook Reviews', 'premium-addons-for-elementor' ),
846
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/facebook-reviews-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
847
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/facebook-reviews/', 'settings-page', 'wp-dash', 'dashboard' ),
848
- 'tutorial' => 'https://www.youtube.com/watch?v=zl-OFo3IFd8',
849
- 'is_pro' => true,
850
- ),
851
- array(
852
- 'key' => 'premium-google-reviews',
853
- 'name' => 'premium-google-reviews',
854
- 'title' => __( 'Google Reviews', 'premium-addons-for-elementor' ),
855
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/google-reviews-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
856
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/google-reviews/', 'settings-page', 'wp-dash', 'dashboard' ),
857
- 'tutorial' => 'https://www.youtube.com/watch?v=Z0EeGyD34Zk',
858
- 'is_pro' => true,
859
- ),
860
- array(
861
- 'key' => 'premium-yelp-reviews',
862
- 'name' => 'premium-yelp-reviews',
863
- 'title' => __( 'Yelp Reviews', 'premium-addons-for-elementor' ),
864
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-yelp-reviews-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
865
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/yelp-reviews/', 'settings-page', 'wp-dash', 'dashboard' ),
866
- 'tutorial' => 'https://www.youtube.com/watch?v=5T-MveVFvns',
867
- 'is_pro' => true,
868
- ),
869
- array(
870
- 'key' => 'premium-trustpilot-reviews',
871
- 'name' => 'premium-trustpilot-reviews',
872
- 'title' => __( 'Trustpilot Reviews', 'premium-addons-for-elementor' ),
873
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-trustpilot-reviews-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
874
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/elementor-trustpilot-reviews-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
875
- 'is_pro' => true,
876
- 'is_new' => true,
877
- ),
878
- ),
879
- ),
880
- 'cat-7' => array(
881
- 'icon' => 'blurbs',
882
- 'title' => __( 'Blurbs & CTA Widgets', 'premium-addons-for-elementor' ),
883
- 'elements' => array(
884
- array(
885
- 'key' => 'premium-countdown',
886
- 'name' => 'premium-countdown-timer',
887
- 'title' => __( 'Countdown', 'premium-addons-for-elementor' ),
888
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/countdown-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
889
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/countdown-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
890
- ),
891
- array(
892
- 'key' => 'premium-banner',
893
- 'name' => 'premium-addon-banner',
894
- 'title' => __( 'Banner', 'premium-addons-for-elementor' ),
895
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/banner-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
896
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-banner-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
897
- ),
898
- array(
899
- 'key' => 'premium-button',
900
- 'name' => 'premium-addon-button',
901
- 'title' => __( 'Button', 'premium-addons-for-elementor' ),
902
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/button-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
903
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/button/', 'settings-page', 'wp-dash', 'dashboard' ),
904
- 'tutorial' => 'https://www.youtube.com/watch?v=w4NuCUkCIV4',
905
- ),
906
- array(
907
- 'key' => 'premium-image-button',
908
- 'title' => __( 'Image Button', 'premium-addons-for-elementor' ),
909
- 'name' => 'premium-addon-image-button',
910
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-button-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
911
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/image-button/', 'settings-page', 'wp-dash', 'dashboard' ),
912
- ),
913
- array(
914
- 'key' => 'premium-flipbox',
915
- 'name' => 'premium-addon-flip-box',
916
- 'title' => __( '3D Hover Box', 'premium-addons-for-elementor' ),
917
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/3d-hover-box-flip-box-widget-for-elementor/', 'settings-page', 'wp-dash', 'dashboard' ),
918
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/flip-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
919
- 'is_pro' => true,
920
- ),
921
- array(
922
- 'key' => 'premium-iconbox',
923
- 'name' => 'premium-addon-icon-box',
924
- 'title' => __( 'Icon Box', 'premium-addons-for-elementor' ),
925
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/icon-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
926
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/icon-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
927
- 'is_pro' => true,
928
- ),
929
- array(
930
- 'key' => 'premium-ihover',
931
- 'name' => 'premium-ihover',
932
- 'title' => __( 'iHover', 'premium-addons-for-elementor' ),
933
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/ihover-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
934
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-ihover-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
935
- 'is_pro' => true,
936
- ),
937
- array(
938
- 'key' => 'premium-unfold',
939
- 'name' => 'premium-unfold-addon',
940
- 'title' => __( 'Unfold', 'premium-addons-for-elementor' ),
941
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/unfold-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
942
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-unfold-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
943
- 'is_pro' => true,
944
- ),
945
- array(
946
- 'key' => 'premium-icon-list',
947
- 'name' => 'premium-icon-list',
948
- 'title' => __( 'Bullet List', 'premium-addons-for-elementor' ),
949
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-bullet-list-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
950
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/bullet-list-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
951
- 'tutorial' => 'https://www.youtube.com/watch?v=MPeXJiZ14sI',
952
- ),
953
- ),
954
- ),
955
- 'cat-8' => array(
956
- 'icon' => 'feed',
957
- 'title' => __( 'Social Feed Widgets', 'premium-addons-for-elementor' ),
958
- 'elements' => array(
959
- array(
960
- 'key' => 'premium-facebook-feed',
961
- 'name' => 'premium-facebook-feed',
962
- 'title' => __( 'Facebook Feed', 'premium-addons-for-elementor' ),
963
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-facebook-feed-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
964
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/facebook-feed-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
965
- 'is_pro' => true,
966
- ),
967
- array(
968
- 'key' => 'premium-twitter-feed',
969
- 'name' => 'premium-twitter-feed',
970
- 'title' => __( 'Twitter Feed', 'premium-addons-for-elementor' ),
971
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/twitter-feed-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
972
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/twitter-feed-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
973
- 'tutorial' => 'https://www.youtube.com/watch?v=wsurRDuR6pg',
974
- 'is_pro' => true,
975
- ),
976
- array(
977
- 'key' => 'premium-instagram-feed',
978
- 'name' => 'premium-addon-instagram-feed',
979
- 'title' => __( 'Instagram Feed', 'premium-addons-for-elementor' ),
980
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/instagram-feed-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
981
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/instagram-feed/', 'settings-page', 'wp-dash', 'dashboard' ),
982
- 'is_pro' => true,
983
- ),
984
- array(
985
- 'key' => 'premium-behance',
986
- 'name' => 'premium-behance-feed',
987
- 'title' => __( 'Behance Feed', 'premium-addons-for-elementor' ),
988
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/behance-feed-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
989
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/behance-feed-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
990
- 'tutorial' => 'https://www.youtube.com/watch?v=AXATK3oIXl0',
991
- 'is_pro' => true,
992
- ),
993
- ),
994
- ),
995
- 'cat-9' => array(
996
- 'icon' => 'data',
997
- 'title' => __( 'Tables, Charts & Anything Data Widgets', 'premium-addons-for-elementor' ),
998
- 'elements' => array(
999
- array(
1000
- 'key' => 'premium-progressbar',
1001
- 'name' => 'premium-addon-progressbar',
1002
- 'title' => __( 'Progress Bar', 'premium-addons-for-elementor' ),
1003
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/progress-bar-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1004
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-progress-bar-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
1005
- 'tutorial' => 'https://www.youtube.com/watch?v=Y7xqwhgDQJg',
1006
- ),
1007
- array(
1008
- 'key' => 'premium-pricing-table',
1009
- 'name' => 'premium-addon-pricing-table',
1010
- 'title' => __( 'Pricing Table', 'premium-addons-for-elementor' ),
1011
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/pricing-table-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1012
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/pricing-table-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
1013
- ),
1014
- array(
1015
- 'key' => 'premium-charts',
1016
- 'name' => 'premium-chart',
1017
- 'title' => __( 'Charts', 'premium-addons-for-elementor' ),
1018
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/charts-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1019
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/charts-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
1020
- 'tutorial' => 'https://www.youtube.com/watch?v=lZZvslQ2UYU',
1021
- 'is_pro' => true,
1022
- ),
1023
- array(
1024
- 'key' => 'premium-tables',
1025
- 'name' => 'premium-tables-addon',
1026
- 'title' => __( 'Table', 'premium-addons-for-elementor' ),
1027
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/table-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1028
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/table-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
1029
- 'is_pro' => true,
1030
- ),
1031
- array(
1032
- 'key' => 'premium-counter',
1033
- 'name' => 'premium-counter',
1034
- 'title' => __( 'Counter', 'premium-addons-for-elementor' ),
1035
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/counter-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1036
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/counter-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
1037
- ),
1038
- ),
1039
- ),
1040
- 'cat-10' => array(
1041
- 'icon' => 'contact',
1042
- 'title' => __( 'Contact Widgets', 'premium-addons-for-elementor' ),
1043
- 'elements' => array(
1044
- array(
1045
- 'key' => 'premium-contactform',
1046
- 'name' => 'premium-contact-form',
1047
- 'title' => __( 'Contact Form 7', 'premium-addons-for-elementor' ),
1048
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/contact-form-7-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1049
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/contact-form-7-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
1050
- ),
1051
- array(
1052
- 'key' => 'premium-fb-chat',
1053
- 'name' => 'premium-addon-facebook-chat',
1054
- 'title' => __( 'Facebook Messenger Chat', 'premium-addons-for-elementor' ),
1055
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/facebook-messenger-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1056
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/facebook-messenger/', 'settings-page', 'wp-dash', 'dashboard' ),
1057
- 'is_pro' => true,
1058
- ),
1059
- array(
1060
- 'key' => 'premium-whatsapp-chat',
1061
- 'name' => 'premium-whatsapp-chat',
1062
- 'title' => __( 'WhatsApp Chat', 'premium-addons-for-elementor' ),
1063
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/whatsapp-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1064
- 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/whatsapp-chat-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
1065
- 'is_pro' => true,
1066
- ),
1067
- ),
1068
- ),
1069
- 'cat-11' => array(
1070
- 'icon' => 'extensions',
1071
- 'elements' => array(
1072
- array(
1073
- 'key' => 'premium-templates',
1074
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/premium-templates-for-elementor/', 'settings-page', 'wp-dash', 'dashboard' ),
1075
- ),
1076
- array(
1077
- 'key' => 'premium-equal-height',
1078
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/premium-addons-global-features-for-elementor/#equal-height-feature', 'settings-page', 'wp-dash', 'dashboard' ),
1079
- ),
1080
- array(
1081
- 'key' => 'pa-display-conditions',
1082
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-display-conditions/', 'settings-page', 'wp-dash', 'dashboard' ),
1083
- ),
1084
- array(
1085
- 'key' => 'premium-global-cursor',
1086
- 'is_pro' => true,
1087
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-custom-mouse-cursor-global-feature/', 'settings-page', 'wp-dash', 'dashboard' ),
1088
- ),
1089
- array(
1090
- 'key' => 'premium-global-badge',
1091
- 'is_pro' => true,
1092
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-badge-global-addon/', 'settings-page', 'wp-dash', 'dashboard' ),
1093
- ),
1094
- array(
1095
- 'key' => 'premium-floating-effects',
1096
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-floating-effects-animation/', 'settings-page', 'wp-dash', 'dashboard' ),
1097
- ),
1098
- array(
1099
- 'key' => 'premium-cross-domain',
1100
- 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/premium-addons-global-features-for-elementor/#common-features', 'settings-page', 'wp-dash', 'dashboard' ),
1101
- ),
1102
- array(
1103
- 'key' => 'premium-duplicator',
1104
- ),
1105
- array(
1106
- 'key' => 'premium-assets-generator',
1107
- ),
1108
- ),
1109
- ),
1110
- );
1111
-
1112
- return $elements;
1
+ <?php
2
+ /**
3
+ * PA Elements.
4
+ */
5
+
6
+ use PremiumAddons\Includes\Helper_Functions;
7
+
8
+ $prefix = Helper_Functions::get_prefix();
9
+
10
+ $elements = array(
11
+ 'cat-1' => array(
12
+ 'icon' => 'all',
13
+ 'title' => __( 'All Widgets', 'premium-addons-for-elementor' ),
14
+ 'elements' => array(
15
+ array(
16
+ 'key' => 'premium-lottie-widget',
17
+ 'name' => 'premium-lottie',
18
+ 'title' => __( 'Lottie Animations', 'premium-addons-for-elementor' ),
19
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-lottie-animations-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
20
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/lottie-animations-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
21
+ 'tutorial' => 'https://www.youtube.com/watch?v=0QWzUpF57dw',
22
+ ),
23
+ array(
24
+ 'key' => 'premium-carousel',
25
+ 'name' => 'premium-carousel-widget',
26
+ 'title' => __( 'Carousel', 'premium-addons-for-elementor' ),
27
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/carousel-widget-for-elementor-page-builder', 'settings-page', 'wp-dash', 'dashboard' ),
28
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/carousel/', 'settings-page', 'wp-dash', 'dashboard' ),
29
+ 'tutorial' => 'https://www.youtube.com/watch?v=ZMgprLKvq24',
30
+ ),
31
+ array(
32
+ 'key' => 'premium-blog',
33
+ 'name' => 'premium-addon-blog',
34
+ 'title' => __( 'Blog', 'premium-addons-for-elementor' ),
35
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/blog-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
36
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/blog/', 'settings-page', 'wp-dash', 'dashboard' ),
37
+ ),
38
+ array(
39
+ 'key' => 'premium-maps',
40
+ 'name' => 'premium-addon-maps',
41
+ 'title' => __( 'Google Maps', 'premium-addons-for-elementor' ),
42
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/google-maps-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
43
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/google-maps/', 'settings-page', 'wp-dash', 'dashboard' ),
44
+ 'tutorial' => 'https://www.youtube.com/watch?v=z4taEeCY77Q',
45
+ ),
46
+ array(
47
+ 'key' => 'premium-person',
48
+ 'name' => 'premium-addon-person',
49
+ 'title' => __( 'Team Members', 'premium-addons-for-elementor' ),
50
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/persons-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
51
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/persons-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
52
+ ),
53
+ array(
54
+ 'key' => 'premium-tabs',
55
+ 'name' => 'premium-addon-tabs',
56
+ 'title' => __( 'Tabs', 'premium-addons-for-elementor' ),
57
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-tabs-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
58
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/tabs-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
59
+ 'is_pro' => true,
60
+ 'icon' => 'pa-pro-tabs',
61
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-tabs-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
62
+ ),
63
+ array(
64
+ 'key' => 'premium-content-toggle',
65
+ 'name' => 'premium-addon-content-toggle',
66
+ 'title' => __( 'Content Switcher', 'premium-addons-for-elementor' ),
67
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/content-switcher-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
68
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-content-switcher/', 'settings-page', 'wp-dash', 'dashboard' ),
69
+ 'is_pro' => true,
70
+ 'icon' => 'pa-pro-content-switcher',
71
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/content-switcher-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
72
+ ),
73
+ array(
74
+ 'key' => 'premium-fancytext',
75
+ 'name' => 'premium-addon-fancy-text',
76
+ 'title' => __( 'Fancy Text', 'premium-addons-for-elementor' ),
77
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/fancy-text-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
78
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/fancy-text-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
79
+ ),
80
+ array(
81
+ 'key' => 'premium-title',
82
+ 'name' => 'premium-addon-title',
83
+ 'title' => __( 'Heading', 'premium-addons-for-elementor' ),
84
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/heading-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
85
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/heading-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
86
+ ),
87
+ array(
88
+ 'key' => 'premium-dual-header',
89
+ 'name' => 'premium-addon-dual-header',
90
+ 'title' => __( 'Dual Heading', 'premium-addons-for-elementor' ),
91
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/dual-header-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
92
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/dual-heading-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
93
+ ),
94
+ array(
95
+ 'key' => 'premium-divider',
96
+ 'name' => 'premium-divider',
97
+ 'title' => __( 'Divider', 'premium-addons-for-elementor' ),
98
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/divider-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
99
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/divider-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
100
+ 'is_pro' => true,
101
+ 'icon' => 'pa-pro-separator',
102
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/divider-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
103
+ ),
104
+ array(
105
+ 'key' => 'premium-grid',
106
+ 'name' => 'premium-img-gallery',
107
+ 'title' => __( 'Media Grid', 'premium-addons-for-elementor' ),
108
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/grid-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
109
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/grid/', 'settings-page', 'wp-dash', 'dashboard' ),
110
+ ),
111
+ array(
112
+ 'key' => 'premium-image-scroll',
113
+ 'name' => 'premium-image-scroll',
114
+ 'title' => __( 'Image Scroll', 'premium-addons-for-elementor' ),
115
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-image-scroll-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
116
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-scroll-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
117
+ ),
118
+ array(
119
+ 'key' => 'premium-image-separator',
120
+ 'name' => 'premium-addon-image-separator',
121
+ 'title' => __( 'Image Separator', 'premium-addons-for-elementor' ),
122
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-separator-widget-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
123
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-separator-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
124
+ ),
125
+ array(
126
+ 'key' => 'premium-image-comparison',
127
+ 'name' => 'premium-addon-image-comparison',
128
+ 'title' => __( 'Image Comparison', 'premium-addons-for-elementor' ),
129
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-comparison-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
130
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-image-comparison-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
131
+ 'is_pro' => true,
132
+ 'icon' => 'pa-pro-image-comparison',
133
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-comparison-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
134
+ ),
135
+ array(
136
+ 'key' => 'premium-image-hotspots',
137
+ 'name' => 'premium-addon-image-hotspots',
138
+ 'title' => __( 'Image Hotspots', 'premium-addons-for-elementor' ),
139
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-hotspots-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
140
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-hotspots-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
141
+ 'is_pro' => true,
142
+ 'icon' => 'pa-pro-hot-spot',
143
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-hotspots-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
144
+ ),
145
+ array(
146
+ 'key' => 'premium-img-layers',
147
+ 'name' => 'premium-img-layers-addon',
148
+ 'title' => __( 'Image Layers', 'premium-addons-for-elementor' ),
149
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-layers-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
150
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/image-layers/', 'settings-page', 'wp-dash', 'dashboard' ),
151
+ 'tutorial' => 'https://www.youtube.com/watch?v=D3INxWw_jKI',
152
+ 'is_pro' => true,
153
+ 'icon' => 'pa-pro-image-layers',
154
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-layers-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
155
+ ),
156
+ array(
157
+ 'key' => 'premium-image-accordion',
158
+ 'name' => 'premium-image-accordion',
159
+ 'title' => __( 'Image Accordion', 'premium-addons-for-elementor' ),
160
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-image-accordion-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
161
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-accordion-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
162
+ 'is_pro' => true,
163
+ 'icon' => 'pa-pro-image-accordion',
164
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-image-accordion-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
165
+ ),
166
+ array(
167
+ 'key' => 'premium-videobox',
168
+ 'name' => 'premium-addon-video-box',
169
+ 'title' => __( 'Video Box', 'premium-addons-for-elementor' ),
170
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/video-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
171
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/video-box/', 'settings-page', 'wp-dash', 'dashboard' ),
172
+ ),
173
+ array(
174
+ 'key' => 'premium-hscroll',
175
+ 'name' => 'premium-hscroll',
176
+ 'title' => __( 'Horizontal Scroll', 'premium-addons-for-elementor' ),
177
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-horizontal-scroll-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
178
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/horizontal-scroll/', 'settings-page', 'wp-dash', 'dashboard' ),
179
+ 'tutorial' => 'https://www.youtube.com/watch?v=4HqT_3s-ZXg',
180
+ 'is_pro' => true,
181
+ 'icon' => 'pa-pro-horizontal-scroll',
182
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-horizontal-scroll-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
183
+ ),
184
+ array(
185
+ 'key' => 'premium-vscroll',
186
+ 'name' => 'premium-vscroll',
187
+ 'title' => __( 'Vertical Scroll', 'premium-addons-for-elementor' ),
188
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/vertical-scroll-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
189
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/vertical-scroll-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
190
+ 'tutorial' => 'https://www.youtube.com/watch?v=MuLaIn1QXfQ',
191
+ ),
192
+ array(
193
+ 'key' => 'premium-color-transition',
194
+ 'name' => 'premium-color-transition',
195
+ 'title' => __( 'Background Transition', 'premium-addons-for-elementor' ),
196
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-background-transition-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
197
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/background-transition-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
198
+ 'is_pro' => true,
199
+ 'icon' => 'pa-pro-color-transition',
200
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-background-transition-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
201
+ ),
202
+ array(
203
+ 'key' => 'premium-multi-scroll',
204
+ 'name' => 'premium-multi-scroll',
205
+ 'title' => __( 'Multi Scroll', 'premium-addons-for-elementor' ),
206
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/multi-scroll-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
207
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/multi-scroll-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
208
+ 'tutorial' => 'https://www.youtube.com/watch?v=IzYnD6oDYXw',
209
+ 'is_pro' => true,
210
+ 'icon' => 'pa-pro-multi-scroll',
211
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/multi-scroll-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
212
+ ),
213
+ array(
214
+ 'key' => 'premium-lottie',
215
+ 'title' => __( 'Lottie Animations', 'premium-addons-for-elementor' ),
216
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-lottie-animations-section-addon/', 'settings-page', 'wp-dash', 'dashboard' ),
217
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/lottie-background/', 'settings-page', 'wp-dash', 'dashboard' ),
218
+ 'tutorial' => 'https://www.youtube.com/watch?v=KVrenWNEdkY',
219
+ 'is_pro' => true,
220
+ 'is_global' => true,
221
+ ),
222
+ array(
223
+ 'key' => 'premium-parallax',
224
+ 'title' => __( 'Parallax', 'premium-addons-for-elementor' ),
225
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/parallax-section-addon-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
226
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/parallax-section-addon-tutorial-2/', 'settings-page', 'wp-dash', 'dashboard' ),
227
+ 'tutorial' => 'https://www.youtube.com/watch?v=hkMNjxLoZ2w',
228
+ 'is_pro' => true,
229
+ 'is_global' => true,
230
+ ),
231
+ array(
232
+ 'key' => 'premium-particles',
233
+ 'title' => __( 'Particles', 'premium-addons-for-elementor' ),
234
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/particles-section-addon-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
235
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/particles/', 'settings-page', 'wp-dash', 'dashboard' ),
236
+ 'tutorial' => 'https://www.youtube.com/watch?v=bPmWKv4VWrI',
237
+ 'is_pro' => true,
238
+ 'is_global' => true,
239
+ ),
240
+ array(
241
+ 'key' => 'premium-gradient',
242
+ 'title' => __( 'Animated Gradient', 'premium-addons-for-elementor' ),
243
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/animated-section-gradients-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
244
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/animated-gradient-section-addon-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
245
+ 'tutorial' => 'https://www.youtube.com/watch?v=IL4USvwR6K4',
246
+ 'is_pro' => true,
247
+ 'is_global' => true,
248
+ ),
249
+ array(
250
+ 'key' => 'premium-kenburns',
251
+ 'title' => __( 'Animated Ken Burns', 'premium-addons-for-elementor' ),
252
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/ken-burns-section-addon-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
253
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/ken-burns-section-addon-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
254
+ 'tutorial' => 'https://www.youtube.com/watch?v=DUNFjWphZfs',
255
+ 'is_pro' => true,
256
+ 'is_global' => true,
257
+ ),
258
+ array(
259
+ 'key' => 'premium-blob',
260
+ 'title' => __( 'Blob Generator', 'premium-addons-for-elementor' ),
261
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-animated-blob-generator/', 'settings-page', 'wp-dash', 'dashboard' ),
262
+ 'is_pro' => true,
263
+ 'is_global' => true,
264
+ ),
265
+ array(
266
+ 'key' => 'premium-modalbox',
267
+ 'name' => 'premium-addon-modal-box',
268
+ 'title' => __( 'Modal Box', 'premium-addons-for-elementor' ),
269
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/modal-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
270
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/modal-box/', 'settings-page', 'wp-dash', 'dashboard' ),
271
+ 'tutorial' => 'https://www.youtube.com/watch?v=3lLxSyf2nyk',
272
+ ),
273
+ array(
274
+ 'key' => 'premium-notbar',
275
+ 'name' => 'premium-notbar',
276
+ 'title' => __( 'Alert Box', 'premium-addons-for-elementor' ),
277
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/alert-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
278
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/alert-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
279
+ 'is_pro' => true,
280
+ 'icon' => 'pa-pro-notification-bar',
281
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/alert-box-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
282
+ ),
283
+ array(
284
+ 'key' => 'premium-magic-section',
285
+ 'name' => 'premium-addon-magic-section',
286
+ 'title' => __( 'Magic Section', 'premium-addons-for-elementor' ),
287
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/magic-section-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
288
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/magic-section-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
289
+ 'is_pro' => true,
290
+ 'icon' => 'pa-pro-magic-section',
291
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/magic-section-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
292
+ ),
293
+ array(
294
+ 'key' => 'premium-prev-img',
295
+ 'name' => 'premium-addon-preview-image',
296
+ 'title' => __( 'Preview Window', 'premium-addons-for-elementor' ),
297
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/preview-window-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
298
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/preview-window-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
299
+ 'tutorial' => 'https://www.youtube.com/watch?v=EmptjFjrc4E',
300
+ 'is_pro' => true,
301
+ 'icon' => 'pa-pro-preview-window',
302
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/preview-window-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
303
+ ),
304
+ array(
305
+ 'key' => 'premium-testimonials',
306
+ 'name' => 'premium-addon-testimonials',
307
+ 'title' => __( 'Testimonials', 'premium-addons-for-elementor' ),
308
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/testimonials-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
309
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/testimonials-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
310
+ ),
311
+ array(
312
+ 'key' => 'premium-facebook-reviews',
313
+ 'name' => 'premium-facebook-reviews',
314
+ 'title' => __( 'Facebook Reviews', 'premium-addons-for-elementor' ),
315
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/facebook-reviews-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
316
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/facebook-reviews/', 'settings-page', 'wp-dash', 'dashboard' ),
317
+ 'tutorial' => 'https://www.youtube.com/watch?v=zl-OFo3IFd8',
318
+ 'is_pro' => true,
319
+ 'icon' => 'pa-pro-facebook-reviews',
320
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/facebook-reviews-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
321
+ ),
322
+ array(
323
+ 'key' => 'premium-google-reviews',
324
+ 'name' => 'premium-google-reviews',
325
+ 'title' => __( 'Google Reviews', 'premium-addons-for-elementor' ),
326
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/google-reviews-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
327
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/google-reviews/', 'settings-page', 'wp-dash', 'dashboard' ),
328
+ 'tutorial' => 'https://www.youtube.com/watch?v=Z0EeGyD34Zk',
329
+ 'is_pro' => true,
330
+ 'icon' => 'pa-pro-google-reviews',
331
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/google-reviews-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
332
+ ),
333
+ array(
334
+ 'key' => 'premium-yelp-reviews',
335
+ 'name' => 'premium-yelp-reviews',
336
+ 'title' => __( 'Yelp Reviews', 'premium-addons-for-elementor' ),
337
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-yelp-reviews-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
338
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/yelp-reviews/', 'settings-page', 'wp-dash', 'dashboard' ),
339
+ 'tutorial' => 'https://www.youtube.com/watch?v=5T-MveVFvns',
340
+ 'is_pro' => true,
341
+ 'icon' => 'pa-pro-yelp-reviews',
342
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-yelp-reviews-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
343
+ ),
344
+ array(
345
+ 'key' => 'premium-trustpilot-reviews',
346
+ 'name' => 'premium-trustpilot-reviews',
347
+ 'title' => __( 'Trustpilot Reviews', 'premium-addons-for-elementor' ),
348
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-trustpilot-reviews-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
349
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/elementor-trustpilot-reviews-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
350
+ 'is_pro' => true,
351
+ 'is_new' => true,
352
+ 'icon' => 'pa-pro-trust-reviews',
353
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-trustpilot-reviews-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
354
+ ),
355
+ array(
356
+ 'key' => 'premium-countdown',
357
+ 'name' => 'premium-countdown-timer',
358
+ 'title' => __( 'Countdown', 'premium-addons-for-elementor' ),
359
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/countdown-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
360
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/countdown-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
361
+ ),
362
+ array(
363
+ 'key' => 'premium-banner',
364
+ 'name' => 'premium-addon-banner',
365
+ 'title' => __( 'Banner', 'premium-addons-for-elementor' ),
366
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/banner-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
367
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-banner-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
368
+ ),
369
+ array(
370
+ 'key' => 'premium-button',
371
+ 'name' => 'premium-addon-button',
372
+ 'title' => __( 'Button', 'premium-addons-for-elementor' ),
373
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/button-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
374
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/button/', 'settings-page', 'wp-dash', 'dashboard' ),
375
+ 'tutorial' => 'https://www.youtube.com/watch?v=w4NuCUkCIV4',
376
+ ),
377
+ array(
378
+ 'key' => 'premium-image-button',
379
+ 'name' => 'premium-addon-image-button',
380
+ 'title' => __( 'Image Button', 'premium-addons-for-elementor' ),
381
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-button-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
382
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/image-button/', 'settings-page', 'wp-dash', 'dashboard' ),
383
+ ),
384
+ array(
385
+ 'key' => 'premium-flipbox',
386
+ 'name' => 'premium-addon-flip-box',
387
+ 'title' => __( '3D Hover Box', 'premium-addons-for-elementor' ),
388
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/3d-hover-box-flip-box-widget-for-elementor/', 'settings-page', 'wp-dash', 'dashboard' ),
389
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/flip-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
390
+ 'is_pro' => true,
391
+ 'icon' => 'pa-pro-flip-box',
392
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/3d-hover-box-flip-box-widget-for-elementor/', 'editor-page', 'wp-editor', 'get-pro' ),
393
+ ),
394
+ array(
395
+ 'key' => 'premium-iconbox',
396
+ 'name' => 'premium-addon-icon-box',
397
+ 'title' => __( 'Icon Box', 'premium-addons-for-elementor' ),
398
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/icon-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
399
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/icon-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
400
+ 'is_pro' => true,
401
+ 'icon' => 'pa-pro-icon-box',
402
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/icon-box-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
403
+ ),
404
+ array(
405
+ 'key' => 'premium-ihover',
406
+ 'name' => 'premium-ihover',
407
+ 'title' => __( 'iHover', 'premium-addons-for-elementor' ),
408
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/ihover-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
409
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-ihover-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
410
+ 'is_pro' => true,
411
+ 'icon' => 'pa-pro-ihover',
412
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/ihover-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
413
+ ),
414
+ array(
415
+ 'key' => 'premium-unfold',
416
+ 'name' => 'premium-unfold-addon',
417
+ 'title' => __( 'Unfold', 'premium-addons-for-elementor' ),
418
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/unfold-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
419
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-unfold-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
420
+ 'is_pro' => true,
421
+ 'icon' => 'pa-pro-unfold',
422
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/unfold-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
423
+ ),
424
+ array(
425
+ 'key' => 'premium-icon-list',
426
+ 'name' => 'premium-icon-list',
427
+ 'title' => __( 'Bullet List', 'premium-addons-for-elementor' ),
428
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-bullet-list-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
429
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/bullet-list-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
430
+ 'tutorial' => 'https://www.youtube.com/watch?v=MPeXJiZ14sI',
431
+ ),
432
+ array(
433
+ 'key' => 'premium-facebook-feed',
434
+ 'name' => 'premium-facebook-feed',
435
+ 'title' => __( 'Facebook Feed', 'premium-addons-for-elementor' ),
436
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-facebook-feed-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
437
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/facebook-feed-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
438
+ 'is_pro' => true,
439
+ 'icon' => 'pa-pro-facebook-feed',
440
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-facebook-feed-widget/', 'editor-page', 'wp-editor', 'get-pro' ),
441
+ ),
442
+ array(
443
+ 'key' => 'premium-twitter-feed',
444
+ 'name' => 'premium-twitter-feed',
445
+ 'title' => __( 'Twitter Feed', 'premium-addons-for-elementor' ),
446
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/twitter-feed-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
447
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/twitter-feed-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
448
+ 'tutorial' => 'https://www.youtube.com/watch?v=wsurRDuR6pg',
449
+ 'is_pro' => true,
450
+ 'icon' => 'pa-pro-twitter-feed',
451
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/twitter-feed-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
452
+ ),
453
+ array(
454
+ 'key' => 'premium-instagram-feed',
455
+ 'name' => 'premium-addon-instagram-feed',
456
+ 'title' => __( 'Instagram Feed', 'premium-addons-for-elementor' ),
457
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/instagram-feed-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
458
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/instagram-feed/', 'settings-page', 'wp-dash', 'dashboard' ),
459
+ 'is_pro' => true,
460
+ 'icon' => 'pa-pro-instagram-feed',
461
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/instagram-feed-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
462
+ ),
463
+ array(
464
+ 'key' => 'premium-behance',
465
+ 'name' => 'premium-behance-feed',
466
+ 'title' => __( 'Behance Feed', 'premium-addons-for-elementor' ),
467
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/behance-feed-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
468
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/behance-feed-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
469
+ 'tutorial' => 'https://www.youtube.com/watch?v=AXATK3oIXl0',
470
+ 'is_pro' => true,
471
+ 'icon' => 'pa-pro-behance-feed',
472
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/behance-feed-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
473
+ ),
474
+ array(
475
+ 'key' => 'premium-progressbar',
476
+ 'name' => 'premium-addon-progressbar',
477
+ 'title' => __( 'Progress Bar', 'premium-addons-for-elementor' ),
478
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/progress-bar-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
479
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-progress-bar-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
480
+ 'tutorial' => 'https://www.youtube.com/watch?v=Y7xqwhgDQJg',
481
+ ),
482
+ array(
483
+ 'key' => 'premium-pricing-table',
484
+ 'name' => 'premium-addon-pricing-table',
485
+ 'title' => __( 'Pricing Table', 'premium-addons-for-elementor' ),
486
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/pricing-table-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
487
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/pricing-table-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
488
+ ),
489
+ array(
490
+ 'key' => 'premium-charts',
491
+ 'name' => 'premium-chart',
492
+ 'title' => __( 'Charts', 'premium-addons-for-elementor' ),
493
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/charts-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
494
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/charts-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
495
+ 'tutorial' => 'https://www.youtube.com/watch?v=lZZvslQ2UYU',
496
+ 'is_pro' => true,
497
+ 'icon' => 'pa-pro-charts',
498
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/charts-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
499
+ ),
500
+ array(
501
+ 'key' => 'premium-tables',
502
+ 'name' => 'premium-tables-addon',
503
+ 'title' => __( 'Table', 'premium-addons-for-elementor' ),
504
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/table-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
505
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/table-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
506
+ 'is_pro' => true,
507
+ 'icon' => 'pa-pro-table',
508
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/table-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
509
+ ),
510
+ array(
511
+ 'key' => 'premium-counter',
512
+ 'name' => 'premium-counter',
513
+ 'title' => __( 'Counter', 'premium-addons-for-elementor' ),
514
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/counter-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
515
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/counter-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
516
+ ),
517
+ array(
518
+ 'key' => 'premium-contactform',
519
+ 'name' => 'premium-contact-form',
520
+ 'title' => __( 'Contact Form 7', 'premium-addons-for-elementor' ),
521
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/contact-form-7-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
522
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/contact-form-7-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
523
+ ),
524
+ array(
525
+ 'key' => 'premium-fb-chat',
526
+ 'name' => 'premium-addon-facebook-chat',
527
+ 'title' => __( 'Facebook Messenger Chat', 'premium-addons-for-elementor' ),
528
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/facebook-messenger-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
529
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/facebook-messenger/', 'settings-page', 'wp-dash', 'dashboard' ),
530
+ 'is_pro' => true,
531
+ 'icon' => 'pa-pro-messenger-chat',
532
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/facebook-messenger-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
533
+ ),
534
+ array(
535
+ 'key' => 'premium-whatsapp-chat',
536
+ 'name' => 'premium-whatsapp-chat',
537
+ 'title' => __( 'WhatsApp Chat', 'premium-addons-for-elementor' ),
538
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/whatsapp-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
539
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/whatsapp-chat-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
540
+ 'is_pro' => true,
541
+ 'icon' => 'pa-pro-whatsapp',
542
+ 'action_url' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/whatsapp-widget-for-elementor-page-builder/', 'editor-page', 'wp-editor', 'get-pro' ),
543
+ ),
544
+ array(
545
+ 'key' => 'woo-products',
546
+ 'title' => __( 'Woo Products', 'premium-addons-for-elementor' ),
547
+ 'name' => 'premium-woo-products',
548
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-woocommerce-products/', 'settings-page', 'wp-dash', 'dashboard' ),
549
+ ),
550
+ ),
551
+ ),
552
+ 'cat-2' => array(
553
+ 'icon' => 'content',
554
+ 'title' => __( 'Content Widgets', 'premium-addons-for-elementor' ),
555
+ 'elements' => array(
556
+ array(
557
+ 'key' => 'premium-carousel',
558
+ 'name' => 'premium-carousel-widget',
559
+ 'title' => __( 'Carousel', 'premium-addons-for-elementor' ),
560
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/carousel-widget-for-elementor-page-builder', 'settings-page', 'wp-dash', 'dashboard' ),
561
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/carousel/', 'settings-page', 'wp-dash', 'dashboard' ),
562
+ 'tutorial' => 'https://www.youtube.com/watch?v=ZMgprLKvq24',
563
+ ),
564
+ array(
565
+ 'key' => 'premium-blog',
566
+ 'name' => 'premium-addon-blog',
567
+ 'title' => __( 'Blog', 'premium-addons-for-elementor' ),
568
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/blog-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
569
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/blog/', 'settings-page', 'wp-dash', 'dashboard' ),
570
+ ),
571
+ array(
572
+ 'key' => 'premium-maps',
573
+ 'name' => 'premium-addon-maps',
574
+ 'title' => __( 'Google Maps', 'premium-addons-for-elementor' ),
575
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/google-maps-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
576
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/google-maps/', 'settings-page', 'wp-dash', 'dashboard' ),
577
+ 'tutorial' => 'https://www.youtube.com/watch?v=z4taEeCY77Q',
578
+ ),
579
+ array(
580
+ 'key' => 'premium-person',
581
+ 'name' => 'premium-addon-person',
582
+ 'title' => __( 'Team Members', 'premium-addons-for-elementor' ),
583
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/persons-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
584
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/persons-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
585
+ ),
586
+ array(
587
+ 'key' => 'premium-tabs',
588
+ 'name' => 'premium-addon-tabs',
589
+ 'title' => __( 'Tabs', 'premium-addons-for-elementor' ),
590
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-tabs-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
591
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/tabs-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
592
+ 'is_pro' => true,
593
+ ),
594
+ array(
595
+ 'key' => 'premium-content-toggle',
596
+ 'name' => 'premium-addon-content-toggle',
597
+ 'title' => __( 'Content Switcher', 'premium-addons-for-elementor' ),
598
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/content-switcher-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
599
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-content-switcher/', 'settings-page', 'wp-dash', 'dashboard' ),
600
+ 'is_pro' => true,
601
+ ),
602
+ array(
603
+ 'key' => 'premium-fancytext',
604
+ 'name' => 'premium-addon-fancy-text',
605
+ 'title' => __( 'Fancy Text', 'premium-addons-for-elementor' ),
606
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/fancy-text-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
607
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/fancy-text-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
608
+ ),
609
+ array(
610
+ 'key' => 'premium-title',
611
+ 'name' => 'premium-addon-title',
612
+ 'title' => __( 'Heading', 'premium-addons-for-elementor' ),
613
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/heading-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
614
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/heading-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
615
+ ),
616
+ array(
617
+ 'key' => 'premium-dual-header',
618
+ 'name' => 'premium-addon-dual-header',
619
+ 'title' => __( 'Dual Heading', 'premium-addons-for-elementor' ),
620
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/dual-header-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
621
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/dual-heading-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
622
+ ),
623
+ array(
624
+ 'key' => 'premium-divider',
625
+ 'name' => 'premium-divider',
626
+ 'title' => __( 'Divider', 'premium-addons-for-elementor' ),
627
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/divider-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
628
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/divider-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
629
+ 'is_pro' => true,
630
+ ),
631
+ ),
632
+ ),
633
+ 'cat-3' => array(
634
+ 'icon' => 'images',
635
+ 'title' => __( 'Image & Video Widgets', 'premium-addons-for-elementor' ),
636
+ 'elements' => array(
637
+ array(
638
+ 'key' => 'premium-grid',
639
+ 'name' => 'premium-img-gallery',
640
+ 'title' => __( 'Media Grid', 'premium-addons-for-elementor' ),
641
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/grid-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
642
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/grid-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
643
+ ),
644
+ array(
645
+ 'key' => 'premium-image-scroll',
646
+ 'name' => 'premium-image-scroll',
647
+ 'title' => __( 'Image Scroll', 'premium-addons-for-elementor' ),
648
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-image-scroll-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
649
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-scroll-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
650
+ ),
651
+ array(
652
+ 'key' => 'premium-image-separator',
653
+ 'name' => 'premium-addon-image-separator',
654
+ 'title' => __( 'Image Separator', 'premium-addons-for-elementor' ),
655
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-separator-widget-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
656
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-separator-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
657
+ ),
658
+ array(
659
+ 'key' => 'premium-image-comparison',
660
+ 'name' => 'premium-addon-image-comparison',
661
+ 'title' => __( 'Image Comparison', 'premium-addons-for-elementor' ),
662
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-comparison-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
663
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-image-comparison-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
664
+ 'is_pro' => true,
665
+ ),
666
+ array(
667
+ 'key' => 'premium-image-hotspots',
668
+ 'name' => 'premium-addon-image-hotspots',
669
+ 'title' => __( 'Image Hotspots', 'premium-addons-for-elementor' ),
670
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-hotspots-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
671
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-hotspots-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
672
+ 'is_pro' => true,
673
+ ),
674
+ array(
675
+ 'key' => 'premium-img-layers',
676
+ 'name' => 'premium-img-layers-addon',
677
+ 'title' => __( 'Image Layers', 'premium-addons-for-elementor' ),
678
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-layers-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
679
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/image-layers/', 'settings-page', 'wp-dash', 'dashboard' ),
680
+ 'tutorial' => 'https://www.youtube.com/watch?v=D3INxWw_jKI',
681
+ 'is_pro' => true,
682
+ ),
683
+ array(
684
+ 'key' => 'premium-image-accordion',
685
+ 'name' => 'premium-image-accordion',
686
+ 'title' => __( 'Image Accordion', 'premium-addons-for-elementor' ),
687
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-image-accordion-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
688
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/image-accordion-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
689
+ 'is_pro' => true,
690
+ ),
691
+ array(
692
+ 'key' => 'premium-videobox',
693
+ 'name' => 'premium-addon-video-box',
694
+ 'title' => __( 'Video Box', 'premium-addons-for-elementor' ),
695
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/video-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
696
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/video-box/', 'settings-page', 'wp-dash', 'dashboard' ),
697
+ ),
698
+ ),
699
+ ),
700
+ 'cat-4' => array(
701
+ 'icon' => 'section',
702
+ 'title' => __( 'Section Addons & Widgets', 'premium-addons-for-elementor' ),
703
+ 'elements' => array(
704
+ array(
705
+ 'key' => 'premium-hscroll',
706
+ 'name' => 'premium-hscroll',
707
+ 'title' => __( 'Horizontal Scroll', 'premium-addons-for-elementor' ),
708
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-horizontal-scroll-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
709
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/horizontal-scroll/', 'settings-page', 'wp-dash', 'dashboard' ),
710
+ 'tutorial' => 'https://www.youtube.com/watch?v=4HqT_3s-ZXg',
711
+ 'is_pro' => true,
712
+ ),
713
+ array(
714
+ 'key' => 'premium-vscroll',
715
+ 'name' => 'premium-vscroll',
716
+ 'title' => __( 'Vertical Scroll', 'premium-addons-for-elementor' ),
717
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/vertical-scroll-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
718
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/vertical-scroll-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
719
+ 'tutorial' => 'https://www.youtube.com/watch?v=MuLaIn1QXfQ',
720
+ ),
721
+ array(
722
+ 'key' => 'premium-color-transition',
723
+ 'name' => 'premium-color-transition',
724
+ 'title' => __( 'Background Transition', 'premium-addons-for-elementor' ),
725
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-background-transition-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
726
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/background-transition-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
727
+ 'is_pro' => true,
728
+ ),
729
+ array(
730
+ 'key' => 'premium-multi-scroll',
731
+ 'name' => 'premium-multi-scroll',
732
+ 'title' => __( 'Multi Scroll', 'premium-addons-for-elementor' ),
733
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/multi-scroll-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
734
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/multi-scroll-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
735
+ 'tutorial' => 'https://www.youtube.com/watch?v=IzYnD6oDYXw',
736
+ 'is_pro' => true,
737
+ ),
738
+ array(
739
+ 'key' => 'premium-lottie',
740
+ 'title' => __( 'Lottie Animations', 'premium-addons-for-elementor' ),
741
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-lottie-animations-section-addon/', 'settings-page', 'wp-dash', 'dashboard' ),
742
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/lottie-background/', 'settings-page', 'wp-dash', 'dashboard' ),
743
+ 'tutorial' => 'https://www.youtube.com/watch?v=KVrenWNEdkY',
744
+ 'is_pro' => true,
745
+ 'is_global' => true,
746
+ ),
747
+ array(
748
+ 'key' => 'premium-parallax',
749
+ 'title' => __( 'Parallax', 'premium-addons-for-elementor' ),
750
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/parallax-section-addon-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
751
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/parallax-section-addon-tutorial-2/', 'settings-page', 'wp-dash', 'dashboard' ),
752
+ 'tutorial' => 'https://www.youtube.com/watch?v=hkMNjxLoZ2w',
753
+ 'is_pro' => true,
754
+ 'is_global' => true,
755
+ ),
756
+ array(
757
+ 'key' => 'premium-particles',
758
+ 'title' => __( 'Particles', 'premium-addons-for-elementor' ),
759
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/particles-section-addon-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
760
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/particles/', 'settings-page', 'wp-dash', 'dashboard' ),
761
+ 'tutorial' => 'https://www.youtube.com/watch?v=bPmWKv4VWrI',
762
+ 'is_pro' => true,
763
+ 'is_global' => true,
764
+ ),
765
+ array(
766
+ 'key' => 'premium-gradient',
767
+ 'title' => __( 'Animated Gradient', 'premium-addons-for-elementor' ),
768
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/animated-section-gradients-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
769
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/animated-gradient-section-addon-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
770
+ 'tutorial' => 'https://www.youtube.com/watch?v=IL4USvwR6K4',
771
+ 'is_pro' => true,
772
+ 'is_global' => true,
773
+ ),
774
+ array(
775
+ 'key' => 'premium-kenburns',
776
+ 'title' => __( 'Animated Ken Burns', 'premium-addons-for-elementor' ),
777
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/ken-burns-section-addon-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
778
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/ken-burns-section-addon-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
779
+ 'tutorial' => 'https://www.youtube.com/watch?v=DUNFjWphZfs',
780
+ 'is_pro' => true,
781
+ 'is_global' => true,
782
+ ),
783
+ array(
784
+ 'key' => 'premium-blob',
785
+ 'title' => __( 'Blob Generator', 'premium-addons-for-elementor' ),
786
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-animated-blob-generator/', 'settings-page', 'wp-dash', 'dashboard' ),
787
+ 'is_pro' => true,
788
+ 'is_global' => true,
789
+ ),
790
+ ),
791
+ ),
792
+ 'cat-5' => array(
793
+ 'icon' => 'off-grid',
794
+ 'title' => __( 'Off-Grid Widgets', 'premium-addons-for-elementor' ),
795
+ 'elements' => array(
796
+ array(
797
+ 'key' => 'premium-modalbox',
798
+ 'name' => 'premium-addon-modal-box',
799
+ 'title' => __( 'Modal Box', 'premium-addons-for-elementor' ),
800
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/modal-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
801
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/modal-box/', 'settings-page', 'wp-dash', 'dashboard' ),
802
+ 'tutorial' => 'https://www.youtube.com/watch?v=3lLxSyf2nyk',
803
+ ),
804
+ array(
805
+ 'key' => 'premium-notbar',
806
+ 'name' => 'premium-notbar',
807
+ 'title' => __( 'Alert Box', 'premium-addons-for-elementor' ),
808
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/alert-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
809
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/alert-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
810
+ 'is_pro' => true,
811
+ ),
812
+ array(
813
+ 'key' => 'premium-magic-section',
814
+ 'name' => 'premium-addon-magic-section',
815
+ 'title' => __( 'Magic Section', 'premium-addons-for-elementor' ),
816
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/magic-section-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
817
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/magic-section-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
818
+ 'is_pro' => true,
819
+ ),
820
+ array(
821
+ 'key' => 'premium-prev-img',
822
+ 'name' => 'premium-addon-preview-image',
823
+ 'title' => __( 'Preview Window', 'premium-addons-for-elementor' ),
824
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/preview-window-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
825
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/preview-window-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
826
+ 'tutorial' => 'https://www.youtube.com/watch?v=EmptjFjrc4E',
827
+ 'is_pro' => true,
828
+ ),
829
+ ),
830
+ ),
831
+ 'cat-6' => array(
832
+ 'icon' => 'social',
833
+ 'title' => __( 'Reviews & Testimonials Widgets', 'premium-addons-for-elementor' ),
834
+ 'elements' => array(
835
+ array(
836
+ 'key' => 'premium-testimonials',
837
+ 'name' => 'premium-addon-testimonials',
838
+ 'title' => __( 'Testimonials', 'premium-addons-for-elementor' ),
839
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/testimonials-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
840
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/testimonials-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
841
+ ),
842
+ array(
843
+ 'key' => 'premium-facebook-reviews',
844
+ 'name' => 'premium-facebook-reviews',
845
+ 'title' => __( 'Facebook Reviews', 'premium-addons-for-elementor' ),
846
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/facebook-reviews-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
847
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/facebook-reviews/', 'settings-page', 'wp-dash', 'dashboard' ),
848
+ 'tutorial' => 'https://www.youtube.com/watch?v=zl-OFo3IFd8',
849
+ 'is_pro' => true,
850
+ ),
851
+ array(
852
+ 'key' => 'premium-google-reviews',
853
+ 'name' => 'premium-google-reviews',
854
+ 'title' => __( 'Google Reviews', 'premium-addons-for-elementor' ),
855
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/google-reviews-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
856
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/google-reviews/', 'settings-page', 'wp-dash', 'dashboard' ),
857
+ 'tutorial' => 'https://www.youtube.com/watch?v=Z0EeGyD34Zk',
858
+ 'is_pro' => true,
859
+ ),
860
+ array(
861
+ 'key' => 'premium-yelp-reviews',
862
+ 'name' => 'premium-yelp-reviews',
863
+ 'title' => __( 'Yelp Reviews', 'premium-addons-for-elementor' ),
864
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-yelp-reviews-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
865
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/yelp-reviews/', 'settings-page', 'wp-dash', 'dashboard' ),
866
+ 'tutorial' => 'https://www.youtube.com/watch?v=5T-MveVFvns',
867
+ 'is_pro' => true,
868
+ ),
869
+ array(
870
+ 'key' => 'premium-trustpilot-reviews',
871
+ 'name' => 'premium-trustpilot-reviews',
872
+ 'title' => __( 'Trustpilot Reviews', 'premium-addons-for-elementor' ),
873
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-trustpilot-reviews-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
874
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/elementor-trustpilot-reviews-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
875
+ 'is_pro' => true,
876
+ 'is_new' => true,
877
+ ),
878
+ ),
879
+ ),
880
+ 'cat-7' => array(
881
+ 'icon' => 'blurbs',
882
+ 'title' => __( 'Blurbs & CTA Widgets', 'premium-addons-for-elementor' ),
883
+ 'elements' => array(
884
+ array(
885
+ 'key' => 'premium-countdown',
886
+ 'name' => 'premium-countdown-timer',
887
+ 'title' => __( 'Countdown', 'premium-addons-for-elementor' ),
888
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/countdown-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
889
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/countdown-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
890
+ ),
891
+ array(
892
+ 'key' => 'premium-banner',
893
+ 'name' => 'premium-addon-banner',
894
+ 'title' => __( 'Banner', 'premium-addons-for-elementor' ),
895
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/banner-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
896
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-banner-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
897
+ ),
898
+ array(
899
+ 'key' => 'premium-button',
900
+ 'name' => 'premium-addon-button',
901
+ 'title' => __( 'Button', 'premium-addons-for-elementor' ),
902
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/button-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
903
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/button/', 'settings-page', 'wp-dash', 'dashboard' ),
904
+ 'tutorial' => 'https://www.youtube.com/watch?v=w4NuCUkCIV4',
905
+ ),
906
+ array(
907
+ 'key' => 'premium-image-button',
908
+ 'title' => __( 'Image Button', 'premium-addons-for-elementor' ),
909
+ 'name' => 'premium-addon-image-button',
910
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/image-button-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
911
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/image-button/', 'settings-page', 'wp-dash', 'dashboard' ),
912
+ ),
913
+ array(
914
+ 'key' => 'premium-flipbox',
915
+ 'name' => 'premium-addon-flip-box',
916
+ 'title' => __( '3D Hover Box', 'premium-addons-for-elementor' ),
917
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/3d-hover-box-flip-box-widget-for-elementor/', 'settings-page', 'wp-dash', 'dashboard' ),
918
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/flip-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
919
+ 'is_pro' => true,
920
+ ),
921
+ array(
922
+ 'key' => 'premium-iconbox',
923
+ 'name' => 'premium-addon-icon-box',
924
+ 'title' => __( 'Icon Box', 'premium-addons-for-elementor' ),
925
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/icon-box-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
926
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/icon-box-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
927
+ 'is_pro' => true,
928
+ ),
929
+ array(
930
+ 'key' => 'premium-ihover',
931
+ 'name' => 'premium-ihover',
932
+ 'title' => __( 'iHover', 'premium-addons-for-elementor' ),
933
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/ihover-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
934
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-ihover-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
935
+ 'is_pro' => true,
936
+ ),
937
+ array(
938
+ 'key' => 'premium-unfold',
939
+ 'name' => 'premium-unfold-addon',
940
+ 'title' => __( 'Unfold', 'premium-addons-for-elementor' ),
941
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/unfold-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
942
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-unfold-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
943
+ 'is_pro' => true,
944
+ ),
945
+ array(
946
+ 'key' => 'premium-icon-list',
947
+ 'name' => 'premium-icon-list',
948
+ 'title' => __( 'Bullet List', 'premium-addons-for-elementor' ),
949
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-bullet-list-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
950
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/bullet-list-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
951
+ 'tutorial' => 'https://www.youtube.com/watch?v=MPeXJiZ14sI',
952
+ ),
953
+ ),
954
+ ),
955
+ 'cat-8' => array(
956
+ 'icon' => 'feed',
957
+ 'title' => __( 'Social Feed Widgets', 'premium-addons-for-elementor' ),
958
+ 'elements' => array(
959
+ array(
960
+ 'key' => 'premium-facebook-feed',
961
+ 'name' => 'premium-facebook-feed',
962
+ 'title' => __( 'Facebook Feed', 'premium-addons-for-elementor' ),
963
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-facebook-feed-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
964
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/facebook-feed-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
965
+ 'is_pro' => true,
966
+ ),
967
+ array(
968
+ 'key' => 'premium-twitter-feed',
969
+ 'name' => 'premium-twitter-feed',
970
+ 'title' => __( 'Twitter Feed', 'premium-addons-for-elementor' ),
971
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/twitter-feed-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
972
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/twitter-feed-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
973
+ 'tutorial' => 'https://www.youtube.com/watch?v=wsurRDuR6pg',
974
+ 'is_pro' => true,
975
+ ),
976
+ array(
977
+ 'key' => 'premium-instagram-feed',
978
+ 'name' => 'premium-addon-instagram-feed',
979
+ 'title' => __( 'Instagram Feed', 'premium-addons-for-elementor' ),
980
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/instagram-feed-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
981
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/instagram-feed/', 'settings-page', 'wp-dash', 'dashboard' ),
982
+ 'is_pro' => true,
983
+ ),
984
+ array(
985
+ 'key' => 'premium-behance',
986
+ 'name' => 'premium-behance-feed',
987
+ 'title' => __( 'Behance Feed', 'premium-addons-for-elementor' ),
988
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/behance-feed-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
989
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/behance-feed-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
990
+ 'tutorial' => 'https://www.youtube.com/watch?v=AXATK3oIXl0',
991
+ 'is_pro' => true,
992
+ ),
993
+ ),
994
+ ),
995
+ 'cat-9' => array(
996
+ 'icon' => 'data',
997
+ 'title' => __( 'Tables, Charts & Anything Data Widgets', 'premium-addons-for-elementor' ),
998
+ 'elements' => array(
999
+ array(
1000
+ 'key' => 'premium-progressbar',
1001
+ 'name' => 'premium-addon-progressbar',
1002
+ 'title' => __( 'Progress Bar', 'premium-addons-for-elementor' ),
1003
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/progress-bar-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1004
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/premium-progress-bar-widget/', 'settings-page', 'wp-dash', 'dashboard' ),
1005
+ 'tutorial' => 'https://www.youtube.com/watch?v=Y7xqwhgDQJg',
1006
+ ),
1007
+ array(
1008
+ 'key' => 'premium-pricing-table',
1009
+ 'name' => 'premium-addon-pricing-table',
1010
+ 'title' => __( 'Pricing Table', 'premium-addons-for-elementor' ),
1011
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/pricing-table-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1012
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/pricing-table-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
1013
+ ),
1014
+ array(
1015
+ 'key' => 'premium-charts',
1016
+ 'name' => 'premium-chart',
1017
+ 'title' => __( 'Charts', 'premium-addons-for-elementor' ),
1018
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/charts-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1019
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/charts-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
1020
+ 'tutorial' => 'https://www.youtube.com/watch?v=lZZvslQ2UYU',
1021
+ 'is_pro' => true,
1022
+ ),
1023
+ array(
1024
+ 'key' => 'premium-tables',
1025
+ 'name' => 'premium-tables-addon',
1026
+ 'title' => __( 'Table', 'premium-addons-for-elementor' ),
1027
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/table-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1028
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/table-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
1029
+ 'is_pro' => true,
1030
+ ),
1031
+ array(
1032
+ 'key' => 'premium-counter',
1033
+ 'name' => 'premium-counter',
1034
+ 'title' => __( 'Counter', 'premium-addons-for-elementor' ),
1035
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/counter-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1036
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/counter-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
1037
+ ),
1038
+ ),
1039
+ ),
1040
+ 'cat-10' => array(
1041
+ 'icon' => 'contact',
1042
+ 'title' => __( 'Contact Widgets', 'premium-addons-for-elementor' ),
1043
+ 'elements' => array(
1044
+ array(
1045
+ 'key' => 'premium-contactform',
1046
+ 'name' => 'premium-contact-form',
1047
+ 'title' => __( 'Contact Form 7', 'premium-addons-for-elementor' ),
1048
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/contact-form-7-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1049
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/contact-form-7-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
1050
+ ),
1051
+ array(
1052
+ 'key' => 'premium-fb-chat',
1053
+ 'name' => 'premium-addon-facebook-chat',
1054
+ 'title' => __( 'Facebook Messenger Chat', 'premium-addons-for-elementor' ),
1055
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/facebook-messenger-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1056
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs-category/using-widgets/facebook-messenger/', 'settings-page', 'wp-dash', 'dashboard' ),
1057
+ 'is_pro' => true,
1058
+ ),
1059
+ array(
1060
+ 'key' => 'premium-whatsapp-chat',
1061
+ 'name' => 'premium-whatsapp-chat',
1062
+ 'title' => __( 'WhatsApp Chat', 'premium-addons-for-elementor' ),
1063
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/whatsapp-widget-for-elementor-page-builder/', 'settings-page', 'wp-dash', 'dashboard' ),
1064
+ 'doc' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/docs/whatsapp-chat-widget-tutorial/', 'settings-page', 'wp-dash', 'dashboard' ),
1065
+ 'is_pro' => true,
1066
+ ),
1067
+ ),
1068
+ ),
1069
+ 'cat-11' => array(
1070
+ 'icon' => 'extensions',
1071
+ 'elements' => array(
1072
+ array(
1073
+ 'key' => 'premium-templates',
1074
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/premium-templates-for-elementor/', 'settings-page', 'wp-dash', 'dashboard' ),
1075
+ ),
1076
+ array(
1077
+ 'key' => 'premium-equal-height',
1078
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/premium-addons-global-features-for-elementor/#equal-height-feature', 'settings-page', 'wp-dash', 'dashboard' ),
1079
+ ),
1080
+ array(
1081
+ 'key' => 'pa-display-conditions',
1082
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-display-conditions/', 'settings-page', 'wp-dash', 'dashboard' ),
1083
+ ),
1084
+ array(
1085
+ 'key' => 'premium-global-cursor',
1086
+ 'is_pro' => true,
1087
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-custom-mouse-cursor-global-feature/', 'settings-page', 'wp-dash', 'dashboard' ),
1088
+ ),
1089
+ array(
1090
+ 'key' => 'premium-global-badge',
1091
+ 'is_pro' => true,
1092
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-badge-global-addon/', 'settings-page', 'wp-dash', 'dashboard' ),
1093
+ ),
1094
+ array(
1095
+ 'key' => 'premium-floating-effects',
1096
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/elementor-floating-effects-animation/', 'settings-page', 'wp-dash', 'dashboard' ),
1097
+ ),
1098
+ array(
1099
+ 'key' => 'premium-cross-domain',
1100
+ 'demo' => Helper_Functions::get_campaign_link( 'https://premiumaddons.com/premium-addons-global-features-for-elementor/#common-features', 'settings-page', 'wp-dash', 'dashboard' ),
1101
+ ),
1102
+ array(
1103
+ 'key' => 'premium-duplicator',
1104
+ ),
1105
+ array(
1106
+ 'key' => 'premium-assets-generator',
1107
+ ),
1108
+ ),
1109
+ ),
1110
+ );
1111
+
1112
+ return $elements;
admin/includes/templates/features.php CHANGED
@@ -1,185 +1,185 @@
1
- <?php
2
-
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
-
7
- use PremiumAddons\Includes\Helper_Functions;
8
-
9
- $prefix = Helper_Functions::get_prefix();
10
-
11
- // Get elements settings
12
- $enabled_elements = self::get_enabled_elements();
13
-
14
- $elements = self::get_elements_list();
15
-
16
- $features = $elements['cat-11']['elements'];
17
-
18
- ?>
19
-
20
- <div class="pa-section-content">
21
- <div class="row">
22
- <div class="col-full">
23
- <form action="" method="POST" id="pa-features" name="pa-features" class="pa-settings-form">
24
- <div id="pa-features-settings" class="pa-settings-tab">
25
-
26
- <div class="pa-section-outer-wrap">
27
- <div class="pa-section-info-wrap">
28
- <div class="pa-section-info">
29
- <h4><?php echo sprintf( '%1$s %2$s', $prefix, __( 'Templates', 'premium-addons-for-elementor' ) ); ?></h4>
30
- <p><?php echo __( 'Build Professional Website in Minutes Using Our Pre-Made Premium Elementor Templates.', 'premium-addons-for-elementor' ); ?></p>
31
- </div>
32
-
33
- <div class="pa-section-info-cta">
34
- <label class="switch">
35
- <input type="checkbox" id="premium-templates" name="premium-templates" <?php echo checked( 1, $enabled_elements['premium-templates'], false ); ?>>
36
- <span class="slider round"></span>
37
- </label>
38
- </p>
39
- </div>
40
- </div>
41
- <a href="<?php echo esc_url( $features[0]['demo'] ); ?>" target="_blank"></a>
42
- </div>
43
-
44
- <div class="pa-section-outer-wrap">
45
- <div class="pa-section-info-wrap">
46
- <div class="pa-section-info">
47
- <h4><?php echo __( 'Equal Height', 'premium-addons-for-elementor' ); ?></h4>
48
- <p><?php echo __( 'Make your widgets the same height with just ONE click.', 'premium-addons-for-elementor' ); ?></p>
49
- </div>
50
-
51
- <div class="pa-section-info-cta">
52
- <label class="switch">
53
- <input type="checkbox" id="premium-equal-height" name="premium-equal-height" <?php echo checked( 1, $enabled_elements['premium-equal-height'], false ); ?>>
54
- <span class="slider round"></span>
55
- </label>
56
- </p>
57
- </div>
58
- </div>
59
- <a href="<?php echo esc_url( $features[1]['demo'] ); ?>" target="_blank"></a>
60
- </div>
61
-
62
- <div class="pa-section-outer-wrap">
63
- <div class="pa-section-info-wrap">
64
- <div class="pa-section-info">
65
- <h4><?php echo __( 'Custom Mouse Cursor', 'premium-addons-for-elementor' ); ?></h4>
66
- <p><?php echo __( 'Change the default mouse cursor with icon, image, or Lottie animation for any Elementor section, column, or widget.', 'premium-addons-for-elementor' ); ?></p>
67
- </div>
68
- <?php
69
-
70
- $status = ( isset( $features[3]['is_pro'] ) && ! Helper_Functions::check_papro_version() ) ? 'disabled' : checked( 1, $enabled_elements['premium-global-cursor'], false );
71
- $class = ( isset( $features[3]['is_pro'] ) && ! Helper_Functions::check_papro_version() ) ? 'pro-' : '';
72
- $switcher_class = $class . 'slider round';
73
-
74
- ?>
75
- <div class="pa-section-info-cta">
76
- <label class="switch">
77
- <input type="checkbox" id="premium-global-cursor" name="premium-global-cursor" <?php echo $status; ?>>
78
- <span class="<?php echo esc_attr( $switcher_class ); ?>"></span>
79
- </label>
80
- </p>
81
- </div>
82
- </div>
83
- <a href="<?php echo esc_url( $features[3]['demo'] ); ?>" target="_blank"></a>
84
- </div>
85
-
86
- <div class="pa-section-outer-wrap">
87
- <div class="pa-section-info-wrap">
88
- <div class="pa-section-info">
89
- <h4><?php echo __( 'Global Badge', 'premium-addons-for-elementor' ); ?></h4>
90
- <p><?php echo __( 'Add icon, image, Lottie, or SVG blob shape badge to any Elementor section, column, or widget.', 'premium-addons-for-elementor' ); ?></p>
91
- </div>
92
- <?php
93
-
94
- $status = ( isset( $features[4]['is_pro'] ) && ! Helper_Functions::check_papro_version() ) ? 'disabled' : checked( 1, $enabled_elements['premium-global-badge'], false );
95
- $class = ( isset( $features[4]['is_pro'] ) && ! Helper_Functions::check_papro_version() ) ? 'pro-' : '';
96
- $switcher_class = $class . 'slider round';
97
-
98
- ?>
99
- <div class="pa-section-info-cta">
100
- <label class="switch">
101
- <input type="checkbox" id="premium-global-badge" name="premium-global-badge" <?php echo $status; ?>>
102
- <span class="<?php echo esc_attr( $switcher_class ); ?>"></span>
103
- </label>
104
- </p>
105
- </div>
106
- </div>
107
- <a href="<?php echo esc_url( $features[4]['demo'] ); ?>" target="_blank"></a>
108
- </div>
109
-
110
- <div class="pa-section-outer-wrap">
111
- <div class="pa-section-info-wrap">
112
- <div class="pa-section-info">
113
- <h4><?php echo __( 'Display Conditions', 'premium-addons-for-elementor' ); ?></h4>
114
- <p><?php echo __( 'Show/hide content dynamically based on location, browser, operating system, user role, device type, Woocommerce, ACF, etc.', 'premium-addons-for-elementor' ); ?></p>
115
- </div>
116
-
117
- <div class="pa-section-info-cta">
118
- <label class="switch">
119
- <input type="checkbox" id="pa-display-conditions" name="pa-display-conditions" <?php echo checked( 1, $enabled_elements['pa-display-conditions'], false ); ?>>
120
- <span class="slider round"></span>
121
- </label>
122
- </p>
123
- </div>
124
- </div>
125
- <a href="<?php echo esc_url( $features[2]['demo'] ); ?>" target="_blank"></a>
126
- </div>
127
-
128
- <div class="pa-section-outer-wrap">
129
- <div class="pa-section-info-wrap">
130
- <div class="pa-section-info">
131
- <h4><?php echo __( 'Floating Effects', 'premium-addons-for-elementor' ); ?></h4>
132
- <p><?php echo __( 'Apply advanced floating effects on any Elementor element or a custom CSS selector.', 'premium-addons-for-elementor' ); ?></p>
133
- </div>
134
-
135
- <div class="pa-section-info-cta">
136
- <label class="switch">
137
- <input type="checkbox" id="premium-floating-effects" name="premium-floating-effects" <?php echo checked( 1, $enabled_elements['premium-floating-effects'], false ); ?>>
138
- <span class="slider round"></span>
139
- </label>
140
- </p>
141
- </div>
142
- </div>
143
- <a href="<?php echo esc_url( $features[5]['demo'] ); ?>" target="_blank"></a>
144
- </div>
145
-
146
- <div class="pa-section-outer-wrap">
147
- <div class="pa-section-info-wrap">
148
- <div class="pa-section-info">
149
- <h4><?php echo __( 'Cross-Domain Copy N’ Paste', 'premium-addons-for-elementor' ); ?></h4>
150
- <p><?php echo __( 'Copy any Elementor content from site to another in just ONE click.', 'premium-addons-for-elementor' ); ?></p>
151
- </div>
152
-
153
- <div class="pa-section-info-cta">
154
- <label class="switch">
155
- <input type="checkbox" id="premium-cross-domain" name="premium-cross-domain" <?php echo checked( 1, $enabled_elements['premium-cross-domain'], false ); ?>>
156
- <span class="slider round"></span>
157
- </label>
158
- </p>
159
- </div>
160
- </div>
161
- <a href="<?php echo esc_url( $features[6]['demo'] ); ?>" target="_blank"></a>
162
- </div>
163
-
164
- <div class="pa-section-outer-wrap">
165
- <div class="pa-section-info-wrap">
166
- <div class="pa-section-info">
167
- <h4><?php echo __( 'Duplicator', 'premium-addons-for-elementor' ); ?></h4>
168
- <p><?php echo __( 'Duplicate any post, page or template on your website.', 'premium-addons-for-elementor' ); ?></p>
169
- </div>
170
-
171
- <div class="pa-section-info-cta">
172
- <label class="switch">
173
- <input type="checkbox" id="premium-duplicator" name="premium-duplicator" <?php echo checked( 1, $enabled_elements['premium-duplicator'], false ); ?>>
174
- <span class="slider round"></span>
175
- </label>
176
- </p>
177
- </div>
178
- </div>
179
- </div>
180
-
181
- </div>
182
- </form> <!-- End Form -->
183
- </div>
184
- </div>
185
- </div> <!-- End Section Content -->
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ use PremiumAddons\Includes\Helper_Functions;
8
+
9
+ $prefix = Helper_Functions::get_prefix();
10
+
11
+ // Get elements settings
12
+ $enabled_elements = self::get_enabled_elements();
13
+
14
+ $elements = self::get_elements_list();
15
+
16
+ $features = $elements['cat-11']['elements'];
17
+
18
+ ?>
19
+
20
+ <div class="pa-section-content">
21
+ <div class="row">
22
+ <div class="col-full">
23
+ <form action="" method="POST" id="pa-features" name="pa-features" class="pa-settings-form">
24
+ <div id="pa-features-settings" class="pa-settings-tab">
25
+
26
+ <div class="pa-section-outer-wrap">
27
+ <div class="pa-section-info-wrap">
28
+ <div class="pa-section-info">
29
+ <h4><?php echo sprintf( '%1$s %2$s', $prefix, __( 'Templates', 'premium-addons-for-elementor' ) ); ?></h4>
30
+ <p><?php echo __( 'Build Professional Website in Minutes Using Our Pre-Made Premium Elementor Templates.', 'premium-addons-for-elementor' ); ?></p>
31
+ </div>
32
+
33
+ <div class="pa-section-info-cta">
34
+ <label class="switch">
35
+ <input type="checkbox" id="premium-templates" name="premium-templates" <?php echo checked( 1, $enabled_elements['premium-templates'], false ); ?>>
36
+ <span class="slider round"></span>
37
+ </label>
38
+ </p>
39
+ </div>
40
+ </div>
41
+ <a href="<?php echo esc_url( $features[0]['demo'] ); ?>" target="_blank"></a>
42
+ </div>
43
+
44
+ <div class="pa-section-outer-wrap">
45
+ <div class="pa-section-info-wrap">
46
+ <div class="pa-section-info">
47
+ <h4><?php echo __( 'Equal Height', 'premium-addons-for-elementor' ); ?></h4>
48
+ <p><?php echo __( 'Make your widgets the same height with just ONE click.', 'premium-addons-for-elementor' ); ?></p>
49
+ </div>
50
+
51
+ <div class="pa-section-info-cta">
52
+ <label class="switch">
53
+ <input type="checkbox" id="premium-equal-height" name="premium-equal-height" <?php echo checked( 1, $enabled_elements['premium-equal-height'], false ); ?>>
54
+ <span class="slider round"></span>
55
+ </label>
56
+ </p>
57
+ </div>
58
+ </div>
59
+ <a href="<?php echo esc_url( $features[1]['demo'] ); ?>" target="_blank"></a>
60
+ </div>
61
+
62
+ <div class="pa-section-outer-wrap">
63
+ <div class="pa-section-info-wrap">
64
+ <div class="pa-section-info">
65
+ <h4><?php echo __( 'Custom Mouse Cursor', 'premium-addons-for-elementor' ); ?></h4>
66
+ <p><?php echo __( 'Change the default mouse cursor with icon, image, or Lottie animation for any Elementor section, column, or widget.', 'premium-addons-for-elementor' ); ?></p>
67
+ </div>
68
+ <?php
69
+
70
+ $status = ( isset( $features[3]['is_pro'] ) && ! Helper_Functions::check_papro_version() ) ? 'disabled' : checked( 1, $enabled_elements['premium-global-cursor'], false );
71
+ $class = ( isset( $features[3]['is_pro'] ) && ! Helper_Functions::check_papro_version() ) ? 'pro-' : '';
72
+ $switcher_class = $class . 'slider round';
73
+
74
+ ?>
75
+ <div class="pa-section-info-cta">
76
+ <label class="switch">
77
+ <input type="checkbox" id="premium-global-cursor" name="premium-global-cursor" <?php echo $status; ?>>
78
+ <span class="<?php echo esc_attr( $switcher_class ); ?>"></span>
79
+ </label>
80
+ </p>
81
+ </div>
82
+ </div>
83
+ <a href="<?php echo esc_url( $features[3]['demo'] ); ?>" target="_blank"></a>
84
+ </div>
85
+
86
+ <div class="pa-section-outer-wrap">
87
+ <div class="pa-section-info-wrap">
88
+ <div class="pa-section-info">
89
+ <h4><?php echo __( 'Global Badge', 'premium-addons-for-elementor' ); ?></h4>
90
+ <p><?php echo __( 'Add icon, image, Lottie, or SVG blob shape badge to any Elementor section, column, or widget.', 'premium-addons-for-elementor' ); ?></p>
91
+ </div>
92
+ <?php
93
+
94
+ $status = ( isset( $features[4]['is_pro'] ) && ! Helper_Functions::check_papro_version() ) ? 'disabled' : checked( 1, $enabled_elements['premium-global-badge'], false );
95
+ $class = ( isset( $features[4]['is_pro'] ) && ! Helper_Functions::check_papro_version() ) ? 'pro-' : '';
96
+ $switcher_class = $class . 'slider round';
97
+
98
+ ?>
99
+ <div class="pa-section-info-cta">
100
+ <label class="switch">
101
+ <input type="checkbox" id="premium-global-badge" name="premium-global-badge" <?php echo $status; ?>>
102
+ <span class="<?php echo esc_attr( $switcher_class ); ?>"></span>
103
+ </label>
104
+ </p>
105
+ </div>
106
+ </div>
107
+ <a href="<?php echo esc_url( $features[4]['demo'] ); ?>" target="_blank"></a>
108
+ </div>
109
+
110
+ <div class="pa-section-outer-wrap">
111
+ <div class="pa-section-info-wrap">
112
+ <div class="pa-section-info">
113
+ <h4><?php echo __( 'Display Conditions', 'premium-addons-for-elementor' ); ?></h4>
114
+ <p><?php echo __( 'Show/hide content dynamically based on location, browser, operating system, user role, device type, Woocommerce, ACF, etc.', 'premium-addons-for-elementor' ); ?></p>
115
+ </div>
116
+
117
+ <div class="pa-section-info-cta">
118
+ <label class="switch">
119
+ <input type="checkbox" id="pa-display-conditions" name="pa-display-conditions" <?php echo checked( 1, $enabled_elements['pa-display-conditions'], false ); ?>>
120
+ <span class="slider round"></span>
121
+ </label>
122
+ </p>
123
+ </div>
124
+ </div>
125
+ <a href="<?php echo esc_url( $features[2]['demo'] ); ?>" target="_blank"></a>
126
+ </div>
127
+
128
+ <div class="pa-section-outer-wrap">
129
+ <div class="pa-section-info-wrap">
130
+ <div class="pa-section-info">
131
+ <h4><?php echo __( 'Floating Effects', 'premium-addons-for-elementor' ); ?></h4>
132
+ <p><?php echo __( 'Apply advanced floating effects on any Elementor element or a custom CSS selector.', 'premium-addons-for-elementor' ); ?></p>
133
+ </div>
134
+
135
+ <div class="pa-section-info-cta">
136
+ <label class="switch">
137
+ <input type="checkbox" id="premium-floating-effects" name="premium-floating-effects" <?php echo checked( 1, $enabled_elements['premium-floating-effects'], false ); ?>>
138
+ <span class="slider round"></span>
139
+ </label>
140
+ </p>
141
+ </div>
142
+ </div>
143
+ <a href="<?php echo esc_url( $features[5]['demo'] ); ?>" target="_blank"></a>
144
+ </div>
145
+
146
+ <div class="pa-section-outer-wrap">
147
+ <div class="pa-section-info-wrap">
148
+ <div class="pa-section-info">
149
+ <h4><?php echo __( 'Cross-Domain Copy N’ Paste', 'premium-addons-for-elementor' ); ?></h4>
150
+ <p><?php echo __( 'Copy any Elementor content from site to another in just ONE click.', 'premium-addons-for-elementor' ); ?></p>
151
+ </div>
152
+
153
+ <div class="pa-section-info-cta">
154
+ <label class="switch">
155
+ <input type="checkbox" id="premium-cross-domain" name="premium-cross-domain" <?php echo checked( 1, $enabled_elements['premium-cross-domain'], false ); ?>>
156
+ <span class="slider round"></span>
157
+ </label>
158
+ </p>
159
+ </div>
160
+ </div>
161
+ <a href="<?php echo esc_url( $features[6]['demo'] ); ?>" target="_blank"></a>
162
+ </div>
163
+
164
+ <div class="pa-section-outer-wrap">
165
+ <div class="pa-section-info-wrap">
166
+ <div class="pa-section-info">
167
+ <h4><?php echo __( 'Duplicator', 'premium-addons-for-elementor' ); ?></h4>
168
+ <p><?php echo __( 'Duplicate any post, page or template on your website.', 'premium-addons-for-elementor' ); ?></p>
169
+ </div>
170
+
171
+ <div class="pa-section-info-cta">
172
+ <label class="switch">
173
+ <input type="checkbox" id="premium-duplicator" name="premium-duplicator" <?php echo checked( 1, $enabled_elements['premium-duplicator'], false ); ?>>
174
+ <span class="slider round"></span>
175
+ </label>
176
+ </p>
177
+ </div>
178
+ </div>
179
+ </div>
180
+
181
+ </div>
182
+ </form> <!-- End Form -->
183
+ </div>
184
+ </div>
185
+ </div> <!-- End Section Content -->
admin/includes/templates/white-label.php CHANGED
@@ -1,173 +1,173 @@
1
- <?php
2
-
3
- if ( ! defined( 'ABSPATH' ) ) {
4
- exit;
5
- }
6
-
7
- use PremiumAddons\Includes\Helper_Functions;
8
-
9
- // Premium Addons Pro Classes
10
- use PremiumAddonsPro\Includes\White_Label\Helper;
11
-
12
- // Get settings
13
- $class = 'premium-white-label-form';
14
- if ( Helper_Functions::check_papro_version() ) {
15
-
16
- $settings = Helper::get_white_labeling_settings();
17
-
18
- } else {
19
- $class .= ' pro-inactive';
20
-
21
- $settings = array(
22
- 'premium-wht-lbl-name' => '',
23
- 'premium-wht-lbl-url' => '',
24
- 'premium-wht-lbl-plugin-name' => '',
25
- 'premium-wht-lbl-short-name' => '',
26
- 'premium-wht-lbl-desc' => '',
27
- 'premium-wht-lbl-row' => '',
28
- 'premium-wht-lbl-name-pro' => '',
29
- 'premium-wht-lbl-url-pro' => '',
30
- 'premium-wht-lbl-plugin-name-pro' => '',
31
- 'premium-wht-lbl-desc-pro' => '',
32
- 'premium-wht-lbl-changelog' => '',
33
- 'premium-wht-lbl-option' => '',
34
- 'premium-wht-lbl-rate' => '',
35
- 'premium-wht-lbl-about' => '',
36
- 'premium-wht-lbl-license' => '',
37
- 'premium-wht-lbl-logo' => '',
38
- 'premium-wht-lbl-version' => '',
39
- 'premium-wht-lbl-prefix' => '',
40
- 'premium-wht-lbl-badge' => '',
41
- );
42
- }
43
-
44
- if ( ! Helper_Functions::check_papro_version() ) {
45
-
46
- $campaign = Helper_Functions::get_campaign_link( 'https://premiumaddons.com/pro/', 'whitelabel-page', 'wp-dash', 'dashboard' );
47
-
48
  ?>
49
  <div class="pa-white-label-notice">
50
  <div class="pa-white-label-notice-content">
51
  <div class="pa-white-label-notice-logo">
52
- <img src="<?php echo PREMIUM_ADDONS_URL . 'admin/images/pa-logo-symbol.png'; ?>" alt="Premium Addons White Labeling Notice">
53
  </div>
54
- <h2><?php _e( 'Get Premium Addons <span>Pro</span> to Enable White Labeling Options', 'premium-addons-for-elementor' ); ?></h2>
55
- <p><?php _e( '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.', 'premium-addons-for-elementor' ); ?></p>
56
- <a class="pa-btn pa-get-pro" href="<?php echo esc_attr( $campaign ); ?>" target="_blank"><?php _e( 'Get PRO', 'premium-addons-for-elementor' ); ?></a>
57
  </div>
58
  </div>
59
  <?php
60
- }
61
-
62
- ?>
63
-
64
- <div class="pa-section-content">
65
- <div class="row">
66
- <div class="col-full">
67
- <form action="" method="POST" id="pa-white-label" class="<?php echo esc_attr( $class ); ?>" name="pa-white-label-settings">
68
  <div id="pa-white-label" class="pa-settings-tab pa-wht-lbl-settings">
69
  <div class="pa-row">
70
  <div class="pa-wht-lbl-settings-wrap">
71
- <h3 class="pa-wht-lbl-title pa-wht-lbl-head"><?php echo __( 'Free Version', 'premium-addons-for-elementor' ); ?></h3>
72
  <div class="pa-wht-lbl-group-wrap">
73
  <!-- Author Name -->
74
- <label for="premium-wht-lbl-name" class="pa-input-label"><?php echo __( 'Author Name', 'premium-addons-for-elementor' ); ?></label>
75
- <input name="premium-wht-lbl-name" id="premium-wht-lbl-name" type="text" placeholder="Leap13" value="<?php echo esc_attr( $settings['premium-wht-lbl-name'] ); ?>">
76
  <!-- Author URL -->
77
- <label for="premium-wht-lbl-url" class="pa-input-label"><?php echo __( 'Author URL', 'premium-addons-for-elementor' ); ?></label>
78
- <input name="premium-wht-lbl-url" id="premium-wht-lbl-url" type="text" placeholder="https://premiumaddons.com" value="<?php echo esc_attr( $settings['premium-wht-lbl-url'] ); ?>">
79
  <!-- Plugin Name -->
80
- <label for="premium-wht-lbl-plugin-name" class="pa-input-label"><?php echo __( 'Plugin Name', 'premium-addons-for-elementor' ); ?></label>
81
- <input name="premium-wht-lbl-plugin-name" id="premium-wht-lbl-plugin-name" type="text" placeholder="Premium Addons for Elementor" value="<?php echo esc_attr( $settings['premium-wht-lbl-plugin-name'] ); ?>">
82
-
83
  <!-- Plugin Description -->
84
- <label for="premium-wht-lbl-desc" class="pa-input-label"><?php echo __( 'Plugin Description', 'premium-addons-for-elementor' ); ?></label>
85
- <input name="premium-wht-lbl-desc" id="premium-wht-lbl-desc" type="text" placeholder="Premium Addons for Elementor plugin includes widgets and addons.." value="<?php echo esc_attr( $settings['premium-wht-lbl-desc'] ); ?>">
86
-
87
- <p class="pa-input-label"><?php echo __( 'Hide Plugin Row Meta Links', 'premium-addons-for-elementor' ); ?></p>
88
- <input name="premium-wht-lbl-row" id="premium-wht-lbl-row" type="checkbox" <?php checked( 1, $settings['premium-wht-lbl-row'], true ); ?>>
89
  <label for="premium-wht-lbl-row"></label>
90
- <span><?php echo __( 'This will hide Docs, FAQs, and Video Tutorials links located on the plugins page.', 'premium-addons-for-elementor' ); ?></span>
91
  </div>
92
  </div>
93
 
94
  <div class="pa-wht-lbl-settings-wrap">
95
- <h3 class="pa-wht-lbl-title pa-wht-lbl-head"><?php echo __( 'PRO Version', 'premium-addons-for-elementor' ); ?></h3>
96
  <div class="pa-wht-lbl-group-wrap">
97
-
98
- <label for="premium-wht-lbl-name-pro" class="pa-input-label"><?php echo __( 'Author Name', 'premium-addons-for-elementor' ); ?></label>
99
- <input name="premium-wht-lbl-name-pro" id="premium-wht-lbl-name-pro" type="text" placeholder="Leap13" value="<?php echo esc_attr( $settings['premium-wht-lbl-name-pro'] ); ?>">
100
 
101
- <label for="premium-wht-lbl-url-pro" class="pa-input-label"><?php echo __( 'Author URL', 'premium-addons-for-elementor' ); ?></label>
102
- <input name="premium-wht-lbl-url-pro" id="premium-wht-lbl-url-pro" type="text" placeholder="https://premiumaddons.com" value="<?php echo esc_attr( $settings['premium-wht-lbl-url-pro'] ); ?>">
103
-
104
- <label for="premium-wht-lbl-plugin-name-pro" class="pa-input-label"><?php echo __( 'Plugin Name', 'premium-addons-for-elementor' ); ?></label>
105
- <input name="premium-wht-lbl-plugin-name-pro" id="premium-wht-lbl-plugin-name-pro" type="text" placeholder="Premium Addons PRO for Elementor" value="<?php echo esc_attr( $settings['premium-wht-lbl-plugin-name-pro'] ); ?>">
106
-
107
- <label for="premium-wht-lbl-desc-rpo" class="pa-input-label"><?php echo __( 'Plugin Description', 'premium-addons-for-elementor' ); ?></label>
108
- <input name="premium-wht-lbl-desc-pro" id="premium-wht-lbl-desc-pro" type="text" placeholder="Premium Addons PRO Plugin Includes 33+ premium widgets & addons..." value="<?php echo esc_attr( $settings['premium-wht-lbl-desc-pro'] ); ?>">
109
-
110
- <p class="pa-input-label"><?php echo __( 'Hide Plugin Changelog Link', 'premium-addons-for-elementor' ); ?></p>
111
- <input name="premium-wht-lbl-changelog" id="premium-wht-lbl-changelog" type="checkbox" <?php checked( 1, $settings['premium-wht-lbl-changelog'], true ); ?>>
112
  <label for="premium-wht-lbl-changelog"></label>
113
- <span><?php echo __( 'This will hide the Changelog link located on the plugins page.', 'premium-addons-for-elementor' ); ?></span>
114
 
115
  </div>
116
  </div>
117
  <div class="pa-wht-lbl-settings-wrap">
118
- <h3 class="pa-wht-lbl-title pa-wht-lbl-head"><?php echo __( 'General Options', 'premium-addons-for-elementor' ); ?></h3>
119
  <div class="pa-wht-lbl-group-wrap">
120
  <!-- Widgets Category Name -->
121
- <label for="premium-wht-lbl-short-name" class="pa-input-label"><?php echo __( 'Widgets Category Name', 'premium-addons-for-elementor' ); ?></label>
122
- <input name="premium-wht-lbl-short-name" id="premium-wht-lbl-short-name" type="text" placeholder="Premium Addons" value="<?php echo esc_attr( $settings['premium-wht-lbl-short-name'] ); ?>">
123
  <!-- Widgets Prefix -->
124
- <label for="premium-wht-lbl-prefix" class="pa-input-label"><?php echo __( 'Widgets Prefix', 'premium-addons-for-elementor' ); ?></label>
125
- <input name="premium-wht-lbl-prefix" id="premium-wht-lbl-prefix" type="text" placeholder="Premium" value="<?php echo esc_attr( $settings['premium-wht-lbl-prefix'] ); ?>">
126
  <!-- Widgets Badge -->
127
- <label for="premium-wht-lbl-badge" class="pa-input-label"><?php echo __( 'Widgets Badge', 'premium-addons-for-elementor' ); ?></label>
128
- <input name="premium-wht-lbl-badge" id="premium-wht-lbl-badge" type="text" placeholder="PA" value="<?php echo esc_attr( $settings['premium-wht-lbl-badge'] ); ?>">
129
  </div>
130
  </div>
131
  </div>
132
-
133
  <div class="pa-wht-lbl-admin">
134
  <div class="pa-wht-lbl-settings-wrap">
135
- <h3 class="pa-wht-lbl-title pa-wht-lbl-head"><?php echo __( 'Admin Settings', 'premium-addons-for-elementor' ); ?></h3>
136
  <div class="pa-wht-lbl-group-wrap">
137
  <!-- Hide General Tab-->
138
- <p class="pa-input-label"><?php echo __( 'General Tab', 'premium-addons-for-elementor' ); ?></p>
139
- <input name="premium-wht-lbl-about" id="premium-wht-lbl-about" type="checkbox" <?php checked( 1, $settings['premium-wht-lbl-about'], true ); ?>>
140
  <label for="premium-wht-lbl-about"></label>
141
- <span><?php echo __( 'This will hide the General tab', 'premium-addons-for-elementor' ); ?></span>
142
 
143
  <!-- Hide Version Control Tab-->
144
- <p class="pa-input-label"><?php echo __( 'Version Control Tab', 'premium-addons-for-elementor' ); ?></p>
145
- <input name="premium-wht-lbl-version" id="premium-wht-lbl-version" type="checkbox" <?php checked( 1, $settings['premium-wht-lbl-version'], true ); ?>>
146
  <label for="premium-wht-lbl-version"></label>
147
- <span><?php echo __( 'This will hide the Version Control tab.', 'premium-addons-for-elementor' ); ?></span>
148
-
149
  <!-- Hide Logo-->
150
- <p class="pa-input-label"><?php echo __( 'Hide Premium Addons Logo', 'premium-addons-for-elementor' ); ?></p>
151
- <input name="premium-wht-lbl-logo" id="premium-wht-lbl-logo" type="checkbox" <?php checked( 1, $settings['premium-wht-lbl-logo'], true ); ?>>
152
  <label for="premium-wht-lbl-logo"></label>
153
- <span><?php echo __( 'This will hide Premium Addons logo located on the dashboard.', 'premium-addons-for-elementor' ); ?></span>
154
-
155
  <!-- Hide License Tab-->
156
- <p class="pa-input-label"><?php echo __( 'License Tab', 'premium-addons-for-elementor' ); ?></p>
157
- <input name="premium-wht-lbl-license" id="premium-wht-lbl-license" type="checkbox" <?php checked( 1, $settings['premium-wht-lbl-license'], true ); ?>>
158
  <label for="premium-wht-lbl-license"></label>
159
- <span><?php echo __( 'This will hide the License tab.', 'premium-addons-for-elementor' ); ?></span>
160
-
161
  <!-- Hide White Labeling Tab-->
162
 
163
- <p class="pa-input-label"><?php echo __( 'White Labeling Tab', 'premium-addons-for-elementor' ); ?></p>
164
- <input name="premium-wht-lbl-option" id="premium-wht-lbl-option" type="checkbox" <?php checked( 1, $settings['premium-wht-lbl-option'], true ); ?>>
165
  <label for="premium-wht-lbl-option"></label>
166
- <span><?php echo __( 'This will hide the White Labeling tab options.', 'premium-addons-for-elementor' ); ?></span>
167
 
168
  <p>
169
- <strong><?php _e( 'NOTE: ', 'premium-addons-for-elementor' ); ?></strong>
170
- <?php echo __( 'You will need to reactivate Premium Addons PRO for Elementor plugin to be able to reset White Labeling tab options.', 'premium-addons-for-elementor' ); ?>
171
  </p>
172
  </div>
173
  </div>
@@ -175,6 +175,6 @@ if ( ! Helper_Functions::check_papro_version() ) {
175
  <div class="clearfix"></div>
176
  </div>
177
  </form>
178
- </div>
179
- </div>
180
- </div> <!-- End Section Content -->
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit;
5
+ }
6
+
7
+ use PremiumAddons\Includes\Helper_Functions;
8
+
9
+ // Premium Addons Pro Classes
10
+ use PremiumAddonsPro\Includes\White_Label\Helper;
11
+
12
+ // Get settings
13
+ $class = 'premium-white-label-form';
14
+ if ( Helper_Functions::check_papro_version() ) {
15
+
16
+ $settings = Helper::get_white_labeling_settings();
17
+
18
+ } else {
19
+ $class .= ' pro-inactive';
20
+
21
+ $settings = array(
22
+ 'premium-wht-lbl-name' => '',
23
+ 'premium-wht-lbl-url' => '',
24
+ 'premium-wht-lbl-plugin-name' => '',
25
+ 'premium-wht-lbl-short-name' => '',
26
+ 'premium-wht-lbl-desc' => '',
27
+ 'premium-wht-lbl-row' => '',
28
+ 'premium-wht-lbl-name-pro' => '',
29
+ 'premium-wht-lbl-url-pro' => '',
30
+ 'premium-wht-lbl-plugin-name-pro' => '',
31
+ 'premium-wht-lbl-desc-pro' => '',
32
+ 'premium-wht-lbl-changelog' => '',
33
+ 'premium-wht-lbl-option' => '',
34
+ 'premium-wht-lbl-rate' => '',
35
+ 'premium-wht-lbl-about' => '',
36
+ 'premium-wht-lbl-license' => '',
37
+ 'premium-wht-lbl-logo' => '',
38
+ 'premium-wht-lbl-version' => '',
39
+ 'premium-wht-lbl-prefix' => '',
40
+ 'premium-wht-lbl-badge' => '',
41
+ );
42
+ }
43
+
44
+ if ( ! Helper_Functions::check_papro_version() ) {
45
+
46
+ $campaign = Helper_Functions::get_campaign_link( 'https://premiumaddons.com/pro/', 'whitelabel-page', 'wp-dash', 'dashboard' );
47
+
48
  ?>
49
  <div class="pa-white-label-notice">
50
  <div class="pa-white-label-notice-content">
51
  <div class="pa-white-label-notice-logo">
52
+ <img src="<?php echo PREMIUM_ADDONS_URL . 'admin/images/pa-logo-symbol.png'; ?>" alt="Premium Addons White Labeling Notice">
53
  </div>
54
+ <h2><?php _e( 'Get Premium Addons <span>Pro</span> to Enable White Labeling Options', 'premium-addons-for-elementor' ); ?></h2>
55
+ <p><?php _e( '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.', 'premium-addons-for-elementor' ); ?></p>
56
+ <a class="pa-btn pa-get-pro" href="<?php echo esc_attr( $campaign ); ?>" target="_blank"><?php _e( 'Get PRO', 'premium-addons-for-elementor' ); ?></a>
57
  </div>
58
  </div>
59
  <?php
60
+ }
61
+
62
+ ?>
63
+
64
+ <div class="pa-section-content">
65
+ <div class="row">
66
+ <div class="col-full">
67
+ <form action="" method="POST" id="pa-white-label" class="<?php echo esc_attr( $class ); ?>" name="pa-white-label-settings">
68
  <div id="pa-white-label" class="pa-settings-tab pa-wht-lbl-settings">
69
  <div class="pa-row">
70
  <div class="pa-wht-lbl-settings-wrap">
71
+ <h3 class="pa-wht-lbl-title pa-wht-lbl-head"><?php echo __( 'Free Version', 'premium-addons-for-elementor' ); ?></h3>
72
  <div class="pa-wht-lbl-group-wrap">
73
  <!-- Author Name -->
74
+ <label for="premium-wht-lbl-name" class="pa-input-label"><?php echo __( 'Author Name', 'premium-addons-for-elementor' ); ?></label>
75
+ <input name="premium-wht-lbl-name" id="premium-wht-lbl-name" type="text" placeholder="Leap13" value="<?php echo esc_attr( $settings['premium-wht-lbl-name'] ); ?>">
76
  <!-- Author URL -->
77
+ <label for="premium-wht-lbl-url" class="pa-input-label"><?php echo __( 'Author URL', 'premium-addons-for-elementor' ); ?></label>
78
+ <input name="premium-wht-lbl-url" id="premium-wht-lbl-url" type="text" placeholder="https://premiumaddons.com" value="<?php echo esc_attr( $settings['premium-wht-lbl-url'] ); ?>">
79
  <!-- Plugin Name -->
80
+ <label for="premium-wht-lbl-plugin-name" class="pa-input-label"><?php echo __( 'Plugin Name', 'premium-addons-for-elementor' ); ?></label>
81
+ <input name="premium-wht-lbl-plugin-name" id="premium-wht-lbl-plugin-name" type="text" placeholder="Premium Addons for Elementor" value="<?php echo esc_attr( $settings['premium-wht-lbl-plugin-name'] ); ?>">
82
+
83
  <!-- Plugin Description -->
84
+ <label for="premium-wht-lbl-desc" class="pa-input-label"><?php echo __( 'Plugin Description', 'premium-addons-for-elementor' ); ?></label>
85
+ <input name="premium-wht-lbl-desc" id="premium-wht-lbl-desc" type="text" placeholder="Premium Addons for Elementor plugin includes widgets and addons.." value="<?php echo esc_attr( $settings['premium-wht-lbl-desc'] ); ?>">
86
+
87
+ <p class="pa-input-label"><?php echo __( 'Hide Plugin Row Meta Links', 'premium-addons-for-elementor' ); ?></p>
88
+ <input name="premium-wht-lbl-row" id="premium-wht-lbl-row" type="checkbox" <?php checked( 1, $settings['premium-wht-lbl-row'], true ); ?>>
89
  <label for="premium-wht-lbl-row"></label>
90
+ <span><?php echo __( 'This will hide Docs, FAQs, and Video Tutorials links located on the plugins page.', 'premium-addons-for-elementor' ); ?></span>
91
  </div>
92
  </div>
93
 
94
  <div class="pa-wht-lbl-settings-wrap">
95
+ <h3 class="pa-wht-lbl-title pa-wht-lbl-head"><?php echo __( 'PRO Version', 'premium-addons-for-elementor' ); ?></h3>
96
  <div class="pa-wht-lbl-group-wrap">
97
+
98
+ <label for="premium-wht-lbl-name-pro" class="pa-input-label"><?php echo __( 'Author Name', 'premium-addons-for-elementor' ); ?></label>
99
+ <input name="premium-wht-lbl-name-pro" id="premium-wht-lbl-name-pro" type="text" placeholder="Leap13" value="<?php echo esc_attr( $settings['premium-wht-lbl-name-pro'] ); ?>">
100
 
101
+ <label for="premium-wht-lbl-url-pro" class="pa-input-label"><?php echo __( 'Author URL', 'premium-addons-for-elementor' ); ?></label>
102
+ <input name="premium-wht-lbl-url-pro" id="premium-wht-lbl-url-pro" type="text" placeholder="https://premiumaddons.com" value="<?php echo esc_attr( $settings['premium-wht-lbl-url-pro'] ); ?>">
103
+
104
+ <label for="premium-wht-lbl-plugin-name-pro" class="pa-input-label"><?php echo __( 'Plugin Name', 'premium-addons-for-elementor' ); ?></label>
105
+ <input name="premium-wht-lbl-plugin-name-pro" id="premium-wht-lbl-plugin-name-pro" type="text" placeholder="Premium Addons PRO for Elementor" value="<?php echo esc_attr( $settings['premium-wht-lbl-plugin-name-pro'] ); ?>">
106
+
107
+ <label for="premium-wht-lbl-desc-rpo" class="pa-input-label"><?php echo __( 'Plugin Description', 'premium-addons-for-elementor' ); ?></label>
108
+ <input name="premium-wht-lbl-desc-pro" id="premium-wht-lbl-desc-pro" type="text" placeholder="Premium Addons PRO Plugin Includes 33+ premium widgets & addons..." value="<?php echo esc_attr( $settings['premium-wht-lbl-desc-pro'] ); ?>">
109
+
110
+ <p class="pa-input-label"><?php echo __( 'Hide Plugin Changelog Link', 'premium-addons-for-elementor' ); ?></p>
111
+ <input name="premium-wht-lbl-changelog" id="premium-wht-lbl-changelog" type="checkbox" <?php checked( 1, $settings['premium-wht-lbl-changelog'], true ); ?>>
112
  <label for="premium-wht-lbl-changelog"></label>
113
+ <span><?php echo __( 'This will hide the Changelog link located on the plugins page.', 'premium-addons-for-elementor' ); ?></span>
114
 
115
  </div>
116
  </div>
117
  <div class="pa-wht-lbl-settings-wrap">
118
+ <h3 class="pa-wht-lbl-title pa-wht-lbl-head"><?php echo __( 'General Options', 'premium-addons-for-elementor' ); ?></h3>
119
  <div class="pa-wht-lbl-group-wrap">
120
  <!-- Widgets Category Name -->
121
+ <label for="premium-wht-lbl-short-name" class="pa-input-label"><?php echo __( 'Widgets Category Name', 'premium-addons-for-elementor' ); ?></label>
122
+ <input name="premium-wht-lbl-short-name" id="premium-wht-lbl-short-name" type="text" placeholder="Premium Addons" value="<?php echo esc_attr( $settings['premium-wht-lbl-short-name'] ); ?>">
123
  <!-- Widgets Prefix -->
124
+ <label for="premium-wht-lbl-prefix" class="pa-input-label"><?php echo __( 'Widgets Prefix', 'premium-addons-for-elementor' ); ?></label>
125
+ <input name="premium-wht-lbl-prefix" id="premium-wht-lbl-prefix" type="text" placeholder="Premium" value="<?php echo esc_attr( $settings['premium-wht-lbl-prefix'] ); ?>">
126
  <!-- Widgets Badge -->
127
+ <label for="premium-wht-lbl-badge" class="pa-input-label"><?php echo __( 'Widgets Badge', 'premium-addons-for-elementor' ); ?></label>
128
+ <input name="premium-wht-lbl-badge" id="premium-wht-lbl-badge" type="text" placeholder="PA" value="<?php echo esc_attr( $settings['premium-wht-lbl-badge'] ); ?>">
129
  </div>
130
  </div>
131
  </div>
132
+
133
  <div class="pa-wht-lbl-admin">
134
  <div class="pa-wht-lbl-settings-wrap">
135
+ <h3 class="pa-wht-lbl-title pa-wht-lbl-head"><?php echo __( 'Admin Settings', 'premium-addons-for-elementor' ); ?></h3>
136
  <div class="pa-wht-lbl-group-wrap">
137
  <!-- Hide General Tab-->
138
+ <p class="pa-input-label"><?php echo __( 'General Tab', 'premium-addons-for-elementor' ); ?></p>
139
+ <input name="premium-wht-lbl-about" id="premium-wht-lbl-about" type="checkbox" <?php checked( 1, $settings['premium-wht-lbl-about'], true ); ?>>
140
  <label for="premium-wht-lbl-about"></label>
141
+ <span><?php echo __( 'This will hide the General tab', 'premium-addons-for-elementor' ); ?></span>
142
 
143
  <!-- Hide Version Control Tab-->
144
+ <p class="pa-input-label"><?php echo __( 'Version Control Tab', 'premium-addons-for-elementor' ); ?></p>
145
+ <input name="premium-wht-lbl-version" id="premium-wht-lbl-version" type="checkbox" <?php checked( 1, $settings['premium-wht-lbl-version'], true ); ?>>
146
  <label for="premium-wht-lbl-version"></label>
147
+ <span><?php echo __( 'This will hide the Version Control tab.', 'premium-addons-for-elementor' ); ?></span>
148
+
149
  <!-- Hide Logo-->
150
+ <p class="pa-input-label"><?php echo __( 'Hide Premium Addons Logo', 'premium-addons-for-elementor' ); ?></p>
151
+ <input name="premium-wht-lbl-logo" id="premium-wht-lbl-logo" type="checkbox" <?php checked( 1, $settings['premium-wht-lbl-logo'], true ); ?>>
152
  <label for="premium-wht-lbl-logo"></label>
153
+ <span><?php echo __( 'This will hide Premium Addons logo located on the dashboard.', 'premium-addons-for-elementor' ); ?></span>
154
+
155
  <!-- Hide License Tab-->
156
+ <p class="pa-input-label"><?php echo __( 'License Tab', 'premium-addons-for-elementor' ); ?></p>
157
+ <input name="premium-wht-lbl-license" id="premium-wht-lbl-license" type="checkbox" <?php checked( 1, $settings['premium-wht-lbl-license'], true ); ?>>
158
  <label for="premium-wht-lbl-license"></label>
159
+ <span><?php echo __( 'This will hide the License tab.', 'premium-addons-for-elementor' ); ?></span>
160
+
161
  <!-- Hide White Labeling Tab-->
162
 
163
+ <p class="pa-input-label"><?php echo __( 'White Labeling Tab', 'premium-addons-for-elementor' ); ?></p>
164
+ <input name="premium-wht-lbl-option" id="premium-wht-lbl-option" type="checkbox" <?php checked( 1, $settings['premium-wht-lbl-option'], true ); ?>>
165
  <label for="premium-wht-lbl-option"></label>
166
+ <span><?php echo __( 'This will hide the White Labeling tab options.', 'premium-addons-for-elementor' ); ?></span>
167
 
168
  <p>
169
+ <strong><?php _e( 'NOTE: ', 'premium-addons-for-elementor' ); ?></strong>
170
+ <?php echo __( 'You will need to reactivate Premium Addons PRO for Elementor plugin to be able to reset White Labeling tab options.', 'premium-addons-for-elementor' ); ?>
171
  </p>
172
  </div>
173
  </div>
175
  <div class="clearfix"></div>
176
  </div>
177
  </form>
178
+ </div>
179
+ </div>
180
+ </div> <!-- End Section Content -->
assets/editor/fonts/pa-elements.svg CHANGED
@@ -1,68 +1,68 @@
1
- <?xml version="1.0" standalone="no"?>
2
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
- <svg xmlns="http://www.w3.org/2000/svg">
4
- <metadata>Generated by IcoMoon</metadata>
5
- <defs>
6
- <font id="icomoon" horiz-adv-x="1024">
7
- <font-face units-per-em="1024" ascent="960" descent="-64" />
8
- <missing-glyph horiz-adv-x="1024" />
9
- <glyph unicode="&#x20;" horiz-adv-x="512" d="" />
10
- <glyph unicode="&#xe900;" glyph-name="trustpilot" horiz-adv-x="1077" d="M205.661-64l125.981 393.825-331.642 239.041 409.977 2.961 128.404 388.172 125.443-388.172 412.938-2.961-538.381-388.172-332.719-244.694zM874.869-61.308l-336.488 242.002 233.119 64.606 103.369-306.608z" />
11
- <glyph unicode="&#xe901;" glyph-name="pa-behance-feed" d="M407.738 459.171l-9.309 5.585 9.309 7.447c35.375 27.927 55.855 68.887 55.855 113.571 0 80.058-65.164 145.222-145.222 145.222h-232.727c-13.033 0-22.342-9.309-22.342-22.342v-519.447c0-13.033 9.309-22.342 22.342-22.342h234.589c89.367 0 160.116 72.611 160.116 160.116-1.862 52.131-27.927 102.4-72.611 132.189zM318.371 209.687h-210.385v232.727h210.385c63.302 0 115.433-52.131 115.433-115.433 0-65.164-50.269-117.295-115.433-117.295zM107.985 686.313h210.385c55.855 0 98.676-44.684 98.676-98.676s-44.684-98.676-98.676-98.676h-210.385v197.353zM746.589 593.222c-117.295 0-214.109-96.815-214.109-214.109s96.815-214.109 214.109-214.109c57.716 0 111.709 22.342 150.807 63.302 5.585 5.585 5.585 13.033 5.585 16.756s0 9.309-7.447 16.756c-5.585 5.585-13.033 7.447-16.756 7.447-5.585 0-11.171-1.862-16.756-7.447-31.651-31.651-74.473-50.269-119.156-50.269-81.92 0-150.807 57.716-165.702 137.775l-1.862 9.309h359.331c13.033 0 22.342 9.309 22.342 22.342 3.724 117.295-91.229 212.247-210.385 212.247zM914.153 401.455h-335.127l1.862 9.309c14.895 80.058 85.644 137.775 165.702 137.775s150.807-57.716 165.702-137.775l1.862-9.309zM889.949 691.898c0-13.033-9.309-22.342-22.342-22.342h-256.931c-13.033 0-22.342 9.309-22.342 22.342s9.309 22.342 22.342 22.342h256.931c11.171 0 22.342-9.309 22.342-22.342z" />
12
- <glyph unicode="&#xe902;" glyph-name="pa-charts" d="M584.611 896.698c-9.309 0-18.618-7.447-18.618-18.618v-359.331c0-9.309 7.447-18.618 18.618-18.618h359.331c9.309 0 18.618 7.447 18.618 18.618 0 93.091-33.513 180.596-94.953 249.484-70.749 81.92-173.149 128.465-282.996 128.465v0zM603.229 537.367v322.095c91.229-5.585 176.873-46.545 238.313-115.433 50.269-57.716 80.058-130.327 85.644-208.524h-323.956zM875.055 407.040c0 9.309-7.447 18.618-18.618 18.618h-370.502v368.64c0 9.309-7.447 18.618-18.618 18.618-225.28 0-407.738-182.458-407.738-407.738 0-223.418 182.458-407.738 407.738-407.738 225.28 1.862 407.738 184.32 407.738 409.6v0zM467.316 36.538c-204.8 0-370.502 165.702-370.502 370.502 0 197.353 156.393 361.193 351.884 370.502v-370.502c0-9.309 7.447-18.618 18.618-18.618h370.502c-9.309-195.491-171.287-351.884-370.502-351.884v0z" />
13
- <glyph unicode="&#xe903;" glyph-name="pa-color-transition" d="M943.942 401.455h-191.767l135.913 135.913c7.447 7.447 7.447 18.618 0 26.065l-258.793 258.793c-3.724 3.724-7.447 5.585-13.033 5.585s-9.309-1.862-13.033-5.585l-135.913-135.913v199.215c0 9.309-7.447 18.618-18.618 18.618h-366.778c-9.309 0-18.618-7.447-18.618-18.618v-698.182c0-104.262 85.644-189.905 189.905-189.905h690.735c9.309 0 18.618 7.447 18.618 18.618v366.778c0 9.309-7.447 18.618-18.618 18.618zM467.316 628.596l230.865-230.865-126.604-126.604-104.262 104.262v253.207zM467.316 187.345v137.775l78.196-78.196-80.058-80.058c0 5.585 1.862 13.033 1.862 20.48zM100.538 868.771h331.404v-165.702h-331.404v165.702zM100.538 665.833h331.404v-178.735h-331.404v178.735zM100.538 449.862h331.404v-178.735h-331.404v178.735zM277.411 34.676h-22.342c-42.822 0-80.058 16.756-107.985 44.684s-44.684 67.025-44.684 107.985v48.407h331.404v-48.407c-3.724-83.782-72.611-152.669-156.393-152.669zM497.105 34.676h-107.985c18.618 14.895 35.375 31.651 48.407 52.131l59.578 59.578v-111.709zM711.215 34.676h-178.735v148.945l178.735 178.735v-327.68zM489.658 656.524l126.604 126.604 232.727-232.727-126.604-126.604-232.727 232.727zM925.324 34.676h-178.735v329.542h178.735v-329.542zM310.924 159.418c0-24.204-20.48-44.684-46.545-44.684-24.204 0-46.545 20.48-46.545 44.684 0 26.065 20.48 46.545 46.545 46.545s46.545-20.48 46.545-46.545z" />
14
- <glyph unicode="&#xe904;" glyph-name="pa-content-switcher" d="M739.142 669.556h-454.284c-122.88 0-221.556-98.676-221.556-221.556s98.676-221.556 221.556-221.556h454.284c122.88 0 221.556 98.676 221.556 221.556s-98.676 221.556-221.556 221.556zM739.142 263.68h-454.284c-102.4 0-184.32 81.92-184.32 184.32s81.92 184.32 184.32 184.32h454.284c102.4 0 184.32-81.92 184.32-184.32s-81.92-184.32-184.32-184.32zM737.28 611.84c-91.229 0-163.84-72.611-163.84-163.84s72.611-163.84 163.84-163.84c91.229 0 163.84 72.611 163.84 163.84s-72.611 163.84-163.84 163.84zM737.28 319.535c-70.749 0-128.465 57.716-128.465 128.465s57.716 128.465 128.465 128.465c70.749 0 128.465-57.716 128.465-128.465s-57.716-128.465-128.465-128.465z" />
15
- <glyph unicode="&#xe905;" glyph-name="pa-facebook-feed" d="M582.749-0.698h-193.629v402.153h-81.92c-13.033 0-24.204 11.171-24.204 24.204v135.913c0 13.033 11.171 24.204 24.204 24.204h81.92v104.262c0 94.953 59.578 206.662 227.142 206.662 59.578 0 102.4-5.585 104.262-5.585l18.618-1.862-3.724-173.149h-20.48c0 0-44.684 0-93.091 0-35.375 0-40.96-9.309-40.96-44.684v-85.644h132.189c14.895 0 26.065-11.171 24.204-26.065l-5.585-135.913c0-13.033-11.171-24.204-24.204-24.204h-126.604l1.862-400.291zM430.080 38.4h113.571v404.015h150.807l5.585 104.262h-156.393v126.604c0 40.96 9.309 83.782 80.058 83.782 27.927 0 55.855 0 72.611 0l1.862 96.815c-16.756 1.862-46.545 3.724-81.92 3.724-137.775 0-188.044-85.644-188.044-167.564v-143.36h-106.124v-104.262h106.124l1.862-404.015z" />
16
- <glyph unicode="&#xe906;" glyph-name="pa-facebook-reviews" d="M606.953 671.418c0 0 0 0 0 0s0 0 0 0v0c0 0 0 0 0 0zM741.004 583.913c0-1.862 0-1.862 1.862-1.862 0 0 0 0-1.862 1.862 0 0 0 0 0 0s0 0 0 0 0 0 0 0zM800.582 550.4c0 13.033-3.724 24.204-11.171 33.513 13.033 11.171 22.342 27.927 22.342 46.545 0 33.513-26.065 59.578-59.578 59.578h-102.4c3.724 14.895 7.447 33.513 9.309 63.302 0 0 0 0 0 0s0 0 0 1.862c0 0 3.724 35.375 1.862 67.025 0 0 0 1.862 0 1.862v0c-1.862 18.618-5.585 42.822-24.204 57.716-13.033 11.171-29.789 14.895-48.407 13.033-39.098-3.724-46.545-40.96-48.407-61.44 0 0 0 0 0 0 0-1.862 0-1.862 0-3.724-1.862-18.618-7.447-57.716-11.171-70.749 0 0 0 0 0-1.862 0 0 0 0 0-1.862-14.895-55.855-70.749-122.88-96.815-147.084-11.171 13.033-26.065 20.48-42.822 20.48h-119.156c-31.651 0-57.716-27.927-57.716-63.302v-173.149c0-35.375 26.065-63.302 57.716-63.302h119.156c22.342 0 42.822 14.895 52.131 37.236 18.618-16.756 40.96-35.375 70.749-37.236 18.618 0 46.545 0 81.92 0 52.131 0 106.124 0 121.018 0h3.724c1.862 0 1.862 0 3.724 0 0 0 0 0 0 0v0c0 0 0 0 0 0 29.789 1.862 53.993 27.927 53.993 59.578 0 13.033-3.724 24.204-11.171 33.513 1.862 1.862 3.724 3.724 5.585 5.585 11.171 11.171 16.756 26.065 16.756 42.822 0 13.033-3.724 24.204-11.171 33.513 14.895 11.171 24.204 27.927 24.204 46.545zM409.6 392.145c0-14.895-9.309-26.065-20.48-26.065h-119.156c-11.171 0-20.48 11.171-20.48 26.065v173.149c0 14.895 9.309 26.065 20.48 26.065h119.156c11.171 0 20.48-11.171 20.48-26.065v-173.149zM752.175 608.116c-1.862 0-3.724 0-5.585-1.862-7.447-1.862-13.033-9.309-13.033-16.756 0-3.724 0-5.585 1.862-9.309 0-1.862 1.862-1.862 1.862-3.724 1.862-1.862 1.862-1.862 3.724-3.724 0 0 1.862 0 1.862-1.862 1.862 0 1.862-1.862 3.724-1.862 9.309 0 16.756-9.309 16.756-18.618 0-13.033-9.309-22.342-22.342-22.342v0c-7.447 0-14.895-5.585-18.618-13.033-3.724-9.309 3.724-20.48 13.033-22.342s16.756-11.171 16.756-22.342c0-13.033-9.309-22.342-22.342-22.342-9.309 0-14.895-5.585-16.756-13.033 0 0 0-1.862 0-1.862s0 0 0 0 0 0 0 0c0-1.862 0-3.724 0-5.585s0-1.862 0-3.724 1.862-1.862 1.862-3.724c0 0 0 0 0-1.862v0c0 0 0 0 0 0s1.862-1.862 1.862-1.862c0 0 0 0 0 0 1.862-1.862 3.724-3.724 7.447-3.724 9.309-3.724 14.895-11.171 14.895-22.342 0-13.033-9.309-22.342-22.342-22.342 0 0-1.862 0-1.862 0h-1.862c-42.822 0-147.084-1.862-199.215 0-18.618 0-39.098 18.618-53.993 33.513-3.724 3.724-7.447 7.447-11.171 11.171v152.669c0 1.862 0 5.585 0 7.447 37.236 27.927 102.4 113.571 117.295 175.011 0 0 0 0 0 0s0 1.862 0 1.862c3.724 16.756 9.309 57.716 11.171 70.749 0 0 0 0 0 0 0 1.862 0 1.862 0 3.724 3.724 31.651 9.309 31.651 16.756 31.651 9.309 1.862 16.756 0 20.48-3.724 9.309-7.447 11.171-24.204 11.171-33.513v-3.724c0 0 0 0 0 0s0 0 0 0v0c1.862-22.342 0-44.684-1.862-53.993 0 0 0 0 0 0s0-1.862 0-1.862c-3.724-52.131-11.171-72.611-13.033-76.335 0 0 0 0 0 0 0-1.862-1.862-1.862-1.862-3.724v0c0 0 0 0 0 0 0-1.862 0-3.724 0-5.585v0c0 0 0 0 0 0s0 0 0 0 0-1.862 0-1.862 0-1.862 1.862-3.724v0c0-1.862 1.862-3.724 3.724-5.585s1.862-1.862 3.724-3.724c3.724-1.862 5.585-3.724 9.309-3.724h128.465c13.033 0 22.342-9.309 22.342-22.342-3.724-14.895-13.033-24.204-26.065-24.204zM714.938 416.349c0 1.862 0 1.862 0 0 0 0 0 0 0 0s0 0 0 0zM711.215 421.935c0 0 0-1.862 1.862-1.862 0 0 0 0 0 0s-1.862 1.862-1.862 1.862zM342.575 148.247c-3.724 11.171-13.033 18.618-24.204 18.618l-50.269 3.724-18.618 46.545c-3.724 11.171-14.895 16.756-26.065 16.756s-22.342-7.447-26.065-16.756l-18.618-46.545-50.269-3.724c-11.171 0-20.48-7.447-24.204-18.618s0-22.342 9.309-29.789l39.098-31.651-11.171-48.407c-1.862-9.309 0-16.756 5.585-24.204 9.309-11.171 26.065-14.895 37.236-7.447l42.822 26.065 42.822-26.065c3.724-3.724 9.309-5.585 14.895-5.585 9.309 0 16.756 3.724 22.342 11.171s7.447 14.895 5.585 24.204l-18.618 48.407 40.96 33.513c7.447 7.447 11.171 18.618 7.447 29.789zM269.964 107.287c-7.447-5.585-11.171-14.895-7.447-24.204l11.171-46.545-40.96 26.065c-3.724 1.862-7.447 3.724-13.033 3.724s-9.309-1.862-13.033-3.724l-39.098-26.065 11.171 46.545c1.862 9.309-1.862 18.618-7.447 24.204l-37.236 29.789 48.407 3.724c9.309 0 16.756 7.447 20.48 14.895l18.618 44.684 18.618-44.684c3.724-9.309 11.171-14.895 20.48-14.895l48.407-3.724-39.098-29.789zM633.018 148.247c-3.724 11.171-13.033 18.618-24.204 18.618l-50.269 3.724-18.618 46.545c-3.724 11.171-14.895 16.756-26.065 16.756s-22.342-7.447-26.065-16.756l-18.618-46.545-50.269-3.724c-11.171 0-20.48-7.447-24.204-18.618s0-22.342 9.309-29.789l39.098-31.651-11.171-48.407c-1.862-9.309 0-16.756 3.724-24.204 9.309-11.171 26.065-14.895 37.236-7.447l42.822 26.065 42.822-26.065c3.724-3.724 9.309-5.585 14.895-5.585 9.309 0 16.756 3.724 22.342 11.171s7.447 14.895 5.585 24.204l-16.756 48.407 40.96 33.513c7.447 7.447 11.171 18.618 7.447 29.789zM562.269 107.287c-7.447-5.585-11.171-14.895-7.447-24.204l11.171-46.545-40.96 26.065c-3.724 1.862-7.447 3.724-13.033 3.724s-9.309-1.862-13.033-3.724l-40.96-24.204 11.171 46.545c1.862 9.309-1.862 18.618-7.447 24.204l-37.236 29.789 48.407 3.724c9.309 0 16.756 7.447 20.48 14.895l18.618 44.684 18.618-44.684c3.724-9.309 11.171-14.895 20.48-14.895l48.407-3.724-37.236-31.651zM923.462 148.247c-3.724 11.171-13.033 18.618-24.204 18.618l-50.269 3.724-18.618 46.545c-3.724 11.171-14.895 16.756-26.065 16.756s-22.342-7.447-26.065-16.756l-18.618-46.545-52.131-1.862c-11.171 0-20.48-7.447-24.204-18.618s0-22.342 9.309-29.789l39.098-31.651-11.171-48.407c-1.862-9.309 0-16.756 5.585-24.204 9.309-11.171 26.065-14.895 37.236-7.447l42.822 26.065 42.822-26.065c5.585-3.724 9.309-5.585 14.895-5.585 7.447 0 16.756 3.724 22.342 11.171s7.447 14.895 5.585 24.204l-16.756 46.545 40.96 33.513c9.309 7.447 11.171 18.618 7.447 29.789zM852.713 107.287c-7.447-5.585-11.171-14.895-7.447-24.204l11.171-46.545-40.96 26.065c-3.724 1.862-7.447 3.724-13.033 3.724s-9.309-1.862-13.033-3.724l-40.96-24.204 11.171 46.545c1.862 9.309 0 18.618-7.447 24.204l-37.236 29.789 48.407 1.862c9.309 0 16.756 7.447 20.48 14.895l18.618 44.684 18.618-44.684c3.724-9.309 11.171-14.895 20.48-14.895l48.407-3.724-37.236-29.789z" />
17
- <glyph unicode="&#xe907;" glyph-name="pa-flip-box" d="M943.942 820.364h-59.578v59.578c0 11.171-9.309 18.618-18.618 18.618h-785.687c-11.171 0-18.618-9.309-18.618-18.618v-785.687c0-11.171 9.309-18.618 18.618-18.618h59.578v-59.578c0-11.171 9.309-18.618 20.48-18.618h783.825c11.171 0 18.618 9.309 18.618 18.618v785.687c0 9.309-7.447 18.618-18.618 18.618zM100.538 114.735v744.727h744.727v-744.727h-744.727zM923.462 36.538h-744.727v39.098h687.011c11.171 0 18.618 9.309 18.618 18.618v687.011h39.098v-744.727zM716.8 656.524h-487.796c-7.447 0-13.033 9.309-13.033 20.48s5.585 20.48 13.033 20.48h487.796c7.447 0 13.033-9.309 13.033-20.48s-5.585-20.48-13.033-20.48zM716.8 468.48h-487.796c-7.447 0-13.033 9.309-13.033 20.48s5.585 20.48 13.033 20.48h487.796c7.447 0 13.033-9.309 13.033-20.48 0-13.033-5.585-20.48-13.033-20.48zM716.8 278.575h-487.796c-7.447 0-13.033 9.309-13.033 20.48s5.585 20.48 13.033 20.48h487.796c7.447 0 13.033-9.309 13.033-20.48s-5.585-20.48-13.033-20.48z" />
18
- <glyph unicode="&#xe908;" glyph-name="pa-google-reviews" d="M802.444 654.662c-1.862 7.447-9.309 14.895-16.756 14.895h-268.102c-9.309 0-18.618-7.447-18.618-18.618v-109.847c0-9.309 7.447-18.618 18.618-18.618h121.018c-13.033-20.48-29.789-39.098-52.131-52.131s-48.407-20.48-74.473-20.48c-61.44 0-117.295 39.098-137.775 94.953-5.585 16.756-9.309 33.513-9.309 52.131 0 16.756 1.862 33.513 7.447 48.407 20.48 59.578 76.335 98.676 139.636 98.676 27.927 0 53.993-7.447 78.196-22.342 5.585-3.724 14.895-3.724 20.48 1.862l89.367 74.473c5.585 5.585 7.447 9.309 7.447 14.895s-1.862 11.171-5.585 13.033c-52.131 44.684-119.156 68.887-188.044 68.887-163.84 0-296.029-132.189-296.029-296.029 0-48.407 13.033-96.815 35.375-139.636 52.131-96.815 150.807-156.393 260.655-156.393 68.887 0 134.051 24.204 188.044 67.025 52.131 42.822 87.505 102.4 102.4 167.564 3.724 20.48 5.585 40.96 5.585 61.44-1.862 18.618-3.724 37.236-7.447 55.855zM512 859.462c52.131 0 106.124-16.756 148.945-46.545l-63.302-52.131c-26.065 13.033-55.855 20.48-85.644 20.48-68.887 0-132.189-39.098-163.84-100.538l-61.44 50.269c48.407 80.058 134.051 128.465 225.28 128.465zM335.127 647.215c-3.724-14.895-5.585-31.651-5.585-48.407 0-18.618 1.862-35.375 7.447-52.131l-63.302-52.131c-14.895 33.513-22.342 68.887-22.342 104.262s7.447 68.887 20.48 98.676l63.302-50.269zM512 340.015c-89.367 0-175.011 48.407-221.556 124.742l61.44 50.269c13.033-24.204 33.513-46.545 55.855-63.302 31.651-22.342 67.025-33.513 106.124-33.513 27.927 0 55.855 7.447 81.92 18.618l63.302-52.131c-44.684-29.789-94.953-44.684-147.084-44.684zM767.069 544.815c-11.171-53.993-39.098-102.4-80.058-139.636l-61.44 50.269c26.065 20.48 46.545 48.407 57.716 80.058 1.862 5.585 1.862 11.171-1.862 16.756s-9.309 7.447-14.895 7.447h-130.327v74.473h234.589c1.862-11.171 1.862-22.342 1.862-33.513 0-18.618-1.862-37.236-5.585-55.855zM338.851 150.109c-3.724 11.171-13.033 18.618-26.065 20.48l-52.131 3.724-20.48 48.407c-3.724 11.171-14.895 18.618-26.065 18.618s-22.342-7.447-26.065-18.618l-18.618-48.407-52.131-3.724c-11.171 0-22.342-7.447-26.065-18.618s0-24.204 9.309-31.651l39.098-31.651-9.309-52.131c-1.862-9.309 0-16.756 3.724-24.204 9.309-11.171 26.065-14.895 37.236-7.447l42.822 27.927 44.684-27.927c5.585-3.724 9.309-5.585 14.895-5.585 9.309 0 16.756 3.724 22.342 11.171s7.447 16.756 5.585 24.204l-11.171 50.269 40.96 33.513c9.309 7.447 11.171 20.48 7.447 31.651zM266.24 107.287c-7.447-5.585-11.171-14.895-7.447-24.204l11.171-46.545-40.96 26.065c-3.724 1.862-7.447 3.724-13.033 3.724-3.724 0-9.309-1.862-13.033-3.724l-40.96-26.065 11.171 46.545c1.862 9.309-1.862 18.618-7.447 24.204l-37.236 31.651 48.407 3.724c9.309 0 16.756 5.585 20.48 14.895l18.618 46.545 18.618-46.545c3.724-9.309 11.171-14.895 20.48-14.895l48.407-3.724-37.236-31.651zM634.88 150.109c-3.724 11.171-13.033 18.618-26.065 20.48l-50.269 1.862-20.48 48.407c-3.724 11.171-14.895 18.618-26.065 18.618s-22.342-7.447-26.065-18.618l-18.618-48.407-52.131-3.724c-11.171 0-22.342-7.447-26.065-18.618s0-24.204 9.309-31.651l39.098-31.651-13.033-50.269c-1.862-9.309 0-16.756 5.585-24.204 9.309-11.171 26.065-14.895 37.236-7.447l42.822 27.927 44.684-27.927c3.724-3.724 9.309-5.585 14.895-5.585 9.309 0 16.756 3.724 22.342 11.171s7.447 16.756 5.585 24.204l-11.171 50.269 40.96 33.513c7.447 7.447 11.171 20.48 7.447 31.651zM562.269 107.287c-7.447-5.585-11.171-14.895-9.309-24.204l11.171-46.545-40.96 26.065c-3.724 1.862-7.447 3.724-13.033 3.724s-9.309-1.862-13.033-3.724l-40.96-26.065 11.171 46.545c1.862 9.309 0 18.618-7.447 24.204l-37.236 31.651 48.407 3.724c9.309 0 16.756 5.585 20.48 14.895l18.618 46.545 18.618-46.545c3.724-9.309 11.171-14.895 20.48-14.895l48.407-3.724-35.375-31.651zM930.909 150.109c-3.724 11.171-13.033 18.618-26.065 20.48l-52.131 3.724-20.48 48.407c-3.724 11.171-14.895 18.618-26.065 18.618s-22.342-7.447-26.065-18.618l-18.618-48.407-52.131-3.724c-11.171 0-22.342-7.447-26.065-18.618s0-24.204 9.309-31.651l39.098-31.651-13.033-50.269c-1.862-9.309 0-16.756 3.724-24.204 9.309-11.171 26.065-14.895 37.236-7.447l42.822 27.927 44.684-27.927c5.585-3.724 9.309-5.585 14.895-5.585 9.309 0 16.756 3.724 22.342 11.171s7.447 14.895 5.585 24.204l-9.309 48.407 40.96 33.513c9.309 7.447 13.033 20.48 9.309 31.651zM858.298 107.287c-7.447-5.585-11.171-14.895-7.447-24.204l11.171-46.545-42.822 24.204c-3.724 1.862-7.447 3.724-13.033 3.724s-9.309-1.862-13.033-3.724l-40.96-26.065 11.171 46.545c1.862 9.309-1.862 18.618-7.447 24.204l-37.236 31.651 48.407 3.724c9.309 0 16.756 5.585 20.48 14.895l18.618 46.545 18.618-46.545c3.724-9.309 11.171-14.895 20.48-14.895l48.407-3.724-35.375-29.789z" />
19
- <glyph unicode="&#xe909;" glyph-name="pa-gradients" d="M828.509 764.509c-83.782 83.782-197.353 130.327-316.509 130.327s-232.727-46.545-316.509-130.327c-83.782-83.782-130.327-197.353-130.327-316.509s46.545-232.727 130.327-316.509c83.782-83.782 197.353-130.327 316.509-130.327s232.727 46.545 316.509 130.327c83.782 83.782 130.327 197.353 130.327 316.509s-46.545 232.727-130.327 316.509zM925.324 464.756h-169.425c-3.724 52.131-24.204 102.4-59.578 141.498l121.018 121.018c65.164-70.749 102.4-163.84 107.985-262.516zM495.244 861.324v-31.651c0-9.309 7.447-16.756 16.756-16.756s16.756 7.447 16.756 16.756v31.651c96.815-3.724 189.905-42.822 262.516-107.985l-121.018-121.018c-40.96 35.375-89.367 55.855-141.498 59.578v85.644c0 9.309-7.447 16.756-16.756 16.756s-16.756-7.447-16.756-16.756v-87.505c-52.131-3.724-102.4-24.204-141.498-59.578l-121.018 121.018c70.749 67.025 163.84 104.262 262.516 109.847zM98.676 431.244h70.749c9.309 0 16.756 7.447 16.756 16.756s-7.447 16.756-16.756 16.756h-70.749c3.724 96.815 42.822 189.905 107.985 262.516l121.018-121.018c-35.375-40.96-55.855-89.367-59.578-141.498h-44.684c-9.309 0-16.756-7.447-16.756-16.756s7.447-16.756 16.756-16.756h46.545c3.724-52.131 24.204-102.4 59.578-141.498l-121.018-121.018c-67.025 70.749-104.262 163.84-109.847 262.516zM495.244 205.964v-169.425c-96.815 3.724-189.905 42.822-262.516 107.985l121.018 121.018c39.098-35.375 87.505-55.855 141.498-59.578zM364.916 300.916c-39.098 39.098-61.44 91.229-61.44 147.084s22.342 107.985 61.44 147.084c39.098 39.098 91.229 61.44 147.084 61.44s107.985-22.342 147.084-61.44c39.098-39.098 61.44-91.229 61.44-147.084s-22.342-107.985-61.44-147.084c-39.098-39.098-91.229-61.44-147.084-61.44s-107.985 22.342-147.084 61.44zM815.476 168.727l-63.302 63.302c-7.447 7.447-18.618 7.447-24.204 0-3.724-3.724-5.585-7.447-5.585-13.033 0-3.724 1.862-9.309 5.585-13.033l63.302-63.302c-72.611-67.025-163.84-104.262-262.516-107.985v169.425c52.131 3.724 102.4 24.204 141.498 59.578l24.204-24.204c7.447-7.447 18.618-5.585 24.204 0 3.724 3.724 5.585 7.447 5.585 13.033 0 3.724-1.862 9.309-5.585 13.033l-24.204 24.204c35.375 40.96 55.855 89.367 59.578 141.498h169.425c-3.724-98.676-40.96-191.767-107.985-262.516z" />
20
- <glyph unicode="&#xe90a;" glyph-name="pa-horizontal-scroll" d="M1027.864 691.442v27.049h-1027.864v-27.049h127.517v-488.815h-127.517v-27.049h1027.864v27.049h-127.517v488.815zM873.298 202.626h-718.732v488.815h718.732zM722.21 447.034c-0.055-2.302-0.924-4.391-2.328-6.001l0.010 0.011-61.054-61.633c-1.574-1.439-3.679-2.321-5.989-2.321s-4.416 0.882-5.996 2.327l0.007-0.006c-1.625 1.489-2.64 3.621-2.64 5.989s1.015 4.5 2.634 5.984l0.006 0.005 46.756 46.756h-359.366l46.756-46.756c1.854-1.57 3.023-3.899 3.023-6.501 0-4.695-3.806-8.501-8.501-8.501-2.602 0-4.931 1.169-6.49 3.010l-0.010 0.012-61.054 61.054c-1.439 1.574-2.321 3.679-2.321 5.989s0.882 4.416 2.327 5.996l-0.006-0.007 61.054 62.213c1.574 1.439 3.679 2.321 5.989 2.321s4.416-0.882 5.996-2.327l-0.007 0.006c1.625-1.489 2.64-3.621 2.64-5.989s-1.015-4.5-2.634-5.984l-0.006-0.005-46.37-46.37h358.593l-46.37 46.37c-1.854 1.57-3.023 3.899-3.023 6.501 0 4.695 3.806 8.501 8.501 8.501 2.602 0 4.931-1.169 6.49-3.010l0.010-0.012 61.054-61.054c1.444-1.653 2.325-3.831 2.325-6.214 0-0.125-0.002-0.249-0.007-0.372l0.001 0.018z" />
21
- <glyph unicode="&#xe90b;" glyph-name="pa-hot-spot" d="M927.185 643.491h-286.72v158.255c0 26.065-26.065 46.545-52.131 46.545h-389.12c-26.065 0-53.993-20.48-53.993-46.545v-158.255h-48.407c-20.48 0-35.375-16.756-35.375-35.375v-525.033c0-20.48 16.756-35.375 35.375-35.375h830.371c20.48 0 35.375 16.756 35.375 35.375v525.033c0 20.48-14.895 35.375-35.375 35.375zM180.596 801.745c0 5.585 11.171 11.171 18.618 11.171h389.12c5.585 0 16.756-5.585 16.756-11.171v-173.149c0-7.447-11.171-18.618-16.756-18.618h-85.644c-5.585 0-13.033 1.862-16.756-3.724l-91.229-89.367-93.091 89.367c-3.724 3.724-11.171 3.724-16.756 3.724h-85.644c-7.447 0-18.618 13.033-18.618 18.618v173.149zM96.815 81.222c-1.862 0-3.724 1.862-3.724 3.724v46.545c1.862 0 1.862 1.862 3.724 1.862l186.182 186.182c0-1.862 0-3.724 0-5.585 0-5.585 1.862-13.033 3.724-18.618 3.724-14.895 9.309-26.065 16.756-37.236l83.782-122.88 26.065 37.236 18.618 26.065 24.204 35.375 1.862 3.724 85.644-87.505 67.025-68.887h-513.862zM312.785 321.396c0 7.447 0 14.895 1.862 22.342 3.724 14.895 9.309 29.789 20.48 39.098 5.585 5.585 13.033 11.171 18.618 14.895 11.171 5.585 22.342 7.447 33.513 7.447 20.48 0 39.098-7.447 53.993-22.342 9.309-9.309 16.756-22.342 20.48-35.375 1.862-3.724 1.862-9.309 1.862-14.895 0-9.309 0-20.48-1.862-29.789 0-3.724-1.862-7.447-3.724-11.171-1.862-7.447-5.585-13.033-9.309-18.618l-13.033-18.618-48.407-68.887-61.44 87.505c-7.447 14.895-13.033 31.651-13.033 48.407zM660.945 81.222l-80.058 81.92 117.295 117.295 199.215-199.215h-236.451zM929.047 96.116l-219.695 219.695c-3.724 3.724-7.447 5.585-11.171 5.585s-9.309-1.862-11.171-5.585l-128.465-128.465-78.196 78.196c1.862 1.862 1.862 3.724 3.724 5.585 5.585 11.171 9.309 26.065 11.171 39.098 0 1.862 0 5.585 0 7.447 0 11.171 0 24.204-3.724 35.375 0 3.724-1.862 5.585-1.862 9.309-5.585 16.756-13.033 29.789-24.204 40.96-20.48 20.48-46.545 31.651-74.473 31.651s-53.993-11.171-74.473-31.651c-1.862-1.862-5.585-5.585-7.447-9.309-3.724-5.585-7.447-11.171-11.171-16.756l-202.938-199.215v428.218c0 1.862 1.862 3.724 3.724 3.724h52.131c9.309-18.618 27.927-33.513 48.407-33.513h81.92l111.709-111.709 111.709 111.709h81.92c18.618 0 37.236 14.895 46.545 33.513h290.444c1.862 0 3.724-1.862 3.724-3.724v-510.138zM389.12 371.665c-3.724 0-5.585 0-9.309 0-14.895-3.724-26.065-14.895-31.651-29.789-1.862-3.724-1.862-7.447-1.862-11.171 0-22.342 18.618-40.96 40.96-40.96 3.724 0 7.447 0 11.171 1.862 14.895 3.724 26.065 16.756 27.927 31.651 0 1.862 1.862 5.585 1.862 9.309 3.724 20.48-14.895 39.098-39.098 39.098zM389.12 312.087c-11.171 0-18.618 7.447-18.618 18.618s7.447 18.618 18.618 18.618c9.309 0 18.618-7.447 18.618-18.618 0-9.309-7.447-18.618-18.618-18.618zM778.24 384.698c-42.822 0-78.196 35.375-78.196 78.196s35.375 78.196 78.196 78.196c42.822 0 78.196-35.375 78.196-78.196s-35.375-78.196-78.196-78.196zM778.24 507.578c-24.204 0-44.684-20.48-44.684-44.684s20.48-44.684 44.684-44.684c24.204 0 44.684 20.48 44.684 44.684s-20.48 44.684-44.684 44.684z" />
22
- <glyph unicode="&#xe90c;" glyph-name="pa-icon-box" d="M889.949 682.589h-141.498c-9.309 121.018-111.709 217.833-234.589 217.833s-225.28-94.953-234.589-217.833h-145.222c-11.171 0-20.48-7.447-20.48-16.756v-651.636c0-9.309 9.309-16.756 20.48-16.756h755.898c11.171 0 20.48 7.447 20.48 16.756v651.636c0 9.309-9.309 16.756-20.48 16.756zM513.862 859.462c102.4 0 186.182-78.196 195.491-176.873 0-5.585 0-11.171 0-18.618 0-5.585 0-11.171 0-16.756-7.447-100.538-93.091-178.735-195.491-178.735s-186.182 78.196-195.491 178.735c0 5.585 0 11.171 0 16.756s0 11.171 0 18.618c9.309 98.676 93.091 176.873 195.491 176.873zM869.469 30.953h-714.938v616.262h124.742c7.447-122.88 109.847-219.695 234.589-219.695s227.142 96.815 234.589 219.695h122.88v-616.262z" />
23
- <glyph unicode="&#xe90d;" glyph-name="pa-ihover" d="M949.527 323.258c11.171 3.724 11.171 20.48 0 24.204l-93.091 42.822-52.131 24.204-409.6 191.767c-11.171 5.585-22.342-5.585-18.618-16.756l91.229-282.996 11.171-37.236 83.782-264.378c3.724-11.171 18.618-13.033 24.204-1.862l74.473 137.775c3.724 7.447 14.895 9.309 22.342 1.862l124.742-139.636c5.585-5.585 13.033-5.585 18.618-1.862l93.091 81.92c5.585 5.585 5.585 13.033 1.862 18.618l-124.742 139.636c-5.585 7.447-3.724 18.618 5.585 20.48l147.084 61.44zM860.16 88.669l-27.927-26.065c-5.585-5.585-14.895-3.724-18.618 1.862l-135.913 154.531c-5.585 7.447-16.756 5.585-22.342-1.862l-55.855-104.262c-5.585-11.171-20.48-9.309-24.204 1.862l-53.993 167.564-11.171 37.236-63.302 189.905c-3.724 11.171 7.447 20.48 18.618 16.756l377.949-175.011c11.171-5.585 11.171-20.48 0-24.204l-109.847-42.822c-9.309-3.724-11.171-14.895-5.585-20.48l135.913-154.531c1.862-5.585 1.862-14.895-3.724-20.48zM67.025 784.989c0-7.447 3.724-13.033 9.309-14.895l40.96-18.618c13.033-5.585 22.342-14.895 27.927-27.927l18.618-40.96c1.862-5.585 9.309-9.309 14.895-9.309 7.447 0 13.033 3.724 14.895 9.309l18.618 40.96c5.585 13.033 16.756 24.204 29.789 29.789l40.96 18.618c5.585 1.862 9.309 9.309 9.309 14.895s-3.724 13.033-9.309 14.895l-40.96 18.618c-13.033 5.585-24.204 16.756-29.789 29.789l-18.618 40.96c-1.862 3.724-7.447 7.447-14.895 7.447-5.585 0-11.171-3.724-14.895-9.309l-18.618-40.96c-5.585-13.033-14.895-24.204-27.927-29.789l-40.96-18.618c-5.585-1.862-9.309-7.447-9.309-14.895zM122.88 784.989l7.447 3.724c20.48 9.309 37.236 26.065 46.545 46.545l3.724 7.447 3.724-7.447c9.309-20.48 26.065-37.236 46.545-46.545l7.447-3.724-7.447-3.724c-20.48-9.309-37.236-26.065-46.545-46.545l-3.724-7.447-3.724 9.309c-9.309 20.48-26.065 37.236-46.545 46.545l-7.447 1.862zM121.018 325.12c0-7.447 3.724-13.033 9.309-14.895l40.96-18.618c13.033-5.585 24.204-16.756 29.789-29.789l18.618-40.96c1.862-5.585 9.309-9.309 14.895-9.309 7.447 0 13.033 3.724 14.895 9.309l18.618 40.96c5.585 13.033 16.756 24.204 29.789 29.789l40.96 18.618c5.585 1.862 9.309 9.309 9.309 14.895s-3.724 13.033-9.309 14.895l-40.96 18.618c-13.033 5.585-24.204 16.756-29.789 29.789l-18.618 40.96c-1.862 5.585-9.309 9.309-14.895 9.309-7.447 0-13.033-3.724-14.895-9.309l-18.618-40.96c-5.585-13.033-16.756-24.204-29.789-29.789l-40.96-18.618c-5.585-1.862-9.309-7.447-9.309-14.895zM178.735 325.12l7.447 3.724c20.48 9.309 37.236 26.065 46.545 46.545l3.724 7.447 3.724-7.447c9.309-20.48 26.065-37.236 46.545-46.545l7.447-3.724-7.447-3.724c-20.48-9.309-37.236-26.065-46.545-46.545l-5.585-3.724-3.724 7.447c-9.309 20.48-26.065 37.236-46.545 46.545h-5.585zM523.171 729.135c0-7.447 3.724-13.033 9.309-14.895l52.131-24.204c18.618-7.447 33.513-22.342 40.96-40.96l24.204-52.131c1.862-5.585 9.309-9.309 14.895-9.309 7.447 0 13.033 3.724 14.895 9.309l24.204 52.131c7.447 18.618 22.342 33.513 40.96 40.96l52.131 24.204c5.585 1.862 9.309 9.309 9.309 14.895 0 7.447-3.724 13.033-9.309 14.895l-52.131 24.204c-18.618 7.447-33.513 22.342-40.96 40.96l-24.204 52.131c-1.862 5.585-9.309 9.309-14.895 9.309-7.447 0-13.033-3.724-14.895-9.309l-24.204-52.131c-7.447-18.618-22.342-33.513-40.96-40.96l-52.131-24.204c-5.585-1.862-9.309-7.447-9.309-14.895zM580.887 729.135l18.618 9.309c26.065 11.171 46.545 31.651 57.716 57.716l9.309 18.618 9.309-18.618c11.171-26.065 31.651-46.545 57.716-57.716l18.618-9.309-18.618-9.309c-26.065-11.171-46.545-31.651-57.716-57.716l-9.309-18.618-9.309 18.618c-11.171 26.065-31.651 46.545-57.716 57.716l-18.618 9.309z" />
24
- <glyph unicode="&#xe90e;" glyph-name="pa-image-accordion" d="M847.127 677.004c0 9.309-7.447 14.895-14.895 14.895h-640.465c-9.309 0-14.895-7.447-14.895-14.895v-458.007c0-9.309 7.447-14.895 14.895-14.895h640.465c9.309 0 14.895 7.447 14.895 14.895v458.007zM817.338 662.109v-275.549l-167.564 119.156c-5.585 3.724-14.895 3.724-20.48-1.862l-126.604-126.604-147.084 72.611c-3.724 1.862-9.309 1.862-14.895 0l-135.913-78.196v290.444h612.538zM206.662 336.291l143.36 83.782 130.327-63.302-124.742-122.88h-150.807v102.4zM400.291 232.029l243.898 240.175 175.011-122.88v-115.433h-418.909zM478.487 461.033c35.375 0 65.164 29.789 65.164 65.164s-29.789 65.164-65.164 65.164-65.164-29.789-65.164-65.164c0 0 0 0 0 0-1.862-35.375 27.927-65.164 65.164-65.164zM478.487 561.571c18.618 0 35.375-14.895 35.375-35.375 0-18.618-14.895-35.375-35.375-35.375-18.618 0-35.375 14.895-35.375 35.375 0 18.618 14.895 35.375 35.375 35.375v0zM76.335 634.182c-9.309 0-14.895-7.447-14.895-14.895v-344.436c0-9.309 7.447-14.895 14.895-14.895s14.895 7.447 14.895 14.895v344.436c0 9.309-5.585 14.895-14.895 14.895zM947.665 634.182c-9.309 0-14.895-7.447-14.895-14.895v-344.436c0-9.309 7.447-14.895 14.895-14.895 9.309 0 14.895 7.447 14.895 14.895v344.436c0 9.309-7.447 14.895-14.895 14.895z" />
25
- <glyph unicode="&#xe90f;" glyph-name="pa-image-comparison" d="M921.6 730.996h-819.2c-22.342 0-40.96-18.618-40.96-42.822v-480.349c0-24.204 18.618-42.822 40.96-42.822h819.2c22.342 0 40.96 18.618 40.96 42.822v480.349c0 24.204-18.618 42.822-40.96 42.822zM493.382 200.378h-390.982c-3.724 0-5.585 3.724-5.585 7.447v480.349c0 3.724 1.862 7.447 5.585 7.447h390.982v-96.815c-72.611-9.309-130.327-72.611-130.327-148.945s57.716-141.498 130.327-148.945v-100.538zM396.567 448c0 65.164 52.131 117.295 115.433 117.295s115.433-52.131 115.433-117.295-52.131-117.295-115.433-117.295-115.433 52.131-115.433 117.295zM927.185 207.825c0-3.724-1.862-7.447-5.585-7.447h-390.982v96.815c72.611 9.309 130.327 72.611 130.327 148.945s-57.716 141.498-130.327 148.945v96.815h390.982c3.724 0 5.585-3.724 5.585-7.447v-476.625zM495.244 397.731c-3.724-3.724-7.447-3.724-11.171-3.724s-7.447 1.862-11.171 3.724l-39.098 39.098c-5.585 5.585-5.585 14.895 0 20.48l39.098 39.098c3.724 1.862 7.447 3.724 11.171 3.724s7.447-1.862 11.171-3.724c5.585-5.585 5.585-14.895 0-20.48l-29.789-27.927 29.789-29.789c5.585-5.585 5.585-14.895 0-20.48zM590.196 436.829l-39.098-39.098c-3.724-3.724-7.447-3.724-11.171-3.724s-7.447 1.862-11.171 3.724c-5.585 5.585-5.585 14.895 0 20.48l29.789 29.789-29.789 29.789c-5.585 5.585-5.585 14.895 0 20.48s14.895 5.585 20.48 0l39.098-39.098c7.447-5.585 7.447-16.756 1.862-22.342z" />
26
- <glyph unicode="&#xe910;" glyph-name="pa-image-layers" d="M889.949 358.633h-91.229v158.255h26.065c35.375 0 65.164 29.789 65.164 65.164v251.345c0 35.375-29.789 65.164-65.164 65.164h-253.207c-35.375 0-65.164-29.789-65.164-65.164v-81.92h-134.051v48.407c0 37.236-26.065 65.164-61.44 65.164h-182.458c-37.236 0-67.025-29.789-67.025-65.164v-184.32c0-35.375 29.789-61.44 67.025-61.44h113.571v-180.596h-113.571c-35.375 0-65.164-29.789-65.164-65.164v-171.287c0-35.375 29.789-65.164 65.164-65.164h299.753c35.375 0 65.164 29.789 65.164 65.164v55.855h109.847v-132.189c0-37.236 26.065-65.164 61.44-65.164h227.142c35.375 0 72.611 26.065 72.611 65.164v227.142c-1.862 35.375-37.236 70.749-74.473 70.749zM539.927 833.396c0 18.618 14.895 33.513 33.513 33.513h253.207c18.618 0 33.513-14.895 33.513-33.513v-253.207c0-18.618-14.895-33.513-33.513-33.513h-255.069c-18.618 0-33.513 14.895-33.513 33.513v253.207zM128.465 587.636c-16.756 0-35.375 9.309-35.375 29.789v182.458c0 16.756 16.756 33.513 33.513 33.513h184.32c18.618 0 27.927-16.756 27.927-33.513v-48.407h-29.789c-39.098 0-68.887-26.065-68.887-61.44v-102.4h-111.709zM459.869 137.076c0-18.618-14.895-33.513-33.513-33.513h-297.891c-18.618 0-33.513 14.895-33.513 33.513v171.287c0 18.618 14.895 33.513 33.513 33.513h299.753c18.618 0 33.513-14.895 33.513-33.513v-171.287zM493.382 226.444v81.92c0 35.375-29.789 65.164-65.164 65.164h-152.669v316.509c0 18.618 18.618 27.927 35.375 27.927h195.491v-137.775c0-35.375 29.789-65.164 65.164-65.164h193.629v-249.484c0-18.618-13.033-39.098-31.651-39.098h-240.175zM930.909 60.742c0-16.756-22.342-31.651-40.96-31.651h-225.28c-20.48 0-29.789 14.895-29.789 31.651v132.189h100.538c37.236 0 63.302 37.236 63.302 72.611v59.578h91.229c18.618 0 40.96-20.48 40.96-37.236v-227.142z" />
27
- <glyph unicode="&#xe911;" glyph-name="pa-instagram-feed" d="M683.287 896.698h-342.575c-152.669 0-277.411-124.742-277.411-277.411v-344.436c0-152.669 124.742-277.411 277.411-277.411h344.436c152.669 0 277.411 124.742 277.411 277.411v344.436c-1.862 152.669-126.604 277.411-279.273 277.411zM923.462 276.713c0-132.189-107.985-238.313-238.313-238.313h-344.436c-132.189 0-238.313 107.985-238.313 238.313v342.575c0 132.189 107.985 238.313 238.313 238.313h344.436c132.189 0 238.313-107.985 238.313-238.313v-342.575zM512 699.345c-137.775 0-251.345-111.709-251.345-251.345 0-137.775 111.709-251.345 251.345-251.345 137.775 0 251.345 111.709 251.345 251.345 0 137.775-113.571 251.345-251.345 251.345zM512 235.753c-117.295 0-212.247 94.953-212.247 212.247s94.953 212.247 212.247 212.247 212.247-94.953 212.247-212.247-94.953-212.247-212.247-212.247zM813.615 682.589c0-20.565-16.671-37.236-37.236-37.236s-37.236 16.671-37.236 37.236c0 20.565 16.671 37.236 37.236 37.236s37.236-16.671 37.236-37.236z" />
28
- <glyph unicode="&#xe912;" glyph-name="pa-magic-section" d="M76.335 14.196v0 0 0zM955.113 609.978l-85.644 85.644 42.822 128.465c1.862 7.447 0 14.895-5.585 20.48-3.724 3.724-11.171 5.585-18.618 3.724l-128.465-42.822-85.644 85.644c-5.585 5.585-14.895 7.447-22.342 3.724s-11.171-11.171-11.171-20.48l14.895-126.604-128.465-70.749c-7.447-3.724-11.171-13.033-9.309-20.48 0-3.724 1.862-7.447 5.585-11.171 1.862-1.862 5.585-3.724 9.309-5.585l117.295-26.065-573.44-571.578c-3.724-3.724-5.585-9.309-5.585-14.895s1.862-11.171 5.585-14.895c3.724-3.724 9.309-5.585 14.895-5.585s11.171 1.862 14.895 5.585l573.44 569.716 26.065-115.433c1.862-7.447 9.309-14.895 16.756-14.895h1.862c7.447 0 13.033 3.724 16.756 11.171l70.749 128.465 126.604-14.895c9.309 0 16.756 3.724 20.48 11.171s3.724 16.756-3.724 22.342zM76.335 14.196v0 0 0zM804.305 630.458c-7.447 0-14.895-3.724-20.48-9.309l-52.131-94.953-24.204 102.4c-1.862 7.447-7.447 13.033-14.895 14.895l-100.538 22.342 94.953 52.131c7.447 3.724 11.171 11.171 9.309 20.48l-9.309 83.782 53.993-53.993c5.585-5.585 13.033-7.447 20.48-5.585l102.4 33.513-33.513-102.4c-1.862-7.447 0-14.895 5.585-20.48l53.993-53.993-85.644 11.171z" />
29
- <glyph unicode="&#xe913;" glyph-name="pa-messenger-chat" d="M130.327 79.36v227.142c-46.545 53.993-70.749 113.571-70.749 176.873 0 182.458 202.938 331.404 452.422 331.404s452.422-148.945 452.422-331.404c0-182.458-202.938-331.404-452.422-331.404-67.025 0-132.189 11.171-193.629 31.651l-188.044-104.262zM512 773.818c-225.28 0-407.738-130.327-407.738-288.582 0-53.993 22.342-107.985 65.164-154.531l5.585-5.585v-169.425l139.636 78.196 9.309-3.724c57.716-22.342 122.88-33.513 188.044-33.513 225.28 0 407.738 130.327 407.738 288.582s-182.458 288.582-407.738 288.582z" />
30
- <glyph unicode="&#xe914;" glyph-name="pa-multi-scroll" d="M942.080 820.364h-428.218c0 0-1.862 0-1.862 0s-1.862 0-1.862 0h-428.218c-11.171 0-20.48-9.309-20.48-20.48v-703.767c0-11.171 9.309-20.48 20.48-20.48h426.356c0 0 1.862 0 1.862 0s1.862 0 1.862 0h426.356c11.171 0 20.48 9.309 20.48 20.48v703.767c3.724 11.171-5.585 20.48-16.756 20.48zM98.676 784.989h396.567v-673.978h-396.567v673.978zM925.324 111.011h-394.705v673.978h396.567v-673.978zM439.389 477.789c0-5.585-1.862-9.309-5.585-13.033-7.447-7.447-18.618-7.447-24.204 0l-89.367 91.229v-256.931c0-9.309-7.447-18.618-18.618-18.618-9.309 0-18.618 7.447-18.618 18.618v255.069l-98.676-98.676c-7.447-7.447-18.618-7.447-24.204 0-3.724 3.724-5.585 7.447-5.585 13.033s1.862 9.309 5.585 13.033l128.465 128.465c1.862 1.862 3.724 3.724 5.585 3.724 3.724 1.862 9.309 1.862 13.033 0 1.862 0 3.724-1.862 5.585-3.724l119.156-119.156c5.585-5.585 7.447-11.171 7.447-13.033zM869.469 427.52c0-5.585-1.862-9.309-5.585-13.033l-128.465-128.465c-1.862-1.862-3.724-3.724-5.585-3.724s-3.724-1.862-7.447-1.862c-3.724 0-3.724 0-7.447 1.862-1.862 0-3.724 1.862-5.585 3.724l-119.156 119.156c-3.724 3.724-5.585 7.447-5.585 13.033s1.862 9.309 5.585 13.033c7.447 7.447 18.618 7.447 24.204 0l89.367-89.367v255.069c0 9.309 7.447 18.618 18.618 18.618 5.585 0 9.309-1.862 13.033-5.585s5.585-7.447 5.585-13.033v-256.931l98.676 98.676c7.447 7.447 18.618 7.447 24.204 0 3.724-1.862 5.585-5.585 5.585-11.171z" />
31
- <glyph unicode="&#xe915;" glyph-name="pa-notification-bar" d="M512 157.556c-40.96 0-76.335-33.513-76.335-76.335s33.513-76.335 76.335-76.335 76.335 33.513 76.335 76.335-35.375 76.335-76.335 76.335zM512 42.124c-22.342 0-39.098 18.618-39.098 39.098s18.618 39.098 39.098 39.098 39.098-18.618 39.098-39.098-16.756-39.098-39.098-39.098zM835.956 323.258v204.8c0 76.335-27.927 148.945-76.335 208.524-48.407 57.716-115.433 96.815-189.905 111.709-7.447 26.065-31.651 44.684-59.578 44.684s-52.131-18.618-59.578-44.684c-72.611-13.033-139.636-53.993-189.905-111.709-48.407-57.716-76.335-132.189-76.335-208.524v-204.8c-20.48-13.033-35.375-39.098-35.375-67.025 0-42.822 35.375-78.196 78.196-78.196h571.578c42.822 0 78.196 35.375 78.196 78.196-1.862 27.927-16.756 53.993-40.96 67.025zM798.72 213.411h-573.44c-22.342 0-40.96 18.618-40.96 40.96 0 16.756 11.171 33.513 27.927 39.098l11.171 3.724v230.865c0 141.498 106.124 264.378 247.622 284.858l14.895 1.862v14.895c0 13.033 13.033 24.204 26.065 24.204s26.065-11.171 26.065-24.204v-14.895l14.895-1.862c141.498-20.48 247.622-143.36 247.622-284.858v-197.353h-413.324v-35.375h428.218c14.895-5.585 24.204-22.342 24.204-37.236 0-26.065-18.618-44.684-40.96-44.684z" />
32
- <glyph unicode="&#xe916;" glyph-name="pa-preview-window" d="M772.655 777.542c-39.098 0-70.749-31.651-70.749-70.749s31.651-70.749 70.749-70.749 70.749 31.651 70.749 70.749c0 39.098-31.651 70.749-70.749 70.749zM772.655 665.833c-22.342 0-40.96 18.618-40.96 40.96s18.618 40.96 40.96 40.96 40.96-18.618 40.96-40.96c0-22.342-18.618-40.96-40.96-40.96zM888.087 872.495h-739.142c-44.684 0-83.782-37.236-83.782-83.782v-523.171c0-44.684 37.236-81.92 83.782-81.92h221.556l154.531-158.255 147.084 143.36h215.971c44.684 0 70.749 44.684 70.749 89.367v530.618c0 44.684-26.065 83.782-70.749 83.782zM657.222 202.24l-132.189-128.465-141.498 141.498-236.451 1.862c-26.065 0-48.407 20.48-48.407 46.545v115.433c3.724 0 7.447 1.862 9.309 5.585l238.313 238.313 420.771-420.771h-109.847zM925.324 256.233c0-26.065-9.309-53.993-35.375-53.993h-72.611c0 1.862-1.862 1.862-1.862 3.724l-215.971 212.247 117.295 117.295 208.524-208.524v-70.749zM925.324 375.389l-195.491 195.491c-3.724 3.724-7.447 5.585-11.171 5.585s-9.309-1.862-11.171-5.585l-130.327-128.465-217.833 215.971c-3.724 3.724-7.447 5.585-11.171 5.585s-9.309-1.862-11.171-5.585l-238.313-234.589v364.916c0 26.065 24.204 48.407 50.269 48.407h739.142c26.065 0 35.375-22.342 35.375-48.407v-413.324z" />
33
- <glyph unicode="&#xe917;" glyph-name="pa-separator" d="M299.753 425.658h-215.971c-13.033 0-22.342 9.309-22.342 22.342v0c0 13.033 9.309 22.342 22.342 22.342h215.971c13.033 0 22.342-9.309 22.342-22.342v0c0-13.033-9.309-22.342-22.342-22.342zM936.495 425.658h-215.971c-13.033 0-22.342 9.309-22.342 22.342v0c0 13.033 9.309 22.342 22.342 22.342h215.971c13.033 0 22.342-9.309 22.342-22.342v0c0-13.033-9.309-22.342-22.342-22.342zM633.018 550.4c-14.895 16.756-35.375 26.065-59.578 26.065-31.651 0-52.131-18.618-63.302-33.513-11.171 14.895-31.651 33.513-63.302 33.513-22.342 0-44.684-9.309-59.578-26.065s-22.342-37.236-22.342-59.578c0-24.204 9.309-46.545 29.789-70.749 16.756-20.48 40.96-40.96 68.887-65.164l1.862-1.862c9.309-9.309 20.48-16.756 31.651-27.927 3.724-3.724 7.447-3.724 11.171-3.724s7.447 1.862 11.171 3.724c11.171 9.309 20.48 18.618 29.789 26.065l1.862 1.862c27.927 24.204 52.131 44.684 70.749 65.164 20.48 24.204 29.789 46.545 29.789 70.749 3.724 24.204-5.585 44.684-18.618 61.44zM538.065 520.611c9.309 13.033 22.342 20.48 35.375 20.48s24.204-5.585 33.513-14.895c9.309-9.309 13.033-22.342 13.033-37.236 0-35.375-35.375-65.164-87.505-109.847v0c-7.447-5.585-14.895-13.033-22.342-18.618-7.447 7.447-14.895 13.033-22.342 18.618-52.131 44.684-87.505 74.473-87.505 109.847 0 14.895 3.724 27.927 13.033 37.236s20.48 14.895 33.513 14.895c14.895 0 26.065-7.447 35.375-20.48 5.585-9.309 9.309-18.618 11.171-22.342 1.862-7.447 9.309-11.171 16.756-11.171s14.895 5.585 16.756 11.171c1.862 5.585 3.724 14.895 11.171 22.342z" />
34
- <glyph unicode="&#xe918;" glyph-name="pa-table" d="M61.44-2.56v901.12h901.12v-901.12h-901.12zM530.618 36.538h392.844v390.982h-392.844v-390.982zM100.538 36.538h390.982v390.982h-390.982v-390.982zM530.618 466.618h392.844v392.844h-392.844v-392.844zM100.538 466.618h390.982v392.844h-390.982v-392.844z" />
35
- <glyph unicode="&#xe919;" glyph-name="pa-tabs" d="M938.356 732.858h-852.713c-13.033 0-22.342 9.309-22.342 22.342s11.171 22.342 22.342 22.342h850.851c13.033 0 22.342-9.309 22.342-22.342s-9.309-22.342-20.48-22.342zM938.356 425.658h-852.713c-13.033 0-22.342 9.309-22.342 22.342s9.309 22.342 22.342 22.342h850.851c13.033 0 22.342-9.309 22.342-22.342s-9.309-22.342-20.48-22.342zM938.356 118.458h-852.713c-13.033 0-22.342 9.309-22.342 22.342s9.309 22.342 22.342 22.342h850.851c13.033 0 22.342-9.309 22.342-22.342s-9.309-22.342-20.48-22.342z" />
36
- <glyph unicode="&#xe91a;" glyph-name="pa-twitter-feed" d="M951.389 729.135c-7.447 5.585-16.756 5.585-24.204 0-5.585-3.724-11.171-7.447-20.48-9.309 27.927 33.513 27.927 57.716 27.927 63.302 0 7.447-5.585 13.033-11.171 16.756-7.447 3.724-14.895 1.862-20.48-1.862-37.236-26.065-74.473-33.513-96.815-33.513-35.375 33.513-81.92 52.131-132.189 52.131-106.124 0-193.629-85.644-193.629-193.629 0-7.447 0-14.895 1.862-22.342-176.873 3.724-322.095 171.287-322.095 173.149-3.724 3.724-9.309 5.585-16.756 5.585s-13.033-3.724-16.756-9.309c-44.684-78.196-26.065-150.807 5.585-201.076-5.585 3.724-13.033 3.724-18.618 0-7.447-3.724-11.171-9.309-11.171-18.618-1.862-81.92 35.375-130.327 72.611-158.255-1.862-1.862-5.585-3.724-7.447-5.585-5.585-5.585-7.447-13.033-3.724-20.48 26.065-83.782 87.505-115.433 130.327-126.604-48.407-35.375-109.847-42.822-156.393-42.822-29.789 0-50.269 3.724-50.269 3.724-9.309 1.862-18.618-3.724-22.342-11.171-3.724-9.309-1.862-18.618 5.585-24.204 93.091-68.887 204.8-83.782 281.135-83.782 61.44 0 104.262 9.309 106.124 9.309 398.429 93.091 413.324 450.56 413.324 513.862 74.473 68.887 85.644 94.953 87.505 102.4 3.724 9.309 0 16.756-7.447 22.342zM830.371 611.84c0-3.724 22.342-389.12-379.811-482.211 0 0-40.96-9.309-96.815-9.309-52.131 0-122.88 7.447-189.905 37.236 61.44 3.724 135.913 22.342 189.905 81.92 5.585 5.585 7.447 14.895 3.724 22.342s-11.171 11.171-18.618 11.171c-3.724 0-83.782 1.862-122.88 74.473 18.618 0 35.375 1.862 48.407 7.447 7.447 3.724 13.033 11.171 11.171 20.48s-7.447 14.895-16.756 16.756c-3.724 1.862-96.815 22.342-113.571 119.156 14.895-5.585 31.651-9.309 48.407-7.447 7.447 1.862 14.895 7.447 16.756 14.895s0 16.756-5.585 20.48c-3.724 3.724-91.229 80.058-53.993 180.596 50.269-52.131 189.905-175.011 357.469-165.702 5.585 0 11.171 3.724 14.895 7.447 3.724 5.585 5.585 11.171 3.724 16.756-3.724 13.033-5.585 24.204-5.585 37.236 0 83.782 68.887 152.669 152.669 152.669 40.96 0 80.058-16.756 107.985-44.684 3.724-3.724 9.309-5.585 14.895-5.585h3.724c14.895 0 39.098 1.862 65.164 11.171-9.309-9.309-20.48-18.618-33.513-29.789-7.447-5.585-9.309-14.895-7.447-24.204 3.724-7.447 11.171-13.033 20.48-13.033 3.724 0 18.618 1.862 35.375 5.585-11.171-11.171-26.065-26.065-44.684-42.822-3.724 0-5.585-5.585-5.585-13.033z" />
37
- <glyph unicode="&#xe91b;" glyph-name="pa-unfold" d="M960.698 446.138c0-9.309-7.447-18.618-18.618-18.618h-93.091v-93.091c0-9.309-7.447-18.618-18.618-18.618-9.309 0-18.618 7.447-18.618 18.618v93.091h-93.091c-9.309 0-18.618 7.447-18.618 18.618 0 9.309 7.447 18.618 18.618 18.618h93.091v93.091c0 9.309 7.447 18.618 18.618 18.618 9.309 0 18.618-7.447 18.618-18.618v-93.091h93.091c9.309 0 18.618-9.309 18.618-18.618zM599.505 559.709c0-11.171-9.309-20.48-20.48-20.48h-495.244c-11.171 0-20.48 9.309-20.48 20.48s9.309 20.48 20.48 20.48h495.244c11.171 0 20.48-9.309 20.48-20.48zM709.353 781.265c0-11.171-9.309-20.48-20.48-20.48h-605.091c-11.171 0-20.48 9.309-20.48 20.48s9.309 20.48 20.48 20.48h605.091c11.171 0 20.48-9.309 20.48-20.48zM599.505 336.291c0-11.171-9.309-20.48-20.48-20.48h-495.244c-11.171 0-20.48 9.309-20.48 20.48s9.309 20.48 20.48 20.48h495.244c11.171 0 20.48-9.309 20.48-20.48zM709.353 114.735c0-11.171-9.309-20.48-20.48-20.48h-605.091c-11.171 0-20.48 9.309-20.48 20.48s9.309 20.48 20.48 20.48h605.091c11.171 0 20.48-9.309 20.48-20.48z" />
38
- <glyph unicode="&#xe91c;" glyph-name="pa-whatsapp" d="M512 898.56c-247.622 0-450.56-202.938-450.56-450.56 0-85.644 24.204-167.564 68.887-238.313-18.618-61.44-50.269-180.596-50.269-180.596-1.862-5.585 0-13.033 5.585-16.756 3.724-3.724 11.171-5.585 16.756-3.724l178.735 55.855c70.749-42.822 150.807-65.164 232.727-65.164 247.622 0 450.56 202.938 450.56 450.56s-204.8 448.698-452.422 448.698zM512 32.815c-78.196 0-154.531 22.342-219.695 63.302-1.862 1.862-5.585 1.862-9.309 1.862-1.862 0-3.724 0-5.585 0l-156.393-48.407c11.171 40.96 31.651 117.295 44.684 158.255 1.862 5.585 0 9.309-1.862 14.895-44.684 67.025-67.025 145.222-67.025 225.28 0 229.004 186.182 415.185 415.185 415.185s415.185-186.182 415.185-415.185-186.182-415.185-415.185-415.185zM806.167 341.876c-31.651 18.618-59.578 35.375-78.196 48.407-14.895 9.309-26.065 16.756-33.513 20.48-22.342 11.171-39.098 3.724-46.545-3.724 0 0-1.862-1.862-1.862-1.862-24.204-35.375-53.993-68.887-63.302-70.749-11.171 1.862-57.716 29.789-106.124 68.887-48.407 40.96-80.058 80.058-83.782 106.124 31.651 31.651 42.822 52.131 42.822 76.335s-55.855 122.88-65.164 134.051c-9.309 9.309-33.513 11.171-67.025 5.585-3.724 0-5.585-1.862-9.309-5.585s-102.4-104.262-55.855-227.142c52.131-134.051 182.458-288.582 351.884-314.647 18.618-3.724 37.236-3.724 53.993-3.724 98.676 0 158.255 50.269 173.149 148.945-1.862 7.447-3.724 14.895-11.171 18.618zM592.058 213.411c-178.735 26.065-290.444 202.938-323.956 292.305s27.927 167.564 44.684 186.182c13.033 1.862 26.065 3.724 31.651 1.862 11.171-16.756 52.131-93.091 53.993-107.985 0-9.309-3.724-22.342-39.098-57.716-3.724-3.724-5.585-7.447-5.585-13.033 0-91.229 191.767-215.971 225.28-215.971 29.789 0 67.025 50.269 89.367 81.92 1.862 0 3.724 0 5.585-1.862 5.585-3.724 16.756-9.309 31.651-18.618 18.618-11.171 42.822-27.927 70.749-42.822-11.171-61.44-46.545-124.742-184.32-104.262z" />
39
- <glyph unicode="&#xe91d;" glyph-name="pa-yelp-reviews" d="M458.007 591.36l-26.065 11.171c-96.815 40.96-96.815 40.96-104.262 40.96-14.895 0-26.065-7.447-33.513-18.618-14.895-20.48-16.756-72.611-13.033-102.4 1.862-14.895 3.724-22.342 7.447-29.789 7.447-13.033 18.618-20.48 31.651-20.48h1.862c5.585 0 11.171 1.862 59.578 16.756l35.375 11.171c9.309 3.724 16.756 5.585 22.342 7.447l7.447 1.862c5.585 1.862 7.447 1.862 7.447 1.862 16.756 5.585 27.927 18.618 27.927 39.098 1.862 18.618-7.447 35.375-24.204 40.96zM450.56 552.262c0-5.585-1.862-5.585-3.724-7.447-3.724-1.862-16.756-5.585-39.098-11.171l-3.724-1.862c-18.618-5.585-76.335-24.204-81.92-26.065 0 0 0 0-1.862 1.862 0 0 0 1.862 0 1.862-1.862 1.862-3.724 7.447-3.724 16.756-3.724 31.651 1.862 70.749 7.447 80.058 1.862 1.862 1.862 1.862 3.724 1.862 5.585-1.862 59.578-24.204 93.091-37.236l26.065-11.171c3.724-1.862 3.724-5.585 3.724-7.447zM502.691 507.578c-16.756 7.447-37.236 1.862-48.407-11.171-14.895-18.618-18.618-20.48-18.618-22.342-67.025-80.058-68.887-80.058-70.749-87.505-1.862-5.585-1.862-11.171-1.862-16.756 1.862-7.447 3.724-14.895 9.309-20.48 16.756-20.48 83.782-46.545 117.295-46.545h7.447c14.895 1.862 24.204 11.171 29.789 24.204 1.862 7.447 1.862 7.447 1.862 102.4v39.098c0 16.756-9.309 31.651-26.065 39.098zM493.382 468.48v-40.96c0-59.578 0-83.782 0-89.367 0 0-1.862-1.862-1.862-1.862-16.756-1.862-81.92 20.48-91.229 33.513-1.862 1.862-1.862 1.862-1.862 1.862v1.862c1.862 3.724 33.513 40.96 63.302 76.335 3.724 1.862 5.585 5.585 9.309 9.309l1.862 1.862c1.862 3.724 5.585 7.447 11.171 13.033 0 0 1.862 1.862 3.724 1.862s1.862 0 3.724-1.862 1.862-3.724 1.862-5.585zM729.833 488.96c-5.585 3.724-5.585 5.585-94.953 33.513-7.447 1.862-16.756 5.585-22.342 7.447l-5.585 1.862c-3.724 1.862-5.585 1.862-7.447 1.862-14.895 7.447-33.513 1.862-46.545-13.033-11.171-14.895-13.033-35.375-3.724-48.407l14.895-24.204c53.993-87.505 55.855-89.367 61.44-94.953 5.585-3.724 14.895-7.447 22.342-7.447 1.862 0 3.724 0 5.585 0s3.724 0 7.447 0h1.862c27.927 11.171 78.196 74.473 81.92 104.262 1.862 18.618-3.724 31.651-14.895 39.098zM709.353 459.171v0c-3.724-16.756-44.684-70.749-59.578-76.335-3.724 0-3.724 0-3.724 0-3.724 3.724-29.789 46.545-53.993 85.644l-14.895 24.204c0 1.862-1.862 3.724 1.862 9.309 1.862 1.862 3.724 1.862 3.724 1.862s0 0 3.724-1.862h1.862c5.585-1.862 14.895-5.585 35.375-11.171 48.407-16.756 78.196-26.065 85.644-27.927 0-1.862 0-1.862 0-3.724zM666.531 732.858v0c-13.033 5.585-27.927 5.585-37.236-1.862-7.447-3.724-7.447-3.724-61.44-80.058l-5.585-7.447c-7.447-9.309-16.756-22.342-18.618-24.204-11.171-13.033-11.171-33.513-1.862-48.407 7.447-13.033 22.342-20.48 35.375-20.48h3.724c1.862 0 3.724 0 5.585 1.862 1.862 0 1.862 0 3.724 1.862 5.585 1.862 13.033 3.724 24.204 5.585 102.4 24.204 102.4 24.204 107.985 29.789 11.171 7.447 16.756 20.48 16.756 33.513v1.862c-1.862 29.789-46.545 94.953-72.611 107.985zM705.629 621.149c0-1.862 0-3.724 0-3.724-3.724-1.862-33.513-9.309-81.92-20.48l-16.756-3.724c-13.033-3.724-20.48-3.724-24.204-7.447h-1.862c-1.862 0-5.585 1.862-7.447 3.724s-1.862 5.585-1.862 5.585c1.862 1.862 7.447 7.447 20.48 27.927l3.724 5.585c42.822 57.716 53.993 70.749 53.993 72.611 0 0 1.862 0 1.862-1.862 13.033-5.585 52.131-59.578 53.993-78.196zM517.585 874.356v0c-3.724 14.895-13.033 24.204-27.927 27.927-29.789 7.447-130.327-20.48-152.669-42.822-9.309-9.309-14.895-24.204-9.309-37.236l1.862-1.862c3.724-7.447 93.091-148.945 119.156-188.044 13.033-22.342 27.927-31.651 44.684-31.651 3.724 0 7.447 0 11.171 1.862 14.895 3.724 29.789 16.756 29.789 55.855-3.724 29.789-14.895 201.076-16.756 215.971zM493.382 634.182c-5.585-1.862-13.033 9.309-14.895 14.895-39.098 61.44-104.262 163.84-117.295 184.32 0 0 0 1.862 1.862 1.862 13.033 13.033 98.676 37.236 119.156 33.513 0-1.862 1.862-1.862 1.862-1.862 1.862-35.375 13.033-175.011 13.033-210.385v0c1.862-14.895-1.862-20.48-3.724-22.342zM342.575 148.247c-3.724 11.171-13.033 18.618-24.204 18.618l-50.269 3.724-18.618 46.545c-3.724 11.171-14.895 16.756-26.065 16.756s-22.342-7.447-26.065-16.756l-18.618-46.545-50.269-3.724c-11.171 0-20.48-7.447-24.204-18.618s0-22.342 9.309-29.789l39.098-31.651-11.171-48.407c-1.862-9.309 0-16.756 5.585-24.204 9.309-11.171 26.065-14.895 37.236-7.447l42.822 26.065 42.822-26.065c3.724-3.724 9.309-5.585 14.895-5.585 9.309 0 16.756 3.724 22.342 11.171s7.447 14.895 5.585 24.204l-18.618 48.407 40.96 33.513c7.447 7.447 11.171 18.618 7.447 29.789zM269.964 107.287c-7.447-5.585-11.171-14.895-7.447-24.204l11.171-46.545-40.96 26.065c-3.724 1.862-7.447 3.724-13.033 3.724s-9.309-1.862-13.033-3.724l-39.098-26.065 11.171 46.545c1.862 9.309-1.862 18.618-7.447 24.204l-37.236 29.789 48.407 3.724c9.309 0 16.756 7.447 20.48 14.895l18.618 44.684 18.618-44.684c3.724-9.309 11.171-14.895 20.48-14.895l48.407-3.724-39.098-29.789zM633.018 148.247c-3.724 11.171-13.033 18.618-24.204 18.618l-50.269 3.724-18.618 46.545c-3.724 11.171-14.895 16.756-26.065 16.756s-22.342-7.447-26.065-16.756l-18.618-46.545-50.269-3.724c-11.171 0-20.48-7.447-24.204-18.618s0-22.342 9.309-29.789l39.098-31.651-11.171-48.407c-1.862-9.309 0-16.756 3.724-24.204 9.309-11.171 26.065-14.895 37.236-7.447l42.822 26.065 42.822-26.065c3.724-3.724 9.309-5.585 14.895-5.585 9.309 0 16.756 3.724 22.342 11.171s7.447 14.895 5.585 24.204l-16.756 48.407 40.96 33.513c7.447 7.447 11.171 18.618 7.447 29.789zM562.269 107.287c-7.447-5.585-11.171-14.895-7.447-24.204l11.171-46.545-40.96 26.065c-3.724 1.862-7.447 3.724-13.033 3.724s-9.309-1.862-13.033-3.724l-40.96-24.204 11.171 46.545c1.862 9.309-1.862 18.618-7.447 24.204l-37.236 29.789 48.407 3.724c9.309 0 16.756 7.447 20.48 14.895l18.618 44.684 18.618-44.684c3.724-9.309 11.171-14.895 20.48-14.895l48.407-3.724-37.236-31.651zM923.462 148.247c-3.724 11.171-13.033 18.618-24.204 18.618l-50.269 3.724-18.618 46.545c-3.724 11.171-14.895 16.756-26.065 16.756s-22.342-7.447-26.065-16.756l-18.618-46.545-52.131-1.862c-11.171 0-20.48-7.447-24.204-18.618s0-22.342 9.309-29.789l39.098-31.651-11.171-48.407c-1.862-9.309 0-16.756 5.585-24.204 9.309-11.171 26.065-14.895 37.236-7.447l42.822 26.065 42.822-26.065c5.585-3.724 9.309-5.585 14.895-5.585 7.447 0 16.756 3.724 22.342 11.171s7.447 14.895 5.585 24.204l-16.756 46.545 40.96 33.513c9.309 7.447 11.171 18.618 7.447 29.789zM852.713 107.287c-7.447-5.585-11.171-14.895-7.447-24.204l11.171-46.545-40.96 26.065c-3.724 1.862-7.447 3.724-13.033 3.724s-9.309-1.862-13.033-3.724l-40.96-24.204 11.171 46.545c1.862 9.309 0 18.618-7.447 24.204l-37.236 29.789 48.407 1.862c9.309 0 16.756 7.447 20.48 14.895l18.618 44.684 18.618-44.684c3.724-9.309 11.171-14.895 20.48-14.895l48.407-3.724-37.236-29.789z" />
40
- <glyph unicode="&#xe91e;" glyph-name="pa-admin-icon" d="M1024.437 448.219c-0.596-158.073-72.763-299.17-185.761-392.653l-0.858-0.689h-13.548l-104.891 323.851 285.828 207.597 3.059-11.8c9.961-37.82 15.839-81.301 16.17-126.103l0.001-0.204zM798.047 22.972l-10.489-6.556c-77.973-50.165-173.175-79.974-275.339-79.974s-197.366 29.808-277.383 81.202l2.043-1.228-10.489 6.556 285.828 206.723zM305.058 380.913l-107.076-329.533h-9.178c-115.562 94.543-188.753 237.138-188.804 396.829v0.009c0.139 45.7 6.029 89.961 16.983 132.181l-0.813-3.69 3.059 11.8zM493.426 960l-109.262-336.963h-352.697l4.37 13.111c73.442 181.603 242.662 310.074 443.369 323.333l1.545 0.082zM992.97 623.037h-352.697l-109.262 336.963h12.674c202.344-13.418 371.597-142.068 443.682-320.403l1.232-3.448z" />
41
- <glyph unicode="&#xe91f;" glyph-name="pa-lottie-animations" d="M273.772 219.293c-5.722-1.206-12.299-1.899-19.037-1.904h-9.313c-12.276-1.794-21.813-11.547-23.26-23.779l-0.012-0.129c-0.186-1.288-0.293-2.775-0.293-4.287 0-12.022 6.73-22.472 16.627-27.789l0.168-0.083c6.668-2.33 14.356-3.676 22.357-3.676 4.437 0 8.778 0.414 12.985 1.205l-0.434-0.068h9.309l7.193 1.904c5.924 1.693 12.060 3.174 17.983 5.289 37.952 15.749 69.911 39.221 95.137 68.637l0.281 0.335c37.234 40.691 70.33 86.259 97.955 135.319l1.906 3.683c11.848 21.157 22.85 40.833 34.063 61.355 28.002 54.161 56.091 99.914 87.072 143.466l-2.444-3.618c22.386 31.7 48.457 58.847 78.044 81.655l0.872 0.646c15.984 13.227 36.694 21.251 59.279 21.251 1.474 0 2.941-0.034 4.399-0.102l-0.206 0.008c2.627-0.831 5.648-1.31 8.78-1.31 16.615 0 30.083 13.469 30.083 30.083 0 13.482-8.869 24.892-21.090 28.716l-0.213 0.057-5.501 1.058c-6.103 0.909-13.146 1.428-20.311 1.428s-14.208-0.519-21.095-1.522l0.784 0.094c-4.231-1.269-8.463-2.116-12.694-2.962-4.136-0.705-7.765-1.66-11.261-2.895l0.471 0.145c-56.489-19.888-94.995-63.471-129.481-105.785-10.090-12.821-20.404-27.378-30-42.437l-1.313-2.204-9.098-13.752c-16.926-25.177-31.947-52.681-46.334-79.127l-12.060-21.157c-11.002-20.099-21.157-40.198-33.64-60.086-6.347-11.002-13.329-21.157-21.157-32.582l-10.367-16.291c-23.341-39.006-50.62-72.547-82.016-101.715l-0.285-0.262c-16.751-17.293-38.011-30.122-61.886-36.594l-0.95-0.219zM981.686 917.686v-939.372h-939.372v939.372h939.372zM1024 960h-1024v-1024h1024z" />
42
- <glyph unicode="&#xe920;" glyph-name="pa-icon-list" horiz-adv-x="1260" d="M262.564 907.487h971.487c14.501 0 26.256-11.755 26.256-26.256s-11.755-26.256-26.256-26.256h-971.487c-14.501 0-26.256 11.755-26.256 26.256s11.755 26.256 26.256 26.256zM157.538 881.231c0-43.503-35.266-78.769-78.769-78.769s-78.769 35.266-78.769 78.769c0 43.503 35.266 78.769 78.769 78.769s78.769-35.266 78.769-78.769zM262.564 474.256h971.487c14.501 0 26.256-11.755 26.256-26.256s-11.755-26.256-26.256-26.256h-971.487c-14.501 0-26.256 11.755-26.256 26.256s11.755 26.256 26.256 26.256zM157.538 448c0-43.503-35.266-78.769-78.769-78.769s-78.769 35.266-78.769 78.769c0 43.503 35.266 78.769 78.769 78.769s78.769-35.266 78.769-78.769zM262.564 41.026h971.487c14.501 0 26.256-11.755 26.256-26.256s-11.755-26.256-26.256-26.256h-971.487c-14.501 0-26.256 11.755-26.256 26.256s11.755 26.256 26.256 26.256zM157.538 14.769c0-43.503-35.266-78.769-78.769-78.769s-78.769 35.266-78.769 78.769c0 43.503 35.266 78.769 78.769 78.769s78.769-35.266 78.769-78.769z" />
43
- <glyph unicode="&#xe921;" glyph-name="horizontal-mouse-scroll" d="M693.248 523.776c0 98.304-79.872 177.152-177.152 177.152h-8.192c-98.304 0-177.152-79.872-177.152-177.152v-150.528c0-98.304 79.872-177.152 177.152-177.152h8.192c98.304 0 177.152 79.872 177.152 177.152v150.528zM663.552 372.224c0-40.96-16.384-77.824-43.008-104.448s-63.488-43.008-104.448-43.008h-8.192c-40.96 0-77.824 16.384-104.448 43.008s-43.008 63.488-43.008 104.448v151.552c0 40.96 16.384 77.824 43.008 104.448s63.488 43.008 104.448 43.008h8.192c40.96 0 77.824-16.384 104.448-43.008s43.008-63.488 43.008-104.448v-151.552zM512 551.424c-8.192 0-15.36-7.168-15.36-15.36v-44.032c0-8.192 7.168-15.36 15.36-15.36s15.36 7.168 15.36 15.36v44.032c-1.024 8.192-7.168 15.36-15.36 15.36zM54.272 457.216c-4.096-5.12-4.096-13.312 0-18.432l59.392-74.752c5.12-6.144 14.336-7.168 20.48-2.048s7.168 14.336 2.048 20.48v0l-51.2 65.536 52.224 65.536c5.12 6.144 4.096 15.36-2.048 20.48s-15.36 4.096-20.48-2.048l-60.416-74.752zM886.784 382.464c-5.12-6.144-4.096-15.36 2.048-20.48s15.36-4.096 20.48 2.048l59.392 74.752c4.096 5.12 4.096 13.312 0 18.432l-59.392 74.752c-5.12 6.144-14.336 7.168-20.48 2.048s-7.168-14.336-2.048-20.48v0l52.224-65.536-52.224-65.536z" />
44
- <glyph unicode="&#xe922;" glyph-name="vertical-mouse-scroll" d="M693.248 523.776c0 98.304-79.872 177.152-177.152 177.152h-8.192c-98.304 0-177.152-79.872-177.152-177.152v-150.528c0-98.304 79.872-177.152 177.152-177.152h8.192c98.304 0 177.152 79.872 177.152 177.152v150.528zM663.552 372.224c0-40.96-16.384-77.824-43.008-104.448s-63.488-43.008-104.448-43.008h-8.192c-40.96 0-77.824 16.384-104.448 43.008s-43.008 63.488-43.008 104.448v151.552c0 40.96 16.384 77.824 43.008 104.448s63.488 43.008 104.448 43.008h8.192c40.96 0 77.824-16.384 104.448-43.008s43.008-63.488 43.008-104.448v-151.552zM512 551.424c-8.192 0-15.36-7.168-15.36-15.36v-44.032c0-8.192 7.168-15.36 15.36-15.36s15.36 7.168 15.36 15.36v44.032c-1.024 8.192-7.168 15.36-15.36 15.36zM502.784-9.728c5.12-4.096 13.312-4.096 18.432 0l74.752 59.392c6.144 5.12 7.168 14.336 2.048 20.48s-14.336 7.168-20.48 2.048v0l-65.536-51.2-65.536 52.224c-6.144 5.12-15.36 4.096-20.48-2.048s-4.096-15.36 2.048-20.48l74.752-60.416zM577.536 822.784c6.144-5.12 15.36-4.096 20.48 2.048s4.096 15.36-2.048 20.48l-74.752 59.392c-5.12 4.096-13.312 4.096-18.432 0l-74.752-59.392c-6.144-5.12-7.168-14.336-2.048-20.48s14.336-7.168 20.48-2.048v0l65.536 52.224 65.536-52.224z" />
45
- <glyph unicode="&#xe923;" glyph-name="pa-image-scroll" d="M651.636 650.938c-33.513 0-61.44-27.927-61.44-61.44s27.927-61.44 61.44-61.44 61.44 27.927 61.44 61.44c0 33.513-27.927 61.44-61.44 61.44zM651.636 552.262c-20.48 0-35.375 16.756-35.375 35.375 0 20.48 16.756 35.375 35.375 35.375s35.375-14.895 35.375-35.375-16.756-35.375-35.375-35.375zM772.655 721.687h-519.447c-7.447 0-13.033-5.585-13.033-13.033v-521.309c0-7.447 5.585-13.033 13.033-13.033h519.447c7.447 0 13.033 5.585 13.033 13.033v521.309c-1.862 7.447-5.585 13.033-13.033 13.033zM268.102 202.24v109.847l139.636 139.636 249.484-249.484h-389.12zM690.735 202.24c0 0 0 0-1.862 1.862l-126.604 126.604 67.025 67.025 128.465-128.465 1.862-67.025h-68.887zM759.622 304.64l-119.156 119.156c-3.724 3.724-13.033 3.724-18.618 0l-76.335-76.335-130.327 130.327c-5.585 5.585-13.033 5.585-18.618 0l-130.327-130.327v346.298h493.382v-389.12zM891.811 343.738c1.862-1.862 5.585-3.724 9.309-3.724s7.447 1.862 9.309 3.724l94.953 94.953c1.862 1.862 3.724 5.585 3.724 9.309s-1.862 7.447-3.724 9.309l-94.953 94.953c-5.585 5.585-13.033 5.585-18.618 0s-5.585-13.033 0-18.618l85.644-85.644-85.644-85.644c-5.585-5.585-5.585-13.033 0-18.618zM132.189 552.262c-1.862 1.862-5.585 3.724-9.309 3.724s-7.447-1.862-9.309-3.724l-94.953-94.953c-1.862-1.862-3.724-5.585-3.724-9.309s1.862-7.447 3.724-9.309l94.953-94.953c5.585-5.585 13.033-5.585 18.618 0s5.585 13.033 0 18.618l-85.644 85.644 85.644 85.644c5.585 5.585 5.585 13.033 0 18.618zM407.738 68.189c-1.862-1.862-3.724-5.585-3.724-9.309s1.862-7.447 3.724-9.309l94.953-94.953c1.862-1.862 5.585-3.724 9.309-3.724s7.447 1.862 9.309 3.724l94.953 94.953c5.585 5.585 5.585 13.033 0 18.618s-13.033 5.585-18.618 0l-85.644-85.644-85.644 85.644c-5.585 5.585-13.033 5.585-18.618 0zM616.262 827.811c1.862 1.862 3.724 5.585 3.724 9.309s-1.862 7.447-3.724 9.309l-94.953 94.953c-1.862 1.862-5.585 3.724-9.309 3.724s-7.447-1.862-9.309-3.724l-94.953-94.953c-5.585-5.585-5.585-13.033 0-18.618s13.033-5.585 18.618 0l85.644 85.644 85.644-85.644c5.585-5.585 13.033-5.585 18.618 0z" />
46
- <glyph unicode="&#xe924;" glyph-name="pa-banner" d="M942.080 900.422h-858.298c-11.171 0-22.342-9.309-22.342-20.48v-860.16c0-11.171 9.309-22.342 22.342-22.342h858.298c11.171 0 22.342 9.309 22.342 22.342v860.16c0 11.171-9.309 20.48-22.342 20.48zM104.262 857.6h817.338v-644.189l-197.353 197.353c-7.447 7.447-22.342 7.447-29.789 0l-128.465-126.604-215.971 214.109c-9.309 9.309-22.342 9.309-29.789 0l-215.971-214.109v573.44zM104.262 42.124v182.458l230.865 230.865 413.324-413.324c0-1.862-644.189-1.862-644.189 0zM921.6 42.124h-111.709c0 0 0 1.862-1.862 1.862l-212.247 208.524 111.709 111.709 212.247-212.247 1.862-109.847zM744.727 582.051c-55.855 0-100.538 44.684-100.538 100.538s44.684 100.538 100.538 100.538 100.538-44.684 100.538-100.538-44.684-100.538-100.538-100.538zM744.727 740.305c-31.651 0-57.716-26.065-57.716-57.716s26.065-57.716 57.716-57.716 57.716 26.065 57.716 57.716-26.065 57.716-57.716 57.716z" />
47
- <glyph unicode="&#xe925;" glyph-name="pa-blog" d="M837.818 19.782h-733.556c-11.171 0-22.342 9.309-22.342 22.342v729.833c0 11.171 9.309 22.342 22.342 22.342h344.436v-42.822h-323.956v-688.873h688.873v322.095h42.822v-346.298c0-9.309-9.309-18.618-18.618-18.618zM558.545 312.087h-161.978c-11.171 0-22.342 9.309-22.342 22.342v160.116c0 5.585 1.862 11.171 5.585 14.895l364.916 361.193c7.447 7.447 22.342 7.447 29.789 0l161.978-161.978c7.447-9.309 7.447-22.342 0-29.789l-363.055-361.193c-3.724-3.724-9.309-5.585-14.895-5.585zM417.047 354.909h130.327l340.713 340.713-130.327 132.189-340.713-342.575v-130.327z" />
48
- <glyph unicode="&#xe926;" glyph-name="pa-button" d="M919.738 820.364h-813.615c-52.131 0-96.815-42.822-96.815-96.815v-284.858c0-52.131 42.822-96.815 96.815-96.815h405.876v27.927h-405.876c-37.236 0-68.887 29.789-68.887 68.887v284.858c0 37.236 29.789 68.887 68.887 68.887h811.753c37.236 0 68.887-29.789 68.887-68.887v-284.858c0-37.236-29.789-68.887-68.887-68.887h-52.131l31.651-27.927h20.48c52.131 0 96.815 42.822 96.815 96.815v284.858c0 53.993-42.822 96.815-94.953 96.815zM884.364 274.851c9.309 0 13.033 11.171 5.585 16.756l-55.855 50.269-31.651 27.927-243.898 227.142c-5.585 5.585-16.756 1.862-16.756-7.447v-452.422c0-9.309 9.309-13.033 16.756-7.447l83.782 80.058c5.585 3.724 13.033 3.724 14.895-3.724l55.855-126.604c3.724-5.585 9.309-7.447 13.033-5.585l83.782 37.236c5.585 3.724 7.447 9.309 5.585 13.033l-55.855 126.604c-3.724 5.585 1.862 13.033 9.309 14.895l115.433 9.309zM768.931 127.767l-26.065-9.309c-5.585-3.724-11.171 0-13.033 5.585l-59.578 137.775c-3.724 5.585-11.171 9.309-14.895 3.724l-63.302-61.44c-5.585-5.585-16.756-1.862-16.756 7.447v305.338c0 9.309 9.309 13.033 16.756 7.447l169.425-154.531 31.651-27.927 26.065-24.204c7.447-5.585 3.724-16.756-5.585-16.756l-89.367-5.585c-7.447 0-11.171-7.447-9.309-14.895l61.44-139.636c1.862-3.724-1.862-9.309-7.447-13.033z" />
49
- <glyph unicode="&#xe927;" glyph-name="pa-carousel" d="M687.011 189.207c-26.065 0-46.545-20.48-46.545-46.545s20.48-46.545 46.545-46.545 46.545 20.48 46.545 46.545-20.48 46.545-46.545 46.545zM687.011 114.735c-14.895 0-27.927 13.033-27.927 27.927s13.033 27.927 27.927 27.927c14.895 0 27.927-13.033 27.927-27.927s-13.033-27.927-27.927-27.927zM336.989 189.207c-26.065 0-46.545-20.48-46.545-46.545s20.48-46.545 46.545-46.545c26.065 0 46.545 20.48 46.545 46.545s-20.48 46.545-46.545 46.545zM336.989 114.735c-14.895 0-27.927 13.033-27.927 27.927s13.033 27.927 27.927 27.927c14.895 0 27.927-13.033 27.927-27.927 1.862-14.895-11.171-27.927-27.927-27.927zM512 189.207c-26.065 0-46.545-20.48-46.545-46.545s20.48-46.545 46.545-46.545c27.927 0 46.545 20.48 46.545 46.545s-20.48 46.545-46.545 46.545zM512 114.735c-14.895 0-27.927 13.033-27.927 27.927s13.033 27.927 27.927 27.927c16.756 0 27.927-13.033 27.927-27.927s-13.033-27.927-27.927-27.927zM761.484 278.575h-497.105c-7.447 0-13.033 5.585-13.033 13.033v497.105c0 7.447 5.585 13.033 13.033 13.033h497.105c7.447 0 13.033-5.585 13.033-13.033v-497.105c0-7.447-7.447-13.033-13.033-13.033zM277.411 304.64h471.040v471.040h-471.040v-471.040zM152.669 801.745h-135.913v-26.065h122.88v-471.040h-122.88v-26.065h135.913c7.447 0 13.033 5.585 13.033 13.033v497.105c0 7.447-5.585 13.033-13.033 13.033zM858.298 788.713v-497.105c0-7.447 5.585-13.033 13.033-13.033h135.913v26.065h-122.88v471.040h122.88v26.065h-135.913c-7.447 0-13.033-5.585-13.033-13.033z" />
50
- <glyph unicode="&#xe928;" glyph-name="pa-grid" d="M474.764 485.236h-431.942v433.804h431.942v-433.804zM85.644 529.92h346.298v344.436h-346.298v-344.436zM981.178 485.236h-431.942v433.804h431.942v-433.804zM592.058 529.92h346.298v344.436h-346.298v-344.436zM474.764-23.040h-431.942v433.804h431.942v-433.804zM85.644 19.782h346.298v346.298h-346.298v-346.298zM981.178-23.040h-431.942v433.804h431.942v-433.804zM592.058 19.782h346.298v346.298h-346.298v-346.298z" />
51
- <glyph unicode="&#xe929;" glyph-name="pa-image-button" d="M1010.967 207.825l-303.476 180.596c-3.724 1.862-7.447 1.862-13.033 0-3.724-3.724-5.585-7.447-5.585-11.171l74.473-348.16c0-5.585 5.585-7.447 7.447-7.447 5.585-1.862 9.309 1.862 11.171 5.585l52.131 74.473c0 1.862 1.862 1.862 3.724 1.862s1.862 0 3.724-1.862l63.302-89.367c1.862-3.724 7.447-5.585 9.309-5.585s5.585 0 7.447 1.862l57.716 40.96c3.724 1.862 3.724 5.585 5.585 7.447 0 3.724 0 7.447-1.862 7.447l-63.302 89.367c0 0 0 1.862 0 3.724s1.862 1.862 1.862 1.862l89.367 24.204c5.585 1.862 7.447 5.585 7.447 9.309s-3.724 13.033-7.447 14.895zM867.607 178.036c-1.862-3.724 0-7.447 1.862-11.171l70.749-96.815c1.862-1.862 1.862-3.724 0-5.585l-18.618-13.033h-1.862c-1.862 0-1.862 0-3.724 1.862l-70.749 96.815c-1.862 3.724-7.447 5.585-9.309 5.585v0c-3.724 0-7.447-1.862-9.309-5.585l-39.098-57.716c-1.862-1.862-3.724-1.862-3.724-1.862s-3.724 0-3.724 3.724l-48.407 232.727c0 1.862 1.862 3.724 1.862 3.724s1.862 1.862 3.724 0l204.8-122.88c1.862-1.862 1.862-3.724 1.862-3.724s0-1.862-3.724-3.724l-67.025-18.618c0 0-3.724-1.862-5.585-3.724zM275.549 755.2c-52.131 0-94.953-42.822-94.953-94.953s40.96-94.953 94.953-94.953c52.131 0 94.953 42.822 94.953 94.953 1.862 53.993-42.822 94.953-94.953 94.953zM275.549 602.531c-31.651 0-57.716 24.204-57.716 57.716 0 31.651 24.204 57.716 57.716 57.716s57.716-24.204 57.716-57.716c0-29.789-26.065-57.716-57.716-57.716zM891.811 440.553c-7.447-7.447-18.618-7.447-26.065-1.862l-186.182 171.287-150.807-165.702 27.927-27.927c3.724-3.724 5.585-7.447 5.585-13.033s-1.862-9.309-5.585-13.033c-7.447-7.447-20.48-7.447-26.065 0l-121.018 119.156-271.825-236.451c-3.724-3.724-7.447-5.585-13.033-5.585s-9.309 1.862-13.033 7.447-7.447 20.48 1.862 26.065l284.858 251.345c7.447 7.447 18.618 7.447 24.204 0l76.335-78.196 161.978 176.873c3.724 3.724 7.447 7.447 13.033 7.447s9.309-1.862 13.033-5.585l201.076-184.32c9.309-9.309 9.309-20.48 3.724-27.927zM979.316 870.633v-534.342c0-9.309-7.447-18.618-18.618-18.618s-18.618 7.447-18.618 18.618v515.724h-897.396v-698.182h599.505c9.309 0 18.618-7.447 18.618-18.618s-7.447-18.618-18.618-18.618h-618.124c-9.309 0-18.618 7.447-18.618 18.618v735.418c0 9.309 7.447 18.618 18.618 18.618h936.495c9.309 0 16.756-7.447 16.756-18.618z" />
52
- <glyph unicode="&#xe92a;" glyph-name="pa-image-separator" d="M651.636 528.058c-33.513 0-61.44 27.927-61.44 61.44s27.927 61.44 61.44 61.44 61.44-27.927 61.44-61.44-27.927-61.44-61.44-61.44zM651.636 623.011c-18.618 0-35.375-14.895-35.375-35.375 0-18.618 14.895-35.375 35.375-35.375 18.618 0 35.375 14.895 35.375 35.375s-16.756 35.375-35.375 35.375zM997.935 459.171h-214.109v249.484c0 7.447-5.585 13.033-13.033 13.033h-519.447c-7.447 0-13.033-5.585-13.033-13.033v-249.484h-212.247c-5.585 0-11.171-5.585-11.171-11.171s5.585-11.171 11.171-11.171h212.247v-249.484c0-7.447 5.585-13.033 13.033-13.033h519.447c7.447 0 13.033 5.585 13.033 13.033v249.484h212.247c5.585 0 11.171 5.585 11.171 11.171s-3.724 11.171-9.309 11.171zM266.24 202.24v109.847l139.636 139.636 249.484-249.484h-389.12zM757.76 202.24h-68.887c0 0 0 0-1.862 1.862l-126.604 126.604 67.025 67.025 128.465-128.465v-67.025zM757.76 304.64l-119.156 119.156c-3.724 3.724-13.033 3.724-18.618 0l-76.335-76.335-130.327 130.327c-5.585 5.585-13.033 5.585-18.618 0l-130.327-130.327v346.298h493.382v-389.12z" />
53
- <glyph unicode="&#xe92b;" glyph-name="pa-modal-box" d="M925.324 881.804h-822.924c-11.171 0-22.342-9.309-22.342-20.48v-822.924c0-11.171 9.309-22.342 22.342-22.342h822.924c11.171 0 20.48 9.309 20.48 22.342v822.924c0 11.171-11.171 20.48-20.48 20.48zM124.742 838.982h778.24v-141.498h-778.24v141.498zM902.982 60.742h-778.24v593.92h778.24v-593.92zM856.436 747.753h-98.676c-11.171 0-22.342 9.309-22.342 22.342s9.309 22.342 22.342 22.342h98.676c11.171 0 22.342-9.309 22.342-22.342s-9.309-22.342-22.342-22.342z" />
54
- <glyph unicode="&#xe92c;" glyph-name="pa-persons" d="M601.367 431.244c81.92 35.375 139.636 117.295 139.636 214.109 0 128.465-102.4 232.727-229.004 232.727s-229.004-104.262-229.004-232.727c0-94.953 57.716-178.735 139.636-214.109-186.182-40.96-327.68-210.385-327.68-413.324h42.822c0 210.385 167.564 379.811 374.225 379.811s374.225-171.287 374.225-379.811h42.822c0 202.938-139.636 372.364-327.68 413.324zM325.818 645.353c0 104.262 83.782 189.905 186.182 189.905s186.182-85.644 186.182-189.905-83.782-189.905-186.182-189.905-186.182 85.644-186.182 189.905z" />
55
- <glyph unicode="&#xe92d;" glyph-name="pa-pricing-table" d="M640.465 371.665c0-50.269-40.96-93.091-93.091-93.091h-11.171c-1.862 0-3.724-1.862-3.724-3.724v-48.407c0-11.171-9.309-18.618-18.618-18.618-11.171 0-18.618 9.309-18.618 18.618v46.545c0 1.862-1.862 3.724-3.724 3.724h-67.025c-11.171 0-18.618 9.309-18.618 18.618s9.309 18.618 18.618 18.618h122.88c31.651 0 55.855 24.204 55.855 55.855s-24.204 55.855-55.855 55.855h-68.887c-52.131 0-93.091 40.96-93.091 93.091s40.96 93.091 93.091 93.091h11.171c1.862 0 3.724 1.862 3.724 3.724v48.407c0 9.309 9.309 18.618 18.618 18.618s18.618-9.309 18.618-18.618v-48.407c0-1.862 1.862-3.724 3.724-3.724h63.302c9.309 0 18.618-9.309 18.618-18.618 0-11.171-9.309-18.618-18.618-18.618h-121.018c-31.651 0-55.855-26.065-55.855-55.855 0-31.651 26.065-55.855 55.855-55.855h68.887c52.131 1.862 94.953-39.098 94.953-91.229zM841.542 930.211h-657.222c-22.342 0-39.098-18.618-39.098-39.098v-888.087c0-22.342 18.618-39.098 39.098-39.098h657.222c22.342 0 39.098 18.618 39.098 39.098v888.087c-1.862 20.48-18.618 39.098-39.098 39.098zM834.095 6.749h-644.189v878.778h646.051c0 0 0-878.778-1.862-878.778z" />
56
- <glyph unicode="&#xe92e;" glyph-name="pa-progress-bar" d="M942.080 155.695v-42.822h-409.6v-68.887h-42.822v68.887h-407.738v42.822h407.738v68.887h42.822v-68.887zM942.080 784.989v-42.822h-586.473v-68.887h-42.822v68.887h-230.865v42.822h230.865v68.887h42.822v-68.887zM822.924 470.342v-42.822h-117.295v-68.887h-42.822v68.887h-580.887v42.822h580.887v68.887h42.822v-68.887z" />
57
- <glyph unicode="&#xe92f;" glyph-name="pa-testimonials" d="M318.371 615.564h383.535v-42.822h-383.535v42.822zM318.371 474.065h383.535v-42.822h-383.535v42.822zM182.458 86.807l53.993 173.149c-96.815 53.993-154.531 152.669-154.531 262.516 0 167.564 137.775 301.615 305.338 301.615h247.622c167.564 1.862 305.338-134.051 305.338-301.615s-137.775-301.615-305.338-301.615h-160.116l-275.549-148.945c-9.309-5.585-20.48 3.724-16.756 14.895zM389.12 783.127c-145.222 0-262.516-117.295-262.516-260.655 0-100.538 55.855-188.044 147.084-232.727l16.756-7.447-42.822-137.775 219.695 119.156h169.425c145.222 0 262.516 117.295 262.516 258.793s-117.295 260.655-262.516 260.655h-247.622z" />
58
- <glyph unicode="&#xe930;" glyph-name="pa-title" d="M822.924 898.56h-619.985c-13.033 0-22.342-9.309-22.342-22.342v-102.4c0-13.033 9.309-22.342 22.342-22.342s22.342 7.447 22.342 20.48v80.058h264.378v-809.891h-55.855c-13.033 0-22.342-9.309-22.342-22.342s9.309-22.342 22.342-22.342h156.393c13.033 0 22.342 9.309 22.342 22.342s-9.309 22.342-22.342 22.342h-55.855v809.891h264.378v-80.058c0-13.033 9.309-22.342 22.342-22.342s22.342 9.309 22.342 22.342v104.262c1.862 11.171-9.309 22.342-20.48 22.342v0z" />
59
- <glyph unicode="&#xe931;" glyph-name="pa-vertical-scroll" d="M512 898.56c-65.164 0-121.018-53.993-121.018-121.018s53.993-121.018 121.018-121.018c67.025 0 121.018 53.993 121.018 121.018 1.862 67.025-52.131 121.018-121.018 121.018zM512 690.036c-48.407 0-87.505 39.098-87.505 87.505s39.098 87.505 87.505 87.505 87.505-39.098 87.505-87.505c0-48.407-39.098-87.505-87.505-87.505zM512 243.2c-65.164 0-121.018-55.855-121.018-121.018 0-67.025 53.993-121.018 121.018-121.018s121.018 53.993 121.018 121.018c1.862 65.164-52.131 121.018-121.018 121.018zM512 34.676c-48.407 0-87.505 39.098-87.505 87.505s39.098 87.505 87.505 87.505 87.505-39.098 87.505-87.505-39.098-87.505-87.505-87.505zM512 570.88c-67.025 0-121.018-53.993-121.018-121.018s55.855-122.88 121.018-122.88c67.025 0 121.018 53.993 121.018 121.018 1.862 68.887-52.131 122.88-121.018 122.88zM512 362.356c-48.407 0-87.505 39.098-87.505 87.505s39.098 87.505 87.505 87.505 87.505-39.098 87.505-87.505-39.098-87.505-87.505-87.505z" />
60
- <glyph unicode="&#xe932;" glyph-name="pa-video-box" d="M703.767 457.309l-284.858 210.385c-5.585 3.724-14.895 0-14.895-7.447v-422.633c0-7.447 9.309-11.171 14.895-7.447l286.72 210.385c3.724 5.585 3.724 13.033-1.862 16.756zM446.836 306.502v282.996l191.767-141.498-191.767-141.498zM512 930.211c-273.687 0-495.244-217.833-495.244-482.211s223.418-482.211 495.244-482.211c273.687 0 495.244 215.971 495.244 482.211s-221.556 482.211-495.244 482.211zM512 19.782c-247.622 0-446.836 193.629-446.836 430.080s199.215 430.080 446.836 430.080 446.836-193.629 446.836-430.080-201.076-430.080-446.836-430.080z" />
61
- <glyph unicode="&#xe933;" glyph-name="pa-countdown" d="M917.876 861.324h-223.418v35.375c0 11.171-9.309 20.48-22.342 20.48s-20.48-9.309-20.48-20.48v-35.375h-282.996v35.375c0 11.171-9.309 20.48-22.342 20.48-11.171 0-22.342-9.309-22.342-20.48v-35.375h-223.418c-9.309 0-18.618-9.309-18.618-20.48v-837.818c0-11.171 9.309-22.342 22.342-22.342h815.476c11.171 0 22.342 9.309 22.342 22.342v837.818c-1.862 11.171-11.171 20.48-24.204 20.48zM124.742 818.502h201.076v-44.684c0-11.171 9.309-22.342 22.342-22.342 11.171 0 22.342 9.309 22.342 22.342v44.684h284.858v-44.684c0-11.171 9.309-22.342 22.342-22.342s22.342 9.309 22.342 22.342v44.684h201.076v-148.945h-776.378v148.945zM897.396 25.367h-772.655v601.367h772.655v-601.367zM385.396 140.8h-40.96v262.516c0 22.342 0 42.822 1.862 61.44-3.724-3.724-7.447-7.447-11.171-11.171-5.585-3.724-24.204-20.48-61.44-48.407l-22.342 27.927 96.815 74.473h37.236v-366.778zM571.578 140.8l152.669 329.542h-201.076v39.098h245.76v-33.513l-150.807-335.127h-46.545z" />
62
- <glyph unicode="&#xe934;" glyph-name="pa-counter" d="M420.771 265.542h-40.96v258.793c0 22.342 0 42.822 1.862 61.44-3.724-3.724-7.447-7.447-11.171-11.171s-24.204-20.48-59.578-48.407l-22.342 27.927 94.953 72.611h35.375c1.862 1.862 1.862-361.193 1.862-361.193zM660.945 265.542h-40.96v258.793c0 22.342 0 42.822 1.862 61.44-3.724-3.724-7.447-7.447-11.171-11.171s-24.204-20.48-59.578-48.407l-22.342 27.927 94.953 72.611h35.375v-361.193zM512 939.52c-279.273 0-504.553-221.556-504.553-491.52s225.28-489.658 504.553-489.658 504.553 219.695 504.553 489.658-225.28 491.52-504.553 491.52zM512 8.611c-251.345 0-456.145 197.353-456.145 439.389s204.8 439.389 456.145 439.389 456.145-197.353 456.145-439.389-204.8-439.389-456.145-439.389z" />
63
- <glyph unicode="&#xe935;" glyph-name="pa-dual-heading" d="M990.487 222.72h-93.091c-11.171 0-18.618 7.447-18.618 16.756s7.447 16.756 18.618 16.756h27.927v173.149h-255.069v-173.149h27.927c11.171 0 18.618-7.447 18.618-16.756s-9.309-16.756-18.618-16.756h-93.091c-11.171 0-18.618 7.447-18.618 16.756s7.447 16.756 18.618 16.756h27.927v383.535h-27.927c-11.171 0-18.618 7.447-18.618 16.756s9.309 16.756 18.618 16.756h93.091c11.171 0 18.618-7.447 18.618-16.756s-7.447-16.756-18.618-16.756h-27.927v-175.011h253.207v175.011h-27.927c-11.171 0-18.618 7.447-18.618 16.756s9.309 16.756 18.618 16.756h93.091c11.171 0 18.618-7.447 18.618-16.756s-9.309-16.756-18.618-16.756h-27.927v-381.673h26.065c11.171 0 18.618-7.447 18.618-16.756 3.724-11.171-3.724-18.618-14.895-18.618zM897.396 245.062c-3.724 0-7.447-1.862-7.447-5.585s3.724-5.585 7.447-5.585h93.091c3.724 0 7.447 1.862 7.447 5.585s-3.724 5.585-7.447 5.585h-39.098v405.876h39.098c3.724 0 7.447 1.862 7.447 5.585s-3.724 5.585-7.447 5.585h-93.091c-3.724 0-7.447-1.862-7.447-5.585s3.724-5.585 7.447-5.585h39.098v-197.353h-277.411v197.353h39.098c3.724 0 7.447 1.862 7.447 5.585s-3.724 5.585-7.447 5.585h-93.091c-3.724 0-7.447-1.862-7.447-5.585s3.724-5.585 7.447-5.585h39.098v-405.876h-39.098c-3.724 0-7.447-1.862-7.447-5.585s3.724-5.585 7.447-5.585h93.091c3.724 0 7.447 1.862 7.447 5.585s-3.724 5.585-7.447 5.585h-39.098v195.491h275.549v-197.353l-37.236 1.862zM437.527 233.891c0-7.447-5.585-11.171-13.033-11.171h-96.815c-7.447 0-13.033 5.585-13.033 11.171 0 7.447 5.585 11.171 13.033 11.171h33.513v189.905h-271.825v-189.905h33.513c7.447 0 13.033-5.585 13.033-11.171 0-7.447-7.447-11.171-13.033-11.171h-94.953c-7.447 0-13.033 5.585-13.033 11.171 0 7.447 5.585 11.171 13.033 11.171h33.513v404.015h-33.513c-7.447 0-13.033 5.585-13.033 11.171s5.585 11.171 13.033 11.171h96.815c7.447 0 13.033-5.585 13.033-11.171s-5.585-11.171-13.033-11.171h-35.375v-189.905h271.825v189.905h-33.513c-7.447 0-13.033 5.585-13.033 11.171s5.585 11.171 13.033 11.171h96.815c7.447 0 13.033-5.585 13.033-11.171s-5.585-11.171-13.033-11.171h-33.513v-404.015h33.513c5.585 0 13.033-3.724 13.033-11.171z" />
64
- <glyph unicode="&#xe936;" glyph-name="pa-fancy-text" d="M860.16 161.28c-26.065 0-50.269 11.171-65.164 31.651l-9.309 11.171-9.309-11.171c-16.756-20.48-40.96-31.651-65.164-31.651-7.447 0-13.033 5.585-13.033 13.033s5.585 13.033 13.033 13.033c33.513 0 61.44 31.651 61.44 70.749v176.873h-37.236c-7.447 0-13.033 5.585-13.033 13.033s5.585 13.033 13.033 13.033h37.236v176.873c0 39.098-27.927 70.749-61.44 70.749-7.447 0-13.033 5.585-13.033 13.033s5.585 13.033 13.033 13.033c26.065 0 50.269-11.171 65.164-31.651l9.309-11.171 9.309 11.171c16.756 20.48 40.96 31.651 65.164 31.651 7.447 0 13.033-5.585 13.033-13.033s-5.585-13.033-13.033-13.033c-33.513 0-61.44-31.651-61.44-70.749v-176.873h37.236c7.447 0 13.033-5.585 13.033-13.033s-5.585-13.033-13.033-13.033h-37.236v-176.873c0-39.098 27.927-70.749 61.44-70.749 7.447 0 13.033-5.585 13.033-13.033s-7.447-13.033-13.033-13.033zM342.575 647.215c0-7.447-5.585-13.033-13.033-13.033h-137.775c-7.447 0-13.033 5.585-13.033 13.033s7.447 13.033 13.033 13.033h135.913c9.309 0 14.895-5.585 14.895-13.033zM342.575 254.371c0-7.447-5.585-13.033-13.033-13.033h-137.775c-7.447 0-13.033 5.585-13.033 13.033s7.447 13.033 13.033 13.033h135.913c9.309 1.862 14.895-3.724 14.895-13.033zM616.262 254.371c0-7.447-5.585-13.033-13.033-13.033h-137.775c-7.447 0-13.033 5.585-13.033 13.033s7.447 13.033 13.033 13.033h135.913c7.447 1.862 14.895-3.724 14.895-13.033zM1012.829 367.942v-78.196c1.862-26.065-20.48-48.407-46.545-48.407-7.447 0-14.895 5.585-14.895 13.033 0 3.724 1.862 7.447 3.724 11.171 1.862 1.862 5.585 3.724 11.171 3.724 11.171 0 20.48 7.447 20.48 20.48v78.196c0 7.447 7.447 13.033 13.033 13.033 7.447 0 13.033-5.585 13.033-13.033zM1001.658 522.473c-7.447 0-13.033 5.585-13.033 13.033v78.196c0 11.171-9.309 18.618-20.48 20.48-3.724 0-7.447 1.862-11.171 3.724s-3.724 3.724-3.724 7.447c0 7.447 7.447 13.033 13.033 13.033 26.065 0 48.407-20.48 48.407-46.545v-78.196c1.862-5.585-5.585-11.171-13.033-11.171zM616.262 647.215c0-7.447-5.585-13.033-13.033-13.033h-137.775c-7.447 0-13.033 5.585-13.033 13.033s7.447 13.033 13.033 13.033h135.913c7.447 0 14.895-5.585 14.895-13.033zM72.611 647.215c0-3.724-1.862-7.447-3.724-11.171s-7.447-3.724-11.171-3.724c-11.171 0-20.48-7.447-20.48-18.618v-78.196c0-7.447-7.447-13.033-14.895-13.033s-13.033 5.585-13.033 13.033v78.196c0 26.065 22.342 46.545 48.407 46.545 7.447 1.862 14.895-3.724 14.895-13.033zM70.749 254.371c0-5.585-5.585-13.033-13.033-13.033-26.065 0-48.407 22.342-48.407 46.545v78.196c0 7.447 7.447 13.033 13.033 13.033 7.447 0 13.033-5.585 13.033-13.033v-78.196c0-11.171 9.309-18.618 20.48-20.48 3.724 0 7.447-1.862 11.171-3.724 1.862-1.862 3.724-5.585 3.724-9.309z" />
65
- <glyph unicode="&#xe937;" glyph-name="pa-google-maps" d="M666.531 863.185v0l-20.48 7.447-20.48-7.447-249.484-80.058-292.305 93.091v-759.622l269.964-83.782 22.342-7.447 22.342 7.447 249.484 80.058 292.305-93.091v757.76l-273.687 85.644zM353.745 75.636l-227.142 74.473v670.255l227.142-74.473v-670.255zM396.567 745.891l227.142 72.611v-668.393l-227.142-74.473v670.255zM895.535 75.636l-227.142 72.611v670.255l227.142-72.611v-670.255zM666.531 863.185v0 0 0zM623.709 863.185v0 0 0z" />
66
- <glyph unicode="&#xe938;" glyph-name="pa-contact-form" d="M1012.829 526.196c0 1.862-1.862 3.724-1.862 5.585s-1.862 3.724-3.724 3.724c-1.862 1.862-3.724 3.724-5.585 3.724v0l-161.978 83.782v85.644c0 1.862 0 3.724 0 3.724 0 3.724-3.724 9.309-5.585 11.171l-202.938 202.938c0 0 0 1.862-1.862 1.862-1.862 1.862-1.862 1.862-3.724 1.862-3.724 1.862-5.585 1.862-9.309 1.862h-411.462c-11.171 0-22.342-9.309-22.342-22.342v-288.582l-161.978-85.644-1.862-1.862c0 0 0 0-1.862-1.862s-1.862-3.724-3.724-3.724c0-1.862-1.862-3.724-1.862-3.724v0-1.862c0-1.862 0-3.724 0-3.724v-536.204c0-11.171 9.309-20.48 20.48-20.48h960.698c11.171 0 20.48 9.309 20.48 20.48v538.065c0 1.862 0 3.724 0 5.585zM839.68 574.604l104.262-53.993-104.262-44.684v98.676zM634.88 863.185l134.051-134.051h-134.051v134.051zM227.142 892.975h368.64v-184.32c0-11.171 9.309-22.342 22.342-22.342h182.458v-229.004l-286.72-122.88-284.858 124.742v433.804zM184.32 576.465v-100.538l-104.262 46.545 104.262 53.993zM971.869 6.749h-919.738v482.211l450.56-197.353c5.585-1.862 11.171-1.862 16.756 0l454.284 197.353v-482.211z" />
67
- <glyph unicode="&#xe939;" glyph-name="pa-woo-products-listing" d="M999.86 787.283c-21.127 27.308-53.905 44.72-90.749 44.72-0.137 0-0.274 0-0.41-0.001h-728.705l-27.159 108.578c-2.858 11.239-12.887 19.42-24.827 19.42-0.004 0-0.009 0-0.013 0h-102.397c-14.138 0-25.6-11.461-25.6-25.6s11.461-25.6 25.6-25.6v0h82.398l195.416-783.985c-28.649-18.469-47.35-50.216-47.35-86.331 0-56.542 45.836-102.378 102.378-102.378 47.42 0 87.31 32.24 98.947 75.997l0.162 0.715h236.875c11.775-44.516 51.691-76.799 99.146-76.799 56.553 0 102.398 45.845 102.398 102.398s-45.845 102.398-102.398 102.398c-47.456 0-87.372-32.282-98.985-76.084l-0.161-0.714h-236.875c-11.832 44.485-51.72 76.738-99.151 76.798h-0.007c-0.301 0.006-0.657 0.009-1.013 0.009-1.812 0-3.605-0.083-5.374-0.246l0.227 0.017-25.58 102.618h488.99c53.327 0.008 98.189 36.242 111.315 85.433l0.183 0.805 93.098 358.393c2.392 8.737 3.767 18.769 3.767 29.122 0 26.623-9.090 51.123-24.335 70.566l0.188-0.249zM793.585 89.617c28.276 0 51.199-22.923 51.199-51.199s-22.923-51.199-51.199-51.199c-28.276 0-51.199 22.923-51.199 51.199v0c0 28.276 22.923 51.199 51.199 51.199v0zM409.592 38.418c0-28.276-22.923-51.199-51.199-51.199s-51.199 22.923-51.199 51.199c0 28.276 22.923 51.199 51.199 51.199v0c28.276 0 51.199-22.923 51.199-51.199v0zM877.583 342.412c-7.359-27.823-32.307-47.999-61.967-47.999-0.011 0-0.023 0-0.034 0h-500.908l-31.999 127.998h615.708zM911.582 473.689h-641.587l-31.999 127.998h706.946zM970.561 700.805l-12.44-47.999h-732.766l-31.999 127.998h715.366c0.010 0 0.021 0 0.032 0 35.346 0 63.999-28.653 63.999-63.999 0-5.686-0.741-11.198-2.133-16.446l0.101 0.447z" />
68
  </font></defs></svg>
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata>Generated by IcoMoon</metadata>
5
+ <defs>
6
+ <font id="icomoon" horiz-adv-x="1024">
7
+ <font-face units-per-em="1024" ascent="960" descent="-64" />
8
+ <missing-glyph horiz-adv-x="1024" />
9
+ <glyph unicode="&#x20;" horiz-adv-x="512" d="" />
10
+ <glyph unicode="&#xe900;" glyph-name="trustpilot" horiz-adv-x="1077" d="M205.661-64l125.981 393.825-331.642 239.041 409.977 2.961 128.404 388.172 125.443-388.172 412.938-2.961-538.381-388.172-332.719-244.694zM874.869-61.308l-336.488 242.002 233.119 64.606 103.369-306.608z" />
11
+ <glyph unicode="&#xe901;" glyph-name="pa-behance-feed" d="M407.738 459.171l-9.309 5.585 9.309 7.447c35.375 27.927 55.855 68.887 55.855 113.571 0 80.058-65.164 145.222-145.222 145.222h-232.727c-13.033 0-22.342-9.309-22.342-22.342v-519.447c0-13.033 9.309-22.342 22.342-22.342h234.589c89.367 0 160.116 72.611 160.116 160.116-1.862 52.131-27.927 102.4-72.611 132.189zM318.371 209.687h-210.385v232.727h210.385c63.302 0 115.433-52.131 115.433-115.433 0-65.164-50.269-117.295-115.433-117.295zM107.985 686.313h210.385c55.855 0 98.676-44.684 98.676-98.676s-44.684-98.676-98.676-98.676h-210.385v197.353zM746.589 593.222c-117.295 0-214.109-96.815-214.109-214.109s96.815-214.109 214.109-214.109c57.716 0 111.709 22.342 150.807 63.302 5.585 5.585 5.585 13.033 5.585 16.756s0 9.309-7.447 16.756c-5.585 5.585-13.033 7.447-16.756 7.447-5.585 0-11.171-1.862-16.756-7.447-31.651-31.651-74.473-50.269-119.156-50.269-81.92 0-150.807 57.716-165.702 137.775l-1.862 9.309h359.331c13.033 0 22.342 9.309 22.342 22.342 3.724 117.295-91.229 212.247-210.385 212.247zM914.153 401.455h-335.127l1.862 9.309c14.895 80.058 85.644 137.775 165.702 137.775s150.807-57.716 165.702-137.775l1.862-9.309zM889.949 691.898c0-13.033-9.309-22.342-22.342-22.342h-256.931c-13.033 0-22.342 9.309-22.342 22.342s9.309 22.342 22.342 22.342h256.931c11.171 0 22.342-9.309 22.342-22.342z" />
12
+ <glyph unicode="&#xe902;" glyph-name="pa-charts" d="M584.611 896.698c-9.309 0-18.618-7.447-18.618-18.618v-359.331c0-9.309 7.447-18.618 18.618-18.618h359.331c9.309 0 18.618 7.447 18.618 18.618 0 93.091-33.513 180.596-94.953 249.484-70.749 81.92-173.149 128.465-282.996 128.465v0zM603.229 537.367v322.095c91.229-5.585 176.873-46.545 238.313-115.433 50.269-57.716 80.058-130.327 85.644-208.524h-323.956zM875.055 407.040c0 9.309-7.447 18.618-18.618 18.618h-370.502v368.64c0 9.309-7.447 18.618-18.618 18.618-225.28 0-407.738-182.458-407.738-407.738 0-223.418 182.458-407.738 407.738-407.738 225.28 1.862 407.738 184.32 407.738 409.6v0zM467.316 36.538c-204.8 0-370.502 165.702-370.502 370.502 0 197.353 156.393 361.193 351.884 370.502v-370.502c0-9.309 7.447-18.618 18.618-18.618h370.502c-9.309-195.491-171.287-351.884-370.502-351.884v0z" />
13
+ <glyph unicode="&#xe903;" glyph-name="pa-color-transition" d="M943.942 401.455h-191.767l135.913 135.913c7.447 7.447 7.447 18.618 0 26.065l-258.793 258.793c-3.724 3.724-7.447 5.585-13.033 5.585s-9.309-1.862-13.033-5.585l-135.913-135.913v199.215c0 9.309-7.447 18.618-18.618 18.618h-366.778c-9.309 0-18.618-7.447-18.618-18.618v-698.182c0-104.262 85.644-189.905 189.905-189.905h690.735c9.309 0 18.618 7.447 18.618 18.618v366.778c0 9.309-7.447 18.618-18.618 18.618zM467.316 628.596l230.865-230.865-126.604-126.604-104.262 104.262v253.207zM467.316 187.345v137.775l78.196-78.196-80.058-80.058c0 5.585 1.862 13.033 1.862 20.48zM100.538 868.771h331.404v-165.702h-331.404v165.702zM100.538 665.833h331.404v-178.735h-331.404v178.735zM100.538 449.862h331.404v-178.735h-331.404v178.735zM277.411 34.676h-22.342c-42.822 0-80.058 16.756-107.985 44.684s-44.684 67.025-44.684 107.985v48.407h331.404v-48.407c-3.724-83.782-72.611-152.669-156.393-152.669zM497.105 34.676h-107.985c18.618 14.895 35.375 31.651 48.407 52.131l59.578 59.578v-111.709zM711.215 34.676h-178.735v148.945l178.735 178.735v-327.68zM489.658 656.524l126.604 126.604 232.727-232.727-126.604-126.604-232.727 232.727zM925.324 34.676h-178.735v329.542h178.735v-329.542zM310.924 159.418c0-24.204-20.48-44.684-46.545-44.684-24.204 0-46.545 20.48-46.545 44.684 0 26.065 20.48 46.545 46.545 46.545s46.545-20.48 46.545-46.545z" />
14
+ <glyph unicode="&#xe904;" glyph-name="pa-content-switcher" d="M739.142 669.556h-454.284c-122.88 0-221.556-98.676-221.556-221.556s98.676-221.556 221.556-221.556h454.284c122.88 0 221.556 98.676 221.556 221.556s-98.676 221.556-221.556 221.556zM739.142 263.68h-454.284c-102.4 0-184.32 81.92-184.32 184.32s81.92 184.32 184.32 184.32h454.284c102.4 0 184.32-81.92 184.32-184.32s-81.92-184.32-184.32-184.32zM737.28 611.84c-91.229 0-163.84-72.611-163.84-163.84s72.611-163.84 163.84-163.84c91.229 0 163.84 72.611 163.84 163.84s-72.611 163.84-163.84 163.84zM737.28 319.535c-70.749 0-128.465 57.716-128.465 128.465s57.716 128.465 128.465 128.465c70.749 0 128.465-57.716 128.465-128.465s-57.716-128.465-128.465-128.465z" />
15
+ <glyph unicode="&#xe905;" glyph-name="pa-facebook-feed" d="M582.749-0.698h-193.629v402.153h-81.92c-13.033 0-24.204 11.171-24.204 24.204v135.913c0 13.033 11.171 24.204 24.204 24.204h81.92v104.262c0 94.953 59.578 206.662 227.142 206.662 59.578 0 102.4-5.585 104.262-5.585l18.618-1.862-3.724-173.149h-20.48c0 0-44.684 0-93.091 0-35.375 0-40.96-9.309-40.96-44.684v-85.644h132.189c14.895 0 26.065-11.171 24.204-26.065l-5.585-135.913c0-13.033-11.171-24.204-24.204-24.204h-126.604l1.862-400.291zM430.080 38.4h113.571v404.015h150.807l5.585 104.262h-156.393v126.604c0 40.96 9.309 83.782 80.058 83.782 27.927 0 55.855 0 72.611 0l1.862 96.815c-16.756 1.862-46.545 3.724-81.92 3.724-137.775 0-188.044-85.644-188.044-167.564v-143.36h-106.124v-104.262h106.124l1.862-404.015z" />
16
+ <glyph unicode="&#xe906;" glyph-name="pa-facebook-reviews" d="M606.953 671.418c0 0 0 0 0 0s0 0 0 0v0c0 0 0 0 0 0zM741.004 583.913c0-1.862 0-1.862 1.862-1.862 0 0 0 0-1.862 1.862 0 0 0 0 0 0s0 0 0 0 0 0 0 0zM800.582 550.4c0 13.033-3.724 24.204-11.171 33.513 13.033 11.171 22.342 27.927 22.342 46.545 0 33.513-26.065 59.578-59.578 59.578h-102.4c3.724 14.895 7.447 33.513 9.309 63.302 0 0 0 0 0 0s0 0 0 1.862c0 0 3.724 35.375 1.862 67.025 0 0 0 1.862 0 1.862v0c-1.862 18.618-5.585 42.822-24.204 57.716-13.033 11.171-29.789 14.895-48.407 13.033-39.098-3.724-46.545-40.96-48.407-61.44 0 0 0 0 0 0 0-1.862 0-1.862 0-3.724-1.862-18.618-7.447-57.716-11.171-70.749 0 0 0 0 0-1.862 0 0 0 0 0-1.862-14.895-55.855-70.749-122.88-96.815-147.084-11.171 13.033-26.065 20.48-42.822 20.48h-119.156c-31.651 0-57.716-27.927-57.716-63.302v-173.149c0-35.375 26.065-63.302 57.716-63.302h119.156c22.342 0 42.822 14.895 52.131 37.236 18.618-16.756 40.96-35.375 70.749-37.236 18.618 0 46.545 0 81.92 0 52.131 0 106.124 0 121.018 0h3.724c1.862 0 1.862 0 3.724 0 0 0 0 0 0 0v0c0 0 0 0 0 0 29.789 1.862 53.993 27.927 53.993 59.578 0 13.033-3.724 24.204-11.171 33.513 1.862 1.862 3.724 3.724 5.585 5.585 11.171 11.171 16.756 26.065 16.756 42.822 0 13.033-3.724 24.204-11.171 33.513 14.895 11.171 24.204 27.927 24.204 46.545zM409.6 392.145c0-14.895-9.309-26.065-20.48-26.065h-119.156c-11.171 0-20.48 11.171-20.48 26.065v173.149c0 14.895 9.309 26.065 20.48 26.065h119.156c11.171 0 20.48-11.171 20.48-26.065v-173.149zM752.175 608.116c-1.862 0-3.724 0-5.585-1.862-7.447-1.862-13.033-9.309-13.033-16.756 0-3.724 0-5.585 1.862-9.309 0-1.862 1.862-1.862 1.862-3.724 1.862-1.862 1.862-1.862 3.724-3.724 0 0 1.862 0 1.862-1.862 1.862 0 1.862-1.862 3.724-1.862 9.309 0 16.756-9.309 16.756-18.618 0-13.033-9.309-22.342-22.342-22.342v0c-7.447 0-14.895-5.585-18.618-13.033-3.724-9.309 3.724-20.48 13.033-22.342s16.756-11.171 16.756-22.342c0-13.033-9.309-22.342-22.342-22.342-9.309 0-14.895-5.585-16.756-13.033 0 0 0-1.862 0-1.862s0 0 0 0 0 0 0 0c0-1.862 0-3.724 0-5.585s0-1.862 0-3.724 1.862-1.862 1.862-3.724c0 0 0 0 0-1.862v0c0 0 0 0 0 0s1.862-1.862 1.862-1.862c0 0 0 0 0 0 1.862-1.862 3.724-3.724 7.447-3.724 9.309-3.724 14.895-11.171 14.895-22.342 0-13.033-9.309-22.342-22.342-22.342 0 0-1.862 0-1.862 0h-1.862c-42.822 0-147.084-1.862-199.215 0-18.618 0-39.098 18.618-53.993 33.513-3.724 3.724-7.447 7.447-11.171 11.171v152.669c0 1.862 0 5.585 0 7.447 37.236 27.927 102.4 113.571 117.295 175.011 0 0 0 0 0 0s0 1.862 0 1.862c3.724 16.756 9.309 57.716 11.171 70.749 0 0 0 0 0 0 0 1.862 0 1.862 0 3.724 3.724 31.651 9.309 31.651 16.756 31.651 9.309 1.862 16.756 0 20.48-3.724 9.309-7.447 11.171-24.204 11.171-33.513v-3.724c0 0 0 0 0 0s0 0 0 0v0c1.862-22.342 0-44.684-1.862-53.993 0 0 0 0 0 0s0-1.862 0-1.862c-3.724-52.131-11.171-72.611-13.033-76.335 0 0 0 0 0 0 0-1.862-1.862-1.862-1.862-3.724v0c0 0 0 0 0 0 0-1.862 0-3.724 0-5.585v0c0 0 0 0 0 0s0 0 0 0 0-1.862 0-1.862 0-1.862 1.862-3.724v0c0-1.862 1.862-3.724 3.724-5.585s1.862-1.862 3.724-3.724c3.724-1.862 5.585-3.724 9.309-3.724h128.465c13.033 0 22.342-9.309 22.342-22.342-3.724-14.895-13.033-24.204-26.065-24.204zM714.938 416.349c0 1.862 0 1.862 0 0 0 0 0 0 0 0s0 0 0 0zM711.215 421.935c0 0 0-1.862 1.862-1.862 0 0 0 0 0 0s-1.862 1.862-1.862 1.862zM342.575 148.247c-3.724 11.171-13.033 18.618-24.204 18.618l-50.269 3.724-18.618 46.545c-3.724 11.171-14.895 16.756-26.065 16.756s-22.342-7.447-26.065-16.756l-18.618-46.545-50.269-3.724c-11.171 0-20.48-7.447-24.204-18.618s0-22.342 9.309-29.789l39.098-31.651-11.171-48.407c-1.862-9.309 0-16.756 5.585-24.204 9.309-11.171 26.065-14.895 37.236-7.447l42.822 26.065 42.822-26.065c3.724-3.724 9.309-5.585 14.895-5.585 9.309 0 16.756 3.724 22.342 11.171s7.447 14.895 5.585 24.204l-18.618 48.407 40.96 33.513c7.447 7.447 11.171 18.618 7.447 29.789zM269.964 107.287c-7.447-5.585-11.171-14.895-7.447-24.204l11.171-46.545-40.96 26.065c-3.724 1.862-7.447 3.724-13.033 3.724s-9.309-1.862-13.033-3.724l-39.098-26.065 11.171 46.545c1.862 9.309-1.862 18.618-7.447 24.204l-37.236 29.789 48.407 3.724c9.309 0 16.756 7.447 20.48 14.895l18.618 44.684 18.618-44.684c3.724-9.309 11.171-14.895 20.48-14.895l48.407-3.724-39.098-29.789zM633.018 148.247c-3.724 11.171-13.033 18.618-24.204 18.618l-50.269 3.724-18.618 46.545c-3.724 11.171-14.895 16.756-26.065 16.756s-22.342-7.447-26.065-16.756l-18.618-46.545-50.269-3.724c-11.171 0-20.48-7.447-24.204-18.618s0-22.342 9.309-29.789l39.098-31.651-11.171-48.407c-1.862-9.309 0-16.756 3.724-24.204 9.309-11.171 26.065-14.895 37.236-7.447l42.822 26.065 42.822-26.065c3.724-3.724 9.309-5.585 14.895-5.585 9.309 0 16.756 3.724 22.342 11.171s7.447 14.895 5.585 24.204l-16.756 48.407 40.96 33.513c7.447 7.447 11.171 18.618 7.447 29.789zM562.269 107.287c-7.447-5.585-11.171-14.895-7.447-24.204l11.171-46.545-40.96 26.065c-3.724 1.862-7.447 3.724-13.033 3.724s-9.309-1.862-13.033-3.724l-40.96-24.204 11.171 46.545c1.862 9.309-1.862 18.618-7.447 24.204l-37.236 29.789 48.407 3.724c9.309 0 16.756 7.447 20.48 14.895l18.618 44.684 18.618-44.684c3.724-9.309 11.171-14.895 20.48-14.895l48.407-3.724-37.236-31.651zM923.462 148.247c-3.724 11.171-13.033 18.618-24.204 18.618l-50.269 3.724-18.618 46.545c-3.724 11.171-14.895 16.756-26.065 16.756s-22.342-7.447-26.065-16.756l-18.618-46.545-52.131-1.862c-11.171 0-20.48-7.447-24.204-18.618s0-22.342 9.309-29.789l39.098-31.651-11.171-48.407c-1.862-9.309 0-16.756 5.585-24.204 9.309-11.171 26.065-14.895 37.236-7.447l42.822 26.065 42.822-26.065c5.585-3.724 9.309-5.585 14.895-5.585 7.447 0 16.756 3.724 22.342 11.171s7.447 14.895 5.585 24.204l-16.756 46.545 40.96 33.513c9.309 7.447 11.171 18.618 7.447 29.789zM852.713 107.287c-7.447-5.585-11.171-14.895-7.447-24.204l11.171-46.545-40.96 26.065c-3.724 1.862-7.447 3.724-13.033 3.724s-9.309-1.862-13.033-3.724l-40.96-24.204 11.171 46.545c1.862 9.309 0 18.618-7.447 24.204l-37.236 29.789 48.407 1.862c9.309 0 16.756 7.447 20.48 14.895l18.618 44.684 18.618-44.684c3.724-9.309 11.171-14.895 20.48-14.895l48.407-3.724-37.236-29.789z" />
17
+ <glyph unicode="&#xe907;" glyph-name="pa-flip-box" d="M943.942 820.364h-59.578v59.578c0 11.171-9.309 18.618-18.618 18.618h-785.687c-11.171 0-18.618-9.309-18.618-18.618v-785.687c0-11.171 9.309-18.618 18.618-18.618h59.578v-59.578c0-11.171 9.309-18.618 20.48-18.618h783.825c11.171 0 18.618 9.309 18.618 18.618v785.687c0 9.309-7.447 18.618-18.618 18.618zM100.538 114.735v744.727h744.727v-744.727h-744.727zM923.462 36.538h-744.727v39.098h687.011c11.171 0 18.618 9.309 18.618 18.618v687.011h39.098v-744.727zM716.8 656.524h-487.796c-7.447 0-13.033 9.309-13.033 20.48s5.585 20.48 13.033 20.48h487.796c7.447 0 13.033-9.309 13.033-20.48s-5.585-20.48-13.033-20.48zM716.8 468.48h-487.796c-7.447 0-13.033 9.309-13.033 20.48s5.585 20.48 13.033 20.48h487.796c7.447 0 13.033-9.309 13.033-20.48 0-13.033-5.585-20.48-13.033-20.48zM716.8 278.575h-487.796c-7.447 0-13.033 9.309-13.033 20.48s5.585 20.48 13.033 20.48h487.796c7.447 0 13.033-9.309 13.033-20.48s-5.585-20.48-13.033-20.48z" />
18
+ <glyph unicode="&#xe908;" glyph-name="pa-google-reviews" d="M802.444 654.662c-1.862 7.447-9.309 14.895-16.756 14.895h-268.102c-9.309 0-18.618-7.447-18.618-18.618v-109.847c0-9.309 7.447-18.618 18.618-18.618h121.018c-13.033-20.48-29.789-39.098-52.131-52.131s-48.407-20.48-74.473-20.48c-61.44 0-117.295 39.098-137.775 94.953-5.585 16.756-9.309 33.513-9.309 52.131 0 16.756 1.862 33.513 7.447 48.407 20.48 59.578 76.335 98.676 139.636 98.676 27.927 0 53.993-7.447 78.196-22.342 5.585-3.724 14.895-3.724 20.48 1.862l89.367 74.473c5.585 5.585 7.447 9.309 7.447 14.895s-1.862 11.171-5.585 13.033c-52.131 44.684-119.156 68.887-188.044 68.887-163.84 0-296.029-132.189-296.029-296.029 0-48.407 13.033-96.815 35.375-139.636 52.131-96.815 150.807-156.393 260.655-156.393 68.887 0 134.051 24.204 188.044 67.025 52.131 42.822 87.505 102.4 102.4 167.564 3.724 20.48 5.585 40.96 5.585 61.44-1.862 18.618-3.724 37.236-7.447 55.855zM512 859.462c52.131 0 106.124-16.756 148.945-46.545l-63.302-52.131c-26.065 13.033-55.855 20.48-85.644 20.48-68.887 0-132.189-39.098-163.84-100.538l-61.44 50.269c48.407 80.058 134.051 128.465 225.28 128.465zM335.127 647.215c-3.724-14.895-5.585-31.651-5.585-48.407 0-18.618 1.862-35.375 7.447-52.131l-63.302-52.131c-14.895 33.513-22.342 68.887-22.342 104.262s7.447 68.887 20.48 98.676l63.302-50.269zM512 340.015c-89.367 0-175.011 48.407-221.556 124.742l61.44 50.269c13.033-24.204 33.513-46.545 55.855-63.302 31.651-22.342 67.025-33.513 106.124-33.513 27.927 0 55.855 7.447 81.92 18.618l63.302-52.131c-44.684-29.789-94.953-44.684-147.084-44.684zM767.069 544.815c-11.171-53.993-39.098-102.4-80.058-139.636l-61.44 50.269c26.065 20.48 46.545 48.407 57.716 80.058 1.862 5.585 1.862 11.171-1.862 16.756s-9.309 7.447-14.895 7.447h-130.327v74.473h234.589c1.862-11.171 1.862-22.342 1.862-33.513 0-18.618-1.862-37.236-5.585-55.855zM338.851 150.109c-3.724 11.171-13.033 18.618-26.065 20.48l-52.131 3.724-20.48 48.407c-3.724 11.171-14.895 18.618-26.065 18.618s-22.342-7.447-26.065-18.618l-18.618-48.407-52.131-3.724c-11.171 0-22.342-7.447-26.065-18.618s0-24.204 9.309-31.651l39.098-31.651-9.309-52.131c-1.862-9.309 0-16.756 3.724-24.204 9.309-11.171 26.065-14.895 37.236-7.447l42.822 27.927 44.684-27.927c5.585-3.724 9.309-5.585 14.895-5.585 9.309 0 16.756 3.724 22.342 11.171s7.447 16.756 5.585 24.204l-11.171 50.269 40.96 33.513c9.309 7.447 11.171 20.48 7.447 31.651zM266.24 107.287c-7.447-5.585-11.171-14.895-7.447-24.204l11.171-46.545-40.96 26.065c-3.724 1.862-7.447 3.724-13.033 3.724-3.724 0-9.309-1.862-13.033-3.724l-40.96-26.065 11.171 46.545c1.862 9.309-1.862 18.618-7.447 24.204l-37.236 31.651 48.407 3.724c9.309 0 16.756 5.585 20.48 14.895l18.618 46.545 18.618-46.545c3.724-9.309 11.171-14.895 20.48-14.895l48.407-3.724-37.236-31.651zM634.88 150.109c-3.724 11.171-13.033 18.618-26.065 20.48l-50.269 1.862-20.48 48.407c-3.724 11.171-14.895 18.618-26.065 18.618s-22.342-7.447-26.065-18.618l-18.618-48.407-52.131-3.724c-11.171 0-22.342-7.447-26.065-18.618s0-24.204 9.309-31.651l39.098-31.651-13.033-50.269c-1.862-9.309 0-16.756 5.585-24.204 9.309-11.171 26.065-14.895 37.236-7.447l42.822 27.927 44.684-27.927c3.724-3.724 9.309-5.585 14.895-5.585 9.309 0 16.756 3.724 22.342 11.171s7.447 16.756 5.585 24.204l-11.171 50.269 40.96 33.513c7.447 7.447 11.171 20.48 7.447 31.651zM562.269 107.287c-7.447-5.585-11.171-14.895-9.309-24.204l11.171-46.545-40.96 26.065c-3.724 1.862-7.447 3.724-13.033 3.724s-9.309-1.862-13.033-3.724l-40.96-26.065 11.171 46.545c1.862 9.309 0 18.618-7.447 24.204l-37.236 31.651 48.407 3.724c9.309 0 16.756 5.585 20.48 14.895l18.618 46.545 18.618-46.545c3.724-9.309 11.171-14.895 20.48-14.895l48.407-3.724-35.375-31.651zM930.909 150.109c-3.724 11.171-13.033 18.618-26.065 20.48l-52.131 3.724-20.48 48.407c-3.724 11.171-14.895 18.618-26.065 18.618s-22.342-7.447-26.065-18.618l-18.618-48.407-52.131-3.724c-11.171 0-22.342-7.447-26.065-18.618s0-24.204 9.309-31.651l39.098-31.651-13.033-50.269c-1.862-9.309 0-16.756 3.724-24.204 9.309-11.171 26.065-14.895 37.236-7.447l42.822 27.927 44.684-27.927c5.585-3.724 9.309-5.585 14.895-5.585 9.309 0 16.756 3.724 22.342 11.171s7.447 14.895 5.585 24.204l-9.309 48.407 40.96 33.513c9.309 7.447 13.033 20.48 9.309 31.651zM858.298 107.287c-7.447-5.585-11.171-14.895-7.447-24.204l11.171-46.545-42.822 24.204c-3.724 1.862-7.447 3.724-13.033 3.724s-9.309-1.862-13.033-3.724l-40.96-26.065 11.171 46.545c1.862 9.309-1.862 18.618-7.447 24.204l-37.236 31.651 48.407 3.724c9.309 0 16.756 5.585 20.48 14.895l18.618 46.545 18.618-46.545c3.724-9.309 11.171-14.895 20.48-14.895l48.407-3.724-35.375-29.789z" />
19
+ <glyph unicode="&#xe909;" glyph-name="pa-gradients" d="M828.509 764.509c-83.782 83.782-197.353 130.327-316.509 130.327s-232.727-46.545-316.509-130.327c-83.782-83.782-130.327-197.353-130.327-316.509s46.545-232.727 130.327-316.509c83.782-83.782 197.353-130.327 316.509-130.327s232.727 46.545 316.509 130.327c83.782 83.782 130.327 197.353 130.327 316.509s-46.545 232.727-130.327 316.509zM925.324 464.756h-169.425c-3.724 52.131-24.204 102.4-59.578 141.498l121.018 121.018c65.164-70.749 102.4-163.84 107.985-262.516zM495.244 861.324v-31.651c0-9.309 7.447-16.756 16.756-16.756s16.756 7.447 16.756 16.756v31.651c96.815-3.724 189.905-42.822 262.516-107.985l-121.018-121.018c-40.96 35.375-89.367 55.855-141.498 59.578v85.644c0 9.309-7.447 16.756-16.756 16.756s-16.756-7.447-16.756-16.756v-87.505c-52.131-3.724-102.4-24.204-141.498-59.578l-121.018 121.018c70.749 67.025 163.84 104.262 262.516 109.847zM98.676 431.244h70.749c9.309 0 16.756 7.447 16.756 16.756s-7.447 16.756-16.756 16.756h-70.749c3.724 96.815 42.822 189.905 107.985 262.516l121.018-121.018c-35.375-40.96-55.855-89.367-59.578-141.498h-44.684c-9.309 0-16.756-7.447-16.756-16.756s7.447-16.756 16.756-16.756h46.545c3.724-52.131 24.204-102.4 59.578-141.498l-121.018-121.018c-67.025 70.749-104.262 163.84-109.847 262.516zM495.244 205.964v-169.425c-96.815 3.724-189.905 42.822-262.516 107.985l121.018 121.018c39.098-35.375 87.505-55.855 141.498-59.578zM364.916 300.916c-39.098 39.098-61.44 91.229-61.44 147.084s22.342 107.985 61.44 147.084c39.098 39.098 91.229 61.44 147.084 61.44s107.985-22.342 147.084-61.44c39.098-39.098 61.44-91.229 61.44-147.084s-22.342-107.985-61.44-147.084c-39.098-39.098-91.229-61.44-147.084-61.44s-107.985 22.342-147.084 61.44zM815.476 168.727l-63.302 63.302c-7.447 7.447-18.618 7.447-24.204 0-3.724-3.724-5.585-7.447-5.585-13.033 0-3.724 1.862-9.309 5.585-13.033l63.302-63.302c-72.611-67.025-163.84-104.262-262.516-107.985v169.425c52.131 3.724 102.4 24.204 141.498 59.578l24.204-24.204c7.447-7.447 18.618-5.585 24.204 0 3.724 3.724 5.585 7.447 5.585 13.033 0 3.724-1.862 9.309-5.585 13.033l-24.204 24.204c35.375 40.96 55.855 89.367 59.578 141.498h169.425c-3.724-98.676-40.96-191.767-107.985-262.516z" />
20
+ <glyph unicode="&#xe90a;" glyph-name="pa-horizontal-scroll" d="M1027.864 691.442v27.049h-1027.864v-27.049h127.517v-488.815h-127.517v-27.049h1027.864v27.049h-127.517v488.815zM873.298 202.626h-718.732v488.815h718.732zM722.21 447.034c-0.055-2.302-0.924-4.391-2.328-6.001l0.010 0.011-61.054-61.633c-1.574-1.439-3.679-2.321-5.989-2.321s-4.416 0.882-5.996 2.327l0.007-0.006c-1.625 1.489-2.64 3.621-2.64 5.989s1.015 4.5 2.634 5.984l0.006 0.005 46.756 46.756h-359.366l46.756-46.756c1.854-1.57 3.023-3.899 3.023-6.501 0-4.695-3.806-8.501-8.501-8.501-2.602 0-4.931 1.169-6.49 3.010l-0.010 0.012-61.054 61.054c-1.439 1.574-2.321 3.679-2.321 5.989s0.882 4.416 2.327 5.996l-0.006-0.007 61.054 62.213c1.574 1.439 3.679 2.321 5.989 2.321s4.416-0.882 5.996-2.327l-0.007 0.006c1.625-1.489 2.64-3.621 2.64-5.989s-1.015-4.5-2.634-5.984l-0.006-0.005-46.37-46.37h358.593l-46.37 46.37c-1.854 1.57-3.023 3.899-3.023 6.501 0 4.695 3.806 8.501 8.501 8.501 2.602 0 4.931-1.169 6.49-3.010l0.010-0.012 61.054-61.054c1.444-1.653 2.325-3.831 2.325-6.214 0-0.125-0.002-0.249-0.007-0.372l0.001 0.018z" />
21
+ <glyph unicode="&#xe90b;" glyph-name="pa-hot-spot" d="M927.185 643.491h-286.72v158.255c0 26.065-26.065 46.545-52.131 46.545h-389.12c-26.065 0-53.993-20.48-53.993-46.545v-158.255h-48.407c-20.48 0-35.375-16.756-35.375-35.375v-525.033c0-20.48 16.756-35.375 35.375-35.375h830.371c20.48 0 35.375 16.756 35.375 35.375v525.033c0 20.48-14.895 35.375-35.375 35.375zM180.596 801.745c0 5.585 11.171 11.171 18.618 11.171h389.12c5.585 0 16.756-5.585 16.756-11.171v-173.149c0-7.447-11.171-18.618-16.756-18.618h-85.644c-5.585 0-13.033 1.862-16.756-3.724l-91.229-89.367-93.091 89.367c-3.724 3.724-11.171 3.724-16.756 3.724h-85.644c-7.447 0-18.618 13.033-18.618 18.618v173.149zM96.815 81.222c-1.862 0-3.724 1.862-3.724 3.724v46.545c1.862 0 1.862 1.862 3.724 1.862l186.182 186.182c0-1.862 0-3.724 0-5.585 0-5.585 1.862-13.033 3.724-18.618 3.724-14.895 9.309-26.065 16.756-37.236l83.782-122.88 26.065 37.236 18.618 26.065 24.204 35.375 1.862 3.724 85.644-87.505 67.025-68.887h-513.862zM312.785 321.396c0 7.447 0 14.895 1.862 22.342 3.724 14.895 9.309 29.789 20.48 39.098 5.585 5.585 13.033 11.171 18.618 14.895 11.171 5.585 22.342 7.447 33.513 7.447 20.48 0 39.098-7.447 53.993-22.342 9.309-9.309 16.756-22.342 20.48-35.375 1.862-3.724 1.862-9.309 1.862-14.895 0-9.309 0-20.48-1.862-29.789 0-3.724-1.862-7.447-3.724-11.171-1.862-7.447-5.585-13.033-9.309-18.618l-13.033-18.618-48.407-68.887-61.44 87.505c-7.447 14.895-13.033 31.651-13.033 48.407zM660.945 81.222l-80.058 81.92 117.295 117.295 199.215-199.215h-236.451zM929.047 96.116l-219.695 219.695c-3.724 3.724-7.447 5.585-11.171 5.585s-9.309-1.862-11.171-5.585l-128.465-128.465-78.196 78.196c1.862 1.862 1.862 3.724 3.724 5.585 5.585 11.171 9.309 26.065 11.171 39.098 0 1.862 0 5.585 0 7.447 0 11.171 0 24.204-3.724 35.375 0 3.724-1.862 5.585-1.862 9.309-5.585 16.756-13.033 29.789-24.204 40.96-20.48 20.48-46.545 31.651-74.473 31.651s-53.993-11.171-74.473-31.651c-1.862-1.862-5.585-5.585-7.447-9.309-3.724-5.585-7.447-11.171-11.171-16.756l-202.938-199.215v428.218c0 1.862 1.862 3.724 3.724 3.724h52.131c9.309-18.618 27.927-33.513 48.407-33.513h81.92l111.709-111.709 111.709 111.709h81.92c18.618 0 37.236 14.895 46.545 33.513h290.444c1.862 0 3.724-1.862 3.724-3.724v-510.138zM389.12 371.665c-3.724 0-5.585 0-9.309 0-14.895-3.724-26.065-14.895-31.651-29.789-1.862-3.724-1.862-7.447-1.862-11.171 0-22.342 18.618-40.96 40.96-40.96 3.724 0 7.447 0 11.171 1.862 14.895 3.724 26.065 16.756 27.927 31.651 0 1.862 1.862 5.585 1.862 9.309 3.724 20.48-14.895 39.098-39.098 39.098zM389.12 312.087c-11.171 0-18.618 7.447-18.618 18.618s7.447 18.618 18.618 18.618c9.309 0 18.618-7.447 18.618-18.618 0-9.309-7.447-18.618-18.618-18.618zM778.24 384.698c-42.822 0-78.196 35.375-78.196 78.196s35.375 78.196 78.196 78.196c42.822 0 78.196-35.375 78.196-78.196s-35.375-78.196-78.196-78.196zM778.24 507.578c-24.204 0-44.684-20.48-44.684-44.684s20.48-44.684 44.684-44.684c24.204 0 44.684 20.48 44.684 44.684s-20.48 44.684-44.684 44.684z" />
22
+ <glyph unicode="&#xe90c;" glyph-name="pa-icon-box" d="M889.949 682.589h-141.498c-9.309 121.018-111.709 217.833-234.589 217.833s-225.28-94.953-234.589-217.833h-145.222c-11.171 0-20.48-7.447-20.48-16.756v-651.636c0-9.309 9.309-16.756 20.48-16.756h755.898c11.171 0 20.48 7.447 20.48 16.756v651.636c0 9.309-9.309 16.756-20.48 16.756zM513.862 859.462c102.4 0 186.182-78.196 195.491-176.873 0-5.585 0-11.171 0-18.618 0-5.585 0-11.171 0-16.756-7.447-100.538-93.091-178.735-195.491-178.735s-186.182 78.196-195.491 178.735c0 5.585 0 11.171 0 16.756s0 11.171 0 18.618c9.309 98.676 93.091 176.873 195.491 176.873zM869.469 30.953h-714.938v616.262h124.742c7.447-122.88 109.847-219.695 234.589-219.695s227.142 96.815 234.589 219.695h122.88v-616.262z" />
23
+ <glyph unicode="&#xe90d;" glyph-name="pa-ihover" d="M949.527 323.258c11.171 3.724 11.171 20.48 0 24.204l-93.091 42.822-52.131 24.204-409.6 191.767c-11.171 5.585-22.342-5.585-18.618-16.756l91.229-282.996 11.171-37.236 83.782-264.378c3.724-11.171 18.618-13.033 24.204-1.862l74.473 137.775c3.724 7.447 14.895 9.309 22.342 1.862l124.742-139.636c5.585-5.585 13.033-5.585 18.618-1.862l93.091 81.92c5.585 5.585 5.585 13.033 1.862 18.618l-124.742 139.636c-5.585 7.447-3.724 18.618 5.585 20.48l147.084 61.44zM860.16 88.669l-27.927-26.065c-5.585-5.585-14.895-3.724-18.618 1.862l-135.913 154.531c-5.585 7.447-16.756 5.585-22.342-1.862l-55.855-104.262c-5.585-11.171-20.48-9.309-24.204 1.862l-53.993 167.564-11.171 37.236-63.302 189.905c-3.724 11.171 7.447 20.48 18.618 16.756l377.949-175.011c11.171-5.585 11.171-20.48 0-24.204l-109.847-42.822c-9.309-3.724-11.171-14.895-5.585-20.48l135.913-154.531c1.862-5.585 1.862-14.895-3.724-20.48zM67.025 784.989c0-7.447 3.724-13.033 9.309-14.895l40.96-18.618c13.033-5.585 22.342-14.895 27.927-27.927l18.618-40.96c1.862-5.585 9.309-9.309 14.895-9.309 7.447 0 13.033 3.724 14.895 9.309l18.618 40.96c5.585 13.033 16.756 24.204 29.789 29.789l40.96 18.618c5.585 1.862 9.309 9.309 9.309 14.895s-3.724 13.033-9.309 14.895l-40.96 18.618c-13.033 5.585-24.204 16.756-29.789 29.789l-18.618 40.96c-1.862 3.724-7.447 7.447-14.895 7.447-5.585 0-11.171-3.724-14.895-9.309l-18.618-40.96c-5.585-13.033-14.895-24.204-27.927-29.789l-40.96-18.618c-5.585-1.862-9.309-7.447-9.309-14.895zM122.88 784.989l7.447 3.724c20.48 9.309 37.236 26.065 46.545 46.545l3.724 7.447 3.724-7.447c9.309-20.48 26.065-37.236 46.545-46.545l7.447-3.724-7.447-3.724c-20.48-9.309-37.236-26.065-46.545-46.545l-3.724-7.447-3.724 9.309c-9.309 20.48-26.065 37.236-46.545 46.545l-7.447 1.862zM121.018 325.12c0-7.447 3.724-13.033 9.309-14.895l40.96-18.618c13.033-5.585 24.204-16.756 29.789-29.789l18.618-40.96c1.862-5.585 9.309-9.309 14.895-9.309 7.447 0 13.033 3.724 14.895 9.309l18.618 40.96c5.585 13.033 16.756 24.204 29.789 29.789l40.96 18.618c5.585 1.862 9.309 9.309 9.309 14.895s-3.724 13.033-9.309 14.895l-40.96 18.618c-13.033 5.585-24.204 16.756-29.789 29.789l-18.618 40.96c-1.862 5.585-9.309 9.309-14.895 9.309-7.447 0-13.033-3.724-14.895-9.309l-18.618-40.96c-5.585-13.033-16.756-24.204-29.789-29.789l-40.96-18.618c-5.585-1.862-9.309-7.447-9.309-14.895zM178.735 325.12l7.447 3.724c20.48 9.309 37.236 26.065 46.545 46.545l3.724 7.447 3.724-7.447c9.309-20.48 26.065-37.236 46.545-46.545l7.447-3.724-7.447-3.724c-20.48-9.309-37.236-26.065-46.545-46.545l-5.585-3.724-3.724 7.447c-9.309 20.48-26.065 37.236-46.545 46.545h-5.585zM523.171 729.135c0-7.447 3.724-13.033 9.309-14.895l52.131-24.204c18.618-7.447 33.513-22.342 40.96-40.96l24.204-52.131c1.862-5.585 9.309-9.309 14.895-9.309 7.447 0 13.033 3.724 14.895 9.309l24.204 52.131c7.447 18.618 22.342 33.513 40.96 40.96l52.131 24.204c5.585 1.862 9.309 9.309 9.309 14.895 0 7.447-3.724 13.033-9.309 14.895l-52.131 24.204c-18.618 7.447-33.513 22.342-40.96 40.96l-24.204 52.131c-1.862 5.585-9.309 9.309-14.895 9.309-7.447 0-13.033-3.724-14.895-9.309l-24.204-52.131c-7.447-18.618-22.342-33.513-40.96-40.96l-52.131-24.204c-5.585-1.862-9.309-7.447-9.309-14.895zM580.887 729.135l18.618 9.309c26.065 11.171 46.545 31.651 57.716 57.716l9.309 18.618 9.309-18.618c11.171-26.065 31.651-46.545 57.716-57.716l18.618-9.309-18.618-9.309c-26.065-11.171-46.545-31.651-57.716-57.716l-9.309-18.618-9.309 18.618c-11.171 26.065-31.651 46.545-57.716 57.716l-18.618 9.309z" />
24
+ <glyph unicode="&#xe90e;" glyph-name="pa-image-accordion" d="M847.127 677.004c0 9.309-7.447 14.895-14.895 14.895h-640.465c-9.309 0-14.895-7.447-14.895-14.895v-458.007c0-9.309 7.447-14.895 14.895-14.895h640.465c9.309 0 14.895 7.447 14.895 14.895v458.007zM817.338 662.109v-275.549l-167.564 119.156c-5.585 3.724-14.895 3.724-20.48-1.862l-126.604-126.604-147.084 72.611c-3.724 1.862-9.309 1.862-14.895 0l-135.913-78.196v290.444h612.538zM206.662 336.291l143.36 83.782 130.327-63.302-124.742-122.88h-150.807v102.4zM400.291 232.029l243.898 240.175 175.011-122.88v-115.433h-418.909zM478.487 461.033c35.375 0 65.164 29.789 65.164 65.164s-29.789 65.164-65.164 65.164-65.164-29.789-65.164-65.164c0 0 0 0 0 0-1.862-35.375 27.927-65.164 65.164-65.164zM478.487 561.571c18.618 0 35.375-14.895 35.375-35.375 0-18.618-14.895-35.375-35.375-35.375-18.618 0-35.375 14.895-35.375 35.375 0 18.618 14.895 35.375 35.375 35.375v0zM76.335 634.182c-9.309 0-14.895-7.447-14.895-14.895v-344.436c0-9.309 7.447-14.895 14.895-14.895s14.895 7.447 14.895 14.895v344.436c0 9.309-5.585 14.895-14.895 14.895zM947.665 634.182c-9.309 0-14.895-7.447-14.895-14.895v-344.436c0-9.309 7.447-14.895 14.895-14.895 9.309 0 14.895 7.447 14.895 14.895v344.436c0 9.309-7.447 14.895-14.895 14.895z" />
25
+ <glyph unicode="&#xe90f;" glyph-name="pa-image-comparison" d="M921.6 730.996h-819.2c-22.342 0-40.96-18.618-40.96-42.822v-480.349c0-24.204 18.618-42.822 40.96-42.822h819.2c22.342 0 40.96 18.618 40.96 42.822v480.349c0 24.204-18.618 42.822-40.96 42.822zM493.382 200.378h-390.982c-3.724 0-5.585 3.724-5.585 7.447v480.349c0 3.724 1.862 7.447 5.585 7.447h390.982v-96.815c-72.611-9.309-130.327-72.611-130.327-148.945s57.716-141.498 130.327-148.945v-100.538zM396.567 448c0 65.164 52.131 117.295 115.433 117.295s115.433-52.131 115.433-117.295-52.131-117.295-115.433-117.295-115.433 52.131-115.433 117.295zM927.185 207.825c0-3.724-1.862-7.447-5.585-7.447h-390.982v96.815c72.611 9.309 130.327 72.611 130.327 148.945s-57.716 141.498-130.327 148.945v96.815h390.982c3.724 0 5.585-3.724 5.585-7.447v-476.625zM495.244 397.731c-3.724-3.724-7.447-3.724-11.171-3.724s-7.447 1.862-11.171 3.724l-39.098 39.098c-5.585 5.585-5.585 14.895 0 20.48l39.098 39.098c3.724 1.862 7.447 3.724 11.171 3.724s7.447-1.862 11.171-3.724c5.585-5.585 5.585-14.895 0-20.48l-29.789-27.927 29.789-29.789c5.585-5.585 5.585-14.895 0-20.48zM590.196 436.829l-39.098-39.098c-3.724-3.724-7.447-3.724-11.171-3.724s-7.447 1.862-11.171 3.724c-5.585 5.585-5.585 14.895 0 20.48l29.789 29.789-29.789 29.789c-5.585 5.585-5.585 14.895 0 20.48s14.895 5.585 20.48 0l39.098-39.098c7.447-5.585 7.447-16.756 1.862-22.342z" />
26
+ <glyph unicode="&#xe910;" glyph-name="pa-image-layers" d="M889.949 358.633h-91.229v158.255h26.065c35.375 0 65.164 29.789 65.164 65.164v251.345c0 35.375-29.789 65.164-65.164 65.164h-253.207c-35.375 0-65.164-29.789-65.164-65.164v-81.92h-134.051v48.407c0 37.236-26.065 65.164-61.44 65.164h-182.458c-37.236 0-67.025-29.789-67.025-65.164v-184.32c0-35.375 29.789-61.44 67.025-61.44h113.571v-180.596h-113.571c-35.375 0-65.164-29.789-65.164-65.164v-171.287c0-35.375 29.789-65.164 65.164-65.164h299.753c35.375 0 65.164 29.789 65.164 65.164v55.855h109.847v-132.189c0-37.236 26.065-65.164 61.44-65.164h227.142c35.375 0 72.611 26.065 72.611 65.164v227.142c-1.862 35.375-37.236 70.749-74.473 70.749zM539.927 833.396c0 18.618 14.895 33.513 33.513 33.513h253.207c18.618 0 33.513-14.895 33.513-33.513v-253.207c0-18.618-14.895-33.513-33.513-33.513h-255.069c-18.618 0-33.513 14.895-33.513 33.513v253.207zM128.465 587.636c-16.756 0-35.375 9.309-35.375 29.789v182.458c0 16.756 16.756 33.513 33.513 33.513h184.32c18.618 0 27.927-16.756 27.927-33.513v-48.407h-29.789c-39.098 0-68.887-26.065-68.887-61.44v-102.4h-111.709zM459.869 137.076c0-18.618-14.895-33.513-33.513-33.513h-297.891c-18.618 0-33.513 14.895-33.513 33.513v171.287c0 18.618 14.895 33.513 33.513 33.513h299.753c18.618 0 33.513-14.895 33.513-33.513v-171.287zM493.382 226.444v81.92c0 35.375-29.789 65.164-65.164 65.164h-152.669v316.509c0 18.618 18.618 27.927 35.375 27.927h195.491v-137.775c0-35.375 29.789-65.164 65.164-65.164h193.629v-249.484c0-18.618-13.033-39.098-31.651-39.098h-240.175zM930.909 60.742c0-16.756-22.342-31.651-40.96-31.651h-225.28c-20.48 0-29.789 14.895-29.789 31.651v132.189h100.538c37.236 0 63.302 37.236 63.302 72.611v59.578h91.229c18.618 0 40.96-20.48 40.96-37.236v-227.142z" />
27
+ <glyph unicode="&#xe911;" glyph-name="pa-instagram-feed" d="M683.287 896.698h-342.575c-152.669 0-277.411-124.742-277.411-277.411v-344.436c0-152.669 124.742-277.411 277.411-277.411h344.436c152.669 0 277.411 124.742 277.411 277.411v344.436c-1.862 152.669-126.604 277.411-279.273 277.411zM923.462 276.713c0-132.189-107.985-238.313-238.313-238.313h-344.436c-132.189 0-238.313 107.985-238.313 238.313v342.575c0 132.189 107.985 238.313 238.313 238.313h344.436c132.189 0 238.313-107.985 238.313-238.313v-342.575zM512 699.345c-137.775 0-251.345-111.709-251.345-251.345 0-137.775 111.709-251.345 251.345-251.345 137.775 0 251.345 111.709 251.345 251.345 0 137.775-113.571 251.345-251.345 251.345zM512 235.753c-117.295 0-212.247 94.953-212.247 212.247s94.953 212.247 212.247 212.247 212.247-94.953 212.247-212.247-94.953-212.247-212.247-212.247zM813.615 682.589c0-20.565-16.671-37.236-37.236-37.236s-37.236 16.671-37.236 37.236c0 20.565 16.671 37.236 37.236 37.236s37.236-16.671 37.236-37.236z" />
28
+ <glyph unicode="&#xe912;" glyph-name="pa-magic-section" d="M76.335 14.196v0 0 0zM955.113 609.978l-85.644 85.644 42.822 128.465c1.862 7.447 0 14.895-5.585 20.48-3.724 3.724-11.171 5.585-18.618 3.724l-128.465-42.822-85.644 85.644c-5.585 5.585-14.895 7.447-22.342 3.724s-11.171-11.171-11.171-20.48l14.895-126.604-128.465-70.749c-7.447-3.724-11.171-13.033-9.309-20.48 0-3.724 1.862-7.447 5.585-11.171 1.862-1.862 5.585-3.724 9.309-5.585l117.295-26.065-573.44-571.578c-3.724-3.724-5.585-9.309-5.585-14.895s1.862-11.171 5.585-14.895c3.724-3.724 9.309-5.585 14.895-5.585s11.171 1.862 14.895 5.585l573.44 569.716 26.065-115.433c1.862-7.447 9.309-14.895 16.756-14.895h1.862c7.447 0 13.033 3.724 16.756 11.171l70.749 128.465 126.604-14.895c9.309 0 16.756 3.724 20.48 11.171s3.724 16.756-3.724 22.342zM76.335 14.196v0 0 0zM804.305 630.458c-7.447 0-14.895-3.724-20.48-9.309l-52.131-94.953-24.204 102.4c-1.862 7.447-7.447 13.033-14.895 14.895l-100.538 22.342 94.953 52.131c7.447 3.724 11.171 11.171 9.309 20.48l-9.309 83.782 53.993-53.993c5.585-5.585 13.033-7.447 20.48-5.585l102.4 33.513-33.513-102.4c-1.862-7.447 0-14.895 5.585-20.48l53.993-53.993-85.644 11.171z" />
29
+ <glyph unicode="&#xe913;" glyph-name="pa-messenger-chat" d="M130.327 79.36v227.142c-46.545 53.993-70.749 113.571-70.749 176.873 0 182.458 202.938 331.404 452.422 331.404s452.422-148.945 452.422-331.404c0-182.458-202.938-331.404-452.422-331.404-67.025 0-132.189 11.171-193.629 31.651l-188.044-104.262zM512 773.818c-225.28 0-407.738-130.327-407.738-288.582 0-53.993 22.342-107.985 65.164-154.531l5.585-5.585v-169.425l139.636 78.196 9.309-3.724c57.716-22.342 122.88-33.513 188.044-33.513 225.28 0 407.738 130.327 407.738 288.582s-182.458 288.582-407.738 288.582z" />
30
+ <glyph unicode="&#xe914;" glyph-name="pa-multi-scroll" d="M942.080 820.364h-428.218c0 0-1.862 0-1.862 0s-1.862 0-1.862 0h-428.218c-11.171 0-20.48-9.309-20.48-20.48v-703.767c0-11.171 9.309-20.48 20.48-20.48h426.356c0 0 1.862 0 1.862 0s1.862 0 1.862 0h426.356c11.171 0 20.48 9.309 20.48 20.48v703.767c3.724 11.171-5.585 20.48-16.756 20.48zM98.676 784.989h396.567v-673.978h-396.567v673.978zM925.324 111.011h-394.705v673.978h396.567v-673.978zM439.389 477.789c0-5.585-1.862-9.309-5.585-13.033-7.447-7.447-18.618-7.447-24.204 0l-89.367 91.229v-256.931c0-9.309-7.447-18.618-18.618-18.618-9.309 0-18.618 7.447-18.618 18.618v255.069l-98.676-98.676c-7.447-7.447-18.618-7.447-24.204 0-3.724 3.724-5.585 7.447-5.585 13.033s1.862 9.309 5.585 13.033l128.465 128.465c1.862 1.862 3.724 3.724 5.585 3.724 3.724 1.862 9.309 1.862 13.033 0 1.862 0 3.724-1.862 5.585-3.724l119.156-119.156c5.585-5.585 7.447-11.171 7.447-13.033zM869.469 427.52c0-5.585-1.862-9.309-5.585-13.033l-128.465-128.465c-1.862-1.862-3.724-3.724-5.585-3.724s-3.724-1.862-7.447-1.862c-3.724 0-3.724 0-7.447 1.862-1.862 0-3.724 1.862-5.585 3.724l-119.156 119.156c-3.724 3.724-5.585 7.447-5.585 13.033s1.862 9.309 5.585 13.033c7.447 7.447 18.618 7.447 24.204 0l89.367-89.367v255.069c0 9.309 7.447 18.618 18.618 18.618 5.585 0 9.309-1.862 13.033-5.585s5.585-7.447 5.585-13.033v-256.931l98.676 98.676c7.447 7.447 18.618 7.447 24.204 0 3.724-1.862 5.585-5.585 5.585-11.171z" />
31
+ <glyph unicode="&#xe915;" glyph-name="pa-notification-bar" d="M512 157.556c-40.96 0-76.335-33.513-76.335-76.335s33.513-76.335 76.335-76.335 76.335 33.513 76.335 76.335-35.375 76.335-76.335 76.335zM512 42.124c-22.342 0-39.098 18.618-39.098 39.098s18.618 39.098 39.098 39.098 39.098-18.618 39.098-39.098-16.756-39.098-39.098-39.098zM835.956 323.258v204.8c0 76.335-27.927 148.945-76.335 208.524-48.407 57.716-115.433 96.815-189.905 111.709-7.447 26.065-31.651 44.684-59.578 44.684s-52.131-18.618-59.578-44.684c-72.611-13.033-139.636-53.993-189.905-111.709-48.407-57.716-76.335-132.189-76.335-208.524v-204.8c-20.48-13.033-35.375-39.098-35.375-67.025 0-42.822 35.375-78.196 78.196-78.196h571.578c42.822 0 78.196 35.375 78.196 78.196-1.862 27.927-16.756 53.993-40.96 67.025zM798.72 213.411h-573.44c-22.342 0-40.96 18.618-40.96 40.96 0 16.756 11.171 33.513 27.927 39.098l11.171 3.724v230.865c0 141.498 106.124 264.378 247.622 284.858l14.895 1.862v14.895c0 13.033 13.033 24.204 26.065 24.204s26.065-11.171 26.065-24.204v-14.895l14.895-1.862c141.498-20.48 247.622-143.36 247.622-284.858v-197.353h-413.324v-35.375h428.218c14.895-5.585 24.204-22.342 24.204-37.236 0-26.065-18.618-44.684-40.96-44.684z" />
32
+ <glyph unicode="&#xe916;" glyph-name="pa-preview-window" d="M772.655 777.542c-39.098 0-70.749-31.651-70.749-70.749s31.651-70.749 70.749-70.749 70.749 31.651 70.749 70.749c0 39.098-31.651 70.749-70.749 70.749zM772.655 665.833c-22.342 0-40.96 18.618-40.96 40.96s18.618 40.96 40.96 40.96 40.96-18.618 40.96-40.96c0-22.342-18.618-40.96-40.96-40.96zM888.087 872.495h-739.142c-44.684 0-83.782-37.236-83.782-83.782v-523.171c0-44.684 37.236-81.92 83.782-81.92h221.556l154.531-158.255 147.084 143.36h215.971c44.684 0 70.749 44.684 70.749 89.367v530.618c0 44.684-26.065 83.782-70.749 83.782zM657.222 202.24l-132.189-128.465-141.498 141.498-236.451 1.862c-26.065 0-48.407 20.48-48.407 46.545v115.433c3.724 0 7.447 1.862 9.309 5.585l238.313 238.313 420.771-420.771h-109.847zM925.324 256.233c0-26.065-9.309-53.993-35.375-53.993h-72.611c0 1.862-1.862 1.862-1.862 3.724l-215.971 212.247 117.295 117.295 208.524-208.524v-70.749zM925.324 375.389l-195.491 195.491c-3.724 3.724-7.447 5.585-11.171 5.585s-9.309-1.862-11.171-5.585l-130.327-128.465-217.833 215.971c-3.724 3.724-7.447 5.585-11.171 5.585s-9.309-1.862-11.171-5.585l-238.313-234.589v364.916c0 26.065 24.204 48.407 50.269 48.407h739.142c26.065 0 35.375-22.342 35.375-48.407v-413.324z" />
33
+ <glyph unicode="&#xe917;" glyph-name="pa-separator" d="M299.753 425.658h-215.971c-13.033 0-22.342 9.309-22.342 22.342v0c0 13.033 9.309 22.342 22.342 22.342h215.971c13.033 0 22.342-9.309 22.342-22.342v0c0-13.033-9.309-22.342-22.342-22.342zM936.495 425.658h-215.971c-13.033 0-22.342 9.309-22.342 22.342v0c0 13.033 9.309 22.342 22.342 22.342h215.971c13.033 0 22.342-9.309 22.342-22.342v0c0-13.033-9.309-22.342-22.342-22.342zM633.018 550.4c-14.895 16.756-35.375 26.065-59.578 26.065-31.651 0-52.131-18.618-63.302-33.513-11.171 14.895-31.651 33.513-63.302 33.513-22.342 0-44.684-9.309-59.578-26.065s-22.342-37.236-22.342-59.578c0-24.204 9.309-46.545 29.789-70.749 16.756-20.48 40.96-40.96 68.887-65.164l1.862-1.862c9.309-9.309 20.48-16.756 31.651-27.927 3.724-3.724 7.447-3.724 11.171-3.724s7.447 1.862 11.171 3.724c11.171 9.309 20.48 18.618 29.789 26.065l1.862 1.862c27.927 24.204 52.131 44.684 70.749 65.164 20.48 24.204 29.789 46.545 29.789 70.749 3.724 24.204-5.585 44.684-18.618 61.44zM538.065 520.611c9.309 13.033 22.342 20.48 35.375 20.48s24.204-5.585 33.513-14.895c9.309-9.309 13.033-22.342 13.033-37.236 0-35.375-35.375-65.164-87.505-109.847v0c-7.447-5.585-14.895-13.033-22.342-18.618-7.447 7.447-14.895 13.033-22.342 18.618-52.131 44.684-87.505 74.473-87.505 109.847 0 14.895 3.724 27.927 13.033 37.236s20.48 14.895 33.513 14.895c14.895 0 26.065-7.447 35.375-20.48 5.585-9.309 9.309-18.618 11.171-22.342 1.862-7.447 9.309-11.171 16.756-11.171s14.895 5.585 16.756 11.171c1.862 5.585 3.724 14.895 11.171 22.342z" />
34
+ <glyph unicode="&#xe918;" glyph-name="pa-table" d="M61.44-2.56v901.12h901.12v-901.12h-901.12zM530.618 36.538h392.844v390.982h-392.844v-390.982zM100.538 36.538h390.982v390.982h-390.982v-390.982zM530.618 466.618h392.844v392.844h-392.844v-392.844zM100.538 466.618h390.982v392.844h-390.982v-392.844z" />
35
+ <glyph unicode="&#xe919;" glyph-name="pa-tabs" d="M938.356 732.858h-852.713c-13.033 0-22.342 9.309-22.342 22.342s11.171 22.342 22.342 22.342h850.851c13.033 0 22.342-9.309 22.342-22.342s-9.309-22.342-20.48-22.342zM938.356 425.658h-852.713c-13.033 0-22.342 9.309-22.342 22.342s9.309 22.342 22.342 22.342h850.851c13.033 0 22.342-9.309 22.342-22.342s-9.309-22.342-20.48-22.342zM938.356 118.458h-852.713c-13.033 0-22.342 9.309-22.342 22.342s9.309 22.342 22.342 22.342h850.851c13.033 0 22.342-9.309 22.342-22.342s-9.309-22.342-20.48-22.342z" />
36
+ <glyph unicode="&#xe91a;" glyph-name="pa-twitter-feed" d="M951.389 729.135c-7.447 5.585-16.756 5.585-24.204 0-5.585-3.724-11.171-7.447-20.48-9.309 27.927 33.513 27.927 57.716 27.927 63.302 0 7.447-5.585 13.033-11.171 16.756-7.447 3.724-14.895 1.862-20.48-1.862-37.236-26.065-74.473-33.513-96.815-33.513-35.375 33.513-81.92 52.131-132.189 52.131-106.124 0-193.629-85.644-193.629-193.629 0-7.447 0-14.895 1.862-22.342-176.873 3.724-322.095 171.287-322.095 173.149-3.724 3.724-9.309 5.585-16.756 5.585s-13.033-3.724-16.756-9.309c-44.684-78.196-26.065-150.807 5.585-201.076-5.585 3.724-13.033 3.724-18.618 0-7.447-3.724-11.171-9.309-11.171-18.618-1.862-81.92 35.375-130.327 72.611-158.255-1.862-1.862-5.585-3.724-7.447-5.585-5.585-5.585-7.447-13.033-3.724-20.48 26.065-83.782 87.505-115.433 130.327-126.604-48.407-35.375-109.847-42.822-156.393-42.822-29.789 0-50.269 3.724-50.269 3.724-9.309 1.862-18.618-3.724-22.342-11.171-3.724-9.309-1.862-18.618 5.585-24.204 93.091-68.887 204.8-83.782 281.135-83.782 61.44 0 104.262 9.309 106.124 9.309 398.429 93.091 413.324 450.56 413.324 513.862 74.473 68.887 85.644 94.953 87.505 102.4 3.724 9.309 0 16.756-7.447 22.342zM830.371 611.84c0-3.724 22.342-389.12-379.811-482.211 0 0-40.96-9.309-96.815-9.309-52.131 0-122.88 7.447-189.905 37.236 61.44 3.724 135.913 22.342 189.905 81.92 5.585 5.585 7.447 14.895 3.724 22.342s-11.171 11.171-18.618 11.171c-3.724 0-83.782 1.862-122.88 74.473 18.618 0 35.375 1.862 48.407 7.447 7.447 3.724 13.033 11.171 11.171 20.48s-7.447 14.895-16.756 16.756c-3.724 1.862-96.815 22.342-113.571 119.156 14.895-5.585 31.651-9.309 48.407-7.447 7.447 1.862 14.895 7.447 16.756 14.895s0 16.756-5.585 20.48c-3.724 3.724-91.229 80.058-53.993 180.596 50.269-52.131 189.905-175.011 357.469-165.702 5.585 0 11.171 3.724 14.895 7.447 3.724 5.585 5.585 11.171 3.724 16.756-3.724 13.033-5.585 24.204-5.585 37.236 0 83.782 68.887 152.669 152.669 152.669 40.96 0 80.058-16.756 107.985-44.684 3.724-3.724 9.309-5.585 14.895-5.585h3.724c14.895 0 39.098 1.862 65.164 11.171-9.309-9.309-20.48-18.618-33.513-29.789-7.447-5.585-9.309-14.895-7.447-24.204 3.724-7.447 11.171-13.033 20.48-13.033 3.724 0 18.618 1.862 35.375 5.585-11.171-11.171-26.065-26.065-44.684-42.822-3.724 0-5.585-5.585-5.585-13.033z" />
37
+ <glyph unicode="&#xe91b;" glyph-name="pa-unfold" d="M960.698 446.138c0-9.309-7.447-18.618-18.618-18.618h-93.091v-93.091c0-9.309-7.447-18.618-18.618-18.618-9.309 0-18.618 7.447-18.618 18.618v93.091h-93.091c-9.309 0-18.618 7.447-18.618 18.618 0 9.309 7.447 18.618 18.618 18.618h93.091v93.091c0 9.309 7.447 18.618 18.618 18.618 9.309 0 18.618-7.447 18.618-18.618v-93.091h93.091c9.309 0 18.618-9.309 18.618-18.618zM599.505 559.709c0-11.171-9.309-20.48-20.48-20.48h-495.244c-11.171 0-20.48 9.309-20.48 20.48s9.309 20.48 20.48 20.48h495.244c11.171 0 20.48-9.309 20.48-20.48zM709.353 781.265c0-11.171-9.309-20.48-20.48-20.48h-605.091c-11.171 0-20.48 9.309-20.48 20.48s9.309 20.48 20.48 20.48h605.091c11.171 0 20.48-9.309 20.48-20.48zM599.505 336.291c0-11.171-9.309-20.48-20.48-20.48h-495.244c-11.171 0-20.48 9.309-20.48 20.48s9.309 20.48 20.48 20.48h495.244c11.171 0 20.48-9.309 20.48-20.48zM709.353 114.735c0-11.171-9.309-20.48-20.48-20.48h-605.091c-11.171 0-20.48 9.309-20.48 20.48s9.309 20.48 20.48 20.48h605.091c11.171 0 20.48-9.309 20.48-20.48z" />
38
+ <glyph unicode="&#xe91c;" glyph-name="pa-whatsapp" d="M512 898.56c-247.622 0-450.56-202.938-450.56-450.56 0-85.644 24.204-167.564 68.887-238.313-18.618-61.44-50.269-180.596-50.269-180.596-1.862-5.585 0-13.033 5.585-16.756 3.724-3.724 11.171-5.585 16.756-3.724l178.735 55.855c70.749-42.822 150.807-65.164 232.727-65.164 247.622 0 450.56 202.938 450.56 450.56s-204.8 448.698-452.422 448.698zM512 32.815c-78.196 0-154.531 22.342-219.695 63.302-1.862 1.862-5.585 1.862-9.309 1.862-1.862 0-3.724 0-5.585 0l-156.393-48.407c11.171 40.96 31.651 117.295 44.684 158.255 1.862 5.585 0 9.309-1.862 14.895-44.684 67.025-67.025 145.222-67.025 225.28 0 229.004 186.182 415.185 415.185 415.185s415.185-186.182 415.185-415.185-186.182-415.185-415.185-415.185zM806.167 341.876c-31.651 18.618-59.578 35.375-78.196 48.407-14.895 9.309-26.065 16.756-33.513 20.48-22.342 11.171-39.098 3.724-46.545-3.724 0 0-1.862-1.862-1.862-1.862-24.204-35.375-53.993-68.887-63.302-70.749-11.171 1.862-57.716 29.789-106.124 68.887-48.407 40.96-80.058 80.058-83.782 106.124 31.651 31.651 42.822 52.131 42.822 76.335s-55.855 122.88-65.164 134.051c-9.309 9.309-33.513 11.171-67.025 5.585-3.724 0-5.585-1.862-9.309-5.585s-102.4-104.262-55.855-227.142c52.131-134.051 182.458-288.582 351.884-314.647 18.618-3.724 37.236-3.724 53.993-3.724 98.676 0 158.255 50.269 173.149 148.945-1.862 7.447-3.724 14.895-11.171 18.618zM592.058 213.411c-178.735 26.065-290.444 202.938-323.956 292.305s27.927 167.564 44.684 186.182c13.033 1.862 26.065 3.724 31.651 1.862 11.171-16.756 52.131-93.091 53.993-107.985 0-9.309-3.724-22.342-39.098-57.716-3.724-3.724-5.585-7.447-5.585-13.033 0-91.229 191.767-215.971 225.28-215.971 29.789 0 67.025 50.269 89.367 81.92 1.862 0 3.724 0 5.585-1.862 5.585-3.724 16.756-9.309 31.651-18.618 18.618-11.171 42.822-27.927 70.749-42.822-11.171-61.44-46.545-124.742-184.32-104.262z" />
39
+ <glyph unicode="&#xe91d;" glyph-name="pa-yelp-reviews" d="M458.007 591.36l-26.065 11.171c-96.815 40.96-96.815 40.96-104.262 40.96-14.895 0-26.065-7.447-33.513-18.618-14.895-20.48-16.756-72.611-13.033-102.4 1.862-14.895 3.724-22.342 7.447-29.789 7.447-13.033 18.618-20.48 31.651-20.48h1.862c5.585 0 11.171 1.862 59.578 16.756l35.375 11.171c9.309 3.724 16.756 5.585 22.342 7.447l7.447 1.862c5.585 1.862 7.447 1.862 7.447 1.862 16.756 5.585 27.927 18.618 27.927 39.098 1.862 18.618-7.447 35.375-24.204 40.96zM450.56 552.262c0-5.585-1.862-5.585-3.724-7.447-3.724-1.862-16.756-5.585-39.098-11.171l-3.724-1.862c-18.618-5.585-76.335-24.204-81.92-26.065 0 0 0 0-1.862 1.862 0 0 0 1.862 0 1.862-1.862 1.862-3.724 7.447-3.724 16.756-3.724 31.651 1.862 70.749 7.447 80.058 1.862 1.862 1.862 1.862 3.724 1.862 5.585-1.862 59.578-24.204 93.091-37.236l26.065-11.171c3.724-1.862 3.724-5.585 3.724-7.447zM502.691 507.578c-16.756 7.447-37.236 1.862-48.407-11.171-14.895-18.618-18.618-20.48-18.618-22.342-67.025-80.058-68.887-80.058-70.749-87.505-1.862-5.585-1.862-11.171-1.862-16.756 1.862-7.447 3.724-14.895 9.309-20.48 16.756-20.48 83.782-46.545 117.295-46.545h7.447c14.895 1.862 24.204 11.171 29.789 24.204 1.862 7.447 1.862 7.447 1.862 102.4v39.098c0 16.756-9.309 31.651-26.065 39.098zM493.382 468.48v-40.96c0-59.578 0-83.782 0-89.367 0 0-1.862-1.862-1.862-1.862-16.756-1.862-81.92 20.48-91.229 33.513-1.862 1.862-1.862 1.862-1.862 1.862v1.862c1.862 3.724 33.513 40.96 63.302 76.335 3.724 1.862 5.585 5.585 9.309 9.309l1.862 1.862c1.862 3.724 5.585 7.447 11.171 13.033 0 0 1.862 1.862 3.724 1.862s1.862 0 3.724-1.862 1.862-3.724 1.862-5.585zM729.833 488.96c-5.585 3.724-5.585 5.585-94.953 33.513-7.447 1.862-16.756 5.585-22.342 7.447l-5.585 1.862c-3.724 1.862-5.585 1.862-7.447 1.862-14.895 7.447-33.513 1.862-46.545-13.033-11.171-14.895-13.033-35.375-3.724-48.407l14.895-24.204c53.993-87.505 55.855-89.367 61.44-94.953 5.585-3.724 14.895-7.447 22.342-7.447 1.862 0 3.724 0 5.585 0s3.724 0 7.447 0h1.862c27.927 11.171 78.196 74.473 81.92 104.262 1.862 18.618-3.724 31.651-14.895 39.098zM709.353 459.171v0c-3.724-16.756-44.684-70.749-59.578-76.335-3.724 0-3.724 0-3.724 0-3.724 3.724-29.789 46.545-53.993 85.644l-14.895 24.204c0 1.862-1.862 3.724 1.862 9.309 1.862 1.862 3.724 1.862 3.724 1.862s0 0 3.724-1.862h1.862c5.585-1.862 14.895-5.585 35.375-11.171 48.407-16.756 78.196-26.065 85.644-27.927 0-1.862 0-1.862 0-3.724zM666.531 732.858v0c-13.033 5.585-27.927 5.585-37.236-1.862-7.447-3.724-7.447-3.724-61.44-80.058l-5.585-7.447c-7.447-9.309-16.756-22.342-18.618-24.204-11.171-13.033-11.171-33.513-1.862-48.407 7.447-13.033 22.342-20.48 35.375-20.48h3.724c1.862 0 3.724 0 5.585 1.862 1.862 0 1.862 0 3.724 1.862 5.585 1.862 13.033 3.724 24.204 5.585 102.4 24.204 102.4 24.204 107.985 29.789 11.171 7.447 16.756 20.48 16.756 33.513v1.862c-1.862 29.789-46.545 94.953-72.611 107.985zM705.629 621.149c0-1.862 0-3.724 0-3.724-3.724-1.862-33.513-9.309-81.92-20.48l-16.756-3.724c-13.033-3.724-20.48-3.724-24.204-7.447h-1.862c-1.862 0-5.585 1.862-7.447 3.724s-1.862 5.585-1.862 5.585c1.862 1.862 7.447 7.447 20.48 27.927l3.724 5.585c42.822 57.716 53.993 70.749 53.993 72.611 0 0 1.862 0 1.862-1.862 13.033-5.585 52.131-59.578 53.993-78.196zM517.585 874.356v0c-3.724 14.895-13.033 24.204-27.927 27.927-29.789 7.447-130.327-20.48-152.669-42.822-9.309-9.309-14.895-24.204-9.309-37.236l1.862-1.862c3.724-7.447 93.091-148.945 119.156-188.044 13.033-22.342 27.927-31.651 44.684-31.651 3.724 0 7.447 0 11.171 1.862 14.895 3.724 29.789 16.756 29.789 55.855-3.724 29.789-14.895 201.076-16.756 215.971zM493.382 634.182c-5.585-1.862-13.033 9.309-14.895 14.895-39.098 61.44-104.262 163.84-117.295 184.32 0 0 0 1.862 1.862 1.862 13.033 13.033 98.676 37.236 119.156 33.513 0-1.862 1.862-1.862 1.862-1.862 1.862-35.375 13.033-175.011 13.033-210.385v0c1.862-14.895-1.862-20.48-3.724-22.342zM342.575 148.247c-3.724 11.171-13.033 18.618-24.204 18.618l-50.269 3.724-18.618 46.545c-3.724 11.171-14.895 16.756-26.065 16.756s-22.342-7.447-26.065-16.756l-18.618-46.545-50.269-3.724c-11.171 0-20.48-7.447-24.204-18.618s0-22.342 9.309-29.789l39.098-31.651-11.171-48.407c-1.862-9.309 0-16.756 5.585-24.204 9.309-11.171 26.065-14.895 37.236-7.447l42.822 26.065 42.822-26.065c3.724-3.724 9.309-5.585 14.895-5.585 9.309 0 16.756 3.724 22.342 11.171s7.447 14.895 5.585 24.204l-18.618 48.407 40.96 33.513c7.447 7.447 11.171 18.618 7.447 29.789zM269.964 107.287c-7.447-5.585-11.171-14.895-7.447-24.204l11.171-46.545-40.96 26.065c-3.724 1.862-7.447 3.724-13.033 3.724s-9.309-1.862-13.033-3.724l-39.098-26.065 11.171 46.545c1.862 9.309-1.862 18.618-7.447 24.204l-37.236 29.789 48.407 3.724c9.309 0 16.756 7.447 20.48 14.895l18.618 44.684 18.618-44.684c3.724-9.309 11.171-14.895 20.48-14.895l48.407-3.724-39.098-29.789zM633.018 148.247c-3.724 11.171-13.033 18.618-24.204 18.618l-50.269 3.724-18.618 46.545c-3.724 11.171-14.895 16.756-26.065 16.756s-22.342-7.447-26.065-16.756l-18.618-46.545-50.269-3.724c-11.171 0-20.48-7.447-24.204-18.618s0-22.342 9.309-29.789l39.098-31.651-11.171-48.407c-1.862-9.309 0-16.756 3.724-24.204 9.309-11.171 26.065-14.895 37.236-7.447l42.822 26.065 42.822-26.065c3.724-3.724 9.309-5.585 14.895-5.585 9.309 0 16.756 3.724 22.342 11.171s7.447 14.895 5.585 24.204l-16.756 48.407 40.96 33.513c7.447 7.447 11.171 18.618 7.447 29.789zM562.269 107.287c-7.447-5.585-11.171-14.895-7.447-24.204l11.171-46.545-40.96 26.065c-3.724 1.862-7.447 3.724-13.033 3.724s-9.309-1.862-13.033-3.724l-40.96-24.204 11.171 46.545c1.862 9.309-1.862 18.618-7.447 24.204l-37.236 29.789 48.407 3.724c9.309 0 16.756 7.447 20.48 14.895l18.618 44.684 18.618-44.684c3.724-9.309 11.171-14.895 20.48-14.895l48.407-3.724-37.236-31.651zM923.462 148.247c-3.724 11.171-13.033 18.618-24.204 18.618l-50.269 3.724-18.618 46.545c-3.724 11.171-14.895 16.756-26.065 16.756s-22.342-7.447-26.065-16.756l-18.618-46.545-52.131-1.862c-11.171 0-20.48-7.447-24.204-18.618s0-22.342 9.309-29.789l39.098-31.651-11.171-48.407c-1.862-9.309 0-16.756 5.585-24.204 9.309-11.171 26.065-14.895 37.236-7.447l42.822 26.065 42.822-26.065c5.585-3.724 9.309-5.585 14.895-5.585 7.447 0 16.756 3.724 22.342 11.171s7.447 14.895 5.585 24.204l-16.756 46.545 40.96 33.513c9.309 7.447 11.171 18.618 7.447 29.789zM852.713 107.287c-7.447-5.585-11.171-14.895-7.447-24.204l11.171-46.545-40.96 26.065c-3.724 1.862-7.447 3.724-13.033 3.724s-9.309-1.862-13.033-3.724l-40.96-24.204 11.171 46.545c1.862 9.309 0 18.618-7.447 24.204l-37.236 29.789 48.407 1.862c9.309 0 16.756 7.447 20.48 14.895l18.618 44.684 18.618-44.684c3.724-9.309 11.171-14.895 20.48-14.895l48.407-3.724-37.236-29.789z" />
40
+ <glyph unicode="&#xe91e;" glyph-name="pa-admin-icon" d="M1024.437 448.219c-0.596-158.073-72.763-299.17-185.761-392.653l-0.858-0.689h-13.548l-104.891 323.851 285.828 207.597 3.059-11.8c9.961-37.82 15.839-81.301 16.17-126.103l0.001-0.204zM798.047 22.972l-10.489-6.556c-77.973-50.165-173.175-79.974-275.339-79.974s-197.366 29.808-277.383 81.202l2.043-1.228-10.489 6.556 285.828 206.723zM305.058 380.913l-107.076-329.533h-9.178c-115.562 94.543-188.753 237.138-188.804 396.829v0.009c0.139 45.7 6.029 89.961 16.983 132.181l-0.813-3.69 3.059 11.8zM493.426 960l-109.262-336.963h-352.697l4.37 13.111c73.442 181.603 242.662 310.074 443.369 323.333l1.545 0.082zM992.97 623.037h-352.697l-109.262 336.963h12.674c202.344-13.418 371.597-142.068 443.682-320.403l1.232-3.448z" />
41
+ <glyph unicode="&#xe91f;" glyph-name="pa-lottie-animations" d="M273.772 219.293c-5.722-1.206-12.299-1.899-19.037-1.904h-9.313c-12.276-1.794-21.813-11.547-23.26-23.779l-0.012-0.129c-0.186-1.288-0.293-2.775-0.293-4.287 0-12.022 6.73-22.472 16.627-27.789l0.168-0.083c6.668-2.33 14.356-3.676 22.357-3.676 4.437 0 8.778 0.414 12.985 1.205l-0.434-0.068h9.309l7.193 1.904c5.924 1.693 12.060 3.174 17.983 5.289 37.952 15.749 69.911 39.221 95.137 68.637l0.281 0.335c37.234 40.691 70.33 86.259 97.955 135.319l1.906 3.683c11.848 21.157 22.85 40.833 34.063 61.355 28.002 54.161 56.091 99.914 87.072 143.466l-2.444-3.618c22.386 31.7 48.457 58.847 78.044 81.655l0.872 0.646c15.984 13.227 36.694 21.251 59.279 21.251 1.474 0 2.941-0.034 4.399-0.102l-0.206 0.008c2.627-0.831 5.648-1.31 8.78-1.31 16.615 0 30.083 13.469 30.083 30.083 0 13.482-8.869 24.892-21.090 28.716l-0.213 0.057-5.501 1.058c-6.103 0.909-13.146 1.428-20.311 1.428s-14.208-0.519-21.095-1.522l0.784 0.094c-4.231-1.269-8.463-2.116-12.694-2.962-4.136-0.705-7.765-1.66-11.261-2.895l0.471 0.145c-56.489-19.888-94.995-63.471-129.481-105.785-10.090-12.821-20.404-27.378-30-42.437l-1.313-2.204-9.098-13.752c-16.926-25.177-31.947-52.681-46.334-79.127l-12.060-21.157c-11.002-20.099-21.157-40.198-33.64-60.086-6.347-11.002-13.329-21.157-21.157-32.582l-10.367-16.291c-23.341-39.006-50.62-72.547-82.016-101.715l-0.285-0.262c-16.751-17.293-38.011-30.122-61.886-36.594l-0.95-0.219zM981.686 917.686v-939.372h-939.372v939.372h939.372zM1024 960h-1024v-1024h1024z" />
42
+ <glyph unicode="&#xe920;" glyph-name="pa-icon-list" horiz-adv-x="1260" d="M262.564 907.487h971.487c14.501 0 26.256-11.755 26.256-26.256s-11.755-26.256-26.256-26.256h-971.487c-14.501 0-26.256 11.755-26.256 26.256s11.755 26.256 26.256 26.256zM157.538 881.231c0-43.503-35.266-78.769-78.769-78.769s-78.769 35.266-78.769 78.769c0 43.503 35.266 78.769 78.769 78.769s78.769-35.266 78.769-78.769zM262.564 474.256h971.487c14.501 0 26.256-11.755 26.256-26.256s-11.755-26.256-26.256-26.256h-971.487c-14.501 0-26.256 11.755-26.256 26.256s11.755 26.256 26.256 26.256zM157.538 448c0-43.503-35.266-78.769-78.769-78.769s-78.769 35.266-78.769 78.769c0 43.503 35.266 78.769 78.769 78.769s78.769-35.266 78.769-78.769zM262.564 41.026h971.487c14.501 0 26.256-11.755 26.256-26.256s-11.755-26.256-26.256-26.256h-971.487c-14.501 0-26.256 11.755-26.256 26.256s11.755 26.256 26.256 26.256zM157.538 14.769c0-43.503-35.266-78.769-78.769-78.769s-78.769 35.266-78.769 78.769c0 43.503 35.266 78.769 78.769 78.769s78.769-35.266 78.769-78.769z" />
43
+ <glyph unicode="&#xe921;" glyph-name="horizontal-mouse-scroll" d="M693.248 523.776c0 98.304-79.872 177.152-177.152 177.152h-8.192c-98.304 0-177.152-79.872-177.152-177.152v-150.528c0-98.304 79.872-177.152 177.152-177.152h8.192c98.304 0 177.152 79.872 177.152 177.152v150.528zM663.552 372.224c0-40.96-16.384-77.824-43.008-104.448s-63.488-43.008-104.448-43.008h-8.192c-40.96 0-77.824 16.384-104.448 43.008s-43.008 63.488-43.008 104.448v151.552c0 40.96 16.384 77.824 43.008 104.448s63.488 43.008 104.448 43.008h8.192c40.96 0 77.824-16.384 104.448-43.008s43.008-63.488 43.008-104.448v-151.552zM512 551.424c-8.192 0-15.36-7.168-15.36-15.36v-44.032c0-8.192 7.168-15.36 15.36-15.36s15.36 7.168 15.36 15.36v44.032c-1.024 8.192-7.168 15.36-15.36 15.36zM54.272 457.216c-4.096-5.12-4.096-13.312 0-18.432l59.392-74.752c5.12-6.144 14.336-7.168 20.48-2.048s7.168 14.336 2.048 20.48v0l-51.2 65.536 52.224 65.536c5.12 6.144 4.096 15.36-2.048 20.48s-15.36 4.096-20.48-2.048l-60.416-74.752zM886.784 382.464c-5.12-6.144-4.096-15.36 2.048-20.48s15.36-4.096 20.48 2.048l59.392 74.752c4.096 5.12 4.096 13.312 0 18.432l-59.392 74.752c-5.12 6.144-14.336 7.168-20.48 2.048s-7.168-14.336-2.048-20.48v0l52.224-65.536-52.224-65.536z" />
44
+ <glyph unicode="&#xe922;" glyph-name="vertical-mouse-scroll" d="M693.248 523.776c0 98.304-79.872 177.152-177.152 177.152h-8.192c-98.304 0-177.152-79.872-177.152-177.152v-150.528c0-98.304 79.872-177.152 177.152-177.152h8.192c98.304 0 177.152 79.872 177.152 177.152v150.528zM663.552 372.224c0-40.96-16.384-77.824-43.008-104.448s-63.488-43.008-104.448-43.008h-8.192c-40.96 0-77.824 16.384-104.448 43.008s-43.008 63.488-43.008 104.448v151.552c0 40.96 16.384 77.824 43.008 104.448s63.488 43.008 104.448 43.008h8.192c40.96 0 77.824-16.384 104.448-43.008s43.008-63.488 43.008-104.448v-151.552zM512 551.424c-8.192 0-15.36-7.168-15.36-15.36v-44.032c0-8.192 7.168-15.36 15.36-15.36s15.36 7.168 15.36 15.36v44.032c-1.024 8.192-7.168 15.36-15.36 15.36zM502.784-9.728c5.12-4.096 13.312-4.096 18.432 0l74.752 59.392c6.144 5.12 7.168 14.336 2.048 20.48s-14.336 7.168-20.48 2.048v0l-65.536-51.2-65.536 52.224c-6.144 5.12-15.36 4.096-20.48-2.048s-4.096-15.36 2.048-20.48l74.752-60.416zM577.536 822.784c6.144-5.12 15.36-4.096 20.48 2.048s4.096 15.36-2.048 20.48l-74.752 59.392c-5.12 4.096-13.312 4.096-18.432 0l-74.752-59.392c-6.144-5.12-7.168-14.336-2.048-20.48s14.336-7.168 20.48-2.048v0l65.536 52.224 65.536-52.224z" />
45
+ <glyph unicode="&#xe923;" glyph-name="pa-image-scroll" d="M651.636 650.938c-33.513 0-61.44-27.927-61.44-61.44s27.927-61.44 61.44-61.44 61.44 27.927 61.44 61.44c0 33.513-27.927 61.44-61.44 61.44zM651.636 552.262c-20.48 0-35.375 16.756-35.375 35.375 0 20.48 16.756 35.375 35.375 35.375s35.375-14.895 35.375-35.375-16.756-35.375-35.375-35.375zM772.655 721.687h-519.447c-7.447 0-13.033-5.585-13.033-13.033v-521.309c0-7.447 5.585-13.033 13.033-13.033h519.447c7.447 0 13.033 5.585 13.033 13.033v521.309c-1.862 7.447-5.585 13.033-13.033 13.033zM268.102 202.24v109.847l139.636 139.636 249.484-249.484h-389.12zM690.735 202.24c0 0 0 0-1.862 1.862l-126.604 126.604 67.025 67.025 128.465-128.465 1.862-67.025h-68.887zM759.622 304.64l-119.156 119.156c-3.724 3.724-13.033 3.724-18.618 0l-76.335-76.335-130.327 130.327c-5.585 5.585-13.033 5.585-18.618 0l-130.327-130.327v346.298h493.382v-389.12zM891.811 343.738c1.862-1.862 5.585-3.724 9.309-3.724s7.447 1.862 9.309 3.724l94.953 94.953c1.862 1.862 3.724 5.585 3.724 9.309s-1.862 7.447-3.724 9.309l-94.953 94.953c-5.585 5.585-13.033 5.585-18.618 0s-5.585-13.033 0-18.618l85.644-85.644-85.644-85.644c-5.585-5.585-5.585-13.033 0-18.618zM132.189 552.262c-1.862 1.862-5.585 3.724-9.309 3.724s-7.447-1.862-9.309-3.724l-94.953-94.953c-1.862-1.862-3.724-5.585-3.724-9.309s1.862-7.447 3.724-9.309l94.953-94.953c5.585-5.585 13.033-5.585 18.618 0s5.585 13.033 0 18.618l-85.644 85.644 85.644 85.644c5.585 5.585 5.585 13.033 0 18.618zM407.738 68.189c-1.862-1.862-3.724-5.585-3.724-9.309s1.862-7.447 3.724-9.309l94.953-94.953c1.862-1.862 5.585-3.724 9.309-3.724s7.447 1.862 9.309 3.724l94.953 94.953c5.585 5.585 5.585 13.033 0 18.618s-13.033 5.585-18.618 0l-85.644-85.644-85.644 85.644c-5.585 5.585-13.033 5.585-18.618 0zM616.262 827.811c1.862 1.862 3.724 5.585 3.724 9.309s-1.862 7.447-3.724 9.309l-94.953 94.953c-1.862 1.862-5.585 3.724-9.309 3.724s-7.447-1.862-9.309-3.724l-94.953-94.953c-5.585-5.585-5.585-13.033 0-18.618s13.033-5.585 18.618 0l85.644 85.644 85.644-85.644c5.585-5.585 13.033-5.585 18.618 0z" />
46
+ <glyph unicode="&#xe924;" glyph-name="pa-banner" d="M942.080 900.422h-858.298c-11.171 0-22.342-9.309-22.342-20.48v-860.16c0-11.171 9.309-22.342 22.342-22.342h858.298c11.171 0 22.342 9.309 22.342 22.342v860.16c0 11.171-9.309 20.48-22.342 20.48zM104.262 857.6h817.338v-644.189l-197.353 197.353c-7.447 7.447-22.342 7.447-29.789 0l-128.465-126.604-215.971 214.109c-9.309 9.309-22.342 9.309-29.789 0l-215.971-214.109v573.44zM104.262 42.124v182.458l230.865 230.865 413.324-413.324c0-1.862-644.189-1.862-644.189 0zM921.6 42.124h-111.709c0 0 0 1.862-1.862 1.862l-212.247 208.524 111.709 111.709 212.247-212.247 1.862-109.847zM744.727 582.051c-55.855 0-100.538 44.684-100.538 100.538s44.684 100.538 100.538 100.538 100.538-44.684 100.538-100.538-44.684-100.538-100.538-100.538zM744.727 740.305c-31.651 0-57.716-26.065-57.716-57.716s26.065-57.716 57.716-57.716 57.716 26.065 57.716 57.716-26.065 57.716-57.716 57.716z" />
47
+ <glyph unicode="&#xe925;" glyph-name="pa-blog" d="M837.818 19.782h-733.556c-11.171 0-22.342 9.309-22.342 22.342v729.833c0 11.171 9.309 22.342 22.342 22.342h344.436v-42.822h-323.956v-688.873h688.873v322.095h42.822v-346.298c0-9.309-9.309-18.618-18.618-18.618zM558.545 312.087h-161.978c-11.171 0-22.342 9.309-22.342 22.342v160.116c0 5.585 1.862 11.171 5.585 14.895l364.916 361.193c7.447 7.447 22.342 7.447 29.789 0l161.978-161.978c7.447-9.309 7.447-22.342 0-29.789l-363.055-361.193c-3.724-3.724-9.309-5.585-14.895-5.585zM417.047 354.909h130.327l340.713 340.713-130.327 132.189-340.713-342.575v-130.327z" />
48
+ <glyph unicode="&#xe926;" glyph-name="pa-button" d="M919.738 820.364h-813.615c-52.131 0-96.815-42.822-96.815-96.815v-284.858c0-52.131 42.822-96.815 96.815-96.815h405.876v27.927h-405.876c-37.236 0-68.887 29.789-68.887 68.887v284.858c0 37.236 29.789 68.887 68.887 68.887h811.753c37.236 0 68.887-29.789 68.887-68.887v-284.858c0-37.236-29.789-68.887-68.887-68.887h-52.131l31.651-27.927h20.48c52.131 0 96.815 42.822 96.815 96.815v284.858c0 53.993-42.822 96.815-94.953 96.815zM884.364 274.851c9.309 0 13.033 11.171 5.585 16.756l-55.855 50.269-31.651 27.927-243.898 227.142c-5.585 5.585-16.756 1.862-16.756-7.447v-452.422c0-9.309 9.309-13.033 16.756-7.447l83.782 80.058c5.585 3.724 13.033 3.724 14.895-3.724l55.855-126.604c3.724-5.585 9.309-7.447 13.033-5.585l83.782 37.236c5.585 3.724 7.447 9.309 5.585 13.033l-55.855 126.604c-3.724 5.585 1.862 13.033 9.309 14.895l115.433 9.309zM768.931 127.767l-26.065-9.309c-5.585-3.724-11.171 0-13.033 5.585l-59.578 137.775c-3.724 5.585-11.171 9.309-14.895 3.724l-63.302-61.44c-5.585-5.585-16.756-1.862-16.756 7.447v305.338c0 9.309 9.309 13.033 16.756 7.447l169.425-154.531 31.651-27.927 26.065-24.204c7.447-5.585 3.724-16.756-5.585-16.756l-89.367-5.585c-7.447 0-11.171-7.447-9.309-14.895l61.44-139.636c1.862-3.724-1.862-9.309-7.447-13.033z" />
49
+ <glyph unicode="&#xe927;" glyph-name="pa-carousel" d="M687.011 189.207c-26.065 0-46.545-20.48-46.545-46.545s20.48-46.545 46.545-46.545 46.545 20.48 46.545 46.545-20.48 46.545-46.545 46.545zM687.011 114.735c-14.895 0-27.927 13.033-27.927 27.927s13.033 27.927 27.927 27.927c14.895 0 27.927-13.033 27.927-27.927s-13.033-27.927-27.927-27.927zM336.989 189.207c-26.065 0-46.545-20.48-46.545-46.545s20.48-46.545 46.545-46.545c26.065 0 46.545 20.48 46.545 46.545s-20.48 46.545-46.545 46.545zM336.989 114.735c-14.895 0-27.927 13.033-27.927 27.927s13.033 27.927 27.927 27.927c14.895 0 27.927-13.033 27.927-27.927 1.862-14.895-11.171-27.927-27.927-27.927zM512 189.207c-26.065 0-46.545-20.48-46.545-46.545s20.48-46.545 46.545-46.545c27.927 0 46.545 20.48 46.545 46.545s-20.48 46.545-46.545 46.545zM512 114.735c-14.895 0-27.927 13.033-27.927 27.927s13.033 27.927 27.927 27.927c16.756 0 27.927-13.033 27.927-27.927s-13.033-27.927-27.927-27.927zM761.484 278.575h-497.105c-7.447 0-13.033 5.585-13.033 13.033v497.105c0 7.447 5.585 13.033 13.033 13.033h497.105c7.447 0 13.033-5.585 13.033-13.033v-497.105c0-7.447-7.447-13.033-13.033-13.033zM277.411 304.64h471.040v471.040h-471.040v-471.040zM152.669 801.745h-135.913v-26.065h122.88v-471.040h-122.88v-26.065h135.913c7.447 0 13.033 5.585 13.033 13.033v497.105c0 7.447-5.585 13.033-13.033 13.033zM858.298 788.713v-497.105c0-7.447 5.585-13.033 13.033-13.033h135.913v26.065h-122.88v471.040h122.88v26.065h-135.913c-7.447 0-13.033-5.585-13.033-13.033z" />
50
+ <glyph unicode="&#xe928;" glyph-name="pa-grid" d="M474.764 485.236h-431.942v433.804h431.942v-433.804zM85.644 529.92h346.298v344.436h-346.298v-344.436zM981.178 485.236h-431.942v433.804h431.942v-433.804zM592.058 529.92h346.298v344.436h-346.298v-344.436zM474.764-23.040h-431.942v433.804h431.942v-433.804zM85.644 19.782h346.298v346.298h-346.298v-346.298zM981.178-23.040h-431.942v433.804h431.942v-433.804zM592.058 19.782h346.298v346.298h-346.298v-346.298z" />
51
+ <glyph unicode="&#xe929;" glyph-name="pa-image-button" d="M1010.967 207.825l-303.476 180.596c-3.724 1.862-7.447 1.862-13.033 0-3.724-3.724-5.585-7.447-5.585-11.171l74.473-348.16c0-5.585 5.585-7.447 7.447-7.447 5.585-1.862 9.309 1.862 11.171 5.585l52.131 74.473c0 1.862 1.862 1.862 3.724 1.862s1.862 0 3.724-1.862l63.302-89.367c1.862-3.724 7.447-5.585 9.309-5.585s5.585 0 7.447 1.862l57.716 40.96c3.724 1.862 3.724 5.585 5.585 7.447 0 3.724 0 7.447-1.862 7.447l-63.302 89.367c0 0 0 1.862 0 3.724s1.862 1.862 1.862 1.862l89.367 24.204c5.585 1.862 7.447 5.585 7.447 9.309s-3.724 13.033-7.447 14.895zM867.607 178.036c-1.862-3.724 0-7.447 1.862-11.171l70.749-96.815c1.862-1.862 1.862-3.724 0-5.585l-18.618-13.033h-1.862c-1.862 0-1.862 0-3.724 1.862l-70.749 96.815c-1.862 3.724-7.447 5.585-9.309 5.585v0c-3.724 0-7.447-1.862-9.309-5.585l-39.098-57.716c-1.862-1.862-3.724-1.862-3.724-1.862s-3.724 0-3.724 3.724l-48.407 232.727c0 1.862 1.862 3.724 1.862 3.724s1.862 1.862 3.724 0l204.8-122.88c1.862-1.862 1.862-3.724 1.862-3.724s0-1.862-3.724-3.724l-67.025-18.618c0 0-3.724-1.862-5.585-3.724zM275.549 755.2c-52.131 0-94.953-42.822-94.953-94.953s40.96-94.953 94.953-94.953c52.131 0 94.953 42.822 94.953 94.953 1.862 53.993-42.822 94.953-94.953 94.953zM275.549 602.531c-31.651 0-57.716 24.204-57.716 57.716 0 31.651 24.204 57.716 57.716 57.716s57.716-24.204 57.716-57.716c0-29.789-26.065-57.716-57.716-57.716zM891.811 440.553c-7.447-7.447-18.618-7.447-26.065-1.862l-186.182 171.287-150.807-165.702 27.927-27.927c3.724-3.724 5.585-7.447 5.585-13.033s-1.862-9.309-5.585-13.033c-7.447-7.447-20.48-7.447-26.065 0l-121.018 119.156-271.825-236.451c-3.724-3.724-7.447-5.585-13.033-5.585s-9.309 1.862-13.033 7.447-7.447 20.48 1.862 26.065l284.858 251.345c7.447 7.447 18.618 7.447 24.204 0l76.335-78.196 161.978 176.873c3.724 3.724 7.447 7.447 13.033 7.447s9.309-1.862 13.033-5.585l201.076-184.32c9.309-9.309 9.309-20.48 3.724-27.927zM979.316 870.633v-534.342c0-9.309-7.447-18.618-18.618-18.618s-18.618 7.447-18.618 18.618v515.724h-897.396v-698.182h599.505c9.309 0 18.618-7.447 18.618-18.618s-7.447-18.618-18.618-18.618h-618.124c-9.309 0-18.618 7.447-18.618 18.618v735.418c0 9.309 7.447 18.618 18.618 18.618h936.495c9.309 0 16.756-7.447 16.756-18.618z" />
52
+ <glyph unicode="&#xe92a;" glyph-name="pa-image-separator" d="M651.636 528.058c-33.513 0-61.44 27.927-61.44 61.44s27.927 61.44 61.44 61.44 61.44-27.927 61.44-61.44-27.927-61.44-61.44-61.44zM651.636 623.011c-18.618 0-35.375-14.895-35.375-35.375 0-18.618 14.895-35.375 35.375-35.375 18.618 0 35.375 14.895 35.375 35.375s-16.756 35.375-35.375 35.375zM997.935 459.171h-214.109v249.484c0 7.447-5.585 13.033-13.033 13.033h-519.447c-7.447 0-13.033-5.585-13.033-13.033v-249.484h-212.247c-5.585 0-11.171-5.585-11.171-11.171s5.585-11.171 11.171-11.171h212.247v-249.484c0-7.447 5.585-13.033 13.033-13.033h519.447c7.447 0 13.033 5.585 13.033 13.033v249.484h212.247c5.585 0 11.171 5.585 11.171 11.171s-3.724 11.171-9.309 11.171zM266.24 202.24v109.847l139.636 139.636 249.484-249.484h-389.12zM757.76 202.24h-68.887c0 0 0 0-1.862 1.862l-126.604 126.604 67.025 67.025 128.465-128.465v-67.025zM757.76 304.64l-119.156 119.156c-3.724 3.724-13.033 3.724-18.618 0l-76.335-76.335-130.327 130.327c-5.585 5.585-13.033 5.585-18.618 0l-130.327-130.327v346.298h493.382v-389.12z" />
53
+ <glyph unicode="&#xe92b;" glyph-name="pa-modal-box" d="M925.324 881.804h-822.924c-11.171 0-22.342-9.309-22.342-20.48v-822.924c0-11.171 9.309-22.342 22.342-22.342h822.924c11.171 0 20.48 9.309 20.48 22.342v822.924c0 11.171-11.171 20.48-20.48 20.48zM124.742 838.982h778.24v-141.498h-778.24v141.498zM902.982 60.742h-778.24v593.92h778.24v-593.92zM856.436 747.753h-98.676c-11.171 0-22.342 9.309-22.342 22.342s9.309 22.342 22.342 22.342h98.676c11.171 0 22.342-9.309 22.342-22.342s-9.309-22.342-22.342-22.342z" />
54
+ <glyph unicode="&#xe92c;" glyph-name="pa-persons" d="M601.367 431.244c81.92 35.375 139.636 117.295 139.636 214.109 0 128.465-102.4 232.727-229.004 232.727s-229.004-104.262-229.004-232.727c0-94.953 57.716-178.735 139.636-214.109-186.182-40.96-327.68-210.385-327.68-413.324h42.822c0 210.385 167.564 379.811 374.225 379.811s374.225-171.287 374.225-379.811h42.822c0 202.938-139.636 372.364-327.68 413.324zM325.818 645.353c0 104.262 83.782 189.905 186.182 189.905s186.182-85.644 186.182-189.905-83.782-189.905-186.182-189.905-186.182 85.644-186.182 189.905z" />
55
+ <glyph unicode="&#xe92d;" glyph-name="pa-pricing-table" d="M640.465 371.665c0-50.269-40.96-93.091-93.091-93.091h-11.171c-1.862 0-3.724-1.862-3.724-3.724v-48.407c0-11.171-9.309-18.618-18.618-18.618-11.171 0-18.618 9.309-18.618 18.618v46.545c0 1.862-1.862 3.724-3.724 3.724h-67.025c-11.171 0-18.618 9.309-18.618 18.618s9.309 18.618 18.618 18.618h122.88c31.651 0 55.855 24.204 55.855 55.855s-24.204 55.855-55.855 55.855h-68.887c-52.131 0-93.091 40.96-93.091 93.091s40.96 93.091 93.091 93.091h11.171c1.862 0 3.724 1.862 3.724 3.724v48.407c0 9.309 9.309 18.618 18.618 18.618s18.618-9.309 18.618-18.618v-48.407c0-1.862 1.862-3.724 3.724-3.724h63.302c9.309 0 18.618-9.309 18.618-18.618 0-11.171-9.309-18.618-18.618-18.618h-121.018c-31.651 0-55.855-26.065-55.855-55.855 0-31.651 26.065-55.855 55.855-55.855h68.887c52.131 1.862 94.953-39.098 94.953-91.229zM841.542 930.211h-657.222c-22.342 0-39.098-18.618-39.098-39.098v-888.087c0-22.342 18.618-39.098 39.098-39.098h657.222c22.342 0 39.098 18.618 39.098 39.098v888.087c-1.862 20.48-18.618 39.098-39.098 39.098zM834.095 6.749h-644.189v878.778h646.051c0 0 0-878.778-1.862-878.778z" />
56
+ <glyph unicode="&#xe92e;" glyph-name="pa-progress-bar" d="M942.080 155.695v-42.822h-409.6v-68.887h-42.822v68.887h-407.738v42.822h407.738v68.887h42.822v-68.887zM942.080 784.989v-42.822h-586.473v-68.887h-42.822v68.887h-230.865v42.822h230.865v68.887h42.822v-68.887zM822.924 470.342v-42.822h-117.295v-68.887h-42.822v68.887h-580.887v42.822h580.887v68.887h42.822v-68.887z" />
57
+ <glyph unicode="&#xe92f;" glyph-name="pa-testimonials" d="M318.371 615.564h383.535v-42.822h-383.535v42.822zM318.371 474.065h383.535v-42.822h-383.535v42.822zM182.458 86.807l53.993 173.149c-96.815 53.993-154.531 152.669-154.531 262.516 0 167.564 137.775 301.615 305.338 301.615h247.622c167.564 1.862 305.338-134.051 305.338-301.615s-137.775-301.615-305.338-301.615h-160.116l-275.549-148.945c-9.309-5.585-20.48 3.724-16.756 14.895zM389.12 783.127c-145.222 0-262.516-117.295-262.516-260.655 0-100.538 55.855-188.044 147.084-232.727l16.756-7.447-42.822-137.775 219.695 119.156h169.425c145.222 0 262.516 117.295 262.516 258.793s-117.295 260.655-262.516 260.655h-247.622z" />
58
+ <glyph unicode="&#xe930;" glyph-name="pa-title" d="M822.924 898.56h-619.985c-13.033 0-22.342-9.309-22.342-22.342v-102.4c0-13.033 9.309-22.342 22.342-22.342s22.342 7.447 22.342 20.48v80.058h264.378v-809.891h-55.855c-13.033 0-22.342-9.309-22.342-22.342s9.309-22.342 22.342-22.342h156.393c13.033 0 22.342 9.309 22.342 22.342s-9.309 22.342-22.342 22.342h-55.855v809.891h264.378v-80.058c0-13.033 9.309-22.342 22.342-22.342s22.342 9.309 22.342 22.342v104.262c1.862 11.171-9.309 22.342-20.48 22.342v0z" />
59
+ <glyph unicode="&#xe931;" glyph-name="pa-vertical-scroll" d="M512 898.56c-65.164 0-121.018-53.993-121.018-121.018s53.993-121.018 121.018-121.018c67.025 0 121.018 53.993 121.018 121.018 1.862 67.025-52.131 121.018-121.018 121.018zM512 690.036c-48.407 0-87.505 39.098-87.505 87.505s39.098 87.505 87.505 87.505 87.505-39.098 87.505-87.505c0-48.407-39.098-87.505-87.505-87.505zM512 243.2c-65.164 0-121.018-55.855-121.018-121.018 0-67.025 53.993-121.018 121.018-121.018s121.018 53.993 121.018 121.018c1.862 65.164-52.131 121.018-121.018 121.018zM512 34.676c-48.407 0-87.505 39.098-87.505 87.505s39.098 87.505 87.505 87.505 87.505-39.098 87.505-87.505-39.098-87.505-87.505-87.505zM512 570.88c-67.025 0-121.018-53.993-121.018-121.018s55.855-122.88 121.018-122.88c67.025 0 121.018 53.993 121.018 121.018 1.862 68.887-52.131 122.88-121.018 122.88zM512 362.356c-48.407 0-87.505 39.098-87.505 87.505s39.098 87.505 87.505 87.505 87.505-39.098 87.505-87.505-39.098-87.505-87.505-87.505z" />
60
+ <glyph unicode="&#xe932;" glyph-name="pa-video-box" d="M703.767 457.309l-284.858 210.385c-5.585 3.724-14.895 0-14.895-7.447v-422.633c0-7.447 9.309-11.171 14.895-7.447l286.72 210.385c3.724 5.585 3.724 13.033-1.862 16.756zM446.836 306.502v282.996l191.767-141.498-191.767-141.498zM512 930.211c-273.687 0-495.244-217.833-495.244-482.211s223.418-482.211 495.244-482.211c273.687 0 495.244 215.971 495.244 482.211s-221.556 482.211-495.244 482.211zM512 19.782c-247.622 0-446.836 193.629-446.836 430.080s199.215 430.080 446.836 430.080 446.836-193.629 446.836-430.080-201.076-430.080-446.836-430.080z" />
61
+ <glyph unicode="&#xe933;" glyph-name="pa-countdown" d="M917.876 861.324h-223.418v35.375c0 11.171-9.309 20.48-22.342 20.48s-20.48-9.309-20.48-20.48v-35.375h-282.996v35.375c0 11.171-9.309 20.48-22.342 20.48-11.171 0-22.342-9.309-22.342-20.48v-35.375h-223.418c-9.309 0-18.618-9.309-18.618-20.48v-837.818c0-11.171 9.309-22.342 22.342-22.342h815.476c11.171 0 22.342 9.309 22.342 22.342v837.818c-1.862 11.171-11.171 20.48-24.204 20.48zM124.742 818.502h201.076v-44.684c0-11.171 9.309-22.342 22.342-22.342 11.171 0 22.342 9.309 22.342 22.342v44.684h284.858v-44.684c0-11.171 9.309-22.342 22.342-22.342s22.342 9.309 22.342 22.342v44.684h201.076v-148.945h-776.378v148.945zM897.396 25.367h-772.655v601.367h772.655v-601.367zM385.396 140.8h-40.96v262.516c0 22.342 0 42.822 1.862 61.44-3.724-3.724-7.447-7.447-11.171-11.171-5.585-3.724-24.204-20.48-61.44-48.407l-22.342 27.927 96.815 74.473h37.236v-366.778zM571.578 140.8l152.669 329.542h-201.076v39.098h245.76v-33.513l-150.807-335.127h-46.545z" />
62
+ <glyph unicode="&#xe934;" glyph-name="pa-counter" d="M420.771 265.542h-40.96v258.793c0 22.342 0 42.822 1.862 61.44-3.724-3.724-7.447-7.447-11.171-11.171s-24.204-20.48-59.578-48.407l-22.342 27.927 94.953 72.611h35.375c1.862 1.862 1.862-361.193 1.862-361.193zM660.945 265.542h-40.96v258.793c0 22.342 0 42.822 1.862 61.44-3.724-3.724-7.447-7.447-11.171-11.171s-24.204-20.48-59.578-48.407l-22.342 27.927 94.953 72.611h35.375v-361.193zM512 939.52c-279.273 0-504.553-221.556-504.553-491.52s225.28-489.658 504.553-489.658 504.553 219.695 504.553 489.658-225.28 491.52-504.553 491.52zM512 8.611c-251.345 0-456.145 197.353-456.145 439.389s204.8 439.389 456.145 439.389 456.145-197.353 456.145-439.389-204.8-439.389-456.145-439.389z" />
63
+ <glyph unicode="&#xe935;" glyph-name="pa-dual-heading" d="M990.487 222.72h-93.091c-11.171 0-18.618 7.447-18.618 16.756s7.447 16.756 18.618 16.756h27.927v173.149h-255.069v-173.149h27.927c11.171 0 18.618-7.447 18.618-16.756s-9.309-16.756-18.618-16.756h-93.091c-11.171 0-18.618 7.447-18.618 16.756s7.447 16.756 18.618 16.756h27.927v383.535h-27.927c-11.171 0-18.618 7.447-18.618 16.756s9.309 16.756 18.618 16.756h93.091c11.171 0 18.618-7.447 18.618-16.756s-7.447-16.756-18.618-16.756h-27.927v-175.011h253.207v175.011h-27.927c-11.171 0-18.618 7.447-18.618 16.756s9.309 16.756 18.618 16.756h93.091c11.171 0 18.618-7.447 18.618-16.756s-9.309-16.756-18.618-16.756h-27.927v-381.673h26.065c11.171 0 18.618-7.447 18.618-16.756 3.724-11.171-3.724-18.618-14.895-18.618zM897.396 245.062c-3.724 0-7.447-1.862-7.447-5.585s3.724-5.585 7.447-5.585h93.091c3.724 0 7.447 1.862 7.447 5.585s-3.724 5.585-7.447 5.585h-39.098v405.876h39.098c3.724 0 7.447 1.862 7.447 5.585s-3.724 5.585-7.447 5.585h-93.091c-3.724 0-7.447-1.862-7.447-5.585s3.724-5.585 7.447-5.585h39.098v-197.353h-277.411v197.353h39.098c3.724 0 7.447 1.862 7.447 5.585s-3.724 5.585-7.447 5.585h-93.091c-3.724 0-7.447-1.862-7.447-5.585s3.724-5.585 7.447-5.585h39.098v-405.876h-39.098c-3.724 0-7.447-1.862-7.447-5.585s3.724-5.585 7.447-5.585h93.091c3.724 0 7.447 1.862 7.447 5.585s-3.724 5.585-7.447 5.585h-39.098v195.491h275.549v-197.353l-37.236 1.862zM437.527 233.891c0-7.447-5.585-11.171-13.033-11.171h-96.815c-7.447 0-13.033 5.585-13.033 11.171 0 7.447 5.585 11.171 13.033 11.171h33.513v189.905h-271.825v-189.905h33.513c7.447 0 13.033-5.585 13.033-11.171 0-7.447-7.447-11.171-13.033-11.171h-94.953c-7.447 0-13.033 5.585-13.033 11.171 0 7.447 5.585 11.171 13.033 11.171h33.513v404.015h-33.513c-7.447 0-13.033 5.585-13.033 11.171s5.585 11.171 13.033 11.171h96.815c7.447 0 13.033-5.585 13.033-11.171s-5.585-11.171-13.033-11.171h-35.375v-189.905h271.825v189.905h-33.513c-7.447 0-13.033 5.585-13.033 11.171s5.585 11.171 13.033 11.171h96.815c7.447 0 13.033-5.585 13.033-11.171s-5.585-11.171-13.033-11.171h-33.513v-404.015h33.513c5.585 0 13.033-3.724 13.033-11.171z" />
64
+ <glyph unicode="&#xe936;" glyph-name="pa-fancy-text" d="M860.16 161.28c-26.065 0-50.269 11.171-65.164 31.651l-9.309 11.171-9.309-11.171c-16.756-20.48-40.96-31.651-65.164-31.651-7.447 0-13.033 5.585-13.033 13.033s5.585 13.033 13.033 13.033c33.513 0 61.44 31.651 61.44 70.749v176.873h-37.236c-7.447 0-13.033 5.585-13.033 13.033s5.585 13.033 13.033 13.033h37.236v176.873c0 39.098-27.927 70.749-61.44 70.749-7.447 0-13.033 5.585-13.033 13.033s5.585 13.033 13.033 13.033c26.065 0 50.269-11.171 65.164-31.651l9.309-11.171 9.309 11.171c16.756 20.48 40.96 31.651 65.164 31.651 7.447 0 13.033-5.585 13.033-13.033s-5.585-13.033-13.033-13.033c-33.513 0-61.44-31.651-61.44-70.749v-176.873h37.236c7.447 0 13.033-5.585 13.033-13.033s-5.585-13.033-13.033-13.033h-37.236v-176.873c0-39.098 27.927-70.749 61.44-70.749 7.447 0 13.033-5.585 13.033-13.033s-7.447-13.033-13.033-13.033zM342.575 647.215c0-7.447-5.585-13.033-13.033-13.033h-137.775c-7.447 0-13.033 5.585-13.033 13.033s7.447 13.033 13.033 13.033h135.913c9.309 0 14.895-5.585 14.895-13.033zM342.575 254.371c0-7.447-5.585-13.033-13.033-13.033h-137.775c-7.447 0-13.033 5.585-13.033 13.033s7.447 13.033 13.033 13.033h135.913c9.309 1.862 14.895-3.724 14.895-13.033zM616.262 254.371c0-7.447-5.585-13.033-13.033-13.033h-137.775c-7.447 0-13.033 5.585-13.033 13.033s7.447 13.033 13.033 13.033h135.913c7.447 1.862 14.895-3.724 14.895-13.033zM1012.829 367.942v-78.196c1.862-26.065-20.48-48.407-46.545-48.407-7.447 0-14.895 5.585-14.895 13.033 0 3.724 1.862 7.447 3.724 11.171 1.862 1.862 5.585 3.724 11.171 3.724 11.171 0 20.48 7.447 20.48 20.48v78.196c0 7.447 7.447 13.033 13.033 13.033 7.447 0 13.033-5.585 13.033-13.033zM1001.658 522.473c-7.447 0-13.033 5.585-13.033 13.033v78.196c0 11.171-9.309 18.618-20.48 20.48-3.724 0-7.447 1.862-11.171 3.724s-3.724 3.724-3.724 7.447c0 7.447 7.447 13.033 13.033 13.033 26.065 0 48.407-20.48 48.407-46.545v-78.196c1.862-5.585-5.585-11.171-13.033-11.171zM616.262 647.215c0-7.447-5.585-13.033-13.033-13.033h-137.775c-7.447 0-13.033 5.585-13.033 13.033s7.447 13.033 13.033 13.033h135.913c7.447 0 14.895-5.585 14.895-13.033zM72.611 647.215c0-3.724-1.862-7.447-3.724-11.171s-7.447-3.724-11.171-3.724c-11.171 0-20.48-7.447-20.48-18.618v-78.196c0-7.447-7.447-13.033-14.895-13.033s-13.033 5.585-13.033 13.033v78.196c0 26.065 22.342 46.545 48.407 46.545 7.447 1.862 14.895-3.724 14.895-13.033zM70.749 254.371c0-5.585-5.585-13.033-13.033-13.033-26.065 0-48.407 22.342-48.407 46.545v78.196c0 7.447 7.447 13.033 13.033 13.033 7.447 0 13.033-5.585 13.033-13.033v-78.196c0-11.171 9.309-18.618 20.48-20.48 3.724 0 7.447-1.862 11.171-3.724 1.862-1.862 3.724-5.585 3.724-9.309z" />
65
+ <glyph unicode="&#xe937;" glyph-name="pa-google-maps" d="M666.531 863.185v0l-20.48 7.447-20.48-7.447-249.484-80.058-292.305 93.091v-759.622l269.964-83.782 22.342-7.447 22.342 7.447 249.484 80.058 292.305-93.091v757.76l-273.687 85.644zM353.745 75.636l-227.142 74.473v670.255l227.142-74.473v-670.255zM396.567 745.891l227.142 72.611v-668.393l-227.142-74.473v670.255zM895.535 75.636l-227.142 72.611v670.255l227.142-72.611v-670.255zM666.531 863.185v0 0 0zM623.709 863.185v0 0 0z" />
66
+ <glyph unicode="&#xe938;" glyph-name="pa-contact-form" d="M1012.829 526.196c0 1.862-1.862 3.724-1.862 5.585s-1.862 3.724-3.724 3.724c-1.862 1.862-3.724 3.724-5.585 3.724v0l-161.978 83.782v85.644c0 1.862 0 3.724 0 3.724 0 3.724-3.724 9.309-5.585 11.171l-202.938 202.938c0 0 0 1.862-1.862 1.862-1.862 1.862-1.862 1.862-3.724 1.862-3.724 1.862-5.585 1.862-9.309 1.862h-411.462c-11.171 0-22.342-9.309-22.342-22.342v-288.582l-161.978-85.644-1.862-1.862c0 0 0 0-1.862-1.862s-1.862-3.724-3.724-3.724c0-1.862-1.862-3.724-1.862-3.724v0-1.862c0-1.862 0-3.724 0-3.724v-536.204c0-11.171 9.309-20.48 20.48-20.48h960.698c11.171 0 20.48 9.309 20.48 20.48v538.065c0 1.862 0 3.724 0 5.585zM839.68 574.604l104.262-53.993-104.262-44.684v98.676zM634.88 863.185l134.051-134.051h-134.051v134.051zM227.142 892.975h368.64v-184.32c0-11.171 9.309-22.342 22.342-22.342h182.458v-229.004l-286.72-122.88-284.858 124.742v433.804zM184.32 576.465v-100.538l-104.262 46.545 104.262 53.993zM971.869 6.749h-919.738v482.211l450.56-197.353c5.585-1.862 11.171-1.862 16.756 0l454.284 197.353v-482.211z" />
67
+ <glyph unicode="&#xe939;" glyph-name="pa-woo-products-listing" d="M999.86 787.283c-21.127 27.308-53.905 44.72-90.749 44.72-0.137 0-0.274 0-0.41-0.001h-728.705l-27.159 108.578c-2.858 11.239-12.887 19.42-24.827 19.42-0.004 0-0.009 0-0.013 0h-102.397c-14.138 0-25.6-11.461-25.6-25.6s11.461-25.6 25.6-25.6v0h82.398l195.416-783.985c-28.649-18.469-47.35-50.216-47.35-86.331 0-56.542 45.836-102.378 102.378-102.378 47.42 0 87.31 32.24 98.947 75.997l0.162 0.715h236.875c11.775-44.516 51.691-76.799 99.146-76.799 56.553 0 102.398 45.845 102.398 102.398s-45.845 102.398-102.398 102.398c-47.456 0-87.372-32.282-98.985-76.084l-0.161-0.714h-236.875c-11.832 44.485-51.72 76.738-99.151 76.798h-0.007c-0.301 0.006-0.657 0.009-1.013 0.009-1.812 0-3.605-0.083-5.374-0.246l0.227 0.017-25.58 102.618h488.99c53.327 0.008 98.189 36.242 111.315 85.433l0.183 0.805 93.098 358.393c2.392 8.737 3.767 18.769 3.767 29.122 0 26.623-9.090 51.123-24.335 70.566l0.188-0.249zM793.585 89.617c28.276 0 51.199-22.923 51.199-51.199s-22.923-51.199-51.199-51.199c-28.276 0-51.199 22.923-51.199 51.199v0c0 28.276 22.923 51.199 51.199 51.199v0zM409.592 38.418c0-28.276-22.923-51.199-51.199-51.199s-51.199 22.923-51.199 51.199c0 28.276 22.923 51.199 51.199 51.199v0c28.276 0 51.199-22.923 51.199-51.199v0zM877.583 342.412c-7.359-27.823-32.307-47.999-61.967-47.999-0.011 0-0.023 0-0.034 0h-500.908l-31.999 127.998h615.708zM911.582 473.689h-641.587l-31.999 127.998h706.946zM970.561 700.805l-12.44-47.999h-732.766l-31.999 127.998h715.366c0.010 0 0.021 0 0.032 0 35.346 0 63.999-28.653 63.999-63.999 0-5.686-0.741-11.198-2.133-16.446l0.101 0.447z" />
68
  </font></defs></svg>
assets/frontend/css/common.css CHANGED
@@ -1,257 +1,257 @@
1
  /*
2
  * Common Title/Dual Heading
3
- */
4
- .premium-title-bg-text:before {
5
- position: absolute;
6
- content: attr(data-background);
7
- top: 0;
8
- left: 0;
9
- text-align: left; }
10
-
11
- .premium-bg-text-yes .elementor-widget-container:before {
12
- position: absolute;
13
- top: 0;
14
- left: 0;
15
- text-align: left; }
16
-
17
- .premium-mask-yes .premium-dual-header-first-clip .premium-dual-header-first-span .premium-mask-span,
18
- .premium-mask-yes .premium-dual-header-second-clip .premium-mask-span {
19
- background: inherit; }
20
-
21
- .premium-mask-yes .premium-mask-span {
22
- position: relative;
23
- overflow: hidden;
24
- -js-display: inline-flex !important;
25
- display: -webkit-inline-box !important;
26
- display: -webkit-inline-flex !important;
27
- display: -moz-inline-box !important;
28
- display: -ms-inline-flexbox !important;
29
- display: inline-flex !important; }
30
- .premium-mask-yes .premium-mask-span::after {
31
- content: "";
32
- position: absolute;
33
- top: 0;
34
- right: 0px;
35
- width: 100%;
36
- height: 100%;
37
- background-color: currentColor;
38
- -webkit-backface-visibility: visible;
39
- backface-visibility: visible; }
40
-
41
- .premium-mask-active.premium-mask-tr .premium-mask-span::after {
42
- -webkit-animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
43
- animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
44
- -webkit-transform: translateX(-103%);
45
- -ms-transform: translateX(-103%);
46
- transform: translateX(-103%); }
47
-
48
- .premium-mask-active.premium-mask-tl .premium-mask-span::after {
49
- -webkit-animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
50
- animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
51
- -webkit-transform: translateX(103%);
52
- -ms-transform: translateX(103%);
53
- transform: translateX(103%); }
54
-
55
- .premium-mask-active.premium-mask-tb .premium-mask-span::after {
56
- -webkit-animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
57
- animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
58
- -webkit-transform: translateY(-103%);
59
- -ms-transform: translateY(-103%);
60
- transform: translateY(-103%); }
61
-
62
- .premium-mask-active.premium-mask-tt .premium-mask-span::after {
63
- -webkit-animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
64
- animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
65
- -webkit-transform: translateY(103%);
66
- -ms-transform: translateY(103%);
67
- transform: translateY(103%); }
68
-
69
- @-webkit-keyframes pa-mask-tr {
70
- 0% {
71
- -webkit-transform: translateX(0%);
72
- transform: translateX(0%); }
73
- 100% {
74
- -webkit-transform: translateX(103%);
75
- transform: translateX(103%); } }
76
-
77
- @keyframes pa-mask-tr {
78
- 0% {
79
- -webkit-transform: translateX(0%);
80
- transform: translateX(0%); }
81
- 100% {
82
- -webkit-transform: translateX(103%);
83
- transform: translateX(103%); } }
84
-
85
- @-webkit-keyframes pa-mask-tl {
86
- 0% {
87
- -webkit-transform: translateX(0%);
88
- transform: translateX(0%); }
89
- 100% {
90
- -webkit-transform: translateX(-103%);
91
- transform: translateX(-103%); } }
92
-
93
- @keyframes pa-mask-tl {
94
- 0% {
95
- -webkit-transform: translateX(0%);
96
- transform: translateX(0%); }
97
- 100% {
98
- -webkit-transform: translateX(-103%);
99
- transform: translateX(-103%); } }
100
-
101
- @-webkit-keyframes pa-mask-tb {
102
- 0% {
103
- -webkit-transform: translateY(0%);
104
- transform: translateY(0%); }
105
- 100% {
106
- -webkit-transform: translateY(103%);
107
- transform: translateY(103%); } }
108
-
109
- @keyframes pa-mask-tb {
110
- 0% {
111
- -webkit-transform: translateY(0%);
112
- transform: translateY(0%); }
113
- 100% {
114
- -webkit-transform: translateY(103%);
115
- transform: translateY(103%); } }
116
-
117
- @-webkit-keyframes pa-mask-tt {
118
- 0% {
119
- -webkit-transform: translateY(0%);
120
- transform: translateY(0%); }
121
- 100% {
122
- -webkit-transform: translateY(-103%);
123
- transform: translateY(-103%); } }
124
-
125
- @keyframes pa-mask-tt {
126
- 0% {
127
- -webkit-transform: translateY(0%);
128
- transform: translateY(0%); }
129
- 100% {
130
- -webkit-transform: translateY(-103%);
131
- transform: translateY(-103%); } }
132
-
133
  /*
134
  * Common Buttons Style.
135
- */
136
- .premium-button .premium-lottie-animation,
137
- .premium-image-button .premium-lottie-animation {
138
- -js-display: flex;
139
- display: -webkit-box;
140
- display: -webkit-flex;
141
- display: -moz-box;
142
- display: -ms-flexbox;
143
- display: flex; }
144
-
145
- .premium-button svg,
146
- .premium-image-button svg {
147
- width: 30px;
148
- height: 30px; }
149
-
150
- .premium-btn-sm,
151
- .premium-btn-md,
152
- .premium-btn-lg,
153
- .premium-btn-block {
154
- background-color: #eee;
155
- color: #042551;
156
- margin: 0px;
157
- text-decoration: none; }
158
- .premium-btn-sm:hover,
159
- .premium-btn-md:hover,
160
- .premium-btn-lg:hover,
161
- .premium-btn-block:hover {
162
- background-color: #54595f;
163
- color: #eee; }
164
-
165
- .premium-btn-sm {
166
- padding: 12px 24px;
167
- font-size: 14px;
168
- line-height: 1; }
169
-
170
- .premium-btn-md {
171
- padding: 14px 26px;
172
- font-size: 16px;
173
- line-height: 1.2; }
174
-
175
- .premium-btn-lg {
176
- padding: 16px 28px;
177
- font-size: 18px;
178
- line-height: 1.3333; }
179
-
180
- .premium-btn-block {
181
- font-size: 18px;
182
- line-height: 1;
183
- padding: 20px 0px;
184
- width: 100%;
185
- text-align: center; }
186
-
187
- .premium-button-text {
188
- display: inline-block;
189
- width: 100%; }
190
-
191
  /*
192
  * Common Button/Image Button Mouse Detect Effect.
193
- */
194
- .premium-mouse-detect-yes .premium-button-style6 .premium-button-style6-bg {
195
- position: absolute;
196
- z-index: 0;
197
- top: 0;
198
- left: 0;
199
- width: 0px;
200
- height: 0px;
201
- -webkit-border-radius: 50%;
202
- border-radius: 50%;
203
- display: block;
204
- -webkit-transform: translate(-50%, -50%);
205
- -ms-transform: translate(-50%, -50%);
206
- transform: translate(-50%, -50%);
207
- -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
208
- transition: width 0.4s ease-in-out, height 0.4s ease-in-out; }
209
-
210
- .premium-mouse-detect-yes .premium-button-style6:hover .premium-button-style6-bg {
211
- width: 225%;
212
- height: 560px; }
213
-
214
- .premium-mouse-detect-yes .premium-button-style6:before {
215
- width: 0;
216
- height: 0; }
217
-
218
- /** Loader */
219
- .premium-loader {
220
- border: 3px solid #f3f3f3;
221
- border-top-width: 3px;
222
- border-top-style: solid;
223
- border-top-color: #f3f3f3;
224
- -webkit-border-radius: 50%;
225
- border-radius: 50%;
226
- border-top: 3px solid;
227
- border-top-color: #bbb;
228
- width: 30px;
229
- height: 30px;
230
- -webkit-animation: spin 2s linear infinite;
231
- animation: spin 2s linear infinite;
232
- margin: 0 auto; }
233
-
234
- /** Common Animation */
235
- @-webkit-keyframes spin {
236
- 0% {
237
- -webkit-transform: rotate(0deg);
238
- transform: rotate(0deg); }
239
- 100% {
240
- -webkit-transform: rotate(360deg);
241
- transform: rotate(360deg); } }
242
- @keyframes spin {
243
- 0% {
244
- -webkit-transform: rotate(0deg);
245
- transform: rotate(0deg); }
246
- 100% {
247
- -webkit-transform: rotate(360deg);
248
- transform: rotate(360deg); } }
249
-
250
- /**Notice*/
251
- .premium-error-notice {
252
- width: 100%;
253
- padding: 10px;
254
- color: #b94a48;
255
- background-color: #f2dede;
256
- border-color: #eed3d7;
257
- text-align: center; }
1
  /*
2
  * Common Title/Dual Heading
3
+ */
4
+ .premium-title-bg-text:before {
5
+ position: absolute;
6
+ content: attr(data-background);
7
+ top: 0;
8
+ left: 0;
9
+ text-align: left; }
10
+
11
+ .premium-bg-text-yes .elementor-widget-container:before {
12
+ position: absolute;
13
+ top: 0;
14
+ left: 0;
15
+ text-align: left; }
16
+
17
+ .premium-mask-yes .premium-dual-header-first-clip .premium-dual-header-first-span .premium-mask-span,
18
+ .premium-mask-yes .premium-dual-header-second-clip .premium-mask-span {
19
+ background: inherit; }
20
+
21
+ .premium-mask-yes .premium-mask-span {
22
+ position: relative;
23
+ overflow: hidden;
24
+ -js-display: inline-flex !important;
25
+ display: -webkit-inline-box !important;
26
+ display: -webkit-inline-flex !important;
27
+ display: -moz-inline-box !important;
28
+ display: -ms-inline-flexbox !important;
29
+ display: inline-flex !important; }
30
+ .premium-mask-yes .premium-mask-span::after {
31
+ content: "";
32
+ position: absolute;
33
+ top: 0;
34
+ right: 0px;
35
+ width: 100%;
36
+ height: 100%;
37
+ background-color: currentColor;
38
+ -webkit-backface-visibility: visible;
39
+ backface-visibility: visible; }
40
+
41
+ .premium-mask-active.premium-mask-tr .premium-mask-span::after {
42
+ -webkit-animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
43
+ animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
44
+ -webkit-transform: translateX(-103%);
45
+ -ms-transform: translateX(-103%);
46
+ transform: translateX(-103%); }
47
+
48
+ .premium-mask-active.premium-mask-tl .premium-mask-span::after {
49
+ -webkit-animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
50
+ animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
51
+ -webkit-transform: translateX(103%);
52
+ -ms-transform: translateX(103%);
53
+ transform: translateX(103%); }
54
+
55
+ .premium-mask-active.premium-mask-tb .premium-mask-span::after {
56
+ -webkit-animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
57
+ animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
58
+ -webkit-transform: translateY(-103%);
59
+ -ms-transform: translateY(-103%);
60
+ transform: translateY(-103%); }
61
+
62
+ .premium-mask-active.premium-mask-tt .premium-mask-span::after {
63
+ -webkit-animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
64
+ animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
65
+ -webkit-transform: translateY(103%);
66
+ -ms-transform: translateY(103%);
67
+ transform: translateY(103%); }
68
+
69
+ @-webkit-keyframes pa-mask-tr {
70
+ 0% {
71
+ -webkit-transform: translateX(0%);
72
+ transform: translateX(0%); }
73
+ 100% {
74
+ -webkit-transform: translateX(103%);
75
+ transform: translateX(103%); } }
76
+
77
+ @keyframes pa-mask-tr {
78
+ 0% {
79
+ -webkit-transform: translateX(0%);
80
+ transform: translateX(0%); }
81
+ 100% {
82
+ -webkit-transform: translateX(103%);
83
+ transform: translateX(103%); } }
84
+
85
+ @-webkit-keyframes pa-mask-tl {
86
+ 0% {
87
+ -webkit-transform: translateX(0%);
88
+ transform: translateX(0%); }
89
+ 100% {
90
+ -webkit-transform: translateX(-103%);
91
+ transform: translateX(-103%); } }
92
+
93
+ @keyframes pa-mask-tl {
94
+ 0% {
95
+ -webkit-transform: translateX(0%);
96
+ transform: translateX(0%); }
97
+ 100% {
98
+ -webkit-transform: translateX(-103%);
99
+ transform: translateX(-103%); } }
100
+
101
+ @-webkit-keyframes pa-mask-tb {
102
+ 0% {
103
+ -webkit-transform: translateY(0%);
104
+ transform: translateY(0%); }
105
+ 100% {
106
+ -webkit-transform: translateY(103%);
107
+ transform: translateY(103%); } }
108
+
109
+ @keyframes pa-mask-tb {
110
+ 0% {
111
+ -webkit-transform: translateY(0%);
112
+ transform: translateY(0%); }
113
+ 100% {
114
+ -webkit-transform: translateY(103%);
115
+ transform: translateY(103%); } }
116
+
117
+ @-webkit-keyframes pa-mask-tt {
118
+ 0% {
119
+ -webkit-transform: translateY(0%);
120
+ transform: translateY(0%); }
121
+ 100% {
122
+ -webkit-transform: translateY(-103%);
123
+ transform: translateY(-103%); } }
124
+
125
+ @keyframes pa-mask-tt {
126
+ 0% {
127
+ -webkit-transform: translateY(0%);
128
+ transform: translateY(0%); }
129
+ 100% {
130
+ -webkit-transform: translateY(-103%);
131
+ transform: translateY(-103%); } }
132
+
133
  /*
134
  * Common Buttons Style.
135
+ */
136
+ .premium-button .premium-lottie-animation,
137
+ .premium-image-button .premium-lottie-animation {
138
+ -js-display: flex;
139
+ display: -webkit-box;
140
+ display: -webkit-flex;
141
+ display: -moz-box;
142
+ display: -ms-flexbox;
143
+ display: flex; }
144
+
145
+ .premium-button svg,
146
+ .premium-image-button svg {
147
+ width: 30px;
148
+ height: 30px; }
149
+
150
+ .premium-btn-sm,
151
+ .premium-btn-md,
152
+ .premium-btn-lg,
153
+ .premium-btn-block {
154
+ background-color: #eee;
155
+ color: #042551;
156
+ margin: 0px;
157
+ text-decoration: none; }
158
+ .premium-btn-sm:hover,
159
+ .premium-btn-md:hover,
160
+ .premium-btn-lg:hover,
161
+ .premium-btn-block:hover {
162
+ background-color: #54595f;
163
+ color: #eee; }
164
+
165
+ .premium-btn-sm {
166
+ padding: 12px 24px;
167
+ font-size: 14px;
168
+ line-height: 1; }
169
+
170
+ .premium-btn-md {
171
+ padding: 14px 26px;
172
+ font-size: 16px;
173
+ line-height: 1.2; }
174
+
175
+ .premium-btn-lg {
176
+ padding: 16px 28px;
177
+ font-size: 18px;
178
+ line-height: 1.3333; }
179
+
180
+ .premium-btn-block {
181
+ font-size: 18px;
182
+ line-height: 1;
183
+ padding: 20px 0px;
184
+ width: 100%;
185
+ text-align: center; }
186
+
187
+ .premium-button-text {
188
+ display: inline-block;
189
+ width: 100%; }
190
+
191
  /*
192
  * Common Button/Image Button Mouse Detect Effect.
193
+ */
194
+ .premium-mouse-detect-yes .premium-button-style6 .premium-button-style6-bg {
195
+ position: absolute;
196
+ z-index: 0;
197
+ top: 0;
198
+ left: 0;
199
+ width: 0px;
200
+ height: 0px;
201
+ -webkit-border-radius: 50%;
202
+ border-radius: 50%;
203
+ display: block;
204
+ -webkit-transform: translate(-50%, -50%);
205
+ -ms-transform: translate(-50%, -50%);
206
+ transform: translate(-50%, -50%);
207
+ -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
208
+ transition: width 0.4s ease-in-out, height 0.4s ease-in-out; }
209
+
210
+ .premium-mouse-detect-yes .premium-button-style6:hover .premium-button-style6-bg {
211
+ width: 225%;
212
+ height: 560px; }
213
+
214
+ .premium-mouse-detect-yes .premium-button-style6:before {
215
+ width: 0;
216
+ height: 0; }
217
+
218
+ /** Loader */
219
+ .premium-loader {
220
+ border: 3px solid #f3f3f3;
221
+ border-top-width: 3px;
222
+ border-top-style: solid;
223
+ border-top-color: #f3f3f3;
224
+ -webkit-border-radius: 50%;
225
+ border-radius: 50%;
226
+ border-top: 3px solid;
227
+ border-top-color: #bbb;
228
+ width: 30px;
229
+ height: 30px;
230
+ -webkit-animation: spin 2s linear infinite;
231
+ animation: spin 2s linear infinite;
232
+ margin: 0 auto; }
233
+
234
+ /** Common Animation */
235
+ @-webkit-keyframes spin {
236
+ 0% {
237
+ -webkit-transform: rotate(0deg);
238
+ transform: rotate(0deg); }
239
+ 100% {
240
+ -webkit-transform: rotate(360deg);
241
+ transform: rotate(360deg); } }
242
+ @keyframes spin {
243
+ 0% {
244
+ -webkit-transform: rotate(0deg);
245
+ transform: rotate(0deg); }
246
+ 100% {
247
+ -webkit-transform: rotate(360deg);
248
+ transform: rotate(360deg); } }
249
+
250
+ /**Notice*/
251
+ .premium-error-notice {
252
+ width: 100%;
253
+ padding: 10px;
254
+ color: #b94a48;
255
+ background-color: #f2dede;
256
+ border-color: #eed3d7;
257
+ text-align: center; }
assets/frontend/css/premium-addons-rtl.css CHANGED
@@ -2857,47 +2857,47 @@
2857
  /************************************************/
2858
  .premium-carousel-wrapper a.carousel-arrow svg,
2859
  .premium-carousel-wrapper a.ver-carousel-arrow svg {
2860
- -webkit-transition: all 0.3s ease-in-out;
2861
- transition: all 0.3s ease-in-out;
2862
  }
2863
 
2864
  .premium-carousel-wrapper a.slick-arrow:hover {
2865
- -webkit-box-shadow: none !important;
2866
- box-shadow: none !important;
2867
  }
2868
 
2869
  .premium-carousel-wrapper .premium-carousel-content-hidden {
2870
- visibility: hidden;
2871
  }
2872
 
2873
  .premium-carousel-wrapper a.ver-carousel-arrow {
2874
- right: 50%;
2875
- -webkit-transform: translateX(50%);
2876
- -ms-transform: translateX(50%);
2877
- transform: translateX(50%);
2878
  }
2879
 
2880
  .premium-carousel-dots-above ul.slick-dots {
2881
- position: absolute;
2882
- display: -ms-flexbox;
2883
- display: -webkit-flex;
2884
- display: -moz-flex;
2885
- display: -ms-flex;
2886
- -js-display: flex;
2887
- display: -webkit-box;
2888
- display: -moz-box;
2889
- display: flex;
2890
- top: 50%;
2891
- -webkit-transform: translateY(-50%);
2892
- -ms-transform: translateY(-50%);
2893
- transform: translateY(-50%);
2894
- -webkit-flex-direction: column;
2895
- -webkit-box-orient: vertical;
2896
- -webkit-box-direction: normal;
2897
- -moz-box-orient: vertical;
2898
- -moz-box-direction: normal;
2899
- -ms-flex-direction: column;
2900
- flex-direction: column;
2901
  }
2902
 
2903
  /*
@@ -2906,98 +2906,98 @@
2906
  .premium-carousel-wrapper .premium-carousel-nav-dot,
2907
  .premium-carousel-wrapper .premium-carousel-nav-arrow-prev,
2908
  .premium-carousel-wrapper .premium-carousel-nav-arrow-next {
2909
- display: none;
2910
  }
2911
 
2912
  .premium-carousel-wrapper ul.slick-dots svg {
2913
- width: 20px;
2914
- height: 20px;
2915
- outline: none !important;
2916
  }
2917
 
2918
  /* Ripple Out */
2919
  @-webkit-keyframes hvr-ripple-out {
2920
- 0% {
2921
- -webkit-transform: scale(1);
2922
- transform: scale(1);
2923
- opacity: 1;
2924
- }
2925
 
2926
- 100% {
2927
- -webkit-transform: scale(1.5);
2928
- transform: scale(1.5);
2929
- opacity: 0;
2930
- }
2931
  }
2932
 
2933
  @keyframes hvr-ripple-out {
2934
- 0% {
2935
- -webkit-transform: scale(1);
2936
- transform: scale(1);
2937
- opacity: 1;
2938
- }
2939
 
2940
- 100% {
2941
- -webkit-transform: scale(1.5);
2942
- transform: scale(1.5);
2943
- opacity: 0;
2944
- }
2945
  }
2946
 
2947
  .premium-carousel-ripple-yes .premium-carousel-wrapper {
2948
- padding-bottom: 1px;
2949
  }
2950
 
2951
  .premium-carousel-ripple-yes ul.slick-dots li,
2952
  .premium-carousel-ripple-yes ul.slick-dots li i {
2953
- position: relative;
2954
  }
2955
 
2956
  .premium-carousel-ripple-yes ul.slick-dots li i {
2957
- z-index: 1;
2958
  }
2959
 
2960
  .premium-carousel-ripple-yes ul.slick-dots li:hover:before {
2961
- content: "";
2962
- position: absolute;
2963
- -webkit-transform: scale(1);
2964
- -ms-transform: scale(1);
2965
- transform: scale(1);
2966
- top: 0;
2967
- left: 0;
2968
- bottom: 0;
2969
- right: 0;
2970
- -webkit-border-radius: 50%;
2971
- border-radius: 50%;
2972
- pointer-events: none;
2973
- background-color: rgba(0, 0, 0, 0.15);
2974
  }
2975
 
2976
  .premium-carousel-ripple-yes ul.slick-dots li.slick-active:hover:before {
2977
- background-color: rgba(0, 0, 0, 0.3);
2978
  }
2979
 
2980
  .premium-carousel-ripple-yes ul.slick-dots li:hover:before {
2981
- -webkit-animation: hvr-ripple-out 1.3s infinite;
2982
- animation: hvr-ripple-out 1.3s infinite;
2983
  }
2984
 
2985
  .premium-carousel-wrapper.premium-carousel-scale .slick-slide {
2986
- -webkit-transform: scale(1.25, 1.25);
2987
- -ms-transform: scale(1.25, 1.25);
2988
- transform: scale(1.25, 1.25);
2989
- -webkit-transition: all 0.3s ease-in-out !important;
2990
- transition: all 0.3s ease-in-out !important;
2991
  }
2992
 
2993
  .premium-carousel-wrapper.premium-carousel-scale div.slick-active {
2994
- -webkit-transform: scale(1, 1);
2995
- -ms-transform: scale(1, 1);
2996
- transform: scale(1, 1);
2997
  }
2998
 
2999
  [dir="rtl"] .premium-carousel-inner .slick-slide {
3000
- float: right;
3001
  }
3002
  /**************** Premium Contact Form7 **********/
3003
  /*************************************************/
@@ -6851,72 +6851,65 @@ ul.premium-person-social-list {
6851
  }
6852
  /**************** Premium Title ****************/
6853
  /***********************************************/
6854
- .premium-title-container {
6855
- position: relative;
6856
- width: 100%;
6857
- clear: both;
6858
- overflow: hidden;
6859
- }
6860
-
6861
  .premium-title-container .premium-title-header {
6862
- position: relative;
6863
- margin: 0;
6864
- padding: 10px;
6865
  }
6866
 
6867
  .premium-title-container .premium-title-header:not(.premium-title-style7) {
6868
- -webkit-box-align: center;
6869
- -webkit-align-items: center;
6870
- -moz-box-align: center;
6871
- -ms-flex-align: center;
6872
- align-items: center;
6873
  }
6874
 
6875
  .premium-title-container .premium-title-header svg {
6876
- width: 40px;
6877
- height: 40px;
6878
  }
6879
 
6880
  .premium-title-container .premium-title-header img {
6881
- width: 40px;
6882
- height: 40px;
6883
- -o-object-fit: cover;
6884
- object-fit: cover;
6885
  }
6886
 
6887
  .premium-title-container .premium-title-header a {
6888
- position: absolute;
6889
- top: 0;
6890
- right: 0;
6891
- width: 100%;
6892
- height: 100%;
6893
  }
6894
 
6895
  .premium-title-container .premium-lottie-animation {
6896
- -js-display: flex;
6897
- display: -webkit-box;
6898
- display: -webkit-flex;
6899
- display: -moz-box;
6900
- display: -ms-flexbox;
6901
- display: flex;
6902
  }
6903
 
6904
  .premium-title-icon-row .premium-title-icon {
6905
- margin-left: 10px;
6906
  }
6907
 
6908
  .premium-title-icon-row-reverse .premium-title-icon {
6909
- margin-right: 10px;
6910
  }
6911
 
6912
  .premium-title-style3,
6913
  .premium-title-style4 {
6914
- -js-display: flex;
6915
- display: -webkit-box;
6916
- display: -webkit-flex;
6917
- display: -moz-box;
6918
- display: -ms-flexbox;
6919
- display: flex;
6920
  }
6921
 
6922
  .premium-title-style1,
@@ -6925,188 +6918,190 @@ ul.premium-person-social-list {
6925
  .premium-title-style6,
6926
  .premium-title-style8,
6927
  .premium-title-style9 {
6928
- -js-display: inline-flex;
6929
- display: -webkit-inline-box;
6930
- display: -webkit-inline-flex;
6931
- display: -moz-inline-box;
6932
- display: -ms-inline-flexbox;
6933
- display: inline-flex;
6934
  }
6935
 
6936
  .premium-title-style7 {
6937
- -js-display: inline-flex;
6938
- display: -webkit-inline-box;
6939
- display: -webkit-inline-flex;
6940
- display: -moz-inline-box;
6941
- display: -ms-inline-flexbox;
6942
- display: inline-flex;
6943
- -webkit-box-orient: vertical;
6944
- -webkit-box-direction: normal;
6945
- -webkit-flex-direction: column;
6946
- -moz-box-orient: vertical;
6947
- -moz-box-direction: normal;
6948
- -ms-flex-direction: column;
6949
- flex-direction: column;
6950
  }
6951
 
6952
  .premium-title-style7 .premium-title-style7-inner {
6953
- -js-display: flex;
6954
- display: -webkit-box;
6955
- display: -webkit-flex;
6956
- display: -moz-box;
6957
- display: -ms-flexbox;
6958
- display: flex;
6959
- -webkit-box-align: center;
6960
- -webkit-align-items: center;
6961
- -moz-box-align: center;
6962
- -ms-flex-align: center;
6963
- align-items: center;
6964
  }
6965
 
6966
  .premium-title-style1 {
6967
- border-width: 0;
6968
- border-right: 3px solid #6ec1e4;
6969
  }
6970
 
6971
  .premium-title-container.style2,
6972
  .premium-title-container.style4,
6973
  .premium-title-container.style5,
6974
  .premium-title-container.style6 {
6975
- border-bottom: 3px solid #6ec1e4;
6976
  }
6977
 
6978
  /*Style 6 Header*/
6979
  .premium-title-style6:before {
6980
- position: absolute;
6981
- right: 50%;
6982
- bottom: 0;
6983
- margin-right: -2px;
6984
- content: "";
6985
- border: 3px solid transparent;
6986
  }
6987
 
6988
  /*Style 6 Trinagle*/
6989
  .premium-title-style7-stripe-wrap {
6990
- -js-display: flex;
6991
- display: -webkit-box;
6992
- display: -webkit-flex;
6993
- display: -moz-box;
6994
- display: -ms-flexbox;
6995
- display: flex;
6996
  }
6997
 
6998
  .premium-title-style7:before {
6999
- display: none;
7000
  }
7001
 
7002
  .premium-title-style8 .premium-title-text[data-animation="shiny"] {
7003
- -webkit-background-size: 125px 125px !important;
7004
- background-size: 125px !important;
7005
- color: rgba(255, 255, 255, 0);
7006
- -webkit-background-clip: text !important;
7007
- background-clip: text !important;
7008
- -webkit-animation-name: pa-shinny-text !important;
7009
- animation-name: pa-shinny-text !important;
7010
- -webkit-animation-duration: var(--animation-speed) !important;
7011
- animation-duration: var(--animation-speed) !important;
7012
- -webkit-animation-iteration-count: infinite !important;
7013
- animation-iteration-count: infinite !important;
7014
- background: var(--base-color) -webkit-gradient(linear,
7015
- left top,
7016
- right top,
7017
- from(var(--base-color)),
7018
- to(var(--base-color)),
7019
- color-stop(0.5, var(--shiny-color))) 0 0 no-repeat;
7020
  }
7021
 
7022
  .premium-title-style9[data-animation-blur="process"] .premium-title-style9-letter {
7023
- -webkit-animation: pa-blur-shadow 2s 1 alternate;
7024
- animation: pa-blur-shadow 2s 1 alternate;
7025
  }
7026
 
7027
  .premium-title-gradient-yes .premium-title-text,
7028
  .premium-title-gradient-yes .premium-title-icon {
7029
- -webkit-background-clip: text;
7030
- -webkit-text-fill-color: transparent;
7031
- background-image: -webkit-gradient(linear, left top, right top, from(#ffa648), color-stop(#f17cc1), to(#4da9fd));
7032
- background-image: -webkit-linear-gradient(left, #ffa648, #f17cc1, #4da9fd);
7033
- background-image: linear-gradient(to right, #ffa648, #f17cc1, #4da9fd);
7034
- -webkit-animation: pa-text-gradient 8s infinite;
7035
- animation: pa-text-gradient 8s infinite;
7036
  }
7037
 
7038
  .premium-title-clipped .premium-title-header {
7039
- -webkit-text-fill-color: transparent;
7040
- -webkit-background-clip: text;
7041
- background-clip: text;
7042
  }
7043
 
7044
  @-webkit-keyframes pa-shinny-text {
7045
- 0% {
7046
- background-position: 100%;
7047
- }
7048
 
7049
- 100% {
7050
- background-position: -100%;
7051
- }
7052
  }
7053
 
7054
  @keyframes pa-shinny-text {
7055
- 0% {
7056
- background-position: 100%;
7057
- }
7058
 
7059
- 100% {
7060
- background-position: -100%;
7061
- }
7062
  }
7063
 
7064
  @-webkit-keyframes pa-blur-shadow {
7065
- from {
7066
- text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
7067
- color: transparent;
7068
- }
7069
 
7070
- to {
7071
- text-shadow: 0;
7072
- }
7073
  }
7074
 
7075
  @keyframes pa-blur-shadow {
7076
- from {
7077
- text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
7078
- color: transparent;
7079
- }
7080
 
7081
- to {
7082
- text-shadow: 0;
7083
- }
7084
  }
7085
 
7086
  @-webkit-keyframes pa-text-gradient {
7087
- 0%,
7088
- 100% {
7089
- -webkit-filter: hue-rotate(0deg);
7090
- filter: hue-rotate(0deg);
7091
- }
7092
 
7093
- 50% {
7094
- -webkit-filter: hue-rotate(360deg);
7095
- filter: hue-rotate(360deg);
7096
- }
 
 
 
 
 
 
7097
  }
7098
 
7099
  @keyframes pa-text-gradient {
7100
- 0%,
7101
- 100% {
7102
- -webkit-filter: hue-rotate(0deg);
7103
- filter: hue-rotate(0deg);
7104
- }
7105
 
7106
- 50% {
7107
- -webkit-filter: hue-rotate(360deg);
7108
- filter: hue-rotate(360deg);
7109
- }
 
 
 
 
 
 
7110
  }
7111
  /**************** Premium Video Box ************/
7112
  /***********************************************/
@@ -7809,1124 +7804,1124 @@ ul.premium-person-social-list {
7809
  .premium-vscroll-temp .slimScrollBar {
7810
  visibility: hidden;
7811
  }
7812
- /********** Premium Woo Products **********/
7813
- /******************************************/
7814
- .ast-single-post .entry-content .premium-woocommerce a {
7815
- text-decoration: none;
7816
- }
7817
-
7818
- .premium-woocommerce .premium-woo-qv-btn {
7819
- cursor: pointer;
7820
- }
7821
-
7822
- .premium-woocommerce:not(.premium-woo-skin-grid-7) li.product .star-rating {
7823
- margin: 0 auto 0.5em;
7824
- }
7825
-
7826
- .premium-woocommerce:not(.premium-woo-skin-grid-10) .premium-woo-product-sale-wrap .premium-woo-product-onsale,
7827
- .premium-woocommerce:not(.premium-woo-skin-grid-10) .premium-woo-product-featured-wrap .premium-woo-product-featured {
7828
- display: block;
7829
- text-align: center;
7830
- color: #fff;
7831
- min-width: 2em;
7832
- min-height: 2em;
7833
- line-height: 2em;
7834
- padding: 0.3em 0.6em;
7835
- margin: 0.5em 0.6em;
7836
- }
7837
-
7838
- .premium-woocommerce .pa-out-of-stock {
7839
- display: block;
7840
- text-align: center;
7841
- color: #fff;
7842
- min-width: 2em;
7843
- min-height: 2em;
7844
- line-height: 2em;
7845
- padding: 0.3em 0.6em;
7846
- margin: 0.5em 0.6em;
7847
- }
7848
-
7849
- .premium-woocommerce .premium-woo-products-inner ul.products {
7850
- -js-display: flex;
7851
- display: -webkit-box;
7852
- display: -webkit-flex;
7853
- display: -moz-box;
7854
- display: -ms-flexbox;
7855
- display: flex;
7856
- margin: 0;
7857
- padding: 0;
7858
- -webkit-flex-wrap: wrap;
7859
- -ms-flex-wrap: wrap;
7860
- flex-wrap: wrap;
7861
- list-style: none outside;
7862
- -webkit-column-gap: 0;
7863
- -moz-column-gap: 0;
7864
- column-gap: 0;
7865
- }
7866
-
7867
- .premium-woocommerce .premium-woo-products-inner ul.products li.product {
7868
- margin: 0 0 10px;
7869
- padding: 0 10px;
7870
- }
7871
-
7872
- .premium-woocommerce.premium-woo-products-inner ul.products li.product .premium-woo-product-wrapper {
7873
- overflow: hidden;
7874
- -webkit-transition: all 0.3s ease-in-out;
7875
- transition: all 0.3s ease-in-out;
7876
- }
7877
-
7878
- .premium-woocommerce .premium-woo-product-category {
7879
- display: block;
7880
- font-size: 0.85em;
7881
- margin-bottom: 0.5em;
7882
- line-height: 1.3;
7883
- }
7884
-
7885
- .premium-woocommerce .woocommerce-loop-product__title {
7886
- margin-bottom: 0.5em;
7887
- font-size: 1em;
7888
- -webkit-transition: all 0.3s ease-in-out;
7889
- transition: all 0.3s ease-in-out;
7890
- }
7891
-
7892
- .premium-woocommerce .woocommerce-loop-product__link {
7893
- position: relative;
7894
- display: block !important;
7895
- overflow: hidden;
7896
- -webkit-transition: all 0.3s ease-in-out;
7897
- transition: all 0.3s ease-in-out;
7898
- }
7899
-
7900
- .premium-woocommerce .premium-woo-ribbon-container,
7901
- .premium-woocommerce .pa-out-of-stock {
7902
- position: absolute;
7903
- z-index: 9;
7904
- }
7905
-
7906
- .premium-woocommerce .premium-woo-ribbon-container {
7907
- top: 0;
7908
- right: 0;
7909
- }
7910
-
7911
- .premium-woocommerce .pa-out-of-stock {
7912
- top: 7px;
7913
- right: 9px;
7914
- margin: 0;
7915
- }
7916
-
7917
- .premium-woocommerce .star-rating {
7918
- display: block;
7919
- float: none;
7920
- margin: 0 auto 0.5em;
7921
- -webkit-backface-visibility: hidden;
7922
- backface-visibility: hidden;
7923
- overflow: hidden;
7924
- position: relative;
7925
- height: 1em;
7926
- line-height: 1;
7927
- font-size: 0.857em;
7928
- width: 5.4em;
7929
- font-family: star;
7930
- }
7931
-
7932
- .premium-woocommerce .star-rating::before {
7933
- content: "\73\73\73\73\73";
7934
- color: #54595f;
7935
- float: right;
7936
- top: 0;
7937
- right: 0;
7938
- position: absolute;
7939
- }
7940
-
7941
- .premium-woocommerce .premium-woo-products-inner ul.products .star-rating span {
7942
- overflow: hidden;
7943
- float: right;
7944
- top: 0;
7945
- right: 0;
7946
- position: absolute;
7947
- padding-top: 1.5em;
7948
- }
7949
-
7950
- .premium-woocommerce .star-rating span::before {
7951
- content: "\53\53\53\53\53";
7952
- color: inherit;
7953
- top: 0;
7954
- position: absolute;
7955
- right: 0;
7956
- }
7957
-
7958
- .premium-woo-product-thumbnail {
7959
- position: relative;
7960
- overflow: hidden;
7961
- }
7962
-
7963
- .premium-woo-product-thumbnail .woocommerce-loop-product__link img {
7964
- margin: 0;
7965
- width: 100%;
7966
- }
7967
-
7968
- .premium-woo-product-sale-wrap,
7969
- .premium-woo-product-featured-wrap {
7970
- margin: 0;
7971
- }
7972
-
7973
- .premium-woocommerce .premium-woo-products-details-wrap {
7974
- padding: 1em 1.2em;
7975
- }
7976
-
7977
- .premium-woocommerce .premium-woo-products-details-wrap .button {
7978
- display: inline-block;
7979
- background-color: #6ec1e4;
7980
- color: #fff;
7981
- margin: 0.5em 0;
7982
- line-height: 1.3;
7983
- padding: 10px 40px;
7984
- font-size: 100%;
7985
- cursor: pointer;
7986
- text-decoration: none;
7987
- overflow: visible;
7988
- font-weight: 700;
7989
- background-image: none;
7990
- border: none;
7991
- -webkit-border-radius: 0px;
7992
- border-radius: 0px;
7993
- -webkit-box-shadow: none;
7994
- box-shadow: none;
7995
- text-shadow: none;
7996
- -webkit-transition: all 0.3s ease-in-out;
7997
- transition: all 0.3s ease-in-out;
7998
- }
7999
-
8000
- .premium-woocommerce li.product .price {
8001
- display: block;
8002
- line-height: 1.3;
8003
- font-weight: 700;
8004
- margin-bottom: 0.5em;
8005
- font-size: 0.9em;
8006
- }
8007
-
8008
- .premium-woocommerce li.product .price del {
8009
- display: inline-block;
8010
- font-weight: 400;
8011
- background: transparent;
8012
- opacity: 1;
8013
- }
8014
-
8015
- .premium-woocommerce li.product .price ins {
8016
- display: inline-block;
8017
- background: transparent;
8018
- text-decoration: none;
8019
- font-weight: inherit;
8020
- }
8021
-
8022
- .premium-woocommerce li.product .price .amount {
8023
- color: inherit !important;
8024
- }
8025
-
8026
- .premium-woocommerce li.product .premium-woo-product-desc p {
8027
- margin: 0;
8028
- }
8029
-
8030
- .premium-woo-product-align-left .premium-woocommerce li.product .star-rating {
8031
- margin-right: auto;
8032
- margin-left: 0;
8033
- }
8034
-
8035
- .premium-woo-product-align-center .premium-woocommerce li.product .star-rating {
8036
- margin-right: auto;
8037
- margin-left: auto;
8038
- }
8039
-
8040
- .premium-woo-product-align-right .premium-woocommerce li.product .star-rating {
8041
- margin-right: 0;
8042
- margin-left: auto;
8043
- }
8044
-
8045
- .premium-woo-products-pagination ul.page-numbers {
8046
- -js-display: flex;
8047
- display: -webkit-box;
8048
- display: -webkit-flex;
8049
- display: -moz-box;
8050
- display: -ms-flexbox;
8051
- display: flex;
8052
- list-style-type: none;
8053
- margin: 0;
8054
- margin-top: 10px;
8055
- padding: 0;
8056
- border: none;
8057
- -webkit-box-pack: center;
8058
- -webkit-justify-content: center;
8059
- -moz-box-pack: center;
8060
- -ms-flex-pack: center;
8061
- justify-content: center;
8062
- }
8063
-
8064
- .premium-woo-products-pagination ul.page-numbers li {
8065
- margin: 0 0 0.4em 0.4em;
8066
- padding: 0;
8067
- text-align: center;
8068
- }
8069
-
8070
- .premium-woo-products-pagination ul.page-numbers li .page-numbers {
8071
- margin: 0;
8072
- text-decoration: none;
8073
- color: #000;
8074
- border: 1px solid #54595f;
8075
- padding: 0;
8076
- line-height: 1;
8077
- font-size: 1em;
8078
- font-weight: 400;
8079
- padding: 0.75em;
8080
- display: block;
8081
- min-width: 2.5em;
8082
- -webkit-transition: all 0.3s ease-in-out;
8083
- transition: all 0.3s ease-in-out;
8084
- }
8085
-
8086
- .premium-woo-products-pagination ul.page-numbers li .page-numbers:hover,
8087
- .premium-woo-products-pagination ul.page-numbers li .page-numbers.current {
8088
- background-color: #54595f;
8089
- color: #fff;
8090
- outline: none;
8091
- }
8092
-
8093
- .premium-woocommerce .premium-loading-feed,
8094
- .premium-woo-quick-view-loader .premium-loading-feed {
8095
- display: block;
8096
- position: absolute;
8097
- width: 100%;
8098
- height: 100%;
8099
- top: 0px;
8100
- right: 0px;
8101
- bottom: 0px;
8102
- left: 0px;
8103
- background: rgba(255, 255, 255, 0.2);
8104
- -js-display: flex;
8105
- display: -webkit-box;
8106
- display: -webkit-flex;
8107
- display: -moz-box;
8108
- display: -ms-flexbox;
8109
- display: flex;
8110
- -webkit-box-align: center;
8111
- -webkit-align-items: center;
8112
- -moz-box-align: center;
8113
- -ms-flex-align: center;
8114
- align-items: center;
8115
- }
8116
-
8117
- /**
8118
- * Image Hover Effects
8119
- */
8120
- .premium-woocommerce .woocommerce-loop-product__link img {
8121
- -webkit-transition: all 0.3s ease-in-out;
8122
- transition: all 0.3s ease-in-out;
8123
- }
8124
-
8125
- .premium-woo-product__hover-zoomout .woocommerce-loop-product__link img {
8126
- -webkit-transform: scale(1.2);
8127
- -ms-transform: scale(1.2);
8128
- transform: scale(1.2);
8129
- }
8130
-
8131
- .premium-woo-product__hover-zoomout li.product:hover .woocommerce-loop-product__link img {
8132
- -webkit-transform: none;
8133
- -ms-transform: none;
8134
- transform: none;
8135
- }
8136
-
8137
- .premium-woo-product__hover-zoomin .woocommerce-loop-product__link img {
8138
- -webkit-transform: none;
8139
- -ms-transform: none;
8140
- transform: none;
8141
- }
8142
-
8143
- .premium-woo-product__hover-zoomin li.product:hover .woocommerce-loop-product__link img {
8144
- -webkit-transform: scale(1.2);
8145
- -ms-transform: scale(1.2);
8146
- transform: scale(1.2);
8147
- }
8148
-
8149
- .premium-woo-product__hover-gray .woocommerce-loop-product__link img {
8150
- -webkit-filter: grayscale(100%);
8151
- filter: grayscale(100%);
8152
- }
8153
-
8154
- .premium-woo-product__hover-gray li.product:hover .woocommerce-loop-product__link img {
8155
- -webkit-filter: grayscale(0%);
8156
- filter: grayscale(0%);
8157
- }
8158
-
8159
- .premium-woo-product__hover-sepia .woocommerce-loop-product__link img {
8160
- -webkit-filter: sepia(30%);
8161
- filter: sepia(30%);
8162
- }
8163
-
8164
- .premium-woo-product__hover-sepia li.product:hover .woocommerce-loop-product__link img {
8165
- -webkit-filter: sepia(0%);
8166
- filter: sepia(0%);
8167
- }
8168
-
8169
- .premium-woo-product__hover-bright .woocommerce-loop-product__link img {
8170
- -webkit-filter: brightness(1);
8171
- filter: brightness(1);
8172
- }
8173
-
8174
- .premium-woo-product__hover-bright li.product:hover .woocommerce-loop-product__link img {
8175
- -webkit-filter: brightness(1.2);
8176
- filter: brightness(1.2);
8177
- }
8178
-
8179
- .premium-woo-product__hover-trans .woocommerce-loop-product__link img {
8180
- -webkit-transform: translateX(15px) scale(1.1);
8181
- -ms-transform: translateX(15px) scale(1.1);
8182
- transform: translateX(15px) scale(1.1);
8183
- }
8184
-
8185
- .premium-woo-product__hover-trans li.product:hover .woocommerce-loop-product__link img {
8186
- -webkit-transform: translateX(0px) scale(1.1);
8187
- -ms-transform: translateX(0px) scale(1.1);
8188
- transform: translateX(0px) scale(1.1);
8189
- }
8190
-
8191
- .premium-woo-product__hover-scale li.product:hover .woocommerce-loop-product__link img {
8192
- -webkit-transform: scaleX(1.3) scaleY(1.3) rotate(-5deg);
8193
- -ms-transform: scaleX(1.3) scaleY(1.3) rotate(-5deg);
8194
- transform: scaleX(1.3) scaleY(1.3) rotate(-5deg);
8195
- }
8196
-
8197
- .premium-woocommerce .premium-woo-product__on_hover {
8198
- position: absolute;
8199
- top: 0;
8200
- left: 0;
8201
- bottom: 0;
8202
- right: 0;
8203
- height: 100%;
8204
- opacity: 0;
8205
- }
8206
-
8207
- .premium-woo-product__hover-swap li.product:hover .premium-woo-product__on_hover {
8208
- opacity: 1;
8209
- }
8210
-
8211
- .premium-woo-skin-grid-1 .premium-woo-qv-btn,
8212
- .premium-woo-skin-grid-3 .premium-woo-qv-btn,
8213
- .premium-woo-skin-grid-4 .premium-woo-qv-btn {
8214
- position: absolute;
8215
- bottom: 0;
8216
- right: 0;
8217
- width: 100%;
8218
- text-align: center;
8219
- padding: 5px;
8220
- background: rgba(2, 2, 2, 0.5);
8221
- color: #fff;
8222
- -webkit-transition: all 0.3s ease-in-out;
8223
- transition: all 0.3s ease-in-out;
8224
- z-index: 2;
8225
- -webkit-transform: translateY(100%);
8226
- -ms-transform: translateY(100%);
8227
- transform: translateY(100%);
8228
- }
8229
-
8230
- .premium-woo-skin-grid-4 .premium-woo-qv-btn {
8231
- -webkit-transition-delay: 0.1s;
8232
- transition-delay: 0.1s;
8233
- }
8234
-
8235
- .premium-woo-skin-grid-1 .premium-woo-qv-icon,
8236
- .premium-woo-skin-grid-3 .premium-woo-qv-icon,
8237
- .premium-woo-skin-grid-4 .premium-woo-qv-icon,
8238
- .premium-woo-skin-grid-6 .premium-woo-qv-icon {
8239
- margin-right: 0.5em;
8240
- }
8241
-
8242
- .premium-woo-product-thumbnail:hover .premium-woo-qv-btn-translate {
8243
- -webkit-transform: translateY(0);
8244
- -ms-transform: translateY(0);
8245
- transform: translateY(0);
8246
- }
8247
-
8248
- .premium-woo-product-wrapper .premium-woo-qv-data {
8249
- position: absolute;
8250
- top: 0;
8251
- right: 0;
8252
- width: 100%;
8253
- height: 100%;
8254
- z-index: 1;
8255
- overflow: hidden;
8256
- cursor: pointer;
8257
- }
8258
-
8259
- /**
8260
- * Skin 1,4
8261
- */
8262
- .premium-woo-skin-grid-1 .premium-woo-product-actions-wrapper,
8263
- .premium-woo-skin-grid-4 .premium-woo-product-actions-wrapper {
8264
- position: absolute;
8265
- top: 0.7em;
8266
- left: 1em;
8267
- -webkit-transform: translate3d(-15px, 0, 0);
8268
- transform: translate3d(-15px, 0, 0);
8269
- -webkit-transition: all 0.3s ease-in-out;
8270
- transition: all 0.3s ease-in-out;
8271
- opacity: 0;
8272
- z-index: 9;
8273
- }
8274
-
8275
- .premium-woocommerce .premium-woo-product-actions-wrapper .premium-woo-cart-btn {
8276
- position: relative;
8277
- display: block;
8278
- margin: 0 0 3px;
8279
- background: #fff;
8280
- text-align: center;
8281
- outline: 0;
8282
- -webkit-transition: all 0.3s ease-in-out;
8283
- transition: all 0.3s ease-in-out;
8284
- }
8285
-
8286
- .premium-woocommerce .premium-woo-product-actions-wrapper .premium-woo-add-cart-icon {
8287
- display: block;
8288
- color: #54595f;
8289
- width: 30px;
8290
- line-height: 30px;
8291
- height: 30px;
8292
- cursor: pointer;
8293
- -webkit-transition: all 0.3s ease-in-out;
8294
- transition: all 0.3s ease-in-out;
8295
- }
8296
-
8297
- .premium-woo-skin-grid-1 li.product:hover .premium-woo-product-actions-wrapper,
8298
- .premium-woo-skin-grid-4 li.product:hover .premium-woo-product-actions-wrapper {
8299
- -webkit-transform: translate3d(-5px, 0, 0);
8300
- transform: translate3d(-5px, 0, 0);
8301
- opacity: 1;
8302
- }
8303
-
8304
- .premium-woocommerce .premium-woo-cart-btn.adding .premium-woo-add-cart-icon {
8305
- -webkit-animation: spin 2s linear infinite;
8306
- animation: spin 2s linear infinite;
8307
- }
8308
-
8309
- .premium-woocommerce .premium-woo-cart-btn.adding .premium-woo-add-cart-icon::before {
8310
- content: "\f013";
8311
- }
8312
-
8313
- .premium-woocommerce .premium-woo-cart-btn.added .premium-woo-add-cart-icon::before {
8314
- content: "\f00c";
8315
- }
8316
-
8317
- /**
8318
- * Skin 2
8319
- */
8320
- .premium-woo-skin-grid-2 li.product .premium-woo-products-details-wrap {
8321
- position: absolute;
8322
- background: #fff;
8323
- bottom: 0;
8324
- right: 0;
8325
- width: 100%;
8326
- z-index: 2;
8327
- padding: 0;
8328
- opacity: 0;
8329
- -webkit-transition: opacity 0.2s, -webkit-transform 0.4s;
8330
- transition: opacity 0.2s, -webkit-transform 0.4s;
8331
- transition: transform 0.4s, opacity 0.2s;
8332
- transition: transform 0.4s, opacity 0.2s, -webkit-transform 0.4s;
8333
- -webkit-transform: translateZ(0) translateY(5px);
8334
- transform: translateZ(0) translateY(5px);
8335
- }
8336
-
8337
- .premium-woo-skin-grid-2 .premium-woo-product-details {
8338
- padding: 15px 0;
8339
- }
8340
-
8341
- .premium-woo-skin-grid-2 li.product:hover .premium-woo-products-details-wrap {
8342
- opacity: 1;
8343
- -webkit-transform: translateZ(0) translateY(0);
8344
- transform: translateZ(0) translateY(0);
8345
- }
8346
-
8347
- .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper {
8348
- position: static;
8349
- -js-display: flex;
8350
- display: -webkit-box;
8351
- display: -webkit-flex;
8352
- display: -moz-box;
8353
- display: -ms-flexbox;
8354
- display: flex;
8355
- -webkit-box-orient: horizontal;
8356
- -webkit-box-direction: reverse;
8357
- -webkit-flex-direction: row-reverse;
8358
- -moz-box-orient: horizontal;
8359
- -moz-box-direction: reverse;
8360
- -ms-flex-direction: row-reverse;
8361
- flex-direction: row-reverse;
8362
- }
8363
-
8364
- .premium-woo-skin-grid-2 .premium-woo-product-actions-wrapper>* {
8365
- -webkit-box-flex: 1;
8366
- -webkit-flex: 1;
8367
- -moz-box-flex: 1;
8368
- -ms-flex: 1;
8369
- flex: 1;
8370
- min-width: 50%;
8371
- }
8372
-
8373
- .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper .button {
8374
- -js-display: flex;
8375
- display: -webkit-box;
8376
- display: -webkit-flex;
8377
- display: -moz-box;
8378
- display: -ms-flexbox;
8379
- display: flex;
8380
- margin: 0;
8381
- text-align: center;
8382
- -webkit-box-pack: center;
8383
- -webkit-justify-content: center;
8384
- -moz-box-pack: center;
8385
- -ms-flex-pack: center;
8386
- justify-content: center;
8387
- -webkit-box-align: center;
8388
- -webkit-align-items: center;
8389
- -moz-box-align: center;
8390
- -ms-flex-align: center;
8391
- align-items: center;
8392
- }
8393
-
8394
- .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper .premium-woo-qv-btn {
8395
- background-color: #54595f;
8396
- }
8397
-
8398
- /**
8399
- * Skin 4
8400
- */
8401
- .premium-woo-skin-grid-4 li.product .premium-woo-products-details-wrap {
8402
- position: absolute;
8403
- right: 0;
8404
- left: 0;
8405
- top: 50%;
8406
- -webkit-transform: scale(0.9) translateZ(0) translateY(-50%);
8407
- transform: scale(0.9) translateZ(0) translateY(-50%);
8408
- text-align: center;
8409
- z-index: 2;
8410
- opacity: 0;
8411
- -webkit-transition: opacity 0.5s, -webkit-transform 0.3s;
8412
- transition: opacity 0.5s, -webkit-transform 0.3s;
8413
- transition: opacity 0.5s, transform 0.3s;
8414
- transition: opacity 0.5s, transform 0.3s, -webkit-transform 0.3s;
8415
- }
8416
-
8417
- .premium-woo-skin-grid-4 li.product .premium-woo-product-overlay,
8418
- .premium-woo-skin-grid-8 li.product .premium-woo-product-overlay {
8419
- position: absolute;
8420
- top: 0;
8421
- right: 0;
8422
- width: 100%;
8423
- height: 100%;
8424
- opacity: 0;
8425
- visibility: hidden;
8426
- background-color: rgba(27, 27, 23, 0.3);
8427
- -webkit-transition: all 0.25s ease-in-out;
8428
- transition: all 0.25s ease-in-out;
8429
- }
8430
-
8431
- .premium-woo-skin-grid-4 li.product:hover .premium-woo-product-overlay,
8432
- .premium-woo-skin-grid-8 li.product:hover .premium-woo-product-overlay {
8433
- opacity: 1;
8434
- visibility: visible;
8435
- z-index: 1;
8436
- }
8437
-
8438
- .premium-woo-skin-grid-4 li.product:hover .premium-woo-products-details-wrap {
8439
- -webkit-transform: scale(1) translateZ(0) translateY(-50%);
8440
- transform: scale(1) translateZ(0) translateY(-50%);
8441
- opacity: 1;
8442
- }
8443
-
8444
- /**
8445
- * Skin 5
8446
- */
8447
- .premium-woo-skin-grid-5 li.product .premium-woo-product-actions-wrapper {
8448
- -js-display: flex;
8449
- display: -webkit-box;
8450
- display: -webkit-flex;
8451
- display: -moz-box;
8452
- display: -ms-flexbox;
8453
- display: flex;
8454
- }
8455
-
8456
- .premium-woo-skin-grid-5 li.product .premium-woo-product-actions-wrapper .premium-woo-qv-btn {
8457
- -js-display: flex;
8458
- display: -webkit-box;
8459
- display: -webkit-flex;
8460
- display: -moz-box;
8461
- display: -ms-flexbox;
8462
- display: flex;
8463
- -webkit-box-align: center;
8464
- -webkit-align-items: center;
8465
- -moz-box-align: center;
8466
- -ms-flex-align: center;
8467
- align-items: center;
8468
- background-color: #54595f;
8469
- padding: 10px;
8470
- -webkit-transition: all 0.25s ease 0s;
8471
- transition: all 0.25s ease 0s;
8472
- }
8473
-
8474
- .premium-woo-skin-grid-5 li.product .premium-woo-products-details-wrap {
8475
- width: 75%;
8476
- }
8477
-
8478
- .premium-woo-skin-grid-5 .premium-woo-product-wrapper {
8479
- -js-display: flex;
8480
- display: -webkit-box;
8481
- display: -webkit-flex;
8482
- display: -moz-box;
8483
- display: -ms-flexbox;
8484
- display: flex;
8485
- -webkit-box-align: center;
8486
- -webkit-align-items: center;
8487
- -moz-box-align: center;
8488
- -ms-flex-align: center;
8489
- align-items: center;
8490
- }
8491
-
8492
- .premium-woo-product-align-right .premium-woo-skin-grid-5 .premium-woo-product-actions-wrapper {
8493
- -webkit-box-pack: end;
8494
- -webkit-justify-content: flex-end;
8495
- -moz-box-pack: end;
8496
- -ms-flex-pack: end;
8497
- justify-content: flex-end;
8498
- }
8499
-
8500
- .premium-woo-product-align-center .premium-woo-skin-grid-5 .premium-woo-product-actions-wrapper {
8501
- -webkit-box-pack: center;
8502
- -webkit-justify-content: center;
8503
- -moz-box-pack: center;
8504
- -ms-flex-pack: center;
8505
- justify-content: center;
8506
- }
8507
-
8508
- /**
8509
- * Skin 6
8510
- */
8511
- .premium-woo-skin-grid-6 .premium-woo-qv-btn {
8512
- position: absolute;
8513
- top: 50%;
8514
- right: 50%;
8515
- min-width: 40%;
8516
- text-align: center;
8517
- padding: 5px;
8518
- background: rgba(2, 2, 2, 0.5);
8519
- color: #fff;
8520
- -webkit-transform: translate(50%, -50%);
8521
- -ms-transform: translate(50%, -50%);
8522
- transform: translate(50%, -50%);
8523
- opacity: 0;
8524
- visibility: hidden;
8525
- -webkit-transition: all 0.3s ease-in-out;
8526
- transition: all 0.3s ease-in-out;
8527
- cursor: pointer;
8528
- z-index: 2;
8529
- }
8530
-
8531
- .premium-woo-skin-grid-6 li.product:hover .premium-woo-qv-btn {
8532
- opacity: 1;
8533
- visibility: visible;
8534
- }
8535
-
8536
- .premium-woo-product-align-right .premium-woo-skin-grid-6 li.product .premium-woo-product-info .star-rating,
8537
- .premium-woo-product-align-left .premium-woo-skin-grid-6 li.product .premium-woo-product-info .star-rating,
8538
- .premium-woo-product-align-right .premium-woo-skin-grid-7 li.product .premium-woo-product-info .star-rating,
8539
- .premium-woo-product-align-left .premium-woo-skin-grid-7 li.product .premium-woo-product-info .star-rating {
8540
- margin: 0;
8541
- }
8542
-
8543
- .premium-woo-skin-grid-6 li.product .premium-woo-product-info {
8544
- -js-display: flex;
8545
- display: -webkit-box;
8546
- display: -webkit-flex;
8547
- display: -moz-box;
8548
- display: -ms-flexbox;
8549
- display: flex;
8550
- -webkit-box-pack: justify;
8551
- -webkit-justify-content: space-between;
8552
- -moz-box-pack: justify;
8553
- -ms-flex-pack: justify;
8554
- justify-content: space-between;
8555
- }
8556
-
8557
- .premium-woo-product-align-center .premium-woocommerce li.product .premium-woo-product-info {
8558
- -webkit-box-orient: vertical;
8559
- -webkit-box-direction: normal;
8560
- -webkit-flex-direction: column;
8561
- -moz-box-orient: vertical;
8562
- -moz-box-direction: normal;
8563
- -ms-flex-direction: column;
8564
- flex-direction: column;
8565
- }
8566
-
8567
- .premium-woo-product-align-right .premium-woocommerce li.product .premium-woo-product-info {
8568
- -webkit-box-orient: horizontal;
8569
- -webkit-box-direction: reverse;
8570
- -webkit-flex-direction: row-reverse;
8571
- -moz-box-orient: horizontal;
8572
- -moz-box-direction: reverse;
8573
- -ms-flex-direction: row-reverse;
8574
- flex-direction: row-reverse;
8575
- }
8576
-
8577
- .premium-woo-skin-grid-6 li.product .premium-woo-product-gallery-images {
8578
- -js-display: flex;
8579
- display: -webkit-box;
8580
- display: -webkit-flex;
8581
- display: -moz-box;
8582
- display: -ms-flexbox;
8583
- display: flex;
8584
- position: absolute;
8585
- bottom: 10px;
8586
- width: 100%;
8587
- -webkit-box-pack: center;
8588
- -webkit-justify-content: center;
8589
- -moz-box-pack: center;
8590
- -ms-flex-pack: center;
8591
- justify-content: center;
8592
- }
8593
-
8594
- .premium-woo-product-gallery-images .premium-woo-product__gallery_image {
8595
- width: 20%;
8596
- margin: 0 0.2em;
8597
- border: 2px solid #aaa;
8598
- cursor: pointer;
8599
- }
8600
-
8601
- /**
8602
- * Metro
8603
- */
8604
- /*.premium-woo-grid-style1 ul.products li.product {
8605
- width: 25%;
8606
- }*/
8607
- .premium-woo-products-metro li.product .premium-woo-product-thumbnail img,
8608
- .premium-woo-products-metro li.product .premium-woo-product-wrapper,
8609
- .premium-woo-products-metro li.product .premium-woo-product-thumbnail,
8610
- .premium-woo-products-metro li.product .woocommerce-LoopProduct-link {
8611
- height: 100%;
8612
- }
8613
-
8614
- .premium-woo-products-metro ul.products li.product {
8615
- margin-bottom: 0;
8616
- }
8617
-
8618
- .premium-woo-products-metro li.product .premium-woo-product-thumbnail img {
8619
- -o-object-fit: cover;
8620
- object-fit: cover;
8621
- }
8622
-
8623
- /*
8624
- * Carousel
8625
- */
8626
- .premium-woocommerce:not(.premium-woo-skin-grid-7) .slick-arrow {
8627
- -webkit-border-radius: 50%;
8628
- border-radius: 50%;
8629
- }
8630
-
8631
- .premium-woocommerce ul.slick-dots {
8632
- width: 100%;
8633
- }
8634
-
8635
- /*
8636
- * Quick View Html/body
8637
- */
8638
- html.premium-woo-qv-opened,
8639
- html.premium-woo-qv-opened body {
8640
- overflow: hidden;
8641
- }
8642
-
8643
- /**
8644
- * Quick View Modal
8645
- */
8646
- .premium-woo-quick-view-back {
8647
- position: fixed;
8648
- visibility: hidden;
8649
- overflow: hidden;
8650
- background: rgba(2, 2, 2, 0.5);
8651
- opacity: 0;
8652
- -webkit-transition: opacity 0.25s;
8653
- transition: opacity 0.25s;
8654
- z-index: 999;
8655
- }
8656
-
8657
- .premium-woo-quick-view-active {
8658
- top: 0;
8659
- right: 0;
8660
- width: 100%;
8661
- height: 100%;
8662
- opacity: 1;
8663
- visibility: visible;
8664
- }
8665
-
8666
- #premium-woo-quick-view-modal {
8667
- position: fixed;
8668
- visibility: hidden;
8669
- opacity: 0;
8670
- top: 0;
8671
- right: 0;
8672
- width: 100%;
8673
- height: 100%;
8674
- z-index: 1400;
8675
- text-align: center;
8676
- -webkit-transition: all 0.3s;
8677
- transition: all 0.3s;
8678
- overflow-x: hidden;
8679
- overflow-y: auto;
8680
- }
8681
-
8682
- #premium-woo-quick-view-modal.active {
8683
- visibility: visible;
8684
- opacity: 1;
8685
- }
8686
-
8687
- #premium-woo-quick-view-modal.active .premium-woo-content-main {
8688
- -webkit-transform: translateY(0);
8689
- -ms-transform: translateY(0);
8690
- transform: translateY(0);
8691
- opacity: 1;
8692
- width: 100%;
8693
- }
8694
-
8695
- #premium-woo-quick-view-modal .premium-woo-content-main-wrapper {
8696
- position: absolute;
8697
- width: 100%;
8698
- height: 100%;
8699
- top: 0;
8700
- right: 0;
8701
- text-align: center;
8702
- padding: 30px;
8703
- -js-display: flex;
8704
- display: -webkit-box;
8705
- display: -webkit-flex;
8706
- display: -moz-box;
8707
- display: -ms-flexbox;
8708
- display: flex;
8709
- -webkit-box-align: center;
8710
- -webkit-align-items: center;
8711
- -moz-box-align: center;
8712
- -ms-flex-align: center;
8713
- align-items: center;
8714
- }
8715
-
8716
- #premium-woo-quick-view-modal .premium-woo-content-main {
8717
- position: relative;
8718
- pointer-events: none;
8719
- max-width: 100%;
8720
- text-align: right;
8721
- z-index: 1045;
8722
- -webkit-transform: translateY(-30px);
8723
- -ms-transform: translateY(-30px);
8724
- transform: translateY(-30px);
8725
- opacity: 0;
8726
- -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
8727
- transition: opacity 0.3s, -webkit-transform 0.5s;
8728
- transition: transform 0.5s, opacity 0.3s;
8729
- transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
8730
- margin: 0 auto;
8731
- }
8732
-
8733
- #premium-woo-quick-view-modal .premium-woo-lightbox-content {
8734
- position: relative;
8735
- display: table;
8736
- pointer-events: auto;
8737
- background-color: #fff;
8738
- max-width: 975px;
8739
- margin: 20px auto;
8740
- -webkit-transform: translateZ(0);
8741
- transform: translateZ(0);
8742
- -webkit-box-shadow: -3px 3px 20px 0 rgba(0, 0, 0, 0.15);
8743
- box-shadow: -3px 3px 20px 0 rgba(0, 0, 0, 0.15);
8744
- overflow: hidden;
8745
- }
8746
-
8747
- #premium-woo-quick-view-modal .summary {
8748
- width: 50%;
8749
- margin: 0;
8750
- padding: 30px;
8751
- float: right;
8752
- -webkit-box-sizing: border-box;
8753
- -moz-box-sizing: border-box;
8754
- box-sizing: border-box;
8755
- }
8756
-
8757
- #premium-woo-quick-view-modal .summary .quantity {
8758
- min-width: auto;
8759
- }
8760
-
8761
- #premium-woo-quick-view-modal .summary .quantity input.qty {
8762
- width: 54px;
8763
- -webkit-appearance: button;
8764
- -moz-appearance: button;
8765
- appearance: button;
8766
- }
8767
-
8768
- #premium-woo-quick-view-modal .summary .quantity input[type="number"]::-webkit-inner-spin-button,
8769
- #premium-woo-quick-view-modal .summary .quantity input[type="number"]::-webkit-outer-spin-button {
8770
- display: unset;
8771
- }
8772
-
8773
- #premium-woo-quick-view-modal .woocommerce-product-details__short-description p {
8774
- margin: 0;
8775
- }
8776
-
8777
- #premium-woo-quick-view-close {
8778
- position: absolute;
8779
- font-size: 22px;
8780
- top: 10px;
8781
- left: 10px;
8782
- width: 22px;
8783
- height: 22px;
8784
- line-height: 22px;
8785
- opacity: 0.7;
8786
- text-align: center;
8787
- z-index: 2;
8788
- color: #000;
8789
- }
8790
-
8791
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider {
8792
- position: relative;
8793
- }
8794
-
8795
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider li {
8796
- list-style: none;
8797
- }
8798
-
8799
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav {
8800
- margin: 0;
8801
- padding: 0;
8802
- width: 100%;
8803
- position: absolute;
8804
- bottom: 10px;
8805
- text-align: center;
8806
- direction: ltr;
8807
- }
8808
-
8809
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li {
8810
- margin: 0 6px;
8811
- display: inline-block;
8812
- vertical-align: middle;
8813
- }
8814
-
8815
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a {
8816
- width: 11px;
8817
- height: 11px;
8818
- display: block;
8819
- background: #666;
8820
- background: rgba(0, 0, 0, 0.5);
8821
- cursor: pointer;
8822
- text-indent: -9999px;
8823
- -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
8824
- box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
8825
- -webkit-border-radius: 20px;
8826
- border-radius: 20px;
8827
- }
8828
-
8829
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a.flex-active {
8830
- background: rgba(0, 0, 0, 0.9);
8831
- cursor: default;
8832
- }
8833
-
8834
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a:focus {
8835
- outline: none;
8836
- }
8837
-
8838
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider img {
8839
- -o-object-fit: cover;
8840
- object-fit: cover;
8841
- }
8842
-
8843
- #premium-woo-quick-view-content div.images {
8844
- width: 50%;
8845
- float: right;
8846
- opacity: 1 !important;
8847
- margin: 0;
8848
- }
8849
-
8850
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav {
8851
- margin: 0;
8852
- padding: 0;
8853
- list-style: none;
8854
- direction: ltr;
8855
- }
8856
-
8857
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav a {
8858
- text-decoration: none;
8859
- display: block;
8860
- width: 14px;
8861
- height: 32px;
8862
- font-size: 32px;
8863
- line-height: 32px;
8864
- margin: -20px 0 0;
8865
- position: absolute;
8866
- top: 50%;
8867
- z-index: 10;
8868
- overflow: hidden;
8869
- cursor: pointer;
8870
- color: rgba(0, 0, 0, 0.8);
8871
- text-shadow: -1px 1px 0 rgba(255, 255, 255, 0.3);
8872
- -webkit-transition: all 0.3s ease-in-out;
8873
- transition: all 0.3s ease-in-out;
8874
- }
8875
-
8876
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next,
8877
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev {
8878
- display: inline-block;
8879
- font-family: "Font Awesome 5 Free";
8880
- font-weight: 900;
8881
- text-rendering: auto;
8882
- -webkit-font-smoothing: antialiased;
8883
- -moz-osx-font-smoothing: grayscale;
8884
- }
8885
-
8886
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev {
8887
- left: 10px;
8888
- }
8889
-
8890
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next {
8891
- right: 10px;
8892
- }
8893
-
8894
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev::before {
8895
- content: "\f104";
8896
- }
8897
-
8898
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next::before {
8899
- content: "\f105";
8900
- }
8901
-
8902
- .premium-woocommerce li.product .added_to_cart.wc-forward {
8903
- display: none;
8904
- }
8905
-
8906
- .premium-woo-atc-button .add_to_cart_button span {
8907
- -webkit-animation: spin 2s linear infinite;
8908
- animation: spin 2s linear infinite;
8909
- margin-right: 5px;
8910
- vertical-align: baseline;
8911
- }
8912
-
8913
- @media (min-width: 545px) {
8914
- #premium-woo-quick-view-content div.summary {
8915
- content: "544";
8916
- overflow-y: auto;
8917
- }
8918
- }
8919
-
8920
- @media (max-width: 544px) {
8921
- #premium-woo-quick-view-content .premium-woo-lightbox-content {
8922
- display: block;
8923
- }
8924
-
8925
- #premium-woo-quick-view-content div.images,
8926
- #premium-woo-quick-view-content div.summary {
8927
- width: 100%;
8928
- float: none;
8929
- }
8930
  }
8931
  /*
8932
  * Common Title/Dual Heading
2857
  /************************************************/
2858
  .premium-carousel-wrapper a.carousel-arrow svg,
2859
  .premium-carousel-wrapper a.ver-carousel-arrow svg {
2860
+ -webkit-transition: all 0.3s ease-in-out;
2861
+ transition: all 0.3s ease-in-out;
2862
  }
2863
 
2864
  .premium-carousel-wrapper a.slick-arrow:hover {
2865
+ -webkit-box-shadow: none !important;
2866
+ box-shadow: none !important;
2867
  }
2868
 
2869
  .premium-carousel-wrapper .premium-carousel-content-hidden {
2870
+ visibility: hidden;
2871
  }
2872
 
2873
  .premium-carousel-wrapper a.ver-carousel-arrow {
2874
+ right: 50%;
2875
+ -webkit-transform: translateX(50%);
2876
+ -ms-transform: translateX(50%);
2877
+ transform: translateX(50%);
2878
  }
2879
 
2880
  .premium-carousel-dots-above ul.slick-dots {
2881
+ position: absolute;
2882
+ display: -ms-flexbox;
2883
+ display: -webkit-flex;
2884
+ display: -moz-flex;
2885
+ display: -ms-flex;
2886
+ -js-display: flex;
2887
+ display: -webkit-box;
2888
+ display: -moz-box;
2889
+ display: flex;
2890
+ top: 50%;
2891
+ -webkit-transform: translateY(-50%);
2892
+ -ms-transform: translateY(-50%);
2893
+ transform: translateY(-50%);
2894
+ -webkit-flex-direction: column;
2895
+ -webkit-box-orient: vertical;
2896
+ -webkit-box-direction: normal;
2897
+ -moz-box-orient: vertical;
2898
+ -moz-box-direction: normal;
2899
+ -ms-flex-direction: column;
2900
+ flex-direction: column;
2901
  }
2902
 
2903
  /*
2906
  .premium-carousel-wrapper .premium-carousel-nav-dot,
2907
  .premium-carousel-wrapper .premium-carousel-nav-arrow-prev,
2908
  .premium-carousel-wrapper .premium-carousel-nav-arrow-next {
2909
+ display: none;
2910
  }
2911
 
2912
  .premium-carousel-wrapper ul.slick-dots svg {
2913
+ width: 20px;
2914
+ height: 20px;
2915
+ outline: none !important;
2916
  }
2917
 
2918
  /* Ripple Out */
2919
  @-webkit-keyframes hvr-ripple-out {
2920
+ 0% {
2921
+ -webkit-transform: scale(1);
2922
+ transform: scale(1);
2923
+ opacity: 1;
2924
+ }
2925
 
2926
+ 100% {
2927
+ -webkit-transform: scale(1.5);
2928
+ transform: scale(1.5);
2929
+ opacity: 0;
2930
+ }
2931
  }
2932
 
2933
  @keyframes hvr-ripple-out {
2934
+ 0% {
2935
+ -webkit-transform: scale(1);
2936
+ transform: scale(1);
2937
+ opacity: 1;
2938
+ }
2939
 
2940
+ 100% {
2941
+ -webkit-transform: scale(1.5);
2942
+ transform: scale(1.5);
2943
+ opacity: 0;
2944
+ }
2945
  }
2946
 
2947
  .premium-carousel-ripple-yes .premium-carousel-wrapper {
2948
+ padding-bottom: 1px;
2949
  }
2950
 
2951
  .premium-carousel-ripple-yes ul.slick-dots li,
2952
  .premium-carousel-ripple-yes ul.slick-dots li i {
2953
+ position: relative;
2954
  }
2955
 
2956
  .premium-carousel-ripple-yes ul.slick-dots li i {
2957
+ z-index: 1;
2958
  }
2959
 
2960
  .premium-carousel-ripple-yes ul.slick-dots li:hover:before {
2961
+ content: "";
2962
+ position: absolute;
2963
+ -webkit-transform: scale(1);
2964
+ -ms-transform: scale(1);
2965
+ transform: scale(1);
2966
+ top: 0;
2967
+ left: 0;
2968
+ bottom: 0;
2969
+ right: 0;
2970
+ -webkit-border-radius: 50%;
2971
+ border-radius: 50%;
2972
+ pointer-events: none;
2973
+ background-color: rgba(0, 0, 0, 0.15);
2974
  }
2975
 
2976
  .premium-carousel-ripple-yes ul.slick-dots li.slick-active:hover:before {
2977
+ background-color: rgba(0, 0, 0, 0.3);
2978
  }
2979
 
2980
  .premium-carousel-ripple-yes ul.slick-dots li:hover:before {
2981
+ -webkit-animation: hvr-ripple-out 1.3s infinite;
2982
+ animation: hvr-ripple-out 1.3s infinite;
2983
  }
2984
 
2985
  .premium-carousel-wrapper.premium-carousel-scale .slick-slide {
2986
+ -webkit-transform: scale(1.25, 1.25);
2987
+ -ms-transform: scale(1.25, 1.25);
2988
+ transform: scale(1.25, 1.25);
2989
+ -webkit-transition: all 0.3s ease-in-out;
2990
+ transition: all 0.3s ease-in-out;
2991
  }
2992
 
2993
  .premium-carousel-wrapper.premium-carousel-scale div.slick-active {
2994
+ -webkit-transform: scale(1, 1);
2995
+ -ms-transform: scale(1, 1);
2996
+ transform: scale(1, 1);
2997
  }
2998
 
2999
  [dir="rtl"] .premium-carousel-inner .slick-slide {
3000
+ float: right;
3001
  }
3002
  /**************** Premium Contact Form7 **********/
3003
  /*************************************************/
6851
  }
6852
  /**************** Premium Title ****************/
6853
  /***********************************************/
 
 
 
 
 
 
 
6854
  .premium-title-container .premium-title-header {
6855
+ position: relative;
6856
+ margin: 0;
6857
+ padding: 10px;
6858
  }
6859
 
6860
  .premium-title-container .premium-title-header:not(.premium-title-style7) {
6861
+ -webkit-box-align: center;
6862
+ -webkit-align-items: center;
6863
+ -moz-box-align: center;
6864
+ -ms-flex-align: center;
6865
+ align-items: center;
6866
  }
6867
 
6868
  .premium-title-container .premium-title-header svg {
6869
+ width: 40px;
6870
+ height: 40px;
6871
  }
6872
 
6873
  .premium-title-container .premium-title-header img {
6874
+ width: 40px;
6875
+ height: 40px;
6876
+ -o-object-fit: cover;
6877
+ object-fit: cover;
6878
  }
6879
 
6880
  .premium-title-container .premium-title-header a {
6881
+ position: absolute;
6882
+ top: 0;
6883
+ right: 0;
6884
+ width: 100%;
6885
+ height: 100%;
6886
  }
6887
 
6888
  .premium-title-container .premium-lottie-animation {
6889
+ -js-display: flex;
6890
+ display: -webkit-box;
6891
+ display: -webkit-flex;
6892
+ display: -moz-box;
6893
+ display: -ms-flexbox;
6894
+ display: flex;
6895
  }
6896
 
6897
  .premium-title-icon-row .premium-title-icon {
6898
+ margin-left: 10px;
6899
  }
6900
 
6901
  .premium-title-icon-row-reverse .premium-title-icon {
6902
+ margin-right: 10px;
6903
  }
6904
 
6905
  .premium-title-style3,
6906
  .premium-title-style4 {
6907
+ -js-display: flex;
6908
+ display: -webkit-box;
6909
+ display: -webkit-flex;
6910
+ display: -moz-box;
6911
+ display: -ms-flexbox;
6912
+ display: flex;
6913
  }
6914
 
6915
  .premium-title-style1,
6918
  .premium-title-style6,
6919
  .premium-title-style8,
6920
  .premium-title-style9 {
6921
+ -js-display: inline-flex;
6922
+ display: -webkit-inline-box;
6923
+ display: -webkit-inline-flex;
6924
+ display: -moz-inline-box;
6925
+ display: -ms-inline-flexbox;
6926
+ display: inline-flex;
6927
  }
6928
 
6929
  .premium-title-style7 {
6930
+ -js-display: inline-flex;
6931
+ display: -webkit-inline-box;
6932
+ display: -webkit-inline-flex;
6933
+ display: -moz-inline-box;
6934
+ display: -ms-inline-flexbox;
6935
+ display: inline-flex;
6936
+ -webkit-box-orient: vertical;
6937
+ -webkit-box-direction: normal;
6938
+ -webkit-flex-direction: column;
6939
+ -moz-box-orient: vertical;
6940
+ -moz-box-direction: normal;
6941
+ -ms-flex-direction: column;
6942
+ flex-direction: column;
6943
  }
6944
 
6945
  .premium-title-style7 .premium-title-style7-inner {
6946
+ -js-display: flex;
6947
+ display: -webkit-box;
6948
+ display: -webkit-flex;
6949
+ display: -moz-box;
6950
+ display: -ms-flexbox;
6951
+ display: flex;
6952
+ -webkit-box-align: center;
6953
+ -webkit-align-items: center;
6954
+ -moz-box-align: center;
6955
+ -ms-flex-align: center;
6956
+ align-items: center;
6957
  }
6958
 
6959
  .premium-title-style1 {
6960
+ border-width: 0;
6961
+ border-right: 3px solid #6ec1e4;
6962
  }
6963
 
6964
  .premium-title-container.style2,
6965
  .premium-title-container.style4,
6966
  .premium-title-container.style5,
6967
  .premium-title-container.style6 {
6968
+ border-bottom: 3px solid #6ec1e4;
6969
  }
6970
 
6971
  /*Style 6 Header*/
6972
  .premium-title-style6:before {
6973
+ position: absolute;
6974
+ right: 50%;
6975
+ bottom: 0;
6976
+ margin-right: -2px;
6977
+ content: "";
6978
+ border: 3px solid transparent;
6979
  }
6980
 
6981
  /*Style 6 Trinagle*/
6982
  .premium-title-style7-stripe-wrap {
6983
+ -js-display: flex;
6984
+ display: -webkit-box;
6985
+ display: -webkit-flex;
6986
+ display: -moz-box;
6987
+ display: -ms-flexbox;
6988
+ display: flex;
6989
  }
6990
 
6991
  .premium-title-style7:before {
6992
+ display: none;
6993
  }
6994
 
6995
  .premium-title-style8 .premium-title-text[data-animation="shiny"] {
6996
+ -webkit-background-size: 125px 125px !important;
6997
+ background-size: 125px !important;
6998
+ color: rgba(255, 255, 255, 0);
6999
+ -webkit-background-clip: text !important;
7000
+ background-clip: text !important;
7001
+ -webkit-animation-name: pa-shinny-text !important;
7002
+ animation-name: pa-shinny-text !important;
7003
+ -webkit-animation-duration: var(--animation-speed) !important;
7004
+ animation-duration: var(--animation-speed) !important;
7005
+ -webkit-animation-iteration-count: infinite !important;
7006
+ animation-iteration-count: infinite !important;
7007
+ background: var(--base-color) -webkit-gradient(linear,
7008
+ left top,
7009
+ right top,
7010
+ from(var(--base-color)),
7011
+ to(var(--base-color)),
7012
+ color-stop(0.5, var(--shiny-color))) 0 0 no-repeat;
7013
  }
7014
 
7015
  .premium-title-style9[data-animation-blur="process"] .premium-title-style9-letter {
7016
+ -webkit-animation: pa-blur-shadow 2s 1 alternate;
7017
+ animation: pa-blur-shadow 2s 1 alternate;
7018
  }
7019
 
7020
  .premium-title-gradient-yes .premium-title-text,
7021
  .premium-title-gradient-yes .premium-title-icon {
7022
+ -webkit-background-clip: text;
7023
+ -webkit-text-fill-color: transparent;
7024
+ background-image: -webkit-gradient(linear, left top, right top, from(#ffa648), color-stop(#f17cc1), to(#4da9fd));
7025
+ background-image: -webkit-linear-gradient(left, #ffa648, #f17cc1, #4da9fd);
7026
+ background-image: linear-gradient(to right, #ffa648, #f17cc1, #4da9fd);
7027
+ -webkit-animation: pa-text-gradient 8s infinite;
7028
+ animation: pa-text-gradient 8s infinite;
7029
  }
7030
 
7031
  .premium-title-clipped .premium-title-header {
7032
+ -webkit-text-fill-color: transparent;
7033
+ -webkit-background-clip: text;
7034
+ background-clip: text;
7035
  }
7036
 
7037
  @-webkit-keyframes pa-shinny-text {
7038
+ 0% {
7039
+ background-position: 100%;
7040
+ }
7041
 
7042
+ 100% {
7043
+ background-position: -100%;
7044
+ }
7045
  }
7046
 
7047
  @keyframes pa-shinny-text {
7048
+ 0% {
7049
+ background-position: 100%;
7050
+ }
7051
 
7052
+ 100% {
7053
+ background-position: -100%;
7054
+ }
7055
  }
7056
 
7057
  @-webkit-keyframes pa-blur-shadow {
7058
+ from {
7059
+ text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
7060
+ color: transparent;
7061
+ }
7062
 
7063
+ to {
7064
+ text-shadow: 0;
7065
+ }
7066
  }
7067
 
7068
  @keyframes pa-blur-shadow {
7069
+ from {
7070
+ text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
7071
+ color: transparent;
7072
+ }
7073
 
7074
+ to {
7075
+ text-shadow: 0;
7076
+ }
7077
  }
7078
 
7079
  @-webkit-keyframes pa-text-gradient {
 
 
 
 
 
7080
 
7081
+ 0%,
7082
+ 100% {
7083
+ -webkit-filter: hue-rotate(0deg);
7084
+ filter: hue-rotate(0deg);
7085
+ }
7086
+
7087
+ 50% {
7088
+ -webkit-filter: hue-rotate(360deg);
7089
+ filter: hue-rotate(360deg);
7090
+ }
7091
  }
7092
 
7093
  @keyframes pa-text-gradient {
 
 
 
 
 
7094
 
7095
+ 0%,
7096
+ 100% {
7097
+ -webkit-filter: hue-rotate(0deg);
7098
+ filter: hue-rotate(0deg);
7099
+ }
7100
+
7101
+ 50% {
7102
+ -webkit-filter: hue-rotate(360deg);
7103
+ filter: hue-rotate(360deg);
7104
+ }
7105
  }
7106
  /**************** Premium Video Box ************/
7107
  /***********************************************/
7804
  .premium-vscroll-temp .slimScrollBar {
7805
  visibility: hidden;
7806
  }
7807
+ /********** Premium Woo Products **********/
7808
+ /******************************************/
7809
+ .ast-single-post .entry-content .premium-woocommerce a {
7810
+ text-decoration: none;
7811
+ }
7812
+
7813
+ .premium-woocommerce .premium-woo-qv-btn {
7814
+ cursor: pointer;
7815
+ }
7816
+
7817
+ .premium-woocommerce:not(.premium-woo-skin-grid-7) li.product .star-rating {
7818
+ margin: 0 auto 0.5em;
7819
+ }
7820
+
7821
+ .premium-woocommerce:not(.premium-woo-skin-grid-10) .premium-woo-product-sale-wrap .premium-woo-product-onsale,
7822
+ .premium-woocommerce:not(.premium-woo-skin-grid-10) .premium-woo-product-featured-wrap .premium-woo-product-featured {
7823
+ display: block;
7824
+ text-align: center;
7825
+ color: #fff;
7826
+ min-width: 2em;
7827
+ min-height: 2em;
7828
+ line-height: 2em;
7829
+ padding: 0.3em 0.6em;
7830
+ margin: 0.5em 0.6em;
7831
+ }
7832
+
7833
+ .premium-woocommerce .pa-out-of-stock {
7834
+ display: block;
7835
+ text-align: center;
7836
+ color: #fff;
7837
+ min-width: 2em;
7838
+ min-height: 2em;
7839
+ line-height: 2em;
7840
+ padding: 0.3em 0.6em;
7841
+ margin: 0.5em 0.6em;
7842
+ }
7843
+
7844
+ .premium-woocommerce .premium-woo-products-inner ul.products {
7845
+ -js-display: flex;
7846
+ display: -webkit-box;
7847
+ display: -webkit-flex;
7848
+ display: -moz-box;
7849
+ display: -ms-flexbox;
7850
+ display: flex;
7851
+ margin: 0;
7852
+ padding: 0;
7853
+ -webkit-flex-wrap: wrap;
7854
+ -ms-flex-wrap: wrap;
7855
+ flex-wrap: wrap;
7856
+ list-style: none outside;
7857
+ -webkit-column-gap: 0;
7858
+ -moz-column-gap: 0;
7859
+ column-gap: 0;
7860
+ }
7861
+
7862
+ .premium-woocommerce .premium-woo-products-inner ul.products li.product {
7863
+ margin: 0 0 10px;
7864
+ padding: 0 10px;
7865
+ }
7866
+
7867
+ .premium-woocommerce.premium-woo-products-inner ul.products li.product .premium-woo-product-wrapper {
7868
+ overflow: hidden;
7869
+ -webkit-transition: all 0.3s ease-in-out;
7870
+ transition: all 0.3s ease-in-out;
7871
+ }
7872
+
7873
+ .premium-woocommerce .premium-woo-product-category {
7874
+ display: block;
7875
+ font-size: 0.85em;
7876
+ margin-bottom: 0.5em;
7877
+ line-height: 1.3;
7878
+ }
7879
+
7880
+ .premium-woocommerce .woocommerce-loop-product__title {
7881
+ margin-bottom: 0.5em;
7882
+ font-size: 1em;
7883
+ -webkit-transition: all 0.3s ease-in-out;
7884
+ transition: all 0.3s ease-in-out;
7885
+ }
7886
+
7887
+ .premium-woocommerce .woocommerce-loop-product__link {
7888
+ position: relative;
7889
+ display: block !important;
7890
+ overflow: hidden;
7891
+ -webkit-transition: all 0.3s ease-in-out;
7892
+ transition: all 0.3s ease-in-out;
7893
+ }
7894
+
7895
+ .premium-woocommerce .premium-woo-ribbon-container,
7896
+ .premium-woocommerce .pa-out-of-stock {
7897
+ position: absolute;
7898
+ z-index: 9;
7899
+ }
7900
+
7901
+ .premium-woocommerce .premium-woo-ribbon-container {
7902
+ top: 0;
7903
+ right: 0;
7904
+ }
7905
+
7906
+ .premium-woocommerce .pa-out-of-stock {
7907
+ top: 7px;
7908
+ right: 9px;
7909
+ margin: 0;
7910
+ }
7911
+
7912
+ .premium-woocommerce .star-rating {
7913
+ display: block;
7914
+ float: none;
7915
+ margin: 0 auto 0.5em;
7916
+ -webkit-backface-visibility: hidden;
7917
+ backface-visibility: hidden;
7918
+ overflow: hidden;
7919
+ position: relative;
7920
+ height: 1em;
7921
+ line-height: 1;
7922
+ font-size: 0.857em;
7923
+ width: 5.4em;
7924
+ font-family: star;
7925
+ }
7926
+
7927
+ .premium-woocommerce .star-rating::before {
7928
+ content: "\73\73\73\73\73";
7929
+ color: #54595f;
7930
+ float: right;
7931
+ top: 0;
7932
+ right: 0;
7933
+ position: absolute;
7934
+ }
7935
+
7936
+ .premium-woocommerce .premium-woo-products-inner ul.products .star-rating span {
7937
+ overflow: hidden;
7938
+ float: right;
7939
+ top: 0;
7940
+ right: 0;
7941
+ position: absolute;
7942
+ padding-top: 1.5em;
7943
+ }
7944
+
7945
+ .premium-woocommerce .star-rating span::before {
7946
+ content: "\53\53\53\53\53";
7947
+ color: inherit;
7948
+ top: 0;
7949
+ position: absolute;
7950
+ right: 0;
7951
+ }
7952
+
7953
+ .premium-woo-product-thumbnail {
7954
+ position: relative;
7955
+ overflow: hidden;
7956
+ }
7957
+
7958
+ .premium-woo-product-thumbnail .woocommerce-loop-product__link img {
7959
+ margin: 0;
7960
+ width: 100%;
7961
+ }
7962
+
7963
+ .premium-woo-product-sale-wrap,
7964
+ .premium-woo-product-featured-wrap {
7965
+ margin: 0;
7966
+ }
7967
+
7968
+ .premium-woocommerce .premium-woo-products-details-wrap {
7969
+ padding: 1em 1.2em;
7970
+ }
7971
+
7972
+ .premium-woocommerce .premium-woo-products-details-wrap .button {
7973
+ display: inline-block;
7974
+ background-color: #6ec1e4;
7975
+ color: #fff;
7976
+ margin: 0.5em 0;
7977
+ line-height: 1.3;
7978
+ padding: 10px 40px;
7979
+ font-size: 100%;
7980
+ cursor: pointer;
7981
+ text-decoration: none;
7982
+ overflow: visible;
7983
+ font-weight: 700;
7984
+ background-image: none;
7985
+ border: none;
7986
+ -webkit-border-radius: 0px;
7987
+ border-radius: 0px;
7988
+ -webkit-box-shadow: none;
7989
+ box-shadow: none;
7990
+ text-shadow: none;
7991
+ -webkit-transition: all 0.3s ease-in-out;
7992
+ transition: all 0.3s ease-in-out;
7993
+ }
7994
+
7995
+ .premium-woocommerce li.product .price {
7996
+ display: block;
7997
+ line-height: 1.3;
7998
+ font-weight: 700;
7999
+ margin-bottom: 0.5em;
8000
+ font-size: 0.9em;
8001
+ }
8002
+
8003
+ .premium-woocommerce li.product .price del {
8004
+ display: inline-block;
8005
+ font-weight: 400;
8006
+ background: transparent;
8007
+ opacity: 1;
8008
+ }
8009
+
8010
+ .premium-woocommerce li.product .price ins {
8011
+ display: inline-block;
8012
+ background: transparent;
8013
+ text-decoration: none;
8014
+ font-weight: inherit;
8015
+ }
8016
+
8017
+ .premium-woocommerce li.product .price .amount {
8018
+ color: inherit !important;
8019
+ }
8020
+
8021
+ .premium-woocommerce li.product .premium-woo-product-desc p {
8022
+ margin: 0;
8023
+ }
8024
+
8025
+ .premium-woo-product-align-left .premium-woocommerce li.product .star-rating {
8026
+ margin-right: auto;
8027
+ margin-left: 0;
8028
+ }
8029
+
8030
+ .premium-woo-product-align-center .premium-woocommerce li.product .star-rating {
8031
+ margin-right: auto;
8032
+ margin-left: auto;
8033
+ }
8034
+
8035
+ .premium-woo-product-align-right .premium-woocommerce li.product .star-rating {
8036
+ margin-right: 0;
8037
+ margin-left: auto;
8038
+ }
8039
+
8040
+ .premium-woo-products-pagination ul.page-numbers {
8041
+ -js-display: flex;
8042
+ display: -webkit-box;
8043
+ display: -webkit-flex;
8044
+ display: -moz-box;
8045
+ display: -ms-flexbox;
8046
+ display: flex;
8047
+ list-style-type: none;
8048
+ margin: 0;
8049
+ margin-top: 10px;
8050
+ padding: 0;
8051
+ border: none;
8052
+ -webkit-box-pack: center;
8053
+ -webkit-justify-content: center;
8054
+ -moz-box-pack: center;
8055
+ -ms-flex-pack: center;
8056
+ justify-content: center;
8057
+ }
8058
+
8059
+ .premium-woo-products-pagination ul.page-numbers li {
8060
+ margin: 0 0 0.4em 0.4em;
8061
+ padding: 0;
8062
+ text-align: center;
8063
+ }
8064
+
8065
+ .premium-woo-products-pagination ul.page-numbers li .page-numbers {
8066
+ margin: 0;
8067
+ text-decoration: none;
8068
+ color: #000;
8069
+ border: 1px solid #54595f;
8070
+ padding: 0;
8071
+ line-height: 1;
8072
+ font-size: 1em;
8073
+ font-weight: 400;
8074
+ padding: 0.75em;
8075
+ display: block;
8076
+ min-width: 2.5em;
8077
+ -webkit-transition: all 0.3s ease-in-out;
8078
+ transition: all 0.3s ease-in-out;
8079
+ }
8080
+
8081
+ .premium-woo-products-pagination ul.page-numbers li .page-numbers:hover,
8082
+ .premium-woo-products-pagination ul.page-numbers li .page-numbers.current {
8083
+ background-color: #54595f;
8084
+ color: #fff;
8085
+ outline: none;
8086
+ }
8087
+
8088
+ .premium-woocommerce .premium-loading-feed,
8089
+ .premium-woo-quick-view-loader .premium-loading-feed {
8090
+ display: block;
8091
+ position: absolute;
8092
+ width: 100%;
8093
+ height: 100%;
8094
+ top: 0px;
8095
+ right: 0px;
8096
+ bottom: 0px;
8097
+ left: 0px;
8098
+ background: rgba(255, 255, 255, 0.2);
8099
+ -js-display: flex;
8100
+ display: -webkit-box;
8101
+ display: -webkit-flex;
8102
+ display: -moz-box;
8103
+ display: -ms-flexbox;
8104
+ display: flex;
8105
+ -webkit-box-align: center;
8106
+ -webkit-align-items: center;
8107
+ -moz-box-align: center;
8108
+ -ms-flex-align: center;
8109
+ align-items: center;
8110
+ }
8111
+
8112
+ /**
8113
+ * Image Hover Effects
8114
+ */
8115
+ .premium-woocommerce .woocommerce-loop-product__link img {
8116
+ -webkit-transition: all 0.3s ease-in-out;
8117
+ transition: all 0.3s ease-in-out;
8118
+ }
8119
+
8120
+ .premium-woo-product__hover-zoomout .woocommerce-loop-product__link img {
8121
+ -webkit-transform: scale(1.2);
8122
+ -ms-transform: scale(1.2);
8123
+ transform: scale(1.2);
8124
+ }
8125
+
8126
+ .premium-woo-product__hover-zoomout li.product:hover .woocommerce-loop-product__link img {
8127
+ -webkit-transform: none;
8128
+ -ms-transform: none;
8129
+ transform: none;
8130
+ }
8131
+
8132
+ .premium-woo-product__hover-zoomin .woocommerce-loop-product__link img {
8133
+ -webkit-transform: none;
8134
+ -ms-transform: none;
8135
+ transform: none;
8136
+ }
8137
+
8138
+ .premium-woo-product__hover-zoomin li.product:hover .woocommerce-loop-product__link img {
8139
+ -webkit-transform: scale(1.2);
8140
+ -ms-transform: scale(1.2);
8141
+ transform: scale(1.2);
8142
+ }
8143
+
8144
+ .premium-woo-product__hover-gray .woocommerce-loop-product__link img {
8145
+ -webkit-filter: grayscale(100%);
8146
+ filter: grayscale(100%);
8147
+ }
8148
+
8149
+ .premium-woo-product__hover-gray li.product:hover .woocommerce-loop-product__link img {
8150
+ -webkit-filter: grayscale(0%);
8151
+ filter: grayscale(0%);
8152
+ }
8153
+
8154
+ .premium-woo-product__hover-sepia .woocommerce-loop-product__link img {
8155
+ -webkit-filter: sepia(30%);
8156
+ filter: sepia(30%);
8157
+ }
8158
+
8159
+ .premium-woo-product__hover-sepia li.product:hover .woocommerce-loop-product__link img {
8160
+ -webkit-filter: sepia(0%);
8161
+ filter: sepia(0%);
8162
+ }
8163
+
8164
+ .premium-woo-product__hover-bright .woocommerce-loop-product__link img {
8165
+ -webkit-filter: brightness(1);
8166
+ filter: brightness(1);
8167
+ }
8168
+
8169
+ .premium-woo-product__hover-bright li.product:hover .woocommerce-loop-product__link img {
8170
+ -webkit-filter: brightness(1.2);
8171
+ filter: brightness(1.2);
8172
+ }
8173
+
8174
+ .premium-woo-product__hover-trans .woocommerce-loop-product__link img {
8175
+ -webkit-transform: translateX(15px) scale(1.1);
8176
+ -ms-transform: translateX(15px) scale(1.1);
8177
+ transform: translateX(15px) scale(1.1);
8178
+ }
8179
+
8180
+ .premium-woo-product__hover-trans li.product:hover .woocommerce-loop-product__link img {
8181
+ -webkit-transform: translateX(0px) scale(1.1);
8182
+ -ms-transform: translateX(0px) scale(1.1);
8183
+ transform: translateX(0px) scale(1.1);
8184
+ }
8185
+
8186
+ .premium-woo-product__hover-scale li.product:hover .woocommerce-loop-product__link img {
8187
+ -webkit-transform: scaleX(1.3) scaleY(1.3) rotate(-5deg);
8188
+ -ms-transform: scaleX(1.3) scaleY(1.3) rotate(-5deg);
8189
+ transform: scaleX(1.3) scaleY(1.3) rotate(-5deg);
8190
+ }
8191
+
8192
+ .premium-woocommerce .premium-woo-product__on_hover {
8193
+ position: absolute;
8194
+ top: 0;
8195
+ left: 0;
8196
+ bottom: 0;
8197
+ right: 0;
8198
+ height: 100%;
8199
+ opacity: 0;
8200
+ }
8201
+
8202
+ .premium-woo-product__hover-swap li.product:hover .premium-woo-product__on_hover {
8203
+ opacity: 1;
8204
+ }
8205
+
8206
+ .premium-woo-skin-grid-1 .premium-woo-qv-btn,
8207
+ .premium-woo-skin-grid-3 .premium-woo-qv-btn,
8208
+ .premium-woo-skin-grid-4 .premium-woo-qv-btn {
8209
+ position: absolute;
8210
+ bottom: 0;
8211
+ right: 0;
8212
+ width: 100%;
8213
+ text-align: center;
8214
+ padding: 5px;
8215
+ background: rgba(2, 2, 2, 0.5);
8216
+ color: #fff;
8217
+ -webkit-transition: all 0.3s ease-in-out;
8218
+ transition: all 0.3s ease-in-out;
8219
+ z-index: 2;
8220
+ -webkit-transform: translateY(100%);
8221
+ -ms-transform: translateY(100%);
8222
+ transform: translateY(100%);
8223
+ }
8224
+
8225
+ .premium-woo-skin-grid-4 .premium-woo-qv-btn {
8226
+ -webkit-transition-delay: 0.1s;
8227
+ transition-delay: 0.1s;
8228
+ }
8229
+
8230
+ .premium-woo-skin-grid-1 .premium-woo-qv-icon,
8231
+ .premium-woo-skin-grid-3 .premium-woo-qv-icon,
8232
+ .premium-woo-skin-grid-4 .premium-woo-qv-icon,
8233
+ .premium-woo-skin-grid-6 .premium-woo-qv-icon {
8234
+ margin-right: 0.5em;
8235
+ }
8236
+
8237
+ .premium-woo-product-thumbnail:hover .premium-woo-qv-btn-translate {
8238
+ -webkit-transform: translateY(0);
8239
+ -ms-transform: translateY(0);
8240
+ transform: translateY(0);
8241
+ }
8242
+
8243
+ .premium-woo-product-wrapper .premium-woo-qv-data {
8244
+ position: absolute;
8245
+ top: 0;
8246
+ right: 0;
8247
+ width: 100%;
8248
+ height: 100%;
8249
+ z-index: 1;
8250
+ overflow: hidden;
8251
+ cursor: pointer;
8252
+ }
8253
+
8254
+ /**
8255
+ * Skin 1,4
8256
+ */
8257
+ .premium-woo-skin-grid-1 .premium-woo-product-actions-wrapper,
8258
+ .premium-woo-skin-grid-4 .premium-woo-product-actions-wrapper {
8259
+ position: absolute;
8260
+ top: 0.7em;
8261
+ left: 1em;
8262
+ -webkit-transform: translate3d(-15px, 0, 0);
8263
+ transform: translate3d(-15px, 0, 0);
8264
+ -webkit-transition: all 0.3s ease-in-out;
8265
+ transition: all 0.3s ease-in-out;
8266
+ opacity: 0;
8267
+ z-index: 9;
8268
+ }
8269
+
8270
+ .premium-woocommerce .premium-woo-product-actions-wrapper .premium-woo-cart-btn {
8271
+ position: relative;
8272
+ display: block;
8273
+ margin: 0 0 3px;
8274
+ background: #fff;
8275
+ text-align: center;
8276
+ outline: 0;
8277
+ -webkit-transition: all 0.3s ease-in-out;
8278
+ transition: all 0.3s ease-in-out;
8279
+ }
8280
+
8281
+ .premium-woocommerce .premium-woo-product-actions-wrapper .premium-woo-add-cart-icon {
8282
+ display: block;
8283
+ color: #54595f;
8284
+ width: 30px;
8285
+ line-height: 30px;
8286
+ height: 30px;
8287
+ cursor: pointer;
8288
+ -webkit-transition: all 0.3s ease-in-out;
8289
+ transition: all 0.3s ease-in-out;
8290
+ }
8291
+
8292
+ .premium-woo-skin-grid-1 li.product:hover .premium-woo-product-actions-wrapper,
8293
+ .premium-woo-skin-grid-4 li.product:hover .premium-woo-product-actions-wrapper {
8294
+ -webkit-transform: translate3d(-5px, 0, 0);
8295
+ transform: translate3d(-5px, 0, 0);
8296
+ opacity: 1;
8297
+ }
8298
+
8299
+ .premium-woocommerce .premium-woo-cart-btn.adding .premium-woo-add-cart-icon {
8300
+ -webkit-animation: spin 2s linear infinite;
8301
+ animation: spin 2s linear infinite;
8302
+ }
8303
+
8304
+ .premium-woocommerce .premium-woo-cart-btn.adding .premium-woo-add-cart-icon::before {
8305
+ content: "\f013";
8306
+ }
8307
+
8308
+ .premium-woocommerce .premium-woo-cart-btn.added .premium-woo-add-cart-icon::before {
8309
+ content: "\f00c";
8310
+ }
8311
+
8312
+ /**
8313
+ * Skin 2
8314
+ */
8315
+ .premium-woo-skin-grid-2 li.product .premium-woo-products-details-wrap {
8316
+ position: absolute;
8317
+ background: #fff;
8318
+ bottom: 0;
8319
+ right: 0;
8320
+ width: 100%;
8321
+ z-index: 2;
8322
+ padding: 0;
8323
+ opacity: 0;
8324
+ -webkit-transition: opacity 0.2s, -webkit-transform 0.4s;
8325
+ transition: opacity 0.2s, -webkit-transform 0.4s;
8326
+ transition: transform 0.4s, opacity 0.2s;
8327
+ transition: transform 0.4s, opacity 0.2s, -webkit-transform 0.4s;
8328
+ -webkit-transform: translateZ(0) translateY(5px);
8329
+ transform: translateZ(0) translateY(5px);
8330
+ }
8331
+
8332
+ .premium-woo-skin-grid-2 .premium-woo-product-details {
8333
+ padding: 15px 0;
8334
+ }
8335
+
8336
+ .premium-woo-skin-grid-2 li.product:hover .premium-woo-products-details-wrap {
8337
+ opacity: 1;
8338
+ -webkit-transform: translateZ(0) translateY(0);
8339
+ transform: translateZ(0) translateY(0);
8340
+ }
8341
+
8342
+ .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper {
8343
+ position: static;
8344
+ -js-display: flex;
8345
+ display: -webkit-box;
8346
+ display: -webkit-flex;
8347
+ display: -moz-box;
8348
+ display: -ms-flexbox;
8349
+ display: flex;
8350
+ -webkit-box-orient: horizontal;
8351
+ -webkit-box-direction: reverse;
8352
+ -webkit-flex-direction: row-reverse;
8353
+ -moz-box-orient: horizontal;
8354
+ -moz-box-direction: reverse;
8355
+ -ms-flex-direction: row-reverse;
8356
+ flex-direction: row-reverse;
8357
+ }
8358
+
8359
+ .premium-woo-skin-grid-2 .premium-woo-product-actions-wrapper>* {
8360
+ -webkit-box-flex: 1;
8361
+ -webkit-flex: 1;
8362
+ -moz-box-flex: 1;
8363
+ -ms-flex: 1;
8364
+ flex: 1;
8365
+ min-width: 50%;
8366
+ }
8367
+
8368
+ .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper .button {
8369
+ -js-display: flex;
8370
+ display: -webkit-box;
8371
+ display: -webkit-flex;
8372
+ display: -moz-box;
8373
+ display: -ms-flexbox;
8374
+ display: flex;
8375
+ margin: 0;
8376
+ text-align: center;
8377
+ -webkit-box-pack: center;
8378
+ -webkit-justify-content: center;
8379
+ -moz-box-pack: center;
8380
+ -ms-flex-pack: center;
8381
+ justify-content: center;
8382
+ -webkit-box-align: center;
8383
+ -webkit-align-items: center;
8384
+ -moz-box-align: center;
8385
+ -ms-flex-align: center;
8386
+ align-items: center;
8387
+ }
8388
+
8389
+ .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper .premium-woo-qv-btn {
8390
+ background-color: #54595f;
8391
+ }
8392
+
8393
+ /**
8394
+ * Skin 4
8395
+ */
8396
+ .premium-woo-skin-grid-4 li.product .premium-woo-products-details-wrap {
8397
+ position: absolute;
8398
+ right: 0;
8399
+ left: 0;
8400
+ top: 50%;
8401
+ -webkit-transform: scale(0.9) translateZ(0) translateY(-50%);
8402
+ transform: scale(0.9) translateZ(0) translateY(-50%);
8403
+ text-align: center;
8404
+ z-index: 2;
8405
+ opacity: 0;
8406
+ -webkit-transition: opacity 0.5s, -webkit-transform 0.3s;
8407
+ transition: opacity 0.5s, -webkit-transform 0.3s;
8408
+ transition: opacity 0.5s, transform 0.3s;
8409
+ transition: opacity 0.5s, transform 0.3s, -webkit-transform 0.3s;
8410
+ }
8411
+
8412
+ .premium-woo-skin-grid-4 li.product .premium-woo-product-overlay,
8413
+ .premium-woo-skin-grid-8 li.product .premium-woo-product-overlay {
8414
+ position: absolute;
8415
+ top: 0;
8416
+ right: 0;
8417
+ width: 100%;
8418
+ height: 100%;
8419
+ opacity: 0;
8420
+ visibility: hidden;
8421
+ background-color: rgba(27, 27, 23, 0.3);
8422
+ -webkit-transition: all 0.25s ease-in-out;
8423
+ transition: all 0.25s ease-in-out;
8424
+ }
8425
+
8426
+ .premium-woo-skin-grid-4 li.product:hover .premium-woo-product-overlay,
8427
+ .premium-woo-skin-grid-8 li.product:hover .premium-woo-product-overlay {
8428
+ opacity: 1;
8429
+ visibility: visible;
8430
+ z-index: 1;
8431
+ }
8432
+
8433
+ .premium-woo-skin-grid-4 li.product:hover .premium-woo-products-details-wrap {
8434
+ -webkit-transform: scale(1) translateZ(0) translateY(-50%);
8435
+ transform: scale(1) translateZ(0) translateY(-50%);
8436
+ opacity: 1;
8437
+ }
8438
+
8439
+ /**
8440
+ * Skin 5
8441
+ */
8442
+ .premium-woo-skin-grid-5 li.product .premium-woo-product-actions-wrapper {
8443
+ -js-display: flex;
8444
+ display: -webkit-box;
8445
+ display: -webkit-flex;
8446
+ display: -moz-box;
8447
+ display: -ms-flexbox;
8448
+ display: flex;
8449
+ }
8450
+
8451
+ .premium-woo-skin-grid-5 li.product .premium-woo-product-actions-wrapper .premium-woo-qv-btn {
8452
+ -js-display: flex;
8453
+ display: -webkit-box;
8454
+ display: -webkit-flex;
8455
+ display: -moz-box;
8456
+ display: -ms-flexbox;
8457
+ display: flex;
8458
+ -webkit-box-align: center;
8459
+ -webkit-align-items: center;
8460
+ -moz-box-align: center;
8461
+ -ms-flex-align: center;
8462
+ align-items: center;
8463
+ background-color: #54595f;
8464
+ padding: 10px;
8465
+ -webkit-transition: all 0.25s ease 0s;
8466
+ transition: all 0.25s ease 0s;
8467
+ }
8468
+
8469
+ .premium-woo-skin-grid-5 li.product .premium-woo-products-details-wrap {
8470
+ width: 75%;
8471
+ }
8472
+
8473
+ .premium-woo-skin-grid-5 .premium-woo-product-wrapper {
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-woo-product-align-right .premium-woo-skin-grid-5 .premium-woo-product-actions-wrapper {
8488
+ -webkit-box-pack: end;
8489
+ -webkit-justify-content: flex-end;
8490
+ -moz-box-pack: end;
8491
+ -ms-flex-pack: end;
8492
+ justify-content: flex-end;
8493
+ }
8494
+
8495
+ .premium-woo-product-align-center .premium-woo-skin-grid-5 .premium-woo-product-actions-wrapper {
8496
+ -webkit-box-pack: center;
8497
+ -webkit-justify-content: center;
8498
+ -moz-box-pack: center;
8499
+ -ms-flex-pack: center;
8500
+ justify-content: center;
8501
+ }
8502
+
8503
+ /**
8504
+ * Skin 6
8505
+ */
8506
+ .premium-woo-skin-grid-6 .premium-woo-qv-btn {
8507
+ position: absolute;
8508
+ top: 50%;
8509
+ right: 50%;
8510
+ min-width: 40%;
8511
+ text-align: center;
8512
+ padding: 5px;
8513
+ background: rgba(2, 2, 2, 0.5);
8514
+ color: #fff;
8515
+ -webkit-transform: translate(50%, -50%);
8516
+ -ms-transform: translate(50%, -50%);
8517
+ transform: translate(50%, -50%);
8518
+ opacity: 0;
8519
+ visibility: hidden;
8520
+ -webkit-transition: all 0.3s ease-in-out;
8521
+ transition: all 0.3s ease-in-out;
8522
+ cursor: pointer;
8523
+ z-index: 2;
8524
+ }
8525
+
8526
+ .premium-woo-skin-grid-6 li.product:hover .premium-woo-qv-btn {
8527
+ opacity: 1;
8528
+ visibility: visible;
8529
+ }
8530
+
8531
+ .premium-woo-product-align-right .premium-woo-skin-grid-6 li.product .premium-woo-product-info .star-rating,
8532
+ .premium-woo-product-align-left .premium-woo-skin-grid-6 li.product .premium-woo-product-info .star-rating,
8533
+ .premium-woo-product-align-right .premium-woo-skin-grid-7 li.product .premium-woo-product-info .star-rating,
8534
+ .premium-woo-product-align-left .premium-woo-skin-grid-7 li.product .premium-woo-product-info .star-rating {
8535
+ margin: 0;
8536
+ }
8537
+
8538
+ .premium-woo-skin-grid-6 li.product .premium-woo-product-info {
8539
+ -js-display: flex;
8540
+ display: -webkit-box;
8541
+ display: -webkit-flex;
8542
+ display: -moz-box;
8543
+ display: -ms-flexbox;
8544
+ display: flex;
8545
+ -webkit-box-pack: justify;
8546
+ -webkit-justify-content: space-between;
8547
+ -moz-box-pack: justify;
8548
+ -ms-flex-pack: justify;
8549
+ justify-content: space-between;
8550
+ }
8551
+
8552
+ .premium-woo-product-align-center .premium-woocommerce li.product .premium-woo-product-info {
8553
+ -webkit-box-orient: vertical;
8554
+ -webkit-box-direction: normal;
8555
+ -webkit-flex-direction: column;
8556
+ -moz-box-orient: vertical;
8557
+ -moz-box-direction: normal;
8558
+ -ms-flex-direction: column;
8559
+ flex-direction: column;
8560
+ }
8561
+
8562
+ .premium-woo-product-align-right .premium-woocommerce li.product .premium-woo-product-info {
8563
+ -webkit-box-orient: horizontal;
8564
+ -webkit-box-direction: reverse;
8565
+ -webkit-flex-direction: row-reverse;
8566
+ -moz-box-orient: horizontal;
8567
+ -moz-box-direction: reverse;
8568
+ -ms-flex-direction: row-reverse;
8569
+ flex-direction: row-reverse;
8570
+ }
8571
+
8572
+ .premium-woo-skin-grid-6 li.product .premium-woo-product-gallery-images {
8573
+ -js-display: flex;
8574
+ display: -webkit-box;
8575
+ display: -webkit-flex;
8576
+ display: -moz-box;
8577
+ display: -ms-flexbox;
8578
+ display: flex;
8579
+ position: absolute;
8580
+ bottom: 10px;
8581
+ width: 100%;
8582
+ -webkit-box-pack: center;
8583
+ -webkit-justify-content: center;
8584
+ -moz-box-pack: center;
8585
+ -ms-flex-pack: center;
8586
+ justify-content: center;
8587
+ }
8588
+
8589
+ .premium-woo-product-gallery-images .premium-woo-product__gallery_image {
8590
+ width: 20%;
8591
+ margin: 0 0.2em;
8592
+ border: 2px solid #aaa;
8593
+ cursor: pointer;
8594
+ }
8595
+
8596
+ /**
8597
+ * Metro
8598
+ */
8599
+ /*.premium-woo-grid-style1 ul.products li.product {
8600
+ width: 25%;
8601
+ }*/
8602
+ .premium-woo-products-metro li.product .premium-woo-product-thumbnail img,
8603
+ .premium-woo-products-metro li.product .premium-woo-product-wrapper,
8604
+ .premium-woo-products-metro li.product .premium-woo-product-thumbnail,
8605
+ .premium-woo-products-metro li.product .woocommerce-LoopProduct-link {
8606
+ height: 100%;
8607
+ }
8608
+
8609
+ .premium-woo-products-metro ul.products li.product {
8610
+ margin-bottom: 0;
8611
+ }
8612
+
8613
+ .premium-woo-products-metro li.product .premium-woo-product-thumbnail img {
8614
+ -o-object-fit: cover;
8615
+ object-fit: cover;
8616
+ }
8617
+
8618
+ /*
8619
+ * Carousel
8620
+ */
8621
+ .premium-woocommerce:not(.premium-woo-skin-grid-7) .slick-arrow {
8622
+ -webkit-border-radius: 50%;
8623
+ border-radius: 50%;
8624
+ }
8625
+
8626
+ .premium-woocommerce ul.slick-dots {
8627
+ width: 100%;
8628
+ }
8629
+
8630
+ /*
8631
+ * Quick View Html/body
8632
+ */
8633
+ html.premium-woo-qv-opened,
8634
+ html.premium-woo-qv-opened body {
8635
+ overflow: hidden;
8636
+ }
8637
+
8638
+ /**
8639
+ * Quick View Modal
8640
+ */
8641
+ .premium-woo-quick-view-back {
8642
+ position: fixed;
8643
+ visibility: hidden;
8644
+ overflow: hidden;
8645
+ background: rgba(2, 2, 2, 0.5);
8646
+ opacity: 0;
8647
+ -webkit-transition: opacity 0.25s;
8648
+ transition: opacity 0.25s;
8649
+ z-index: 999;
8650
+ }
8651
+
8652
+ .premium-woo-quick-view-active {
8653
+ top: 0;
8654
+ right: 0;
8655
+ width: 100%;
8656
+ height: 100%;
8657
+ opacity: 1;
8658
+ visibility: visible;
8659
+ }
8660
+
8661
+ #premium-woo-quick-view-modal {
8662
+ position: fixed;
8663
+ visibility: hidden;
8664
+ opacity: 0;
8665
+ top: 0;
8666
+ right: 0;
8667
+ width: 100%;
8668
+ height: 100%;
8669
+ z-index: 1400;
8670
+ text-align: center;
8671
+ -webkit-transition: all 0.3s;
8672
+ transition: all 0.3s;
8673
+ overflow-x: hidden;
8674
+ overflow-y: auto;
8675
+ }
8676
+
8677
+ #premium-woo-quick-view-modal.active {
8678
+ visibility: visible;
8679
+ opacity: 1;
8680
+ }
8681
+
8682
+ #premium-woo-quick-view-modal.active .premium-woo-content-main {
8683
+ -webkit-transform: translateY(0);
8684
+ -ms-transform: translateY(0);
8685
+ transform: translateY(0);
8686
+ opacity: 1;
8687
+ width: 100%;
8688
+ }
8689
+
8690
+ #premium-woo-quick-view-modal .premium-woo-content-main-wrapper {
8691
+ position: absolute;
8692
+ width: 100%;
8693
+ height: 100%;
8694
+ top: 0;
8695
+ right: 0;
8696
+ text-align: center;
8697
+ padding: 30px;
8698
+ -js-display: flex;
8699
+ display: -webkit-box;
8700
+ display: -webkit-flex;
8701
+ display: -moz-box;
8702
+ display: -ms-flexbox;
8703
+ display: flex;
8704
+ -webkit-box-align: center;
8705
+ -webkit-align-items: center;
8706
+ -moz-box-align: center;
8707
+ -ms-flex-align: center;
8708
+ align-items: center;
8709
+ }
8710
+
8711
+ #premium-woo-quick-view-modal .premium-woo-content-main {
8712
+ position: relative;
8713
+ pointer-events: none;
8714
+ max-width: 100%;
8715
+ text-align: right;
8716
+ z-index: 1045;
8717
+ -webkit-transform: translateY(-30px);
8718
+ -ms-transform: translateY(-30px);
8719
+ transform: translateY(-30px);
8720
+ opacity: 0;
8721
+ -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
8722
+ transition: opacity 0.3s, -webkit-transform 0.5s;
8723
+ transition: transform 0.5s, opacity 0.3s;
8724
+ transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
8725
+ margin: 0 auto;
8726
+ }
8727
+
8728
+ #premium-woo-quick-view-modal .premium-woo-lightbox-content {
8729
+ position: relative;
8730
+ display: table;
8731
+ pointer-events: auto;
8732
+ background-color: #fff;
8733
+ max-width: 975px;
8734
+ margin: 20px auto;
8735
+ -webkit-transform: translateZ(0);
8736
+ transform: translateZ(0);
8737
+ -webkit-box-shadow: -3px 3px 20px 0 rgba(0, 0, 0, 0.15);
8738
+ box-shadow: -3px 3px 20px 0 rgba(0, 0, 0, 0.15);
8739
+ overflow: hidden;
8740
+ }
8741
+
8742
+ #premium-woo-quick-view-modal .summary {
8743
+ width: 50%;
8744
+ margin: 0;
8745
+ padding: 30px;
8746
+ float: right;
8747
+ -webkit-box-sizing: border-box;
8748
+ -moz-box-sizing: border-box;
8749
+ box-sizing: border-box;
8750
+ }
8751
+
8752
+ #premium-woo-quick-view-modal .summary .quantity {
8753
+ min-width: auto;
8754
+ }
8755
+
8756
+ #premium-woo-quick-view-modal .summary .quantity input.qty {
8757
+ width: 54px;
8758
+ -webkit-appearance: button;
8759
+ -moz-appearance: button;
8760
+ appearance: button;
8761
+ }
8762
+
8763
+ #premium-woo-quick-view-modal .summary .quantity input[type="number"]::-webkit-inner-spin-button,
8764
+ #premium-woo-quick-view-modal .summary .quantity input[type="number"]::-webkit-outer-spin-button {
8765
+ display: unset;
8766
+ }
8767
+
8768
+ #premium-woo-quick-view-modal .woocommerce-product-details__short-description p {
8769
+ margin: 0;
8770
+ }
8771
+
8772
+ #premium-woo-quick-view-close {
8773
+ position: absolute;
8774
+ font-size: 22px;
8775
+ top: 10px;
8776
+ left: 10px;
8777
+ width: 22px;
8778
+ height: 22px;
8779
+ line-height: 22px;
8780
+ opacity: 0.7;
8781
+ text-align: center;
8782
+ z-index: 2;
8783
+ color: #000;
8784
+ }
8785
+
8786
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider {
8787
+ position: relative;
8788
+ }
8789
+
8790
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider li {
8791
+ list-style: none;
8792
+ }
8793
+
8794
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav {
8795
+ margin: 0;
8796
+ padding: 0;
8797
+ width: 100%;
8798
+ position: absolute;
8799
+ bottom: 10px;
8800
+ text-align: center;
8801
+ direction: ltr;
8802
+ }
8803
+
8804
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li {
8805
+ margin: 0 6px;
8806
+ display: inline-block;
8807
+ vertical-align: middle;
8808
+ }
8809
+
8810
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a {
8811
+ width: 11px;
8812
+ height: 11px;
8813
+ display: block;
8814
+ background: #666;
8815
+ background: rgba(0, 0, 0, 0.5);
8816
+ cursor: pointer;
8817
+ text-indent: -9999px;
8818
+ -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
8819
+ box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
8820
+ -webkit-border-radius: 20px;
8821
+ border-radius: 20px;
8822
+ }
8823
+
8824
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a.flex-active {
8825
+ background: rgba(0, 0, 0, 0.9);
8826
+ cursor: default;
8827
+ }
8828
+
8829
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a:focus {
8830
+ outline: none;
8831
+ }
8832
+
8833
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider img {
8834
+ -o-object-fit: cover;
8835
+ object-fit: cover;
8836
+ }
8837
+
8838
+ #premium-woo-quick-view-content div.images {
8839
+ width: 50%;
8840
+ float: right;
8841
+ opacity: 1 !important;
8842
+ margin: 0;
8843
+ }
8844
+
8845
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav {
8846
+ margin: 0;
8847
+ padding: 0;
8848
+ list-style: none;
8849
+ direction: ltr;
8850
+ }
8851
+
8852
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav a {
8853
+ text-decoration: none;
8854
+ display: block;
8855
+ width: 14px;
8856
+ height: 32px;
8857
+ font-size: 32px;
8858
+ line-height: 32px;
8859
+ margin: -20px 0 0;
8860
+ position: absolute;
8861
+ top: 50%;
8862
+ z-index: 10;
8863
+ overflow: hidden;
8864
+ cursor: pointer;
8865
+ color: rgba(0, 0, 0, 0.8);
8866
+ text-shadow: -1px 1px 0 rgba(255, 255, 255, 0.3);
8867
+ -webkit-transition: all 0.3s ease-in-out;
8868
+ transition: all 0.3s ease-in-out;
8869
+ }
8870
+
8871
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next,
8872
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev {
8873
+ display: inline-block;
8874
+ font-family: "Font Awesome 5 Free";
8875
+ font-weight: 900;
8876
+ text-rendering: auto;
8877
+ -webkit-font-smoothing: antialiased;
8878
+ -moz-osx-font-smoothing: grayscale;
8879
+ }
8880
+
8881
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev {
8882
+ left: 10px;
8883
+ }
8884
+
8885
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next {
8886
+ right: 10px;
8887
+ }
8888
+
8889
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev::before {
8890
+ content: "\f104";
8891
+ }
8892
+
8893
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next::before {
8894
+ content: "\f105";
8895
+ }
8896
+
8897
+ .premium-woocommerce li.product .added_to_cart.wc-forward {
8898
+ display: none;
8899
+ }
8900
+
8901
+ .premium-woo-atc-button .add_to_cart_button span {
8902
+ -webkit-animation: spin 2s linear infinite;
8903
+ animation: spin 2s linear infinite;
8904
+ margin-right: 5px;
8905
+ vertical-align: baseline;
8906
+ }
8907
+
8908
+ @media (min-width: 545px) {
8909
+ #premium-woo-quick-view-content div.summary {
8910
+ content: "544";
8911
+ overflow-y: auto;
8912
+ }
8913
+ }
8914
+
8915
+ @media (max-width: 544px) {
8916
+ #premium-woo-quick-view-content .premium-woo-lightbox-content {
8917
+ display: block;
8918
+ }
8919
+
8920
+ #premium-woo-quick-view-content div.images,
8921
+ #premium-woo-quick-view-content div.summary {
8922
+ width: 100%;
8923
+ float: none;
8924
+ }
8925
  }
8926
  /*
8927
  * Common Title/Dual Heading
assets/frontend/css/premium-addons.css CHANGED
@@ -6,7688 +6,7685 @@
6
  font-weight: normal;
7
  font-style: normal;
8
  }
9
- /**************** Premium Banner ****************/
10
- /************************************************/
11
- .elementor-widget-premium-addon-banner {
12
- overflow: hidden; }
13
-
14
- .premium-banner-ib {
15
- display: block;
16
- position: relative;
17
- z-index: 1;
18
- overflow: hidden;
19
- margin: 0;
20
- text-align: center;
21
- -webkit-box-sizing: border-box;
22
- -moz-box-sizing: border-box;
23
- box-sizing: border-box; }
24
- .premium-banner-ib img {
25
- display: block;
26
- position: relative; }
27
-
28
- .premium-banner-img-wrap {
29
- -js-display: flex;
30
- display: -webkit-box;
31
- display: -webkit-flex;
32
- display: -moz-box;
33
- display: -ms-flexbox;
34
- display: flex;
35
- height: 100%; }
36
- .premium-banner-img-wrap .premium-banner-ib-img {
37
- -webkit-flex-shrink: 0;
38
- -ms-flex-negative: 0;
39
- flex-shrink: 0; }
40
-
41
- .premium-banner-ib-desc .premium-banner-read-more {
42
- z-index: 100; }
43
-
44
- .elementor-widget-premium-addon-banner .premium-banner-ib-title {
45
- background: transparent; }
46
-
47
- .premium-banner-ib *,
48
- .premium-banner-ib .premium-banner-ib-desc {
49
- -webkit-box-sizing: border-box;
50
- -moz-box-sizing: border-box;
51
- box-sizing: border-box; }
52
-
53
- .premium-banner-ib img {
54
- min-width: 100%;
55
- max-width: 100%;
56
- -webkit-transition: opacity 0.35s;
57
- transition: opacity 0.35s; }
58
-
59
- .premium-banner-ib .premium-banner-ib-desc {
60
- padding: 15px;
61
- -webkit-backface-visibility: hidden;
62
- backface-visibility: hidden;
63
- -webkit-box-sizing: border-box;
64
- -moz-box-sizing: border-box;
65
- box-sizing: border-box;
66
- position: absolute;
67
- top: 0;
68
- left: 0;
69
- width: 100%;
70
- height: 100%; }
71
-
72
- .premium-banner-ib .premium-banner-ib-link {
73
- position: absolute;
74
- top: 0;
75
- left: 0;
76
- width: 100%;
77
- height: 100%;
78
- z-index: 1000;
79
- text-indent: 200%;
80
- white-space: nowrap;
81
- font-size: 0;
82
- opacity: 0; }
83
-
84
- .premium-banner-ib a.premium-banner-ib-link {
85
- display: block;
86
- background: 0 0; }
87
-
88
- .premium-banner-animation1 img {
89
- width: -webkit-calc(100% + 50px) !important;
90
- width: calc(100% + 50px) !important;
91
- max-width: -webkit-calc(100% + 50px) !important;
92
- max-width: calc(100% + 50px) !important;
93
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
94
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
95
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
96
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
97
- -webkit-transform: translate3d(-40px, 0, 0);
98
- transform: translate3d(-40px, 0, 0); }
99
-
100
- .premium-banner-animation2 .premium-banner-ib-title {
101
- padding: 15px; }
102
-
103
- .premium-banner-animation1 .premium-banner-ib-desc {
104
- top: auto;
105
- bottom: 0;
106
- min-height: 25%;
107
- height: auto;
108
- max-height: 100%;
109
- text-align: left; }
110
-
111
- .premium-banner-animation1 .premium-banner-ib-content,
112
- .premium-banner-animation1 .premium-banner-ib-title,
113
- .premium-banner-animation1 .premium-banner-read-more {
114
- -webkit-transform: translate3d(0, 40px, 0);
115
- transform: translate3d(0, 40px, 0);
116
- -webkit-transition-delay: 0.05s;
117
- transition-delay: 0.05s;
118
- -webkit-transition-duration: 0.35s;
119
- transition-duration: 0.35s; }
120
-
121
- .premium-banner-animation1 .premium-banner-ib-title {
122
- -webkit-transition: -webkit-transform 0.35s;
123
- transition: -webkit-transform 0.35s;
124
- transition: transform 0.35s;
125
- transition: transform 0.35s, -webkit-transform 0.35s; }
126
-
127
- .premium-banner-animation1 .premium-banner-ib-content,
128
- .premium-banner-animation1 .premium-banner-read-more {
129
- margin-top: 10px;
130
- opacity: 0;
131
- -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
132
- transition: opacity 0.2s, -webkit-transform 0.35s;
133
- transition: opacity 0.2s, transform 0.35s;
134
- transition: opacity 0.2s, transform 0.35s, -webkit-transform 0.35s; }
135
-
136
- .premium-banner-animation1:hover .premium-banner-ib-content,
137
- .premium-banner-animation1.active .premium-banner-ib-content,
138
- .premium-banner-animation1:hover .premium-banner-read-more,
139
- .premium-banner-animation1.active .premium-banner-read-more {
140
- opacity: 1;
141
- -webkit-transition-delay: 0.05s;
142
- transition-delay: 0.05s;
143
- -webkit-transition-duration: 0.35s;
144
- transition-duration: 0.35s; }
145
-
146
- .premium-banner-animation1:hover .premium-banner-ib-content,
147
- .premium-banner-animation1.active .premium-banner-ib-content,
148
- .premium-banner-animation1:hover .premium-banner-read-more,
149
- .premium-banner-animation1.active .premium-banner-read-more,
150
- .premium-banner-animation1:hover .premium-banner-ib-title,
151
- .premium-banner-animation1.active .premium-banner-ib-title,
152
- .premium-banner-animation1:hover img,
153
- .premium-banner-animation1.active img {
154
- -webkit-transform: translate3d(0, 0, 0);
155
- transform: translate3d(0, 0, 0);
156
- -webkit-transition-delay: 0.05s;
157
- transition-delay: 0.05s;
158
- -webkit-transition-duration: 0.35s;
159
- transition-duration: 0.35s; }
160
-
161
- .premium-banner-animation1.zoomout img,
162
- .premium-banner-animation1.scale img {
163
- -webkit-transform: translate3d(-40px, 0, 0) scale(1.1);
164
- transform: translate3d(-40px, 0, 0) scale(1.1); }
165
-
166
- .premium-banner-ib.sepia img {
167
- -webkit-filter: sepia(30%);
168
- filter: sepia(30%); }
169
-
170
- .premium-banner-ib.bright img {
171
- -webkit-filter: brightness(1);
172
- filter: brightness(1); }
173
-
174
- .premium-banner-ib.sepia:hover img {
175
- -webkit-filter: sepia(0%);
176
- filter: sepia(0%); }
177
-
178
- .premium-banner-ib.bright:hover img {
179
- -webkit-filter: brightness(1.2);
180
- filter: brightness(1.2); }
181
-
182
- .premium-banner-animation1.premium-banner-min-height img,
183
- .premium-banner-animation2.premium-banner-min-height img,
184
- .premium-banner-animation4.premium-banner-min-height img,
185
- .premium-banner-animation5.premium-banner-min-height img,
186
- .premium-banner-animation6.premium-banner-min-height img,
187
- .premium-banner-animation13.premium-banner-min-height img {
188
- height: auto; }
189
-
190
- .premium-banner-animation2 img {
191
- width: 100%; }
192
-
193
- .premium-banner-animation2 .premium-banner-ib-desc::before {
194
- position: absolute;
195
- content: "";
196
- top: 0;
197
- left: 0;
198
- width: 100%;
199
- height: 100%;
200
- opacity: 0;
201
- -webkit-transform: translate3d(0, 50%, 0);
202
- transform: translate3d(0, 50%, 0); }
203
-
204
- .premium-banner-animation2 .premium-banner-ib-title {
205
- position: absolute;
206
- top: 50%;
207
- left: 0;
208
- width: 100%;
209
- -webkit-transition: color 0.35s, -webkit-transform 0.35s;
210
- transition: color 0.35s, -webkit-transform 0.35s;
211
- transition: transform 0.35s, color 0.35s;
212
- transition: transform 0.35s, color 0.35s, -webkit-transform 0.35s;
213
- -webkit-transform: translate3d(0, -50%, 0);
214
- transform: translate3d(0, -50%, 0); }
215
-
216
- .premium-banner-animation2 .premium-banner-ib-content,
217
- .premium-banner-animation2 .premium-banner-read-more,
218
- .premium-banner-animation2 .premium-banner-ib-desc::before {
219
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
220
- transition: opacity 0.35s, -webkit-transform 0.35s;
221
- transition: opacity 0.35s, transform 0.35s;
222
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
223
-
224
- .premium-banner-animation2 .premium-banner-ib-content,
225
- .premium-banner-animation2 .premium-banner-read-more {
226
- position: absolute;
227
- bottom: 0;
228
- left: 0;
229
- padding: 15px;
230
- width: 100%;
231
- max-height: 50%;
232
- opacity: 0;
233
- -webkit-transform: translate3d(0, 10px, 0);
234
- transform: translate3d(0, 10px, 0); }
235
-
236
- .premium-banner-animation2:hover .premium-banner-ib-title,
237
- .premium-banner-animation2.active .premium-banner-ib-title {
238
- -webkit-transform: translate3d(0, -40px, 0);
239
- transform: translate3d(0, -40px, 0); }
240
-
241
- .premium-banner-animation2:hover .premium-banner-read-more,
242
- .premium-banner-animation2.active .premium-banner-read-more,
243
- .premium-banner-animation2:hover .premium-banner-ib-desc::before,
244
- .premium-banner-animation2.active .premium-banner-ib-desc::before {
245
- opacity: 1;
246
- -webkit-transform: translate3d(0, 0, 0);
247
- transform: translate3d(0, 0, 0); }
248
-
249
- .premium-banner-animation2:hover .premium-banner-ib-content,
250
- .premium-banner-animation2.active .premium-banner-ib-content {
251
- opacity: 1;
252
- -webkit-transform: translate3d(0, -30px, 0);
253
- transform: translate3d(0, -30px, 0); }
254
-
255
- .premium-banner-animation3 .premium-banner-ib-title {
256
- position: absolute;
257
- bottom: 0;
258
- left: 0;
259
- padding: 15px;
260
- width: 100%;
261
- text-align: left;
262
- -webkit-transform: translate3d(0, -30px, 0);
263
- transform: translate3d(0, -30px, 0); }
264
-
265
- .premium-banner-animation3 .premium-banner-ib-desc::before,
266
- .premium-banner-animation3 .premium-banner-ib-title {
267
- -webkit-transition: -webkit-transform 0.35s;
268
- transition: -webkit-transform 0.35s;
269
- transition: transform 0.35s;
270
- transition: transform 0.35s, -webkit-transform 0.35s; }
271
-
272
- .premium-banner-animation3:hover .premium-banner-ib-desc::before,
273
- .premium-banner-animation3.active .premium-banner-ib-desc::before,
274
- .premium-banner-animation3:hover .premium-banner-ib-title,
275
- .premium-banner-animation3.active .premium-banner-ib-title {
276
- opacity: 1;
277
- -webkit-transform: translate3d(0, 0, 0);
278
- transform: translate3d(0, 0, 0); }
279
-
280
- .premium-banner-animation3 .premium-banner-ib-content {
281
- max-height: -webkit-calc(100% - 60px - 1.5em);
282
- max-height: calc(100% - 60px - 1.5em);
283
- overflow: hidden; }
284
-
285
- .premium-banner-animation4 img {
286
- width: -webkit-calc(100% + 40px) !important;
287
- width: calc(100% + 40px) !important;
288
- max-width: -webkit-calc(100% + 40px) !important;
289
- max-width: calc(100% + 40px) !important; }
290
-
291
- .premium-banner-animation4 .premium-banner-ib-desc {
292
- padding: 30px; }
293
- .premium-banner-animation4 .premium-banner-ib-desc::after {
294
- position: absolute;
295
- content: "";
296
- opacity: 0; }
297
- .premium-banner-animation4 .premium-banner-ib-desc::before {
298
- position: absolute;
299
- content: "";
300
- opacity: 0;
301
- top: 50px;
302
- right: 30px;
303
- bottom: 50px;
304
- left: 30px;
305
- border-top: 1px solid #fff;
306
- border-bottom: 1px solid #fff;
307
- -webkit-transform: scale(0, 1);
308
- -ms-transform: scale(0, 1);
309
- transform: scale(0, 1);
310
- -webkit-transform-origin: 0 0;
311
- -ms-transform-origin: 0 0;
312
- transform-origin: 0 0; }
313
- .premium-banner-animation4 .premium-banner-ib-desc::after {
314
- top: 30px;
315
- right: 50px;
316
- bottom: 30px;
317
- left: 50px;
318
- border-right: 1px solid #fff;
319
- border-left: 1px solid #fff;
320
- -webkit-transform: scale(1, 0);
321
- -ms-transform: scale(1, 0);
322
- transform: scale(1, 0);
323
- -webkit-transform-origin: 100% 0;
324
- -ms-transform-origin: 100% 0;
325
- transform-origin: 100% 0; }
326
-
327
- .premium-banner-animation4 .premium-banner-ib-title {
328
- padding: 50px 30px 0 30px;
329
- -webkit-transition: -webkit-transform 0.35s;
330
- transition: -webkit-transform 0.35s;
331
- transition: transform 0.35s;
332
- transition: transform 0.35s, -webkit-transform 0.35s; }
333
-
334
- .premium-banner-animation4 .premium-banner-ib-content,
335
- .premium-banner-animation4 .premium-banner-read-more {
336
- padding: 10px 30px;
337
- opacity: 0;
338
- overflow: hidden;
339
- -webkit-transform: translate3d(0, -10px, 0);
340
- transform: translate3d(0, -10px, 0); }
341
-
342
- .premium-banner-animation4 .premium-banner-ib-title,
343
- .premium-banner-animation4 img {
344
- -webkit-transform: translate3d(-30px, 0, 0);
345
- transform: translate3d(-30px, 0, 0); }
346
-
347
- .premium-banner-animation4.zoomout img,
348
- .premium-banner-animation4.scale img {
349
- -webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
350
- transform: translate3d(-30px, 0, 0) scale(1.1); }
351
-
352
- .premium-banner-animation4 .premium-banner-ib-content,
353
- .premium-banner-animation4 .premium-banner-read-more {
354
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
355
- transition: opacity 0.35s, -webkit-transform 0.35s;
356
- transition: opacity 0.35s, transform 0.35s;
357
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
358
-
359
- .premium-banner-animation4 .premium-banner-ib-desc::after, .premium-banner-animation4 .premium-banner-ib-desc::before {
360
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
361
- transition: opacity 0.35s, -webkit-transform 0.35s;
362
- transition: opacity 0.35s, transform 0.35s;
363
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
364
-
365
- .premium-banner-animation4 img {
366
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
367
- transition: opacity 0.35s, -webkit-transform 0.35s;
368
- transition: opacity 0.35s, transform 0.35s;
369
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
370
-
371
- .premium-banner-animation4:hover .premium-banner-ib-desc::after,
372
- .premium-banner-animation4.active .premium-banner-ib-desc::after,
373
- .premium-banner-animation4:hover .premium-banner-ib-desc::before,
374
- .premium-banner-animation4.active .premium-banner-ib-desc::before {
375
- opacity: 1;
376
- -webkit-transform: scale(1);
377
- -ms-transform: scale(1);
378
- transform: scale(1); }
379
-
380
- .premium-banner-animation4:hover .premium-banner-ib-content,
381
- .premium-banner-animation4.active .premium-banner-ib-content,
382
- .premium-banner-animation4:hover .premium-banner-read-more,
383
- .premium-banner-animation4.active .premium-banner-read-more,
384
- .premium-banner-animation4:hover .premium-banner-ib-title,
385
- .premium-banner-animation4.active .premium-banner-ib-title {
386
- opacity: 1;
387
- -webkit-transform: translate3d(0, 0, 0);
388
- transform: translate3d(0, 0, 0); }
389
-
390
- .premium-banner-animation4:hover .premium-banner-ib-content,
391
- .premium-banner-animation4:hover .premium-banner-ib-desc::after,
392
- .premium-banner-animation4:hover .premium-banner-ib-title,
393
- .premium-banner-animation4:hover img {
394
- -webkit-transition-delay: 0.15s;
395
- transition-delay: 0.15s; }
396
-
397
- .premium-banner-animation5 .premium-banner-ib-desc {
398
- top: auto;
399
- bottom: 0;
400
- padding: 15px;
401
- height: auto;
402
- background: #f2f2f2;
403
- color: #3c4a50;
404
- -webkit-transition: -webkit-transform 0.35s;
405
- transition: -webkit-transform 0.35s;
406
- transition: transform 0.35s;
407
- transition: transform 0.35s, -webkit-transform 0.35s;
408
- -webkit-transform: translate3d(0, 100%, 0);
409
- transform: translate3d(0, 100%, 0); }
410
-
411
- .premium-banner-animation5 .premium-banner-ib-content {
412
- position: absolute;
413
- top: auto;
414
- bottom: 100%;
415
- left: 0;
416
- width: 100%;
417
- padding: 15px;
418
- opacity: 0;
419
- -webkit-transition: opacity 0.35s;
420
- transition: opacity 0.35s; }
421
-
422
- .premium-banner-animation5 .premium-banner-ib-title,
423
- .premium-banner-animation5 .premium-banner-read-more {
424
- -webkit-transition: -webkit-transform 0.35s;
425
- transition: -webkit-transform 0.35s;
426
- transition: transform 0.35s;
427
- transition: transform 0.35s, -webkit-transform 0.35s;
428
- -webkit-transform: translate3d(0, 200%, 0);
429
- transform: translate3d(0, 200%, 0);
430
- text-align: center; }
431
-
432
- .premium-banner-animation5 .premium-banner-ib-title {
433
- margin: 10px 0; }
434
-
435
- .premium-banner-animation5:hover .premium-banner-ib-content,
436
- .premium-banner-animation5.active .premium-banner-ib-content,
437
- .premium-banner-animation5:hover .premium-banner-ib-content *,
438
- .premium-banner-animation5.active .premium-banner-ib-content * {
439
- opacity: 1 !important;
440
- z-index: 99 !important;
441
- -webkit-backface-visibility: hidden !important;
442
- backface-visibility: hidden !important; }
443
-
444
- .premium-banner-animation5:hover .premium-banner-ib-desc,
445
- .premium-banner-animation5.active .premium-banner-ib-desc,
446
- .premium-banner-animation5:hover .premium-banner-ib-title,
447
- .premium-banner-animation5.active .premium-banner-ib-title,
448
- .premium-banner-animation5:hover .premium-banner-read-more,
449
- .premium-banner-animation5.active .premium-banner-read-more {
450
- -webkit-transform: translateY(0);
451
- -ms-transform: translateY(0);
452
- transform: translateY(0); }
453
-
454
- .premium-banner-animation5:hover .premium-banner-ib-title {
455
- -webkit-transition-delay: 0.05s;
456
- transition-delay: 0.05s; }
457
-
458
- .premium-banner-animation5 img {
459
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
460
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
461
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
462
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
463
-
464
- .premium-banner-animation2 img,
465
- .premium-banner-animation4 img,
466
- .premium-banner-animation6 img {
467
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
468
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
469
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
470
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
471
-
472
- .premium-banner-animation5.zoomout img,
473
- .premium-banner-animation5.scale img {
474
- -webkit-transform: scale(1.1);
475
- -ms-transform: scale(1.1);
476
- transform: scale(1.1); }
477
-
478
- .premium-banner-animation2.zoomout img,
479
- .premium-banner-animation2.scale img {
480
- -webkit-transform: scale(1.1);
481
- -ms-transform: scale(1.1);
482
- transform: scale(1.1); }
483
-
484
- .premium-banner-animation6.zoomout img,
485
- .premium-banner-animation6.scale img {
486
- -webkit-transform: scale(1.1);
487
- -ms-transform: scale(1.1);
488
- transform: scale(1.1); }
489
-
490
- .premium-banner-animation5.zoomin:hover img,
491
- .premium-banner-animation2.zoomin:hover img,
492
- .premium-banner-animation6.zoomin:hover img {
493
- -webkit-transform: scale(1.1);
494
- -ms-transform: scale(1.1);
495
- transform: scale(1.1); }
496
-
497
- .premium-banner-animation5.zoomout:hover img,
498
- .premium-banner-animation2.zoomout:hover img,
499
- .premium-banner-animation6.zoomout:hover img {
500
- -webkit-transform: scale(1);
501
- -ms-transform: scale(1);
502
- transform: scale(1); }
503
-
504
- .premium-banner-animation5.scale:hover img,
505
- .premium-banner-animation2.scale:hover img,
506
- .premium-banner-animation6.scale:hover img {
507
- -webkit-transform: scale(1.2) rotate(5deg);
508
- -ms-transform: scale(1.2) rotate(5deg);
509
- transform: scale(1.2) rotate(5deg); }
510
-
511
- .premium-banner-animation5.grayscale:hover img,
512
- .premium-banner-animation2.grayscale:hover img,
513
- .premium-banner-animation6.grayscale:hover img {
514
- -webkit-filter: grayscale(100%);
515
- filter: grayscale(100%); }
516
-
517
- .premium-banner-animation5.blur:hover img,
518
- .premium-banner-animation2.blur:hover img {
519
- -webkit-filter: blur(3px);
520
- filter: blur(3px); }
521
-
522
- .premium-banner-animation6.blur:hover img {
523
- -webkit-filter: blur(3px);
524
- filter: blur(3px); }
525
-
526
- .premium-banner-animation6 .premium-banner-ib-desc {
527
- padding: 45px; }
528
- .premium-banner-animation6 .premium-banner-ib-desc::before {
529
- position: absolute;
530
- content: "";
531
- top: 30px;
532
- right: 30px;
533
- bottom: 30px;
534
- left: 30px;
535
- border: 1px solid #fff; }
536
-
537
- .premium-banner-animation6 .premium-banner-ib-title {
538
- margin: 20px 0 10px;
539
- -webkit-transition: -webkit-transform 0.35s;
540
- transition: -webkit-transform 0.35s;
541
- transition: transform 0.35s;
542
- transition: transform 0.35s, -webkit-transform 0.35s;
543
- -webkit-transform: translate3d(0, 100%, 0);
544
- transform: translate3d(0, 100%, 0); }
545
-
546
- .premium-banner-animation6 .premium-banner-ib-content,
547
- .premium-banner-animation6 .premium-banner-read-more,
548
- .premium-banner-animation6 .premium-banner-ib-desc::before {
549
- opacity: 0;
550
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
551
- transition: opacity 0.35s, -webkit-transform 0.35s;
552
- transition: opacity 0.35s, transform 0.35s;
553
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
554
- -webkit-transform: scale(0);
555
- -ms-transform: scale(0);
556
- transform: scale(0); }
557
-
558
- .premium-banner-animation6 .premium-banner-read-more {
559
- margin-top: 10px; }
560
-
561
- .premium-banner-animation6:hover .premium-banner-ib-title,
562
- .premium-banner-animation6.active .premium-banner-ib-title {
563
- -webkit-transform: translate3d(0, 0, 0);
564
- transform: translate3d(0, 0, 0); }
565
-
566
- .premium-banner-animation6:hover .premium-banner-ib-content,
567
- .premium-banner-animation6.active .premium-banner-ib-content,
568
- .premium-banner-animation6:hover .premium-banner-read-more,
569
- .premium-banner-animation6.active .premium-banner-read-more,
570
- .premium-banner-animation6:hover .premium-banner-ib-desc::before,
571
- .premium-banner-animation6.active .premium-banner-ib-desc::before {
572
- opacity: 1;
573
- -webkit-transform: scale(1);
574
- -ms-transform: scale(1);
575
- transform: scale(1); }
576
-
577
- .premium-banner-animation12 .premium-banner-ib-desc::after {
578
- position: absolute;
579
- content: "";
580
- right: 30px;
581
- bottom: 30px;
582
- left: 30px;
583
- height: -webkit-calc(50% - 30px);
584
- height: calc(50% - 30px);
585
- border: 7px solid #fff;
586
- -webkit-transition: -webkit-transform 0.35s;
587
- transition: -webkit-transform 0.35s;
588
- transition: transform 0.35s;
589
- transition: transform 0.35s, -webkit-transform 0.35s;
590
- -webkit-transform: translate3d(0, -100%, 0);
591
- transform: translate3d(0, -100%, 0); }
592
-
593
- .premium-banner-animation12:hover .premium-banner-ib-desc::after,
594
- .premium-banner-animation12.active .premium-banner-ib-desc::after {
595
- -webkit-transform: translate3d(0, 0, 0);
596
- transform: translate3d(0, 0, 0); }
597
-
598
- .premium-banner-animation12 .premium-banner-ib-desc {
599
- padding: 45px;
600
- text-align: left; }
601
-
602
- .premium-banner-animation12 .premium-banner-ib-content {
603
- position: absolute;
604
- right: 60px;
605
- bottom: 60px;
606
- left: 60px;
607
- opacity: 0;
608
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
609
- transition: opacity 0.35s, -webkit-transform 0.35s;
610
- transition: opacity 0.35s, transform 0.35s;
611
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
612
- -webkit-transform: translate3d(0, -100px, 0);
613
- transform: translate3d(0, -100px, 0); }
614
-
615
- .premium-banner-animation12:hover .premium-banner-ib-content,
616
- .premium-banner-animation12.active .premium-banner-ib-content {
617
- opacity: 1;
618
- -webkit-transform: translate3d(0, 0, 0);
619
- transform: translate3d(0, 0, 0); }
620
-
621
- .premium-banner-animation13 img {
622
- width: -webkit-calc(100% + 20px) !important;
623
- width: calc(100% + 20px) !important;
624
- max-width: -webkit-calc(100% + 20px) !important;
625
- max-width: calc(100% + 20px) !important;
626
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
627
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
628
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
629
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
630
- -webkit-transform: translate3d(-10px, 0, 0);
631
- transform: translate3d(-10px, 0, 0);
632
- -webkit-backface-visibility: hidden;
633
- backface-visibility: hidden; }
634
-
635
- .premium-banner-animation13.zoomout img,
636
- .premium-banner-animation13.scale img {
637
- -webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
638
- transform: translate3d(-10px, 0, 0) scale(1.1); }
639
-
640
- .premium-banner-animation13.none:hover img {
641
- -webkit-transform: translate3d(0, 0, 0);
642
- transform: translate3d(0, 0, 0); }
643
-
644
- .premium-banner-animation1.none:hover img,
645
- .premium-banner-animation4.none:hover img {
646
- -webkit-transform: translate3d(0, 0, 0);
647
- transform: translate3d(0, 0, 0); }
648
-
649
- .premium-banner-animation13.zoomin:hover img,
650
- .premium-banner-animation1.zoomin:hover img,
651
- .premium-banner-animation4.zoomin:hover img,
652
- .premium-banner-animation8.zoomin:hover img,
653
- .premium-banner-animation7.zoomin:hover img,
654
- .premium-banner-animation9.zoomin:hover img,
655
- .premium-banner-animation10.zoomin:hover img,
656
- .premium-banner-animation11.zoomin:hover img {
657
- -webkit-transform: translate3d(0, 0, 0) scale(1.1);
658
- transform: translate3d(0, 0, 0) scale(1.1); }
659
-
660
- .premium-banner-animation13.zoomout:hover img,
661
- .premium-banner-animation1.zoomout:hover img,
662
- .premium-banner-animation4.zoomout:hover img,
663
- .premium-banner-animation8.zoomout:hover img,
664
- .premium-banner-animation7.zoomout:hover img,
665
- .premium-banner-animation9.zoomout:hover img,
666
- .premium-banner-animation10.zoomout:hover img,
667
- .premium-banner-animation11.zoomout:hover img {
668
- -webkit-transform: translate3d(0, 0, 0) scale(1);
669
- transform: translate3d(0, 0, 0) scale(1); }
670
-
671
- .premium-banner-animation13.scale:hover img,
672
- .premium-banner-animation1.scale:hover img,
673
- .premium-banner-animation4.scale:hover img,
674
- .premium-banner-animation8.scale:hover img,
675
- .premium-banner-animation7.scale:hover img,
676
- .premium-banner-animation9.scale:hover img,
677
- .premium-banner-animation10.scale:hover img,
678
- .premium-banner-animation11.scale:hover img {
679
- -webkit-transform: translate3d(0, 0, 0) scale(1.2) rotate(5deg);
680
- transform: translate3d(0, 0, 0) scale(1.2) rotate(5deg); }
681
-
682
- .premium-banner-animation13.grayscale:hover img,
683
- .premium-banner-animation1.grayscale:hover img,
684
- .premium-banner-animation4.grayscale:hover img,
685
- .premium-banner-animation8.grayscale:hover img,
686
- .premium-banner-animation7.grayscale:hover img,
687
- .premium-banner-animation9.grayscale:hover img,
688
- .premium-banner-animation10.grayscale:hover img,
689
- .premium-banner-animation11.grayscale:hover img {
690
- -webkit-transform: translate3d(0, 0, 0);
691
- transform: translate3d(0, 0, 0);
692
- -webkit-filter: grayscale(100%);
693
- filter: grayscale(100%); }
694
-
695
- .premium-banner-animation13.blur:hover img,
696
- .premium-banner-animation1.blur:hover img,
697
- .premium-banner-animation4.blur:hover,
698
- .premium-banner-animation8.blur:hover img,
699
- .premium-banner-animation7.blur:hover img,
700
- .premium-banner-animation9.blur:hover img,
701
- .premium-banner-animation10.blur:hover img,
702
- .premium-banner-animation11.blur:hover img {
703
- -webkit-transform: translate3d(0, 0, 0);
704
- transform: translate3d(0, 0, 0);
705
- -webkit-filter: blur(3px);
706
- filter: blur(3px); }
707
-
708
- .premium-banner-animation13 .premium-banner-ib-desc {
709
- text-align: left; }
710
-
711
- .premium-banner-animation13 .premium-banner-ib-title {
712
- position: relative;
713
- overflow: hidden;
714
- padding: 5px 0 10px; }
715
- .premium-banner-animation13 .premium-banner-ib-title::after {
716
- position: absolute;
717
- content: "";
718
- bottom: 0;
719
- left: 0;
720
- width: 100%;
721
- height: 2px;
722
- background: #fff;
723
- -webkit-transition: -webkit-transform 0.35s;
724
- transition: -webkit-transform 0.35s;
725
- transition: transform 0.35s;
726
- transition: transform 0.35s, -webkit-transform 0.35s;
727
- -webkit-transform: translate3d(-101%, 0, 0);
728
- transform: translate3d(-101%, 0, 0); }
729
-
730
- .premium-banner-animation13:hover .premium-banner-ib-title::after,
731
- .premium-banner-animation13.active .premium-banner-ib-title::after {
732
- -webkit-transform: translate3d(0, 0, 0);
733
- transform: translate3d(0, 0, 0); }
734
-
735
- .premium-banner-animation13 .premium-banner-ib-content,
736
- .premium-banner-animation13 .premium-banner-read-more {
737
- padding: 15px 0;
738
- opacity: 0;
739
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
740
- transition: opacity 0.35s, -webkit-transform 0.35s;
741
- transition: opacity 0.35s, transform 0.35s;
742
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
743
- -webkit-transform: translate3d(100%, 0, 0);
744
- transform: translate3d(100%, 0, 0); }
745
-
746
- .premium-banner-animation13:hover .premium-banner-ib-content,
747
- .premium-banner-animation13.active .premium-banner-ib-content,
748
- .premium-banner-animation13:hover .premium-banner-read-more,
749
- .premium-banner-animation13.active .premium-banner-read-more {
750
- opacity: 1;
751
- -webkit-transform: translate3d(0, 0, 0);
752
- transform: translate3d(0, 0, 0); }
753
-
754
- .premium-banner-ib.premium-banner-animation5 .premium-banner-toggle-size {
755
- left: 50%;
756
- width: auto !important;
757
- height: 100%;
758
- max-width: none;
759
- -webkit-transform: translateX(-50%);
760
- -ms-transform: translateX(-50%);
761
- transform: translateX(-50%); }
762
-
763
- .premium-banner-ib img {
764
- border: none;
765
- padding: 0;
766
- margin: 0; }
767
-
768
- .premium-banner-animation7 img {
769
- width: -webkit-calc(100% + 40px) !important;
770
- width: calc(100% + 40px) !important;
771
- max-width: -webkit-calc(100% + 40px) !important;
772
- max-width: calc(100% + 40px) !important;
773
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
774
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
775
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
776
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
777
-
778
- .premium-banner-animation7 .premium-banner-brlr {
779
- width: 7px; }
780
-
781
- .premium-banner-animation7 .premium-banner-brtb {
782
- height: 7px; }
783
-
784
- .premium-banner-animation7 .premium-banner-br {
785
- position: absolute;
786
- z-index: 1;
787
- background-color: white;
788
- -webkit-transition: all 0.3s ease-in-out;
789
- transition: all 0.3s ease-in-out;
790
- -webkit-transition-delay: 0.2s;
791
- transition-delay: 0.2s; }
792
-
793
- .premium-banner-animation7 .premium-banner-bleft {
794
- left: 30px;
795
- top: -webkit-calc(100% - 150px);
796
- top: calc(100% - 150px);
797
- height: 0; }
798
-
799
- .premium-banner-animation7 .premium-banner-bright {
800
- right: 30px;
801
- bottom: -webkit-calc(100% - 150px);
802
- bottom: calc(100% - 150px);
803
- height: 0; }
804
-
805
- .premium-banner-animation7 .premium-banner-bottom {
806
- right: -webkit-calc(100% - 150px);
807
- right: calc(100% - 150px);
808
- bottom: 30px;
809
- width: 0; }
810
-
811
- .premium-banner-animation7 .premium-banner-btop {
812
- left: -webkit-calc(100% - 150px);
813
- left: calc(100% - 150px);
814
- top: 30px;
815
- width: 0; }
816
-
817
- .premium-banner-animation7 .premium-banner-ib-desc {
818
- padding: 70px;
819
- display: table; }
820
- .premium-banner-animation7 .premium-banner-ib-desc .premium-banner-desc-centered {
821
- display: table-cell;
822
- vertical-align: middle; }
823
-
824
- .premium-banner-animation7 .premium-banner-ib-title {
825
- margin-top: 0; }
826
-
827
- .premium-banner-animation7 .premium-banner-ib-title,
828
- .premium-banner-animation7 img {
829
- -webkit-transform: translate3d(-30px, 0, 0);
830
- transform: translate3d(-30px, 0, 0); }
831
-
832
- .premium-banner-animation7.zoomout img,
833
- .premium-banner-animation7.scale img {
834
- -webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
835
- transform: translate3d(-30px, 0, 0) scale(1.1); }
836
-
837
- .premium-banner-animation7 .premium-banner-ib-content,
838
- .premium-banner-animation7 .premium-banner-read-more {
839
- margin-top: 10px; }
840
-
841
- .premium-banner-animation7 .premium-banner-ib-desc::after, .premium-banner-animation7 .premium-banner-ib-desc::before {
842
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
843
- transition: opacity 0.35s, -webkit-transform 0.35s;
844
- transition: opacity 0.35s, transform 0.35s;
845
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
846
-
847
- .premium-banner-animation7 .premium-banner-ib-title,
848
- .premium-banner-animation7 .premium-banner-ib-content,
849
- .premium-banner-animation7 .premium-banner-read-more {
850
- opacity: 0;
851
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
852
- transition: opacity 0.35s, -webkit-transform 0.35s;
853
- transition: opacity 0.35s, transform 0.35s;
854
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
855
-
856
- .premium-banner-animation7:hover .premium-banner-ib-content,
857
- .premium-banner-animation7.active .premium-banner-ib-content,
858
- .premium-banner-animation7:hover .premium-banner-read-more,
859
- .premium-banner-animation7.active .premium-banner-read-more,
860
- .premium-banner-animation7:hover .premium-banner-ib-title,
861
- .premium-banner-animation7.active .premium-banner-ib-title {
862
- opacity: 1;
863
- -webkit-transform: translate3d(0, 0, 0);
864
- transform: translate3d(0, 0, 0); }
865
-
866
- .premium-banner-animation7:hover .premium-banner-bleft, .premium-banner-animation7.active .premium-banner-bleft {
867
- top: 30px;
868
- height: 70px; }
869
-
870
- .premium-banner-animation7:hover .premium-banner-bright, .premium-banner-animation7.active .premium-banner-bright {
871
- bottom: 30px;
872
- height: 70px; }
873
-
874
- .premium-banner-animation7:hover .premium-banner-bottom, .premium-banner-animation7.active .premium-banner-bottom {
875
- right: 30px;
876
- width: 70px; }
877
-
878
- .premium-banner-animation7:hover .premium-banner-btop, .premium-banner-animation7.active .premium-banner-btop {
879
- left: 30px;
880
- width: 70px; }
881
-
882
- .premium-banner-animation7:hover .premium-banner-ib-content,
883
- .premium-banner-animation7:hover .premium-banner-read-more,
884
- .premium-banner-animation7:hover .premium-banner-ib-title,
885
- .premium-banner-animation7:hover img {
886
- -webkit-transition-delay: 0.15s;
887
- transition-delay: 0.15s; }
888
-
889
- .premium-banner-animation8 img {
890
- width: -webkit-calc(100% + 40px) !important;
891
- width: calc(100% + 40px) !important;
892
- max-width: -webkit-calc(100% + 40px) !important;
893
- max-width: calc(100% + 40px) !important;
894
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
895
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
896
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
897
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
898
-
899
- .premium-banner-animation8 .premium-banner-brlr {
900
- width: 7px; }
901
-
902
- .premium-banner-animation8 .premium-banner-brtb {
903
- height: 7px; }
904
-
905
- .premium-banner-animation8 .premium-banner-br {
906
- position: absolute;
907
- z-index: 1;
908
- background-color: white;
909
- -webkit-transition: all 0.3s ease-in-out;
910
- transition: all 0.3s ease-in-out;
911
- -webkit-transition-delay: 0.2s;
912
- transition-delay: 0.2s; }
913
-
914
- .premium-banner-animation8 .premium-banner-bleft {
915
- left: 30px;
916
- top: 50%;
917
- -webkit-transform: translateY(-50%);
918
- -ms-transform: translateY(-50%);
919
- transform: translateY(-50%);
920
- height: 0; }
921
-
922
- .premium-banner-animation8 .premium-banner-bright {
923
- right: 30px;
924
- top: 50%;
925
- -webkit-transform: translateY(-50%);
926
- -ms-transform: translateY(-50%);
927
- transform: translateY(-50%);
928
- height: 0; }
929
-
930
- .premium-banner-animation8 .premium-banner-bottom {
931
- left: 50%;
932
- -webkit-transform: translateX(-50%);
933
- -ms-transform: translateX(-50%);
934
- transform: translateX(-50%);
935
- bottom: 30px;
936
- width: 0; }
937
-
938
- .premium-banner-animation8 .premium-banner-btop {
939
- left: 50%;
940
- -webkit-transform: translateX(-50%);
941
- -ms-transform: translateX(-50%);
942
- transform: translateX(-50%);
943
- top: 30px;
944
- width: 0; }
945
-
946
- .premium-banner-animation8 .premium-banner-ib-desc {
947
- padding: 70px;
948
- display: table; }
949
- .premium-banner-animation8 .premium-banner-ib-desc .premium-banner-desc-centered {
950
- display: table-cell;
951
- vertical-align: middle; }
952
-
953
- .premium-banner-animation8 .premium-banner-ib-title {
954
- margin-top: 0; }
955
-
956
- .premium-banner-animation8 .premium-banner-ib-title,
957
- .premium-banner-animation8 img {
958
- -webkit-transform: translate3d(-30px, 0, 0);
959
- transform: translate3d(-30px, 0, 0); }
960
-
961
- .premium-banner-animation8.zoomout img,
962
- .premium-banner-animation8.scale img {
963
- -webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
964
- transform: translate3d(-30px, 0, 0) scale(1.1); }
965
-
966
- .premium-banner-animation8 .premium-banner-ib-content,
967
- .premium-banner-animation8 .premium-banner-read-more {
968
- margin-top: 10px; }
969
-
970
- .premium-banner-animation8 .premium-banner-ib-desc::after, .premium-banner-animation8 .premium-banner-ib-desc::before {
971
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
972
- transition: opacity 0.35s, -webkit-transform 0.35s;
973
- transition: opacity 0.35s, transform 0.35s;
974
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
975
-
976
- .premium-banner-animation8 .premium-banner-ib-title,
977
- .premium-banner-animation8 .premium-banner-ib-content,
978
- .premium-banner-animation8 .premium-banner-read-more {
979
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
980
- transition: opacity 0.35s, -webkit-transform 0.35s;
981
- transition: opacity 0.35s, transform 0.35s;
982
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
983
- opacity: 0; }
984
-
985
- .premium-banner-animation8:hover .premium-banner-ib-content,
986
- .premium-banner-animation8.active .premium-banner-ib-content,
987
- .premium-banner-animation8:hover .premium-banner-read-more,
988
- .premium-banner-animation8.active .premium-banner-read-more,
989
- .premium-banner-animation8:hover .premium-banner-ib-title,
990
- .premium-banner-animation8.active .premium-banner-ib-title {
991
- opacity: 1;
992
- -webkit-transform: translate3d(0, 0, 0);
993
- transform: translate3d(0, 0, 0); }
994
-
995
- .premium-banner-animation8:hover .premium-banner-bleft, .premium-banner-animation8.active .premium-banner-bleft {
996
- height: -webkit-calc(100% - 61px);
997
- height: calc(100% - 61px); }
998
-
999
- .premium-banner-animation8:hover .premium-banner-bright, .premium-banner-animation8.active .premium-banner-bright {
1000
- height: -webkit-calc(100% - 61px);
1001
- height: calc(100% - 61px); }
1002
-
1003
- .premium-banner-animation8:hover .premium-banner-bottom, .premium-banner-animation8.active .premium-banner-bottom {
1004
- width: -webkit-calc(100% - 61px);
1005
- width: calc(100% - 61px); }
1006
-
1007
- .premium-banner-animation8:hover .premium-banner-btop, .premium-banner-animation8.active .premium-banner-btop {
1008
- width: -webkit-calc(100% - 61px);
1009
- width: calc(100% - 61px); }
1010
-
1011
- .premium-banner-animation8:hover .premium-banner-ib-content,
1012
- .premium-banner-animation8:hover .premium-banner-ib-title,
1013
- .premium-banner-animation8:hover .premium-banner-read-more,
1014
- .premium-banner-animation8:hover img {
1015
- -webkit-transition-delay: 0.15s;
1016
- transition-delay: 0.15s; }
1017
-
1018
- .premium-banner-animation9 img {
1019
- width: -webkit-calc(100% + 20px) !important;
1020
- width: calc(100% + 20px) !important;
1021
- max-width: -webkit-calc(100% + 20px) !important;
1022
- max-width: calc(100% + 20px) !important;
1023
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1024
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1025
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
1026
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1027
- -webkit-transform: scale(1.2);
1028
- -ms-transform: scale(1.2);
1029
- transform: scale(1.2); }
1030
-
1031
- .premium-banner-animation9 .premium-banner-ib-desc {
1032
- width: 100%;
1033
- height: 100%; }
1034
- .premium-banner-animation9 .premium-banner-ib-desc::before {
1035
- position: absolute;
1036
- top: 50%;
1037
- left: 50%;
1038
- width: 80%;
1039
- height: 1px;
1040
- background: #fff;
1041
- content: "";
1042
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1043
- transition: opacity 0.35s, -webkit-transform 0.35s;
1044
- transition: opacity 0.35s, transform 0.35s;
1045
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1046
- -webkit-transform: translate3d(-50%, -50%, 0);
1047
- transform: translate3d(-50%, -50%, 0); }
1048
- .premium-banner-animation9 .premium-banner-ib-desc::after {
1049
- position: absolute;
1050
- top: 50%;
1051
- left: 50%;
1052
- width: 80%;
1053
- height: 1px;
1054
- background: #fff;
1055
- content: "";
1056
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1057
- transition: opacity 0.35s, -webkit-transform 0.35s;
1058
- transition: opacity 0.35s, transform 0.35s;
1059
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1060
- -webkit-transform: translate3d(-50%, -50%, 0);
1061
- transform: translate3d(-50%, -50%, 0); }
1062
-
1063
- .premium-banner-animation9 .premium-banner-ib-title {
1064
- position: absolute;
1065
- top: 50%;
1066
- left: 0;
1067
- width: 100%;
1068
- -webkit-transition: -webkit-transform 0.35s;
1069
- transition: -webkit-transform 0.35s;
1070
- transition: transform 0.35s;
1071
- transition: transform 0.35s, -webkit-transform 0.35s;
1072
- -webkit-transform: translate3d(0, -70px, 0);
1073
- transform: translate3d(0, -70px, 0);
1074
- margin-top: 0;
1075
- padding: 0 10%; }
1076
-
1077
- .premium-banner-animation9:hover .premium-banner-ib-title,
1078
- .premium-banner-animation9.active .premium-banner-ib-title {
1079
- -webkit-transform: translate3d(0, -80px, 0);
1080
- transform: translate3d(0, -80px, 0); }
1081
-
1082
- .premium-banner-animation9 .premium-banner-ib-content,
1083
- .premium-banner-animation9 .premium-banner-read-more {
1084
- position: absolute;
1085
- top: 50%;
1086
- left: 0;
1087
- width: 100%;
1088
- -webkit-transition: -webkit-transform 0.35s;
1089
- transition: -webkit-transform 0.35s;
1090
- transition: transform 0.35s;
1091
- transition: transform 0.35s, -webkit-transform 0.35s;
1092
- padding: 0 10%;
1093
- -webkit-transform: translate3d(0, 35px, 0);
1094
- transform: translate3d(0, 35px, 0); }
1095
-
1096
- .premium-banner-animation9 .premium-banner-read-more {
1097
- top: 75%; }
1098
-
1099
- .premium-banner-animation9:hover .premium-banner-ib-content,
1100
- .premium-banner-animation9.active .premium-banner-ib-content,
1101
- .premium-banner-animation9:hover .premium-banner-read-more,
1102
- .premium-banner-animation9.active .premium-banner-read-more {
1103
- -webkit-transform: translate3d(0, 45px, 0);
1104
- transform: translate3d(0, 45px, 0); }
1105
-
1106
- .premium-banner-animation9:hover .premium-banner-ib-desc::before,
1107
- .premium-banner-animation9.active .premium-banner-ib-desc::before {
1108
- opacity: 0.5;
1109
- -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
1110
- transform: translate3d(-50%, -50%, 0) rotate(45deg); }
1111
-
1112
- .premium-banner-animation9:hover .premium-banner-ib-desc::after,
1113
- .premium-banner-animation9.active .premium-banner-ib-desc::after {
1114
- opacity: 0.5;
1115
- -webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
1116
- transform: translate3d(-50%, -50%, 0) rotate(-45deg); }
1117
-
1118
- .premium-banner-animation9:hover img {
1119
- -webkit-transform: scale(1);
1120
- -ms-transform: scale(1);
1121
- transform: scale(1); }
1122
-
1123
- .premium-banner-animation10 img {
1124
- width: -webkit-calc(100% + 20px) !important;
1125
- width: calc(100% + 20px) !important;
1126
- max-width: -webkit-calc(100% + 20px) !important;
1127
- max-width: calc(100% + 20px) !important;
1128
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1129
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1130
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
1131
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
1132
-
1133
- .premium-banner-animation10 .premium-banner-ib-title {
1134
- position: relative;
1135
- overflow: hidden;
1136
- padding: 5px 0 15px;
1137
- -webkit-transition: -webkit-transform 0.35s;
1138
- transition: -webkit-transform 0.35s;
1139
- transition: transform 0.35s;
1140
- transition: transform 0.35s, -webkit-transform 0.35s;
1141
- -webkit-transform: translate3d(0, 20px, 0);
1142
- transform: translate3d(0, 20px, 0);
1143
- margin-bottom: 0; }
1144
- .premium-banner-animation10 .premium-banner-ib-title::after {
1145
- position: absolute;
1146
- content: "";
1147
- bottom: 0;
1148
- left: 0;
1149
- width: 100%;
1150
- height: 3px;
1151
- background: #fff;
1152
- opacity: 0;
1153
- -webkit-transform: translate3d(0, 100%, 0);
1154
- transform: translate3d(0, 100%, 0);
1155
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1156
- transition: opacity 0.35s, -webkit-transform 0.35s;
1157
- transition: opacity 0.35s, transform 0.35s;
1158
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
1159
-
1160
- .premium-banner-animation10:hover .premium-banner-ib-title,
1161
- .premium-banner-animation10.active .premium-banner-ib-title {
1162
- -webkit-transform: translate3d(0, 0, 0);
1163
- transform: translate3d(0, 0, 0); }
1164
-
1165
- .premium-banner-animation10:hover .premium-banner-ib-title::after,
1166
- .premium-banner-animation10.active .premium-banner-ib-title::after {
1167
- opacity: 1;
1168
- -webkit-transform: translate3d(0, 0, 0);
1169
- transform: translate3d(0, 0, 0); }
1170
-
1171
- .premium-banner-animation10.zoomout img,
1172
- .premium-banner-animation10.scale img {
1173
- -webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
1174
- transform: translate3d(-10px, 0, 0) scale(1.1); }
1175
-
1176
- .premium-banner-animation10 .premium-banner-ib-content,
1177
- .premium-banner-animation10 .premium-banner-read-more {
1178
- padding-top: 15px;
1179
- opacity: 0;
1180
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1181
- transition: opacity 0.35s, -webkit-transform 0.35s;
1182
- transition: opacity 0.35s, transform 0.35s;
1183
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1184
- -webkit-transform: translate3d(0, 100%, 0);
1185
- transform: translate3d(0, 100%, 0); }
1186
-
1187
- .premium-banner-animation10 .premium-banner-read-more {
1188
- padding: 0; }
1189
-
1190
- .premium-banner-animation10:hover .premium-banner-ib-content,
1191
- .premium-banner-animation10.active .premium-banner-ib-content,
1192
- .premium-banner-animation10:hover .premium-banner-read-more,
1193
- .premium-banner-animation10.active .premium-banner-read-more {
1194
- opacity: 1;
1195
- -webkit-transform: translate3d(0, 0, 0);
1196
- transform: translate3d(0, 0, 0); }
1197
-
1198
- .premium-banner-animation11 {
1199
- -webkit-transition: -webkit-transform 1s ease-out;
1200
- transition: -webkit-transform 1s ease-out;
1201
- transition: transform 1s ease-out;
1202
- transition: transform 1s ease-out, -webkit-transform 1s ease-out;
1203
- -webkit-transition-delay: 0.125s;
1204
- transition-delay: 0.125s; }
1205
- .premium-banner-animation11 .premium-banner-ib-desc {
1206
- position: absolute;
1207
- z-index: 5;
1208
- -webkit-transform: translate3d(-30px, 0, 0);
1209
- transform: translate3d(-30px, 0, 0);
1210
- opacity: 0;
1211
- top: auto;
1212
- bottom: 0;
1213
- min-height: 25%;
1214
- height: auto;
1215
- max-height: 100%;
1216
- text-align: left;
1217
- padding: 30px;
1218
- -webkit-transition: all 0.6s ease-out;
1219
- transition: all 0.6s ease-out; }
1220
- .premium-banner-animation11 img {
1221
- width: 100%;
1222
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1223
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1224
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
1225
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
1226
- .premium-banner-animation11 .premium-banner-ib-title {
1227
- margin-bottom: 10px; }
1228
- .premium-banner-animation11 .premium-banner-gradient {
1229
- position: absolute;
1230
- left: 0;
1231
- top: 0;
1232
- right: 0;
1233
- bottom: 0; }
1234
- .premium-banner-animation11 .premium-banner-gradient:after,
1235
- .premium-banner-animation11 .premium-banner-gradient:before {
1236
- position: absolute;
1237
- content: "";
1238
- left: 0;
1239
- top: 0;
1240
- right: 0;
1241
- bottom: 0;
1242
- -webkit-transform: translate3d(-100%, 0, 0);
1243
- transform: translate3d(-100%, 0, 0);
1244
- background-image: -webkit-linear-gradient(40deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
1245
- background-image: linear-gradient(50deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
1246
- z-index: 2; }
1247
- .premium-banner-animation11 .premium-banner-gradient:before {
1248
- mix-blend-mode: color; }
1249
- .premium-banner-animation11 .premium-banner-gradient:after {
1250
- mix-blend-mode: multiply; }
1251
- .premium-banner-animation11:hover .premium-banner-ib-desc,
1252
- .premium-banner-animation11.active .premium-banner-ib-desc {
1253
- opacity: 1;
1254
- -webkit-transform: translate3d(0, 0, 0);
1255
- transform: translate3d(0, 0, 0); }
1256
- .premium-banner-animation11:hover .premium-banner-gradient:after,
1257
- .premium-banner-animation11:hover .premium-banner-gradient:before,
1258
- .premium-banner-animation11.active .premium-banner-gradient:after,
1259
- .premium-banner-animation11.active .premium-banner-gradient:before {
1260
- -webkit-transform: translate3d(0, 0, 0);
1261
- transform: translate3d(0, 0, 0); }
1262
- .premium-banner-animation11.zoomout img,
1263
- .premium-banner-animation11.scale img {
1264
- -webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
1265
- transform: translate3d(-10px, 0, 0) scale(1.1); }
1266
-
1267
- /**************** Premium Blog *****************/
1268
- /***********************************************/
1269
- .premium-blog-thumb-effect-wrapper {
1270
- position: relative;
1271
- overflow: hidden; }
1272
-
1273
- .premium-blog-effect-container:not(.premium-blog-bordered-effect) .premium-blog-post-link {
1274
- position: absolute;
1275
- top: 0;
1276
- left: 0;
1277
- width: 100%;
1278
- height: 100%;
1279
- z-index: 2;
1280
- padding: 20px; }
1281
-
1282
- .premium-blog-bordered-effect .premium-blog-post-link {
1283
- display: block;
1284
- height: 100%;
1285
- position: relative; }
1286
-
1287
- /*Thumbnail Img*/
1288
- .premium-blog-thumbnail-container {
1289
- overflow: hidden; }
1290
- .premium-blog-thumbnail-container img,
1291
- .premium-blog-thumbnail-container .below-entry-meta {
1292
- width: 100%;
1293
- height: 100%;
1294
- margin: 0 !important;
1295
- -webkit-transition: all 0.4s ease-in-out;
1296
- transition: all 0.4s ease-in-out; }
1297
-
1298
- .premium-blog-thumb-effect-wrapper .premium-blog-zoomout-effect img,
1299
- .premium-blog-thumb-effect-wrapper .premium-blog-scale-effect img {
1300
- -webkit-transform: scale(1.2);
1301
- -ms-transform: scale(1.2);
1302
- transform: scale(1.2); }
1303
-
1304
- .premium-blog-thumb-effect-wrapper .premium-blog-sepia-effect img {
1305
- -webkit-filter: sepia(30%);
1306
- filter: sepia(30%); }
1307
-
1308
- .premium-blog-thumb-effect-wrapper .premium-blog-bright-effect img {
1309
- -webkit-filter: brightness(1);
1310
- filter: brightness(1); }
1311
-
1312
- .premium-blog-thumb-effect-wrapper .premium-blog-trans-effect img {
1313
- -webkit-transform: translateX(-15px) scale(1.1);
1314
- -ms-transform: translateX(-15px) scale(1.1);
1315
- transform: translateX(-15px) scale(1.1); }
1316
-
1317
- .premium-blog-post-outer-container:hover .premium-blog-zoomin-effect img {
1318
- -webkit-transform: scale(1.2);
1319
- -ms-transform: scale(1.2);
1320
- transform: scale(1.2); }
1321
-
1322
- .premium-blog-post-outer-container:hover .premium-blog-zoomout-effect img {
1323
- -webkit-transform: scale(1.1);
1324
- -ms-transform: scale(1.1);
1325
- transform: scale(1.1); }
1326
-
1327
- .premium-blog-post-outer-container:hover .premium-blog-scale-effect img {
1328
- -webkit-transform: scale(1.3) rotate(5deg);
1329
- -ms-transform: scale(1.3) rotate(5deg);
1330
- transform: scale(1.3) rotate(5deg); }
1331
-
1332
- .premium-blog-post-outer-container:hover .premium-blog-gray-effect img {
1333
- -webkit-filter: grayscale(100%);
1334
- filter: grayscale(100%); }
1335
-
1336
- .premium-blog-post-outer-container:hover .premium-blog-blur-effect img {
1337
- -webkit-filter: blur(3px);
1338
- filter: blur(3px); }
1339
-
1340
- .premium-blog-post-outer-container:hover .premium-blog-sepia-effect img {
1341
- -webkit-filter: sepia(0%);
1342
- filter: sepia(0%); }
1343
-
1344
- .premium-blog-post-outer-container:hover .premium-blog-bright-effect img {
1345
- -webkit-filter: brightness(1.2);
1346
- filter: brightness(1.2); }
1347
-
1348
- .premium-blog-post-outer-container:hover .premium-blog-trans-effect img {
1349
- -webkit-transform: translateX(0px) scale(1.1);
1350
- -ms-transform: translateX(0px) scale(1.1);
1351
- transform: translateX(0px) scale(1.1); }
1352
-
1353
- .premium-blog-post-container {
1354
- overflow: hidden; }
1355
- .premium-blog-post-container .premium-blog-inner-container {
1356
- -js-display: flex;
1357
- display: -webkit-box;
1358
- display: -webkit-flex;
1359
- display: -moz-box;
1360
- display: -ms-flexbox;
1361
- display: flex; }
1362
- .premium-blog-post-container .premium-blog-entry-container {
1363
- margin: 0 !important; }
1364
- .premium-blog-post-container .premium-blog-post-content {
1365
- line-height: 1.5em;
1366
- color: #777;
1367
- font-size: 14px;
1368
- margin-bottom: 10px; }
1369
- .premium-blog-post-container ul.post-categories a:hover, .premium-blog-post-container ul.post-categories a:focus,
1370
- .premium-blog-post-container .premium-blog-post-link:hover,
1371
- .premium-blog-post-container .premium-blog-post-link:focus {
1372
- -webkit-box-shadow: none !important;
1373
- box-shadow: none !important;
1374
- outline: none !important; }
1375
- .premium-blog-post-container .premium-blog-entry-title {
1376
- font-size: 18px;
1377
- margin-bottom: 5px; }
1378
- .premium-blog-post-container.premium-blog-skin-modern .premium-blog-content-wrapper {
1379
- position: relative;
1380
- z-index: 3;
1381
- top: -50px; }
1382
- .premium-blog-post-container .premium-blog-content-wrapper {
1383
- background-color: #f5f5f5;
1384
- padding: 30px; }
1385
- .premium-blog-post-container .premium-blog-content-wrapper.empty-thumb {
1386
- top: 0; }
1387
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before, .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:after {
1388
- position: absolute;
1389
- content: "";
1390
- z-index: 1;
1391
- top: 50%;
1392
- left: 50%;
1393
- opacity: 0;
1394
- -webkit-transform: translate(-50%, -50%);
1395
- -ms-transform: translate(-50%, -50%);
1396
- transform: translate(-50%, -50%);
1397
- -webkit-transition: all 0.4s linear 0s;
1398
- transition: all 0.4s linear 0s;
1399
- height: 1px;
1400
- width: 100%;
1401
- background-color: #fff; }
1402
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before {
1403
- width: 1px;
1404
- height: 100%; }
1405
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-container:after {
1406
- width: 20px;
1407
- opacity: 1; }
1408
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-container:before {
1409
- height: 20px;
1410
- opacity: 1; }
1411
- .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-content-wrapper {
1412
- margin: 0px 10px 20px;
1413
- clear: both; }
1414
- .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay, .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay, .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay {
1415
- position: absolute;
1416
- top: 0;
1417
- left: 0;
1418
- width: 100%;
1419
- height: 100%;
1420
- -webkit-transition: all 0.3s ease-in-out;
1421
- transition: all 0.3s ease-in-out;
1422
- opacity: 0; }
1423
- .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay a, .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay a, .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay a {
1424
- -js-display: flex;
1425
- display: -webkit-box;
1426
- display: -webkit-flex;
1427
- display: -moz-box;
1428
- display: -ms-flexbox;
1429
- display: flex;
1430
- -webkit-box-pack: center;
1431
- -webkit-justify-content: center;
1432
- -moz-box-pack: center;
1433
- -ms-flex-pack: center;
1434
- justify-content: center;
1435
- -webkit-box-align: center;
1436
- -webkit-align-items: center;
1437
- -moz-box-align: center;
1438
- -ms-flex-align: center;
1439
- align-items: center;
1440
- width: 100%;
1441
- height: 100%; }
1442
- .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay span,
1443
- .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay i, .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay span,
1444
- .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay i, .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay span,
1445
- .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay i {
1446
- -webkit-transition: all 0.3s ease-in-out;
1447
- transition: all 0.3s ease-in-out; }
1448
- .premium-blog-post-container.premium-blog-skin-side {
1449
- -js-display: flex;
1450
- display: -webkit-box;
1451
- display: -webkit-flex;
1452
- display: -moz-box;
1453
- display: -ms-flexbox;
1454
- display: flex; }
1455
- .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-container {
1456
- height: 100%; }
1457
- .premium-blog-post-container.premium-blog-skin-side .premium-blog-content-wrapper {
1458
- -webkit-box-flex: 1;
1459
- -webkit-flex: 1;
1460
- -moz-box-flex: 1;
1461
- -ms-flex: 1;
1462
- flex: 1; }
1463
- .premium-blog-post-container.premium-blog-skin-banner {
1464
- position: relative; }
1465
- .premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper {
1466
- position: absolute;
1467
- width: 100%;
1468
- bottom: 0;
1469
- -js-display: flex;
1470
- display: -webkit-box;
1471
- display: -webkit-flex;
1472
- display: -moz-box;
1473
- display: -ms-flexbox;
1474
- display: flex;
1475
- -webkit-box-orient: vertical;
1476
- -webkit-box-direction: normal;
1477
- -webkit-flex-direction: column;
1478
- -moz-box-orient: vertical;
1479
- -moz-box-direction: normal;
1480
- -ms-flex-direction: column;
1481
- flex-direction: column;
1482
- background-color: transparent;
1483
- z-index: 3; }
1484
- .premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper-inner {
1485
- -webkit-transition: -webkit-transform 0.3s ease-in-out;
1486
- transition: -webkit-transform 0.3s ease-in-out;
1487
- transition: transform 0.3s ease-in-out;
1488
- transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; }
1489
- .premium-blog-post-container.premium-blog-skin-banner:hover .premium-blog-content-wrapper-inner {
1490
- -webkit-transform: translateY(-5px);
1491
- -ms-transform: translateY(-5px);
1492
- transform: translateY(-5px); }
1493
- .premium-blog-post-container .premium-blog-cats-container ul.post-categories {
1494
- margin: 0;
1495
- padding: 0;
1496
- list-style: none;
1497
- -js-display: flex;
1498
- display: -webkit-box;
1499
- display: -webkit-flex;
1500
- display: -moz-box;
1501
- display: -ms-flexbox;
1502
- display: flex; }
1503
- .premium-blog-post-container .premium-blog-cats-container a {
1504
- display: block;
1505
- font-size: 12px;
1506
- color: #fff;
1507
- background-color: #777;
1508
- margin: 0 3px 10px 0;
1509
- padding: 5px;
1510
- -webkit-transition: all 0.3s ease-in-out;
1511
- transition: all 0.3s ease-in-out; }
1512
-
1513
  /*
1514
  * Diagonal Effect
1515
- */
1516
- .premium-blog-diagonal-container {
1517
- position: absolute;
1518
- top: 0;
1519
- left: 0;
1520
- width: 100%;
1521
- height: 100%; }
1522
-
1523
- .premium-blog-diagonal-effect:before {
1524
- position: absolute;
1525
- top: 0px;
1526
- left: 0px;
1527
- width: 100%;
1528
- height: 100%;
1529
- content: " ";
1530
- z-index: 1;
1531
- background: rgba(255, 255, 255, 0.2);
1532
- -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
1533
- transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
1534
- -webkit-transition: all 0.3s linear 0s;
1535
- transition: all 0.3s linear 0s; }
1536
-
1537
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-diagonal-effect:before {
1538
- -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
1539
- transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0); }
1540
-
1541
  /*
1542
  * Framed Effect
1543
- */
1544
- .premium-blog-framed-effect {
1545
- position: absolute;
1546
- width: -webkit-calc(100% - 30px);
1547
- width: calc(100% - 30px);
1548
- height: -webkit-calc(100% - 30px);
1549
- height: calc(100% - 30px);
1550
- top: 15px;
1551
- left: 15px;
1552
- opacity: 0;
1553
- -webkit-transform: scale(0.3);
1554
- -ms-transform: scale(0.3);
1555
- transform: scale(0.3);
1556
- -webkit-transition: all 0.3s linear 0s;
1557
- transition: all 0.3s linear 0s; }
1558
-
1559
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-framed-effect {
1560
- opacity: 0.99;
1561
- -webkit-transform: scale(1);
1562
- -ms-transform: scale(1);
1563
- transform: scale(1); }
1564
-
1565
  /*
1566
  * Bordered Effect
1567
- */
1568
- .premium-blog-bordered-effect {
1569
- position: absolute;
1570
- top: 0;
1571
- left: 0;
1572
- width: 100%;
1573
- height: 100%;
1574
- opacity: 0;
1575
- padding: 15px;
1576
- -webkit-transition: all 0.3s linear 0s;
1577
- transition: all 0.3s linear 0s; }
1578
- .premium-blog-bordered-effect .premium-blog-post-link:before, .premium-blog-bordered-effect .premium-blog-post-link:after {
1579
- content: "";
1580
- display: block;
1581
- position: absolute;
1582
- top: 0;
1583
- left: 0;
1584
- width: 100%;
1585
- height: 100%;
1586
- -webkit-transition: all 0.5s linear 0s;
1587
- transition: all 0.5s linear 0s;
1588
- -webkit-transition-delay: 0s;
1589
- transition-delay: 0s;
1590
- border-color: rgba(255, 255, 255, 0.45); }
1591
- .premium-blog-bordered-effect .premium-blog-post-link:before {
1592
- border-right: 2px solid;
1593
- border-left: 2px solid;
1594
- -webkit-transform: scale(1, 0);
1595
- -ms-transform: scale(1, 0);
1596
- transform: scale(1, 0);
1597
- -webkit-transform-origin: 100% 0;
1598
- -ms-transform-origin: 100% 0;
1599
- transform-origin: 100% 0; }
1600
- .premium-blog-bordered-effect .premium-blog-post-link:after {
1601
- border-top: 2px solid;
1602
- border-bottom: 2px solid;
1603
- -webkit-transform: scale(0, 1);
1604
- -ms-transform: scale(0, 1);
1605
- transform: scale(0, 1);
1606
- -webkit-transform-origin: 0 0;
1607
- -ms-transform-origin: 0 0;
1608
- transform-origin: 0 0; }
1609
-
1610
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect {
1611
- opacity: 0.99; }
1612
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect .premium-blog-post-link:before, .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect .premium-blog-post-link:after {
1613
- -webkit-transition-delay: 0.15s;
1614
- transition-delay: 0.15s;
1615
- opacity: 1;
1616
- -webkit-transform: scale(1);
1617
- -ms-transform: scale(1);
1618
- transform: scale(1); }
1619
-
1620
  /*
1621
  * Squares Effect
1622
- */
1623
- .premium-blog-squares-effect,
1624
- .premium-blog-squares-square-container {
1625
- position: absolute;
1626
- top: 0;
1627
- left: 0;
1628
- width: 100%;
1629
- height: 100%; }
1630
-
1631
- .premium-blog-squares-effect:before, .premium-blog-squares-effect:after {
1632
- position: absolute;
1633
- content: "";
1634
- top: 0;
1635
- left: 0;
1636
- width: 50%;
1637
- height: 50%;
1638
- -webkit-transform: translate(-100%, -100%);
1639
- -ms-transform: translate(-100%, -100%);
1640
- transform: translate(-100%, -100%);
1641
- opacity: 0.7;
1642
- -webkit-transition: all 0.3s linear 0s;
1643
- transition: all 0.3s linear 0s; }
1644
-
1645
- .premium-blog-squares-square-container:before, .premium-blog-squares-square-container:after {
1646
- position: absolute;
1647
- content: "";
1648
- top: 0;
1649
- left: 0;
1650
- width: 50%;
1651
- height: 50%;
1652
- -webkit-transform: translate(-100%, -100%);
1653
- -ms-transform: translate(-100%, -100%);
1654
- transform: translate(-100%, -100%);
1655
- opacity: 0.7;
1656
- -webkit-transition: all 0.3s linear 0s;
1657
- transition: all 0.3s linear 0s; }
1658
-
1659
- .premium-blog-squares-square-container:before, .premium-blog-squares-square-container:after {
1660
- opacity: 0.8; }
1661
-
1662
- .premium-blog-squares-effect:after {
1663
- -webkit-transform: translate(200%, 200%);
1664
- -ms-transform: translate(200%, 200%);
1665
- transform: translate(200%, 200%); }
1666
-
1667
- .premium-blog-squares-square-container:before {
1668
- -webkit-transform: translate(-100%, 200%);
1669
- -ms-transform: translate(-100%, 200%);
1670
- transform: translate(-100%, 200%); }
1671
-
1672
- .premium-blog-squares-square-container:after {
1673
- -webkit-transform: translate(200%, -100%);
1674
- -ms-transform: translate(200%, -100%);
1675
- transform: translate(200%, -100%); }
1676
-
1677
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:before {
1678
- -webkit-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
1679
- -ms-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
1680
- transform: translate(0, 0%) scaleY(1.003) scaleX(1.003); }
1681
-
1682
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:after {
1683
- -webkit-transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003);
1684
- -ms-transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003);
1685
- transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003); }
1686
-
1687
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:before {
1688
- -webkit-transform: translate(0, 100%);
1689
- -ms-transform: translate(0, 100%);
1690
- transform: translate(0, 100%); }
1691
-
1692
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:after {
1693
- -webkit-transform: translate(100%, 0%);
1694
- -ms-transform: translate(100%, 0%);
1695
- transform: translate(100%, 0%); }
1696
-
1697
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay {
1698
- opacity: 1; }
1699
- .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay a {
1700
- opacity: 1;
1701
- -webkit-transform: scale(1);
1702
- -ms-transform: scale(1);
1703
- transform: scale(1); }
1704
-
1705
- .premium-blog-clear-fix {
1706
- clear: both; }
1707
-
1708
- .premium-blog-masked .premium-blog-thumbnail-container {
1709
- position: relative;
1710
- overflow: visible; }
1711
- .premium-blog-masked .premium-blog-thumbnail-container svg {
1712
- position: absolute;
1713
- height: 100px;
1714
- width: 100%;
1715
- bottom: -5px;
1716
- left: 0;
1717
- fill: #f5f5f5;
1718
- z-index: 99; }
1719
- .premium-blog-masked .premium-blog-thumbnail-container svg.premium-blog-shape-divider-svg {
1720
- -webkit-transform: rotate(180deg);
1721
- -ms-transform: rotate(180deg);
1722
- transform: rotate(180deg); }
1723
-
1724
- .premium-blog-masked .premium-blog-author-thumbnail,
1725
- .premium-blog-masked .premium-blog-skin-banner .premium-blog-content-wrapper {
1726
- z-index: 999 !important; }
1727
-
1728
- .premium-blog-format-link {
1729
- padding: 5px;
1730
- line-height: 0; }
1731
-
1732
- .premium-blog-entry-meta {
1733
- line-height: 1.3em;
1734
- font-size: 12px;
1735
- margin-bottom: 13px;
1736
- color: #adadad; }
1737
- .premium-blog-entry-meta i {
1738
- margin-right: 3px;
1739
- -webkit-transition: all 0.3s ease-in-out;
1740
- transition: all 0.3s ease-in-out; }
1741
-
1742
- .premium-blog-meta-data {
1743
- display: inline-block; }
1744
- .premium-blog-meta-data .premium-blog-meta-separator {
1745
- margin: 0 5px; }
1746
- .premium-blog-meta-data a,
1747
- .premium-blog-meta-data span {
1748
- color: inherit;
1749
- -webkit-transition: all 0.3s ease-in-out;
1750
- transition: all 0.3s ease-in-out; }
1751
-
1752
- .premium-blog-author-thumbnail {
1753
- position: relative;
1754
- padding: 0 30px;
1755
- width: 100%;
1756
- top: -10px;
1757
- height: 0;
1758
- pointer-events: none; }
1759
- .premium-blog-author-thumbnail img {
1760
- -webkit-border-radius: 50%;
1761
- border-radius: 50%;
1762
- width: 60px;
1763
- pointer-events: all;
1764
- -webkit-transform: translateY(-50%);
1765
- -ms-transform: translateY(-50%);
1766
- transform: translateY(-50%); }
1767
-
1768
- .premium-blog-entry-title a,
1769
- .premium-blog-post-tags-container a,
1770
- .premium-blog-post-content .premium-blog-excerpt-link {
1771
- -webkit-transition: all 0.3s ease-in-out;
1772
- transition: all 0.3s ease-in-out; }
1773
-
1774
- .premium-blog-excerpt-link-wrap a.premium-blog-excerpt-link {
1775
- background-color: transparent;
1776
- color: #54595f;
1777
- padding: 0; }
1778
-
1779
- .premium-blog-cta-full-yes .premium-blog-excerpt-link {
1780
- width: 100%; }
1781
-
1782
- .premium-blog-post-tags-container {
1783
- margin-top: 8px;
1784
- -js-display: flex;
1785
- display: -webkit-box;
1786
- display: -webkit-flex;
1787
- display: -moz-box;
1788
- display: -ms-flexbox;
1789
- display: flex;
1790
- -webkit-box-align: center;
1791
- -webkit-align-items: center;
1792
- -moz-box-align: center;
1793
- -ms-flex-align: center;
1794
- align-items: center;
1795
- -webkit-flex-wrap: wrap;
1796
- -ms-flex-wrap: wrap;
1797
- flex-wrap: wrap; }
1798
- .premium-blog-post-tags-container a {
1799
- color: inherit;
1800
- margin-left: 5px; }
1801
-
1802
- /*Tags align*/
1803
- .premium-blog-align-left .post-categories,
1804
- .premium-blog-align-left .premium-blog-inner-container,
1805
- .premium-blog-align-left .premium-blog-post-tags-container {
1806
- -webkit-box-pack: start;
1807
- -webkit-justify-content: flex-start;
1808
- -moz-box-pack: start;
1809
- -ms-flex-pack: start;
1810
- justify-content: flex-start; }
1811
-
1812
- .premium-blog-align-center .post-categories,
1813
- .premium-blog-align-center .premium-blog-inner-container,
1814
- .premium-blog-align-center .premium-blog-post-tags-container {
1815
- -webkit-box-pack: center;
1816
- -webkit-justify-content: center;
1817
- -moz-box-pack: center;
1818
- -ms-flex-pack: center;
1819
- justify-content: center; }
1820
-
1821
- .premium-blog-align-right .post-categories,
1822
- .premium-blog-align-right .premium-blog-inner-container,
1823
- .premium-blog-align-right .premium-blog-post-tags-container {
1824
- -webkit-box-pack: end;
1825
- -webkit-justify-content: flex-end;
1826
- -moz-box-pack: end;
1827
- -ms-flex-pack: end;
1828
- justify-content: flex-end; }
1829
-
1830
- /* Pagination */
1831
- .premium-blog-pagination-container {
1832
- text-align: right; }
1833
- .premium-blog-pagination-container span {
1834
- cursor: default; }
1835
- .premium-blog-pagination-container .page-numbers {
1836
- display: inline-block;
1837
- color: #000;
1838
- line-height: 1;
1839
- font-size: 1em;
1840
- font-weight: 400;
1841
- text-decoration: none;
1842
- padding: 0.75em;
1843
- margin: 0 0.4em 0.4em 0;
1844
- -webkit-transition: all 0.3s ease-in-out;
1845
- transition: all 0.3s ease-in-out; }
1846
-
1847
- .premium-blog-wrap .premium-loading-feed {
1848
- display: block;
1849
- position: absolute;
1850
- width: 100%;
1851
- height: 100%;
1852
- top: 0px;
1853
- left: 0px;
1854
- bottom: 0px;
1855
- right: 0px;
1856
- background: rgba(255, 255, 255, 0.2);
1857
- -js-display: flex;
1858
- display: -webkit-box;
1859
- display: -webkit-flex;
1860
- display: -moz-box;
1861
- display: -ms-flexbox;
1862
- display: flex;
1863
- -webkit-box-align: center;
1864
- -webkit-align-items: center;
1865
- -moz-box-align: center;
1866
- -ms-flex-align: center;
1867
- align-items: center;
1868
- z-index: 99; }
1869
-
1870
- .premium-blog-wrap {
1871
- -js-display: flex;
1872
- display: -webkit-box;
1873
- display: -webkit-flex;
1874
- display: -moz-box;
1875
- display: -ms-flexbox;
1876
- display: flex;
1877
- -webkit-flex-wrap: wrap;
1878
- -ms-flex-wrap: wrap;
1879
- flex-wrap: wrap; }
1880
- .premium-blog-wrap ul.slick-dots {
1881
- width: 100%; }
1882
-
1883
  /*
1884
  * List Layout
1885
- */
1886
- .premium-blog-list .premium-blog-post-outer-container {
1887
- width: 100%; }
1888
-
1889
  /**
1890
  * Even Layout
1891
- */
1892
- .premium-blog-even .premium-blog-post-container {
1893
- height: 100%; }
1894
-
1895
- .premium-blog-even .slick-track {
1896
- -js-display: flex;
1897
- display: -webkit-box;
1898
- display: -webkit-flex;
1899
- display: -moz-box;
1900
- display: -ms-flexbox;
1901
- display: flex; }
1902
-
1903
- .premium-blog-even .slick-slide {
1904
- height: inherit !important; }
1905
-
1906
- .premium-blog-filter {
1907
- -js-display: flex;
1908
- display: -webkit-box;
1909
- display: -webkit-flex;
1910
- display: -moz-box;
1911
- display: -ms-flexbox;
1912
- display: flex;
1913
- -webkit-box-align: center;
1914
- -webkit-align-items: center;
1915
- -moz-box-align: center;
1916
- -ms-flex-align: center;
1917
- align-items: center;
1918
- -webkit-box-pack: center;
1919
- -webkit-justify-content: center;
1920
- -moz-box-pack: center;
1921
- -ms-flex-pack: center;
1922
- justify-content: center; }
1923
-
1924
- .premium-blog-filter .premium-blog-filters-container li a.category {
1925
- outline: none;
1926
- text-decoration: none;
1927
- -webkit-border-radius: 75px;
1928
- border-radius: 75px;
1929
- margin: 15px 5px 20px;
1930
- padding: 7px 20px;
1931
- -webkit-transition: all 0.3s ease-in-out;
1932
- transition: all 0.3s ease-in-out; }
1933
-
1934
- .premium-blog-filter ul.premium-blog-filters-container {
1935
- text-align: center;
1936
- margin: 0;
1937
- padding: 0; }
1938
-
1939
- .premium-blog-filter .premium-blog-filters-container li {
1940
- list-style: none;
1941
- -js-display: inline-flex;
1942
- display: -webkit-inline-box;
1943
- display: -webkit-inline-flex;
1944
- display: -moz-inline-box;
1945
- display: -ms-inline-flexbox;
1946
- display: inline-flex; }
1947
-
1948
  /**
1949
  * Responsive Style
1950
- */
1951
- @media (max-width: 768px) {
1952
- .premium-blog-content-wrapper {
1953
- top: 0;
1954
- margin: 0;
1955
- padding: 15px; }
1956
- .premium-blog-skin-side {
1957
- -webkit-box-orient: vertical;
1958
- -webkit-box-direction: normal;
1959
- -webkit-flex-direction: column;
1960
- -moz-box-orient: vertical;
1961
- -moz-box-direction: normal;
1962
- -ms-flex-direction: column;
1963
- flex-direction: column; } }
1964
-
1965
- /**************** Premium Button ***********************/
1966
- /*******************************************************/
1967
- .premium-button {
1968
- -js-display: inline-flex;
1969
- display: -webkit-inline-box;
1970
- display: -webkit-inline-flex;
1971
- display: -moz-inline-box;
1972
- display: -ms-inline-flexbox;
1973
- display: inline-flex;
1974
- position: relative;
1975
- overflow: hidden;
1976
- -webkit-backface-visibility: hidden;
1977
- backface-visibility: hidden;
1978
- -webkit-transform: translate3d(0, 0, 0);
1979
- transform: translate3d(0, 0, 0);
1980
- cursor: pointer;
1981
- -webkit-transition: all 0.2s ease-in-out !important;
1982
- transition: all 0.2s ease-in-out !important; }
1983
-
1984
- .premium-button-style1,
1985
- .premium-button-style2,
1986
- .premium-button-style5,
1987
- .premium-button-style7 {
1988
- display: inline-block;
1989
- vertical-align: middle;
1990
- -webkit-transform: perspective(1px) translateZ(0);
1991
- transform: perspective(1px) translateZ(0);
1992
- -webkit-box-shadow: 0 0 1px transparent;
1993
- box-shadow: 0 0 1px transparent;
1994
- position: relative;
1995
- -webkit-transition-property: color;
1996
- transition-property: color;
1997
- -webkit-transition-duration: 0.15s;
1998
- transition-duration: 0.15s; }
1999
-
2000
- .premium-button-style1:before,
2001
- .premium-button-style2:before,
2002
- .premium-button-style5:before {
2003
- content: "";
2004
- position: absolute;
2005
- z-index: -1;
2006
- top: 0;
2007
- left: 0;
2008
- right: 0;
2009
- bottom: 0;
2010
- -webkit-transform: scaleY(0);
2011
- -ms-transform: scaleY(0);
2012
- transform: scaleY(0);
2013
- -webkit-transform-origin: 50% 0;
2014
- -ms-transform-origin: 50% 0;
2015
- transform-origin: 50% 0;
2016
- -webkit-transition-property: -webkit-transform;
2017
- transition-property: -webkit-transform;
2018
- transition-property: transform;
2019
- transition-property: transform, -webkit-transform;
2020
- -webkit-transition-duration: 0.15s;
2021
- transition-duration: 0.15s;
2022
- -webkit-transition-timing-function: ease-out;
2023
- transition-timing-function: ease-out; }
2024
-
2025
- .premium-button-style5-radialin:before,
2026
- .premium-button-style5-radialout:before {
2027
- -webkit-transform-origin: 50%;
2028
- -ms-transform-origin: 50%;
2029
- transform-origin: 50%;
2030
- -webkit-border-radius: 100%;
2031
- border-radius: 100%;
2032
- -webkit-transform: scale(0);
2033
- -ms-transform: scale(0);
2034
- transform: scale(0); }
2035
-
2036
- .premium-button-style5-radialin:before {
2037
- -webkit-transform: scale(2);
2038
- -ms-transform: scale(2);
2039
- transform: scale(2); }
2040
-
2041
- .premium-button-style5-rectin:before {
2042
- -webkit-transform-origin: 50%;
2043
- -ms-transform-origin: 50%;
2044
- transform-origin: 50%;
2045
- -webkit-transform: scale(1);
2046
- -ms-transform: scale(1);
2047
- transform: scale(1); }
2048
-
2049
- .premium-button-style5-rectout:before {
2050
- -webkit-transform-origin: 50%;
2051
- -ms-transform-origin: 50%;
2052
- transform-origin: 50%;
2053
- -webkit-transform: scale(0);
2054
- -ms-transform: scale(0);
2055
- transform: scale(0); }
2056
-
2057
- .premium-button-style5-rectout:hover:before {
2058
- -webkit-transform: scale(1);
2059
- -ms-transform: scale(1);
2060
- transform: scale(1); }
2061
-
2062
- .premium-button-style5-rectin:hover:before {
2063
- -webkit-transform: scale(0);
2064
- -ms-transform: scale(0);
2065
- transform: scale(0); }
2066
-
2067
- .premium-button-style5-radialout:hover:before {
2068
- -webkit-transform: scale(2);
2069
- -ms-transform: scale(2);
2070
- transform: scale(2); }
2071
-
2072
- .premium-button-style5-radialin:hover:before {
2073
- -webkit-transform: scale(0);
2074
- -ms-transform: scale(0);
2075
- transform: scale(0); }
2076
-
2077
- .premium-button-style1-top:before {
2078
- -webkit-transform-origin: 50% 100%;
2079
- -ms-transform-origin: 50% 100%;
2080
- transform-origin: 50% 100%; }
2081
-
2082
- .premium-button-style1-right:before {
2083
- -webkit-transform: scaleX(0);
2084
- -ms-transform: scaleX(0);
2085
- transform: scaleX(0);
2086
- -webkit-transform-origin: 0% 50%;
2087
- -ms-transform-origin: 0% 50%;
2088
- transform-origin: 0% 50%; }
2089
-
2090
- .premium-button-style1-left:before {
2091
- -webkit-transform: scaleX(0);
2092
- -ms-transform: scaleX(0);
2093
- transform: scaleX(0);
2094
- -webkit-transform-origin: 100% 50%;
2095
- -ms-transform-origin: 100% 50%;
2096
- transform-origin: 100% 50%; }
2097
-
2098
- .premium-button-style2-shutouthor:before,
2099
- .premium-button-style2-scshutoutver:before {
2100
- -webkit-transform: scaleY(0);
2101
- -ms-transform: scaleY(0);
2102
- transform: scaleY(0);
2103
- -webkit-transform-origin: 100% 50%;
2104
- -ms-transform-origin: 100% 50%;
2105
- transform-origin: 100% 50%; }
2106
-
2107
- .premium-button-style2-shutoutver:before,
2108
- .premium-button-style2-scshutouthor:before {
2109
- -webkit-transform: scaleX(0);
2110
- -ms-transform: scaleX(0);
2111
- transform: scaleX(0);
2112
- -webkit-transform-origin: 50% 50%;
2113
- -ms-transform-origin: 50% 50%;
2114
- transform-origin: 50% 50%; }
2115
-
2116
- .premium-button-style2-shutinhor:before {
2117
- -webkit-transform: scaleX(1);
2118
- -ms-transform: scaleX(1);
2119
- transform: scaleX(1);
2120
- -webkit-transform-origin: 50%;
2121
- -ms-transform-origin: 50%;
2122
- transform-origin: 50%; }
2123
-
2124
- .premium-button-style2-shutinver:before {
2125
- -webkit-transform: scaleY(1);
2126
- -ms-transform: scaleY(1);
2127
- transform: scaleY(1);
2128
- -webkit-transform-origin: 50%;
2129
- -ms-transform-origin: 50%;
2130
- transform-origin: 50%; }
2131
-
2132
- .premium-button-style1-bottom:hover:before,
2133
- .premium-button-style1-top:hover:before {
2134
- -webkit-transform: scaleY(1);
2135
- -ms-transform: scaleY(1);
2136
- transform: scaleY(1); }
2137
-
2138
- .premium-button-style1-left:hover:before,
2139
- .premium-button-style1-right:hover:before,
2140
- .premium-button-style2-shutouthor:hover:before,
2141
- .premium-button-style2-shutoutver:hover:before {
2142
- -webkit-transform: scaleX(1);
2143
- -ms-transform: scaleX(1);
2144
- transform: scaleX(1); }
2145
-
2146
- .premium-button-style2-shutinhor:hover:before {
2147
- -webkit-transform: scaleX(0);
2148
- -ms-transform: scaleX(0);
2149
- transform: scaleX(0); }
2150
-
2151
- .premium-button-style2-shutinver:hover:before {
2152
- -webkit-transform: scaleY(0);
2153
- -ms-transform: scaleY(0);
2154
- transform: scaleY(0); }
2155
-
2156
- .premium-button-style2-scshutouthor:hover:before {
2157
- -webkit-transform: scaleX(0.9);
2158
- -ms-transform: scaleX(0.9);
2159
- transform: scaleX(0.9); }
2160
-
2161
- .premium-button-style2-scshutoutver:hover:before {
2162
- -webkit-transform: scaleY(0.8);
2163
- -ms-transform: scaleY(0.8);
2164
- transform: scaleY(0.8); }
2165
-
2166
- /*Diagonal*/
2167
- .premium-button-style2-dshutinhor:before {
2168
- top: 50%;
2169
- left: 50%;
2170
- width: 120%;
2171
- height: 0%;
2172
- -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
2173
- -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
2174
- transform: translateX(-50%) translateY(-50%) rotate(-45deg);
2175
- -webkit-transform-origin: 50%;
2176
- -ms-transform-origin: 50%;
2177
- transform-origin: 50%;
2178
- -webkit-transition-property: all;
2179
- transition-property: all; }
2180
-
2181
- .premium-button-style2-dshutinver:before {
2182
- top: 50%;
2183
- left: 50%;
2184
- width: 120%;
2185
- height: 0%;
2186
- -webkit-transform-origin: 50%;
2187
- -ms-transform-origin: 50%;
2188
- transform-origin: 50%;
2189
- -webkit-transition-property: all;
2190
- transition-property: all;
2191
- -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
2192
- -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
2193
- transform: translateX(-50%) translateY(-50%) rotate(45deg); }
2194
-
2195
- .premium-button-style2-dshutinhor:hover:before,
2196
- .premium-button-style2-dshutinver:hover:before {
2197
- height: 220%; }
2198
-
2199
- .premium-button-style3-before i,
2200
- .premium-button-style3-before svg {
2201
- opacity: 0;
2202
- -webkit-transform: translateX(-5px);
2203
- -ms-transform: translateX(-5px);
2204
- transform: translateX(-5px);
2205
- -webkit-transition: all 0.5s ease-in-out;
2206
- transition: all 0.5s ease-in-out; }
2207
-
2208
- .premium-button-style3-after i,
2209
- .premium-button-style3-after svg {
2210
- opacity: 0;
2211
- -webkit-transform: translateX(-5px);
2212
- -ms-transform: translateX(-5px);
2213
- transform: translateX(-5px);
2214
- -webkit-transition: all 0.5s ease-in-out;
2215
- transition: all 0.5s ease-in-out;
2216
- -webkit-transform: translateX(5px);
2217
- -ms-transform: translateX(5px);
2218
- transform: translateX(5px); }
2219
-
2220
- .premium-button-style3-after:hover i,
2221
- .premium-button-style3-after:hover svg {
2222
- opacity: 1; }
2223
-
2224
- .premium-button-style3-before:hover i,
2225
- .premium-button-style3-before:hover svg {
2226
- opacity: 1; }
2227
-
2228
- .premium-button-text-icon-wrapper {
2229
- width: 100%;
2230
- -js-display: flex;
2231
- display: -webkit-box;
2232
- display: -webkit-flex;
2233
- display: -moz-box;
2234
- display: -ms-flexbox;
2235
- display: flex;
2236
- -webkit-box-pack: center;
2237
- -webkit-justify-content: center;
2238
- -moz-box-pack: center;
2239
- -ms-flex-pack: center;
2240
- justify-content: center;
2241
- -webkit-box-align: center;
2242
- -webkit-align-items: center;
2243
- -moz-box-align: center;
2244
- -ms-flex-align: center;
2245
- align-items: center;
2246
- -webkit-transition: all 0.2s ease-in-out;
2247
- transition: all 0.2s ease-in-out; }
2248
- .premium-button-text-icon-wrapper span,
2249
- .premium-button-text-icon-wrapper i,
2250
- .premium-button-text-icon-wrapper svg {
2251
- -webkit-transition: all 0.2s ease-in-out;
2252
- transition: all 0.2s ease-in-out; }
2253
-
2254
- .premium-button-style4-icon-wrapper {
2255
- position: absolute;
2256
- z-index: 2;
2257
- width: 100%;
2258
- text-align: center;
2259
- -js-display: flex;
2260
- display: -webkit-box;
2261
- display: -webkit-flex;
2262
- display: -moz-box;
2263
- display: -ms-flexbox;
2264
- display: flex;
2265
- -webkit-box-align: center;
2266
- -webkit-align-items: center;
2267
- -moz-box-align: center;
2268
- -ms-flex-align: center;
2269
- align-items: center;
2270
- -webkit-box-pack: center;
2271
- -webkit-justify-content: center;
2272
- -moz-box-pack: center;
2273
- -ms-flex-pack: center;
2274
- justify-content: center;
2275
- height: 100%;
2276
- opacity: 0;
2277
- -webkit-transition: all 0.3s ease-in-out;
2278
- transition: all 0.3s ease-in-out; }
2279
- .premium-button-style4-icon-wrapper.top {
2280
- bottom: -100%;
2281
- left: 0; }
2282
- .premium-button-style4-icon-wrapper.bottom {
2283
- top: -100%;
2284
- left: 0; }
2285
- .premium-button-style4-icon-wrapper.left {
2286
- top: 0;
2287
- left: -100%; }
2288
- .premium-button-style4-icon-wrapper.right {
2289
- top: 0;
2290
- right: -100%; }
2291
-
2292
- .premium-button-style4-bottom:hover .premium-button-style4-icon-wrapper {
2293
- top: 0;
2294
- opacity: 1; }
2295
-
2296
- .premium-button-style4-top:hover .premium-button-style4-icon-wrapper {
2297
- bottom: 0;
2298
- opacity: 1; }
2299
-
2300
- .premium-button-style4-left:hover .premium-button-style4-icon-wrapper {
2301
- left: 0;
2302
- opacity: 1; }
2303
-
2304
- .premium-button-style4-right:hover .premium-button-style4-icon-wrapper {
2305
- right: 0;
2306
- opacity: 1; }
2307
-
2308
- .premium-button-style4-bottom:hover .premium-button-text-icon-wrapper {
2309
- -webkit-transform: translateY(100%);
2310
- -ms-transform: translateY(100%);
2311
- transform: translateY(100%);
2312
- opacity: 0; }
2313
-
2314
- .premium-button-style4-top:hover .premium-button-text-icon-wrapper {
2315
- -webkit-transform: translateY(-100%);
2316
- -ms-transform: translateY(-100%);
2317
- transform: translateY(-100%);
2318
- opacity: 0; }
2319
-
2320
- .premium-button-style4-left:hover .premium-button-text-icon-wrapper {
2321
- -webkit-transform: translateX(100%);
2322
- -ms-transform: translateX(100%);
2323
- transform: translateX(100%);
2324
- opacity: 0; }
2325
-
2326
- .premium-button-style4-right:hover .premium-button-text-icon-wrapper {
2327
- -webkit-transform: translateX(-100%);
2328
- -ms-transform: translateX(-100%);
2329
- transform: translateX(-100%);
2330
- opacity: 0; }
2331
-
2332
- .premium-button-style6:before {
2333
- content: "";
2334
- position: absolute;
2335
- left: 50%;
2336
- top: 50%;
2337
- width: 100px;
2338
- height: 100px;
2339
- -webkit-border-radius: 100%;
2340
- border-radius: 100%;
2341
- -webkit-transform: translate(-50%, -50%) scale(0);
2342
- -ms-transform: translate(-50%, -50%) scale(0);
2343
- transform: translate(-50%, -50%) scale(0);
2344
- -webkit-transition: all 0.3s ease-in-out;
2345
- transition: all 0.3s ease-in-out; }
2346
-
2347
- .premium-button-style6:hover:before {
2348
- -webkit-transform: translate(-50%, -50%) scale(3);
2349
- -ms-transform: translate(-50%, -50%) scale(3);
2350
- transform: translate(-50%, -50%) scale(3); }
2351
-
2352
- .premium-button-style6 .premium-button-text-icon-wrapper {
2353
- position: relative;
2354
- z-index: 1; }
2355
-
2356
- .premium-button-style7-right .premium-button-text-icon-wrapper:before,
2357
- .premium-button-style7-left .premium-button-text-icon-wrapper:before {
2358
- -webkit-transition: width 0.3s ease-out 0.15s;
2359
- transition: width 0.3s ease-out 0.15s; }
2360
-
2361
- .premium-button-style7-right .premium-button-text-icon-wrapper:after,
2362
- .premium-button-style7-left .premium-button-text-icon-wrapper:after {
2363
- -webkit-transition: width 0.3s ease-out 0s;
2364
- transition: width 0.3s ease-out 0s; }
2365
-
2366
- .premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
2367
- .premium-button-style7-top .premium-button-text-icon-wrapper:before {
2368
- -webkit-transition: height 0.3s ease-out 0.15s;
2369
- transition: height 0.3s ease-out 0.15s; }
2370
-
2371
- .premium-button-style7-bottom .premium-button-text-icon-wrapper:after,
2372
- .premium-button-style7-top .premium-button-text-icon-wrapper:after {
2373
- -webkit-transition: height 0.3s ease-out 0s;
2374
- transition: height 0.3s ease-out 0s; }
2375
-
2376
- .premium-button-style7:hover .premium-button-text-icon-wrapper:before {
2377
- -webkit-transition-delay: 0s;
2378
- transition-delay: 0s; }
2379
-
2380
- .premium-button-style7:hover .premium-button-text-icon-wrapper:after {
2381
- -webkit-transition-delay: 0.15s;
2382
- transition-delay: 0.15s; }
2383
-
2384
- .premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
2385
- .premium-button-style7-bottom .premium-button-text-icon-wrapper:after {
2386
- content: "";
2387
- position: absolute;
2388
- right: 0;
2389
- top: 0;
2390
- left: 0;
2391
- height: 0;
2392
- z-index: -1; }
2393
-
2394
- .premium-button-style7-top .premium-button-text-icon-wrapper:after,
2395
- .premium-button-style7-top .premium-button-text-icon-wrapper:before {
2396
- content: "";
2397
- position: absolute;
2398
- right: 0;
2399
- bottom: 0;
2400
- left: 0;
2401
- height: 0;
2402
- z-index: -1; }
2403
-
2404
- .premium-button-style7-right .premium-button-text-icon-wrapper:after,
2405
- .premium-button-style7-right .premium-button-text-icon-wrapper:before {
2406
- content: "";
2407
- position: absolute;
2408
- right: 0;
2409
- top: 0;
2410
- bottom: 0;
2411
- width: 0;
2412
- z-index: -1; }
2413
-
2414
- .premium-button-style7-left .premium-button-text-icon-wrapper:after,
2415
- .premium-button-style7-left .premium-button-text-icon-wrapper:before {
2416
- content: "";
2417
- position: absolute;
2418
- left: 0;
2419
- top: 0;
2420
- bottom: 0;
2421
- width: 0;
2422
- z-index: -1; }
2423
-
2424
- .premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:after,
2425
- .premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:before {
2426
- height: 100%;
2427
- top: 0; }
2428
-
2429
- .premium-button-style7-top:hover .premium-button-text-icon-wrapper:after,
2430
- .premium-button-style7-top:hover .premium-button-text-icon-wrapper:before {
2431
- height: 100%;
2432
- bottom: 0; }
2433
-
2434
- .premium-button-style7-left:hover .premium-button-text-icon-wrapper:after,
2435
- .premium-button-style7-left:hover .premium-button-text-icon-wrapper:before {
2436
- width: 100%;
2437
- left: 0; }
2438
-
2439
- .premium-button-style7-right:hover .premium-button-text-icon-wrapper:after,
2440
- .premium-button-style7-right:hover .premium-button-text-icon-wrapper:before {
2441
- width: 100%;
2442
- right: 0; }
2443
-
2444
- /**************** Premium Carousel ****************/
2445
- /**************************************************/
2446
- .premium-carousel-wrapper a.carousel-arrow, .premium-carousel-wrapper a.ver-carousel-arrow {
2447
- -js-display: flex;
2448
- display: -webkit-box;
2449
- display: -webkit-flex;
2450
- display: -moz-box;
2451
- display: -ms-flexbox;
2452
- display: flex;
2453
- -webkit-box-align: center;
2454
- -webkit-align-items: center;
2455
- -moz-box-align: center;
2456
- -ms-flex-align: center;
2457
- align-items: center;
2458
- -webkit-box-pack: center;
2459
- -webkit-justify-content: center;
2460
- -moz-box-pack: center;
2461
- -ms-flex-pack: center;
2462
- justify-content: center;
2463
- width: 2em;
2464
- height: 2em;
2465
- line-height: 0;
2466
- text-align: center;
2467
- position: absolute;
2468
- z-index: 99;
2469
- cursor: pointer;
2470
- -webkit-transition: all 0.3s ease-in-out;
2471
- transition: all 0.3s ease-in-out;
2472
- -webkit-appearance: inherit;
2473
- border: none;
2474
- -webkit-box-shadow: none;
2475
- box-shadow: none; }
2476
- .premium-carousel-wrapper a.carousel-arrow svg, .premium-carousel-wrapper a.ver-carousel-arrow svg {
2477
- -webkit-transition: all 0.3s ease-in-out;
2478
- transition: all 0.3s ease-in-out; }
2479
-
2480
- .ver-carousel-arrow.carousel-next i {
2481
- margin-bottom: -3px; }
2482
-
2483
- .premium-carousel-wrapper a.slick-arrow:hover {
2484
- -webkit-box-shadow: none !important;
2485
- box-shadow: none !important; }
2486
-
2487
- .premium-carousel-wrapper .premium-carousel-content-hidden {
2488
- visibility: hidden; }
2489
-
2490
- .premium-carousel-wrapper a.carousel-arrow {
2491
- top: 50%; }
2492
-
2493
- .premium-carousel-wrapper a.ver-carousel-arrow {
2494
- left: 50%;
2495
- -webkit-transform: translateX(-50%);
2496
- -ms-transform: translateX(-50%);
2497
- transform: translateX(-50%); }
2498
-
2499
- .premium-carousel-dots-above ul.slick-dots {
2500
- position: absolute;
2501
- -js-display: flex;
2502
- display: -webkit-box;
2503
- display: -webkit-flex;
2504
- display: -moz-box;
2505
- display: -ms-flexbox;
2506
- display: flex;
2507
- width: auto;
2508
- top: 50%;
2509
- bottom: auto;
2510
- -webkit-transform: translateY(-50%);
2511
- -ms-transform: translateY(-50%);
2512
- transform: translateY(-50%);
2513
- -webkit-box-orient: vertical;
2514
- -webkit-box-direction: normal;
2515
- -webkit-flex-direction: column;
2516
- -moz-box-orient: vertical;
2517
- -moz-box-direction: normal;
2518
- -ms-flex-direction: column;
2519
- flex-direction: column; }
2520
-
2521
- /*
2522
- * Custom Navigation Dot
2523
- */
2524
- .premium-carousel-wrapper .premium-carousel-nav-dot,
2525
- .premium-carousel-wrapper .premium-carousel-nav-arrow-prev,
2526
- .premium-carousel-wrapper .premium-carousel-nav-arrow-next {
2527
- display: none; }
2528
-
2529
- .premium-carousel-wrapper ul.slick-dots svg {
2530
- width: 20px;
2531
- height: 20px;
2532
- outline: none !important; }
2533
-
2534
- /* Ripple Out */
2535
- @-webkit-keyframes hvr-ripple-out {
2536
- 0% {
2537
- -webkit-transform: scale(1);
2538
- transform: scale(1);
2539
- opacity: 1; }
2540
- 100% {
2541
- -webkit-transform: scale(1.5);
2542
- transform: scale(1.5);
2543
- opacity: 0; } }
2544
- @keyframes hvr-ripple-out {
2545
- 0% {
2546
- -webkit-transform: scale(1);
2547
- transform: scale(1);
2548
- opacity: 1; }
2549
- 100% {
2550
- -webkit-transform: scale(1.5);
2551
- transform: scale(1.5);
2552
- opacity: 0; } }
2553
-
2554
- .premium-carousel-ripple-yes .premium-carousel-wrapper {
2555
- padding-bottom: 1px; }
2556
-
2557
- .premium-carousel-ripple-yes ul.slick-dots li {
2558
- position: relative; }
2559
- .premium-carousel-ripple-yes ul.slick-dots li i {
2560
- position: relative;
2561
- z-index: 1; }
2562
- .premium-carousel-ripple-yes ul.slick-dots li:hover:before {
2563
- content: "";
2564
- position: absolute;
2565
- -webkit-transform: scale(1);
2566
- -ms-transform: scale(1);
2567
- transform: scale(1);
2568
- top: 0;
2569
- right: 0;
2570
- bottom: 0;
2571
- left: 0;
2572
- -webkit-border-radius: 50%;
2573
- border-radius: 50%;
2574
- pointer-events: none;
2575
- background-color: rgba(0, 0, 0, 0.15); }
2576
- .premium-carousel-ripple-yes ul.slick-dots li.slick-active:hover:before {
2577
- background-color: rgba(0, 0, 0, 0.3); }
2578
- .premium-carousel-ripple-yes ul.slick-dots li:hover:before {
2579
- -webkit-animation: hvr-ripple-out 1.3s infinite;
2580
- animation: hvr-ripple-out 1.3s infinite; }
2581
-
2582
- .premium-carousel-wrapper.premium-carousel-scale .slick-slide {
2583
- -webkit-transform: scale(1.25, 1.25);
2584
- -ms-transform: scale(1.25, 1.25);
2585
- transform: scale(1.25, 1.25);
2586
- -webkit-transition: all 0.3s ease-in-out !important;
2587
- transition: all 0.3s ease-in-out !important; }
2588
-
2589
- .premium-carousel-wrapper.premium-carousel-scale div.slick-active {
2590
- -webkit-transform: scale(1, 1);
2591
- -ms-transform: scale(1, 1);
2592
- transform: scale(1, 1); }
2593
-
2594
- [dir="rtl"] .premium-carousel-inner .slick-slide {
2595
- float: right; }
2596
-
2597
- /**************** Premium Contact Form7 **********/
2598
- /*************************************************/
2599
- .premium-contact-form-anim-yes .wpcf7-span::after {
2600
- display: block;
2601
- height: 2px;
2602
- content: "";
2603
- top: -2px;
2604
- position: relative;
2605
- width: 0px;
2606
- -webkit-transition: all ease-in-out 0.3s;
2607
- transition: all ease-in-out 0.3s; }
2608
-
2609
- .premium-contact-form-anim-yes .wpcf7-span.is-focused::after {
2610
- width: 100%; }
2611
-
2612
- .premium-cf7-container input.wpcf7-submit {
2613
- -webkit-transition: all 0.3s ease-in-out;
2614
- transition: all 0.3s ease-in-out; }
2615
-
2616
- /**************** Premium CountDown *************/
2617
- /************************************************/
2618
- .premium-countdown {
2619
- -js-display: flex;
2620
- display: -webkit-box;
2621
- display: -webkit-flex;
2622
- display: -moz-box;
2623
- display: -ms-flexbox;
2624
- display: flex;
2625
- text-align: center; }
2626
-
2627
- .countdown-row {
2628
- display: block;
2629
- text-align: center; }
2630
-
2631
- .countdown .countdown-section {
2632
- display: inline-block;
2633
- max-width: 100%;
2634
- margin-bottom: 15px;
2635
- -js-display: inline-flex;
2636
- display: -webkit-inline-box;
2637
- display: -webkit-inline-flex;
2638
- display: -moz-inline-box;
2639
- display: -ms-inline-flexbox;
2640
- display: inline-flex;
2641
- -webkit-box-align: center;
2642
- -webkit-align-items: center;
2643
- -moz-box-align: center;
2644
- -ms-flex-align: center;
2645
- align-items: center; }
2646
- .countdown .countdown-section:last-child {
2647
- margin-right: 0; }
2648
-
2649
- .countdown span.countdown-amount {
2650
- font-size: 70px;
2651
- line-height: 1;
2652
- padding: 40px; }
2653
-
2654
- .countdown .pre_time-mid {
2655
- display: block; }
2656
-
2657
- .premium-countdown-separator-yes .countdown_separator {
2658
- display: block;
2659
- margin: 0 50px;
2660
- font-size: 30px; }
2661
-
2662
- .premium-countdown-separator-yes .countdown-row .countdown-section:last-child .countdown_separator,
2663
- .premium-countdown-separator-yes .premium-countdown-block:last-child .countdown_separator {
2664
- display: none; }
2665
-
2666
- /**
2667
- * Digit and unit styles
2668
- */
2669
- .side .countdown-section .countdown-period {
2670
- vertical-align: bottom; }
2671
-
2672
- .countdown .countdown-section .countdown-period {
2673
- font-size: 17px;
2674
- line-height: 3em; }
2675
-
2676
- .side .countdown-section .countdown-amount,
2677
- .side .countdown-section .countdown-period {
2678
- display: inline-block; }
2679
-
2680
- .side .countdown-section .countdown-amount {
2681
- margin-right: 5px; }
2682
-
2683
- .down .countdown-section .countdown-amount,
2684
- .down .countdown-section .countdown-period {
2685
- display: block; }
2686
-
2687
- /**
2688
- * Flip Layout
2689
- */
2690
- .premium-countdown-flip .premium-countdown-block {
2691
- text-align: center;
2692
- -js-display: inline-flex;
2693
- display: -webkit-inline-box;
2694
- display: -webkit-inline-flex;
2695
- display: -moz-inline-box;
2696
- display: -ms-inline-flexbox;
2697
- display: inline-flex;
2698
- -webkit-box-align: center;
2699
- -webkit-align-items: center;
2700
- -moz-box-align: center;
2701
- -ms-flex-align: center;
2702
- align-items: center; }
2703
- .premium-countdown-flip .premium-countdown-block:last-child {
2704
- margin-right: 0; }
2705
-
2706
- .premium-countdown-flip .premium-countdown-label {
2707
- overflow: hidden;
2708
- color: #1a1a1a;
2709
- text-transform: uppercase; }
2710
-
2711
- .premium-countdown-flip .premium-countdown-figure {
2712
- position: relative;
2713
- height: 110px;
2714
- width: 100px;
2715
- line-height: 107px;
2716
- background-color: #fff;
2717
- -webkit-border-radius: 10px;
2718
- border-radius: 10px;
2719
- -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
2720
- box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08); }
2721
- .premium-countdown-flip .premium-countdown-figure:last-child {
2722
- margin-right: 0; }
2723
- .premium-countdown-flip .premium-countdown-figure > span {
2724
- position: absolute;
2725
- left: 0;
2726
- right: 0;
2727
- margin: auto;
2728
- font-weight: 700; }
2729
- .premium-countdown-flip .premium-countdown-figure .top {
2730
- z-index: 3;
2731
- -webkit-transform-origin: 50% 100%;
2732
- -ms-transform-origin: 50% 100%;
2733
- transform-origin: 50% 100%;
2734
- -webkit-transform: perspective(200px);
2735
- transform: perspective(200px);
2736
- -webkit-backface-visibility: hidden;
2737
- backface-visibility: hidden; }
2738
- .premium-countdown-flip .premium-countdown-figure .bottom {
2739
- z-index: 1; }
2740
- .premium-countdown-flip .premium-countdown-figure .bottom::before {
2741
- content: "";
2742
- position: absolute;
2743
- display: block;
2744
- top: 0;
2745
- left: 0;
2746
- width: 100%;
2747
- height: 50%;
2748
- background-color: rgba(0, 0, 0, 0.02); }
2749
- .premium-countdown-flip .premium-countdown-figure .top-back {
2750
- -webkit-backface-visibility: hidden;
2751
- backface-visibility: hidden;
2752
- z-index: 4;
2753
- bottom: 0;
2754
- -webkit-transform-origin: 50% 0;
2755
- -ms-transform-origin: 50% 0;
2756
- transform-origin: 50% 0;
2757
- -webkit-transform: perspective(200px) rotateX(180deg);
2758
- transform: perspective(200px) rotateX(180deg); }
2759
- .premium-countdown-flip .premium-countdown-figure .top-back span {
2760
- position: absolute;
2761
- top: -100%;
2762
- left: 0;
2763
- right: 0;
2764
- margin: auto; }
2765
- .premium-countdown-flip .premium-countdown-figure .bottom-back {
2766
- z-index: 2;
2767
- top: 0; }
2768
- .premium-countdown-flip .premium-countdown-figure .bottom-back span {
2769
- position: absolute;
2770
- top: 0;
2771
- left: 0;
2772
- right: 0;
2773
- margin: auto; }
2774
- .premium-countdown-flip .premium-countdown-figure .top,
2775
- .premium-countdown-flip .premium-countdown-figure .bottom-back,
2776
- .premium-countdown-flip .premium-countdown-figure .top-back {
2777
- height: 50%;
2778
- overflow: hidden;
2779
- background-color: #f7f7f7;
2780
- -webkit-border-top-left-radius: 10px;
2781
- border-top-left-radius: 10px;
2782
- -webkit-border-top-right-radius: 10px;
2783
- border-top-right-radius: 10px; }
2784
- .premium-countdown-flip .premium-countdown-figure .top-back {
2785
- -webkit-border-bottom-left-radius: 10px;
2786
- border-bottom-left-radius: 10px;
2787
- -webkit-border-bottom-right-radius: 10px;
2788
- border-bottom-right-radius: 10px; }
2789
- .premium-countdown-flip .premium-countdown-figure .top::after,
2790
- .premium-countdown-flip .premium-countdown-figure .bottom-back::after {
2791
- content: "";
2792
- position: absolute;
2793
- z-index: -1;
2794
- left: 0;
2795
- bottom: 0;
2796
- width: 100%;
2797
- height: 100%;
2798
- border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
2799
-
2800
- .side .premium-countdown-figure,
2801
- .side .premium-countdown-label {
2802
- display: inline-block; }
2803
-
2804
- .side .premium-countdown-figure {
2805
- margin-right: 5px; }
2806
-
2807
- .down .premium-countdown-figure,
2808
- .down .premium-countdown-label {
2809
- display: block; }
2810
-
2811
- .down .premium-countdown-label {
2812
- width: 100%; }
2813
-
2814
- /**************** Premium Counter ***************/
2815
- /************************************************/
2816
- .premium-counter-area {
2817
- padding: 10px 0;
2818
- -js-display: flex;
2819
- display: -webkit-box;
2820
- display: -webkit-flex;
2821
- display: -moz-box;
2822
- display: -ms-flexbox;
2823
- display: flex;
2824
- -webkit-box-pack: center;
2825
- -webkit-justify-content: center;
2826
- -moz-box-pack: center;
2827
- -ms-flex-pack: center;
2828
- justify-content: center;
2829
- -webkit-box-align: center;
2830
- -webkit-align-items: center;
2831
- -moz-box-align: center;
2832
- -ms-flex-align: center;
2833
- align-items: center; }
2834
- .premium-counter-area.top {
2835
- -webkit-box-orient: vertical;
2836
- -webkit-box-direction: normal;
2837
- -webkit-flex-direction: column;
2838
- -moz-box-orient: vertical;
2839
- -moz-box-direction: normal;
2840
- -ms-flex-direction: column;
2841
- flex-direction: column; }
2842
- .premium-counter-area.right {
2843
- -webkit-box-orient: horizontal;
2844
- -webkit-box-direction: reverse;
2845
- -webkit-flex-direction: row-reverse;
2846
- -moz-box-orient: horizontal;
2847
- -moz-box-direction: reverse;
2848
- -ms-flex-direction: row-reverse;
2849
- flex-direction: row-reverse; }
2850
- .premium-counter-area.right .premium-counter-icon {
2851
- padding-left: 20px; }
2852
- .premium-counter-area.left .premium-counter-icon {
2853
- padding-right: 20px; }
2854
- .premium-counter-area .premium-counter-icon .icon i.fa:before {
2855
- vertical-align: text-top; }
2856
- .premium-counter-area .premium-counter-icon span.icon {
2857
- text-align: center;
2858
- display: inline-block;
2859
- vertical-align: middle; }
2860
- .premium-counter-area .premium-counter-icon .circle {
2861
- -webkit-border-radius: 100%;
2862
- border-radius: 100%; }
2863
- .premium-counter-area .premium-counter-icon img,
2864
- .premium-counter-area .premium-counter-icon svg {
2865
- width: 80px; }
2866
- .premium-counter-area .premium-counter-icon .premium-counter-animation svg {
2867
- height: 80px; }
2868
- .premium-counter-area .premium-counter-title p {
2869
- padding: 0;
2870
- margin: 0; }
2871
- .premium-counter-area .premium-counter-value-wrap {
2872
- -js-display: flex;
2873
- display: -webkit-box;
2874
- display: -webkit-flex;
2875
- display: -moz-box;
2876
- display: -ms-flexbox;
2877
- display: flex;
2878
- -webkit-box-align: center;
2879
- -webkit-align-items: center;
2880
- -moz-box-align: center;
2881
- -ms-flex-align: center;
2882
- align-items: center; }
2883
-
2884
- .premium-init-wrapper {
2885
- -js-display: flex;
2886
- display: -webkit-box;
2887
- display: -webkit-flex;
2888
- display: -moz-box;
2889
- display: -ms-flexbox;
2890
- display: flex; }
2891
- .premium-init-wrapper.row {
2892
- -webkit-box-align: center;
2893
- -webkit-align-items: center;
2894
- -moz-box-align: center;
2895
- -ms-flex-align: center;
2896
- align-items: center; }
2897
- .premium-init-wrapper.right {
2898
- text-align: right; }
2899
-
2900
- span.icon.flex-width {
2901
- width: auto !important;
2902
- height: auto !important; }
2903
-
2904
- .premium-counter-area .premium-counter-init {
2905
- font-size: 35px; }
2906
-
2907
- /**************** Premium Dual Heading *****************/
2908
- /*******************************************************/
2909
- .premium-dual-header-first-header,
2910
- .premium-dual-header-second-header {
2911
- position: relative;
2912
- padding: 0;
2913
- margin: 0;
2914
- display: inline-block;
2915
- -webkit-transform: translate(0, 0);
2916
- -ms-transform: translate(0, 0);
2917
- transform: translate(0, 0); }
2918
-
2919
- .premium-dual-header-first-clip .premium-dual-header-first-span,
2920
- .premium-dual-header-second-clip {
2921
- -webkit-text-fill-color: transparent;
2922
- -webkit-background-clip: text;
2923
- background-clip: text; }
2924
-
2925
- .premium-dual-header-first-clip.stroke .premium-dual-header-first-span,
2926
- .premium-dual-header-second-clip.stroke {
2927
- -webkit-text-stroke-color: transparent;
2928
- -webkit-text-fill-color: #fafafa;
2929
- -webkit-text-stroke-width: 2px; }
2930
-
2931
- @media (max-width: 500px) {
2932
- .premium-dual-header-first-header,
2933
- .premium-dual-header-second-header {
2934
- word-wrap: break-word; } }
2935
-
2936
- .premium-dual-header-first-header.gradient .premium-dual-header-first-span,
2937
- .premium-dual-header-second-header.gradient {
2938
- -webkit-background-size: 300% 300% !important;
2939
- background-size: 300% 300% !important;
2940
- -webkit-animation: Gradient 10s ease-in-out infinite;
2941
- animation: Gradient 10s ease-in-out infinite; }
2942
-
2943
- @-webkit-keyframes Gradient {
2944
- 0% {
2945
- background-position: 0% 50%; }
2946
- 50% {
2947
- background-position: 100% 50%; }
2948
- 100% {
2949
- background-position: 0% 50%; } }
2950
-
2951
- @keyframes Gradient {
2952
- 0% {
2953
- background-position: 0% 50%; }
2954
- 50% {
2955
- background-position: 100% 50%; }
2956
- 100% {
2957
- background-position: 0% 50%; } }
2958
-
2959
- .premium-mask-yes.premium-header-inline .premium-dual-header-first-span,
2960
- .premium-mask-yes.premium-header-inline .premium-dual-header-first-span {
2961
- display: inline-block !important; }
2962
-
2963
- /**************** Premium Fancy Text *******************/
2964
- /*******************************************************/
2965
- .premium-suffix-text,
2966
- .premium-fancy-text,
2967
- .premium-prefix-text {
2968
- font-size: 40px; }
2969
-
2970
- .premium-fancy-text-wrapper:not(.typing) .premium-fancy-text,
2971
- .premium-fancy-item-hidden {
2972
- opacity: 0; }
2973
-
2974
- .premium-fancy-text-wrapper .premium-fancy-list-items {
2975
- list-style: none; }
2976
-
2977
- .premium-fancy-text-wrapper .premium-fancy-text-span-align {
2978
- vertical-align: top; }
2979
-
2980
- .premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-text-items-wrapper {
2981
- margin: 0;
2982
- padding: 0;
2983
- border: none;
2984
- position: relative; }
2985
-
2986
- .premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-list-items {
2987
- position: absolute;
2988
- top: 0;
2989
- left: 0;
2990
- display: inline-block; }
2991
-
2992
- .premium-fancy-text-wrapper.zoomout .premium-fancy-item-hidden {
2993
- -webkit-animation: pa-zoom-out 0.8s;
2994
- animation: pa-zoom-out 0.8s; }
2995
-
2996
- .premium-fancy-text-wrapper.zoomout .premium-fancy-item-visible {
2997
- position: relative !important;
2998
- -webkit-animation: pa-zoom-in 0.8s;
2999
- animation: pa-zoom-in 0.8s; }
3000
-
3001
- .premium-fancy-text-wrapper.zoomout .premium-fancy-text-items-wrapper {
3002
- -webkit-perspective: 300px;
3003
- perspective: 300px; }
3004
-
3005
- .premium-fancy-text-wrapper.rotate .premium-fancy-list-items {
3006
- -webkit-transform-origin: 50% 100%;
3007
- -ms-transform-origin: 50% 100%;
3008
- transform-origin: 50% 100%; }
3009
-
3010
- .premium-fancy-text-wrapper.rotate .premium-fancy-item-hidden {
3011
- -webkit-transform: rotateX(180deg);
3012
- transform: rotateX(180deg);
3013
- -webkit-animation: pa-rotate-out 1.2s;
3014
- animation: pa-rotate-out 1.2s; }
3015
-
3016
- .premium-fancy-text-wrapper.rotate .premium-fancy-item-visible {
3017
- position: relative !important;
3018
- -webkit-transform: rotateX(0deg);
3019
- transform: rotateX(0deg);
3020
- -webkit-animation: pa-rotate-in 1.2s;
3021
- animation: pa-rotate-in 1.2s; }
3022
-
3023
- .premium-fancy-text-wrapper.custom .premium-fancy-item-visible {
3024
- position: relative !important; }
3025
-
3026
- .premium-fancy-text-wrapper.auto-fade .premium-fancy-text {
3027
- display: inline-block;
3028
- width: 200px;
3029
- font-weight: 400; }
3030
-
3031
- .premium-fancy-text-wrapper.auto-fade .premium-fancy-svg-text {
3032
- position: relative;
3033
- vertical-align: sub; }
3034
-
3035
- .premium-fancy-text-wrapper.auto-fade g > text {
3036
- text-anchor: start;
3037
- shape-rendering: crispEdges;
3038
- opacity: 0;
3039
- font-size: 300px;
3040
- -webkit-animation-name: pa-auto-fade;
3041
- animation-name: pa-auto-fade;
3042
- -moz-animation-name: pa-auto-fade;
3043
- -webkit-animation-duration: 9s;
3044
- animation-duration: 9s;
3045
- -webkit-animation-timing-function: linear;
3046
- animation-timing-function: linear;
3047
- -webkit-animation-iteration-count: infinite;
3048
- animation-iteration-count: infinite; }
3049
-
3050
- .premium-fancy-text-wrapper.auto-fade g > text:nth-child(1) {
3051
- -webkit-animation-delay: 0s;
3052
- animation-delay: 0s; }
3053
-
3054
- .premium-fancy-text-wrapper.auto-fade g > text:nth-child(2) {
3055
- -webkit-animation-delay: 3s;
3056
- animation-delay: 3s; }
3057
-
3058
- .premium-fancy-text-wrapper.auto-fade g > text:nth-child(3) {
3059
- -webkit-animation-delay: 6s;
3060
- animation-delay: 6s; }
3061
-
3062
- .premium-fancy-text-wrapper.loading .premium-fancy-text {
3063
- position: relative; }
3064
- .premium-fancy-text-wrapper.loading .premium-fancy-text .premium-loading-bar {
3065
- position: absolute;
3066
- width: 100%;
3067
- height: 3px;
3068
- bottom: 0;
3069
- left: 0;
3070
- animation: pa-loading-bar 2.5s ease-out infinite;
3071
- -webkit-animation: pa-loading-bar 2.5s ease-out infinite; }
3072
-
3073
- .premium-fancy-text-wrapper.loading.pause .premium-fancy-text:hover .premium-loading-bar {
3074
- -webkit-animation-play-state: paused;
3075
- animation-play-state: paused; }
3076
-
3077
- @-webkit-keyframes pa-auto-fade {
3078
- 0% {
3079
- opacity: 0; }
3080
- 20% {
3081
- opacity: 1; }
3082
- 35% {
3083
- opacity: 0; }
3084
- 100% {
3085
- opacity: 0; } }
3086
-
3087
- @keyframes pa-auto-fade {
3088
- 0% {
3089
- opacity: 0; }
3090
- 20% {
3091
- opacity: 1; }
3092
- 35% {
3093
- opacity: 0; }
3094
- 100% {
3095
- opacity: 0; } }
3096
-
3097
- @-webkit-keyframes pa-loading-bar {
3098
- 0% {
3099
- width: 0; }
3100
- 100% {
3101
- width: 100; } }
3102
-
3103
- @keyframes pa-loading-bar {
3104
- 0% {
3105
- width: 0; }
3106
- 100% {
3107
- width: 100; } }
3108
-
3109
- @-webkit-keyframes pa-zoom-in {
3110
- 0% {
3111
- opacity: 0;
3112
- -webkit-transform: translateZ(100px);
3113
- transform: translateZ(100px); }
3114
- 100% {
3115
- opacity: 1;
3116
- -webkit-transform: translateZ(0);
3117
- transform: translateZ(0); } }
3118
-
3119
- @keyframes pa-zoom-in {
3120
- 0% {
3121
- opacity: 0;
3122
- -webkit-transform: translateZ(100px);
3123
- transform: translateZ(100px); }
3124
- 100% {
3125
- opacity: 1;
3126
- -webkit-transform: translateZ(0);
3127
- transform: translateZ(0); } }
3128
-
3129
- @-webkit-keyframes pa-zoom-out {
3130
- 0% {
3131
- opacity: 1;
3132
- -webkit-transform: translateZ(0);
3133
- transform: translateZ(0); }
3134
- 100% {
3135
- opacity: 0;
3136
- -webkit-transform: translateZ(-100px);
3137
- transform: translateZ(-100px); } }
3138
-
3139
- @keyframes pa-zoom-out {
3140
- 0% {
3141
- opacity: 1;
3142
- -webkit-transform: translateZ(0);
3143
- transform: translateZ(0); }
3144
- 100% {
3145
- opacity: 0;
3146
- -webkit-transform: translateZ(-100px);
3147
- transform: translateZ(-100px); } }
3148
-
3149
- @-webkit-keyframes pa-rotate-in {
3150
- 0% {
3151
- opacity: 0;
3152
- -webkit-transform: rotateX(180deg);
3153
- transform: rotateX(180deg); }
3154
- 35% {
3155
- opacity: 0;
3156
- -webkit-transform: rotateX(120deg);
3157
- transform: rotateX(120deg); }
3158
- 65% {
3159
- opacity: 0; }
3160
- 100% {
3161
- opacity: 1;
3162
- -webkit-transform: rotateX(360deg);
3163
- transform: rotateX(360deg); } }
3164
-
3165
- @keyframes pa-rotate-in {
3166
- 0% {
3167
- opacity: 0;
3168
- -webkit-transform: rotateX(180deg);
3169
- transform: rotateX(180deg); }
3170
- 35% {
3171
- opacity: 0;
3172
- -webkit-transform: rotateX(120deg);
3173
- transform: rotateX(120deg); }
3174
- 65% {
3175
- opacity: 0; }
3176
- 100% {
3177
- opacity: 1;
3178
- -webkit-transform: rotateX(360deg);
3179
- transform: rotateX(360deg); } }
3180
-
3181
- @-webkit-keyframes pa-rotate-out {
3182
- 0% {
3183
- opacity: 1;
3184
- -webkit-transform: rotateX(0deg);
3185
- transform: rotateX(0deg); }
3186
- 35% {
3187
- opacity: 1;
3188
- -webkit-transform: rotateX(-40deg);
3189
- transform: rotateX(-40deg); }
3190
- 65% {
3191
- opacity: 0; }
3192
- 100% {
3193
- opacity: 0;
3194
- -webkit-transform: rotateX(180deg);
3195
- transform: rotateX(180deg); } }
3196
-
3197
- @keyframes pa-rotate-out {
3198
- 0% {
3199
- opacity: 1;
3200
- -webkit-transform: rotateX(0deg);
3201
- transform: rotateX(0deg); }
3202
- 35% {
3203
- opacity: 1;
3204
- -webkit-transform: rotateX(-40deg);
3205
- transform: rotateX(-40deg); }
3206
- 65% {
3207
- opacity: 0; }
3208
- 100% {
3209
- opacity: 0;
3210
- -webkit-transform: rotateX(180deg);
3211
- transform: rotateX(180deg); } }
3212
-
3213
- /**************** Premium Bullet List ****************/
3214
- /*****************************************************/
3215
- .premium-bullet-list-box {
3216
- -js-display: flex;
3217
- display: -webkit-box;
3218
- display: -webkit-flex;
3219
- display: -moz-box;
3220
- display: -ms-flexbox;
3221
- display: flex;
3222
- -webkit-flex-wrap: wrap;
3223
- -ms-flex-wrap: wrap;
3224
- flex-wrap: wrap;
3225
- -webkit-box-orient: vertical;
3226
- -webkit-box-direction: normal;
3227
- -webkit-flex-direction: column;
3228
- -moz-box-orient: vertical;
3229
- -moz-box-direction: normal;
3230
- -ms-flex-direction: column;
3231
- flex-direction: column; }
3232
- .premium-bullet-list-box .premium-bullet-list-content-grow-lc {
3233
- -webkit-transform-origin: left center;
3234
- -ms-transform-origin: left center;
3235
- transform-origin: left center; }
3236
- .premium-bullet-list-box .premium-bullet-list-content-grow-rc {
3237
- -webkit-transform-origin: right center;
3238
- -ms-transform-origin: right center;
3239
- transform-origin: right center; }
3240
- .premium-bullet-list-box .premium-bullet-list-content-grow-cc {
3241
- -webkit-transform-origin: center center;
3242
- -ms-transform-origin: center center;
3243
- transform-origin: center center; }
3244
-
3245
- .premium-bullet-list-content {
3246
- -js-display: flex;
3247
- display: -webkit-box;
3248
- display: -webkit-flex;
3249
- display: -moz-box;
3250
- display: -ms-flexbox;
3251
- display: flex;
3252
- -webkit-transition: all 0.3s ease-in-out;
3253
- transition: all 0.3s ease-in-out;
3254
- width: auto;
3255
- position: relative; }
3256
- .premium-bullet-list-content .premium-bullet-list-text span,
3257
- .premium-bullet-list-content .premium-bullet-list-wrapper {
3258
- display: inline-block;
3259
- -webkit-align-self: center;
3260
- -ms-flex-item-align: center;
3261
- align-self: center;
3262
- -webkit-transition: all 0.3s ease-in-out;
3263
- transition: all 0.3s ease-in-out; }
3264
- .premium-bullet-list-content .premium-bullet-list-text span {
3265
- margin: 0 5px; }
3266
- .premium-bullet-list-content .premium-bullet-list-icon-text p {
3267
- font-size: 18px;
3268
- background-color: #eee;
3269
- padding: 1px 5px;
3270
- -webkit-border-radius: 2px;
3271
- border-radius: 2px; }
3272
- .premium-bullet-list-content .premium-bullet-list-text span,
3273
- .premium-bullet-list-content .premium-bullet-list-icon-text p,
3274
- .premium-bullet-list-content .premium-bullet-list-wrapper img,
3275
- .premium-bullet-list-content .premium-bullet-list-wrapper svg,
3276
- .premium-bullet-list-content .premium-bullet-list-wrapper i {
3277
- -webkit-transition: all 0.3s ease-in-out;
3278
- transition: all 0.3s ease-in-out; }
3279
- .premium-bullet-list-content .premium-bullet-list-wrapper {
3280
- position: relative;
3281
- line-height: 0; }
3282
- .premium-bullet-list-content .premium-bullet-list-wrapper img,
3283
- .premium-bullet-list-content .premium-bullet-list-wrapper svg {
3284
- width: 30px !important;
3285
- height: 30px !important;
3286
- position: relative;
3287
- z-index: 500; }
3288
- .premium-bullet-list-content .premium-bullet-list-wrapper i,
3289
- .premium-bullet-list-content .premium-bullet-list-wrapper .premium-bullet-list-icon-text {
3290
- position: relative;
3291
- z-index: 500; }
3292
- .premium-bullet-list-content .premium-bullet-list-wrapper i {
3293
- width: 1.25em; }
3294
- .premium-bullet-list-content .premium-bullet-list-link {
3295
- position: absolute;
3296
- top: 0;
3297
- left: 0;
3298
- width: 100%;
3299
- height: 100%;
3300
- z-index: 1000; }
3301
-
3302
- .premium-bullet-list-content:not(:last-of-type) .premium-bullet-list-connector {
3303
- width: 100%;
3304
- height: 100%;
3305
- position: absolute;
3306
- top: 0.5em;
3307
- z-index: 100;
3308
- -js-display: flex;
3309
- display: -webkit-box;
3310
- display: -webkit-flex;
3311
- display: -moz-box;
3312
- display: -ms-flexbox;
3313
- display: flex;
3314
- -webkit-box-pack: center;
3315
- -webkit-justify-content: center;
3316
- -moz-box-pack: center;
3317
- -ms-flex-pack: center;
3318
- justify-content: center; }
3319
- .premium-bullet-list-content:not(:last-of-type) .premium-bullet-list-connector .premium-icon-connector-content:after {
3320
- content: "";
3321
- border-right-width: 1px;
3322
- border-right-style: solid;
3323
- border-color: #333333;
3324
- display: block;
3325
- height: 100%; }
3326
-
3327
- li.premium-bullet-list-content.premium-bullet-list-content-inline {
3328
- -webkit-align-self: center;
3329
- -ms-flex-item-align: center;
3330
- align-self: center;
3331
- z-index: 2; }
3332
-
3333
- li.premium-bullet-list-content.premium-bullet-list-content-inline:not(:first-child) {
3334
- margin: 0 3px; }
3335
-
3336
- li.premium-bullet-list-content.premium-bullet-list-content-inline:first-child {
3337
- margin: 0 3px 0 0; }
3338
-
3339
- .premium-bullet-list-divider:not(:last-child) {
3340
- width: 100%;
3341
- -webkit-box-flex: 0;
3342
- -webkit-flex: 0 0 100%;
3343
- -moz-box-flex: 0;
3344
- -ms-flex: 0 0 100%;
3345
- flex: 0 0 100%;
3346
- overflow: hidden; }
3347
-
3348
- .premium-bullet-list-divider:not(:last-child):after {
3349
- content: "";
3350
- display: block;
3351
- border-top-style: solid;
3352
- border-top-width: 1px; }
3353
-
3354
- .premium-bullet-list-divider-inline:not(:last-child) {
3355
- float: right;
3356
- display: inline-block;
3357
- position: relative;
3358
- height: 100%;
3359
- overflow: hidden;
3360
- -webkit-align-self: center;
3361
- -ms-flex-item-align: center;
3362
- align-self: center;
3363
- margin: 0 3px; }
3364
-
3365
- .premium-bullet-list-divider-inline:not(:last-child):after {
3366
- content: "";
3367
- display: block;
3368
- border-left-width: 1px;
3369
- height: 33px;
3370
- border-left-style: solid; }
3371
-
3372
- .premium-bullet-list-icon-text {
3373
- line-height: 1.5; }
3374
-
3375
- .premium-bullet-list-icon-text p,
3376
- ul.premium-bullet-list-box,
3377
- li.premium-bullet-list-content {
3378
- margin: 0; }
3379
-
3380
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper i,
3381
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-text span,
3382
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-icon-text p {
3383
- color: transparent !important;
3384
- text-shadow: 0 0 3px #aaa; }
3385
-
3386
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-icon-connector-content,
3387
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper .premium-lottie-animation svg,
3388
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper img,
3389
- .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-badge {
3390
- -webkit-filter: blur(3px);
3391
- filter: blur(3px); }
3392
-
3393
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper i,
3394
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-text span,
3395
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-icon-text p {
3396
- color: #aaa !important;
3397
- text-shadow: 0 0px 0 transparent; }
3398
-
3399
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-icon-connector-content,
3400
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper .premium-lottie-animation svg,
3401
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper img,
3402
- .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-badge {
3403
- -webkit-filter: none;
3404
- filter: none; }
3405
-
3406
- .premium-bullet-list-content .premium-bullet-list-badge {
3407
- font-size: 11px;
3408
- top: auto;
3409
- min-width: -webkit-max-content;
3410
- min-width: -moz-max-content;
3411
- min-width: max-content;
3412
- height: -webkit-fit-content;
3413
- height: -moz-fit-content;
3414
- height: fit-content; }
3415
-
3416
- .premium-bullet-list-content .premium-bullet-list-icon-text p {
3417
- font-size: 13px; }
3418
-
3419
- .premium-bullet-list-gradient-effect[data-text] {
3420
- display: inline-block;
3421
- position: relative;
3422
- text-decoration: none; }
3423
-
3424
- .premium-bullet-list-gradient-effect[data-text]::before {
3425
- content: attr(data-text);
3426
- position: absolute;
3427
- z-index: 1;
3428
- overflow: hidden;
3429
- -webkit-clip-path: polygon(0 0, 1px 0, 1px 100%, 0 100%);
3430
- clip-path: polygon(0 0, 1px 0, 1px 100%, 0 100%);
3431
- -webkit-background-clip: text;
3432
- background-clip: text;
3433
- -webkit-text-fill-color: transparent;
3434
- -webkit-transition: all 0.4s ease;
3435
- transition: all 0.4s ease; }
3436
-
3437
- .premium-bullet-list-content:hover .premium-bullet-list-gradient-effect[data-text]::before,
3438
- .premium-bullet-list-content:focus .premium-bullet-list-gradient-effect[data-text]::before {
3439
- -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
3440
- clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
3441
-
3442
- ul[data-list-animation*="animated-"] .premium-bullet-list-divider,
3443
- ul[data-list-animation*="animated-"] .premium-bullet-list-content,
3444
- ul[data-list-animation*="animated-"] .premium-bullet-list-divider-inline {
3445
- opacity: 0; }
3446
-
3447
- .premium-bullet-list-content-grow-effect:hover {
3448
- -webkit-transform: scale(1.07);
3449
- -ms-transform: scale(1.07);
3450
- transform: scale(1.07); }
3451
-
3452
- @-webkit-keyframes spin {
3453
- 100% {
3454
- -webkit-transform: rotate(360deg);
3455
- transform: rotate(360deg); } }
3456
-
3457
- @keyframes spin {
3458
- 100% {
3459
- -webkit-transform: rotate(360deg);
3460
- transform: rotate(360deg); } }
3461
-
3462
- /**************** Premium Image Button ***********/
3463
- /*************************************************/
3464
- .premium-image-button {
3465
- -js-display: inline-flex;
3466
- display: -webkit-inline-box;
3467
- display: -webkit-inline-flex;
3468
- display: -moz-inline-box;
3469
- display: -ms-inline-flexbox;
3470
- display: inline-flex;
3471
- position: relative;
3472
- overflow: hidden;
3473
- background-color: #eee;
3474
- cursor: pointer;
3475
- -webkit-transition: all 0.2s ease-in-out !important;
3476
- transition: all 0.2s ease-in-out !important; }
3477
- .premium-image-button .premium-button-style6-bg, .premium-image-button.premium-button-style6:before, .premium-image-button:not(.premium-image-button-style6):hover {
3478
- background-color: #54595f; }
3479
-
3480
- /*Default background for slide styles*/
3481
- .premium-image-button-style4-icon-wrapper,
3482
- .premium-image-button-style1:before {
3483
- background-color: #54595f; }
3484
-
3485
- .premium-image-button-text-icon-wrapper {
3486
- width: 100%;
3487
- -js-display: flex;
3488
- display: -webkit-box;
3489
- display: -webkit-flex;
3490
- display: -moz-box;
3491
- display: -ms-flexbox;
3492
- display: flex;
3493
- -webkit-box-pack: center;
3494
- -webkit-justify-content: center;
3495
- -moz-box-pack: center;
3496
- -ms-flex-pack: center;
3497
- justify-content: center;
3498
- -webkit-box-align: center;
3499
- -webkit-align-items: center;
3500
- -moz-box-align: center;
3501
- -ms-flex-align: center;
3502
- align-items: center;
3503
- position: relative;
3504
- z-index: 3;
3505
- -webkit-transition: all 0.2s ease-in-out;
3506
- transition: all 0.2s ease-in-out; }
3507
- .premium-image-button-text-icon-wrapper span,
3508
- .premium-image-button-text-icon-wrapper i,
3509
- .premium-image-button-text-icon-wrapper svg {
3510
- -webkit-transition: all 0.2s ease-in-out;
3511
- transition: all 0.2s ease-in-out; }
3512
-
3513
- .premium-image-button-style1:before {
3514
- position: absolute;
3515
- content: "";
3516
- -webkit-transition: all 0.2s ease-in-out;
3517
- transition: all 0.2s ease-in-out; }
3518
-
3519
- .premium-image-button-style1-bottom:before {
3520
- width: 100%;
3521
- height: 0;
3522
- top: 0;
3523
- left: 0; }
3524
-
3525
- .premium-image-button-style1-top:before {
3526
- width: 100%;
3527
- height: 0;
3528
- bottom: 0;
3529
- left: 0; }
3530
-
3531
- .premium-image-button-style1-right:before {
3532
- width: 0;
3533
- height: 100%;
3534
- bottom: 0;
3535
- left: 0; }
3536
-
3537
- .premium-image-button-style1-left:before {
3538
- width: 0;
3539
- height: 100%;
3540
- top: 0;
3541
- right: 0; }
3542
-
3543
- .premium-image-button-style1-bottom:hover:before,
3544
- .premium-image-button-style1-top:hover:before {
3545
- height: 100%; }
3546
-
3547
- .premium-image-button-style1-right:hover:before,
3548
- .premium-image-button-style1-left:hover:before {
3549
- width: 100%; }
3550
-
3551
- .premium-image-button-style3 {
3552
- z-index: 10; }
3553
- .premium-image-button-style3:before {
3554
- position: absolute;
3555
- top: 0px;
3556
- left: 0px;
3557
- width: 100%;
3558
- height: 100%;
3559
- content: "";
3560
- z-index: 1;
3561
- background: rgba(255, 255, 255, 0.2);
3562
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
3563
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
3564
- -webkit-transition: all 0.8s ease-out;
3565
- transition: all 0.8s ease-out; }
3566
-
3567
- .premium-image-button-diagonal-right:before {
3568
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
3569
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0); }
3570
-
3571
- .premium-image-button-diagonal-right:hover:before {
3572
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
3573
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0); }
3574
-
3575
- .premium-image-button-diagonal-left:before {
3576
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
3577
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0); }
3578
-
3579
- .premium-image-button-diagonal-left:hover:before {
3580
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
3581
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0); }
3582
-
3583
- .premium-image-button-diagonal-bottom:before {
3584
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
3585
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0); }
3586
-
3587
- .premium-image-button-diagonal-bottom:hover:before {
3588
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
3589
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0); }
3590
-
3591
- .premium-image-button-diagonal-top:before {
3592
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
3593
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0); }
3594
-
3595
- .premium-image-button-diagonal-top:hover:before {
3596
- -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
3597
- transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0); }
3598
-
3599
- .premium-image-button-style4-icon-wrapper {
3600
- position: absolute;
3601
- z-index: 2;
3602
- width: 100%;
3603
- text-align: center;
3604
- -js-display: flex;
3605
- display: -webkit-box;
3606
- display: -webkit-flex;
3607
- display: -moz-box;
3608
- display: -ms-flexbox;
3609
- display: flex;
3610
- -webkit-box-align: center;
3611
- -webkit-align-items: center;
3612
- -moz-box-align: center;
3613
- -ms-flex-align: center;
3614
- align-items: center;
3615
- -webkit-box-pack: center;
3616
- -webkit-justify-content: center;
3617
- -moz-box-pack: center;
3618
- -ms-flex-pack: center;
3619
- justify-content: center;
3620
- height: 100%;
3621
- opacity: 0;
3622
- -webkit-transition: all 0.3s ease-in-out;
3623
- transition: all 0.3s ease-in-out; }
3624
- .premium-image-button-style4-icon-wrapper.top {
3625
- bottom: -100%;
3626
- left: 0; }
3627
- .premium-image-button-style4-icon-wrapper.bottom {
3628
- top: -100%;
3629
- left: 0; }
3630
- .premium-image-button-style4-icon-wrapper.left {
3631
- top: 0;
3632
- left: -100%; }
3633
- .premium-image-button-style4-icon-wrapper.right {
3634
- top: 0;
3635
- right: -100%; }
3636
-
3637
- .premium-image-button-style4-bottom:hover .premium-image-button-style4-icon-wrapper {
3638
- top: 0;
3639
- opacity: 1; }
3640
-
3641
- .premium-image-button-style4-bottom:hover .premium-image-button-text-icon-wrapper {
3642
- -webkit-transform: translateY(100%);
3643
- -ms-transform: translateY(100%);
3644
- transform: translateY(100%);
3645
- opacity: 0; }
3646
-
3647
- .premium-image-button-style4-top:hover .premium-image-button-style4-icon-wrapper {
3648
- bottom: 0;
3649
- opacity: 1; }
3650
-
3651
- .premium-image-button-style4-top:hover .premium-image-button-text-icon-wrapper {
3652
- -webkit-transform: translateY(-100%);
3653
- -ms-transform: translateY(-100%);
3654
- transform: translateY(-100%);
3655
- opacity: 0; }
3656
-
3657
- .premium-image-button-style4-left:hover .premium-image-button-style4-icon-wrapper {
3658
- left: 0;
3659
- opacity: 1; }
3660
-
3661
- .premium-image-button-style4-left:hover .premium-image-button-text-icon-wrapper {
3662
- -webkit-transform: translateX(100%);
3663
- -ms-transform: translateX(100%);
3664
- transform: translateX(100%);
3665
- opacity: 0; }
3666
-
3667
- .premium-image-button-style4-right:hover .premium-image-button-style4-icon-wrapper {
3668
- right: 0;
3669
- opacity: 1; }
3670
-
3671
- .premium-image-button-style4-right:hover .premium-image-button-text-icon-wrapper {
3672
- -webkit-transform: translateX(-100%);
3673
- -ms-transform: translateX(-100%);
3674
- transform: translateX(-100%);
3675
- opacity: 0; }
3676
-
3677
- .premium-image-button-style5:before {
3678
- position: absolute;
3679
- content: "";
3680
- top: 0;
3681
- left: 0;
3682
- width: 100%;
3683
- height: 100%;
3684
- opacity: 0;
3685
- -webkit-transition: all 1s ease-in-out;
3686
- transition: all 1s ease-in-out;
3687
- background: rgba(255, 255, 255, 0.2);
3688
- -webkit-animation-name: premium-overlap-effect-done;
3689
- animation-name: premium-overlap-effect-done;
3690
- -webkit-animation-duration: 1s;
3691
- animation-duration: 1s; }
3692
-
3693
- .premium-image-button-overlap-effect-vertical:before {
3694
- -webkit-animation-name: premium-overlap-ver-effect-done;
3695
- animation-name: premium-overlap-ver-effect-done; }
3696
-
3697
- .premium-image-button-overlap-effect-horizontal:hover:before {
3698
- -webkit-animation-name: premium-overlap-effect;
3699
- animation-name: premium-overlap-effect; }
3700
-
3701
- .premium-image-button-overlap-effect-vertical:hover:before {
3702
- -webkit-animation-name: premium-overlap-ver-effect;
3703
- animation-name: premium-overlap-ver-effect; }
3704
-
3705
- @-webkit-keyframes premium-overlap-effect {
3706
- 0% {
3707
- opacity: 0;
3708
- -webkit-transform: rotateY(0deg);
3709
- transform: rotateY(0deg); }
3710
- 50% {
3711
- opacity: 1;
3712
- -webkit-transform: rotateY(180deg);
3713
- transform: rotateY(180deg); }
3714
- 100% {
3715
- opacity: 0;
3716
- -webkit-transform: rotateY(360deg);
3717
- transform: rotateY(360deg); } }
3718
-
3719
- @keyframes premium-overlap-effect {
3720
- 0% {
3721
- opacity: 0;
3722
- -webkit-transform: rotateY(0deg);
3723
- transform: rotateY(0deg); }
3724
- 50% {
3725
- opacity: 1;
3726
- -webkit-transform: rotateY(180deg);
3727
- transform: rotateY(180deg); }
3728
- 100% {
3729
- opacity: 0;
3730
- -webkit-transform: rotateY(360deg);
3731
- transform: rotateY(360deg); } }
3732
-
3733
- @-webkit-keyframes premium-overlap-effect-done {
3734
- 0% {
3735
- opacity: 0;
3736
- -webkit-transform: rotateY(0deg);
3737
- transform: rotateY(0deg); }
3738
- 50% {
3739
- opacity: 1;
3740
- -webkit-transform: rotateY(180deg);
3741
- transform: rotateY(180deg); }
3742
- 100% {
3743
- opacity: 0;
3744
- -webkit-transform: rotateY(360deg);
3745
- transform: rotateY(360deg); } }
3746
-
3747
- @keyframes premium-overlap-effect-done {
3748
- 0% {
3749
- opacity: 0;
3750
- -webkit-transform: rotateY(0deg);
3751
- transform: rotateY(0deg); }
3752
- 50% {
3753
- opacity: 1;
3754
- -webkit-transform: rotateY(180deg);
3755
- transform: rotateY(180deg); }
3756
- 100% {
3757
- opacity: 0;
3758
- -webkit-transform: rotateY(360deg);
3759
- transform: rotateY(360deg); } }
3760
-
3761
- @-webkit-keyframes premium-overlap-ver-effect {
3762
- 0% {
3763
- opacity: 0;
3764
- -webkit-transform: rotateX(0deg);
3765
- transform: rotateX(0deg); }
3766
- 50% {
3767
- opacity: 1;
3768
- -webkit-transform: rotateX(180deg);
3769
- transform: rotateX(180deg); }
3770
- 100% {
3771
- opacity: 0;
3772
- -webkit-transform: rotateX(360deg);
3773
- transform: rotateX(360deg); } }
3774
-
3775
- @keyframes premium-overlap-ver-effect {
3776
- 0% {
3777
- opacity: 0;
3778
- -webkit-transform: rotateX(0deg);
3779
- transform: rotateX(0deg); }
3780
- 50% {
3781
- opacity: 1;
3782
- -webkit-transform: rotateX(180deg);
3783
- transform: rotateX(180deg); }
3784
- 100% {
3785
- opacity: 0;
3786
- -webkit-transform: rotateX(360deg);
3787
- transform: rotateX(360deg); } }
3788
-
3789
- @-webkit-keyframes premium-overlap-ver-effect-done {
3790
- 0% {
3791
- opacity: 0;
3792
- -webkit-transform: rotateX(0deg);
3793
- transform: rotateX(0deg); }
3794
- 50% {
3795
- opacity: 1;
3796
- -webkit-transform: rotateX(180deg);
3797
- transform: rotateX(180deg); }
3798
- 100% {
3799
- opacity: 0;
3800
- -webkit-transform: rotateX(360deg);
3801
- transform: rotateX(360deg); } }
3802
-
3803
- @keyframes premium-overlap-ver-effect-done {
3804
- 0% {
3805
- opacity: 0;
3806
- -webkit-transform: rotateX(0deg);
3807
- transform: rotateX(0deg); }
3808
- 50% {
3809
- opacity: 1;
3810
- -webkit-transform: rotateX(180deg);
3811
- transform: rotateX(180deg); }
3812
- 100% {
3813
- opacity: 0;
3814
- -webkit-transform: rotateX(360deg);
3815
- transform: rotateX(360deg); } }
3816
-
3817
- /************ Premium Image Scroll ************/
3818
- /**********************************************/
3819
- @font-face {
3820
- font-family: "pa-elements";
3821
- src: url("../../plugins/premium-addons-for-elementor/assets/editor/fonts/pa-elements.eot?9e1efm");
3822
- src: url("../../plugins/premium-addons-for-elementor/assets/editor/fonts/pa-elements.eot?9e1efm#iefix") format("embedded-opentype"), url("../../plugins/premium-addons-for-elementor/assets/editor/fonts/pa-elements.ttf?9e1efm") format("truetype"), url("../../plugins/premium-addons-for-elementor/assets/editor/fonts/pa-elements.woff?9e1efm") format("woff"), url("../../plugins/premium-addons-for-elementor/assets/editor/fonts/pa-elements.svg?9e1efm#pa-elements") format("svg");
3823
- font-weight: normal;
3824
- font-style: normal; }
3825
-
3826
- .premium-image-scroll-section,
3827
- .premium-image-scroll-container {
3828
- -webkit-transition: all 0.3s ease-in-out;
3829
- transition: all 0.3s ease-in-out; }
3830
-
3831
- .premium-image-scroll-section {
3832
- position: relative;
3833
- overflow: hidden;
3834
- width: 100%;
3835
- -webkit-mask-image: -webkit-radial-gradient(white, black); }
3836
-
3837
- .premium-image-scroll-container {
3838
- width: 100%; }
3839
- .premium-image-scroll-container .premium-image-scroll-mask-media {
3840
- -webkit-mask-repeat: no-repeat;
3841
- mask-repeat: no-repeat;
3842
- -webkit-mask-position: center;
3843
- mask-position: center; }
3844
-
3845
- .premium-container-scroll {
3846
- overflow: auto; }
3847
-
3848
- .premium-image-scroll-container .premium-image-scroll-horizontal {
3849
- position: relative;
3850
- width: 100%;
3851
- height: 100%; }
3852
- .premium-image-scroll-container .premium-image-scroll-horizontal img {
3853
- max-width: none;
3854
- height: 100%; }
3855
-
3856
- .premium-image-scroll-container .premium-image-scroll-vertical img {
3857
- width: 100%;
3858
- max-width: 100%;
3859
- height: auto; }
3860
-
3861
- .premium-image-scroll-ver {
3862
- position: relative; }
3863
-
3864
- .premium-image-scroll-container .premium-image-scroll-overlay {
3865
- background: rgba(2, 2, 2, 0.3); }
3866
-
3867
- .premium-image-scroll-container .premium-image-scroll-link,
3868
- .premium-image-scroll-container .premium-image-scroll-overlay {
3869
- position: absolute;
3870
- top: 0;
3871
- bottom: 0;
3872
- left: 0;
3873
- right: 0;
3874
- z-index: 4; }
3875
-
3876
- .premium-image-scroll-content {
3877
- display: inline-block;
3878
- position: absolute;
3879
- height: auto;
3880
- top: 50%;
3881
- left: 50%;
3882
- text-align: center;
3883
- z-index: 5;
3884
- -webkit-transform: translate(-50%, -50%);
3885
- -ms-transform: translate(-50%, -50%);
3886
- transform: translate(-50%, -50%); }
3887
-
3888
- .premium-container-scroll-instant .premium-image-scroll-image {
3889
- -webkit-transition: all 0s ease-in-out !important;
3890
- transition: all 0s ease-in-out !important; }
3891
-
3892
- .premium-image-scroll-container img {
3893
- -webkit-transition: -webkit-transform 3s ease-in-out;
3894
- transition: -webkit-transform 3s ease-in-out;
3895
- transition: transform 3s ease-in-out;
3896
- transition: transform 3s ease-in-out, -webkit-transform 3s ease-in-out; }
3897
-
3898
- .premium-image-scroll-container .premium-image-scroll-overlay,
3899
- .premium-image-scroll-container .premium-image-scroll-content {
3900
- -webkit-transition: all 0.3s ease-in-out;
3901
- transition: all 0.3s ease-in-out;
3902
- opacity: 1; }
3903
-
3904
- .premium-image-scroll-container:hover .premium-image-scroll-overlay {
3905
- opacity: 0; }
3906
-
3907
- .premium-image-scroll-container:hover .premium-image-scroll-content {
3908
- opacity: 0;
3909
- visibility: hidden; }
3910
-
3911
- .premium-image-scroll-content .premium-image-scroll-icon {
3912
- display: inline-block;
3913
- font-family: "pa-elements" !important;
3914
- speak: none;
3915
- font-style: normal;
3916
- font-weight: normal;
3917
- font-variant: normal;
3918
- text-transform: none;
3919
- line-height: 1;
3920
- -webkit-font-smoothing: antialiased;
3921
- -moz-osx-font-smoothing: grayscale;
3922
- -webkit-animation-duration: 0.5s;
3923
- animation-duration: 0.5s;
3924
- -webkit-animation-iteration-count: infinite;
3925
- animation-iteration-count: infinite;
3926
- -webkit-animation-direction: alternate;
3927
- animation-direction: alternate;
3928
- -webkit-animation-timing-function: ease-in-out;
3929
- animation-timing-function: ease-in-out; }
3930
-
3931
- .pa-horizontal-mouse-scroll:before {
3932
- content: "\e921"; }
3933
-
3934
- .pa-vertical-mouse-scroll:before {
3935
- content: "\e922"; }
3936
-
3937
- .pa-horizontal-mouse-scroll {
3938
- -webkit-animation-name: pa-scroll-horizontal;
3939
- animation-name: pa-scroll-horizontal; }
3940
-
3941
- .pa-vertical-mouse-scroll {
3942
- -webkit-animation-name: pa-scroll-vertical;
3943
- animation-name: pa-scroll-vertical; }
3944
-
3945
- @-webkit-keyframes pa-scroll-vertical {
3946
- 0% {
3947
- -webkit-transform: translateY(0px);
3948
- transform: translateY(0px); }
3949
- 100% {
3950
- -webkit-transform: translateY(5px);
3951
- transform: translateY(5px); } }
3952
-
3953
- @keyframes pa-scroll-vertical {
3954
- 0% {
3955
- -webkit-transform: translateY(0px);
3956
- transform: translateY(0px); }
3957
- 100% {
3958
- -webkit-transform: translateY(5px);
3959
- transform: translateY(5px); } }
3960
-
3961
- @-webkit-keyframes pa-scroll-horizontal {
3962
- 0% {
3963
- -webkit-transform: translateX(0px);
3964
- transform: translateX(0px); }
3965
- 100% {
3966
- -webkit-transform: translateX(5px);
3967
- transform: translateX(5px); } }
3968
-
3969
- @keyframes pa-scroll-horizontal {
3970
- 0% {
3971
- -webkit-transform: translateX(0px);
3972
- transform: translateX(0px); }
3973
- 100% {
3974
- -webkit-transform: translateX(5px);
3975
- transform: translateX(5px); } }
3976
-
3977
- /**************** Premium Image Separator ****************/
3978
- /*********************************************************/
3979
- .premium-image-separator-container {
3980
- position: absolute;
3981
- width: 100%;
3982
- z-index: 2;
3983
- top: auto;
3984
- -webkit-transition: all 0.3s ease-in-out;
3985
- transition: all 0.3s ease-in-out; }
3986
- .premium-image-separator-container svg,
3987
- .premium-image-separator-container img {
3988
- display: inline-block !important;
3989
- -webkit-mask-repeat: no-repeat;
3990
- mask-repeat: no-repeat;
3991
- -webkit-mask-position: center;
3992
- mask-position: center; }
3993
- .premium-image-separator-container .premium-image-separator-link {
3994
- position: absolute;
3995
- z-index: 9999;
3996
- top: 0;
3997
- left: 0;
3998
- width: 100%;
3999
- height: 100%;
4000
- text-decoration: none; }
4001
- .premium-image-separator-container .premium-image-separator-link:hover, .premium-image-separator-container .premium-image-separator-link:visited, .premium-image-separator-container .premium-image-separator-link:focus, .premium-image-separator-container .premium-image-separator-link:active {
4002
- -webkit-box-shadow: none !important;
4003
- box-shadow: none !important;
4004
- outline: none !important;
4005
- border: none !important;
4006
- text-decoration: none !important; }
4007
- .premium-image-separator-container i,
4008
- .premium-image-separator-container > svg {
4009
- padding: 20px;
4010
- -webkit-transition: all 0.3s ease-in-out;
4011
- transition: all 0.3s ease-in-out; }
4012
-
4013
- /******** Premium Media Grid ********/
4014
- /************************************/
4015
- .premium-img-gallery-filter,
4016
- .premium-blog-filter {
4017
- -js-display: flex;
4018
- display: -webkit-box;
4019
- display: -webkit-flex;
4020
- display: -moz-box;
4021
- display: -ms-flexbox;
4022
- display: flex;
4023
- -webkit-box-align: center;
4024
- -webkit-align-items: center;
4025
- -moz-box-align: center;
4026
- -ms-flex-align: center;
4027
- align-items: center;
4028
- -webkit-box-pack: center;
4029
- -webkit-justify-content: center;
4030
- -moz-box-pack: center;
4031
- -ms-flex-pack: center;
4032
- justify-content: center; }
4033
-
4034
- .premium-img-gallery {
4035
- clear: both;
4036
- overflow: hidden; }
4037
-
4038
- .premium-gallery-container .premium-gallery-item {
4039
- padding: 10px;
4040
- float: left; }
4041
-
4042
- .premium-gallery-container .grid-sizer {
4043
- width: 33.33%; }
4044
-
4045
- .premium-gallery-container .pa-gallery-item {
4046
- padding: 10px; }
4047
-
4048
- .premium-img-gallery-filter .premium-gallery-cats-container li a.category,
4049
- .premium-blog-filter .premium-blog-filters-container li a.category {
4050
- outline: none;
4051
- text-decoration: none;
4052
- -webkit-border-radius: 75px;
4053
- border-radius: 75px;
4054
- margin: 15px 5px 20px;
4055
- padding: 7px 20px;
4056
- -webkit-transition: all 0.3s ease-in-out;
4057
- transition: all 0.3s ease-in-out; }
4058
-
4059
- .premium-img-gallery-filter .premium-gallery-cats-container li a.category span {
4060
- -webkit-transition: all 0.3s ease-in-out;
4061
- transition: all 0.3s ease-in-out; }
4062
-
4063
- .pa-gallery-img {
4064
- position: relative; }
4065
- .pa-gallery-img .pa-gallery-whole-link {
4066
- position: absolute;
4067
- top: 0;
4068
- left: 0;
4069
- width: 100%;
4070
- height: 100%; }
4071
- .pa-gallery-img.style2 .pa-gallery-whole-link {
4072
- z-index: 99; }
4073
-
4074
- .pa-gallery-img-container {
4075
- overflow: hidden;
4076
- -webkit-backface-visibility: hidden;
4077
- backface-visibility: hidden;
4078
- -webkit-transform: translate3d(0, 0, 0);
4079
- transform: translate3d(0, 0, 0); }
4080
- .pa-gallery-img-container img {
4081
- display: block;
4082
- width: 100%;
4083
- -webkit-transition: all 0.3s ease-in-out;
4084
- transition: all 0.3s ease-in-out; }
4085
-
4086
- .premium-img-gallery.gray img {
4087
- -webkit-filter: grayscale(100%);
4088
- filter: grayscale(100%); }
4089
-
4090
- .premium-img-gallery.zoomout img,
4091
- .premium-img-gallery.scale img {
4092
- -webkit-transform: scale(1.2);
4093
- -ms-transform: scale(1.2);
4094
- transform: scale(1.2); }
4095
-
4096
- .premium-img-gallery.sepia img {
4097
- -webkit-filter: sepia(30%);
4098
- filter: sepia(30%); }
4099
-
4100
- .premium-img-gallery.bright img {
4101
- -webkit-filter: brightness(1);
4102
- filter: brightness(1); }
4103
-
4104
- .premium-img-gallery.trans img {
4105
- -webkit-transform: translateX(-15px) scale(1.1);
4106
- -ms-transform: translateX(-15px) scale(1.1);
4107
- transform: translateX(-15px) scale(1.1); }
4108
-
4109
- .pa-gallery-img .pa-gallery-magnific-image,
4110
- .pa-gallery-img .pa-gallery-img-link {
4111
- outline: none; }
4112
- .pa-gallery-img .pa-gallery-magnific-image i,
4113
- .pa-gallery-img .pa-gallery-magnific-image svg,
4114
- .pa-gallery-img .pa-gallery-img-link i,
4115
- .pa-gallery-img .pa-gallery-img-link svg {
4116
- -webkit-transition: all 0.3s ease-in-out;
4117
- transition: all 0.3s ease-in-out; }
4118
-
4119
- .pa-gallery-img .pa-gallery-magnific-image span,
4120
- .pa-gallery-img .pa-gallery-img-link span {
4121
- line-height: 1;
4122
- display: inline-block;
4123
- opacity: 0;
4124
- margin: 0 5px;
4125
- padding: 15px;
4126
- -webkit-border-radius: 50%;
4127
- border-radius: 50%; }
4128
-
4129
- .pa-gallery-img.style2 .pa-gallery-magnific-image span,
4130
- .pa-gallery-img.style2 .pa-gallery-img-link span {
4131
- margin: 0 5px 20px; }
4132
-
4133
- .pa-gallery-img:hover .pa-gallery-magnific-image span {
4134
- -webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
4135
- transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s; }
4136
-
4137
- .pa-gallery-img:hover .pa-gallery-img-link span {
4138
- -webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
4139
- transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s; }
4140
-
4141
- .pa-gallery-img:hover .pa-gallery-magnific-image span,
4142
- .pa-gallery-img:hover .pa-gallery-img-link span {
4143
- opacity: 1; }
4144
-
4145
- .premium-gallery-icon-show a.pa-gallery-video-icon span {
4146
- opacity: 1; }
4147
-
4148
- .premium-img-gallery-filter ul.premium-gallery-cats-container,
4149
- .premium-blog-filter ul.premium-blog-filters-container {
4150
- text-align: center;
4151
- margin: 0;
4152
- padding: 0; }
4153
-
4154
- .premium-img-gallery-filter .premium-gallery-cats-container li,
4155
- .premium-blog-filter .premium-blog-filters-container li {
4156
- list-style: none;
4157
- -js-display: inline-flex;
4158
- display: -webkit-inline-box;
4159
- display: -webkit-inline-flex;
4160
- display: -moz-inline-box;
4161
- display: -ms-inline-flexbox;
4162
- display: inline-flex; }
4163
-
4164
- .premium-img-gallery.zoomin .pa-gallery-img:hover img {
4165
- -webkit-transform: scale(1.1);
4166
- -ms-transform: scale(1.1);
4167
- transform: scale(1.1); }
4168
-
4169
- .premium-img-gallery.zoomout .pa-gallery-img:hover img {
4170
- -webkit-transform: scale(1);
4171
- -ms-transform: scale(1);
4172
- transform: scale(1); }
4173
-
4174
- .premium-img-gallery.scale .pa-gallery-img:hover img {
4175
- -webkit-transform: scale(1.3) rotate(5deg);
4176
- -ms-transform: scale(1.3) rotate(5deg);
4177
- transform: scale(1.3) rotate(5deg); }
4178
-
4179
- .premium-img-gallery.gray .pa-gallery-img:hover img {
4180
- -webkit-filter: grayscale(0%);
4181
- filter: grayscale(0%); }
4182
-
4183
- .premium-img-gallery.blur .pa-gallery-img:hover img {
4184
- -webkit-filter: blur(3px);
4185
- filter: blur(3px); }
4186
-
4187
- .premium-img-gallery.sepia .pa-gallery-img:hover img {
4188
- -webkit-filter: sepia(0%);
4189
- filter: sepia(0%); }
4190
-
4191
- .premium-img-gallery.trans .pa-gallery-img:hover img {
4192
- -webkit-transform: translateX(0px) scale(1.1);
4193
- -ms-transform: translateX(0px) scale(1.1);
4194
- transform: translateX(0px) scale(1.1); }
4195
-
4196
- .premium-img-gallery.bright .pa-gallery-img:hover img {
4197
- -webkit-filter: brightness(1.2);
4198
- filter: brightness(1.2); }
4199
-
4200
- .pa-gallery-img .premium-gallery-caption {
4201
- padding: 10px; }
4202
- .pa-gallery-img .premium-gallery-caption .premium-gallery-img-name {
4203
- margin-bottom: 0; }
4204
-
4205
- .pa-gallery-img.style1 {
4206
- overflow: hidden; }
4207
-
4208
- .pa-gallery-img:not(.style2) .pa-gallery-icons-wrapper {
4209
- position: absolute;
4210
- top: 0;
4211
- left: 0;
4212
- width: 100%;
4213
- height: 100%;
4214
- -webkit-transition: all 0.3s ease-in-out;
4215
- transition: all 0.3s ease-in-out; }
4216
-
4217
- .pa-gallery-img:not(.style2) .pa-gallery-icons-inner-container {
4218
- position: absolute;
4219
- top: 33.33%;
4220
- width: 100%;
4221
- text-align: center;
4222
- -webkit-transform: translateY(-50%);
4223
- -ms-transform: translateY(-50%);
4224
- transform: translateY(-50%);
4225
- z-index: 999; }
4226
-
4227
- .pa-gallery-img.style1 .premium-gallery-caption {
4228
- position: absolute;
4229
- top: auto;
4230
- right: 0;
4231
- bottom: -1px;
4232
- left: 0;
4233
- width: 100%;
4234
- -webkit-transition: all 500ms ease 0s;
4235
- transition: all 500ms ease 0s;
4236
- -webkit-transform: translate3d(0, 100%, 0);
4237
- transform: translate3d(0, 100%, 0); }
4238
-
4239
- .pa-gallery-img.style1:hover .premium-gallery-caption {
4240
- -webkit-transform: translate3d(0, 0, 0);
4241
- transform: translate3d(0, 0, 0);
4242
- bottom: -1px !important; }
4243
-
4244
- .pa-gallery-img.default .premium-gallery-caption {
4245
- position: absolute;
4246
- top: auto;
4247
- right: 0;
4248
- left: 0;
4249
- width: 100%;
4250
- bottom: 0; }
4251
-
4252
- .pa-gallery-img.style2 .pa-gallery-icons-caption-container {
4253
- position: absolute;
4254
- top: 0;
4255
- left: 0;
4256
- width: 100%;
4257
- height: 100%;
4258
- opacity: 0;
4259
- -webkit-backface-visibility: hidden;
4260
- backface-visibility: hidden;
4261
- -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
4262
- transition: opacity 0.3s, -webkit-transform 0.3s;
4263
- transition: transform 0.3s, opacity 0.3s;
4264
- transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
4265
- z-index: 1;
4266
- background-color: rgba(108, 191, 226, 0.68);
4267
- -js-display: flex;
4268
- display: -webkit-box;
4269
- display: -webkit-flex;
4270
- display: -moz-box;
4271
- display: -ms-flexbox;
4272
- display: flex;
4273
- text-align: center;
4274
- -webkit-box-align: center;
4275
- -webkit-align-items: center;
4276
- -moz-box-align: center;
4277
- -ms-flex-align: center;
4278
- align-items: center; }
4279
-
4280
- .pa-gallery-img.style2 .pa-gallery-icons-caption-cell {
4281
- width: 100%; }
4282
-
4283
- .pa-gallery-img.style2:hover .pa-gallery-icons-caption-container {
4284
- opacity: 1;
4285
- -webkit-transform: translate(15px, 15px);
4286
- -ms-transform: translate(15px, 15px);
4287
- transform: translate(15px, 15px); }
4288
-
4289
- .premium-clearfix {
4290
- clear: both; }
4291
-
4292
- /**
4293
- * Metro Layout
4294
- */
4295
- .premium-img-gallery-metro .premium-gallery-item {
4296
- overflow: hidden; }
4297
-
4298
- .premium-img-gallery-metro .pa-gallery-img {
4299
- height: 100%; }
4300
-
4301
- .premium-img-gallery-metro .pa-gallery-img-container {
4302
- height: 100%; }
4303
- .premium-img-gallery-metro .pa-gallery-img-container img {
4304
- min-height: 100%;
4305
- width: 100%;
4306
- -o-object-fit: fill;
4307
- object-fit: fill; }
4308
-
4309
- .premium-img-gallery .premium-gallery-item-hidden {
4310
- visibility: hidden;
4311
- width: 0 !important;
4312
- height: 0 !important;
4313
- margin: 0 !important;
4314
- padding: 0 !important; }
4315
-
4316
- .premium-gallery-load-more {
4317
- position: relative; }
4318
- .premium-gallery-load-more .premium-gallery-load-more-btn {
4319
- -webkit-box-shadow: none;
4320
- box-shadow: none;
4321
- text-shadow: none;
4322
- border: none;
4323
- outline: none;
4324
- -webkit-box-align: center;
4325
- -webkit-align-items: center;
4326
- -moz-box-align: center;
4327
- -ms-flex-align: center;
4328
- align-items: center;
4329
- vertical-align: bottom;
4330
- cursor: pointer;
4331
- line-height: 1;
4332
- font-style: normal;
4333
- font-weight: normal;
4334
- background-image: none;
4335
- color: #fff;
4336
- -webkit-transition: all 0.3s ease-in-out;
4337
- transition: all 0.3s ease-in-out; }
4338
-
4339
- .premium-gallery-load-more-btn {
4340
- -js-display: inline-flex;
4341
- display: -webkit-inline-box;
4342
- display: -webkit-inline-flex;
4343
- display: -moz-inline-box;
4344
- display: -ms-inline-flexbox;
4345
- display: inline-flex;
4346
- -webkit-box-align: center;
4347
- -webkit-align-items: center;
4348
- -moz-box-align: center;
4349
- -ms-flex-align: center;
4350
- align-items: center; }
4351
-
4352
- .premium-gallery-load-more-btn div {
4353
- margin-left: 3px; }
4354
-
4355
- .premium-gallery-load-more-btn .premium-loader {
4356
- display: inline-block;
4357
- width: 20px;
4358
- height: 20px; }
4359
-
4360
- .pa-gallery-img .pa-gallery-lightbox-wrap {
4361
- display: inline-block; }
4362
-
4363
- .premium-img-gallery-no-lightbox .premium-gallery-video-item .pa-gallery-img,
4364
- .pa-gallery-img .pa-gallery-video-icon {
4365
- cursor: pointer; }
4366
-
4367
- .pa-gallery-img-container iframe {
4368
- position: absolute;
4369
- visibility: hidden;
4370
- top: 0;
4371
- left: 0;
4372
- max-width: 100%;
4373
- width: 100%;
4374
- height: 100%;
4375
- margin: 0;
4376
- line-height: 1;
4377
- border: none; }
4378
-
4379
- .pa-gallery-img-container video {
4380
- position: absolute;
4381
- visibility: hidden;
4382
- top: 0;
4383
- left: 0;
4384
- max-width: 100%;
4385
- width: 100%;
4386
- height: 100%;
4387
- margin: 0;
4388
- line-height: 1;
4389
- border: none;
4390
- -o-object-fit: contain;
4391
- object-fit: contain; }
4392
-
4393
- .pa-gallery-icons-inner-container svg,
4394
- .pa-gallery-icons-caption-cell svg {
4395
- width: 14px;
4396
- height: 14px; }
4397
-
4398
- .premium-gallery-gradient-layer {
4399
- position: absolute;
4400
- bottom: 40px;
4401
- width: 100%;
4402
- height: 20px;
4403
- background: -webkit-gradient(linear, left bottom, left top, from(#17181f), to(rgba(255, 255, 255, 0)));
4404
- background: -webkit-linear-gradient(bottom, #17181f 0%, rgba(255, 255, 255, 0) 100%);
4405
- background: linear-gradient(to top, #17181f 0%, rgba(255, 255, 255, 0) 100%); }
4406
-
4407
- /********* Premium Lottie Animations *********/
4408
- /*********************************************/
4409
- .elementor-widget-premium-lottie .premium-lottie-animation {
4410
- position: relative;
4411
- -js-display: inline-flex;
4412
- display: -webkit-inline-box;
4413
- display: -webkit-inline-flex;
4414
- display: -moz-inline-box;
4415
- display: -ms-inline-flexbox;
4416
- display: inline-flex;
4417
- -webkit-transition: all 0.3s ease-in-out;
4418
- transition: all 0.3s ease-in-out; }
4419
- .elementor-widget-premium-lottie .premium-lottie-animation a {
4420
- position: absolute;
4421
- left: 0;
4422
- top: 0;
4423
- width: 100%;
4424
- height: 100%;
4425
- z-index: 2; }
4426
-
4427
- /**************** Premium Google Maps ******************/
4428
- /*******************************************************/
4429
- .premium-maps-info-container {
4430
- margin-top: 10px;
4431
- margin-bottom: 10px; }
4432
-
4433
- .premium-maps-info-title,
4434
- .premium-maps-info-desc {
4435
- margin: 0;
4436
- padding: 0; }
4437
-
4438
- .premium-maps-container .gm-style-iw {
4439
- text-align: center; }
4440
-
4441
- .premium-maps-container .gm-style img {
4442
- max-width: none !important; }
4443
-
4444
- /**************** Premium Modal Box ****************/
4445
- /***************************************************/
4446
- .premium-modal-trigger-btn,
4447
- .premium-modal-box-modal-lower-close {
4448
- display: inline-block;
4449
- padding: 6px 12px;
4450
- margin-bottom: 0;
4451
- font-size: 14px;
4452
- font-weight: normal;
4453
- line-height: 1.42857143;
4454
- text-align: center;
4455
- white-space: nowrap;
4456
- vertical-align: middle;
4457
- -ms-touch-action: manipulation;
4458
- touch-action: manipulation;
4459
- cursor: pointer;
4460
- -webkit-user-select: none;
4461
- -moz-user-select: none;
4462
- -ms-user-select: none;
4463
- user-select: none;
4464
- background-image: none;
4465
- border: 1px solid transparent; }
4466
-
4467
- .premium-modal-trigger-btn > svg,
4468
- .premium-modal-trigger-btn .premium-modal-box-icon {
4469
- -webkit-transition: all 0.3s ease-in-out;
4470
- transition: all 0.3s ease-in-out; }
4471
-
4472
- .premium-modal-trigger-btn > svg {
4473
- width: 30px;
4474
- height: 30px; }
4475
-
4476
- .premium-modal-box-modal-close {
4477
- float: right;
4478
- font-size: 21px;
4479
- font-weight: bold;
4480
- line-height: 1;
4481
- color: #000; }
4482
- .premium-modal-box-modal-close:hover, .premium-modal-box-modal-close:focus {
4483
- color: #000;
4484
- text-decoration: none;
4485
- cursor: pointer; }
4486
-
4487
- button.premium-modal-box-modal-close {
4488
- -webkit-appearance: none;
4489
- padding: 0;
4490
- cursor: pointer;
4491
- background: transparent;
4492
- border: 0; }
4493
-
4494
- .premium-modal-box-modal {
4495
- position: fixed;
4496
- top: 0;
4497
- right: 0;
4498
- bottom: 0;
4499
- left: 0;
4500
- z-index: 1050;
4501
- display: none;
4502
- -webkit-overflow-scrolling: touch;
4503
- outline: 0;
4504
- padding: 0 !important;
4505
- background: rgba(0, 0, 0, 0.5);
4506
- -webkit-box-align: center;
4507
- -webkit-align-items: center;
4508
- -moz-box-align: center;
4509
- -ms-flex-align: center;
4510
- align-items: center;
4511
- -webkit-box-pack: center;
4512
- -webkit-justify-content: center;
4513
- -moz-box-pack: center;
4514
- -ms-flex-pack: center;
4515
- justify-content: center; }
4516
- .premium-modal-box-modal .premium-modal-box-modal-dialog {
4517
- position: absolute;
4518
- max-height: -webkit-calc(100vh - 150px);
4519
- max-height: calc(100vh - 150px);
4520
- -js-display: flex;
4521
- display: -webkit-box;
4522
- display: -webkit-flex;
4523
- display: -moz-box;
4524
- display: -ms-flexbox;
4525
- display: flex;
4526
- -webkit-box-orient: vertical;
4527
- -webkit-box-direction: normal;
4528
- -webkit-flex-direction: column;
4529
- -moz-box-orient: vertical;
4530
- -moz-box-direction: normal;
4531
- -ms-flex-direction: column;
4532
- flex-direction: column;
4533
- opacity: 0;
4534
- background-color: #fff;
4535
- border: 1px solid rgba(0, 0, 0, 0.2);
4536
- -webkit-border-radius: 6px;
4537
- border-radius: 6px; }
4538
-
4539
- .premium-modal-box-modal-content {
4540
- background-clip: padding-box;
4541
- outline: 0;
4542
- overflow-x: hidden; }
4543
-
4544
- .premium-modal-backdrop.premium-in {
4545
- filter: alpha(opacity=50);
4546
- opacity: 0.5 !important; }
4547
-
4548
- .premium-in {
4549
- opacity: 1; }
4550
-
4551
- .premium-modal-backdrop {
4552
- position: fixed;
4553
- top: 0;
4554
- right: 0;
4555
- bottom: 0;
4556
- left: 0;
4557
- z-index: 1040;
4558
- background-color: #000; }
4559
-
4560
- .premium-in {
4561
- -js-display: flex !important;
4562
- display: -webkit-box !important;
4563
- display: -webkit-flex !important;
4564
- display: -moz-box !important;
4565
- display: -ms-flexbox !important;
4566
- display: flex !important; }
4567
-
4568
- .premium-modal-box-modal-header {
4569
- -js-display: flex;
4570
- display: -webkit-box;
4571
- display: -webkit-flex;
4572
- display: -moz-box;
4573
- display: -ms-flexbox;
4574
- display: flex;
4575
- -webkit-box-pack: justify;
4576
- -webkit-justify-content: space-between;
4577
- -moz-box-pack: justify;
4578
- -ms-flex-pack: justify;
4579
- justify-content: space-between;
4580
- -webkit-box-align: center;
4581
- -webkit-align-items: center;
4582
- -moz-box-align: center;
4583
- -ms-flex-align: center;
4584
- align-items: center;
4585
- padding: 5px 15px;
4586
- border-bottom: 1px solid #e5e5e5; }
4587
- .premium-modal-box-modal-header .premium-modal-box-modal-close {
4588
- margin-top: -2px; }
4589
- .premium-modal-box-modal-header .premium-modal-box-modal-title {
4590
- -js-display: flex;
4591
- display: -webkit-box;
4592
- display: -webkit-flex;
4593
- display: -moz-box;
4594
- display: -ms-flexbox;
4595
- display: flex;
4596
- -webkit-box-align: center;
4597
- -webkit-align-items: center;
4598
- -moz-box-align: center;
4599
- -ms-flex-align: center;
4600
- align-items: center;
4601
- margin: 0;
4602
- padding: 0; }
4603
- .premium-modal-box-modal-header .premium-modal-box-modal-title svg {
4604
- width: 50px;
4605
- height: 60px; }
4606
-
4607
- .premium-modal-box-modal-body {
4608
- position: relative;
4609
- padding: 15px; }
4610
-
4611
- .premium-modal-box-modal-footer {
4612
- padding: 15px;
4613
- text-align: right;
4614
- border-top: 1px solid #e5e5e5; }
4615
-
4616
- .premium-modal-scrollbar-measure {
4617
- position: absolute;
4618
- top: -9999px;
4619
- width: 50px;
4620
- height: 50px;
4621
- overflow: scroll; }
4622
-
4623
- .premium-modal-trigger-text {
4624
- background: none !important;
4625
- display: inline-block; }
4626
-
4627
- .premium-modal-box-container {
4628
- width: 100% !important; }
4629
-
4630
- /*Open Modal Button Style*/
4631
- .premium-modal-trigger-container .premium-modal-trigger-btn {
4632
- -js-display: inline-flex;
4633
- display: -webkit-inline-box;
4634
- display: -webkit-inline-flex;
4635
- display: -moz-inline-box;
4636
- display: -ms-inline-flexbox;
4637
- display: inline-flex;
4638
- -webkit-box-align: center;
4639
- -webkit-align-items: center;
4640
- -moz-box-align: center;
4641
- -ms-flex-align: center;
4642
- align-items: center;
4643
- border: none;
4644
- -webkit-transition: all 0.3s ease-in-out;
4645
- transition: all 0.3s ease-in-out; }
4646
- .premium-modal-trigger-container .premium-modal-trigger-btn.premium-btn-block {
4647
- -webkit-box-pack: center;
4648
- -webkit-justify-content: center;
4649
- -moz-box-pack: center;
4650
- -ms-flex-pack: center;
4651
- justify-content: center; }
4652
-
4653
- .premium-modal-trigger-container .premium-modal-trigger-img,
4654
- .premium-modal-trigger-container .premium-modal-trigger-text,
4655
- .premium-modal-trigger-container .premium-modal-trigger-animation {
4656
- cursor: pointer; }
4657
-
4658
- .premium-modal-trigger-container .premium-modal-trigger-animation {
4659
- display: inline-block;
4660
- width: 200px;
4661
- height: 200px;
4662
- -webkit-transition: all 0.3s ease-in-out;
4663
- transition: all 0.3s ease-in-out; }
4664
-
4665
- /*Image on Modal Header Style*/
4666
- .premium-modal-box-modal-header img {
4667
- width: 48px;
4668
- padding-right: 5px; }
4669
-
4670
- .premium-modal-box-modal-header i,
4671
- .premium-modal-box-modal-header svg {
4672
- padding-right: 6px; }
4673
-
4674
- .premium-modal-box-modal-close {
4675
- position: relative;
4676
- z-index: 99; }
4677
-
4678
- .premium-modal-trigger-img,
4679
- .premium-modal-trigger-text,
4680
- .premium-modal-box-close-button-container,
4681
- .premium-modal-box-modal-close,
4682
- .premium-modal-box-modal-lower-close {
4683
- -webkit-transition: all 0.3s ease-in-out;
4684
- transition: all 0.3s ease-in-out; }
4685
-
4686
- @media (min-width: 768px) {
4687
- .premium-modal-box-modal-dialog {
4688
- width: 700px;
4689
- max-height: 600px;
4690
- overflow: auto; } }
4691
-
4692
- @media (max-width: 767px) {
4693
- .premium-modal-box-modal-dialog {
4694
- width: 100%;
4695
- max-height: 500px;
4696
- overflow: auto; } }
4697
-
4698
- .premium-modal-box-container[data-modal-animation*="animated-"] {
4699
- opacity: 0; }
4700
-
4701
- /************ Premium Team Members ************/
4702
- /**********************************************/
4703
- .premium-person-container {
4704
- position: relative; }
4705
-
4706
- .premium-person-image-container {
4707
- position: relative;
4708
- text-align: center;
4709
- overflow: hidden; }
4710
- .premium-person-image-container .premium-person-image-wrap {
4711
- overflow: hidden; }
4712
-
4713
- .premium-person-zoomout-effect .premium-person-image-container img,
4714
- .premium-person-scale-effect .premium-person-image-container img {
4715
- -webkit-transform: scale(1.2);
4716
- -ms-transform: scale(1.2);
4717
- transform: scale(1.2); }
4718
-
4719
- .premium-person-sepia-effect .premium-person-image-container img {
4720
- -webkit-filter: sepia(30%);
4721
- filter: sepia(30%); }
4722
-
4723
- .premium-person-bright-effect .premium-person-image-container img {
4724
- -webkit-filter: brightness(1);
4725
- filter: brightness(1); }
4726
-
4727
- .premium-person-trans-effect .premium-person-image-container img {
4728
- -webkit-transform: translateX(-15px) scale(1.1);
4729
- -ms-transform: translateX(-15px) scale(1.1);
4730
- transform: translateX(-15px) scale(1.1); }
4731
-
4732
- .premium-person-zoomin-effect:hover .premium-person-image-container img {
4733
- -webkit-transform: scale(1.2);
4734
- -ms-transform: scale(1.2);
4735
- transform: scale(1.2); }
4736
-
4737
- .premium-person-zoomout-effect:hover .premium-person-image-container img {
4738
- -webkit-transform: scale(1.1);
4739
- -ms-transform: scale(1.1);
4740
- transform: scale(1.1); }
4741
-
4742
- .premium-person-scale-effect:hover .premium-person-image-container img {
4743
- -webkit-transform: scale(1.3) rotate(5deg);
4744
- -ms-transform: scale(1.3) rotate(5deg);
4745
- transform: scale(1.3) rotate(5deg); }
4746
-
4747
- .premium-person-grayscale-effect:hover .premium-person-image-container img {
4748
- -webkit-filter: grayscale(100%);
4749
- filter: grayscale(100%); }
4750
-
4751
- .premium-person-blur-effect:hover .premium-person-image-container img {
4752
- -webkit-filter: blur(3px);
4753
- filter: blur(3px); }
4754
-
4755
- .premium-person-sepia-effect:hover .premium-person-image-container img {
4756
- -webkit-filter: sepia(0%);
4757
- filter: sepia(0%); }
4758
-
4759
- .premium-person-bright-effect:hover .premium-person-image-container img {
4760
- -webkit-filter: brightness(1.2);
4761
- filter: brightness(1.2); }
4762
-
4763
- .premium-person-trans-effect:hover .premium-person-image-container img {
4764
- -webkit-transform: translateX(0px) scale(1.1);
4765
- -ms-transform: translateX(0px) scale(1.1);
4766
- transform: translateX(0px) scale(1.1); }
4767
-
4768
- .premium-person-container .premium-person-image-container img {
4769
- width: 100%;
4770
- height: 100%;
4771
- -o-object-fit: cover;
4772
- object-fit: cover;
4773
- -webkit-transition: all 0.5s ease-in-out;
4774
- transition: all 0.5s ease-in-out; }
4775
-
4776
- .premium-person-style2 .premium-person-social {
4777
- position: absolute;
4778
- top: 0;
4779
- left: 0;
4780
- width: 100%;
4781
- height: 100%;
4782
- z-index: 2;
4783
- -js-display: flex;
4784
- display: -webkit-box;
4785
- display: -webkit-flex;
4786
- display: -moz-box;
4787
- display: -ms-flexbox;
4788
- display: flex;
4789
- -webkit-box-pack: center;
4790
- -webkit-justify-content: center;
4791
- -moz-box-pack: center;
4792
- -ms-flex-pack: center;
4793
- justify-content: center;
4794
- -webkit-box-align: center;
4795
- -webkit-align-items: center;
4796
- -moz-box-align: center;
4797
- -ms-flex-align: center;
4798
- align-items: center;
4799
- -webkit-box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
4800
- box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
4801
- -webkit-transition: all 0.5s linear 0s;
4802
- transition: all 0.5s linear 0s;
4803
- opacity: 0; }
4804
-
4805
- .premium-person-style2 .premium-person-image-container:hover .premium-person-social {
4806
- opacity: 1; }
4807
-
4808
- .premium-person-list-item a {
4809
- display: inline-block; }
4810
-
4811
- .premium-person-style2 .premium-person-list-item a {
4812
- opacity: 0;
4813
- -webkit-transform: scale(0);
4814
- -ms-transform: scale(0);
4815
- transform: scale(0);
4816
- -webkit-transition: all 0.5s ease-in-out 0s;
4817
- transition: all 0.5s ease-in-out 0s; }
4818
-
4819
- .premium-person-style2 .premium-person-image-container:hover .premium-person-list-item a {
4820
- opacity: 1;
4821
- -webkit-transform: scale(1);
4822
- -ms-transform: scale(1);
4823
- transform: scale(1); }
4824
-
4825
- .premium-person-info-container {
4826
- padding: 30px 15px; }
4827
-
4828
- .premium-person-name {
4829
- margin: 0 0 5px;
4830
- font-weight: 700; }
4831
-
4832
- .premium-person-title {
4833
- margin: 0 0 20px;
4834
- padding: 0; }
4835
-
4836
- .premium-person-content {
4837
- margin: 0 0 30px; }
4838
-
4839
- /*Override Theme List Margin*/
4840
- ul.premium-person-social-list {
4841
- margin: 0px !important;
4842
- padding: 0; }
4843
-
4844
- .premium-person-social-list .premium-person-list-item {
4845
- display: inline;
4846
- list-style: none; }
4847
-
4848
- .premium-person-social-list li {
4849
- position: relative;
4850
- bottom: 0px;
4851
- -webkit-transition: all 0.2s ease-in-out;
4852
- transition: all 0.2s ease-in-out; }
4853
- .premium-person-social-list li i {
4854
- position: relative;
4855
- bottom: 0px;
4856
- -webkit-transition: all 0.2s ease-in-out;
4857
- transition: all 0.2s ease-in-out; }
4858
-
4859
- .premium-person-defaults-yes li.premium-person-facebook:hover a {
4860
- background-color: #3b5998 !important; }
4861
-
4862
- .premium-person-defaults-yes li.premium-person-twitter:hover a {
4863
- background-color: #55acee !important; }
4864
-
4865
- .premium-person-defaults-yes li.premium-person-linkedin:hover a {
4866
- background-color: #0077b5 !important; }
4867
-
4868
- .premium-person-defaults-yes li.premium-person-google:hover a {
4869
- background-color: #dc4e41 !important; }
4870
-
4871
- .premium-person-defaults-yes li.premium-person-youtube:hover a {
4872
- background-color: #b31217 !important; }
4873
-
4874
- .premium-person-defaults-yes li.premium-person-instagram:hover a {
4875
- background-color: #e4405f !important; }
4876
-
4877
- .premium-person-defaults-yes li.premium-person-skype:hover a {
4878
- background-color: #00aff0 !important; }
4879
-
4880
- .premium-person-defaults-yes li.premium-person-pinterest:hover a {
4881
- background-color: #bd081c !important; }
4882
-
4883
- .premium-person-defaults-yes li.premium-person-dribbble:hover a {
4884
- background-color: #ea4c89 !important; }
4885
-
4886
- .premium-person-defaults-yes li.premium-person-mail:hover a {
4887
- background-color: #b23121 !important; }
4888
-
4889
- .premium-person-defaults-yes li.premium-person-behance:hover a {
4890
- background-color: #1769ff !important; }
4891
-
4892
- .premium-person-defaults-yes li.premium-person-whatsapp:hover a {
4893
- background-color: #25d366 !important; }
4894
-
4895
- .premium-person-defaults-yes li.premium-person-telegram:hover a {
4896
- background-color: #0088cc !important; }
4897
-
4898
- .premium-person-defaults-yes li.premium-person-site:hover a {
4899
- background-color: #0055a5 !important; }
4900
-
4901
- .premium-person-social-list li:hover a {
4902
- -webkit-box-shadow: none;
4903
- box-shadow: none; }
4904
-
4905
- .premium-person-social-list li a:focus {
4906
- -webkit-box-shadow: none;
4907
- box-shadow: none;
4908
- outline: none; }
4909
-
4910
- .premium-person-social-list li i {
4911
- font-size: 18px; }
4912
-
4913
- .elementor-widget-premium-addon-person .elementor-widget-container {
4914
- -js-display: flex;
4915
- display: -webkit-box;
4916
- display: -webkit-flex;
4917
- display: -moz-box;
4918
- display: -ms-flexbox;
4919
- display: flex;
4920
- -webkit-box-pack: center;
4921
- -webkit-justify-content: center;
4922
- -moz-box-pack: center;
4923
- -ms-flex-pack: center;
4924
- justify-content: center; }
4925
-
4926
- .premium-persons-container.multiple-persons {
4927
- -js-display: flex;
4928
- display: -webkit-box;
4929
- display: -webkit-flex;
4930
- display: -moz-box;
4931
- display: -ms-flexbox;
4932
- display: flex;
4933
- -webkit-flex-wrap: wrap;
4934
- -ms-flex-wrap: wrap;
4935
- flex-wrap: wrap;
4936
- width: 100%; }
4937
-
4938
- .premium-person-style1 .premium-person-container {
4939
- overflow: hidden; }
4940
- .premium-person-style1 .premium-person-container .premium-person-info {
4941
- position: absolute;
4942
- top: auto;
4943
- right: 0;
4944
- left: 0;
4945
- -webkit-transition: all 500ms ease 0s;
4946
- transition: all 500ms ease 0s;
4947
- -webkit-transform: translate3d(0, 100%, 0);
4948
- transform: translate3d(0, 100%, 0); }
4949
- .premium-person-style1 .premium-person-container:hover .premium-person-info {
4950
- -webkit-transform: translate3d(0, 0, 0);
4951
- transform: translate3d(0, 0, 0);
4952
- bottom: -1px !important; }
4953
-
4954
- .premium-person-style1 .premium-person-social-list li:hover {
4955
- bottom: 5px; }
4956
-
4957
- .premium-person-style1.multiple-persons:not([data-persons-equal="yes"]) {
4958
- -webkit-box-align: start;
4959
- -webkit-align-items: flex-start;
4960
- -moz-box-align: start;
4961
- -ms-flex-align: start;
4962
- align-items: flex-start; }
4963
-
4964
- .premium-person-style1 .slick-track {
4965
- -js-display: flex;
4966
- display: -webkit-box;
4967
- display: -webkit-flex;
4968
- display: -moz-box;
4969
- display: -ms-flexbox;
4970
- display: flex; }
4971
-
4972
- .premium-person-style1 .slick-slide {
4973
- height: inherit !important; }
4974
-
4975
- .premium-person-style1.multiple-persons[data-persons-equal="yes"] .premium-person-image-container,
4976
- .premium-person-style1.multiple-persons[data-persons-equal="yes"] .premium-person-image-wrap {
4977
- height: 100%; }
4978
-
4979
- .premium-person-style3 .premium-person-info-container {
4980
- position: absolute;
4981
- top: 0;
4982
- left: 0;
4983
- width: 100%;
4984
- height: 100%;
4985
- -js-display: flex;
4986
- display: -webkit-box;
4987
- display: -webkit-flex;
4988
- display: -moz-box;
4989
- display: -ms-flexbox;
4990
- display: flex;
4991
- -webkit-box-orient: vertical;
4992
- -webkit-box-direction: normal;
4993
- -webkit-flex-direction: column;
4994
- -moz-box-orient: vertical;
4995
- -moz-box-direction: normal;
4996
- -ms-flex-direction: column;
4997
- flex-direction: column;
4998
- -webkit-box-pack: justify;
4999
- -webkit-justify-content: space-between;
5000
- -moz-box-pack: justify;
5001
- -ms-flex-pack: justify;
5002
- justify-content: space-between; }
5003
-
5004
- .premium-person-style3 .premium-person-title-desc-wrap {
5005
- -js-display: flex;
5006
- display: -webkit-box;
5007
- display: -webkit-flex;
5008
- display: -moz-box;
5009
- display: -ms-flexbox;
5010
- display: flex;
5011
- -webkit-box-orient: horizontal;
5012
- -webkit-box-direction: reverse;
5013
- -webkit-flex-direction: row-reverse;
5014
- -moz-box-orient: horizontal;
5015
- -moz-box-direction: reverse;
5016
- -ms-flex-direction: row-reverse;
5017
- flex-direction: row-reverse;
5018
- -webkit-box-pack: justify;
5019
- -webkit-justify-content: space-between;
5020
- -moz-box-pack: justify;
5021
- -ms-flex-pack: justify;
5022
- justify-content: space-between;
5023
- -webkit-box-align: start;
5024
- -webkit-align-items: flex-start;
5025
- -moz-box-align: start;
5026
- -ms-flex-align: start;
5027
- align-items: flex-start; }
5028
-
5029
- .premium-person-style3 .premium-person-name-icons-wrap {
5030
- -js-display: flex;
5031
- display: -webkit-box;
5032
- display: -webkit-flex;
5033
- display: -moz-box;
5034
- display: -ms-flexbox;
5035
- display: flex;
5036
- -webkit-box-pack: justify;
5037
- -webkit-justify-content: space-between;
5038
- -moz-box-pack: justify;
5039
- -ms-flex-pack: justify;
5040
- justify-content: space-between;
5041
- -webkit-box-align: end;
5042
- -webkit-align-items: flex-end;
5043
- -moz-box-align: end;
5044
- -ms-flex-align: end;
5045
- align-items: flex-end; }
5046
-
5047
- .premium-person-style3 .premium-person-title {
5048
- opacity: 0;
5049
- -webkit-transition: all 0.3s ease;
5050
- transition: all 0.3s ease;
5051
- width: 0; }
5052
- .premium-person-style3 .premium-person-title span {
5053
- display: inline-block; }
5054
-
5055
- .premium-person-style3 .premium-person-name {
5056
- padding-left: 10px; }
5057
-
5058
- .premium-person-style3 .premium-person-social-list {
5059
- -js-display: flex;
5060
- display: -webkit-box;
5061
- display: -webkit-flex;
5062
- display: -moz-box;
5063
- display: -ms-flexbox;
5064
- display: flex;
5065
- -webkit-box-orient: vertical;
5066
- -webkit-box-direction: normal;
5067
- -webkit-flex-direction: column;
5068
- -moz-box-orient: vertical;
5069
- -moz-box-direction: normal;
5070
- -ms-flex-direction: column;
5071
- flex-direction: column;
5072
- -webkit-transform: translateY(20px);
5073
- -ms-transform: translateY(20px);
5074
- transform: translateY(20px);
5075
- opacity: 0;
5076
- -webkit-transition: all 0.3s ease;
5077
- transition: all 0.3s ease; }
5078
-
5079
- .premium-person-style3 .premium-person-list-item {
5080
- line-height: 0; }
5081
- .premium-person-style3 .premium-person-list-item a {
5082
- padding: 5px 10px 0 0;
5083
- margin: 5px 0; }
5084
-
5085
- .premium-person-style3 .premium-person-container:hover .premium-person-title {
5086
- opacity: 1; }
5087
-
5088
- .premium-person-style3 .premium-person-container:hover .premium-person-social-list {
5089
- opacity: 1;
5090
- -webkit-transform: translateY(0);
5091
- -ms-transform: translateY(0);
5092
- transform: translateY(0); }
5093
-
5094
- .premium-persons-title-cw .premium-person-title {
5095
- -webkit-transform: translateX(15px) rotate(90deg);
5096
- -ms-transform: translateX(15px) rotate(90deg);
5097
- transform: translateX(15px) rotate(90deg);
5098
- -webkit-transform-origin: top;
5099
- -ms-transform-origin: top;
5100
- transform-origin: top; }
5101
-
5102
- .premium-persons-title-cw .premium-person-container:hover .premium-person-title {
5103
- -webkit-transform: translateX(0) rotate(90deg);
5104
- -ms-transform: translateX(0) rotate(90deg);
5105
- transform: translateX(0) rotate(90deg); }
5106
-
5107
- .premium-persons-title-ccw .premium-person-title {
5108
- width: auto;
5109
- margin-right: 20px;
5110
- -webkit-transform: translateX(15px) rotate(-90deg);
5111
- -ms-transform: translateX(15px) rotate(-90deg);
5112
- transform: translateX(15px) rotate(-90deg);
5113
- -webkit-transform-origin: center right;
5114
- -ms-transform-origin: center right;
5115
- transform-origin: center right; }
5116
-
5117
- .premium-persons-title-ccw .premium-person-container:hover .premium-person-title {
5118
- -webkit-transform: translateX(0) rotate(-90deg);
5119
- -ms-transform: translateX(0) rotate(-90deg);
5120
- transform: translateX(0) rotate(-90deg); }
5121
-
5122
- /**************** Premium Pricing Table ****************/
5123
- /*******************************************************/
5124
- .premium-pricing-table-container {
5125
- position: relative;
5126
- overflow: hidden;
5127
- text-align: center;
5128
- -webkit-transition: all 0.3s ease-in-out;
5129
- transition: all 0.3s ease-in-out; }
5130
-
5131
- .premium-pricing-icon-container {
5132
- -js-display: flex;
5133
- display: -webkit-box;
5134
- display: -webkit-flex;
5135
- display: -moz-box;
5136
- display: -ms-flexbox;
5137
- display: flex;
5138
- -webkit-box-pack: center;
5139
- -webkit-justify-content: center;
5140
- -moz-box-pack: center;
5141
- -ms-flex-pack: center;
5142
- justify-content: center;
5143
- line-height: 0; }
5144
- .premium-pricing-icon-container .premium-pricing-icon {
5145
- display: inline-block; }
5146
- .premium-pricing-icon-container .premium-pricing-image {
5147
- overflow: hidden; }
5148
- .premium-pricing-icon-container .premium-pricing-image img {
5149
- width: 25px;
5150
- height: 25px;
5151
- -o-object-fit: cover;
5152
- object-fit: cover; }
5153
-
5154
- .premium-badge-left {
5155
- position: absolute;
5156
- top: 0; }
5157
-
5158
- .premium-badge-right {
5159
- position: absolute;
5160
- top: 0;
5161
- right: 0; }
5162
-
5163
- .premium-badge-left {
5164
- left: 0; }
5165
-
5166
- .premium-badge-triangle.premium-badge-left .corner {
5167
- width: 0;
5168
- height: 0;
5169
- border-top: 150px solid;
5170
- border-bottom: 150px solid transparent;
5171
- border-right: 150px solid transparent; }
5172
-
5173
- .premium-badge-triangle.premium-badge-right .corner {
5174
- width: 0;
5175
- height: 0;
5176
- border-bottom: 150px solid transparent;
5177
- border-right: 150px solid;
5178
- border-left: 150px solid transparent; }
5179
-
5180
- .premium-badge-triangle span {
5181
- position: absolute;
5182
- top: 35px;
5183
- width: 100px;
5184
- text-align: center;
5185
- -webkit-transform: rotate(-45deg);
5186
- -ms-transform: rotate(-45deg);
5187
- transform: rotate(-45deg);
5188
- display: block;
5189
- text-transform: uppercase; }
5190
-
5191
- .premium-badge-triangle.premium-badge-right span {
5192
- -webkit-transform: rotate(45deg);
5193
- -ms-transform: rotate(45deg);
5194
- transform: rotate(45deg);
5195
- right: 0; }
5196
-
5197
- .premium-badge-circle {
5198
- min-width: 4em;
5199
- min-height: 4em;
5200
- line-height: 4em;
5201
- text-align: center;
5202
- -webkit-border-radius: 100%;
5203
- border-radius: 100%;
5204
- position: absolute;
5205
- z-index: 1; }
5206
-
5207
- .premium-badge-stripe {
5208
- position: absolute;
5209
- -webkit-transform: rotate(90deg);
5210
- -ms-transform: rotate(90deg);
5211
- transform: rotate(90deg);
5212
- width: 15em;
5213
- overflow: hidden;
5214
- height: 15em; }
5215
- .premium-badge-stripe.premium-badge-left {
5216
- -webkit-transform: rotate(0);
5217
- -ms-transform: rotate(0);
5218
- transform: rotate(0); }
5219
- .premium-badge-stripe .corner {
5220
- text-align: center;
5221
- left: 0;
5222
- width: 150%;
5223
- -webkit-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
5224
- -ms-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
5225
- transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
5226
- margin-top: 35px;
5227
- font-size: 13px;
5228
- line-height: 2;
5229
- font-weight: 800;
5230
- text-transform: uppercase; }
5231
-
5232
- .premium-badge-flag .corner {
5233
- text-align: center;
5234
- -webkit-border-radius: 4px 4px 0 4px;
5235
- border-radius: 4px 4px 0 4px;
5236
- padding: 3px 15px;
5237
- position: absolute;
5238
- top: 10%;
5239
- right: -8px; }
5240
- .premium-badge-flag .corner::before, .premium-badge-flag .corner::after {
5241
- content: "";
5242
- display: block;
5243
- position: absolute;
5244
- width: 0;
5245
- height: 0;
5246
- top: 100%;
5247
- right: 0;
5248
- border-bottom: 8px solid transparent; }
5249
-
5250
- .elementor-widget-premium-addon-pricing-table .elementor-widget-container {
5251
- overflow: visible !important; }
5252
-
5253
- .premium-badge-flag .corner::after {
5254
- border-left: 8px solid rgba(0, 0, 0, 0.2); }
5255
-
5256
- .premium-pricing-price-currency {
5257
- position: relative; }
5258
-
5259
- .premium-pricing-button-container {
5260
- display: block; }
5261
-
5262
- .premium-pricing-list {
5263
- -js-display: flex;
5264
- display: -webkit-box;
5265
- display: -webkit-flex;
5266
- display: -moz-box;
5267
- display: -ms-flexbox;
5268
- display: flex;
5269
- -webkit-box-orient: vertical;
5270
- -webkit-box-direction: normal;
5271
- -webkit-flex-direction: column;
5272
- -moz-box-orient: vertical;
5273
- -moz-box-direction: normal;
5274
- -ms-flex-direction: column;
5275
- flex-direction: column;
5276
- list-style-type: none;
5277
- margin: 0; }
5278
- .premium-pricing-list .premium-pricing-list-item {
5279
- -js-display: flex;
5280
- display: -webkit-box;
5281
- display: -webkit-flex;
5282
- display: -moz-box;
5283
- display: -ms-flexbox;
5284
- display: flex;
5285
- -webkit-box-align: center;
5286
- -webkit-align-items: center;
5287
- -moz-box-align: center;
5288
- -ms-flex-align: center;
5289
- align-items: center; }
5290
- .premium-pricing-list .premium-pricing-list-item svg {
5291
- width: 50px;
5292
- height: 50px; }
5293
- .premium-pricing-list .premium-pricing-list-item img {
5294
- width: 30px;
5295
- height: 30px;
5296
- -o-object-fit: cover;
5297
- object-fit: cover; }
5298
- .premium-pricing-list .premium-pricing-list-span {
5299
- position: relative; }
5300
- .premium-pricing-list .list-item-tooltip {
5301
- border-bottom: 1px dotted; }
5302
- .premium-pricing-list .premium-pricing-list-tooltip {
5303
- position: absolute;
5304
- top: -webkit-calc(100% + 1px);
5305
- top: calc(100% + 1px);
5306
- left: 0;
5307
- visibility: hidden;
5308
- padding: 15px 20px;
5309
- -webkit-border-radius: 5px;
5310
- border-radius: 5px;
5311
- min-width: 200px;
5312
- overflow: hidden;
5313
- text-align: left;
5314
- font-size: 0.8rem;
5315
- color: #fff;
5316
- background-color: #aaa; }
5317
-
5318
- .premium-pricing-features-left .premium-pricing-list-span {
5319
- text-align: left; }
5320
-
5321
- .premium-pricing-features-center .premium-pricing-list-span {
5322
- text-align: center; }
5323
-
5324
- .premium-pricing-features-right .premium-pricing-list-span {
5325
- text-align: right; }
5326
-
5327
- .premium-pricing-list-span:hover .premium-pricing-list-tooltip {
5328
- z-index: 99;
5329
- visibility: visible;
5330
- opacity: 1; }
5331
-
5332
- .premium-pricing-slashed-price-value {
5333
- display: inline-block;
5334
- font-size: 20px;
5335
- font-weight: 400;
5336
- margin-right: 5px; }
5337
-
5338
- .premium-pricing-price-value {
5339
- font-size: 70px; }
5340
-
5341
- .premium-pricing-description-container li {
5342
- list-style-position: inside;
5343
- text-indent: -40px; }
5344
-
5345
- @-moz-document url-prefix() {
5346
- .premium-pricing-description-container li {
5347
- text-indent: 0px; } }
5348
-
5349
- .premium-pricing-price-button {
5350
- display: block;
5351
- padding: 6px 12px;
5352
- line-height: 1.42857143;
5353
- text-align: center;
5354
- color: #fff;
5355
- background: #6ec1e4;
5356
- margin-bottom: 0;
5357
- -webkit-transition: all 0.3s ease-in-out;
5358
- transition: all 0.3s ease-in-out; }
5359
-
5360
- /**************** Premium Progress Bar ****************/
5361
- /******************************************************/
5362
- .premium-progressbar-container {
5363
- position: relative; }
5364
-
5365
- .premium-progressbar-bar-wrap {
5366
- position: relative;
5367
- text-align: left;
5368
- overflow: hidden;
5369
- height: 25px;
5370
- margin-bottom: 50px;
5371
- background-color: #f5f5f5;
5372
- -webkit-border-radius: 4px;
5373
- border-radius: 4px;
5374
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
5375
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }
5376
- .premium-progressbar-bar-wrap.premium-progressbar-dots {
5377
- background-color: transparent;
5378
- width: 100%;
5379
- -js-display: flex;
5380
- display: -webkit-box;
5381
- display: -webkit-flex;
5382
- display: -moz-box;
5383
- display: -ms-flexbox;
5384
- display: flex;
5385
- height: auto;
5386
- -webkit-box-shadow: none;
5387
- box-shadow: none; }
5388
- .premium-progressbar-bar-wrap .progress-segment {
5389
- position: relative;
5390
- width: 25px;
5391
- height: 25px;
5392
- -webkit-border-radius: 50%;
5393
- border-radius: 50%;
5394
- overflow: hidden;
5395
- background-color: #f5f5f5; }
5396
- .premium-progressbar-bar-wrap .progress-segment.filled {
5397
- background: #6ec1e4; }
5398
- .premium-progressbar-bar-wrap .progress-segment:not(:first-child):not(:last-child) {
5399
- margin: 0 4px; }
5400
- .premium-progressbar-bar-wrap .progress-segment:first-child {
5401
- margin-right: 4px; }
5402
- .premium-progressbar-bar-wrap .progress-segment:last-child {
5403
- margin-left: 4px; }
5404
- .premium-progressbar-bar-wrap .progress-segment .segment-inner {
5405
- position: absolute;
5406
- top: 0;
5407
- left: 0;
5408
- height: 100%;
5409
- background-color: #6ec1e4; }
5410
-
5411
- .premium-progressbar-bar {
5412
- float: left;
5413
- width: 0%;
5414
- height: 100%;
5415
- font-size: 12px;
5416
- line-height: 20px;
5417
- background: #6ec1e4;
5418
- text-align: center;
5419
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
5420
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); }
5421
-
5422
- .premium-progressbar-striped .premium-progressbar-bar {
5423
- 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);
5424
- 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);
5425
- -webkit-background-size: 40px 40px;
5426
- background-size: 40px 40px; }
5427
-
5428
- .premium-progressbar-active .premium-progressbar-bar {
5429
- -webkit-animation: progress-bar-stripes 2s linear infinite;
5430
- animation: progress-bar-stripes 2s linear infinite; }
5431
-
5432
- .premium-progressbar-gradient .premium-progressbar-bar {
5433
- -webkit-background-size: 400% 400% !important;
5434
- background-size: 400% 400% !important;
5435
- -webkit-animation: progress-bar-gradient 10s ease-in-out infinite;
5436
- animation: progress-bar-gradient 10s ease-in-out infinite; }
5437
-
5438
- .premium-progressbar-bar {
5439
- position: absolute;
5440
- overflow: hidden;
5441
- line-height: 20px; }
5442
-
5443
- .premium-progressbar-container .clearfix {
5444
- clear: both; }
5445
-
5446
- .premium-progressbar-bar {
5447
- -webkit-transition: width 0s ease-in-out !important;
5448
- transition: width 0s ease-in-out !important; }
5449
-
5450
- .premium-progressbar-container p:first-of-type {
5451
- margin: 0;
5452
- float: left; }
5453
-
5454
- .premium-progressbar-container p:nth-of-type(2) {
5455
- margin: 0;
5456
- float: right; }
5457
-
5458
- .premium-progressbar-name {
5459
- left: 50%;
5460
- top: 0;
5461
- right: 0;
5462
- -webkit-transform: translateX(-12.5px);
5463
- -ms-transform: translateX(-12.5px);
5464
- transform: translateX(-12.5px);
5465
- z-index: 1; }
5466
-
5467
- .premium-progressbar-multiple-label {
5468
- position: relative;
5469
- float: left;
5470
- width: 0;
5471
- left: 50%; }
5472
-
5473
- .premium-progressbar-center-label {
5474
- position: relative;
5475
- white-space: nowrap; }
5476
-
5477
- .premium-progressbar-arrow {
5478
- height: 15px;
5479
- left: 50%;
5480
- display: inline-block;
5481
- border-left: 7px solid transparent;
5482
- border-right: 7px solid transparent;
5483
- border-top: 11px solid;
5484
- -webkit-transform: translateX(-50%);
5485
- -ms-transform: translateX(-50%);
5486
- transform: translateX(-50%); }
5487
-
5488
- .premium-progressbar-pin {
5489
- border-left: 1px solid;
5490
- height: 12px;
5491
- left: 50%;
5492
- display: inline-block; }
5493
-
5494
- /**
5495
- * Circle Progress Bar
5496
- */
5497
- .premium-progressbar-circle-wrap {
5498
- width: 200px;
5499
- height: 200px;
5500
- position: relative;
5501
- margin: 0 auto; }
5502
- .premium-progressbar-circle-wrap .premium-progressbar-circle {
5503
- position: absolute;
5504
- top: 0;
5505
- left: 0;
5506
- width: 100%;
5507
- height: 100%;
5508
- -webkit-clip-path: inset(0 0 0 50%);
5509
- clip-path: inset(0 0 0 50%); }
5510
- .premium-progressbar-circle-wrap .premium-progressbar-circle div {
5511
- position: absolute;
5512
- left: 0;
5513
- top: 0;
5514
- height: 100%;
5515
- width: 100%;
5516
- border-width: 6px;
5517
- border-style: solid;
5518
- border-color: #54595f;
5519
- -webkit-border-radius: 50%;
5520
- border-radius: 50%;
5521
- -webkit-clip-path: inset(0 50% 0 0);
5522
- clip-path: inset(0 50% 0 0); }
5523
- .premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-left {
5524
- -webkit-transform: rotate(0);
5525
- -ms-transform: rotate(0);
5526
- transform: rotate(0); }
5527
- .premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-right {
5528
- -webkit-transform: rotate(180deg);
5529
- -ms-transform: rotate(180deg);
5530
- transform: rotate(180deg);
5531
- visibility: hidden; }
5532
- .premium-progressbar-circle-wrap .premium-progressbar-circle-base {
5533
- width: 100%;
5534
- height: 100%;
5535
- border: 6px solid #eee;
5536
- -webkit-border-radius: 50%;
5537
- border-radius: 50%; }
5538
- .premium-progressbar-circle-wrap .premium-progressbar-circle-content {
5539
- position: absolute;
5540
- top: 0;
5541
- left: 0;
5542
- width: 100%;
5543
- height: 100%;
5544
- -js-display: flex;
5545
- display: -webkit-box;
5546
- display: -webkit-flex;
5547
- display: -moz-box;
5548
- display: -ms-flexbox;
5549
- display: flex;
5550
- -webkit-box-orient: vertical;
5551
- -webkit-box-direction: normal;
5552
- -webkit-flex-direction: column;
5553
- -moz-box-orient: vertical;
5554
- -moz-box-direction: normal;
5555
- -ms-flex-direction: column;
5556
- flex-direction: column;
5557
- -webkit-box-pack: center;
5558
- -webkit-justify-content: center;
5559
- -moz-box-pack: center;
5560
- -ms-flex-pack: center;
5561
- justify-content: center;
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
- .premium-progressbar-circle-wrap .premium-lottie-animation {
5568
- line-height: 1; }
5569
-
5570
- @-webkit-keyframes progress-bar-stripes {
5571
- from {
5572
- background-position: 0 0; }
5573
- to {
5574
- background-position: 40px 0; } }
5575
-
5576
- @keyframes progress-bar-stripes {
5577
- from {
5578
- background-position: 0 0; }
5579
- to {
5580
- background-position: 40px 0; } }
5581
-
5582
- @-webkit-keyframes progress-bar-gradient {
5583
- 0% {
5584
- background-position: 0% 50%; }
5585
- 50% {
5586
- background-position: 100% 50%; }
5587
- 100% {
5588
- background-position: 0% 50%; } }
5589
-
5590
- @keyframes progress-bar-gradient {
5591
- 0% {
5592
- background-position: 0% 50%; }
5593
- 50% {
5594
- background-position: 100% 50%; }
5595
- 100% {
5596
- background-position: 0% 50%; } }
5597
-
5598
- /**************** Premium Testimonials ****************/
5599
- /******************************************************/
5600
- .premium-testimonial-box {
5601
- width: 100%;
5602
- background: transparent;
5603
- -webkit-transition: all 0.3s ease-in-out;
5604
- transition: all 0.3s ease-in-out; }
5605
- .premium-testimonial-box .premium-testimonial-author-info {
5606
- -js-display: flex;
5607
- display: -webkit-box;
5608
- display: -webkit-flex;
5609
- display: -moz-box;
5610
- display: -ms-flexbox;
5611
- display: flex;
5612
- -webkit-box-pack: center;
5613
- -webkit-justify-content: center;
5614
- -moz-box-pack: center;
5615
- -ms-flex-pack: center;
5616
- justify-content: center;
5617
- -webkit-box-align: center;
5618
- -webkit-align-items: center;
5619
- -moz-box-align: center;
5620
- -ms-flex-align: center;
5621
- align-items: center; }
5622
- .premium-testimonial-box .premium-testimonial-person-name,
5623
- .premium-testimonial-box .premium-testimonial-company-name {
5624
- font-weight: 600;
5625
- margin: 0; }
5626
-
5627
- .premium-testimonial-container {
5628
- position: relative; }
5629
-
5630
- .premium-testimonial-img-wrapper {
5631
- margin-left: auto;
5632
- margin-right: auto;
5633
- overflow: hidden;
5634
- border-style: solid !important; }
5635
- .premium-testimonial-img-wrapper.circle {
5636
- -webkit-border-radius: 50%;
5637
- border-radius: 50%; }
5638
- .premium-testimonial-img-wrapper.rounded {
5639
- -webkit-border-radius: 15px;
5640
- border-radius: 15px; }
5641
- .premium-testimonial-img-wrapper img {
5642
- -o-object-fit: cover;
5643
- object-fit: cover;
5644
- width: 100%;
5645
- height: 100% !important; }
5646
-
5647
- .premium-testimonial-content-wrapper {
5648
- position: relative;
5649
- -js-display: flex;
5650
- display: -webkit-box;
5651
- display: -webkit-flex;
5652
- display: -moz-box;
5653
- display: -ms-flexbox;
5654
- display: flex;
5655
- -webkit-box-orient: vertical;
5656
- -webkit-box-direction: normal;
5657
- -webkit-flex-direction: column;
5658
- -moz-box-orient: vertical;
5659
- -moz-box-direction: normal;
5660
- -ms-flex-direction: column;
5661
- flex-direction: column;
5662
- z-index: 2;
5663
- width: 100%;
5664
- padding: 20px;
5665
- text-align: center; }
5666
-
5667
- .premium-testimonial-clear-float {
5668
- clear: both; }
5669
-
5670
- .premium-testimonial-upper-quote,
5671
- .premium-testimonial-lower-quote {
5672
- position: absolute;
5673
- z-index: 1; }
5674
-
5675
- /**************** Premium Title ****************/
5676
- /***********************************************/
5677
- .premium-title-container {
5678
- position: relative;
5679
- width: 100%;
5680
- clear: both; }
5681
- .premium-title-container .premium-title-header {
5682
- position: relative;
5683
- margin: 0;
5684
- padding: 10px; }
5685
- .premium-title-container .premium-title-header:not(.premium-title-style7) {
5686
- -webkit-box-align: center;
5687
- -webkit-align-items: center;
5688
- -moz-box-align: center;
5689
- -ms-flex-align: center;
5690
- align-items: center; }
5691
- .premium-title-container .premium-title-header svg {
5692
- width: 40px;
5693
- height: 40px; }
5694
- .premium-title-container .premium-title-header img {
5695
- width: 40px;
5696
- height: 40px;
5697
- -o-object-fit: cover;
5698
- object-fit: cover; }
5699
- .premium-title-container .premium-title-header a {
5700
- position: absolute;
5701
- top: 0;
5702
- left: 0;
5703
- width: 100%;
5704
- height: 100%; }
5705
- .premium-title-container .premium-lottie-animation {
5706
- -js-display: flex;
5707
- display: -webkit-box;
5708
- display: -webkit-flex;
5709
- display: -moz-box;
5710
- display: -ms-flexbox;
5711
- display: flex; }
5712
-
5713
- .premium-title-icon-row .premium-title-icon {
5714
- margin-right: 10px; }
5715
-
5716
- .premium-title-icon-row-reverse .premium-title-icon {
5717
- margin-left: 10px; }
5718
-
5719
- .premium-title-style3,
5720
- .premium-title-style4 {
5721
- -js-display: flex;
5722
- display: -webkit-box;
5723
- display: -webkit-flex;
5724
- display: -moz-box;
5725
- display: -ms-flexbox;
5726
- display: flex; }
5727
-
5728
- .premium-title-style1,
5729
- .premium-title-style2,
5730
- .premium-title-style5,
5731
- .premium-title-style6,
5732
- .premium-title-style8,
5733
- .premium-title-style9 {
5734
- -js-display: inline-flex;
5735
- display: -webkit-inline-box;
5736
- display: -webkit-inline-flex;
5737
- display: -moz-inline-box;
5738
- display: -ms-inline-flexbox;
5739
- display: inline-flex; }
5740
-
5741
- .premium-title-style7 {
5742
- -js-display: inline-flex;
5743
- display: -webkit-inline-box;
5744
- display: -webkit-inline-flex;
5745
- display: -moz-inline-box;
5746
- display: -ms-inline-flexbox;
5747
- display: inline-flex;
5748
- -webkit-box-orient: vertical;
5749
- -webkit-box-direction: normal;
5750
- -webkit-flex-direction: column;
5751
- -moz-box-orient: vertical;
5752
- -moz-box-direction: normal;
5753
- -ms-flex-direction: column;
5754
- flex-direction: column; }
5755
- .premium-title-style7 .premium-title-style7-inner {
5756
- -js-display: flex;
5757
- display: -webkit-box;
5758
- display: -webkit-flex;
5759
- display: -moz-box;
5760
- display: -ms-flexbox;
5761
- display: flex;
5762
- -webkit-box-align: center;
5763
- -webkit-align-items: center;
5764
- -moz-box-align: center;
5765
- -ms-flex-align: center;
5766
- align-items: center; }
5767
-
5768
- .premium-title-style1 {
5769
- border-width: 0;
5770
- border-left: 3px solid #6ec1e4; }
5771
-
5772
- .premium-title-container.style2, .premium-title-container.style4, .premium-title-container.style5, .premium-title-container.style6 {
5773
- border-bottom: 3px solid #6ec1e4; }
5774
-
5775
- /*Style 6 Header*/
5776
- .premium-title-style6:before {
5777
- position: absolute;
5778
- left: 50%;
5779
- bottom: 0;
5780
- margin-left: -2px;
5781
- content: "";
5782
- border: 3px solid transparent; }
5783
-
5784
- /*Style 6 Trinagle*/
5785
- .premium-title-style7-stripe-wrap {
5786
- -js-display: flex;
5787
- display: -webkit-box;
5788
- display: -webkit-flex;
5789
- display: -moz-box;
5790
- display: -ms-flexbox;
5791
- display: flex; }
5792
-
5793
- .premium-title-style7:before {
5794
- display: none; }
5795
-
5796
- .premium-title-style8 .premium-title-text[data-animation="shiny"] {
5797
- -webkit-background-size: 125px 125px !important;
5798
- background-size: 125px !important;
5799
- color: rgba(255, 255, 255, 0);
5800
- -webkit-background-clip: text !important;
5801
- background-clip: text !important;
5802
- -webkit-animation-name: pa-shinny-text !important;
5803
- animation-name: pa-shinny-text !important;
5804
- -webkit-animation-duration: var(--animation-speed) !important;
5805
- animation-duration: var(--animation-speed) !important;
5806
- -webkit-animation-iteration-count: infinite !important;
5807
- animation-iteration-count: infinite !important;
5808
- 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; }
5809
-
5810
- @-webkit-keyframes pa-shinny-text {
5811
- 0% {
5812
- background-position: 0%; }
5813
- 100% {
5814
- background-position: 200%; } }
5815
-
5816
- @keyframes pa-shinny-text {
5817
- 0% {
5818
- background-position: 0%; }
5819
- 100% {
5820
- background-position: 200%; } }
5821
-
5822
- .premium-title-style9[data-animation-blur="process"] .premium-title-style9-letter {
5823
- -webkit-animation: pa-blur-shadow 2s 1 alternate;
5824
- animation: pa-blur-shadow 2s 1 alternate; }
5825
-
5826
- @-webkit-keyframes pa-blur-shadow {
5827
- from {
5828
- text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
5829
- color: transparent; }
5830
- to {
5831
- text-shadow: 0; } }
5832
-
5833
- @keyframes pa-blur-shadow {
5834
- from {
5835
- text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
5836
- color: transparent; }
5837
- to {
5838
- text-shadow: 0; } }
5839
-
5840
- .premium-title-gradient-yes .premium-title-text,
5841
- .premium-title-gradient-yes .premium-title-icon {
5842
- -webkit-background-clip: text;
5843
- -webkit-text-fill-color: transparent;
5844
- background-image: -webkit-gradient(linear, left top, right top, from(#ffa648), color-stop(#f17cc1), to(#4da9fd));
5845
- background-image: -webkit-linear-gradient(left, #ffa648, #f17cc1, #4da9fd);
5846
- background-image: linear-gradient(to right, #ffa648, #f17cc1, #4da9fd);
5847
- -webkit-animation: pa-text-gradient 8s infinite;
5848
- animation: pa-text-gradient 8s infinite; }
5849
-
5850
- .premium-title-clipped .premium-title-header {
5851
- -webkit-text-fill-color: transparent;
5852
- -webkit-background-clip: text;
5853
- background-clip: text; }
5854
-
5855
- @-webkit-keyframes pa-text-gradient {
5856
- 0%,
5857
- 100% {
5858
- -webkit-filter: hue-rotate(0deg);
5859
- filter: hue-rotate(0deg); }
5860
- 50% {
5861
- -webkit-filter: hue-rotate(360deg);
5862
- filter: hue-rotate(360deg); } }
5863
-
5864
- @keyframes pa-text-gradient {
5865
- 0%,
5866
- 100% {
5867
- -webkit-filter: hue-rotate(0deg);
5868
- filter: hue-rotate(0deg); }
5869
- 50% {
5870
- -webkit-filter: hue-rotate(360deg);
5871
- filter: hue-rotate(360deg); } }
5872
-
5873
- /**************** Premium Video Box ************/
5874
- /***********************************************/
5875
- .premium-video-box-transform {
5876
- -webkit-transform: none !important;
5877
- -ms-transform: none !important;
5878
- transform: none !important; }
5879
-
5880
- .premium-video-box-container {
5881
- -js-display: flex;
5882
- display: -webkit-box;
5883
- display: -webkit-flex;
5884
- display: -moz-box;
5885
- display: -ms-flexbox;
5886
- display: flex;
5887
- -webkit-box-orient: vertical;
5888
- -webkit-box-direction: normal;
5889
- -webkit-flex-direction: column;
5890
- -moz-box-orient: vertical;
5891
- -moz-box-direction: normal;
5892
- -ms-flex-direction: column;
5893
- flex-direction: column; }
5894
-
5895
- .premium-video-box-container > div {
5896
- position: relative;
5897
- overflow: hidden; }
5898
-
5899
- .pa-aspect-ratio-11 .premium-video-box-container > div {
5900
- padding-bottom: 100%; }
5901
-
5902
- .pa-aspect-ratio-169 .premium-video-box-container > div {
5903
- padding-bottom: 56.25%; }
5904
-
5905
- .pa-aspect-ratio-43 .premium-video-box-container > div {
5906
- padding-bottom: 75%; }
5907
-
5908
- .pa-aspect-ratio-32 .premium-video-box-container > div {
5909
- padding-bottom: 66.6666%; }
5910
-
5911
- .pa-aspect-ratio-219 .premium-video-box-container > div {
5912
- padding-bottom: 42.8571%; }
5913
-
5914
- .pa-aspect-ratio-916 .premium-video-box-container > div {
5915
- padding-bottom: 177.8%; }
5916
-
5917
- .premium-video-box-image-container {
5918
- position: absolute;
5919
- top: 0;
5920
- left: 0;
5921
- bottom: 0;
5922
- right: 0;
5923
- width: 100%;
5924
- height: 100%;
5925
- -webkit-background-size: cover;
5926
- background-size: cover;
5927
- background-position: 50%;
5928
- cursor: pointer;
5929
- margin: auto;
5930
- -webkit-transition: 0.2s all;
5931
- transition: 0.2s all; }
5932
-
5933
- .premium-video-box-play-icon-container {
5934
- position: absolute;
5935
- z-index: 2;
5936
- cursor: pointer;
5937
- -webkit-transform: translate(-50%, -50%);
5938
- -ms-transform: translate(-50%, -50%);
5939
- transform: translate(-50%, -50%);
5940
- background: rgba(252, 252, 252, 0.35); }
5941
-
5942
- .premium-video-box-description-container {
5943
- position: absolute;
5944
- z-index: 2;
5945
- padding: 5px;
5946
- text-align: center;
5947
- cursor: pointer;
5948
- -webkit-transform: translate(-50%, -50%);
5949
- -ms-transform: translate(-50%, -50%);
5950
- transform: translate(-50%, -50%); }
5951
-
5952
- .premium-video-box-text {
5953
- margin-bottom: 0 !important;
5954
- -webkit-transition: all 0.3s ease-in-out;
5955
- transition: all 0.3s ease-in-out; }
5956
-
5957
- .premium-video-box-play-icon {
5958
- padding: 15px;
5959
- -webkit-transform: translateX(4%);
5960
- -ms-transform: translateX(4%);
5961
- transform: translateX(4%);
5962
- -webkit-transition: all 0.3s ease-in-out;
5963
- transition: all 0.3s ease-in-out; }
5964
-
5965
- .premium-video-box-video-container {
5966
- position: absolute;
5967
- top: 0;
5968
- left: 0;
5969
- z-index: 2;
5970
- width: 100%;
5971
- height: 100%;
5972
- -webkit-transition: opacity 0.8s ease-in-out;
5973
- transition: opacity 0.8s ease-in-out;
5974
- overflow: hidden;
5975
- cursor: pointer; }
5976
-
5977
- .premium-video-box-container[data-overlay="true"][data-type="self"] .premium-video-box-video-container {
5978
- opacity: 0;
5979
- visibility: hidden; }
5980
-
5981
- .premium-video-box-video-container iframe {
5982
- max-width: 100%;
5983
- width: 100%;
5984
- height: 100%;
5985
- margin: 0;
5986
- line-height: 1;
5987
- border: none; }
5988
-
5989
- .premium-video-box-video-container video {
5990
- max-width: 100%;
5991
- width: 100%;
5992
- height: 100%;
5993
- margin: 0;
5994
- line-height: 1;
5995
- border: none;
5996
- background-color: #000;
5997
- -o-object-fit: contain;
5998
- object-fit: contain; }
5999
-
6000
- .premium-video-box-container .premium-video-box-vimeo-wrap {
6001
- -js-display: flex;
6002
- display: -webkit-box;
6003
- display: -webkit-flex;
6004
- display: -moz-box;
6005
- display: -ms-flexbox;
6006
- display: flex;
6007
- position: absolute;
6008
- top: 0;
6009
- left: 0;
6010
- z-index: 3;
6011
- margin: 10px;
6012
- margin-right: 10px;
6013
- -webkit-transition: opacity 0.2s ease-out;
6014
- transition: opacity 0.2s ease-out;
6015
- margin-right: 4.6em; }
6016
-
6017
- .premium-video-box-vimeo-wrap .premium-video-box-vimeo-portrait {
6018
- width: 60px;
6019
- height: 60px;
6020
- background: rgba(23, 35, 34, 0.75);
6021
- margin-right: 1px;
6022
- -webkit-box-flex: 1;
6023
- -webkit-flex: 1 0 auto;
6024
- -moz-box-flex: 1;
6025
- -ms-flex: 1 0 auto;
6026
- flex: 1 0 auto;
6027
- padding: 0; }
6028
-
6029
- .premium-video-box-vimeo-portrait img {
6030
- width: 50px;
6031
- height: 50px;
6032
- margin: 5px;
6033
- padding: 0;
6034
- border: 0;
6035
- -webkit-border-radius: 50%;
6036
- border-radius: 50%; }
6037
-
6038
- .premium-video-box-vimeo-wrap .premium-video-box-vimeo-headers {
6039
- font-size: 10px; }
6040
-
6041
- .premium-video-box-vimeo-wrap .premium-video-box-vimeo-title {
6042
- max-width: 100%;
6043
- font-size: 2em !important;
6044
- font-weight: 700;
6045
- margin: 0;
6046
- padding: 0.1em 0.2em;
6047
- background: rgba(23, 35, 34, 0.75);
6048
- display: inline-block;
6049
- text-transform: none;
6050
- line-height: normal;
6051
- letter-spacing: normal; }
6052
-
6053
- .premium-video-box-vimeo-wrap .premium-video-box-vimeo-byline {
6054
- font-size: 1.2em !important;
6055
- font-weight: 400;
6056
- color: #fff;
6057
- margin-top: 0.1em;
6058
- padding: 0.2em 0.5em;
6059
- background: rgba(23, 35, 34, 0.75);
6060
- text-transform: none;
6061
- line-height: normal;
6062
- letter-spacing: normal; }
6063
-
6064
- .premium-video-box-playlist-container {
6065
- -js-display: flex;
6066
- display: -webkit-box;
6067
- display: -webkit-flex;
6068
- display: -moz-box;
6069
- display: -ms-flexbox;
6070
- display: flex;
6071
- -webkit-flex-wrap: wrap;
6072
- -ms-flex-wrap: wrap;
6073
- flex-wrap: wrap; }
6074
- .premium-video-box-playlist-container .premium-video-box-container {
6075
- height: 100%;
6076
- overflow: hidden; }
6077
-
6078
- .premium-video-box-container:hover .premium-video-box-image-container.zoomin {
6079
- -webkit-transform: scale(1.1);
6080
- -ms-transform: scale(1.1);
6081
- transform: scale(1.1); }
6082
-
6083
- .premium-video-box-container:hover .premium-video-box-image-container.zoomout {
6084
- -webkit-transform: scale(1);
6085
- -ms-transform: scale(1);
6086
- transform: scale(1); }
6087
-
6088
- .premium-video-box-container:hover .premium-video-box-image-container.scale {
6089
- -webkit-transform: scale(1.3) rotate(5deg);
6090
- -ms-transform: scale(1.3) rotate(5deg);
6091
- transform: scale(1.3) rotate(5deg); }
6092
-
6093
- .premium-video-box-container:hover .premium-video-box-image-container.gray {
6094
- -webkit-filter: grayscale(0%);
6095
- filter: grayscale(0%); }
6096
-
6097
- .premium-video-box-container:hover .premium-video-box-image-container.blur {
6098
- -webkit-filter: blur(3px);
6099
- filter: blur(3px); }
6100
-
6101
- .premium-video-box-container:hover .premium-video-box-image-container.sepia {
6102
- -webkit-filter: sepia(0%);
6103
- filter: sepia(0%); }
6104
-
6105
- .premium-video-box-container:hover .premium-video-box-image-container.trans {
6106
- -webkit-transform: translateX(0px) scale(1.1);
6107
- -ms-transform: translateX(0px) scale(1.1);
6108
- transform: translateX(0px) scale(1.1); }
6109
-
6110
- .premium-video-box-container:hover .premium-video-box-image-container.bright {
6111
- -webkit-filter: brightness(1.2);
6112
- filter: brightness(1.2); }
6113
-
6114
- .premium-video-box-image-container.gray {
6115
- -webkit-filter: grayscale(100%);
6116
- filter: grayscale(100%); }
6117
-
6118
- .premium-video-box-image-container.zoomout, .premium-video-box-image-container.scale {
6119
- -webkit-transform: scale(1.2);
6120
- -ms-transform: scale(1.2);
6121
- transform: scale(1.2); }
6122
-
6123
- .premium-video-box-image-container.sepia {
6124
- -webkit-filter: sepia(30%);
6125
- filter: sepia(30%); }
6126
-
6127
- .premium-video-box-image-container.bright {
6128
- -webkit-filter: brightness(1);
6129
- filter: brightness(1); }
6130
-
6131
- .premium-video-box-image-container.trans {
6132
- -webkit-transform: translateX(-15px) scale(1.1);
6133
- -ms-transform: translateX(-15px) scale(1.1);
6134
- transform: translateX(-15px) scale(1.1); }
6135
-
6136
- .premium-video-box-mask-media {
6137
- -webkit-mask-repeat: no-repeat;
6138
- mask-repeat: no-repeat; }
6139
-
6140
- /* Sticky Video Option */
6141
- .premium-video-box-container.premium-video-box-sticky-apply {
6142
- z-index: 99;
6143
- overflow: unset; }
6144
- .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
6145
- position: fixed !important;
6146
- z-index: 99999;
6147
- height: 225px;
6148
- width: 400px;
6149
- background: #fff; }
6150
- .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-vimeo-wrap,
6151
- .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-container:before {
6152
- visibility: hidden; }
6153
- .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 {
6154
- -webkit-box-shadow: unset;
6155
- box-shadow: unset; }
6156
-
6157
- .premium-video-box-sticky-close,
6158
- .premium-video-box-sticky-infobar {
6159
- display: none; }
6160
-
6161
- .premium-video-box-sticky-apply .premium-video-box-sticky-close {
6162
- position: absolute;
6163
- padding: 5px;
6164
- cursor: pointer;
6165
- z-index: 99999;
6166
- height: 14px;
6167
- width: 14px;
6168
- -webkit-box-sizing: content-box;
6169
- -moz-box-sizing: content-box;
6170
- box-sizing: content-box;
6171
- -webkit-border-radius: 100%;
6172
- border-radius: 100%;
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: center;
6180
- -webkit-justify-content: center;
6181
- -moz-box-pack: center;
6182
- -ms-flex-pack: center;
6183
- justify-content: center;
6184
- -webkit-box-align: center;
6185
- -webkit-align-items: center;
6186
- -moz-box-align: center;
6187
- -ms-flex-align: center;
6188
- align-items: center; }
6189
-
6190
- .premium-video-box-sticky-apply .premium-video-box-play-icon-container {
6191
- -js-display: flex;
6192
- display: -webkit-box;
6193
- display: -webkit-flex;
6194
- display: -moz-box;
6195
- display: -ms-flexbox;
6196
- display: flex; }
6197
-
6198
- .premium-video-box-sticky-apply .premium-video-box-play-icon {
6199
- -webkit-transition: none;
6200
- transition: none; }
6201
-
6202
- .premium-video-box-sticky-apply .premium-video-box-sticky-infobar {
6203
- display: block;
6204
- position: relative;
6205
- top: 100%;
6206
- width: 100%;
6207
- padding: 5px;
6208
- text-align: center;
6209
- z-index: 9999;
6210
- margin-top: -1px; }
6211
-
6212
- .premium-video-box-sticky-apply .premium-video-box-inner-wrap.ui-draggable {
6213
- cursor: move; }
6214
-
6215
- .premium-video-sticky-top-left
6216
- .premium-video-box-container.premium-video-box-sticky-apply
6217
- .premium-video-box-inner-wrap {
6218
- right: auto;
6219
- left: 20px;
6220
- top: 20px; }
6221
-
6222
- .premium-video-sticky-bottom-left
6223
- .premium-video-box-container.premium-video-box-sticky-apply
6224
- .premium-video-box-inner-wrap {
6225
- right: auto;
6226
- left: 20px;
6227
- bottom: 20px; }
6228
-
6229
- .premium-video-sticky-top-right
6230
- .premium-video-box-container.premium-video-box-sticky-apply
6231
- .premium-video-box-inner-wrap {
6232
- left: auto;
6233
- right: 20px;
6234
- top: 20px; }
6235
-
6236
- .premium-video-sticky-bottom-right
6237
- .premium-video-box-container.premium-video-box-sticky-apply
6238
- .premium-video-box-inner-wrap {
6239
- left: auto;
6240
- right: 20px;
6241
- bottom: 20px; }
6242
-
6243
- .premium-video-sticky-center-left
6244
- .premium-video-box-container.premium-video-box-sticky-apply
6245
- .premium-video-box-inner-wrap {
6246
- right: auto;
6247
- left: 20px;
6248
- top: 50%;
6249
- -webkit-transform: translateY(-50%);
6250
- -ms-transform: translateY(-50%);
6251
- transform: translateY(-50%); }
6252
-
6253
- .premium-video-sticky-center-right
6254
- .premium-video-box-container.premium-video-box-sticky-apply
6255
- .premium-video-box-inner-wrap {
6256
- left: auto;
6257
- right: 20px;
6258
- top: 50%;
6259
- -webkit-transform: translateY(-50%);
6260
- -ms-transform: translateY(-50%);
6261
- transform: translateY(-50%); }
6262
-
6263
- .premium-video-sticky-bottom-right
6264
- .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply
6265
- .premium-video-box-inner-wrap,
6266
- .premium-video-sticky-bottom-left
6267
- .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply
6268
- .premium-video-box-inner-wrap {
6269
- bottom: 55px; }
6270
-
6271
- .premium-video-sticky-top-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
6272
- .premium-video-sticky-bottom-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
6273
- .premium-video-sticky-center-left .premium-video-box-sticky-apply .premium-video-box-sticky-close {
6274
- top: -10px;
6275
- right: -10px; }
6276
-
6277
- .premium-video-sticky-top-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
6278
- .premium-video-sticky-bottom-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
6279
- .premium-video-sticky-center-right .premium-video-box-sticky-apply .premium-video-box-sticky-close {
6280
- top: -10px;
6281
- left: -10px; }
6282
-
6283
- .premium-video-box-filter-sticky {
6284
- -webkit-filter: none !important;
6285
- filter: none !important; }
6286
-
6287
- /************ Premium Vertical Scroll ************/
6288
- /*************************************************/
6289
- .premium-vscroll-inner {
6290
- position: relative;
6291
- min-height: 100%; }
6292
- .premium-vscroll-inner .premium-vscroll-dots {
6293
- position: fixed;
6294
- z-index: 100;
6295
- opacity: 1;
6296
- margin-top: -32px;
6297
- -webkit-transition: all 0.3s ease-in-out;
6298
- transition: all 0.3s ease-in-out; }
6299
-
6300
- .premium-vscroll-wrap .premium-vscroll-nav-menu {
6301
- opacity: 1;
6302
- -webkit-transition: all 0.3s ease-in-out;
6303
- transition: all 0.3s ease-in-out; }
6304
-
6305
- .premium-vscroll-inner .premium-vscroll-dots,
6306
- .premium-vscroll-wrap .premium-vscroll-dots-hide {
6307
- opacity: 0;
6308
- visibility: hidden; }
6309
-
6310
- .premium-vscroll-nav-dots-yes .premium-vscroll-inner .premium-vscroll-dots:not(.premium-vscroll-dots-hide) {
6311
- opacity: 1;
6312
- visibility: visible; }
6313
-
6314
- .premium-vscroll-dots.middle {
6315
- top: 50%; }
6316
-
6317
- .premium-vscroll-dots.top {
6318
- top: 40px; }
6319
-
6320
- .premium-vscroll-dots.bottom {
6321
- bottom: 30px; }
6322
-
6323
- .premium-vscroll-dots.right {
6324
- right: 17px; }
6325
-
6326
- .premium-vscroll-dots.left {
6327
- left: 17px; }
6328
-
6329
- .premium-vscroll-inner ul.premium-vscroll-dots-list,
6330
- .premium-vscroll-wrap .premium-vscroll-nav-menu {
6331
- margin: 0 !important;
6332
- padding: 0; }
6333
-
6334
- .premium-vscroll-inner ul.premium-vscroll-dots-list li {
6335
- width: 14px;
6336
- height: 13px;
6337
- margin: 7px;
6338
- position: relative;
6339
- -js-display: flex;
6340
- display: -webkit-box;
6341
- display: -webkit-flex;
6342
- display: -moz-box;
6343
- display: -ms-flexbox;
6344
- display: flex;
6345
- -webkit-box-pack: center;
6346
- -webkit-justify-content: center;
6347
- -moz-box-pack: center;
6348
- -ms-flex-pack: center;
6349
- justify-content: center;
6350
- -webkit-box-align: center;
6351
- -webkit-align-items: center;
6352
- -moz-box-align: center;
6353
- -ms-flex-align: center;
6354
- align-items: center;
6355
- overflow: visible; }
6356
-
6357
- .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link {
6358
- display: block;
6359
- position: relative;
6360
- z-index: 1;
6361
- width: 100%;
6362
- height: 100%;
6363
- cursor: pointer;
6364
- text-decoration: none; }
6365
- .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link span {
6366
- top: 2px;
6367
- left: 2.5px;
6368
- width: 8px;
6369
- height: 8px;
6370
- border: 1px solid #000;
6371
- -webkit-border-radius: 50%;
6372
- border-radius: 50%;
6373
- position: absolute;
6374
- z-index: 1;
6375
- -webkit-transition: all 0.3s ease-in-out;
6376
- transition: all 0.3s ease-in-out; }
6377
-
6378
- .premium-vscroll-inner .premium-vscroll-dot-item.active .premium-vscroll-nav-link span {
6379
- -webkit-transform: scale(1.6);
6380
- -ms-transform: scale(1.6);
6381
- transform: scale(1.6); }
6382
-
6383
- .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-tooltip {
6384
- position: absolute;
6385
- color: #fff;
6386
- font-size: 14px;
6387
- font-family: arial, helvetica, sans-serif;
6388
- white-space: nowrap;
6389
- max-width: 220px;
6390
- padding-left: 0.4em;
6391
- padding-right: 0.4em; }
6392
-
6393
- .premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip {
6394
- right: 27px; }
6395
-
6396
- .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item {
6397
- width: 4px;
6398
- height: 30px; }
6399
- .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item span {
6400
- width: 100%;
6401
- height: 100%;
6402
- -webkit-border-radius: 0;
6403
- border-radius: 0; }
6404
- .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item.active span {
6405
- -webkit-transform: scale(1);
6406
- -ms-transform: scale(1);
6407
- transform: scale(1); }
6408
-
6409
- .premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip::after {
6410
- position: absolute;
6411
- top: 50%;
6412
- content: "";
6413
- left: -webkit-calc(100% - 1px);
6414
- left: calc(100% - 1px);
6415
- width: 10px;
6416
- height: 0;
6417
- border-top: 6px solid transparent;
6418
- border-bottom: 6px solid transparent;
6419
- border-left: 6px solid;
6420
- -webkit-transform: translateY(-50%);
6421
- -ms-transform: translateY(-50%);
6422
- transform: translateY(-50%); }
6423
-
6424
- .premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip {
6425
- left: 27px; }
6426
- .premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip::after {
6427
- position: absolute;
6428
- top: 50%;
6429
- content: "";
6430
- right: -webkit-calc(100% - 1px);
6431
- right: calc(100% - 1px);
6432
- width: 10px;
6433
- height: 0;
6434
- border-top: 6px solid transparent;
6435
- border-bottom: 6px solid transparent;
6436
- border-right: 6px solid;
6437
- -webkit-transform: translateY(-50%);
6438
- -ms-transform: translateY(-50%);
6439
- transform: translateY(-50%); }
6440
-
6441
- /* * Lines */
6442
- @media (max-width: 768px) {
6443
- .premium-vscroll-dots.right {
6444
- right: 7px; }
6445
- .premium-vscroll-dots.left {
6446
- left: 7px; } }
6447
-
6448
- .premium-vscroll-nav-menu {
6449
- position: fixed;
6450
- top: 20px;
6451
- height: 40px;
6452
- z-index: 100;
6453
- padding: 0;
6454
- margin: 0; }
6455
- .premium-vscroll-nav-menu.left {
6456
- left: 0; }
6457
- .premium-vscroll-nav-menu.right {
6458
- right: 0; }
6459
- .premium-vscroll-nav-menu .premium-vscroll-nav-item {
6460
- display: inline-block;
6461
- margin: 10px;
6462
- color: #000;
6463
- background: #fff;
6464
- background: rgba(255, 255, 255, 0.3); }
6465
- .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link {
6466
- padding: 9px 18px;
6467
- display: block;
6468
- cursor: pointer;
6469
- color: #000; }
6470
- .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:hover {
6471
- color: #000; }
6472
- .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:focus {
6473
- outline: none; }
6474
-
6475
- .multiscroll-nav li a:focus {
6476
- outline: none; }
6477
-
6478
- .premium-vscroll-temp .slimScrollBar {
6479
- visibility: hidden; }
6480
-
6481
- /********** Premium Woo Products **********/
6482
- /******************************************/
6483
- .ast-single-post .entry-content .premium-woocommerce a {
6484
- text-decoration: none; }
6485
-
6486
- .premium-woocommerce .premium-woo-qv-btn {
6487
- cursor: pointer; }
6488
-
6489
- .premium-woocommerce:not(.premium-woo-skin-grid-7) li.product .star-rating {
6490
- margin: 0 auto 0.5em; }
6491
-
6492
- .premium-woocommerce:not(.premium-woo-skin-grid-10) .premium-woo-product-sale-wrap .premium-woo-product-onsale,
6493
- .premium-woocommerce:not(.premium-woo-skin-grid-10) .premium-woo-product-featured-wrap .premium-woo-product-featured {
6494
- display: block;
6495
- text-align: center;
6496
- color: #fff;
6497
- min-width: 2em;
6498
- min-height: 2em;
6499
- line-height: 2em;
6500
- padding: 0.3em 0.6em;
6501
- margin: 0.5em 0.6em; }
6502
-
6503
- .premium-woocommerce .pa-out-of-stock {
6504
- display: block;
6505
- text-align: center;
6506
- color: #fff;
6507
- min-width: 2em;
6508
- min-height: 2em;
6509
- line-height: 2em;
6510
- padding: 0.3em 0.6em;
6511
- margin: 0.5em 0.6em; }
6512
-
6513
- .premium-woocommerce .woocommerce-loop-product__title {
6514
- margin-bottom: 0.5em;
6515
- font-size: 1em;
6516
- -webkit-transition: all 0.3s ease-in-out;
6517
- transition: all 0.3s ease-in-out; }
6518
-
6519
- .premium-woocommerce .premium-woo-product-category {
6520
- display: block;
6521
- font-size: 0.85em;
6522
- margin-bottom: 0.5em;
6523
- line-height: 1.3; }
6524
-
6525
- .premium-woocommerce .star-rating {
6526
- display: block;
6527
- float: none;
6528
- -webkit-backface-visibility: hidden;
6529
- backface-visibility: hidden;
6530
- overflow: hidden;
6531
- position: relative;
6532
- height: 1em;
6533
- line-height: 1;
6534
- font-size: 0.857em;
6535
- width: 5.4em;
6536
- font-family: "star"; }
6537
- .premium-woocommerce .star-rating::before {
6538
- content: "\73\73\73\73\73";
6539
- color: #54595f;
6540
- float: left;
6541
- top: 0;
6542
- left: 0;
6543
- position: absolute; }
6544
- .premium-woocommerce .star-rating span {
6545
- overflow: hidden;
6546
- float: left;
6547
- top: 0;
6548
- left: 0;
6549
- position: absolute;
6550
- padding-top: 1.5em; }
6551
- .premium-woocommerce .star-rating span::before {
6552
- content: "\53\53\53\53\53";
6553
- color: inherit;
6554
- top: 0;
6555
- position: absolute;
6556
- left: 0; }
6557
-
6558
- .premium-woocommerce .premium-woo-products-inner ul.products {
6559
- -js-display: flex;
6560
- display: -webkit-box;
6561
- display: -webkit-flex;
6562
- display: -moz-box;
6563
- display: -ms-flexbox;
6564
- display: flex;
6565
- margin: 0;
6566
- padding: 0;
6567
- -webkit-flex-wrap: wrap;
6568
- -ms-flex-wrap: wrap;
6569
- flex-wrap: wrap;
6570
- list-style: none outside;
6571
- -webkit-column-gap: 0;
6572
- -moz-column-gap: 0;
6573
- column-gap: 0; }
6574
- .premium-woocommerce .premium-woo-products-inner ul.products li.product {
6575
- margin: 0 0 10px;
6576
- padding: 0 10px; }
6577
- .premium-woocommerce .premium-woo-products-inner ul.products li.product .premium-woo-product-wrapper {
6578
- overflow: hidden;
6579
- -webkit-transition: all 0.3s ease-in-out;
6580
- transition: all 0.3s ease-in-out; }
6581
-
6582
- .premium-woocommerce .woocommerce-loop-product__link {
6583
- position: relative;
6584
- display: block !important;
6585
- overflow: hidden;
6586
- -webkit-transition: all 0.3s ease-in-out;
6587
- transition: all 0.3s ease-in-out; }
6588
-
6589
- .premium-woocommerce .premium-woo-ribbon-container,
6590
- .premium-woocommerce .pa-out-of-stock {
6591
- position: absolute;
6592
- z-index: 9; }
6593
-
6594
- .premium-woocommerce .premium-woo-ribbon-container {
6595
- top: 0;
6596
- left: 0; }
6597
-
6598
- .premium-woocommerce .pa-out-of-stock {
6599
- top: 7px;
6600
- left: 9px;
6601
- margin: 0; }
6602
-
6603
- .premium-woo-product-thumbnail {
6604
- position: relative;
6605
- overflow: hidden; }
6606
- .premium-woo-product-thumbnail .woocommerce-loop-product__link img {
6607
- margin: 0;
6608
- width: 100%; }
6609
-
6610
- .premium-woo-product-sale-wrap,
6611
- .premium-woo-product-featured-wrap {
6612
- margin: 0; }
6613
-
6614
- .premium-woocommerce .premium-woo-products-details-wrap {
6615
- padding: 1em 1.2em; }
6616
- .premium-woocommerce .premium-woo-products-details-wrap .button {
6617
- display: inline-block;
6618
- background-color: #6ec1e4;
6619
- color: #fff;
6620
- margin: 0.5em 0;
6621
- line-height: 1.3;
6622
- padding: 10px 40px;
6623
- font-size: 100%;
6624
- cursor: pointer;
6625
- text-decoration: none;
6626
- overflow: visible;
6627
- font-weight: 700;
6628
- background-image: none;
6629
- border: none;
6630
- -webkit-border-radius: 0px;
6631
- border-radius: 0px;
6632
- -webkit-box-shadow: none;
6633
- box-shadow: none;
6634
- text-shadow: none;
6635
- -webkit-transition: all 0.3s ease-in-out;
6636
- transition: all 0.3s ease-in-out; }
6637
-
6638
- .premium-woocommerce li.product .price {
6639
- display: block;
6640
- line-height: 1.3;
6641
- font-weight: 700;
6642
- margin-bottom: 0.5em;
6643
- font-size: 0.9em; }
6644
- .premium-woocommerce li.product .price del {
6645
- display: inline-block;
6646
- font-weight: 400;
6647
- background: transparent;
6648
- opacity: 1; }
6649
- .premium-woocommerce li.product .price ins {
6650
- display: inline-block;
6651
- background: transparent;
6652
- text-decoration: none;
6653
- font-weight: inherit; }
6654
- .premium-woocommerce li.product .price .amount {
6655
- color: inherit !important; }
6656
-
6657
- .premium-woocommerce li.product .premium-woo-product-desc p {
6658
- margin: 0; }
6659
-
6660
- .premium-woo-product-align-left .premium-woocommerce li.product .star-rating {
6661
- margin-left: 0;
6662
- margin-right: auto; }
6663
-
6664
- .premium-woo-product-align-center .premium-woocommerce li.product .star-rating {
6665
- margin-left: auto;
6666
- margin-right: auto; }
6667
-
6668
- .premium-woo-product-align-right .premium-woocommerce li.product .star-rating {
6669
- margin-left: auto;
6670
- margin-right: 0; }
6671
-
6672
- .premium-woo-products-pagination ul.page-numbers {
6673
- -js-display: flex;
6674
- display: -webkit-box;
6675
- display: -webkit-flex;
6676
- display: -moz-box;
6677
- display: -ms-flexbox;
6678
- display: flex;
6679
- list-style-type: none;
6680
- margin: 0;
6681
- margin-top: 10px;
6682
- padding: 0;
6683
- border: none;
6684
- -webkit-box-pack: center;
6685
- -webkit-justify-content: center;
6686
- -moz-box-pack: center;
6687
- -ms-flex-pack: center;
6688
- justify-content: center; }
6689
- .premium-woo-products-pagination ul.page-numbers li {
6690
- margin: 0 0.4em 0.4em 0;
6691
- padding: 0;
6692
- text-align: center; }
6693
- .premium-woo-products-pagination ul.page-numbers li .page-numbers {
6694
- margin: 0;
6695
- text-decoration: none;
6696
- color: #000;
6697
- border: 1px solid #54595f;
6698
- padding: 0;
6699
- line-height: 1;
6700
- font-size: 1em;
6701
- font-weight: 400;
6702
- padding: 0.75em;
6703
- display: block;
6704
- min-width: 2.5em;
6705
- -webkit-transition: all 0.3s ease-in-out;
6706
- transition: all 0.3s ease-in-out; }
6707
- .premium-woo-products-pagination ul.page-numbers li .page-numbers:hover, .premium-woo-products-pagination ul.page-numbers li .page-numbers.current {
6708
- background-color: #54595f;
6709
- color: #fff;
6710
- outline: none; }
6711
-
6712
- .premium-woocommerce .premium-loading-feed,
6713
- .premium-woo-quick-view-loader .premium-loading-feed {
6714
- display: block;
6715
- position: absolute;
6716
- width: 100%;
6717
- height: 100%;
6718
- top: 0px;
6719
- left: 0px;
6720
- bottom: 0px;
6721
- right: 0px;
6722
- background: rgba(255, 255, 255, 0.2);
6723
- -js-display: flex;
6724
- display: -webkit-box;
6725
- display: -webkit-flex;
6726
- display: -moz-box;
6727
- display: -ms-flexbox;
6728
- display: flex;
6729
- -webkit-box-align: center;
6730
- -webkit-align-items: center;
6731
- -moz-box-align: center;
6732
- -ms-flex-align: center;
6733
- align-items: center; }
6734
-
6735
- /**
6736
- * Image Hover Effects
6737
- */
6738
- .premium-woocommerce .woocommerce-loop-product__link img {
6739
- -webkit-transition: all 0.3s ease-in-out;
6740
- transition: all 0.3s ease-in-out; }
6741
-
6742
- .premium-woo-product__hover-zoomout .woocommerce-loop-product__link img {
6743
- -webkit-transform: scale(1.2);
6744
- -ms-transform: scale(1.2);
6745
- transform: scale(1.2); }
6746
-
6747
- .premium-woo-product__hover-zoomout li.product:hover .woocommerce-loop-product__link img {
6748
- -webkit-transform: none;
6749
- -ms-transform: none;
6750
- transform: none; }
6751
-
6752
- .premium-woo-product__hover-zoomin .woocommerce-loop-product__link img {
6753
- -webkit-transform: none;
6754
- -ms-transform: none;
6755
- transform: none; }
6756
-
6757
- .premium-woo-product__hover-zoomin li.product:hover .woocommerce-loop-product__link img {
6758
- -webkit-transform: scale(1.2);
6759
- -ms-transform: scale(1.2);
6760
- transform: scale(1.2); }
6761
-
6762
- .premium-woo-product__hover-gray .woocommerce-loop-product__link img {
6763
- -webkit-filter: grayscale(100%);
6764
- filter: grayscale(100%); }
6765
-
6766
- .premium-woo-product__hover-gray li.product:hover .woocommerce-loop-product__link img {
6767
- -webkit-filter: grayscale(0%);
6768
- filter: grayscale(0%); }
6769
-
6770
- .premium-woo-product__hover-sepia .woocommerce-loop-product__link img {
6771
- -webkit-filter: sepia(30%);
6772
- filter: sepia(30%); }
6773
-
6774
- .premium-woo-product__hover-sepia li.product:hover .woocommerce-loop-product__link img {
6775
- -webkit-filter: sepia(0%);
6776
- filter: sepia(0%); }
6777
-
6778
- .premium-woo-product__hover-bright .woocommerce-loop-product__link img {
6779
- -webkit-filter: brightness(1);
6780
- filter: brightness(1); }
6781
-
6782
- .premium-woo-product__hover-bright li.product:hover .woocommerce-loop-product__link img {
6783
- -webkit-filter: brightness(1.2);
6784
- filter: brightness(1.2); }
6785
-
6786
- .premium-woo-product__hover-trans .woocommerce-loop-product__link img {
6787
- -webkit-transform: translateX(-15px) scale(1.1);
6788
- -ms-transform: translateX(-15px) scale(1.1);
6789
- transform: translateX(-15px) scale(1.1); }
6790
-
6791
- .premium-woo-product__hover-trans li.product:hover .woocommerce-loop-product__link img {
6792
- -webkit-transform: translateX(0px) scale(1.1);
6793
- -ms-transform: translateX(0px) scale(1.1);
6794
- transform: translateX(0px) scale(1.1); }
6795
-
6796
- .premium-woo-product__hover-scale li.product:hover .woocommerce-loop-product__link img {
6797
- -webkit-transform: scaleX(1.3) scaleY(1.3) rotate(5deg);
6798
- -ms-transform: scaleX(1.3) scaleY(1.3) rotate(5deg);
6799
- transform: scaleX(1.3) scaleY(1.3) rotate(5deg); }
6800
-
6801
- .premium-woocommerce .premium-woo-product__on_hover {
6802
- position: absolute;
6803
- top: 0;
6804
- right: 0;
6805
- bottom: 0;
6806
- left: 0;
6807
- height: 100%;
6808
- opacity: 0; }
6809
-
6810
- .premium-woo-product__hover-swap li.product:hover .premium-woo-product__on_hover {
6811
- opacity: 1; }
6812
-
6813
- .premium-woo-skin-grid-1 .premium-woo-qv-btn,
6814
- .premium-woo-skin-grid-3 .premium-woo-qv-btn,
6815
- .premium-woo-skin-grid-4 .premium-woo-qv-btn {
6816
- position: absolute;
6817
- bottom: 0;
6818
- left: 0;
6819
- width: 100%;
6820
- text-align: center;
6821
- padding: 5px;
6822
- background: rgba(2, 2, 2, 0.5);
6823
- color: #fff;
6824
- -webkit-transition: all 0.3s ease-in-out;
6825
- transition: all 0.3s ease-in-out;
6826
- z-index: 2;
6827
- -webkit-transform: translateY(100%);
6828
- -ms-transform: translateY(100%);
6829
- transform: translateY(100%); }
6830
-
6831
- .premium-woo-skin-grid-4 .premium-woo-qv-btn {
6832
- -webkit-transition-delay: 0.1s;
6833
- transition-delay: 0.1s; }
6834
-
6835
- .premium-woo-skin-grid-1 .premium-woo-qv-icon,
6836
- .premium-woo-skin-grid-3 .premium-woo-qv-icon,
6837
- .premium-woo-skin-grid-4 .premium-woo-qv-icon,
6838
- .premium-woo-skin-grid-6 .premium-woo-qv-icon {
6839
- margin-left: 0.5em; }
6840
-
6841
- .premium-woo-product-thumbnail:hover .premium-woo-qv-btn-translate {
6842
- -webkit-transform: translateY(0);
6843
- -ms-transform: translateY(0);
6844
- transform: translateY(0); }
6845
-
6846
- .premium-woo-product-wrapper .premium-woo-qv-data {
6847
- position: absolute;
6848
- top: 0;
6849
- left: 0;
6850
- width: 100%;
6851
- height: 100%;
6852
- z-index: 1;
6853
- overflow: hidden;
6854
- cursor: pointer; }
6855
-
6856
- /**
6857
- * Skin 1,4
6858
- */
6859
- .premium-woo-skin-grid-1 .premium-woo-product-actions-wrapper,
6860
- .premium-woo-skin-grid-4 .premium-woo-product-actions-wrapper {
6861
- position: absolute;
6862
- top: 0.7em;
6863
- right: 1em;
6864
- -webkit-transform: translate3d(15px, 0, 0);
6865
- transform: translate3d(15px, 0, 0);
6866
- -webkit-transition: all 0.3s ease-in-out;
6867
- transition: all 0.3s ease-in-out;
6868
- opacity: 0;
6869
- z-index: 9; }
6870
-
6871
- .premium-woocommerce .premium-woo-product-actions-wrapper .premium-woo-cart-btn {
6872
- position: relative;
6873
- display: block;
6874
- margin: 0 0 3px;
6875
- background: #fff;
6876
- text-align: center;
6877
- outline: 0;
6878
- -webkit-transition: all 0.3s ease-in-out;
6879
- transition: all 0.3s ease-in-out; }
6880
-
6881
- .premium-woocommerce .premium-woo-product-actions-wrapper .premium-woo-add-cart-icon {
6882
- display: block;
6883
- color: #54595f;
6884
- width: 30px;
6885
- line-height: 30px;
6886
- height: 30px;
6887
- cursor: pointer;
6888
- -webkit-transition: all 0.3s ease-in-out;
6889
- transition: all 0.3s ease-in-out; }
6890
-
6891
- .premium-woo-skin-grid-1 li.product:hover .premium-woo-product-actions-wrapper,
6892
- .premium-woo-skin-grid-4 li.product:hover .premium-woo-product-actions-wrapper {
6893
- -webkit-transform: translate3d(5px, 0, 0);
6894
- transform: translate3d(5px, 0, 0);
6895
- opacity: 1; }
6896
-
6897
- .premium-woocommerce .premium-woo-cart-btn.adding .premium-woo-add-cart-icon {
6898
- -webkit-animation: spin 2s linear infinite;
6899
- animation: spin 2s linear infinite; }
6900
-
6901
- .premium-woocommerce .premium-woo-cart-btn.adding .premium-woo-add-cart-icon::before {
6902
- content: "\f013"; }
6903
-
6904
- .premium-woocommerce .premium-woo-cart-btn.added .premium-woo-add-cart-icon::before {
6905
- content: "\f00c"; }
6906
-
6907
- /**
6908
- * Skin 2
6909
- */
6910
- .premium-woo-skin-grid-2 li.product .premium-woo-products-details-wrap {
6911
- position: absolute;
6912
- background: #fff;
6913
- bottom: 0;
6914
- left: 0;
6915
- width: 100%;
6916
- z-index: 2;
6917
- padding: 0;
6918
- opacity: 0;
6919
- -webkit-transition: opacity 0.2s, -webkit-transform 0.4s;
6920
- transition: opacity 0.2s, -webkit-transform 0.4s;
6921
- transition: transform 0.4s, opacity 0.2s;
6922
- transition: transform 0.4s, opacity 0.2s, -webkit-transform 0.4s;
6923
- -webkit-transform: translateZ(0) translateY(5px);
6924
- transform: translateZ(0) translateY(5px); }
6925
-
6926
- .premium-woo-skin-grid-2 .premium-woo-product-details {
6927
- padding: 15px 0; }
6928
-
6929
- .premium-woo-skin-grid-2 li.product:hover .premium-woo-products-details-wrap {
6930
- opacity: 1;
6931
- -webkit-transform: translateZ(0) translateY(0);
6932
- transform: translateZ(0) translateY(0); }
6933
-
6934
- .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper {
6935
- position: static;
6936
- -js-display: flex;
6937
- display: -webkit-box;
6938
- display: -webkit-flex;
6939
- display: -moz-box;
6940
- display: -ms-flexbox;
6941
- display: flex;
6942
- -webkit-box-orient: horizontal;
6943
- -webkit-box-direction: reverse;
6944
- -webkit-flex-direction: row-reverse;
6945
- -moz-box-orient: horizontal;
6946
- -moz-box-direction: reverse;
6947
- -ms-flex-direction: row-reverse;
6948
- flex-direction: row-reverse; }
6949
-
6950
- .premium-woo-skin-grid-2 .premium-woo-product-actions-wrapper > * {
6951
- -webkit-box-flex: 1;
6952
- -webkit-flex: 1;
6953
- -moz-box-flex: 1;
6954
- -ms-flex: 1;
6955
- flex: 1;
6956
- min-width: 50%; }
6957
-
6958
- .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper .button {
6959
- -js-display: flex;
6960
- display: -webkit-box;
6961
- display: -webkit-flex;
6962
- display: -moz-box;
6963
- display: -ms-flexbox;
6964
- display: flex;
6965
- margin: 0;
6966
- text-align: center;
6967
- -webkit-box-pack: center;
6968
- -webkit-justify-content: center;
6969
- -moz-box-pack: center;
6970
- -ms-flex-pack: center;
6971
- justify-content: center;
6972
- -webkit-box-align: center;
6973
- -webkit-align-items: center;
6974
- -moz-box-align: center;
6975
- -ms-flex-align: center;
6976
- align-items: center; }
6977
-
6978
- .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper .premium-woo-qv-btn {
6979
- background-color: #54595f; }
6980
-
6981
- /**
6982
- * Skin 4
6983
- */
6984
- .premium-woo-skin-grid-4 li.product .premium-woo-products-details-wrap {
6985
- position: absolute;
6986
- left: 0;
6987
- right: 0;
6988
- top: 50%;
6989
- -webkit-transform: scale(0.9) translateZ(0) translateY(-50%);
6990
- transform: scale(0.9) translateZ(0) translateY(-50%);
6991
- text-align: center;
6992
- z-index: 2;
6993
- opacity: 0;
6994
- -webkit-transition: opacity 0.5s, -webkit-transform 0.3s;
6995
- transition: opacity 0.5s, -webkit-transform 0.3s;
6996
- transition: opacity 0.5s, transform 0.3s;
6997
- transition: opacity 0.5s, transform 0.3s, -webkit-transform 0.3s; }
6998
-
6999
- .premium-woo-skin-grid-4 li.product .premium-woo-product-overlay,
7000
- .premium-woo-skin-grid-8 li.product .premium-woo-product-overlay {
7001
- position: absolute;
7002
- top: 0;
7003
- left: 0;
7004
- width: 100%;
7005
- height: 100%;
7006
- opacity: 0;
7007
- visibility: hidden;
7008
- background-color: rgba(27, 27, 23, 0.3);
7009
- -webkit-transition: all 0.25s ease-in-out;
7010
- transition: all 0.25s ease-in-out; }
7011
-
7012
- .premium-woo-skin-grid-4 li.product:hover .premium-woo-product-overlay,
7013
- .premium-woo-skin-grid-8 li.product:hover .premium-woo-product-overlay {
7014
- opacity: 1;
7015
- visibility: visible;
7016
- z-index: 1; }
7017
-
7018
- .premium-woo-skin-grid-4 li.product:hover .premium-woo-products-details-wrap {
7019
- -webkit-transform: scale(1) translateZ(0) translateY(-50%);
7020
- transform: scale(1) translateZ(0) translateY(-50%);
7021
- opacity: 1; }
7022
-
7023
- /**
7024
- * Skin 5
7025
- */
7026
- .premium-woo-skin-grid-5 li.product .premium-woo-product-actions-wrapper {
7027
- -js-display: flex;
7028
- display: -webkit-box;
7029
- display: -webkit-flex;
7030
- display: -moz-box;
7031
- display: -ms-flexbox;
7032
- display: flex; }
7033
- .premium-woo-skin-grid-5 li.product .premium-woo-product-actions-wrapper .premium-woo-qv-btn {
7034
- -js-display: flex;
7035
- display: -webkit-box;
7036
- display: -webkit-flex;
7037
- display: -moz-box;
7038
- display: -ms-flexbox;
7039
- display: flex;
7040
- -webkit-box-align: center;
7041
- -webkit-align-items: center;
7042
- -moz-box-align: center;
7043
- -ms-flex-align: center;
7044
- align-items: center;
7045
- background-color: #54595f;
7046
- padding: 10px;
7047
- -webkit-transition: all 0.25s ease 0s;
7048
- transition: all 0.25s ease 0s; }
7049
-
7050
- .premium-woo-skin-grid-5 li.product .premium-woo-products-details-wrap {
7051
- width: 75%; }
7052
-
7053
- .premium-woo-skin-grid-5 .premium-woo-product-wrapper {
7054
- -js-display: flex;
7055
- display: -webkit-box;
7056
- display: -webkit-flex;
7057
- display: -moz-box;
7058
- display: -ms-flexbox;
7059
- display: flex;
7060
- -webkit-box-align: center;
7061
- -webkit-align-items: center;
7062
- -moz-box-align: center;
7063
- -ms-flex-align: center;
7064
- align-items: center; }
7065
-
7066
- .premium-woo-product-align-right .premium-woo-skin-grid-5 .premium-woo-product-actions-wrapper {
7067
- -webkit-box-pack: end;
7068
- -webkit-justify-content: flex-end;
7069
- -moz-box-pack: end;
7070
- -ms-flex-pack: end;
7071
- justify-content: flex-end; }
7072
-
7073
- .premium-woo-product-align-center .premium-woo-skin-grid-5 .premium-woo-product-actions-wrapper {
7074
- -webkit-box-pack: center;
7075
- -webkit-justify-content: center;
7076
- -moz-box-pack: center;
7077
- -ms-flex-pack: center;
7078
- justify-content: center; }
7079
-
7080
- /**
7081
- * Skin 6
7082
- */
7083
- .premium-woo-skin-grid-6 .premium-woo-qv-btn {
7084
- position: absolute;
7085
- top: 50%;
7086
- left: 50%;
7087
- min-width: 40%;
7088
- text-align: center;
7089
- padding: 5px;
7090
- background: rgba(2, 2, 2, 0.5);
7091
- color: #fff;
7092
- -webkit-transform: translate(-50%, -50%);
7093
- -ms-transform: translate(-50%, -50%);
7094
- transform: translate(-50%, -50%);
7095
- opacity: 0;
7096
- visibility: hidden;
7097
- -webkit-transition: all 0.3s ease-in-out;
7098
- transition: all 0.3s ease-in-out;
7099
- cursor: pointer;
7100
- z-index: 2; }
7101
-
7102
- .premium-woo-skin-grid-6 li.product:hover .premium-woo-qv-btn {
7103
- opacity: 1;
7104
- visibility: visible; }
7105
-
7106
- .premium-woo-product-align-right .premium-woo-skin-grid-6 li.product .premium-woo-product-info .star-rating,
7107
- .premium-woo-product-align-left .premium-woo-skin-grid-6 li.product .premium-woo-product-info .star-rating,
7108
- .premium-woo-product-align-right .premium-woo-skin-grid-7 li.product .premium-woo-product-info .star-rating,
7109
- .premium-woo-product-align-left .premium-woo-skin-grid-7 li.product .premium-woo-product-info .star-rating {
7110
- margin: 0; }
7111
-
7112
- .premium-woo-skin-grid-6 li.product .premium-woo-product-info {
7113
- -js-display: flex;
7114
- display: -webkit-box;
7115
- display: -webkit-flex;
7116
- display: -moz-box;
7117
- display: -ms-flexbox;
7118
- display: flex;
7119
- -webkit-box-pack: justify;
7120
- -webkit-justify-content: space-between;
7121
- -moz-box-pack: justify;
7122
- -ms-flex-pack: justify;
7123
- justify-content: space-between; }
7124
-
7125
- .premium-woo-product-align-center .premium-woocommerce li.product .premium-woo-product-info {
7126
- -webkit-box-orient: vertical;
7127
- -webkit-box-direction: normal;
7128
- -webkit-flex-direction: column;
7129
- -moz-box-orient: vertical;
7130
- -moz-box-direction: normal;
7131
- -ms-flex-direction: column;
7132
- flex-direction: column; }
7133
-
7134
- .premium-woo-product-align-right .premium-woocommerce li.product .premium-woo-product-info {
7135
- -webkit-box-orient: horizontal;
7136
- -webkit-box-direction: reverse;
7137
- -webkit-flex-direction: row-reverse;
7138
- -moz-box-orient: horizontal;
7139
- -moz-box-direction: reverse;
7140
- -ms-flex-direction: row-reverse;
7141
- flex-direction: row-reverse; }
7142
-
7143
- .premium-woo-skin-grid-6 li.product .premium-woo-product-gallery-images {
7144
- -js-display: flex;
7145
- display: -webkit-box;
7146
- display: -webkit-flex;
7147
- display: -moz-box;
7148
- display: -ms-flexbox;
7149
- display: flex;
7150
- position: absolute;
7151
- bottom: 10px;
7152
- width: 100%;
7153
- -webkit-box-pack: center;
7154
- -webkit-justify-content: center;
7155
- -moz-box-pack: center;
7156
- -ms-flex-pack: center;
7157
- justify-content: center; }
7158
-
7159
- .premium-woo-product-gallery-images .premium-woo-product__gallery_image {
7160
- width: 20%;
7161
- margin: 0 0.2em;
7162
- border: 2px solid #aaa;
7163
- cursor: pointer; }
7164
-
7165
- /**
7166
- * Metro
7167
- */
7168
- /*.premium-woo-grid-style1 ul.products li.product {
7169
- width: 25%;
7170
- }*/
7171
- .premium-woo-products-metro li.product .premium-woo-product-thumbnail img,
7172
- .premium-woo-products-metro li.product .premium-woo-product-wrapper,
7173
- .premium-woo-products-metro li.product .premium-woo-product-thumbnail,
7174
- .premium-woo-products-metro li.product .woocommerce-LoopProduct-link {
7175
- height: 100%; }
7176
-
7177
- .premium-woo-products-metro ul.products li.product {
7178
- margin-bottom: 0; }
7179
-
7180
- .premium-woo-products-metro li.product .premium-woo-product-thumbnail img {
7181
- -o-object-fit: cover;
7182
- object-fit: cover; }
7183
-
7184
- /*
7185
- * Carousel
7186
- */
7187
- .premium-woo-hidden {
7188
- opacity: 0;
7189
- visibility: hidden; }
7190
-
7191
- .premium-woocommerce:not(.premium-woo-skin-grid-7) .slick-arrow {
7192
- -webkit-border-radius: 50%;
7193
- border-radius: 50%; }
7194
-
7195
- .premium-woocommerce ul.slick-dots {
7196
- width: 100%; }
7197
-
7198
- /*
7199
- * Quick View Html/body
7200
- */
7201
- html.premium-woo-qv-opened,
7202
- html.premium-woo-qv-opened body {
7203
- overflow: hidden; }
7204
-
7205
- /**
7206
- * Quick View Modal
7207
- */
7208
- .premium-woo-quick-view-back {
7209
- position: fixed;
7210
- visibility: hidden;
7211
- overflow: hidden;
7212
- background: rgba(2, 2, 2, 0.5);
7213
- opacity: 0;
7214
- -webkit-transition: opacity 0.25s;
7215
- transition: opacity 0.25s;
7216
- z-index: 999; }
7217
-
7218
- .premium-woo-quick-view-active {
7219
- top: 0;
7220
- left: 0;
7221
- width: 100%;
7222
- height: 100%;
7223
- opacity: 1;
7224
- visibility: visible; }
7225
-
7226
- #premium-woo-quick-view-modal {
7227
- position: fixed;
7228
- visibility: hidden;
7229
- opacity: 0;
7230
- top: 0;
7231
- left: 0;
7232
- width: 100%;
7233
- height: 100%;
7234
- z-index: 1400;
7235
- text-align: center;
7236
- -webkit-transition: all 0.3s;
7237
- transition: all 0.3s;
7238
- overflow-x: hidden;
7239
- overflow-y: auto; }
7240
- #premium-woo-quick-view-modal.active {
7241
- visibility: visible;
7242
- opacity: 1; }
7243
- #premium-woo-quick-view-modal.active .premium-woo-content-main {
7244
- -webkit-transform: translateY(0);
7245
- -ms-transform: translateY(0);
7246
- transform: translateY(0);
7247
- opacity: 1;
7248
- width: 100%; }
7249
- #premium-woo-quick-view-modal .premium-woo-content-main-wrapper {
7250
- position: absolute;
7251
- width: 100%;
7252
- height: 100%;
7253
- top: 0;
7254
- left: 0;
7255
- text-align: center;
7256
- padding: 30px;
7257
- -js-display: flex;
7258
- display: -webkit-box;
7259
- display: -webkit-flex;
7260
- display: -moz-box;
7261
- display: -ms-flexbox;
7262
- display: flex;
7263
- -webkit-box-align: center;
7264
- -webkit-align-items: center;
7265
- -moz-box-align: center;
7266
- -ms-flex-align: center;
7267
- align-items: center; }
7268
- #premium-woo-quick-view-modal .premium-woo-content-main {
7269
- position: relative;
7270
- pointer-events: none;
7271
- max-width: 100%;
7272
- text-align: left;
7273
- z-index: 1045;
7274
- -webkit-transform: translateY(-30px);
7275
- -ms-transform: translateY(-30px);
7276
- transform: translateY(-30px);
7277
- opacity: 0;
7278
- -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
7279
- transition: opacity 0.3s, -webkit-transform 0.5s;
7280
- transition: transform 0.5s, opacity 0.3s;
7281
- transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
7282
- margin: 0 auto; }
7283
- #premium-woo-quick-view-modal .premium-woo-lightbox-content {
7284
- position: relative;
7285
- display: table;
7286
- pointer-events: auto;
7287
- background-color: #fff;
7288
- max-width: 975px;
7289
- margin: 20px auto;
7290
- -webkit-transform: translateZ(0);
7291
- transform: translateZ(0);
7292
- -webkit-box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.15);
7293
- box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.15);
7294
- overflow: hidden; }
7295
- #premium-woo-quick-view-modal .summary {
7296
- width: 50%;
7297
- margin: 0;
7298
- padding: 30px;
7299
- float: left;
7300
- -webkit-box-sizing: border-box;
7301
- -moz-box-sizing: border-box;
7302
- box-sizing: border-box; }
7303
- #premium-woo-quick-view-modal .summary .quantity {
7304
- min-width: auto; }
7305
- #premium-woo-quick-view-modal .summary .quantity input.qty {
7306
- width: 54px;
7307
- -webkit-appearance: button;
7308
- -moz-appearance: button;
7309
- appearance: button; }
7310
- #premium-woo-quick-view-modal .summary .quantity input[type="number"]::-webkit-inner-spin-button,
7311
- #premium-woo-quick-view-modal .summary .quantity input[type="number"]::-webkit-outer-spin-button {
7312
- display: unset; }
7313
- #premium-woo-quick-view-modal .woocommerce-product-details__short-description p {
7314
- margin: 0; }
7315
-
7316
- #premium-woo-quick-view-close {
7317
- position: absolute;
7318
- font-size: 22px;
7319
- top: 10px;
7320
- right: 10px;
7321
- width: 22px;
7322
- height: 22px;
7323
- line-height: 22px;
7324
- opacity: 0.7;
7325
- text-align: center;
7326
- z-index: 2;
7327
- color: #000; }
7328
-
7329
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider {
7330
- position: relative; }
7331
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider li {
7332
- list-style: none; }
7333
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav {
7334
- margin: 0;
7335
- padding: 0;
7336
- width: 100%;
7337
- position: absolute;
7338
- bottom: 10px;
7339
- text-align: center; }
7340
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li {
7341
- margin: 0 6px;
7342
- display: inline-block;
7343
- vertical-align: middle; }
7344
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a {
7345
- width: 11px;
7346
- height: 11px;
7347
- display: block;
7348
- background: #666;
7349
- background: rgba(0, 0, 0, 0.5);
7350
- cursor: pointer;
7351
- text-indent: -9999px;
7352
- -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
7353
- box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
7354
- -webkit-border-radius: 20px;
7355
- border-radius: 20px; }
7356
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a.flex-active {
7357
- background: rgba(0, 0, 0, 0.9);
7358
- cursor: default; }
7359
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a:focus {
7360
- outline: none; }
7361
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider img {
7362
- -o-object-fit: cover;
7363
- object-fit: cover; }
7364
-
7365
- #premium-woo-quick-view-content div.images {
7366
- width: 50%;
7367
- float: left;
7368
- opacity: 1 !important;
7369
- margin: 0; }
7370
-
7371
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav {
7372
- margin: 0;
7373
- padding: 0;
7374
- list-style: none; }
7375
-
7376
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav a {
7377
- text-decoration: none;
7378
- display: block;
7379
- width: 14px;
7380
- height: 32px;
7381
- font-size: 32px;
7382
- line-height: 32px;
7383
- margin: -20px 0 0;
7384
- position: absolute;
7385
- top: 50%;
7386
- z-index: 10;
7387
- overflow: hidden;
7388
- cursor: pointer;
7389
- color: rgba(0, 0, 0, 0.8);
7390
- text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
7391
- -webkit-transition: all 0.3s ease-in-out;
7392
- transition: all 0.3s ease-in-out; }
7393
-
7394
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next,
7395
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev {
7396
- display: inline-block;
7397
- font-family: "Font Awesome 5 Free";
7398
- font-weight: 900;
7399
- text-rendering: auto;
7400
- -webkit-font-smoothing: antialiased;
7401
- -moz-osx-font-smoothing: grayscale; }
7402
-
7403
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev {
7404
- left: 10px; }
7405
-
7406
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next {
7407
- right: 10px; }
7408
-
7409
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev::before {
7410
- content: "\f104"; }
7411
-
7412
- #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next::before {
7413
- content: "\f105"; }
7414
-
7415
- .premium-woocommerce li.product .added_to_cart.wc-forward {
7416
- display: none; }
7417
-
7418
- .premium-woo-atc-button .add_to_cart_button span {
7419
- -webkit-animation: spin 2s linear infinite;
7420
- animation: spin 2s linear infinite;
7421
- margin-left: 5px;
7422
- vertical-align: baseline; }
7423
-
7424
- @media (min-width: 545px) {
7425
- #premium-woo-quick-view-content div.summary {
7426
- content: "544";
7427
- overflow-y: auto; } }
7428
-
7429
- @media (max-width: 544px) {
7430
- #premium-woo-quick-view-content .premium-woo-lightbox-content {
7431
- display: block; }
7432
- #premium-woo-quick-view-content div.images,
7433
- #premium-woo-quick-view-content div.summary {
7434
- width: 100%;
7435
- float: none; } }
7436
 
7437
- /*
7438
- * Common Title/Dual Heading
7439
- */
7440
- .premium-title-bg-text:before {
7441
- position: absolute;
7442
- content: attr(data-background);
7443
- top: 0;
7444
- left: 0;
7445
- text-align: left; }
7446
-
7447
- .premium-bg-text-yes .elementor-widget-container:before {
7448
- position: absolute;
7449
- top: 0;
7450
- left: 0;
7451
- text-align: left; }
7452
-
7453
- .premium-mask-yes .premium-dual-header-first-clip .premium-dual-header-first-span .premium-mask-span,
7454
- .premium-mask-yes .premium-dual-header-second-clip .premium-mask-span {
7455
- background: inherit; }
7456
-
7457
- .premium-mask-yes .premium-mask-span {
7458
- position: relative;
7459
- overflow: hidden;
7460
- -js-display: inline-flex !important;
7461
- display: -webkit-inline-box !important;
7462
- display: -webkit-inline-flex !important;
7463
- display: -moz-inline-box !important;
7464
- display: -ms-inline-flexbox !important;
7465
- display: inline-flex !important; }
7466
- .premium-mask-yes .premium-mask-span::after {
7467
- content: "";
7468
- position: absolute;
7469
- top: 0;
7470
- right: 0px;
7471
- width: 100%;
7472
- height: 100%;
7473
- background-color: currentColor;
7474
- -webkit-backface-visibility: visible;
7475
- backface-visibility: visible; }
7476
-
7477
- .premium-mask-active.premium-mask-tr .premium-mask-span::after {
7478
- -webkit-animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
7479
- animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
7480
- -webkit-transform: translateX(-103%);
7481
- -ms-transform: translateX(-103%);
7482
- transform: translateX(-103%); }
7483
-
7484
- .premium-mask-active.premium-mask-tl .premium-mask-span::after {
7485
- -webkit-animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
7486
- animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
7487
- -webkit-transform: translateX(103%);
7488
- -ms-transform: translateX(103%);
7489
- transform: translateX(103%); }
7490
-
7491
- .premium-mask-active.premium-mask-tb .premium-mask-span::after {
7492
- -webkit-animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
7493
- animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
7494
- -webkit-transform: translateY(-103%);
7495
- -ms-transform: translateY(-103%);
7496
- transform: translateY(-103%); }
7497
-
7498
- .premium-mask-active.premium-mask-tt .premium-mask-span::after {
7499
- -webkit-animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
7500
- animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
7501
- -webkit-transform: translateY(103%);
7502
- -ms-transform: translateY(103%);
7503
- transform: translateY(103%); }
7504
-
7505
- @-webkit-keyframes pa-mask-tr {
7506
- 0% {
7507
- -webkit-transform: translateX(0%);
7508
- transform: translateX(0%); }
7509
- 100% {
7510
- -webkit-transform: translateX(103%);
7511
- transform: translateX(103%); } }
7512
-
7513
- @keyframes pa-mask-tr {
7514
- 0% {
7515
- -webkit-transform: translateX(0%);
7516
- transform: translateX(0%); }
7517
- 100% {
7518
- -webkit-transform: translateX(103%);
7519
- transform: translateX(103%); } }
7520
-
7521
- @-webkit-keyframes pa-mask-tl {
7522
- 0% {
7523
- -webkit-transform: translateX(0%);
7524
- transform: translateX(0%); }
7525
- 100% {
7526
- -webkit-transform: translateX(-103%);
7527
- transform: translateX(-103%); } }
7528
-
7529
- @keyframes pa-mask-tl {
7530
- 0% {
7531
- -webkit-transform: translateX(0%);
7532
- transform: translateX(0%); }
7533
- 100% {
7534
- -webkit-transform: translateX(-103%);
7535
- transform: translateX(-103%); } }
7536
-
7537
- @-webkit-keyframes pa-mask-tb {
7538
- 0% {
7539
- -webkit-transform: translateY(0%);
7540
- transform: translateY(0%); }
7541
- 100% {
7542
- -webkit-transform: translateY(103%);
7543
- transform: translateY(103%); } }
7544
-
7545
- @keyframes pa-mask-tb {
7546
- 0% {
7547
- -webkit-transform: translateY(0%);
7548
- transform: translateY(0%); }
7549
- 100% {
7550
- -webkit-transform: translateY(103%);
7551
- transform: translateY(103%); } }
7552
-
7553
- @-webkit-keyframes pa-mask-tt {
7554
- 0% {
7555
- -webkit-transform: translateY(0%);
7556
- transform: translateY(0%); }
7557
- 100% {
7558
- -webkit-transform: translateY(-103%);
7559
- transform: translateY(-103%); } }
7560
-
7561
- @keyframes pa-mask-tt {
7562
- 0% {
7563
- -webkit-transform: translateY(0%);
7564
- transform: translateY(0%); }
7565
- 100% {
7566
- -webkit-transform: translateY(-103%);
7567
- transform: translateY(-103%); } }
7568
-
7569
- /*
7570
- * Common Buttons Style.
7571
- */
7572
- .premium-button .premium-lottie-animation,
7573
- .premium-image-button .premium-lottie-animation {
7574
- -js-display: flex;
7575
- display: -webkit-box;
7576
- display: -webkit-flex;
7577
- display: -moz-box;
7578
- display: -ms-flexbox;
7579
- display: flex; }
7580
-
7581
- .premium-button svg,
7582
- .premium-image-button svg {
7583
- width: 30px;
7584
- height: 30px; }
7585
-
7586
- .premium-btn-sm,
7587
- .premium-btn-md,
7588
- .premium-btn-lg,
7589
- .premium-btn-block {
7590
- background-color: #eee;
7591
- color: #042551;
7592
- margin: 0px;
7593
- text-decoration: none; }
7594
- .premium-btn-sm:hover,
7595
- .premium-btn-md:hover,
7596
- .premium-btn-lg:hover,
7597
- .premium-btn-block:hover {
7598
- background-color: #54595f;
7599
- color: #eee; }
7600
-
7601
- .premium-btn-sm {
7602
- padding: 12px 24px;
7603
- font-size: 14px;
7604
- line-height: 1; }
7605
-
7606
- .premium-btn-md {
7607
- padding: 14px 26px;
7608
- font-size: 16px;
7609
- line-height: 1.2; }
7610
-
7611
- .premium-btn-lg {
7612
- padding: 16px 28px;
7613
- font-size: 18px;
7614
- line-height: 1.3333; }
7615
-
7616
- .premium-btn-block {
7617
- font-size: 18px;
7618
- line-height: 1;
7619
- padding: 20px 0px;
7620
- width: 100%;
7621
- text-align: center; }
7622
-
7623
- .premium-button-text {
7624
- display: inline-block;
7625
- width: 100%; }
7626
-
7627
- /*
7628
- * Common Button/Image Button Mouse Detect Effect.
7629
- */
7630
- .premium-mouse-detect-yes .premium-button-style6 .premium-button-style6-bg {
7631
- position: absolute;
7632
- z-index: 0;
7633
- top: 0;
7634
- left: 0;
7635
- width: 0px;
7636
- height: 0px;
7637
- -webkit-border-radius: 50%;
7638
- border-radius: 50%;
7639
- display: block;
7640
- -webkit-transform: translate(-50%, -50%);
7641
- -ms-transform: translate(-50%, -50%);
7642
- transform: translate(-50%, -50%);
7643
- -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
7644
- transition: width 0.4s ease-in-out, height 0.4s ease-in-out; }
7645
-
7646
- .premium-mouse-detect-yes .premium-button-style6:hover .premium-button-style6-bg {
7647
- width: 225%;
7648
- height: 560px; }
7649
-
7650
- .premium-mouse-detect-yes .premium-button-style6:before {
7651
- width: 0;
7652
- height: 0; }
7653
-
7654
- /** Loader */
7655
- .premium-loader {
7656
- border: 3px solid #f3f3f3;
7657
- border-top-width: 3px;
7658
- border-top-style: solid;
7659
- border-top-color: #f3f3f3;
7660
- -webkit-border-radius: 50%;
7661
- border-radius: 50%;
7662
- border-top: 3px solid;
7663
- border-top-color: #bbb;
7664
- width: 30px;
7665
- height: 30px;
7666
- -webkit-animation: spin 2s linear infinite;
7667
- animation: spin 2s linear infinite;
7668
- margin: 0 auto; }
7669
-
7670
- /** Common Animation */
7671
- @-webkit-keyframes spin {
7672
- 0% {
7673
- -webkit-transform: rotate(0deg);
7674
- transform: rotate(0deg); }
7675
- 100% {
7676
- -webkit-transform: rotate(360deg);
7677
- transform: rotate(360deg); } }
7678
- @keyframes spin {
7679
- 0% {
7680
- -webkit-transform: rotate(0deg);
7681
- transform: rotate(0deg); }
7682
- 100% {
7683
- -webkit-transform: rotate(360deg);
7684
- transform: rotate(360deg); } }
7685
-
7686
- /**Notice*/
7687
- .premium-error-notice {
7688
- width: 100%;
7689
- padding: 10px;
7690
- color: #b94a48;
7691
- background-color: #f2dede;
7692
- border-color: #eed3d7;
7693
- text-align: center; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  font-weight: normal;
7
  font-style: normal;
8
  }
9
+ /**************** Premium Banner ****************/
10
+ /************************************************/
11
+ .elementor-widget-premium-addon-banner {
12
+ overflow: hidden; }
13
+
14
+ .premium-banner-ib {
15
+ display: block;
16
+ position: relative;
17
+ z-index: 1;
18
+ overflow: hidden;
19
+ margin: 0;
20
+ text-align: center;
21
+ -webkit-box-sizing: border-box;
22
+ -moz-box-sizing: border-box;
23
+ box-sizing: border-box; }
24
+ .premium-banner-ib img {
25
+ display: block;
26
+ position: relative; }
27
+
28
+ .premium-banner-img-wrap {
29
+ -js-display: flex;
30
+ display: -webkit-box;
31
+ display: -webkit-flex;
32
+ display: -moz-box;
33
+ display: -ms-flexbox;
34
+ display: flex;
35
+ height: 100%; }
36
+ .premium-banner-img-wrap .premium-banner-ib-img {
37
+ -webkit-flex-shrink: 0;
38
+ -ms-flex-negative: 0;
39
+ flex-shrink: 0; }
40
+
41
+ .premium-banner-ib-desc .premium-banner-read-more {
42
+ z-index: 100; }
43
+
44
+ .elementor-widget-premium-addon-banner .premium-banner-ib-title {
45
+ background: transparent; }
46
+
47
+ .premium-banner-ib *,
48
+ .premium-banner-ib .premium-banner-ib-desc {
49
+ -webkit-box-sizing: border-box;
50
+ -moz-box-sizing: border-box;
51
+ box-sizing: border-box; }
52
+
53
+ .premium-banner-ib img {
54
+ min-width: 100%;
55
+ max-width: 100%;
56
+ -webkit-transition: opacity 0.35s;
57
+ transition: opacity 0.35s; }
58
+
59
+ .premium-banner-ib .premium-banner-ib-desc {
60
+ padding: 15px;
61
+ -webkit-backface-visibility: hidden;
62
+ backface-visibility: hidden;
63
+ -webkit-box-sizing: border-box;
64
+ -moz-box-sizing: border-box;
65
+ box-sizing: border-box;
66
+ position: absolute;
67
+ top: 0;
68
+ left: 0;
69
+ width: 100%;
70
+ height: 100%; }
71
+
72
+ .premium-banner-ib .premium-banner-ib-link {
73
+ position: absolute;
74
+ top: 0;
75
+ left: 0;
76
+ width: 100%;
77
+ height: 100%;
78
+ z-index: 1000;
79
+ text-indent: 200%;
80
+ white-space: nowrap;
81
+ font-size: 0;
82
+ opacity: 0; }
83
+
84
+ .premium-banner-ib a.premium-banner-ib-link {
85
+ display: block;
86
+ background: 0 0; }
87
+
88
+ .premium-banner-animation1 img {
89
+ width: -webkit-calc(100% + 50px) !important;
90
+ width: calc(100% + 50px) !important;
91
+ max-width: -webkit-calc(100% + 50px) !important;
92
+ max-width: calc(100% + 50px) !important;
93
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
94
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
95
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
96
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
97
+ -webkit-transform: translate3d(-40px, 0, 0);
98
+ transform: translate3d(-40px, 0, 0); }
99
+
100
+ .premium-banner-animation2 .premium-banner-ib-title {
101
+ padding: 15px; }
102
+
103
+ .premium-banner-animation1 .premium-banner-ib-desc {
104
+ top: auto;
105
+ bottom: 0;
106
+ min-height: 25%;
107
+ height: auto;
108
+ max-height: 100%;
109
+ text-align: left; }
110
+
111
+ .premium-banner-animation1 .premium-banner-ib-content,
112
+ .premium-banner-animation1 .premium-banner-ib-title,
113
+ .premium-banner-animation1 .premium-banner-read-more {
114
+ -webkit-transform: translate3d(0, 40px, 0);
115
+ transform: translate3d(0, 40px, 0);
116
+ -webkit-transition-delay: 0.05s;
117
+ transition-delay: 0.05s;
118
+ -webkit-transition-duration: 0.35s;
119
+ transition-duration: 0.35s; }
120
+
121
+ .premium-banner-animation1 .premium-banner-ib-title {
122
+ -webkit-transition: -webkit-transform 0.35s;
123
+ transition: -webkit-transform 0.35s;
124
+ transition: transform 0.35s;
125
+ transition: transform 0.35s, -webkit-transform 0.35s; }
126
+
127
+ .premium-banner-animation1 .premium-banner-ib-content,
128
+ .premium-banner-animation1 .premium-banner-read-more {
129
+ margin-top: 10px;
130
+ opacity: 0;
131
+ -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
132
+ transition: opacity 0.2s, -webkit-transform 0.35s;
133
+ transition: opacity 0.2s, transform 0.35s;
134
+ transition: opacity 0.2s, transform 0.35s, -webkit-transform 0.35s; }
135
+
136
+ .premium-banner-animation1:hover .premium-banner-ib-content,
137
+ .premium-banner-animation1.active .premium-banner-ib-content,
138
+ .premium-banner-animation1:hover .premium-banner-read-more,
139
+ .premium-banner-animation1.active .premium-banner-read-more {
140
+ opacity: 1;
141
+ -webkit-transition-delay: 0.05s;
142
+ transition-delay: 0.05s;
143
+ -webkit-transition-duration: 0.35s;
144
+ transition-duration: 0.35s; }
145
+
146
+ .premium-banner-animation1:hover .premium-banner-ib-content,
147
+ .premium-banner-animation1.active .premium-banner-ib-content,
148
+ .premium-banner-animation1:hover .premium-banner-read-more,
149
+ .premium-banner-animation1.active .premium-banner-read-more,
150
+ .premium-banner-animation1:hover .premium-banner-ib-title,
151
+ .premium-banner-animation1.active .premium-banner-ib-title,
152
+ .premium-banner-animation1:hover img,
153
+ .premium-banner-animation1.active img {
154
+ -webkit-transform: translate3d(0, 0, 0);
155
+ transform: translate3d(0, 0, 0);
156
+ -webkit-transition-delay: 0.05s;
157
+ transition-delay: 0.05s;
158
+ -webkit-transition-duration: 0.35s;
159
+ transition-duration: 0.35s; }
160
+
161
+ .premium-banner-animation1.zoomout img,
162
+ .premium-banner-animation1.scale img {
163
+ -webkit-transform: translate3d(-40px, 0, 0) scale(1.1);
164
+ transform: translate3d(-40px, 0, 0) scale(1.1); }
165
+
166
+ .premium-banner-ib.sepia img {
167
+ -webkit-filter: sepia(30%);
168
+ filter: sepia(30%); }
169
+
170
+ .premium-banner-ib.bright img {
171
+ -webkit-filter: brightness(1);
172
+ filter: brightness(1); }
173
+
174
+ .premium-banner-ib.sepia:hover img {
175
+ -webkit-filter: sepia(0%);
176
+ filter: sepia(0%); }
177
+
178
+ .premium-banner-ib.bright:hover img {
179
+ -webkit-filter: brightness(1.2);
180
+ filter: brightness(1.2); }
181
+
182
+ .premium-banner-animation1.premium-banner-min-height img,
183
+ .premium-banner-animation2.premium-banner-min-height img,
184
+ .premium-banner-animation4.premium-banner-min-height img,
185
+ .premium-banner-animation5.premium-banner-min-height img,
186
+ .premium-banner-animation6.premium-banner-min-height img,
187
+ .premium-banner-animation13.premium-banner-min-height img {
188
+ height: auto; }
189
+
190
+ .premium-banner-animation2 img {
191
+ width: 100%; }
192
+
193
+ .premium-banner-animation2 .premium-banner-ib-desc::before {
194
+ position: absolute;
195
+ content: "";
196
+ top: 0;
197
+ left: 0;
198
+ width: 100%;
199
+ height: 100%;
200
+ opacity: 0;
201
+ -webkit-transform: translate3d(0, 50%, 0);
202
+ transform: translate3d(0, 50%, 0); }
203
+
204
+ .premium-banner-animation2 .premium-banner-ib-title {
205
+ position: absolute;
206
+ top: 50%;
207
+ left: 0;
208
+ width: 100%;
209
+ -webkit-transition: color 0.35s, -webkit-transform 0.35s;
210
+ transition: color 0.35s, -webkit-transform 0.35s;
211
+ transition: transform 0.35s, color 0.35s;
212
+ transition: transform 0.35s, color 0.35s, -webkit-transform 0.35s;
213
+ -webkit-transform: translate3d(0, -50%, 0);
214
+ transform: translate3d(0, -50%, 0); }
215
+
216
+ .premium-banner-animation2 .premium-banner-ib-content,
217
+ .premium-banner-animation2 .premium-banner-read-more,
218
+ .premium-banner-animation2 .premium-banner-ib-desc::before {
219
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
220
+ transition: opacity 0.35s, -webkit-transform 0.35s;
221
+ transition: opacity 0.35s, transform 0.35s;
222
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
223
+
224
+ .premium-banner-animation2 .premium-banner-ib-content,
225
+ .premium-banner-animation2 .premium-banner-read-more {
226
+ position: absolute;
227
+ bottom: 0;
228
+ left: 0;
229
+ padding: 15px;
230
+ width: 100%;
231
+ max-height: 50%;
232
+ opacity: 0;
233
+ -webkit-transform: translate3d(0, 10px, 0);
234
+ transform: translate3d(0, 10px, 0); }
235
+
236
+ .premium-banner-animation2:hover .premium-banner-ib-title,
237
+ .premium-banner-animation2.active .premium-banner-ib-title {
238
+ -webkit-transform: translate3d(0, -40px, 0);
239
+ transform: translate3d(0, -40px, 0); }
240
+
241
+ .premium-banner-animation2:hover .premium-banner-read-more,
242
+ .premium-banner-animation2.active .premium-banner-read-more,
243
+ .premium-banner-animation2:hover .premium-banner-ib-desc::before,
244
+ .premium-banner-animation2.active .premium-banner-ib-desc::before {
245
+ opacity: 1;
246
+ -webkit-transform: translate3d(0, 0, 0);
247
+ transform: translate3d(0, 0, 0); }
248
+
249
+ .premium-banner-animation2:hover .premium-banner-ib-content,
250
+ .premium-banner-animation2.active .premium-banner-ib-content {
251
+ opacity: 1;
252
+ -webkit-transform: translate3d(0, -30px, 0);
253
+ transform: translate3d(0, -30px, 0); }
254
+
255
+ .premium-banner-animation3 .premium-banner-ib-title {
256
+ position: absolute;
257
+ bottom: 0;
258
+ left: 0;
259
+ padding: 15px;
260
+ width: 100%;
261
+ text-align: left;
262
+ -webkit-transform: translate3d(0, -30px, 0);
263
+ transform: translate3d(0, -30px, 0); }
264
+
265
+ .premium-banner-animation3 .premium-banner-ib-desc::before,
266
+ .premium-banner-animation3 .premium-banner-ib-title {
267
+ -webkit-transition: -webkit-transform 0.35s;
268
+ transition: -webkit-transform 0.35s;
269
+ transition: transform 0.35s;
270
+ transition: transform 0.35s, -webkit-transform 0.35s; }
271
+
272
+ .premium-banner-animation3:hover .premium-banner-ib-desc::before,
273
+ .premium-banner-animation3.active .premium-banner-ib-desc::before,
274
+ .premium-banner-animation3:hover .premium-banner-ib-title,
275
+ .premium-banner-animation3.active .premium-banner-ib-title {
276
+ opacity: 1;
277
+ -webkit-transform: translate3d(0, 0, 0);
278
+ transform: translate3d(0, 0, 0); }
279
+
280
+ .premium-banner-animation3 .premium-banner-ib-content {
281
+ max-height: -webkit-calc(100% - 60px - 1.5em);
282
+ max-height: calc(100% - 60px - 1.5em);
283
+ overflow: hidden; }
284
+
285
+ .premium-banner-animation4 img {
286
+ width: -webkit-calc(100% + 40px) !important;
287
+ width: calc(100% + 40px) !important;
288
+ max-width: -webkit-calc(100% + 40px) !important;
289
+ max-width: calc(100% + 40px) !important; }
290
+
291
+ .premium-banner-animation4 .premium-banner-ib-desc {
292
+ padding: 30px; }
293
+ .premium-banner-animation4 .premium-banner-ib-desc::after {
294
+ position: absolute;
295
+ content: "";
296
+ opacity: 0; }
297
+ .premium-banner-animation4 .premium-banner-ib-desc::before {
298
+ position: absolute;
299
+ content: "";
300
+ opacity: 0;
301
+ top: 50px;
302
+ right: 30px;
303
+ bottom: 50px;
304
+ left: 30px;
305
+ border-top: 1px solid #fff;
306
+ border-bottom: 1px solid #fff;
307
+ -webkit-transform: scale(0, 1);
308
+ -ms-transform: scale(0, 1);
309
+ transform: scale(0, 1);
310
+ -webkit-transform-origin: 0 0;
311
+ -ms-transform-origin: 0 0;
312
+ transform-origin: 0 0; }
313
+ .premium-banner-animation4 .premium-banner-ib-desc::after {
314
+ top: 30px;
315
+ right: 50px;
316
+ bottom: 30px;
317
+ left: 50px;
318
+ border-right: 1px solid #fff;
319
+ border-left: 1px solid #fff;
320
+ -webkit-transform: scale(1, 0);
321
+ -ms-transform: scale(1, 0);
322
+ transform: scale(1, 0);
323
+ -webkit-transform-origin: 100% 0;
324
+ -ms-transform-origin: 100% 0;
325
+ transform-origin: 100% 0; }
326
+
327
+ .premium-banner-animation4 .premium-banner-ib-title {
328
+ padding: 50px 30px 0 30px;
329
+ -webkit-transition: -webkit-transform 0.35s;
330
+ transition: -webkit-transform 0.35s;
331
+ transition: transform 0.35s;
332
+ transition: transform 0.35s, -webkit-transform 0.35s; }
333
+
334
+ .premium-banner-animation4 .premium-banner-ib-content,
335
+ .premium-banner-animation4 .premium-banner-read-more {
336
+ padding: 10px 30px;
337
+ opacity: 0;
338
+ overflow: hidden;
339
+ -webkit-transform: translate3d(0, -10px, 0);
340
+ transform: translate3d(0, -10px, 0); }
341
+
342
+ .premium-banner-animation4 .premium-banner-ib-title,
343
+ .premium-banner-animation4 img {
344
+ -webkit-transform: translate3d(-30px, 0, 0);
345
+ transform: translate3d(-30px, 0, 0); }
346
+
347
+ .premium-banner-animation4.zoomout img,
348
+ .premium-banner-animation4.scale img {
349
+ -webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
350
+ transform: translate3d(-30px, 0, 0) scale(1.1); }
351
+
352
+ .premium-banner-animation4 .premium-banner-ib-content,
353
+ .premium-banner-animation4 .premium-banner-read-more {
354
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
355
+ transition: opacity 0.35s, -webkit-transform 0.35s;
356
+ transition: opacity 0.35s, transform 0.35s;
357
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
358
+
359
+ .premium-banner-animation4 .premium-banner-ib-desc::after, .premium-banner-animation4 .premium-banner-ib-desc::before {
360
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
361
+ transition: opacity 0.35s, -webkit-transform 0.35s;
362
+ transition: opacity 0.35s, transform 0.35s;
363
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
364
+
365
+ .premium-banner-animation4 img {
366
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
367
+ transition: opacity 0.35s, -webkit-transform 0.35s;
368
+ transition: opacity 0.35s, transform 0.35s;
369
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
370
+
371
+ .premium-banner-animation4:hover .premium-banner-ib-desc::after,
372
+ .premium-banner-animation4.active .premium-banner-ib-desc::after,
373
+ .premium-banner-animation4:hover .premium-banner-ib-desc::before,
374
+ .premium-banner-animation4.active .premium-banner-ib-desc::before {
375
+ opacity: 1;
376
+ -webkit-transform: scale(1);
377
+ -ms-transform: scale(1);
378
+ transform: scale(1); }
379
+
380
+ .premium-banner-animation4:hover .premium-banner-ib-content,
381
+ .premium-banner-animation4.active .premium-banner-ib-content,
382
+ .premium-banner-animation4:hover .premium-banner-read-more,
383
+ .premium-banner-animation4.active .premium-banner-read-more,
384
+ .premium-banner-animation4:hover .premium-banner-ib-title,
385
+ .premium-banner-animation4.active .premium-banner-ib-title {
386
+ opacity: 1;
387
+ -webkit-transform: translate3d(0, 0, 0);
388
+ transform: translate3d(0, 0, 0); }
389
+
390
+ .premium-banner-animation4:hover .premium-banner-ib-content,
391
+ .premium-banner-animation4:hover .premium-banner-ib-desc::after,
392
+ .premium-banner-animation4:hover .premium-banner-ib-title,
393
+ .premium-banner-animation4:hover img {
394
+ -webkit-transition-delay: 0.15s;
395
+ transition-delay: 0.15s; }
396
+
397
+ .premium-banner-animation5 .premium-banner-ib-desc {
398
+ top: auto;
399
+ bottom: 0;
400
+ padding: 15px;
401
+ height: auto;
402
+ background: #f2f2f2;
403
+ color: #3c4a50;
404
+ -webkit-transition: -webkit-transform 0.35s;
405
+ transition: -webkit-transform 0.35s;
406
+ transition: transform 0.35s;
407
+ transition: transform 0.35s, -webkit-transform 0.35s;
408
+ -webkit-transform: translate3d(0, 100%, 0);
409
+ transform: translate3d(0, 100%, 0); }
410
+
411
+ .premium-banner-animation5 .premium-banner-ib-content {
412
+ position: absolute;
413
+ top: auto;
414
+ bottom: 100%;
415
+ left: 0;
416
+ width: 100%;
417
+ padding: 15px;
418
+ opacity: 0;
419
+ -webkit-transition: opacity 0.35s;
420
+ transition: opacity 0.35s; }
421
+
422
+ .premium-banner-animation5 .premium-banner-ib-title,
423
+ .premium-banner-animation5 .premium-banner-read-more {
424
+ -webkit-transition: -webkit-transform 0.35s;
425
+ transition: -webkit-transform 0.35s;
426
+ transition: transform 0.35s;
427
+ transition: transform 0.35s, -webkit-transform 0.35s;
428
+ -webkit-transform: translate3d(0, 200%, 0);
429
+ transform: translate3d(0, 200%, 0);
430
+ text-align: center; }
431
+
432
+ .premium-banner-animation5 .premium-banner-ib-title {
433
+ margin: 10px 0; }
434
+
435
+ .premium-banner-animation5:hover .premium-banner-ib-content,
436
+ .premium-banner-animation5.active .premium-banner-ib-content,
437
+ .premium-banner-animation5:hover .premium-banner-ib-content *,
438
+ .premium-banner-animation5.active .premium-banner-ib-content * {
439
+ opacity: 1 !important;
440
+ z-index: 99 !important;
441
+ -webkit-backface-visibility: hidden !important;
442
+ backface-visibility: hidden !important; }
443
+
444
+ .premium-banner-animation5:hover .premium-banner-ib-desc,
445
+ .premium-banner-animation5.active .premium-banner-ib-desc,
446
+ .premium-banner-animation5:hover .premium-banner-ib-title,
447
+ .premium-banner-animation5.active .premium-banner-ib-title,
448
+ .premium-banner-animation5:hover .premium-banner-read-more,
449
+ .premium-banner-animation5.active .premium-banner-read-more {
450
+ -webkit-transform: translateY(0);
451
+ -ms-transform: translateY(0);
452
+ transform: translateY(0); }
453
+
454
+ .premium-banner-animation5:hover .premium-banner-ib-title {
455
+ -webkit-transition-delay: 0.05s;
456
+ transition-delay: 0.05s; }
457
+
458
+ .premium-banner-animation5 img {
459
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
460
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
461
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
462
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
463
+
464
+ .premium-banner-animation2 img,
465
+ .premium-banner-animation4 img,
466
+ .premium-banner-animation6 img {
467
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
468
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
469
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
470
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
471
+
472
+ .premium-banner-animation5.zoomout img,
473
+ .premium-banner-animation5.scale img {
474
+ -webkit-transform: scale(1.1);
475
+ -ms-transform: scale(1.1);
476
+ transform: scale(1.1); }
477
+
478
+ .premium-banner-animation2.zoomout img,
479
+ .premium-banner-animation2.scale img {
480
+ -webkit-transform: scale(1.1);
481
+ -ms-transform: scale(1.1);
482
+ transform: scale(1.1); }
483
+
484
+ .premium-banner-animation6.zoomout img,
485
+ .premium-banner-animation6.scale img {
486
+ -webkit-transform: scale(1.1);
487
+ -ms-transform: scale(1.1);
488
+ transform: scale(1.1); }
489
+
490
+ .premium-banner-animation5.zoomin:hover img,
491
+ .premium-banner-animation2.zoomin:hover img,
492
+ .premium-banner-animation6.zoomin:hover img {
493
+ -webkit-transform: scale(1.1);
494
+ -ms-transform: scale(1.1);
495
+ transform: scale(1.1); }
496
+
497
+ .premium-banner-animation5.zoomout:hover img,
498
+ .premium-banner-animation2.zoomout:hover img,
499
+ .premium-banner-animation6.zoomout:hover img {
500
+ -webkit-transform: scale(1);
501
+ -ms-transform: scale(1);
502
+ transform: scale(1); }
503
+
504
+ .premium-banner-animation5.scale:hover img,
505
+ .premium-banner-animation2.scale:hover img,
506
+ .premium-banner-animation6.scale:hover img {
507
+ -webkit-transform: scale(1.2) rotate(5deg);
508
+ -ms-transform: scale(1.2) rotate(5deg);
509
+ transform: scale(1.2) rotate(5deg); }
510
+
511
+ .premium-banner-animation5.grayscale:hover img,
512
+ .premium-banner-animation2.grayscale:hover img,
513
+ .premium-banner-animation6.grayscale:hover img {
514
+ -webkit-filter: grayscale(100%);
515
+ filter: grayscale(100%); }
516
+
517
+ .premium-banner-animation5.blur:hover img,
518
+ .premium-banner-animation2.blur:hover img {
519
+ -webkit-filter: blur(3px);
520
+ filter: blur(3px); }
521
+
522
+ .premium-banner-animation6.blur:hover img {
523
+ -webkit-filter: blur(3px);
524
+ filter: blur(3px); }
525
+
526
+ .premium-banner-animation6 .premium-banner-ib-desc {
527
+ padding: 45px; }
528
+ .premium-banner-animation6 .premium-banner-ib-desc::before {
529
+ position: absolute;
530
+ content: "";
531
+ top: 30px;
532
+ right: 30px;
533
+ bottom: 30px;
534
+ left: 30px;
535
+ border: 1px solid #fff; }
536
+
537
+ .premium-banner-animation6 .premium-banner-ib-title {
538
+ margin: 20px 0 10px;
539
+ -webkit-transition: -webkit-transform 0.35s;
540
+ transition: -webkit-transform 0.35s;
541
+ transition: transform 0.35s;
542
+ transition: transform 0.35s, -webkit-transform 0.35s;
543
+ -webkit-transform: translate3d(0, 100%, 0);
544
+ transform: translate3d(0, 100%, 0); }
545
+
546
+ .premium-banner-animation6 .premium-banner-ib-content,
547
+ .premium-banner-animation6 .premium-banner-read-more,
548
+ .premium-banner-animation6 .premium-banner-ib-desc::before {
549
+ opacity: 0;
550
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
551
+ transition: opacity 0.35s, -webkit-transform 0.35s;
552
+ transition: opacity 0.35s, transform 0.35s;
553
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
554
+ -webkit-transform: scale(0);
555
+ -ms-transform: scale(0);
556
+ transform: scale(0); }
557
+
558
+ .premium-banner-animation6 .premium-banner-read-more {
559
+ margin-top: 10px; }
560
+
561
+ .premium-banner-animation6:hover .premium-banner-ib-title,
562
+ .premium-banner-animation6.active .premium-banner-ib-title {
563
+ -webkit-transform: translate3d(0, 0, 0);
564
+ transform: translate3d(0, 0, 0); }
565
+
566
+ .premium-banner-animation6:hover .premium-banner-ib-content,
567
+ .premium-banner-animation6.active .premium-banner-ib-content,
568
+ .premium-banner-animation6:hover .premium-banner-read-more,
569
+ .premium-banner-animation6.active .premium-banner-read-more,
570
+ .premium-banner-animation6:hover .premium-banner-ib-desc::before,
571
+ .premium-banner-animation6.active .premium-banner-ib-desc::before {
572
+ opacity: 1;
573
+ -webkit-transform: scale(1);
574
+ -ms-transform: scale(1);
575
+ transform: scale(1); }
576
+
577
+ .premium-banner-animation12 .premium-banner-ib-desc::after {
578
+ position: absolute;
579
+ content: "";
580
+ right: 30px;
581
+ bottom: 30px;
582
+ left: 30px;
583
+ height: -webkit-calc(50% - 30px);
584
+ height: calc(50% - 30px);
585
+ border: 7px solid #fff;
586
+ -webkit-transition: -webkit-transform 0.35s;
587
+ transition: -webkit-transform 0.35s;
588
+ transition: transform 0.35s;
589
+ transition: transform 0.35s, -webkit-transform 0.35s;
590
+ -webkit-transform: translate3d(0, -100%, 0);
591
+ transform: translate3d(0, -100%, 0); }
592
+
593
+ .premium-banner-animation12:hover .premium-banner-ib-desc::after,
594
+ .premium-banner-animation12.active .premium-banner-ib-desc::after {
595
+ -webkit-transform: translate3d(0, 0, 0);
596
+ transform: translate3d(0, 0, 0); }
597
+
598
+ .premium-banner-animation12 .premium-banner-ib-desc {
599
+ padding: 45px;
600
+ text-align: left; }
601
+
602
+ .premium-banner-animation12 .premium-banner-ib-content {
603
+ position: absolute;
604
+ right: 60px;
605
+ bottom: 60px;
606
+ left: 60px;
607
+ opacity: 0;
608
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
609
+ transition: opacity 0.35s, -webkit-transform 0.35s;
610
+ transition: opacity 0.35s, transform 0.35s;
611
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
612
+ -webkit-transform: translate3d(0, -100px, 0);
613
+ transform: translate3d(0, -100px, 0); }
614
+
615
+ .premium-banner-animation12:hover .premium-banner-ib-content,
616
+ .premium-banner-animation12.active .premium-banner-ib-content {
617
+ opacity: 1;
618
+ -webkit-transform: translate3d(0, 0, 0);
619
+ transform: translate3d(0, 0, 0); }
620
+
621
+ .premium-banner-animation13 img {
622
+ width: -webkit-calc(100% + 20px) !important;
623
+ width: calc(100% + 20px) !important;
624
+ max-width: -webkit-calc(100% + 20px) !important;
625
+ max-width: calc(100% + 20px) !important;
626
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
627
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
628
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
629
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
630
+ -webkit-transform: translate3d(-10px, 0, 0);
631
+ transform: translate3d(-10px, 0, 0);
632
+ -webkit-backface-visibility: hidden;
633
+ backface-visibility: hidden; }
634
+
635
+ .premium-banner-animation13.zoomout img,
636
+ .premium-banner-animation13.scale img {
637
+ -webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
638
+ transform: translate3d(-10px, 0, 0) scale(1.1); }
639
+
640
+ .premium-banner-animation13.none:hover img {
641
+ -webkit-transform: translate3d(0, 0, 0);
642
+ transform: translate3d(0, 0, 0); }
643
+
644
+ .premium-banner-animation1.none:hover img,
645
+ .premium-banner-animation4.none:hover img {
646
+ -webkit-transform: translate3d(0, 0, 0);
647
+ transform: translate3d(0, 0, 0); }
648
+
649
+ .premium-banner-animation13.zoomin:hover img,
650
+ .premium-banner-animation1.zoomin:hover img,
651
+ .premium-banner-animation4.zoomin:hover img,
652
+ .premium-banner-animation8.zoomin:hover img,
653
+ .premium-banner-animation7.zoomin:hover img,
654
+ .premium-banner-animation9.zoomin:hover img,
655
+ .premium-banner-animation10.zoomin:hover img,
656
+ .premium-banner-animation11.zoomin:hover img {
657
+ -webkit-transform: translate3d(0, 0, 0) scale(1.1);
658
+ transform: translate3d(0, 0, 0) scale(1.1); }
659
+
660
+ .premium-banner-animation13.zoomout:hover img,
661
+ .premium-banner-animation1.zoomout:hover img,
662
+ .premium-banner-animation4.zoomout:hover img,
663
+ .premium-banner-animation8.zoomout:hover img,
664
+ .premium-banner-animation7.zoomout:hover img,
665
+ .premium-banner-animation9.zoomout:hover img,
666
+ .premium-banner-animation10.zoomout:hover img,
667
+ .premium-banner-animation11.zoomout:hover img {
668
+ -webkit-transform: translate3d(0, 0, 0) scale(1);
669
+ transform: translate3d(0, 0, 0) scale(1); }
670
+
671
+ .premium-banner-animation13.scale:hover img,
672
+ .premium-banner-animation1.scale:hover img,
673
+ .premium-banner-animation4.scale:hover img,
674
+ .premium-banner-animation8.scale:hover img,
675
+ .premium-banner-animation7.scale:hover img,
676
+ .premium-banner-animation9.scale:hover img,
677
+ .premium-banner-animation10.scale:hover img,
678
+ .premium-banner-animation11.scale:hover img {
679
+ -webkit-transform: translate3d(0, 0, 0) scale(1.2) rotate(5deg);
680
+ transform: translate3d(0, 0, 0) scale(1.2) rotate(5deg); }
681
+
682
+ .premium-banner-animation13.grayscale:hover img,
683
+ .premium-banner-animation1.grayscale:hover img,
684
+ .premium-banner-animation4.grayscale:hover img,
685
+ .premium-banner-animation8.grayscale:hover img,
686
+ .premium-banner-animation7.grayscale:hover img,
687
+ .premium-banner-animation9.grayscale:hover img,
688
+ .premium-banner-animation10.grayscale:hover img,
689
+ .premium-banner-animation11.grayscale:hover img {
690
+ -webkit-transform: translate3d(0, 0, 0);
691
+ transform: translate3d(0, 0, 0);
692
+ -webkit-filter: grayscale(100%);
693
+ filter: grayscale(100%); }
694
+
695
+ .premium-banner-animation13.blur:hover img,
696
+ .premium-banner-animation1.blur:hover img,
697
+ .premium-banner-animation4.blur:hover,
698
+ .premium-banner-animation8.blur:hover img,
699
+ .premium-banner-animation7.blur:hover img,
700
+ .premium-banner-animation9.blur:hover img,
701
+ .premium-banner-animation10.blur:hover img,
702
+ .premium-banner-animation11.blur:hover img {
703
+ -webkit-transform: translate3d(0, 0, 0);
704
+ transform: translate3d(0, 0, 0);
705
+ -webkit-filter: blur(3px);
706
+ filter: blur(3px); }
707
+
708
+ .premium-banner-animation13 .premium-banner-ib-desc {
709
+ text-align: left; }
710
+
711
+ .premium-banner-animation13 .premium-banner-ib-title {
712
+ position: relative;
713
+ overflow: hidden;
714
+ padding: 5px 0 10px; }
715
+ .premium-banner-animation13 .premium-banner-ib-title::after {
716
+ position: absolute;
717
+ content: "";
718
+ bottom: 0;
719
+ left: 0;
720
+ width: 100%;
721
+ height: 2px;
722
+ background: #fff;
723
+ -webkit-transition: -webkit-transform 0.35s;
724
+ transition: -webkit-transform 0.35s;
725
+ transition: transform 0.35s;
726
+ transition: transform 0.35s, -webkit-transform 0.35s;
727
+ -webkit-transform: translate3d(-101%, 0, 0);
728
+ transform: translate3d(-101%, 0, 0); }
729
+
730
+ .premium-banner-animation13:hover .premium-banner-ib-title::after,
731
+ .premium-banner-animation13.active .premium-banner-ib-title::after {
732
+ -webkit-transform: translate3d(0, 0, 0);
733
+ transform: translate3d(0, 0, 0); }
734
+
735
+ .premium-banner-animation13 .premium-banner-ib-content,
736
+ .premium-banner-animation13 .premium-banner-read-more {
737
+ padding: 15px 0;
738
+ opacity: 0;
739
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
740
+ transition: opacity 0.35s, -webkit-transform 0.35s;
741
+ transition: opacity 0.35s, transform 0.35s;
742
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
743
+ -webkit-transform: translate3d(100%, 0, 0);
744
+ transform: translate3d(100%, 0, 0); }
745
+
746
+ .premium-banner-animation13:hover .premium-banner-ib-content,
747
+ .premium-banner-animation13.active .premium-banner-ib-content,
748
+ .premium-banner-animation13:hover .premium-banner-read-more,
749
+ .premium-banner-animation13.active .premium-banner-read-more {
750
+ opacity: 1;
751
+ -webkit-transform: translate3d(0, 0, 0);
752
+ transform: translate3d(0, 0, 0); }
753
+
754
+ .premium-banner-ib.premium-banner-animation5 .premium-banner-toggle-size {
755
+ left: 50%;
756
+ width: auto !important;
757
+ height: 100%;
758
+ max-width: none;
759
+ -webkit-transform: translateX(-50%);
760
+ -ms-transform: translateX(-50%);
761
+ transform: translateX(-50%); }
762
+
763
+ .premium-banner-ib img {
764
+ border: none;
765
+ padding: 0;
766
+ margin: 0; }
767
+
768
+ .premium-banner-animation7 img {
769
+ width: -webkit-calc(100% + 40px) !important;
770
+ width: calc(100% + 40px) !important;
771
+ max-width: -webkit-calc(100% + 40px) !important;
772
+ max-width: calc(100% + 40px) !important;
773
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
774
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
775
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
776
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
777
+
778
+ .premium-banner-animation7 .premium-banner-brlr {
779
+ width: 7px; }
780
+
781
+ .premium-banner-animation7 .premium-banner-brtb {
782
+ height: 7px; }
783
+
784
+ .premium-banner-animation7 .premium-banner-br {
785
+ position: absolute;
786
+ z-index: 1;
787
+ background-color: white;
788
+ -webkit-transition: all 0.3s ease-in-out;
789
+ transition: all 0.3s ease-in-out;
790
+ -webkit-transition-delay: 0.2s;
791
+ transition-delay: 0.2s; }
792
+
793
+ .premium-banner-animation7 .premium-banner-bleft {
794
+ left: 30px;
795
+ top: -webkit-calc(100% - 150px);
796
+ top: calc(100% - 150px);
797
+ height: 0; }
798
+
799
+ .premium-banner-animation7 .premium-banner-bright {
800
+ right: 30px;
801
+ bottom: -webkit-calc(100% - 150px);
802
+ bottom: calc(100% - 150px);
803
+ height: 0; }
804
+
805
+ .premium-banner-animation7 .premium-banner-bottom {
806
+ right: -webkit-calc(100% - 150px);
807
+ right: calc(100% - 150px);
808
+ bottom: 30px;
809
+ width: 0; }
810
+
811
+ .premium-banner-animation7 .premium-banner-btop {
812
+ left: -webkit-calc(100% - 150px);
813
+ left: calc(100% - 150px);
814
+ top: 30px;
815
+ width: 0; }
816
+
817
+ .premium-banner-animation7 .premium-banner-ib-desc {
818
+ padding: 70px;
819
+ display: table; }
820
+ .premium-banner-animation7 .premium-banner-ib-desc .premium-banner-desc-centered {
821
+ display: table-cell;
822
+ vertical-align: middle; }
823
+
824
+ .premium-banner-animation7 .premium-banner-ib-title {
825
+ margin-top: 0; }
826
+
827
+ .premium-banner-animation7 .premium-banner-ib-title,
828
+ .premium-banner-animation7 img {
829
+ -webkit-transform: translate3d(-30px, 0, 0);
830
+ transform: translate3d(-30px, 0, 0); }
831
+
832
+ .premium-banner-animation7.zoomout img,
833
+ .premium-banner-animation7.scale img {
834
+ -webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
835
+ transform: translate3d(-30px, 0, 0) scale(1.1); }
836
+
837
+ .premium-banner-animation7 .premium-banner-ib-content,
838
+ .premium-banner-animation7 .premium-banner-read-more {
839
+ margin-top: 10px; }
840
+
841
+ .premium-banner-animation7 .premium-banner-ib-desc::after, .premium-banner-animation7 .premium-banner-ib-desc::before {
842
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
843
+ transition: opacity 0.35s, -webkit-transform 0.35s;
844
+ transition: opacity 0.35s, transform 0.35s;
845
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
846
+
847
+ .premium-banner-animation7 .premium-banner-ib-title,
848
+ .premium-banner-animation7 .premium-banner-ib-content,
849
+ .premium-banner-animation7 .premium-banner-read-more {
850
+ opacity: 0;
851
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
852
+ transition: opacity 0.35s, -webkit-transform 0.35s;
853
+ transition: opacity 0.35s, transform 0.35s;
854
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
855
+
856
+ .premium-banner-animation7:hover .premium-banner-ib-content,
857
+ .premium-banner-animation7.active .premium-banner-ib-content,
858
+ .premium-banner-animation7:hover .premium-banner-read-more,
859
+ .premium-banner-animation7.active .premium-banner-read-more,
860
+ .premium-banner-animation7:hover .premium-banner-ib-title,
861
+ .premium-banner-animation7.active .premium-banner-ib-title {
862
+ opacity: 1;
863
+ -webkit-transform: translate3d(0, 0, 0);
864
+ transform: translate3d(0, 0, 0); }
865
+
866
+ .premium-banner-animation7:hover .premium-banner-bleft, .premium-banner-animation7.active .premium-banner-bleft {
867
+ top: 30px;
868
+ height: 70px; }
869
+
870
+ .premium-banner-animation7:hover .premium-banner-bright, .premium-banner-animation7.active .premium-banner-bright {
871
+ bottom: 30px;
872
+ height: 70px; }
873
+
874
+ .premium-banner-animation7:hover .premium-banner-bottom, .premium-banner-animation7.active .premium-banner-bottom {
875
+ right: 30px;
876
+ width: 70px; }
877
+
878
+ .premium-banner-animation7:hover .premium-banner-btop, .premium-banner-animation7.active .premium-banner-btop {
879
+ left: 30px;
880
+ width: 70px; }
881
+
882
+ .premium-banner-animation7:hover .premium-banner-ib-content,
883
+ .premium-banner-animation7:hover .premium-banner-read-more,
884
+ .premium-banner-animation7:hover .premium-banner-ib-title,
885
+ .premium-banner-animation7:hover img {
886
+ -webkit-transition-delay: 0.15s;
887
+ transition-delay: 0.15s; }
888
+
889
+ .premium-banner-animation8 img {
890
+ width: -webkit-calc(100% + 40px) !important;
891
+ width: calc(100% + 40px) !important;
892
+ max-width: -webkit-calc(100% + 40px) !important;
893
+ max-width: calc(100% + 40px) !important;
894
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
895
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
896
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
897
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
898
+
899
+ .premium-banner-animation8 .premium-banner-brlr {
900
+ width: 7px; }
901
+
902
+ .premium-banner-animation8 .premium-banner-brtb {
903
+ height: 7px; }
904
+
905
+ .premium-banner-animation8 .premium-banner-br {
906
+ position: absolute;
907
+ z-index: 1;
908
+ background-color: white;
909
+ -webkit-transition: all 0.3s ease-in-out;
910
+ transition: all 0.3s ease-in-out;
911
+ -webkit-transition-delay: 0.2s;
912
+ transition-delay: 0.2s; }
913
+
914
+ .premium-banner-animation8 .premium-banner-bleft {
915
+ left: 30px;
916
+ top: 50%;
917
+ -webkit-transform: translateY(-50%);
918
+ -ms-transform: translateY(-50%);
919
+ transform: translateY(-50%);
920
+ height: 0; }
921
+
922
+ .premium-banner-animation8 .premium-banner-bright {
923
+ right: 30px;
924
+ top: 50%;
925
+ -webkit-transform: translateY(-50%);
926
+ -ms-transform: translateY(-50%);
927
+ transform: translateY(-50%);
928
+ height: 0; }
929
+
930
+ .premium-banner-animation8 .premium-banner-bottom {
931
+ left: 50%;
932
+ -webkit-transform: translateX(-50%);
933
+ -ms-transform: translateX(-50%);
934
+ transform: translateX(-50%);
935
+ bottom: 30px;
936
+ width: 0; }
937
+
938
+ .premium-banner-animation8 .premium-banner-btop {
939
+ left: 50%;
940
+ -webkit-transform: translateX(-50%);
941
+ -ms-transform: translateX(-50%);
942
+ transform: translateX(-50%);
943
+ top: 30px;
944
+ width: 0; }
945
+
946
+ .premium-banner-animation8 .premium-banner-ib-desc {
947
+ padding: 70px;
948
+ display: table; }
949
+ .premium-banner-animation8 .premium-banner-ib-desc .premium-banner-desc-centered {
950
+ display: table-cell;
951
+ vertical-align: middle; }
952
+
953
+ .premium-banner-animation8 .premium-banner-ib-title {
954
+ margin-top: 0; }
955
+
956
+ .premium-banner-animation8 .premium-banner-ib-title,
957
+ .premium-banner-animation8 img {
958
+ -webkit-transform: translate3d(-30px, 0, 0);
959
+ transform: translate3d(-30px, 0, 0); }
960
+
961
+ .premium-banner-animation8.zoomout img,
962
+ .premium-banner-animation8.scale img {
963
+ -webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
964
+ transform: translate3d(-30px, 0, 0) scale(1.1); }
965
+
966
+ .premium-banner-animation8 .premium-banner-ib-content,
967
+ .premium-banner-animation8 .premium-banner-read-more {
968
+ margin-top: 10px; }
969
+
970
+ .premium-banner-animation8 .premium-banner-ib-desc::after, .premium-banner-animation8 .premium-banner-ib-desc::before {
971
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
972
+ transition: opacity 0.35s, -webkit-transform 0.35s;
973
+ transition: opacity 0.35s, transform 0.35s;
974
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
975
+
976
+ .premium-banner-animation8 .premium-banner-ib-title,
977
+ .premium-banner-animation8 .premium-banner-ib-content,
978
+ .premium-banner-animation8 .premium-banner-read-more {
979
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
980
+ transition: opacity 0.35s, -webkit-transform 0.35s;
981
+ transition: opacity 0.35s, transform 0.35s;
982
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
983
+ opacity: 0; }
984
+
985
+ .premium-banner-animation8:hover .premium-banner-ib-content,
986
+ .premium-banner-animation8.active .premium-banner-ib-content,
987
+ .premium-banner-animation8:hover .premium-banner-read-more,
988
+ .premium-banner-animation8.active .premium-banner-read-more,
989
+ .premium-banner-animation8:hover .premium-banner-ib-title,
990
+ .premium-banner-animation8.active .premium-banner-ib-title {
991
+ opacity: 1;
992
+ -webkit-transform: translate3d(0, 0, 0);
993
+ transform: translate3d(0, 0, 0); }
994
+
995
+ .premium-banner-animation8:hover .premium-banner-bleft, .premium-banner-animation8.active .premium-banner-bleft {
996
+ height: -webkit-calc(100% - 61px);
997
+ height: calc(100% - 61px); }
998
+
999
+ .premium-banner-animation8:hover .premium-banner-bright, .premium-banner-animation8.active .premium-banner-bright {
1000
+ height: -webkit-calc(100% - 61px);
1001
+ height: calc(100% - 61px); }
1002
+
1003
+ .premium-banner-animation8:hover .premium-banner-bottom, .premium-banner-animation8.active .premium-banner-bottom {
1004
+ width: -webkit-calc(100% - 61px);
1005
+ width: calc(100% - 61px); }
1006
+
1007
+ .premium-banner-animation8:hover .premium-banner-btop, .premium-banner-animation8.active .premium-banner-btop {
1008
+ width: -webkit-calc(100% - 61px);
1009
+ width: calc(100% - 61px); }
1010
+
1011
+ .premium-banner-animation8:hover .premium-banner-ib-content,
1012
+ .premium-banner-animation8:hover .premium-banner-ib-title,
1013
+ .premium-banner-animation8:hover .premium-banner-read-more,
1014
+ .premium-banner-animation8:hover img {
1015
+ -webkit-transition-delay: 0.15s;
1016
+ transition-delay: 0.15s; }
1017
+
1018
+ .premium-banner-animation9 img {
1019
+ width: -webkit-calc(100% + 20px) !important;
1020
+ width: calc(100% + 20px) !important;
1021
+ max-width: -webkit-calc(100% + 20px) !important;
1022
+ max-width: calc(100% + 20px) !important;
1023
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1024
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1025
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
1026
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1027
+ -webkit-transform: scale(1.2);
1028
+ -ms-transform: scale(1.2);
1029
+ transform: scale(1.2); }
1030
+
1031
+ .premium-banner-animation9 .premium-banner-ib-desc {
1032
+ width: 100%;
1033
+ height: 100%; }
1034
+ .premium-banner-animation9 .premium-banner-ib-desc::before {
1035
+ position: absolute;
1036
+ top: 50%;
1037
+ left: 50%;
1038
+ width: 80%;
1039
+ height: 1px;
1040
+ background: #fff;
1041
+ content: "";
1042
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1043
+ transition: opacity 0.35s, -webkit-transform 0.35s;
1044
+ transition: opacity 0.35s, transform 0.35s;
1045
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1046
+ -webkit-transform: translate3d(-50%, -50%, 0);
1047
+ transform: translate3d(-50%, -50%, 0); }
1048
+ .premium-banner-animation9 .premium-banner-ib-desc::after {
1049
+ position: absolute;
1050
+ top: 50%;
1051
+ left: 50%;
1052
+ width: 80%;
1053
+ height: 1px;
1054
+ background: #fff;
1055
+ content: "";
1056
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1057
+ transition: opacity 0.35s, -webkit-transform 0.35s;
1058
+ transition: opacity 0.35s, transform 0.35s;
1059
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1060
+ -webkit-transform: translate3d(-50%, -50%, 0);
1061
+ transform: translate3d(-50%, -50%, 0); }
1062
+
1063
+ .premium-banner-animation9 .premium-banner-ib-title {
1064
+ position: absolute;
1065
+ top: 50%;
1066
+ left: 0;
1067
+ width: 100%;
1068
+ -webkit-transition: -webkit-transform 0.35s;
1069
+ transition: -webkit-transform 0.35s;
1070
+ transition: transform 0.35s;
1071
+ transition: transform 0.35s, -webkit-transform 0.35s;
1072
+ -webkit-transform: translate3d(0, -70px, 0);
1073
+ transform: translate3d(0, -70px, 0);
1074
+ margin-top: 0;
1075
+ padding: 0 10%; }
1076
+
1077
+ .premium-banner-animation9:hover .premium-banner-ib-title,
1078
+ .premium-banner-animation9.active .premium-banner-ib-title {
1079
+ -webkit-transform: translate3d(0, -80px, 0);
1080
+ transform: translate3d(0, -80px, 0); }
1081
+
1082
+ .premium-banner-animation9 .premium-banner-ib-content,
1083
+ .premium-banner-animation9 .premium-banner-read-more {
1084
+ position: absolute;
1085
+ top: 50%;
1086
+ left: 0;
1087
+ width: 100%;
1088
+ -webkit-transition: -webkit-transform 0.35s;
1089
+ transition: -webkit-transform 0.35s;
1090
+ transition: transform 0.35s;
1091
+ transition: transform 0.35s, -webkit-transform 0.35s;
1092
+ padding: 0 10%;
1093
+ -webkit-transform: translate3d(0, 35px, 0);
1094
+ transform: translate3d(0, 35px, 0); }
1095
+
1096
+ .premium-banner-animation9 .premium-banner-read-more {
1097
+ top: 75%; }
1098
+
1099
+ .premium-banner-animation9:hover .premium-banner-ib-content,
1100
+ .premium-banner-animation9.active .premium-banner-ib-content,
1101
+ .premium-banner-animation9:hover .premium-banner-read-more,
1102
+ .premium-banner-animation9.active .premium-banner-read-more {
1103
+ -webkit-transform: translate3d(0, 45px, 0);
1104
+ transform: translate3d(0, 45px, 0); }
1105
+
1106
+ .premium-banner-animation9:hover .premium-banner-ib-desc::before,
1107
+ .premium-banner-animation9.active .premium-banner-ib-desc::before {
1108
+ opacity: 0.5;
1109
+ -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
1110
+ transform: translate3d(-50%, -50%, 0) rotate(45deg); }
1111
+
1112
+ .premium-banner-animation9:hover .premium-banner-ib-desc::after,
1113
+ .premium-banner-animation9.active .premium-banner-ib-desc::after {
1114
+ opacity: 0.5;
1115
+ -webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
1116
+ transform: translate3d(-50%, -50%, 0) rotate(-45deg); }
1117
+
1118
+ .premium-banner-animation9:hover img {
1119
+ -webkit-transform: scale(1);
1120
+ -ms-transform: scale(1);
1121
+ transform: scale(1); }
1122
+
1123
+ .premium-banner-animation10 img {
1124
+ width: -webkit-calc(100% + 20px) !important;
1125
+ width: calc(100% + 20px) !important;
1126
+ max-width: -webkit-calc(100% + 20px) !important;
1127
+ max-width: calc(100% + 20px) !important;
1128
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1129
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1130
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
1131
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
1132
+
1133
+ .premium-banner-animation10 .premium-banner-ib-title {
1134
+ position: relative;
1135
+ overflow: hidden;
1136
+ padding: 5px 0 15px;
1137
+ -webkit-transition: -webkit-transform 0.35s;
1138
+ transition: -webkit-transform 0.35s;
1139
+ transition: transform 0.35s;
1140
+ transition: transform 0.35s, -webkit-transform 0.35s;
1141
+ -webkit-transform: translate3d(0, 20px, 0);
1142
+ transform: translate3d(0, 20px, 0);
1143
+ margin-bottom: 0; }
1144
+ .premium-banner-animation10 .premium-banner-ib-title::after {
1145
+ position: absolute;
1146
+ content: "";
1147
+ bottom: 0;
1148
+ left: 0;
1149
+ width: 100%;
1150
+ height: 3px;
1151
+ background: #fff;
1152
+ opacity: 0;
1153
+ -webkit-transform: translate3d(0, 100%, 0);
1154
+ transform: translate3d(0, 100%, 0);
1155
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1156
+ transition: opacity 0.35s, -webkit-transform 0.35s;
1157
+ transition: opacity 0.35s, transform 0.35s;
1158
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
1159
+
1160
+ .premium-banner-animation10:hover .premium-banner-ib-title,
1161
+ .premium-banner-animation10.active .premium-banner-ib-title {
1162
+ -webkit-transform: translate3d(0, 0, 0);
1163
+ transform: translate3d(0, 0, 0); }
1164
+
1165
+ .premium-banner-animation10:hover .premium-banner-ib-title::after,
1166
+ .premium-banner-animation10.active .premium-banner-ib-title::after {
1167
+ opacity: 1;
1168
+ -webkit-transform: translate3d(0, 0, 0);
1169
+ transform: translate3d(0, 0, 0); }
1170
+
1171
+ .premium-banner-animation10.zoomout img,
1172
+ .premium-banner-animation10.scale img {
1173
+ -webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
1174
+ transform: translate3d(-10px, 0, 0) scale(1.1); }
1175
+
1176
+ .premium-banner-animation10 .premium-banner-ib-content,
1177
+ .premium-banner-animation10 .premium-banner-read-more {
1178
+ padding-top: 15px;
1179
+ opacity: 0;
1180
+ -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
1181
+ transition: opacity 0.35s, -webkit-transform 0.35s;
1182
+ transition: opacity 0.35s, transform 0.35s;
1183
+ transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
1184
+ -webkit-transform: translate3d(0, 100%, 0);
1185
+ transform: translate3d(0, 100%, 0); }
1186
+
1187
+ .premium-banner-animation10 .premium-banner-read-more {
1188
+ padding: 0; }
1189
+
1190
+ .premium-banner-animation10:hover .premium-banner-ib-content,
1191
+ .premium-banner-animation10.active .premium-banner-ib-content,
1192
+ .premium-banner-animation10:hover .premium-banner-read-more,
1193
+ .premium-banner-animation10.active .premium-banner-read-more {
1194
+ opacity: 1;
1195
+ -webkit-transform: translate3d(0, 0, 0);
1196
+ transform: translate3d(0, 0, 0); }
1197
+
1198
+ .premium-banner-animation11 {
1199
+ -webkit-transition: -webkit-transform 1s ease-out;
1200
+ transition: -webkit-transform 1s ease-out;
1201
+ transition: transform 1s ease-out;
1202
+ transition: transform 1s ease-out, -webkit-transform 1s ease-out;
1203
+ -webkit-transition-delay: 0.125s;
1204
+ transition-delay: 0.125s; }
1205
+ .premium-banner-animation11 .premium-banner-ib-desc {
1206
+ position: absolute;
1207
+ z-index: 5;
1208
+ -webkit-transform: translate3d(-30px, 0, 0);
1209
+ transform: translate3d(-30px, 0, 0);
1210
+ opacity: 0;
1211
+ top: auto;
1212
+ bottom: 0;
1213
+ min-height: 25%;
1214
+ height: auto;
1215
+ max-height: 100%;
1216
+ text-align: left;
1217
+ padding: 30px;
1218
+ -webkit-transition: all 0.6s ease-out;
1219
+ transition: all 0.6s ease-out; }
1220
+ .premium-banner-animation11 img {
1221
+ width: 100%;
1222
+ -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1223
+ transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
1224
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s;
1225
+ transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
1226
+ .premium-banner-animation11 .premium-banner-ib-title {
1227
+ margin-bottom: 10px; }
1228
+ .premium-banner-animation11 .premium-banner-gradient {
1229
+ position: absolute;
1230
+ left: 0;
1231
+ top: 0;
1232
+ right: 0;
1233
+ bottom: 0; }
1234
+ .premium-banner-animation11 .premium-banner-gradient:after,
1235
+ .premium-banner-animation11 .premium-banner-gradient:before {
1236
+ position: absolute;
1237
+ content: "";
1238
+ left: 0;
1239
+ top: 0;
1240
+ right: 0;
1241
+ bottom: 0;
1242
+ -webkit-transform: translate3d(-100%, 0, 0);
1243
+ transform: translate3d(-100%, 0, 0);
1244
+ background-image: -webkit-linear-gradient(40deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
1245
+ background-image: linear-gradient(50deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
1246
+ z-index: 2; }
1247
+ .premium-banner-animation11 .premium-banner-gradient:before {
1248
+ mix-blend-mode: color; }
1249
+ .premium-banner-animation11 .premium-banner-gradient:after {
1250
+ mix-blend-mode: multiply; }
1251
+ .premium-banner-animation11:hover .premium-banner-ib-desc,
1252
+ .premium-banner-animation11.active .premium-banner-ib-desc {
1253
+ opacity: 1;
1254
+ -webkit-transform: translate3d(0, 0, 0);
1255
+ transform: translate3d(0, 0, 0); }
1256
+ .premium-banner-animation11:hover .premium-banner-gradient:after,
1257
+ .premium-banner-animation11:hover .premium-banner-gradient:before,
1258
+ .premium-banner-animation11.active .premium-banner-gradient:after,
1259
+ .premium-banner-animation11.active .premium-banner-gradient:before {
1260
+ -webkit-transform: translate3d(0, 0, 0);
1261
+ transform: translate3d(0, 0, 0); }
1262
+ .premium-banner-animation11.zoomout img,
1263
+ .premium-banner-animation11.scale img {
1264
+ -webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
1265
+ transform: translate3d(-10px, 0, 0) scale(1.1); }
1266
+
1267
+ /**************** Premium Blog *****************/
1268
+ /***********************************************/
1269
+ .premium-blog-thumb-effect-wrapper {
1270
+ position: relative;
1271
+ overflow: hidden; }
1272
+
1273
+ .premium-blog-effect-container:not(.premium-blog-bordered-effect) .premium-blog-post-link {
1274
+ position: absolute;
1275
+ top: 0;
1276
+ left: 0;
1277
+ width: 100%;
1278
+ height: 100%;
1279
+ z-index: 2;
1280
+ padding: 20px; }
1281
+
1282
+ .premium-blog-bordered-effect .premium-blog-post-link {
1283
+ display: block;
1284
+ height: 100%;
1285
+ position: relative; }
1286
+
1287
+ /*Thumbnail Img*/
1288
+ .premium-blog-thumbnail-container {
1289
+ overflow: hidden; }
1290
+ .premium-blog-thumbnail-container img,
1291
+ .premium-blog-thumbnail-container .below-entry-meta {
1292
+ width: 100%;
1293
+ height: 100%;
1294
+ margin: 0 !important;
1295
+ -webkit-transition: all 0.4s ease-in-out;
1296
+ transition: all 0.4s ease-in-out; }
1297
+
1298
+ .premium-blog-thumb-effect-wrapper .premium-blog-zoomout-effect img,
1299
+ .premium-blog-thumb-effect-wrapper .premium-blog-scale-effect img {
1300
+ -webkit-transform: scale(1.2);
1301
+ -ms-transform: scale(1.2);
1302
+ transform: scale(1.2); }
1303
+
1304
+ .premium-blog-thumb-effect-wrapper .premium-blog-sepia-effect img {
1305
+ -webkit-filter: sepia(30%);
1306
+ filter: sepia(30%); }
1307
+
1308
+ .premium-blog-thumb-effect-wrapper .premium-blog-bright-effect img {
1309
+ -webkit-filter: brightness(1);
1310
+ filter: brightness(1); }
1311
+
1312
+ .premium-blog-thumb-effect-wrapper .premium-blog-trans-effect img {
1313
+ -webkit-transform: translateX(-15px) scale(1.1);
1314
+ -ms-transform: translateX(-15px) scale(1.1);
1315
+ transform: translateX(-15px) scale(1.1); }
1316
+
1317
+ .premium-blog-post-outer-container:hover .premium-blog-zoomin-effect img {
1318
+ -webkit-transform: scale(1.2);
1319
+ -ms-transform: scale(1.2);
1320
+ transform: scale(1.2); }
1321
+
1322
+ .premium-blog-post-outer-container:hover .premium-blog-zoomout-effect img {
1323
+ -webkit-transform: scale(1.1);
1324
+ -ms-transform: scale(1.1);
1325
+ transform: scale(1.1); }
1326
+
1327
+ .premium-blog-post-outer-container:hover .premium-blog-scale-effect img {
1328
+ -webkit-transform: scale(1.3) rotate(5deg);
1329
+ -ms-transform: scale(1.3) rotate(5deg);
1330
+ transform: scale(1.3) rotate(5deg); }
1331
+
1332
+ .premium-blog-post-outer-container:hover .premium-blog-gray-effect img {
1333
+ -webkit-filter: grayscale(100%);
1334
+ filter: grayscale(100%); }
1335
+
1336
+ .premium-blog-post-outer-container:hover .premium-blog-blur-effect img {
1337
+ -webkit-filter: blur(3px);
1338
+ filter: blur(3px); }
1339
+
1340
+ .premium-blog-post-outer-container:hover .premium-blog-sepia-effect img {
1341
+ -webkit-filter: sepia(0%);
1342
+ filter: sepia(0%); }
1343
+
1344
+ .premium-blog-post-outer-container:hover .premium-blog-bright-effect img {
1345
+ -webkit-filter: brightness(1.2);
1346
+ filter: brightness(1.2); }
1347
+
1348
+ .premium-blog-post-outer-container:hover .premium-blog-trans-effect img {
1349
+ -webkit-transform: translateX(0px) scale(1.1);
1350
+ -ms-transform: translateX(0px) scale(1.1);
1351
+ transform: translateX(0px) scale(1.1); }
1352
+
1353
+ .premium-blog-post-container {
1354
+ overflow: hidden; }
1355
+ .premium-blog-post-container .premium-blog-inner-container {
1356
+ -js-display: flex;
1357
+ display: -webkit-box;
1358
+ display: -webkit-flex;
1359
+ display: -moz-box;
1360
+ display: -ms-flexbox;
1361
+ display: flex; }
1362
+ .premium-blog-post-container .premium-blog-entry-container {
1363
+ margin: 0 !important; }
1364
+ .premium-blog-post-container .premium-blog-post-content {
1365
+ line-height: 1.5em;
1366
+ color: #777;
1367
+ font-size: 14px;
1368
+ margin-bottom: 10px; }
1369
+ .premium-blog-post-container ul.post-categories a:hover, .premium-blog-post-container ul.post-categories a:focus,
1370
+ .premium-blog-post-container .premium-blog-post-link:hover,
1371
+ .premium-blog-post-container .premium-blog-post-link:focus {
1372
+ -webkit-box-shadow: none !important;
1373
+ box-shadow: none !important;
1374
+ outline: none !important; }
1375
+ .premium-blog-post-container .premium-blog-entry-title {
1376
+ font-size: 18px;
1377
+ margin-bottom: 5px; }
1378
+ .premium-blog-post-container.premium-blog-skin-modern .premium-blog-content-wrapper {
1379
+ position: relative;
1380
+ z-index: 3;
1381
+ top: -50px; }
1382
+ .premium-blog-post-container .premium-blog-content-wrapper {
1383
+ background-color: #f5f5f5;
1384
+ padding: 30px; }
1385
+ .premium-blog-post-container .premium-blog-content-wrapper.empty-thumb {
1386
+ top: 0; }
1387
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before, .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:after {
1388
+ position: absolute;
1389
+ content: "";
1390
+ z-index: 1;
1391
+ top: 50%;
1392
+ left: 50%;
1393
+ opacity: 0;
1394
+ -webkit-transform: translate(-50%, -50%);
1395
+ -ms-transform: translate(-50%, -50%);
1396
+ transform: translate(-50%, -50%);
1397
+ -webkit-transition: all 0.4s linear 0s;
1398
+ transition: all 0.4s linear 0s;
1399
+ height: 1px;
1400
+ width: 100%;
1401
+ background-color: #fff; }
1402
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before {
1403
+ width: 1px;
1404
+ height: 100%; }
1405
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-container:after {
1406
+ width: 20px;
1407
+ opacity: 1; }
1408
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-container:before {
1409
+ height: 20px;
1410
+ opacity: 1; }
1411
+ .premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-content-wrapper {
1412
+ margin: 0px 10px 20px;
1413
+ clear: both; }
1414
+ .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay, .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay, .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay {
1415
+ position: absolute;
1416
+ top: 0;
1417
+ left: 0;
1418
+ width: 100%;
1419
+ height: 100%;
1420
+ -webkit-transition: all 0.3s ease-in-out;
1421
+ transition: all 0.3s ease-in-out;
1422
+ opacity: 0; }
1423
+ .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay a, .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay a, .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay a {
1424
+ -js-display: flex;
1425
+ display: -webkit-box;
1426
+ display: -webkit-flex;
1427
+ display: -moz-box;
1428
+ display: -ms-flexbox;
1429
+ display: flex;
1430
+ -webkit-box-pack: center;
1431
+ -webkit-justify-content: center;
1432
+ -moz-box-pack: center;
1433
+ -ms-flex-pack: center;
1434
+ justify-content: center;
1435
+ -webkit-box-align: center;
1436
+ -webkit-align-items: center;
1437
+ -moz-box-align: center;
1438
+ -ms-flex-align: center;
1439
+ align-items: center;
1440
+ width: 100%;
1441
+ height: 100%; }
1442
+ .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay span,
1443
+ .premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay i, .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay span,
1444
+ .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay i, .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay span,
1445
+ .premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay i {
1446
+ -webkit-transition: all 0.3s ease-in-out;
1447
+ transition: all 0.3s ease-in-out; }
1448
+ .premium-blog-post-container.premium-blog-skin-side {
1449
+ -js-display: flex;
1450
+ display: -webkit-box;
1451
+ display: -webkit-flex;
1452
+ display: -moz-box;
1453
+ display: -ms-flexbox;
1454
+ display: flex; }
1455
+ .premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-container {
1456
+ height: 100%; }
1457
+ .premium-blog-post-container.premium-blog-skin-side .premium-blog-content-wrapper {
1458
+ -webkit-box-flex: 1;
1459
+ -webkit-flex: 1;
1460
+ -moz-box-flex: 1;
1461
+ -ms-flex: 1;
1462
+ flex: 1; }
1463
+ .premium-blog-post-container.premium-blog-skin-banner {
1464
+ position: relative; }
1465
+ .premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper {
1466
+ position: absolute;
1467
+ width: 100%;
1468
+ bottom: 0;
1469
+ -js-display: flex;
1470
+ display: -webkit-box;
1471
+ display: -webkit-flex;
1472
+ display: -moz-box;
1473
+ display: -ms-flexbox;
1474
+ display: flex;
1475
+ -webkit-box-orient: vertical;
1476
+ -webkit-box-direction: normal;
1477
+ -webkit-flex-direction: column;
1478
+ -moz-box-orient: vertical;
1479
+ -moz-box-direction: normal;
1480
+ -ms-flex-direction: column;
1481
+ flex-direction: column;
1482
+ background-color: transparent;
1483
+ z-index: 3; }
1484
+ .premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper-inner {
1485
+ -webkit-transition: -webkit-transform 0.3s ease-in-out;
1486
+ transition: -webkit-transform 0.3s ease-in-out;
1487
+ transition: transform 0.3s ease-in-out;
1488
+ transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; }
1489
+ .premium-blog-post-container.premium-blog-skin-banner:hover .premium-blog-content-wrapper-inner {
1490
+ -webkit-transform: translateY(-5px);
1491
+ -ms-transform: translateY(-5px);
1492
+ transform: translateY(-5px); }
1493
+ .premium-blog-post-container .premium-blog-cats-container ul.post-categories {
1494
+ margin: 0;
1495
+ padding: 0;
1496
+ list-style: none;
1497
+ -js-display: flex;
1498
+ display: -webkit-box;
1499
+ display: -webkit-flex;
1500
+ display: -moz-box;
1501
+ display: -ms-flexbox;
1502
+ display: flex; }
1503
+ .premium-blog-post-container .premium-blog-cats-container a {
1504
+ display: block;
1505
+ font-size: 12px;
1506
+ color: #fff;
1507
+ background-color: #777;
1508
+ margin: 0 3px 10px 0;
1509
+ padding: 5px;
1510
+ -webkit-transition: all 0.3s ease-in-out;
1511
+ transition: all 0.3s ease-in-out; }
1512
+
1513
  /*
1514
  * Diagonal Effect
1515
+ */
1516
+ .premium-blog-diagonal-container {
1517
+ position: absolute;
1518
+ top: 0;
1519
+ left: 0;
1520
+ width: 100%;
1521
+ height: 100%; }
1522
+
1523
+ .premium-blog-diagonal-effect:before {
1524
+ position: absolute;
1525
+ top: 0px;
1526
+ left: 0px;
1527
+ width: 100%;
1528
+ height: 100%;
1529
+ content: " ";
1530
+ z-index: 1;
1531
+ background: rgba(255, 255, 255, 0.2);
1532
+ -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
1533
+ transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
1534
+ -webkit-transition: all 0.3s linear 0s;
1535
+ transition: all 0.3s linear 0s; }
1536
+
1537
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-diagonal-effect:before {
1538
+ -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
1539
+ transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0); }
1540
+
1541
  /*
1542
  * Framed Effect
1543
+ */
1544
+ .premium-blog-framed-effect {
1545
+ position: absolute;
1546
+ width: -webkit-calc(100% - 30px);
1547
+ width: calc(100% - 30px);
1548
+ height: -webkit-calc(100% - 30px);
1549
+ height: calc(100% - 30px);
1550
+ top: 15px;
1551
+ left: 15px;
1552
+ opacity: 0;
1553
+ -webkit-transform: scale(0.3);
1554
+ -ms-transform: scale(0.3);
1555
+ transform: scale(0.3);
1556
+ -webkit-transition: all 0.3s linear 0s;
1557
+ transition: all 0.3s linear 0s; }
1558
+
1559
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-framed-effect {
1560
+ opacity: 0.99;
1561
+ -webkit-transform: scale(1);
1562
+ -ms-transform: scale(1);
1563
+ transform: scale(1); }
1564
+
1565
  /*
1566
  * Bordered Effect
1567
+ */
1568
+ .premium-blog-bordered-effect {
1569
+ position: absolute;
1570
+ top: 0;
1571
+ left: 0;
1572
+ width: 100%;
1573
+ height: 100%;
1574
+ opacity: 0;
1575
+ padding: 15px;
1576
+ -webkit-transition: all 0.3s linear 0s;
1577
+ transition: all 0.3s linear 0s; }
1578
+ .premium-blog-bordered-effect .premium-blog-post-link:before, .premium-blog-bordered-effect .premium-blog-post-link:after {
1579
+ content: "";
1580
+ display: block;
1581
+ position: absolute;
1582
+ top: 0;
1583
+ left: 0;
1584
+ width: 100%;
1585
+ height: 100%;
1586
+ -webkit-transition: all 0.5s linear 0s;
1587
+ transition: all 0.5s linear 0s;
1588
+ -webkit-transition-delay: 0s;
1589
+ transition-delay: 0s;
1590
+ border-color: rgba(255, 255, 255, 0.45); }
1591
+ .premium-blog-bordered-effect .premium-blog-post-link:before {
1592
+ border-right: 2px solid;
1593
+ border-left: 2px solid;
1594
+ -webkit-transform: scale(1, 0);
1595
+ -ms-transform: scale(1, 0);
1596
+ transform: scale(1, 0);
1597
+ -webkit-transform-origin: 100% 0;
1598
+ -ms-transform-origin: 100% 0;
1599
+ transform-origin: 100% 0; }
1600
+ .premium-blog-bordered-effect .premium-blog-post-link:after {
1601
+ border-top: 2px solid;
1602
+ border-bottom: 2px solid;
1603
+ -webkit-transform: scale(0, 1);
1604
+ -ms-transform: scale(0, 1);
1605
+ transform: scale(0, 1);
1606
+ -webkit-transform-origin: 0 0;
1607
+ -ms-transform-origin: 0 0;
1608
+ transform-origin: 0 0; }
1609
+
1610
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect {
1611
+ opacity: 0.99; }
1612
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect .premium-blog-post-link:before, .premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect .premium-blog-post-link:after {
1613
+ -webkit-transition-delay: 0.15s;
1614
+ transition-delay: 0.15s;
1615
+ opacity: 1;
1616
+ -webkit-transform: scale(1);
1617
+ -ms-transform: scale(1);
1618
+ transform: scale(1); }
1619
+
1620
  /*
1621
  * Squares Effect
1622
+ */
1623
+ .premium-blog-squares-effect,
1624
+ .premium-blog-squares-square-container {
1625
+ position: absolute;
1626
+ top: 0;
1627
+ left: 0;
1628
+ width: 100%;
1629
+ height: 100%; }
1630
+
1631
+ .premium-blog-squares-effect:before, .premium-blog-squares-effect:after {
1632
+ position: absolute;
1633
+ content: "";
1634
+ top: 0;
1635
+ left: 0;
1636
+ width: 50%;
1637
+ height: 50%;
1638
+ -webkit-transform: translate(-100%, -100%);
1639
+ -ms-transform: translate(-100%, -100%);
1640
+ transform: translate(-100%, -100%);
1641
+ opacity: 0.7;
1642
+ -webkit-transition: all 0.3s linear 0s;
1643
+ transition: all 0.3s linear 0s; }
1644
+
1645
+ .premium-blog-squares-square-container:before, .premium-blog-squares-square-container:after {
1646
+ position: absolute;
1647
+ content: "";
1648
+ top: 0;
1649
+ left: 0;
1650
+ width: 50%;
1651
+ height: 50%;
1652
+ -webkit-transform: translate(-100%, -100%);
1653
+ -ms-transform: translate(-100%, -100%);
1654
+ transform: translate(-100%, -100%);
1655
+ opacity: 0.7;
1656
+ -webkit-transition: all 0.3s linear 0s;
1657
+ transition: all 0.3s linear 0s; }
1658
+
1659
+ .premium-blog-squares-square-container:before, .premium-blog-squares-square-container:after {
1660
+ opacity: 0.8; }
1661
+
1662
+ .premium-blog-squares-effect:after {
1663
+ -webkit-transform: translate(200%, 200%);
1664
+ -ms-transform: translate(200%, 200%);
1665
+ transform: translate(200%, 200%); }
1666
+
1667
+ .premium-blog-squares-square-container:before {
1668
+ -webkit-transform: translate(-100%, 200%);
1669
+ -ms-transform: translate(-100%, 200%);
1670
+ transform: translate(-100%, 200%); }
1671
+
1672
+ .premium-blog-squares-square-container:after {
1673
+ -webkit-transform: translate(200%, -100%);
1674
+ -ms-transform: translate(200%, -100%);
1675
+ transform: translate(200%, -100%); }
1676
+
1677
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:before {
1678
+ -webkit-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
1679
+ -ms-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
1680
+ transform: translate(0, 0%) scaleY(1.003) scaleX(1.003); }
1681
+
1682
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:after {
1683
+ -webkit-transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003);
1684
+ -ms-transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003);
1685
+ transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003); }
1686
+
1687
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:before {
1688
+ -webkit-transform: translate(0, 100%);
1689
+ -ms-transform: translate(0, 100%);
1690
+ transform: translate(0, 100%); }
1691
+
1692
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:after {
1693
+ -webkit-transform: translate(100%, 0%);
1694
+ -ms-transform: translate(100%, 0%);
1695
+ transform: translate(100%, 0%); }
1696
+
1697
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay {
1698
+ opacity: 1; }
1699
+ .premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay a {
1700
+ opacity: 1;
1701
+ -webkit-transform: scale(1);
1702
+ -ms-transform: scale(1);
1703
+ transform: scale(1); }
1704
+
1705
+ .premium-blog-clear-fix {
1706
+ clear: both; }
1707
+
1708
+ .premium-blog-masked .premium-blog-thumbnail-container {
1709
+ position: relative;
1710
+ overflow: visible; }
1711
+ .premium-blog-masked .premium-blog-thumbnail-container svg {
1712
+ position: absolute;
1713
+ height: 100px;
1714
+ width: 100%;
1715
+ bottom: -5px;
1716
+ left: 0;
1717
+ fill: #f5f5f5;
1718
+ z-index: 99; }
1719
+ .premium-blog-masked .premium-blog-thumbnail-container svg.premium-blog-shape-divider-svg {
1720
+ -webkit-transform: rotate(180deg);
1721
+ -ms-transform: rotate(180deg);
1722
+ transform: rotate(180deg); }
1723
+
1724
+ .premium-blog-masked .premium-blog-author-thumbnail,
1725
+ .premium-blog-masked .premium-blog-skin-banner .premium-blog-content-wrapper {
1726
+ z-index: 999 !important; }
1727
+
1728
+ .premium-blog-format-link {
1729
+ padding: 5px;
1730
+ line-height: 0; }
1731
+
1732
+ .premium-blog-entry-meta {
1733
+ line-height: 1.3em;
1734
+ font-size: 12px;
1735
+ margin-bottom: 13px;
1736
+ color: #adadad; }
1737
+ .premium-blog-entry-meta i {
1738
+ margin-right: 3px;
1739
+ -webkit-transition: all 0.3s ease-in-out;
1740
+ transition: all 0.3s ease-in-out; }
1741
+
1742
+ .premium-blog-meta-data {
1743
+ display: inline-block; }
1744
+ .premium-blog-meta-data .premium-blog-meta-separator {
1745
+ margin: 0 5px; }
1746
+ .premium-blog-meta-data a,
1747
+ .premium-blog-meta-data span {
1748
+ color: inherit;
1749
+ -webkit-transition: all 0.3s ease-in-out;
1750
+ transition: all 0.3s ease-in-out; }
1751
+
1752
+ .premium-blog-author-thumbnail {
1753
+ position: relative;
1754
+ padding: 0 30px;
1755
+ width: 100%;
1756
+ top: -10px;
1757
+ height: 0;
1758
+ pointer-events: none; }
1759
+ .premium-blog-author-thumbnail img {
1760
+ -webkit-border-radius: 50%;
1761
+ border-radius: 50%;
1762
+ width: 60px;
1763
+ pointer-events: all;
1764
+ -webkit-transform: translateY(-50%);
1765
+ -ms-transform: translateY(-50%);
1766
+ transform: translateY(-50%); }
1767
+
1768
+ .premium-blog-entry-title a,
1769
+ .premium-blog-post-tags-container a,
1770
+ .premium-blog-post-content .premium-blog-excerpt-link {
1771
+ -webkit-transition: all 0.3s ease-in-out;
1772
+ transition: all 0.3s ease-in-out; }
1773
+
1774
+ .premium-blog-excerpt-link-wrap a.premium-blog-excerpt-link {
1775
+ background-color: transparent;
1776
+ color: #54595f;
1777
+ padding: 0; }
1778
+
1779
+ .premium-blog-cta-full-yes .premium-blog-excerpt-link {
1780
+ width: 100%; }
1781
+
1782
+ .premium-blog-post-tags-container {
1783
+ margin-top: 8px;
1784
+ -js-display: flex;
1785
+ display: -webkit-box;
1786
+ display: -webkit-flex;
1787
+ display: -moz-box;
1788
+ display: -ms-flexbox;
1789
+ display: flex;
1790
+ -webkit-box-align: center;
1791
+ -webkit-align-items: center;
1792
+ -moz-box-align: center;
1793
+ -ms-flex-align: center;
1794
+ align-items: center;
1795
+ -webkit-flex-wrap: wrap;
1796
+ -ms-flex-wrap: wrap;
1797
+ flex-wrap: wrap; }
1798
+ .premium-blog-post-tags-container a {
1799
+ color: inherit;
1800
+ margin-left: 5px; }
1801
+
1802
+ /*Tags align*/
1803
+ .premium-blog-align-left .post-categories,
1804
+ .premium-blog-align-left .premium-blog-inner-container,
1805
+ .premium-blog-align-left .premium-blog-post-tags-container {
1806
+ -webkit-box-pack: start;
1807
+ -webkit-justify-content: flex-start;
1808
+ -moz-box-pack: start;
1809
+ -ms-flex-pack: start;
1810
+ justify-content: flex-start; }
1811
+
1812
+ .premium-blog-align-center .post-categories,
1813
+ .premium-blog-align-center .premium-blog-inner-container,
1814
+ .premium-blog-align-center .premium-blog-post-tags-container {
1815
+ -webkit-box-pack: center;
1816
+ -webkit-justify-content: center;
1817
+ -moz-box-pack: center;
1818
+ -ms-flex-pack: center;
1819
+ justify-content: center; }
1820
+
1821
+ .premium-blog-align-right .post-categories,
1822
+ .premium-blog-align-right .premium-blog-inner-container,
1823
+ .premium-blog-align-right .premium-blog-post-tags-container {
1824
+ -webkit-box-pack: end;
1825
+ -webkit-justify-content: flex-end;
1826
+ -moz-box-pack: end;
1827
+ -ms-flex-pack: end;
1828
+ justify-content: flex-end; }
1829
+
1830
+ /* Pagination */
1831
+ .premium-blog-pagination-container {
1832
+ text-align: right; }
1833
+ .premium-blog-pagination-container span {
1834
+ cursor: default; }
1835
+ .premium-blog-pagination-container .page-numbers {
1836
+ display: inline-block;
1837
+ color: #000;
1838
+ line-height: 1;
1839
+ font-size: 1em;
1840
+ font-weight: 400;
1841
+ text-decoration: none;
1842
+ padding: 0.75em;
1843
+ margin: 0 0.4em 0.4em 0;
1844
+ -webkit-transition: all 0.3s ease-in-out;
1845
+ transition: all 0.3s ease-in-out; }
1846
+
1847
+ .premium-blog-wrap .premium-loading-feed {
1848
+ display: block;
1849
+ position: absolute;
1850
+ width: 100%;
1851
+ height: 100%;
1852
+ top: 0px;
1853
+ left: 0px;
1854
+ bottom: 0px;
1855
+ right: 0px;
1856
+ background: rgba(255, 255, 255, 0.2);
1857
+ -js-display: flex;
1858
+ display: -webkit-box;
1859
+ display: -webkit-flex;
1860
+ display: -moz-box;
1861
+ display: -ms-flexbox;
1862
+ display: flex;
1863
+ -webkit-box-align: center;
1864
+ -webkit-align-items: center;
1865
+ -moz-box-align: center;
1866
+ -ms-flex-align: center;
1867
+ align-items: center;
1868
+ z-index: 99; }
1869
+
1870
+ .premium-blog-wrap {
1871
+ -js-display: flex;
1872
+ display: -webkit-box;
1873
+ display: -webkit-flex;
1874
+ display: -moz-box;
1875
+ display: -ms-flexbox;
1876
+ display: flex;
1877
+ -webkit-flex-wrap: wrap;
1878
+ -ms-flex-wrap: wrap;
1879
+ flex-wrap: wrap; }
1880
+ .premium-blog-wrap ul.slick-dots {
1881
+ width: 100%; }
1882
+
1883
  /*
1884
  * List Layout
1885
+ */
1886
+ .premium-blog-list .premium-blog-post-outer-container {
1887
+ width: 100%; }
1888
+
1889
  /**
1890
  * Even Layout
1891
+ */
1892
+ .premium-blog-even .premium-blog-post-container {
1893
+ height: 100%; }
1894
+
1895
+ .premium-blog-even .slick-track {
1896
+ -js-display: flex;
1897
+ display: -webkit-box;
1898
+ display: -webkit-flex;
1899
+ display: -moz-box;
1900
+ display: -ms-flexbox;
1901
+ display: flex; }
1902
+
1903
+ .premium-blog-even .slick-slide {
1904
+ height: inherit !important; }
1905
+
1906
+ .premium-blog-filter {
1907
+ -js-display: flex;
1908
+ display: -webkit-box;
1909
+ display: -webkit-flex;
1910
+ display: -moz-box;
1911
+ display: -ms-flexbox;
1912
+ display: flex;
1913
+ -webkit-box-align: center;
1914
+ -webkit-align-items: center;
1915
+ -moz-box-align: center;
1916
+ -ms-flex-align: center;
1917
+ align-items: center;
1918
+ -webkit-box-pack: center;
1919
+ -webkit-justify-content: center;
1920
+ -moz-box-pack: center;
1921
+ -ms-flex-pack: center;
1922
+ justify-content: center; }
1923
+
1924
+ .premium-blog-filter .premium-blog-filters-container li a.category {
1925
+ outline: none;
1926
+ text-decoration: none;
1927
+ -webkit-border-radius: 75px;
1928
+ border-radius: 75px;
1929
+ margin: 15px 5px 20px;
1930
+ padding: 7px 20px;
1931
+ -webkit-transition: all 0.3s ease-in-out;
1932
+ transition: all 0.3s ease-in-out; }
1933
+
1934
+ .premium-blog-filter ul.premium-blog-filters-container {
1935
+ text-align: center;
1936
+ margin: 0;
1937
+ padding: 0; }
1938
+
1939
+ .premium-blog-filter .premium-blog-filters-container li {
1940
+ list-style: none;
1941
+ -js-display: inline-flex;
1942
+ display: -webkit-inline-box;
1943
+ display: -webkit-inline-flex;
1944
+ display: -moz-inline-box;
1945
+ display: -ms-inline-flexbox;
1946
+ display: inline-flex; }
1947
+
1948
  /**
1949
  * Responsive Style
1950
+ */
1951
+ @media (max-width: 768px) {
1952
+ .premium-blog-content-wrapper {
1953
+ top: 0;
1954
+ margin: 0;
1955
+ padding: 15px; }
1956
+ .premium-blog-skin-side {
1957
+ -webkit-box-orient: vertical;
1958
+ -webkit-box-direction: normal;
1959
+ -webkit-flex-direction: column;
1960
+ -moz-box-orient: vertical;
1961
+ -moz-box-direction: normal;
1962
+ -ms-flex-direction: column;
1963
+ flex-direction: column; } }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1964
 
1965
+ /**************** Premium Button ***********************/
1966
+ /*******************************************************/
1967
+ .premium-button {
1968
+ -js-display: inline-flex;
1969
+ display: -webkit-inline-box;
1970
+ display: -webkit-inline-flex;
1971
+ display: -moz-inline-box;
1972
+ display: -ms-inline-flexbox;
1973
+ display: inline-flex;
1974
+ position: relative;
1975
+ overflow: hidden;
1976
+ -webkit-backface-visibility: hidden;
1977
+ backface-visibility: hidden;
1978
+ -webkit-transform: translate3d(0, 0, 0);
1979
+ transform: translate3d(0, 0, 0);
1980
+ cursor: pointer;
1981
+ -webkit-transition: all 0.2s ease-in-out !important;
1982
+ transition: all 0.2s ease-in-out !important; }
1983
+
1984
+ .premium-button-style1,
1985
+ .premium-button-style2,
1986
+ .premium-button-style5,
1987
+ .premium-button-style7 {
1988
+ display: inline-block;
1989
+ vertical-align: middle;
1990
+ -webkit-transform: perspective(1px) translateZ(0);
1991
+ transform: perspective(1px) translateZ(0);
1992
+ -webkit-box-shadow: 0 0 1px transparent;
1993
+ box-shadow: 0 0 1px transparent;
1994
+ position: relative;
1995
+ -webkit-transition-property: color;
1996
+ transition-property: color;
1997
+ -webkit-transition-duration: 0.15s;
1998
+ transition-duration: 0.15s; }
1999
+
2000
+ .premium-button-style1:before,
2001
+ .premium-button-style2:before,
2002
+ .premium-button-style5:before {
2003
+ content: "";
2004
+ position: absolute;
2005
+ z-index: -1;
2006
+ top: 0;
2007
+ left: 0;
2008
+ right: 0;
2009
+ bottom: 0;
2010
+ -webkit-transform: scaleY(0);
2011
+ -ms-transform: scaleY(0);
2012
+ transform: scaleY(0);
2013
+ -webkit-transform-origin: 50% 0;
2014
+ -ms-transform-origin: 50% 0;
2015
+ transform-origin: 50% 0;
2016
+ -webkit-transition-property: -webkit-transform;
2017
+ transition-property: -webkit-transform;
2018
+ transition-property: transform;
2019
+ transition-property: transform, -webkit-transform;
2020
+ -webkit-transition-duration: 0.15s;
2021
+ transition-duration: 0.15s;
2022
+ -webkit-transition-timing-function: ease-out;
2023
+ transition-timing-function: ease-out; }
2024
+
2025
+ .premium-button-style5-radialin:before,
2026
+ .premium-button-style5-radialout:before {
2027
+ -webkit-transform-origin: 50%;
2028
+ -ms-transform-origin: 50%;
2029
+ transform-origin: 50%;
2030
+ -webkit-border-radius: 100%;
2031
+ border-radius: 100%;
2032
+ -webkit-transform: scale(0);
2033
+ -ms-transform: scale(0);
2034
+ transform: scale(0); }
2035
+
2036
+ .premium-button-style5-radialin:before {
2037
+ -webkit-transform: scale(2);
2038
+ -ms-transform: scale(2);
2039
+ transform: scale(2); }
2040
+
2041
+ .premium-button-style5-rectin:before {
2042
+ -webkit-transform-origin: 50%;
2043
+ -ms-transform-origin: 50%;
2044
+ transform-origin: 50%;
2045
+ -webkit-transform: scale(1);
2046
+ -ms-transform: scale(1);
2047
+ transform: scale(1); }
2048
+
2049
+ .premium-button-style5-rectout:before {
2050
+ -webkit-transform-origin: 50%;
2051
+ -ms-transform-origin: 50%;
2052
+ transform-origin: 50%;
2053
+ -webkit-transform: scale(0);
2054
+ -ms-transform: scale(0);
2055
+ transform: scale(0); }
2056
+
2057
+ .premium-button-style5-rectout:hover:before {
2058
+ -webkit-transform: scale(1);
2059
+ -ms-transform: scale(1);
2060
+ transform: scale(1); }
2061
+
2062
+ .premium-button-style5-rectin:hover:before {
2063
+ -webkit-transform: scale(0);
2064
+ -ms-transform: scale(0);
2065
+ transform: scale(0); }
2066
+
2067
+ .premium-button-style5-radialout:hover:before {
2068
+ -webkit-transform: scale(2);
2069
+ -ms-transform: scale(2);
2070
+ transform: scale(2); }
2071
+
2072
+ .premium-button-style5-radialin:hover:before {
2073
+ -webkit-transform: scale(0);
2074
+ -ms-transform: scale(0);
2075
+ transform: scale(0); }
2076
+
2077
+ .premium-button-style1-top:before {
2078
+ -webkit-transform-origin: 50% 100%;
2079
+ -ms-transform-origin: 50% 100%;
2080
+ transform-origin: 50% 100%; }
2081
+
2082
+ .premium-button-style1-right:before {
2083
+ -webkit-transform: scaleX(0);
2084
+ -ms-transform: scaleX(0);
2085
+ transform: scaleX(0);
2086
+ -webkit-transform-origin: 0% 50%;
2087
+ -ms-transform-origin: 0% 50%;
2088
+ transform-origin: 0% 50%; }
2089
+
2090
+ .premium-button-style1-left:before {
2091
+ -webkit-transform: scaleX(0);
2092
+ -ms-transform: scaleX(0);
2093
+ transform: scaleX(0);
2094
+ -webkit-transform-origin: 100% 50%;
2095
+ -ms-transform-origin: 100% 50%;
2096
+ transform-origin: 100% 50%; }
2097
+
2098
+ .premium-button-style2-shutouthor:before,
2099
+ .premium-button-style2-scshutoutver:before {
2100
+ -webkit-transform: scaleY(0);
2101
+ -ms-transform: scaleY(0);
2102
+ transform: scaleY(0);
2103
+ -webkit-transform-origin: 100% 50%;
2104
+ -ms-transform-origin: 100% 50%;
2105
+ transform-origin: 100% 50%; }
2106
+
2107
+ .premium-button-style2-shutoutver:before,
2108
+ .premium-button-style2-scshutouthor:before {
2109
+ -webkit-transform: scaleX(0);
2110
+ -ms-transform: scaleX(0);
2111
+ transform: scaleX(0);
2112
+ -webkit-transform-origin: 50% 50%;
2113
+ -ms-transform-origin: 50% 50%;
2114
+ transform-origin: 50% 50%; }
2115
+
2116
+ .premium-button-style2-shutinhor:before {
2117
+ -webkit-transform: scaleX(1);
2118
+ -ms-transform: scaleX(1);
2119
+ transform: scaleX(1);
2120
+ -webkit-transform-origin: 50%;
2121
+ -ms-transform-origin: 50%;
2122
+ transform-origin: 50%; }
2123
+
2124
+ .premium-button-style2-shutinver:before {
2125
+ -webkit-transform: scaleY(1);
2126
+ -ms-transform: scaleY(1);
2127
+ transform: scaleY(1);
2128
+ -webkit-transform-origin: 50%;
2129
+ -ms-transform-origin: 50%;
2130
+ transform-origin: 50%; }
2131
+
2132
+ .premium-button-style1-bottom:hover:before,
2133
+ .premium-button-style1-top:hover:before {
2134
+ -webkit-transform: scaleY(1);
2135
+ -ms-transform: scaleY(1);
2136
+ transform: scaleY(1); }
2137
+
2138
+ .premium-button-style1-left:hover:before,
2139
+ .premium-button-style1-right:hover:before,
2140
+ .premium-button-style2-shutouthor:hover:before,
2141
+ .premium-button-style2-shutoutver:hover:before {
2142
+ -webkit-transform: scaleX(1);
2143
+ -ms-transform: scaleX(1);
2144
+ transform: scaleX(1); }
2145
+
2146
+ .premium-button-style2-shutinhor:hover:before {
2147
+ -webkit-transform: scaleX(0);
2148
+ -ms-transform: scaleX(0);
2149
+ transform: scaleX(0); }
2150
+
2151
+ .premium-button-style2-shutinver:hover:before {
2152
+ -webkit-transform: scaleY(0);
2153
+ -ms-transform: scaleY(0);
2154
+ transform: scaleY(0); }
2155
+
2156
+ .premium-button-style2-scshutouthor:hover:before {
2157
+ -webkit-transform: scaleX(0.9);
2158
+ -ms-transform: scaleX(0.9);
2159
+ transform: scaleX(0.9); }
2160
+
2161
+ .premium-button-style2-scshutoutver:hover:before {
2162
+ -webkit-transform: scaleY(0.8);
2163
+ -ms-transform: scaleY(0.8);
2164
+ transform: scaleY(0.8); }
2165
+
2166
+ /*Diagonal*/
2167
+ .premium-button-style2-dshutinhor:before {
2168
+ top: 50%;
2169
+ left: 50%;
2170
+ width: 120%;
2171
+ height: 0%;
2172
+ -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
2173
+ -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
2174
+ transform: translateX(-50%) translateY(-50%) rotate(-45deg);
2175
+ -webkit-transform-origin: 50%;
2176
+ -ms-transform-origin: 50%;
2177
+ transform-origin: 50%;
2178
+ -webkit-transition-property: all;
2179
+ transition-property: all; }
2180
+
2181
+ .premium-button-style2-dshutinver:before {
2182
+ top: 50%;
2183
+ left: 50%;
2184
+ width: 120%;
2185
+ height: 0%;
2186
+ -webkit-transform-origin: 50%;
2187
+ -ms-transform-origin: 50%;
2188
+ transform-origin: 50%;
2189
+ -webkit-transition-property: all;
2190
+ transition-property: all;
2191
+ -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
2192
+ -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
2193
+ transform: translateX(-50%) translateY(-50%) rotate(45deg); }
2194
+
2195
+ .premium-button-style2-dshutinhor:hover:before,
2196
+ .premium-button-style2-dshutinver:hover:before {
2197
+ height: 220%; }
2198
+
2199
+ .premium-button-style3-before i,
2200
+ .premium-button-style3-before svg {
2201
+ opacity: 0;
2202
+ -webkit-transform: translateX(-5px);
2203
+ -ms-transform: translateX(-5px);
2204
+ transform: translateX(-5px);
2205
+ -webkit-transition: all 0.5s ease-in-out;
2206
+ transition: all 0.5s ease-in-out; }
2207
+
2208
+ .premium-button-style3-after i,
2209
+ .premium-button-style3-after svg {
2210
+ opacity: 0;
2211
+ -webkit-transform: translateX(-5px);
2212
+ -ms-transform: translateX(-5px);
2213
+ transform: translateX(-5px);
2214
+ -webkit-transition: all 0.5s ease-in-out;
2215
+ transition: all 0.5s ease-in-out;
2216
+ -webkit-transform: translateX(5px);
2217
+ -ms-transform: translateX(5px);
2218
+ transform: translateX(5px); }
2219
+
2220
+ .premium-button-style3-after:hover i,
2221
+ .premium-button-style3-after:hover svg {
2222
+ opacity: 1; }
2223
+
2224
+ .premium-button-style3-before:hover i,
2225
+ .premium-button-style3-before:hover svg {
2226
+ opacity: 1; }
2227
+
2228
+ .premium-button-text-icon-wrapper {
2229
+ width: 100%;
2230
+ -js-display: flex;
2231
+ display: -webkit-box;
2232
+ display: -webkit-flex;
2233
+ display: -moz-box;
2234
+ display: -ms-flexbox;
2235
+ display: flex;
2236
+ -webkit-box-pack: center;
2237
+ -webkit-justify-content: center;
2238
+ -moz-box-pack: center;
2239
+ -ms-flex-pack: center;
2240
+ justify-content: center;
2241
+ -webkit-box-align: center;
2242
+ -webkit-align-items: center;
2243
+ -moz-box-align: center;
2244
+ -ms-flex-align: center;
2245
+ align-items: center;
2246
+ -webkit-transition: all 0.2s ease-in-out;
2247
+ transition: all 0.2s ease-in-out; }
2248
+ .premium-button-text-icon-wrapper span,
2249
+ .premium-button-text-icon-wrapper i,
2250
+ .premium-button-text-icon-wrapper svg {
2251
+ -webkit-transition: all 0.2s ease-in-out;
2252
+ transition: all 0.2s ease-in-out; }
2253
+
2254
+ .premium-button-style4-icon-wrapper {
2255
+ position: absolute;
2256
+ z-index: 2;
2257
+ width: 100%;
2258
+ text-align: center;
2259
+ -js-display: flex;
2260
+ display: -webkit-box;
2261
+ display: -webkit-flex;
2262
+ display: -moz-box;
2263
+ display: -ms-flexbox;
2264
+ display: flex;
2265
+ -webkit-box-align: center;
2266
+ -webkit-align-items: center;
2267
+ -moz-box-align: center;
2268
+ -ms-flex-align: center;
2269
+ align-items: center;
2270
+ -webkit-box-pack: center;
2271
+ -webkit-justify-content: center;
2272
+ -moz-box-pack: center;
2273
+ -ms-flex-pack: center;
2274
+ justify-content: center;
2275
+ height: 100%;
2276
+ opacity: 0;
2277
+ -webkit-transition: all 0.3s ease-in-out;
2278
+ transition: all 0.3s ease-in-out; }
2279
+ .premium-button-style4-icon-wrapper.top {
2280
+ bottom: -100%;
2281
+ left: 0; }
2282
+ .premium-button-style4-icon-wrapper.bottom {
2283
+ top: -100%;
2284
+ left: 0; }
2285
+ .premium-button-style4-icon-wrapper.left {
2286
+ top: 0;
2287
+ left: -100%; }
2288
+ .premium-button-style4-icon-wrapper.right {
2289
+ top: 0;
2290
+ right: -100%; }
2291
+
2292
+ .premium-button-style4-bottom:hover .premium-button-style4-icon-wrapper {
2293
+ top: 0;
2294
+ opacity: 1; }
2295
+
2296
+ .premium-button-style4-top:hover .premium-button-style4-icon-wrapper {
2297
+ bottom: 0;
2298
+ opacity: 1; }
2299
+
2300
+ .premium-button-style4-left:hover .premium-button-style4-icon-wrapper {
2301
+ left: 0;
2302
+ opacity: 1; }
2303
+
2304
+ .premium-button-style4-right:hover .premium-button-style4-icon-wrapper {
2305
+ right: 0;
2306
+ opacity: 1; }
2307
+
2308
+ .premium-button-style4-bottom:hover .premium-button-text-icon-wrapper {
2309
+ -webkit-transform: translateY(100%);
2310
+ -ms-transform: translateY(100%);
2311
+ transform: translateY(100%);
2312
+ opacity: 0; }
2313
+
2314
+ .premium-button-style4-top:hover .premium-button-text-icon-wrapper {
2315
+ -webkit-transform: translateY(-100%);
2316
+ -ms-transform: translateY(-100%);
2317
+ transform: translateY(-100%);
2318
+ opacity: 0; }
2319
+
2320
+ .premium-button-style4-left:hover .premium-button-text-icon-wrapper {
2321
+ -webkit-transform: translateX(100%);
2322
+ -ms-transform: translateX(100%);
2323
+ transform: translateX(100%);
2324
+ opacity: 0; }
2325
+
2326
+ .premium-button-style4-right:hover .premium-button-text-icon-wrapper {
2327
+ -webkit-transform: translateX(-100%);
2328
+ -ms-transform: translateX(-100%);
2329
+ transform: translateX(-100%);
2330
+ opacity: 0; }
2331
+
2332
+ .premium-button-style6:before {
2333
+ content: "";
2334
+ position: absolute;
2335
+ left: 50%;
2336
+ top: 50%;
2337
+ width: 100px;
2338
+ height: 100px;
2339
+ -webkit-border-radius: 100%;
2340
+ border-radius: 100%;
2341
+ -webkit-transform: translate(-50%, -50%) scale(0);
2342
+ -ms-transform: translate(-50%, -50%) scale(0);
2343
+ transform: translate(-50%, -50%) scale(0);
2344
+ -webkit-transition: all 0.3s ease-in-out;
2345
+ transition: all 0.3s ease-in-out; }
2346
+
2347
+ .premium-button-style6:hover:before {
2348
+ -webkit-transform: translate(-50%, -50%) scale(3);
2349
+ -ms-transform: translate(-50%, -50%) scale(3);
2350
+ transform: translate(-50%, -50%) scale(3); }
2351
+
2352
+ .premium-button-style6 .premium-button-text-icon-wrapper {
2353
+ position: relative;
2354
+ z-index: 1; }
2355
+
2356
+ .premium-button-style7-right .premium-button-text-icon-wrapper:before,
2357
+ .premium-button-style7-left .premium-button-text-icon-wrapper:before {
2358
+ -webkit-transition: width 0.3s ease-out 0.15s;
2359
+ transition: width 0.3s ease-out 0.15s; }
2360
+
2361
+ .premium-button-style7-right .premium-button-text-icon-wrapper:after,
2362
+ .premium-button-style7-left .premium-button-text-icon-wrapper:after {
2363
+ -webkit-transition: width 0.3s ease-out 0s;
2364
+ transition: width 0.3s ease-out 0s; }
2365
+
2366
+ .premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
2367
+ .premium-button-style7-top .premium-button-text-icon-wrapper:before {
2368
+ -webkit-transition: height 0.3s ease-out 0.15s;
2369
+ transition: height 0.3s ease-out 0.15s; }
2370
+
2371
+ .premium-button-style7-bottom .premium-button-text-icon-wrapper:after,
2372
+ .premium-button-style7-top .premium-button-text-icon-wrapper:after {
2373
+ -webkit-transition: height 0.3s ease-out 0s;
2374
+ transition: height 0.3s ease-out 0s; }
2375
+
2376
+ .premium-button-style7:hover .premium-button-text-icon-wrapper:before {
2377
+ -webkit-transition-delay: 0s;
2378
+ transition-delay: 0s; }
2379
+
2380
+ .premium-button-style7:hover .premium-button-text-icon-wrapper:after {
2381
+ -webkit-transition-delay: 0.15s;
2382
+ transition-delay: 0.15s; }
2383
+
2384
+ .premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
2385
+ .premium-button-style7-bottom .premium-button-text-icon-wrapper:after {
2386
+ content: "";
2387
+ position: absolute;
2388
+ right: 0;
2389
+ top: 0;
2390
+ left: 0;
2391
+ height: 0;
2392
+ z-index: -1; }
2393
+
2394
+ .premium-button-style7-top .premium-button-text-icon-wrapper:after,
2395
+ .premium-button-style7-top .premium-button-text-icon-wrapper:before {
2396
+ content: "";
2397
+ position: absolute;
2398
+ right: 0;
2399
+ bottom: 0;
2400
+ left: 0;
2401
+ height: 0;
2402
+ z-index: -1; }
2403
+
2404
+ .premium-button-style7-right .premium-button-text-icon-wrapper:after,
2405
+ .premium-button-style7-right .premium-button-text-icon-wrapper:before {
2406
+ content: "";
2407
+ position: absolute;
2408
+ right: 0;
2409
+ top: 0;
2410
+ bottom: 0;
2411
+ width: 0;
2412
+ z-index: -1; }
2413
+
2414
+ .premium-button-style7-left .premium-button-text-icon-wrapper:after,
2415
+ .premium-button-style7-left .premium-button-text-icon-wrapper:before {
2416
+ content: "";
2417
+ position: absolute;
2418
+ left: 0;
2419
+ top: 0;
2420
+ bottom: 0;
2421
+ width: 0;
2422
+ z-index: -1; }
2423
+
2424
+ .premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:after,
2425
+ .premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:before {
2426
+ height: 100%;
2427
+ top: 0; }
2428
+
2429
+ .premium-button-style7-top:hover .premium-button-text-icon-wrapper:after,
2430
+ .premium-button-style7-top:hover .premium-button-text-icon-wrapper:before {
2431
+ height: 100%;
2432
+ bottom: 0; }
2433
+
2434
+ .premium-button-style7-left:hover .premium-button-text-icon-wrapper:after,
2435
+ .premium-button-style7-left:hover .premium-button-text-icon-wrapper:before {
2436
+ width: 100%;
2437
+ left: 0; }
2438
+
2439
+ .premium-button-style7-right:hover .premium-button-text-icon-wrapper:after,
2440
+ .premium-button-style7-right:hover .premium-button-text-icon-wrapper:before {
2441
+ width: 100%;
2442
+ right: 0; }
2443
+
2444
+ /**************** Premium Carousel ****************/
2445
+ /**************************************************/
2446
+ .premium-carousel-wrapper a.carousel-arrow, .premium-carousel-wrapper a.ver-carousel-arrow {
2447
+ -js-display: flex;
2448
+ display: -webkit-box;
2449
+ display: -webkit-flex;
2450
+ display: -moz-box;
2451
+ display: -ms-flexbox;
2452
+ display: flex;
2453
+ -webkit-box-align: center;
2454
+ -webkit-align-items: center;
2455
+ -moz-box-align: center;
2456
+ -ms-flex-align: center;
2457
+ align-items: center;
2458
+ -webkit-box-pack: center;
2459
+ -webkit-justify-content: center;
2460
+ -moz-box-pack: center;
2461
+ -ms-flex-pack: center;
2462
+ justify-content: center;
2463
+ width: 2em;
2464
+ height: 2em;
2465
+ line-height: 0;
2466
+ text-align: center;
2467
+ position: absolute;
2468
+ z-index: 99;
2469
+ cursor: pointer;
2470
+ -webkit-transition: all 0.3s ease-in-out;
2471
+ transition: all 0.3s ease-in-out;
2472
+ -webkit-appearance: inherit;
2473
+ border: none;
2474
+ -webkit-box-shadow: none;
2475
+ box-shadow: none; }
2476
+ .premium-carousel-wrapper a.carousel-arrow svg, .premium-carousel-wrapper a.ver-carousel-arrow svg {
2477
+ -webkit-transition: all 0.3s ease-in-out;
2478
+ transition: all 0.3s ease-in-out; }
2479
+
2480
+ .ver-carousel-arrow.carousel-next i {
2481
+ margin-bottom: -3px; }
2482
+
2483
+ .premium-carousel-wrapper a.slick-arrow:hover {
2484
+ -webkit-box-shadow: none !important;
2485
+ box-shadow: none !important; }
2486
+
2487
+ .premium-carousel-wrapper .premium-carousel-content-hidden {
2488
+ visibility: hidden; }
2489
+
2490
+ .premium-carousel-wrapper a.carousel-arrow {
2491
+ top: 50%; }
2492
+
2493
+ .premium-carousel-wrapper a.ver-carousel-arrow {
2494
+ left: 50%;
2495
+ -webkit-transform: translateX(-50%);
2496
+ -ms-transform: translateX(-50%);
2497
+ transform: translateX(-50%); }
2498
+
2499
+ .premium-carousel-dots-above ul.slick-dots {
2500
+ position: absolute;
2501
+ -js-display: flex;
2502
+ display: -webkit-box;
2503
+ display: -webkit-flex;
2504
+ display: -moz-box;
2505
+ display: -ms-flexbox;
2506
+ display: flex;
2507
+ width: auto;
2508
+ top: 50%;
2509
+ bottom: auto;
2510
+ -webkit-transform: translateY(-50%);
2511
+ -ms-transform: translateY(-50%);
2512
+ transform: translateY(-50%);
2513
+ -webkit-box-orient: vertical;
2514
+ -webkit-box-direction: normal;
2515
+ -webkit-flex-direction: column;
2516
+ -moz-box-orient: vertical;
2517
+ -moz-box-direction: normal;
2518
+ -ms-flex-direction: column;
2519
+ flex-direction: column; }
2520
+
2521
+ /*
2522
+ * Custom Navigation Dot
2523
+ */
2524
+ .premium-carousel-wrapper .premium-carousel-nav-dot,
2525
+ .premium-carousel-wrapper .premium-carousel-nav-arrow-prev,
2526
+ .premium-carousel-wrapper .premium-carousel-nav-arrow-next {
2527
+ display: none; }
2528
+
2529
+ .premium-carousel-wrapper ul.slick-dots svg {
2530
+ width: 20px;
2531
+ height: 20px;
2532
+ outline: none !important; }
2533
+
2534
+ /* Ripple Out */
2535
+ @-webkit-keyframes hvr-ripple-out {
2536
+ 0% {
2537
+ -webkit-transform: scale(1);
2538
+ transform: scale(1);
2539
+ opacity: 1; }
2540
+ 100% {
2541
+ -webkit-transform: scale(1.5);
2542
+ transform: scale(1.5);
2543
+ opacity: 0; } }
2544
+ @keyframes hvr-ripple-out {
2545
+ 0% {
2546
+ -webkit-transform: scale(1);
2547
+ transform: scale(1);
2548
+ opacity: 1; }
2549
+ 100% {
2550
+ -webkit-transform: scale(1.5);
2551
+ transform: scale(1.5);
2552
+ opacity: 0; } }
2553
+
2554
+ .premium-carousel-ripple-yes .premium-carousel-wrapper {
2555
+ padding-bottom: 1px; }
2556
+
2557
+ .premium-carousel-ripple-yes ul.slick-dots li {
2558
+ position: relative; }
2559
+ .premium-carousel-ripple-yes ul.slick-dots li i {
2560
+ position: relative;
2561
+ z-index: 1; }
2562
+ .premium-carousel-ripple-yes ul.slick-dots li:hover:before {
2563
+ content: "";
2564
+ position: absolute;
2565
+ -webkit-transform: scale(1);
2566
+ -ms-transform: scale(1);
2567
+ transform: scale(1);
2568
+ top: 0;
2569
+ right: 0;
2570
+ bottom: 0;
2571
+ left: 0;
2572
+ -webkit-border-radius: 50%;
2573
+ border-radius: 50%;
2574
+ pointer-events: none;
2575
+ background-color: rgba(0, 0, 0, 0.15); }
2576
+ .premium-carousel-ripple-yes ul.slick-dots li.slick-active:hover:before {
2577
+ background-color: rgba(0, 0, 0, 0.3); }
2578
+ .premium-carousel-ripple-yes ul.slick-dots li:hover:before {
2579
+ -webkit-animation: hvr-ripple-out 1.3s infinite;
2580
+ animation: hvr-ripple-out 1.3s infinite; }
2581
+
2582
+ .premium-carousel-wrapper.premium-carousel-scale .slick-slide {
2583
+ -webkit-transform: scale(1.25, 1.25);
2584
+ -ms-transform: scale(1.25, 1.25);
2585
+ transform: scale(1.25, 1.25);
2586
+ -webkit-transition: all 0.3s ease-in-out;
2587
+ transition: all 0.3s ease-in-out; }
2588
+
2589
+ .premium-carousel-wrapper.premium-carousel-scale div.slick-active {
2590
+ -webkit-transform: scale(1, 1);
2591
+ -ms-transform: scale(1, 1);
2592
+ transform: scale(1, 1); }
2593
+
2594
+ [dir="rtl"] .premium-carousel-inner .slick-slide {
2595
+ float: right; }
2596
+
2597
+ /**************** Premium Contact Form7 **********/
2598
+ /*************************************************/
2599
+ .premium-contact-form-anim-yes .wpcf7-span::after {
2600
+ display: block;
2601
+ height: 2px;
2602
+ content: "";
2603
+ top: -2px;
2604
+ position: relative;
2605
+ width: 0px;
2606
+ -webkit-transition: all ease-in-out 0.3s;
2607
+ transition: all ease-in-out 0.3s; }
2608
+
2609
+ .premium-contact-form-anim-yes .wpcf7-span.is-focused::after {
2610
+ width: 100%; }
2611
+
2612
+ .premium-cf7-container input.wpcf7-submit {
2613
+ -webkit-transition: all 0.3s ease-in-out;
2614
+ transition: all 0.3s ease-in-out; }
2615
+
2616
+ /**************** Premium CountDown *************/
2617
+ /************************************************/
2618
+ .premium-countdown {
2619
+ -js-display: flex;
2620
+ display: -webkit-box;
2621
+ display: -webkit-flex;
2622
+ display: -moz-box;
2623
+ display: -ms-flexbox;
2624
+ display: flex;
2625
+ text-align: center; }
2626
+
2627
+ .countdown-row {
2628
+ display: block;
2629
+ text-align: center; }
2630
+
2631
+ .countdown .countdown-section {
2632
+ display: inline-block;
2633
+ max-width: 100%;
2634
+ margin-bottom: 15px;
2635
+ -js-display: inline-flex;
2636
+ display: -webkit-inline-box;
2637
+ display: -webkit-inline-flex;
2638
+ display: -moz-inline-box;
2639
+ display: -ms-inline-flexbox;
2640
+ display: inline-flex;
2641
+ -webkit-box-align: center;
2642
+ -webkit-align-items: center;
2643
+ -moz-box-align: center;
2644
+ -ms-flex-align: center;
2645
+ align-items: center; }
2646
+ .countdown .countdown-section:last-child {
2647
+ margin-right: 0; }
2648
+
2649
+ .countdown span.countdown-amount {
2650
+ font-size: 70px;
2651
+ line-height: 1;
2652
+ padding: 40px; }
2653
+
2654
+ .countdown .pre_time-mid {
2655
+ display: block; }
2656
+
2657
+ .premium-countdown-separator-yes .countdown_separator {
2658
+ display: block;
2659
+ margin: 0 50px;
2660
+ font-size: 30px; }
2661
+
2662
+ .premium-countdown-separator-yes .countdown-row .countdown-section:last-child .countdown_separator,
2663
+ .premium-countdown-separator-yes .premium-countdown-block:last-child .countdown_separator {
2664
+ display: none; }
2665
+
2666
+ /**
2667
+ * Digit and unit styles
2668
+ */
2669
+ .side .countdown-section .countdown-period {
2670
+ vertical-align: bottom; }
2671
+
2672
+ .countdown .countdown-section .countdown-period {
2673
+ font-size: 17px;
2674
+ line-height: 3em; }
2675
+
2676
+ .side .countdown-section .countdown-amount,
2677
+ .side .countdown-section .countdown-period {
2678
+ display: inline-block; }
2679
+
2680
+ .side .countdown-section .countdown-amount {
2681
+ margin-right: 5px; }
2682
+
2683
+ .down .countdown-section .countdown-amount,
2684
+ .down .countdown-section .countdown-period {
2685
+ display: block; }
2686
+
2687
+ /**
2688
+ * Flip Layout
2689
+ */
2690
+ .premium-countdown-flip .premium-countdown-block {
2691
+ text-align: center;
2692
+ -js-display: inline-flex;
2693
+ display: -webkit-inline-box;
2694
+ display: -webkit-inline-flex;
2695
+ display: -moz-inline-box;
2696
+ display: -ms-inline-flexbox;
2697
+ display: inline-flex;
2698
+ -webkit-box-align: center;
2699
+ -webkit-align-items: center;
2700
+ -moz-box-align: center;
2701
+ -ms-flex-align: center;
2702
+ align-items: center; }
2703
+ .premium-countdown-flip .premium-countdown-block:last-child {
2704
+ margin-right: 0; }
2705
+
2706
+ .premium-countdown-flip .premium-countdown-label {
2707
+ overflow: hidden;
2708
+ color: #1a1a1a;
2709
+ text-transform: uppercase; }
2710
+
2711
+ .premium-countdown-flip .premium-countdown-figure {
2712
+ position: relative;
2713
+ height: 110px;
2714
+ width: 100px;
2715
+ line-height: 107px;
2716
+ background-color: #fff;
2717
+ -webkit-border-radius: 10px;
2718
+ border-radius: 10px;
2719
+ -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
2720
+ box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08); }
2721
+ .premium-countdown-flip .premium-countdown-figure:last-child {
2722
+ margin-right: 0; }
2723
+ .premium-countdown-flip .premium-countdown-figure > span {
2724
+ position: absolute;
2725
+ left: 0;
2726
+ right: 0;
2727
+ margin: auto;
2728
+ font-weight: 700; }
2729
+ .premium-countdown-flip .premium-countdown-figure .top {
2730
+ z-index: 3;
2731
+ -webkit-transform-origin: 50% 100%;
2732
+ -ms-transform-origin: 50% 100%;
2733
+ transform-origin: 50% 100%;
2734
+ -webkit-transform: perspective(200px);
2735
+ transform: perspective(200px);
2736
+ -webkit-backface-visibility: hidden;
2737
+ backface-visibility: hidden; }
2738
+ .premium-countdown-flip .premium-countdown-figure .bottom {
2739
+ z-index: 1; }
2740
+ .premium-countdown-flip .premium-countdown-figure .bottom::before {
2741
+ content: "";
2742
+ position: absolute;
2743
+ display: block;
2744
+ top: 0;
2745
+ left: 0;
2746
+ width: 100%;
2747
+ height: 50%;
2748
+ background-color: rgba(0, 0, 0, 0.02); }
2749
+ .premium-countdown-flip .premium-countdown-figure .top-back {
2750
+ -webkit-backface-visibility: hidden;
2751
+ backface-visibility: hidden;
2752
+ z-index: 4;
2753
+ bottom: 0;
2754
+ -webkit-transform-origin: 50% 0;
2755
+ -ms-transform-origin: 50% 0;
2756
+ transform-origin: 50% 0;
2757
+ -webkit-transform: perspective(200px) rotateX(180deg);
2758
+ transform: perspective(200px) rotateX(180deg); }
2759
+ .premium-countdown-flip .premium-countdown-figure .top-back span {
2760
+ position: absolute;
2761
+ top: -100%;
2762
+ left: 0;
2763
+ right: 0;
2764
+ margin: auto; }
2765
+ .premium-countdown-flip .premium-countdown-figure .bottom-back {
2766
+ z-index: 2;
2767
+ top: 0; }
2768
+ .premium-countdown-flip .premium-countdown-figure .bottom-back span {
2769
+ position: absolute;
2770
+ top: 0;
2771
+ left: 0;
2772
+ right: 0;
2773
+ margin: auto; }
2774
+ .premium-countdown-flip .premium-countdown-figure .top,
2775
+ .premium-countdown-flip .premium-countdown-figure .bottom-back,
2776
+ .premium-countdown-flip .premium-countdown-figure .top-back {
2777
+ height: 50%;
2778
+ overflow: hidden;
2779
+ background-color: #f7f7f7;
2780
+ -webkit-border-top-left-radius: 10px;
2781
+ border-top-left-radius: 10px;
2782
+ -webkit-border-top-right-radius: 10px;
2783
+ border-top-right-radius: 10px; }
2784
+ .premium-countdown-flip .premium-countdown-figure .top-back {
2785
+ -webkit-border-bottom-left-radius: 10px;
2786
+ border-bottom-left-radius: 10px;
2787
+ -webkit-border-bottom-right-radius: 10px;
2788
+ border-bottom-right-radius: 10px; }
2789
+ .premium-countdown-flip .premium-countdown-figure .top::after,
2790
+ .premium-countdown-flip .premium-countdown-figure .bottom-back::after {
2791
+ content: "";
2792
+ position: absolute;
2793
+ z-index: -1;
2794
+ left: 0;
2795
+ bottom: 0;
2796
+ width: 100%;
2797
+ height: 100%;
2798
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
2799
+
2800
+ .side .premium-countdown-figure,
2801
+ .side .premium-countdown-label {
2802
+ display: inline-block; }
2803
+
2804
+ .side .premium-countdown-figure {
2805
+ margin-right: 5px; }
2806
+
2807
+ .down .premium-countdown-figure,
2808
+ .down .premium-countdown-label {
2809
+ display: block; }
2810
+
2811
+ .down .premium-countdown-label {
2812
+ width: 100%; }
2813
+
2814
+ /**************** Premium Counter ***************/
2815
+ /************************************************/
2816
+ .premium-counter-area {
2817
+ padding: 10px 0;
2818
+ -js-display: flex;
2819
+ display: -webkit-box;
2820
+ display: -webkit-flex;
2821
+ display: -moz-box;
2822
+ display: -ms-flexbox;
2823
+ display: flex;
2824
+ -webkit-box-pack: center;
2825
+ -webkit-justify-content: center;
2826
+ -moz-box-pack: center;
2827
+ -ms-flex-pack: center;
2828
+ justify-content: center;
2829
+ -webkit-box-align: center;
2830
+ -webkit-align-items: center;
2831
+ -moz-box-align: center;
2832
+ -ms-flex-align: center;
2833
+ align-items: center; }
2834
+ .premium-counter-area.top {
2835
+ -webkit-box-orient: vertical;
2836
+ -webkit-box-direction: normal;
2837
+ -webkit-flex-direction: column;
2838
+ -moz-box-orient: vertical;
2839
+ -moz-box-direction: normal;
2840
+ -ms-flex-direction: column;
2841
+ flex-direction: column; }
2842
+ .premium-counter-area.right {
2843
+ -webkit-box-orient: horizontal;
2844
+ -webkit-box-direction: reverse;
2845
+ -webkit-flex-direction: row-reverse;
2846
+ -moz-box-orient: horizontal;
2847
+ -moz-box-direction: reverse;
2848
+ -ms-flex-direction: row-reverse;
2849
+ flex-direction: row-reverse; }
2850
+ .premium-counter-area.right .premium-counter-icon {
2851
+ padding-left: 20px; }
2852
+ .premium-counter-area.left .premium-counter-icon {
2853
+ padding-right: 20px; }
2854
+ .premium-counter-area .premium-counter-icon .icon i.fa:before {
2855
+ vertical-align: text-top; }
2856
+ .premium-counter-area .premium-counter-icon span.icon {
2857
+ text-align: center;
2858
+ display: inline-block;
2859
+ vertical-align: middle; }
2860
+ .premium-counter-area .premium-counter-icon .circle {
2861
+ -webkit-border-radius: 100%;
2862
+ border-radius: 100%; }
2863
+ .premium-counter-area .premium-counter-icon img,
2864
+ .premium-counter-area .premium-counter-icon svg {
2865
+ width: 80px; }
2866
+ .premium-counter-area .premium-counter-icon .premium-counter-animation svg {
2867
+ height: 80px; }
2868
+ .premium-counter-area .premium-counter-title p {
2869
+ padding: 0;
2870
+ margin: 0; }
2871
+ .premium-counter-area .premium-counter-value-wrap {
2872
+ -js-display: flex;
2873
+ display: -webkit-box;
2874
+ display: -webkit-flex;
2875
+ display: -moz-box;
2876
+ display: -ms-flexbox;
2877
+ display: flex;
2878
+ -webkit-box-align: center;
2879
+ -webkit-align-items: center;
2880
+ -moz-box-align: center;
2881
+ -ms-flex-align: center;
2882
+ align-items: center; }
2883
+
2884
+ .premium-init-wrapper {
2885
+ -js-display: flex;
2886
+ display: -webkit-box;
2887
+ display: -webkit-flex;
2888
+ display: -moz-box;
2889
+ display: -ms-flexbox;
2890
+ display: flex; }
2891
+ .premium-init-wrapper.row {
2892
+ -webkit-box-align: center;
2893
+ -webkit-align-items: center;
2894
+ -moz-box-align: center;
2895
+ -ms-flex-align: center;
2896
+ align-items: center; }
2897
+ .premium-init-wrapper.right {
2898
+ text-align: right; }
2899
+
2900
+ span.icon.flex-width {
2901
+ width: auto !important;
2902
+ height: auto !important; }
2903
+
2904
+ .premium-counter-area .premium-counter-init {
2905
+ font-size: 35px; }
2906
+
2907
+ /**************** Premium Dual Heading *****************/
2908
+ /*******************************************************/
2909
+ .premium-dual-header-first-header,
2910
+ .premium-dual-header-second-header {
2911
+ position: relative;
2912
+ padding: 0;
2913
+ margin: 0;
2914
+ display: inline-block;
2915
+ -webkit-transform: translate(0, 0);
2916
+ -ms-transform: translate(0, 0);
2917
+ transform: translate(0, 0); }
2918
+
2919
+ .premium-dual-header-first-clip .premium-dual-header-first-span,
2920
+ .premium-dual-header-second-clip {
2921
+ -webkit-text-fill-color: transparent;
2922
+ -webkit-background-clip: text;
2923
+ background-clip: text; }
2924
+
2925
+ .premium-dual-header-first-clip.stroke .premium-dual-header-first-span,
2926
+ .premium-dual-header-second-clip.stroke {
2927
+ -webkit-text-stroke-color: transparent;
2928
+ -webkit-text-fill-color: #fafafa;
2929
+ -webkit-text-stroke-width: 2px; }
2930
+
2931
+ @media (max-width: 500px) {
2932
+ .premium-dual-header-first-header,
2933
+ .premium-dual-header-second-header {
2934
+ word-wrap: break-word; } }
2935
+
2936
+ .premium-dual-header-first-header.gradient .premium-dual-header-first-span,
2937
+ .premium-dual-header-second-header.gradient {
2938
+ -webkit-background-size: 300% 300% !important;
2939
+ background-size: 300% 300% !important;
2940
+ -webkit-animation: Gradient 10s ease-in-out infinite;
2941
+ animation: Gradient 10s ease-in-out infinite; }
2942
+
2943
+ @-webkit-keyframes Gradient {
2944
+ 0% {
2945
+ background-position: 0% 50%; }
2946
+ 50% {
2947
+ background-position: 100% 50%; }
2948
+ 100% {
2949
+ background-position: 0% 50%; } }
2950
+
2951
+ @keyframes Gradient {
2952
+ 0% {
2953
+ background-position: 0% 50%; }
2954
+ 50% {
2955
+ background-position: 100% 50%; }
2956
+ 100% {
2957
+ background-position: 0% 50%; } }
2958
+
2959
+ .premium-mask-yes.premium-header-inline .premium-dual-header-first-span,
2960
+ .premium-mask-yes.premium-header-inline .premium-dual-header-first-span {
2961
+ display: inline-block !important; }
2962
+
2963
+ /**************** Premium Fancy Text *******************/
2964
+ /*******************************************************/
2965
+ .premium-suffix-text,
2966
+ .premium-fancy-text,
2967
+ .premium-prefix-text {
2968
+ font-size: 40px; }
2969
+
2970
+ .premium-fancy-text-wrapper:not(.typing) .premium-fancy-text,
2971
+ .premium-fancy-item-hidden {
2972
+ opacity: 0; }
2973
+
2974
+ .premium-fancy-text-wrapper .premium-fancy-list-items {
2975
+ list-style: none; }
2976
+
2977
+ .premium-fancy-text-wrapper .premium-fancy-text-span-align {
2978
+ vertical-align: top; }
2979
+
2980
+ .premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-text-items-wrapper {
2981
+ margin: 0;
2982
+ padding: 0;
2983
+ border: none;
2984
+ position: relative; }
2985
+
2986
+ .premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-list-items {
2987
+ position: absolute;
2988
+ top: 0;
2989
+ left: 0;
2990
+ display: inline-block; }
2991
+
2992
+ .premium-fancy-text-wrapper.zoomout .premium-fancy-item-hidden {
2993
+ -webkit-animation: pa-zoom-out 0.8s;
2994
+ animation: pa-zoom-out 0.8s; }
2995
+
2996
+ .premium-fancy-text-wrapper.zoomout .premium-fancy-item-visible {
2997
+ position: relative !important;
2998
+ -webkit-animation: pa-zoom-in 0.8s;
2999
+ animation: pa-zoom-in 0.8s; }
3000
+
3001
+ .premium-fancy-text-wrapper.zoomout .premium-fancy-text-items-wrapper {
3002
+ -webkit-perspective: 300px;
3003
+ perspective: 300px; }
3004
+
3005
+ .premium-fancy-text-wrapper.rotate .premium-fancy-list-items {
3006
+ -webkit-transform-origin: 50% 100%;
3007
+ -ms-transform-origin: 50% 100%;
3008
+ transform-origin: 50% 100%; }
3009
+
3010
+ .premium-fancy-text-wrapper.rotate .premium-fancy-item-hidden {
3011
+ -webkit-transform: rotateX(180deg);
3012
+ transform: rotateX(180deg);
3013
+ -webkit-animation: pa-rotate-out 1.2s;
3014
+ animation: pa-rotate-out 1.2s; }
3015
+
3016
+ .premium-fancy-text-wrapper.rotate .premium-fancy-item-visible {
3017
+ position: relative !important;
3018
+ -webkit-transform: rotateX(0deg);
3019
+ transform: rotateX(0deg);
3020
+ -webkit-animation: pa-rotate-in 1.2s;
3021
+ animation: pa-rotate-in 1.2s; }
3022
+
3023
+ .premium-fancy-text-wrapper.custom .premium-fancy-item-visible {
3024
+ position: relative !important; }
3025
+
3026
+ .premium-fancy-text-wrapper.auto-fade .premium-fancy-text {
3027
+ display: inline-block;
3028
+ width: 200px;
3029
+ font-weight: 400; }
3030
+
3031
+ .premium-fancy-text-wrapper.auto-fade .premium-fancy-svg-text {
3032
+ position: relative;
3033
+ vertical-align: sub; }
3034
+
3035
+ .premium-fancy-text-wrapper.auto-fade g > text {
3036
+ text-anchor: start;
3037
+ shape-rendering: crispEdges;
3038
+ opacity: 0;
3039
+ font-size: 300px;
3040
+ -webkit-animation-name: pa-auto-fade;
3041
+ animation-name: pa-auto-fade;
3042
+ -moz-animation-name: pa-auto-fade;
3043
+ -webkit-animation-duration: 9s;
3044
+ animation-duration: 9s;
3045
+ -webkit-animation-timing-function: linear;
3046
+ animation-timing-function: linear;
3047
+ -webkit-animation-iteration-count: infinite;
3048
+ animation-iteration-count: infinite; }
3049
+
3050
+ .premium-fancy-text-wrapper.auto-fade g > text:nth-child(1) {
3051
+ -webkit-animation-delay: 0s;
3052
+ animation-delay: 0s; }
3053
+
3054
+ .premium-fancy-text-wrapper.auto-fade g > text:nth-child(2) {
3055
+ -webkit-animation-delay: 3s;
3056
+ animation-delay: 3s; }
3057
+
3058
+ .premium-fancy-text-wrapper.auto-fade g > text:nth-child(3) {
3059
+ -webkit-animation-delay: 6s;
3060
+ animation-delay: 6s; }
3061
+
3062
+ .premium-fancy-text-wrapper.loading .premium-fancy-text {
3063
+ position: relative; }
3064
+ .premium-fancy-text-wrapper.loading .premium-fancy-text .premium-loading-bar {
3065
+ position: absolute;
3066
+ width: 100%;
3067
+ height: 3px;
3068
+ bottom: 0;
3069
+ left: 0;
3070
+ animation: pa-loading-bar 2.5s ease-out infinite;
3071
+ -webkit-animation: pa-loading-bar 2.5s ease-out infinite; }
3072
+
3073
+ .premium-fancy-text-wrapper.loading.pause .premium-fancy-text:hover .premium-loading-bar {
3074
+ -webkit-animation-play-state: paused;
3075
+ animation-play-state: paused; }
3076
+
3077
+ @-webkit-keyframes pa-auto-fade {
3078
+ 0% {
3079
+ opacity: 0; }
3080
+ 20% {
3081
+ opacity: 1; }
3082
+ 35% {
3083
+ opacity: 0; }
3084
+ 100% {
3085
+ opacity: 0; } }
3086
+
3087
+ @keyframes pa-auto-fade {
3088
+ 0% {
3089
+ opacity: 0; }
3090
+ 20% {
3091
+ opacity: 1; }
3092
+ 35% {
3093
+ opacity: 0; }
3094
+ 100% {
3095
+ opacity: 0; } }
3096
+
3097
+ @-webkit-keyframes pa-loading-bar {
3098
+ 0% {
3099
+ width: 0; }
3100
+ 100% {
3101
+ width: 100; } }
3102
+
3103
+ @keyframes pa-loading-bar {
3104
+ 0% {
3105
+ width: 0; }
3106
+ 100% {
3107
+ width: 100; } }
3108
+
3109
+ @-webkit-keyframes pa-zoom-in {
3110
+ 0% {
3111
+ opacity: 0;
3112
+ -webkit-transform: translateZ(100px);
3113
+ transform: translateZ(100px); }
3114
+ 100% {
3115
+ opacity: 1;
3116
+ -webkit-transform: translateZ(0);
3117
+ transform: translateZ(0); } }
3118
+
3119
+ @keyframes pa-zoom-in {
3120
+ 0% {
3121
+ opacity: 0;
3122
+ -webkit-transform: translateZ(100px);
3123
+ transform: translateZ(100px); }
3124
+ 100% {
3125
+ opacity: 1;
3126
+ -webkit-transform: translateZ(0);
3127
+ transform: translateZ(0); } }
3128
+
3129
+ @-webkit-keyframes pa-zoom-out {
3130
+ 0% {
3131
+ opacity: 1;
3132
+ -webkit-transform: translateZ(0);
3133
+ transform: translateZ(0); }
3134
+ 100% {
3135
+ opacity: 0;
3136
+ -webkit-transform: translateZ(-100px);
3137
+ transform: translateZ(-100px); } }
3138
+
3139
+ @keyframes pa-zoom-out {
3140
+ 0% {
3141
+ opacity: 1;
3142
+ -webkit-transform: translateZ(0);
3143
+ transform: translateZ(0); }
3144
+ 100% {
3145
+ opacity: 0;
3146
+ -webkit-transform: translateZ(-100px);
3147
+ transform: translateZ(-100px); } }
3148
+
3149
+ @-webkit-keyframes pa-rotate-in {
3150
+ 0% {
3151
+ opacity: 0;
3152
+ -webkit-transform: rotateX(180deg);
3153
+ transform: rotateX(180deg); }
3154
+ 35% {
3155
+ opacity: 0;
3156
+ -webkit-transform: rotateX(120deg);
3157
+ transform: rotateX(120deg); }
3158
+ 65% {
3159
+ opacity: 0; }
3160
+ 100% {
3161
+ opacity: 1;
3162
+ -webkit-transform: rotateX(360deg);
3163
+ transform: rotateX(360deg); } }
3164
+
3165
+ @keyframes pa-rotate-in {
3166
+ 0% {
3167
+ opacity: 0;
3168
+ -webkit-transform: rotateX(180deg);
3169
+ transform: rotateX(180deg); }
3170
+ 35% {
3171
+ opacity: 0;
3172
+ -webkit-transform: rotateX(120deg);
3173
+ transform: rotateX(120deg); }
3174
+ 65% {
3175
+ opacity: 0; }
3176
+ 100% {
3177
+ opacity: 1;
3178
+ -webkit-transform: rotateX(360deg);
3179
+ transform: rotateX(360deg); } }
3180
+
3181
+ @-webkit-keyframes pa-rotate-out {
3182
+ 0% {
3183
+ opacity: 1;
3184
+ -webkit-transform: rotateX(0deg);
3185
+ transform: rotateX(0deg); }
3186
+ 35% {
3187
+ opacity: 1;
3188
+ -webkit-transform: rotateX(-40deg);
3189
+ transform: rotateX(-40deg); }
3190
+ 65% {
3191
+ opacity: 0; }
3192
+ 100% {
3193
+ opacity: 0;
3194
+ -webkit-transform: rotateX(180deg);
3195
+ transform: rotateX(180deg); } }
3196
+
3197
+ @keyframes pa-rotate-out {
3198
+ 0% {
3199
+ opacity: 1;
3200
+ -webkit-transform: rotateX(0deg);
3201
+ transform: rotateX(0deg); }
3202
+ 35% {
3203
+ opacity: 1;
3204
+ -webkit-transform: rotateX(-40deg);
3205
+ transform: rotateX(-40deg); }
3206
+ 65% {
3207
+ opacity: 0; }
3208
+ 100% {
3209
+ opacity: 0;
3210
+ -webkit-transform: rotateX(180deg);
3211
+ transform: rotateX(180deg); } }
3212
+
3213
+ /**************** Premium Bullet List ****************/
3214
+ /*****************************************************/
3215
+ .premium-bullet-list-box {
3216
+ -js-display: flex;
3217
+ display: -webkit-box;
3218
+ display: -webkit-flex;
3219
+ display: -moz-box;
3220
+ display: -ms-flexbox;
3221
+ display: flex;
3222
+ -webkit-flex-wrap: wrap;
3223
+ -ms-flex-wrap: wrap;
3224
+ flex-wrap: wrap;
3225
+ -webkit-box-orient: vertical;
3226
+ -webkit-box-direction: normal;
3227
+ -webkit-flex-direction: column;
3228
+ -moz-box-orient: vertical;
3229
+ -moz-box-direction: normal;
3230
+ -ms-flex-direction: column;
3231
+ flex-direction: column; }
3232
+ .premium-bullet-list-box .premium-bullet-list-content-grow-lc {
3233
+ -webkit-transform-origin: left center;
3234
+ -ms-transform-origin: left center;
3235
+ transform-origin: left center; }
3236
+ .premium-bullet-list-box .premium-bullet-list-content-grow-rc {
3237
+ -webkit-transform-origin: right center;
3238
+ -ms-transform-origin: right center;
3239
+ transform-origin: right center; }
3240
+ .premium-bullet-list-box .premium-bullet-list-content-grow-cc {
3241
+ -webkit-transform-origin: center center;
3242
+ -ms-transform-origin: center center;
3243
+ transform-origin: center center; }
3244
+
3245
+ .premium-bullet-list-content {
3246
+ -js-display: flex;
3247
+ display: -webkit-box;
3248
+ display: -webkit-flex;
3249
+ display: -moz-box;
3250
+ display: -ms-flexbox;
3251
+ display: flex;
3252
+ -webkit-transition: all 0.3s ease-in-out;
3253
+ transition: all 0.3s ease-in-out;
3254
+ width: auto;
3255
+ position: relative; }
3256
+ .premium-bullet-list-content .premium-bullet-list-text span,
3257
+ .premium-bullet-list-content .premium-bullet-list-wrapper {
3258
+ display: inline-block;
3259
+ -webkit-align-self: center;
3260
+ -ms-flex-item-align: center;
3261
+ align-self: center;
3262
+ -webkit-transition: all 0.3s ease-in-out;
3263
+ transition: all 0.3s ease-in-out; }
3264
+ .premium-bullet-list-content .premium-bullet-list-text span {
3265
+ margin: 0 5px; }
3266
+ .premium-bullet-list-content .premium-bullet-list-icon-text p {
3267
+ font-size: 18px;
3268
+ background-color: #eee;
3269
+ padding: 1px 5px;
3270
+ -webkit-border-radius: 2px;
3271
+ border-radius: 2px; }
3272
+ .premium-bullet-list-content .premium-bullet-list-text span,
3273
+ .premium-bullet-list-content .premium-bullet-list-icon-text p,
3274
+ .premium-bullet-list-content .premium-bullet-list-wrapper img,
3275
+ .premium-bullet-list-content .premium-bullet-list-wrapper svg,
3276
+ .premium-bullet-list-content .premium-bullet-list-wrapper i {
3277
+ -webkit-transition: all 0.3s ease-in-out;
3278
+ transition: all 0.3s ease-in-out; }
3279
+ .premium-bullet-list-content .premium-bullet-list-wrapper {
3280
+ position: relative;
3281
+ line-height: 0; }
3282
+ .premium-bullet-list-content .premium-bullet-list-wrapper img,
3283
+ .premium-bullet-list-content .premium-bullet-list-wrapper svg {
3284
+ width: 30px !important;
3285
+ height: 30px !important;
3286
+ position: relative;
3287
+ z-index: 500; }
3288
+ .premium-bullet-list-content .premium-bullet-list-wrapper i,
3289
+ .premium-bullet-list-content .premium-bullet-list-wrapper .premium-bullet-list-icon-text {
3290
+ position: relative;
3291
+ z-index: 500; }
3292
+ .premium-bullet-list-content .premium-bullet-list-wrapper i {
3293
+ width: 1.25em; }
3294
+ .premium-bullet-list-content .premium-bullet-list-link {
3295
+ position: absolute;
3296
+ top: 0;
3297
+ left: 0;
3298
+ width: 100%;
3299
+ height: 100%;
3300
+ z-index: 1000; }
3301
+
3302
+ .premium-bullet-list-content:not(:last-of-type) .premium-bullet-list-connector {
3303
+ width: 100%;
3304
+ height: 100%;
3305
+ position: absolute;
3306
+ top: 0.5em;
3307
+ z-index: 100;
3308
+ -js-display: flex;
3309
+ display: -webkit-box;
3310
+ display: -webkit-flex;
3311
+ display: -moz-box;
3312
+ display: -ms-flexbox;
3313
+ display: flex;
3314
+ -webkit-box-pack: center;
3315
+ -webkit-justify-content: center;
3316
+ -moz-box-pack: center;
3317
+ -ms-flex-pack: center;
3318
+ justify-content: center; }
3319
+ .premium-bullet-list-content:not(:last-of-type) .premium-bullet-list-connector .premium-icon-connector-content:after {
3320
+ content: "";
3321
+ border-right-width: 1px;
3322
+ border-right-style: solid;
3323
+ border-color: #333333;
3324
+ display: block;
3325
+ height: 100%; }
3326
+
3327
+ li.premium-bullet-list-content.premium-bullet-list-content-inline {
3328
+ -webkit-align-self: center;
3329
+ -ms-flex-item-align: center;
3330
+ align-self: center;
3331
+ z-index: 2; }
3332
+
3333
+ li.premium-bullet-list-content.premium-bullet-list-content-inline:not(:first-child) {
3334
+ margin: 0 3px; }
3335
+
3336
+ li.premium-bullet-list-content.premium-bullet-list-content-inline:first-child {
3337
+ margin: 0 3px 0 0; }
3338
+
3339
+ .premium-bullet-list-divider:not(:last-child) {
3340
+ width: 100%;
3341
+ -webkit-box-flex: 0;
3342
+ -webkit-flex: 0 0 100%;
3343
+ -moz-box-flex: 0;
3344
+ -ms-flex: 0 0 100%;
3345
+ flex: 0 0 100%;
3346
+ overflow: hidden; }
3347
+
3348
+ .premium-bullet-list-divider:not(:last-child):after {
3349
+ content: "";
3350
+ display: block;
3351
+ border-top-style: solid;
3352
+ border-top-width: 1px; }
3353
+
3354
+ .premium-bullet-list-divider-inline:not(:last-child) {
3355
+ float: right;
3356
+ display: inline-block;
3357
+ position: relative;
3358
+ height: 100%;
3359
+ overflow: hidden;
3360
+ -webkit-align-self: center;
3361
+ -ms-flex-item-align: center;
3362
+ align-self: center;
3363
+ margin: 0 3px; }
3364
+
3365
+ .premium-bullet-list-divider-inline:not(:last-child):after {
3366
+ content: "";
3367
+ display: block;
3368
+ border-left-width: 1px;
3369
+ height: 33px;
3370
+ border-left-style: solid; }
3371
+
3372
+ .premium-bullet-list-icon-text {
3373
+ line-height: 1.5; }
3374
+
3375
+ .premium-bullet-list-icon-text p,
3376
+ ul.premium-bullet-list-box,
3377
+ li.premium-bullet-list-content {
3378
+ margin: 0; }
3379
+
3380
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper i,
3381
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-text span,
3382
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-icon-text p {
3383
+ color: transparent !important;
3384
+ text-shadow: 0 0 3px #aaa; }
3385
+
3386
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-icon-connector-content,
3387
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper .premium-lottie-animation svg,
3388
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-wrapper img,
3389
+ .premium-bullet-list-blur:hover .premium-bullet-list-content .premium-bullet-list-badge {
3390
+ -webkit-filter: blur(3px);
3391
+ filter: blur(3px); }
3392
+
3393
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper i,
3394
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-text span,
3395
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-icon-text p {
3396
+ color: #aaa !important;
3397
+ text-shadow: 0 0px 0 transparent; }
3398
+
3399
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-icon-connector-content,
3400
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper .premium-lottie-animation svg,
3401
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-wrapper img,
3402
+ .premium-bullet-list-blur:hover .premium-bullet-list-content:hover .premium-bullet-list-badge {
3403
+ -webkit-filter: none;
3404
+ filter: none; }
3405
+
3406
+ .premium-bullet-list-content .premium-bullet-list-badge {
3407
+ font-size: 11px;
3408
+ top: auto;
3409
+ min-width: -webkit-max-content;
3410
+ min-width: -moz-max-content;
3411
+ min-width: max-content;
3412
+ height: -webkit-fit-content;
3413
+ height: -moz-fit-content;
3414
+ height: fit-content; }
3415
+
3416
+ .premium-bullet-list-content .premium-bullet-list-icon-text p {
3417
+ font-size: 13px; }
3418
+
3419
+ .premium-bullet-list-gradient-effect[data-text] {
3420
+ display: inline-block;
3421
+ position: relative;
3422
+ text-decoration: none; }
3423
+
3424
+ .premium-bullet-list-gradient-effect[data-text]::before {
3425
+ content: attr(data-text);
3426
+ position: absolute;
3427
+ z-index: 1;
3428
+ overflow: hidden;
3429
+ -webkit-clip-path: polygon(0 0, 1px 0, 1px 100%, 0 100%);
3430
+ clip-path: polygon(0 0, 1px 0, 1px 100%, 0 100%);
3431
+ -webkit-background-clip: text;
3432
+ background-clip: text;
3433
+ -webkit-text-fill-color: transparent;
3434
+ -webkit-transition: all 0.4s ease;
3435
+ transition: all 0.4s ease; }
3436
+
3437
+ .premium-bullet-list-content:hover .premium-bullet-list-gradient-effect[data-text]::before,
3438
+ .premium-bullet-list-content:focus .premium-bullet-list-gradient-effect[data-text]::before {
3439
+ -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
3440
+ clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
3441
+
3442
+ ul[data-list-animation*="animated-"] .premium-bullet-list-divider,
3443
+ ul[data-list-animation*="animated-"] .premium-bullet-list-content,
3444
+ ul[data-list-animation*="animated-"] .premium-bullet-list-divider-inline {
3445
+ opacity: 0; }
3446
+
3447
+ .premium-bullet-list-content-grow-effect:hover {
3448
+ -webkit-transform: scale(1.07);
3449
+ -ms-transform: scale(1.07);
3450
+ transform: scale(1.07); }
3451
+
3452
+ @-webkit-keyframes spin {
3453
+ 100% {
3454
+ -webkit-transform: rotate(360deg);
3455
+ transform: rotate(360deg); } }
3456
+
3457
+ @keyframes spin {
3458
+ 100% {
3459
+ -webkit-transform: rotate(360deg);
3460
+ transform: rotate(360deg); } }
3461
+
3462
+ /**************** Premium Image Button ***********/
3463
+ /*************************************************/
3464
+ .premium-image-button {
3465
+ -js-display: inline-flex;
3466
+ display: -webkit-inline-box;
3467
+ display: -webkit-inline-flex;
3468
+ display: -moz-inline-box;
3469
+ display: -ms-inline-flexbox;
3470
+ display: inline-flex;
3471
+ position: relative;
3472
+ overflow: hidden;
3473
+ background-color: #eee;
3474
+ cursor: pointer;
3475
+ -webkit-transition: all 0.2s ease-in-out !important;
3476
+ transition: all 0.2s ease-in-out !important; }
3477
+ .premium-image-button .premium-button-style6-bg, .premium-image-button.premium-button-style6:before, .premium-image-button:not(.premium-image-button-style6):hover {
3478
+ background-color: #54595f; }
3479
+
3480
+ /*Default background for slide styles*/
3481
+ .premium-image-button-style4-icon-wrapper,
3482
+ .premium-image-button-style1:before {
3483
+ background-color: #54595f; }
3484
+
3485
+ .premium-image-button-text-icon-wrapper {
3486
+ width: 100%;
3487
+ -js-display: flex;
3488
+ display: -webkit-box;
3489
+ display: -webkit-flex;
3490
+ display: -moz-box;
3491
+ display: -ms-flexbox;
3492
+ display: flex;
3493
+ -webkit-box-pack: center;
3494
+ -webkit-justify-content: center;
3495
+ -moz-box-pack: center;
3496
+ -ms-flex-pack: center;
3497
+ justify-content: center;
3498
+ -webkit-box-align: center;
3499
+ -webkit-align-items: center;
3500
+ -moz-box-align: center;
3501
+ -ms-flex-align: center;
3502
+ align-items: center;
3503
+ position: relative;
3504
+ z-index: 3;
3505
+ -webkit-transition: all 0.2s ease-in-out;
3506
+ transition: all 0.2s ease-in-out; }
3507
+ .premium-image-button-text-icon-wrapper span,
3508
+ .premium-image-button-text-icon-wrapper i,
3509
+ .premium-image-button-text-icon-wrapper svg {
3510
+ -webkit-transition: all 0.2s ease-in-out;
3511
+ transition: all 0.2s ease-in-out; }
3512
+
3513
+ .premium-image-button-style1:before {
3514
+ position: absolute;
3515
+ content: "";
3516
+ -webkit-transition: all 0.2s ease-in-out;
3517
+ transition: all 0.2s ease-in-out; }
3518
+
3519
+ .premium-image-button-style1-bottom:before {
3520
+ width: 100%;
3521
+ height: 0;
3522
+ top: 0;
3523
+ left: 0; }
3524
+
3525
+ .premium-image-button-style1-top:before {
3526
+ width: 100%;
3527
+ height: 0;
3528
+ bottom: 0;
3529
+ left: 0; }
3530
+
3531
+ .premium-image-button-style1-right:before {
3532
+ width: 0;
3533
+ height: 100%;
3534
+ bottom: 0;
3535
+ left: 0; }
3536
+
3537
+ .premium-image-button-style1-left:before {
3538
+ width: 0;
3539
+ height: 100%;
3540
+ top: 0;
3541
+ right: 0; }
3542
+
3543
+ .premium-image-button-style1-bottom:hover:before,
3544
+ .premium-image-button-style1-top:hover:before {
3545
+ height: 100%; }
3546
+
3547
+ .premium-image-button-style1-right:hover:before,
3548
+ .premium-image-button-style1-left:hover:before {
3549
+ width: 100%; }
3550
+
3551
+ .premium-image-button-style3 {
3552
+ z-index: 10; }
3553
+ .premium-image-button-style3:before {
3554
+ position: absolute;
3555
+ top: 0px;
3556
+ left: 0px;
3557
+ width: 100%;
3558
+ height: 100%;
3559
+ content: "";
3560
+ z-index: 1;
3561
+ background: rgba(255, 255, 255, 0.2);
3562
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
3563
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
3564
+ -webkit-transition: all 0.8s ease-out;
3565
+ transition: all 0.8s ease-out; }
3566
+
3567
+ .premium-image-button-diagonal-right:before {
3568
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
3569
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0); }
3570
+
3571
+ .premium-image-button-diagonal-right:hover:before {
3572
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
3573
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0); }
3574
+
3575
+ .premium-image-button-diagonal-left:before {
3576
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
3577
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0); }
3578
+
3579
+ .premium-image-button-diagonal-left:hover:before {
3580
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
3581
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0); }
3582
+
3583
+ .premium-image-button-diagonal-bottom:before {
3584
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
3585
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0); }
3586
+
3587
+ .premium-image-button-diagonal-bottom:hover:before {
3588
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
3589
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0); }
3590
+
3591
+ .premium-image-button-diagonal-top:before {
3592
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
3593
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0); }
3594
+
3595
+ .premium-image-button-diagonal-top:hover:before {
3596
+ -webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
3597
+ transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0); }
3598
+
3599
+ .premium-image-button-style4-icon-wrapper {
3600
+ position: absolute;
3601
+ z-index: 2;
3602
+ width: 100%;
3603
+ text-align: center;
3604
+ -js-display: flex;
3605
+ display: -webkit-box;
3606
+ display: -webkit-flex;
3607
+ display: -moz-box;
3608
+ display: -ms-flexbox;
3609
+ display: flex;
3610
+ -webkit-box-align: center;
3611
+ -webkit-align-items: center;
3612
+ -moz-box-align: center;
3613
+ -ms-flex-align: center;
3614
+ align-items: center;
3615
+ -webkit-box-pack: center;
3616
+ -webkit-justify-content: center;
3617
+ -moz-box-pack: center;
3618
+ -ms-flex-pack: center;
3619
+ justify-content: center;
3620
+ height: 100%;
3621
+ opacity: 0;
3622
+ -webkit-transition: all 0.3s ease-in-out;
3623
+ transition: all 0.3s ease-in-out; }
3624
+ .premium-image-button-style4-icon-wrapper.top {
3625
+ bottom: -100%;
3626
+ left: 0; }
3627
+ .premium-image-button-style4-icon-wrapper.bottom {
3628
+ top: -100%;
3629
+ left: 0; }
3630
+ .premium-image-button-style4-icon-wrapper.left {
3631
+ top: 0;
3632
+ left: -100%; }
3633
+ .premium-image-button-style4-icon-wrapper.right {
3634
+ top: 0;
3635
+ right: -100%; }
3636
+
3637
+ .premium-image-button-style4-bottom:hover .premium-image-button-style4-icon-wrapper {
3638
+ top: 0;
3639
+ opacity: 1; }
3640
+
3641
+ .premium-image-button-style4-bottom:hover .premium-image-button-text-icon-wrapper {
3642
+ -webkit-transform: translateY(100%);
3643
+ -ms-transform: translateY(100%);
3644
+ transform: translateY(100%);
3645
+ opacity: 0; }
3646
+
3647
+ .premium-image-button-style4-top:hover .premium-image-button-style4-icon-wrapper {
3648
+ bottom: 0;
3649
+ opacity: 1; }
3650
+
3651
+ .premium-image-button-style4-top:hover .premium-image-button-text-icon-wrapper {
3652
+ -webkit-transform: translateY(-100%);
3653
+ -ms-transform: translateY(-100%);
3654
+ transform: translateY(-100%);
3655
+ opacity: 0; }
3656
+
3657
+ .premium-image-button-style4-left:hover .premium-image-button-style4-icon-wrapper {
3658
+ left: 0;
3659
+ opacity: 1; }
3660
+
3661
+ .premium-image-button-style4-left:hover .premium-image-button-text-icon-wrapper {
3662
+ -webkit-transform: translateX(100%);
3663
+ -ms-transform: translateX(100%);
3664
+ transform: translateX(100%);
3665
+ opacity: 0; }
3666
+
3667
+ .premium-image-button-style4-right:hover .premium-image-button-style4-icon-wrapper {
3668
+ right: 0;
3669
+ opacity: 1; }
3670
+
3671
+ .premium-image-button-style4-right:hover .premium-image-button-text-icon-wrapper {
3672
+ -webkit-transform: translateX(-100%);
3673
+ -ms-transform: translateX(-100%);
3674
+ transform: translateX(-100%);
3675
+ opacity: 0; }
3676
+
3677
+ .premium-image-button-style5:before {
3678
+ position: absolute;
3679
+ content: "";
3680
+ top: 0;
3681
+ left: 0;
3682
+ width: 100%;
3683
+ height: 100%;
3684
+ opacity: 0;
3685
+ -webkit-transition: all 1s ease-in-out;
3686
+ transition: all 1s ease-in-out;
3687
+ background: rgba(255, 255, 255, 0.2);
3688
+ -webkit-animation-name: premium-overlap-effect-done;
3689
+ animation-name: premium-overlap-effect-done;
3690
+ -webkit-animation-duration: 1s;
3691
+ animation-duration: 1s; }
3692
+
3693
+ .premium-image-button-overlap-effect-vertical:before {
3694
+ -webkit-animation-name: premium-overlap-ver-effect-done;
3695
+ animation-name: premium-overlap-ver-effect-done; }
3696
+
3697
+ .premium-image-button-overlap-effect-horizontal:hover:before {
3698
+ -webkit-animation-name: premium-overlap-effect;
3699
+ animation-name: premium-overlap-effect; }
3700
+
3701
+ .premium-image-button-overlap-effect-vertical:hover:before {
3702
+ -webkit-animation-name: premium-overlap-ver-effect;
3703
+ animation-name: premium-overlap-ver-effect; }
3704
+
3705
+ @-webkit-keyframes premium-overlap-effect {
3706
+ 0% {
3707
+ opacity: 0;
3708
+ -webkit-transform: rotateY(0deg);
3709
+ transform: rotateY(0deg); }
3710
+ 50% {
3711
+ opacity: 1;
3712
+ -webkit-transform: rotateY(180deg);
3713
+ transform: rotateY(180deg); }
3714
+ 100% {
3715
+ opacity: 0;
3716
+ -webkit-transform: rotateY(360deg);
3717
+ transform: rotateY(360deg); } }
3718
+
3719
+ @keyframes premium-overlap-effect {
3720
+ 0% {
3721
+ opacity: 0;
3722
+ -webkit-transform: rotateY(0deg);
3723
+ transform: rotateY(0deg); }
3724
+ 50% {
3725
+ opacity: 1;
3726
+ -webkit-transform: rotateY(180deg);
3727
+ transform: rotateY(180deg); }
3728
+ 100% {
3729
+ opacity: 0;
3730
+ -webkit-transform: rotateY(360deg);
3731
+ transform: rotateY(360deg); } }
3732
+
3733
+ @-webkit-keyframes premium-overlap-effect-done {
3734
+ 0% {
3735
+ opacity: 0;
3736
+ -webkit-transform: rotateY(0deg);
3737
+ transform: rotateY(0deg); }
3738
+ 50% {
3739
+ opacity: 1;
3740
+ -webkit-transform: rotateY(180deg);
3741
+ transform: rotateY(180deg); }
3742
+ 100% {
3743
+ opacity: 0;
3744
+ -webkit-transform: rotateY(360deg);
3745
+ transform: rotateY(360deg); } }
3746
+
3747
+ @keyframes premium-overlap-effect-done {
3748
+ 0% {
3749
+ opacity: 0;
3750
+ -webkit-transform: rotateY(0deg);
3751
+ transform: rotateY(0deg); }
3752
+ 50% {
3753
+ opacity: 1;
3754
+ -webkit-transform: rotateY(180deg);
3755
+ transform: rotateY(180deg); }
3756
+ 100% {
3757
+ opacity: 0;
3758
+ -webkit-transform: rotateY(360deg);
3759
+ transform: rotateY(360deg); } }
3760
+
3761
+ @-webkit-keyframes premium-overlap-ver-effect {
3762
+ 0% {
3763
+ opacity: 0;
3764
+ -webkit-transform: rotateX(0deg);
3765
+ transform: rotateX(0deg); }
3766
+ 50% {
3767
+ opacity: 1;
3768
+ -webkit-transform: rotateX(180deg);
3769
+ transform: rotateX(180deg); }
3770
+ 100% {
3771
+ opacity: 0;
3772
+ -webkit-transform: rotateX(360deg);
3773
+ transform: rotateX(360deg); } }
3774
+
3775
+ @keyframes premium-overlap-ver-effect {
3776
+ 0% {
3777
+ opacity: 0;
3778
+ -webkit-transform: rotateX(0deg);
3779
+ transform: rotateX(0deg); }
3780
+ 50% {
3781
+ opacity: 1;
3782
+ -webkit-transform: rotateX(180deg);
3783
+ transform: rotateX(180deg); }
3784
+ 100% {
3785
+ opacity: 0;
3786
+ -webkit-transform: rotateX(360deg);
3787
+ transform: rotateX(360deg); } }
3788
+
3789
+ @-webkit-keyframes premium-overlap-ver-effect-done {
3790
+ 0% {
3791
+ opacity: 0;
3792
+ -webkit-transform: rotateX(0deg);
3793
+ transform: rotateX(0deg); }
3794
+ 50% {
3795
+ opacity: 1;
3796
+ -webkit-transform: rotateX(180deg);
3797
+ transform: rotateX(180deg); }
3798
+ 100% {
3799
+ opacity: 0;
3800
+ -webkit-transform: rotateX(360deg);
3801
+ transform: rotateX(360deg); } }
3802
+
3803
+ @keyframes premium-overlap-ver-effect-done {
3804
+ 0% {
3805
+ opacity: 0;
3806
+ -webkit-transform: rotateX(0deg);
3807
+ transform: rotateX(0deg); }
3808
+ 50% {
3809
+ opacity: 1;
3810
+ -webkit-transform: rotateX(180deg);
3811
+ transform: rotateX(180deg); }
3812
+ 100% {
3813
+ opacity: 0;
3814
+ -webkit-transform: rotateX(360deg);
3815
+ transform: rotateX(360deg); } }
3816
+
3817
+ /************ Premium Image Scroll ************/
3818
+ /**********************************************/
3819
+ @font-face {
3820
+ font-family: "pa-elements";
3821
+ src: url("../../plugins/premium-addons-for-elementor/assets/editor/fonts/pa-elements.eot?9e1efm");
3822
+ src: url("../../plugins/premium-addons-for-elementor/assets/editor/fonts/pa-elements.eot?9e1efm#iefix") format("embedded-opentype"), url("../../plugins/premium-addons-for-elementor/assets/editor/fonts/pa-elements.ttf?9e1efm") format("truetype"), url("../../plugins/premium-addons-for-elementor/assets/editor/fonts/pa-elements.woff?9e1efm") format("woff"), url("../../plugins/premium-addons-for-elementor/assets/editor/fonts/pa-elements.svg?9e1efm#pa-elements") format("svg");
3823
+ font-weight: normal;
3824
+ font-style: normal; }
3825
+
3826
+ .premium-image-scroll-section,
3827
+ .premium-image-scroll-container {
3828
+ -webkit-transition: all 0.3s ease-in-out;
3829
+ transition: all 0.3s ease-in-out; }
3830
+
3831
+ .premium-image-scroll-section {
3832
+ position: relative;
3833
+ overflow: hidden;
3834
+ width: 100%;
3835
+ -webkit-mask-image: -webkit-radial-gradient(white, black); }
3836
+
3837
+ .premium-image-scroll-container {
3838
+ width: 100%; }
3839
+ .premium-image-scroll-container .premium-image-scroll-mask-media {
3840
+ -webkit-mask-repeat: no-repeat;
3841
+ mask-repeat: no-repeat;
3842
+ -webkit-mask-position: center;
3843
+ mask-position: center; }
3844
+
3845
+ .premium-container-scroll {
3846
+ overflow: auto; }
3847
+
3848
+ .premium-image-scroll-container .premium-image-scroll-horizontal {
3849
+ position: relative;
3850
+ width: 100%;
3851
+ height: 100%; }
3852
+ .premium-image-scroll-container .premium-image-scroll-horizontal img {
3853
+ max-width: none;
3854
+ height: 100%; }
3855
+
3856
+ .premium-image-scroll-container .premium-image-scroll-vertical img {
3857
+ width: 100%;
3858
+ max-width: 100%;
3859
+ height: auto; }
3860
+
3861
+ .premium-image-scroll-ver {
3862
+ position: relative; }
3863
+
3864
+ .premium-image-scroll-container .premium-image-scroll-overlay {
3865
+ background: rgba(2, 2, 2, 0.3); }
3866
+
3867
+ .premium-image-scroll-container .premium-image-scroll-link,
3868
+ .premium-image-scroll-container .premium-image-scroll-overlay {
3869
+ position: absolute;
3870
+ top: 0;
3871
+ bottom: 0;
3872
+ left: 0;
3873
+ right: 0;
3874
+ z-index: 4; }
3875
+
3876
+ .premium-image-scroll-content {
3877
+ display: inline-block;
3878
+ position: absolute;
3879
+ height: auto;
3880
+ top: 50%;
3881
+ left: 50%;
3882
+ text-align: center;
3883
+ z-index: 5;
3884
+ -webkit-transform: translate(-50%, -50%);
3885
+ -ms-transform: translate(-50%, -50%);
3886
+ transform: translate(-50%, -50%); }
3887
+
3888
+ .premium-container-scroll-instant .premium-image-scroll-image {
3889
+ -webkit-transition: all 0s ease-in-out !important;
3890
+ transition: all 0s ease-in-out !important; }
3891
+
3892
+ .premium-image-scroll-container img {
3893
+ -webkit-transition: -webkit-transform 3s ease-in-out;
3894
+ transition: -webkit-transform 3s ease-in-out;
3895
+ transition: transform 3s ease-in-out;
3896
+ transition: transform 3s ease-in-out, -webkit-transform 3s ease-in-out; }
3897
+
3898
+ .premium-image-scroll-container .premium-image-scroll-overlay,
3899
+ .premium-image-scroll-container .premium-image-scroll-content {
3900
+ -webkit-transition: all 0.3s ease-in-out;
3901
+ transition: all 0.3s ease-in-out;
3902
+ opacity: 1; }
3903
+
3904
+ .premium-image-scroll-container:hover .premium-image-scroll-overlay {
3905
+ opacity: 0; }
3906
+
3907
+ .premium-image-scroll-container:hover .premium-image-scroll-content {
3908
+ opacity: 0;
3909
+ visibility: hidden; }
3910
+
3911
+ .premium-image-scroll-content .premium-image-scroll-icon {
3912
+ display: inline-block;
3913
+ font-family: "pa-elements" !important;
3914
+ speak: none;
3915
+ font-style: normal;
3916
+ font-weight: normal;
3917
+ font-variant: normal;
3918
+ text-transform: none;
3919
+ line-height: 1;
3920
+ -webkit-font-smoothing: antialiased;
3921
+ -moz-osx-font-smoothing: grayscale;
3922
+ -webkit-animation-duration: 0.5s;
3923
+ animation-duration: 0.5s;
3924
+ -webkit-animation-iteration-count: infinite;
3925
+ animation-iteration-count: infinite;
3926
+ -webkit-animation-direction: alternate;
3927
+ animation-direction: alternate;
3928
+ -webkit-animation-timing-function: ease-in-out;
3929
+ animation-timing-function: ease-in-out; }
3930
+
3931
+ .pa-horizontal-mouse-scroll:before {
3932
+ content: "\e921"; }
3933
+
3934
+ .pa-vertical-mouse-scroll:before {
3935
+ content: "\e922"; }
3936
+
3937
+ .pa-horizontal-mouse-scroll {
3938
+ -webkit-animation-name: pa-scroll-horizontal;
3939
+ animation-name: pa-scroll-horizontal; }
3940
+
3941
+ .pa-vertical-mouse-scroll {
3942
+ -webkit-animation-name: pa-scroll-vertical;
3943
+ animation-name: pa-scroll-vertical; }
3944
+
3945
+ @-webkit-keyframes pa-scroll-vertical {
3946
+ 0% {
3947
+ -webkit-transform: translateY(0px);
3948
+ transform: translateY(0px); }
3949
+ 100% {
3950
+ -webkit-transform: translateY(5px);
3951
+ transform: translateY(5px); } }
3952
+
3953
+ @keyframes pa-scroll-vertical {
3954
+ 0% {
3955
+ -webkit-transform: translateY(0px);
3956
+ transform: translateY(0px); }
3957
+ 100% {
3958
+ -webkit-transform: translateY(5px);
3959
+ transform: translateY(5px); } }
3960
+
3961
+ @-webkit-keyframes pa-scroll-horizontal {
3962
+ 0% {
3963
+ -webkit-transform: translateX(0px);
3964
+ transform: translateX(0px); }
3965
+ 100% {
3966
+ -webkit-transform: translateX(5px);
3967
+ transform: translateX(5px); } }
3968
+
3969
+ @keyframes pa-scroll-horizontal {
3970
+ 0% {
3971
+ -webkit-transform: translateX(0px);
3972
+ transform: translateX(0px); }
3973
+ 100% {
3974
+ -webkit-transform: translateX(5px);
3975
+ transform: translateX(5px); } }
3976
+
3977
+ /**************** Premium Image Separator ****************/
3978
+ /*********************************************************/
3979
+ .premium-image-separator-container {
3980
+ position: absolute;
3981
+ width: 100%;
3982
+ z-index: 2;
3983
+ top: auto;
3984
+ -webkit-transition: all 0.3s ease-in-out;
3985
+ transition: all 0.3s ease-in-out; }
3986
+ .premium-image-separator-container svg,
3987
+ .premium-image-separator-container img {
3988
+ display: inline-block !important;
3989
+ -webkit-mask-repeat: no-repeat;
3990
+ mask-repeat: no-repeat;
3991
+ -webkit-mask-position: center;
3992
+ mask-position: center; }
3993
+ .premium-image-separator-container .premium-image-separator-link {
3994
+ position: absolute;
3995
+ z-index: 9999;
3996
+ top: 0;
3997
+ left: 0;
3998
+ width: 100%;
3999
+ height: 100%;
4000
+ text-decoration: none; }
4001
+ .premium-image-separator-container .premium-image-separator-link:hover, .premium-image-separator-container .premium-image-separator-link:visited, .premium-image-separator-container .premium-image-separator-link:focus, .premium-image-separator-container .premium-image-separator-link:active {
4002
+ -webkit-box-shadow: none !important;
4003
+ box-shadow: none !important;
4004
+ outline: none !important;
4005
+ border: none !important;
4006
+ text-decoration: none !important; }
4007
+ .premium-image-separator-container i,
4008
+ .premium-image-separator-container > svg {
4009
+ padding: 20px;
4010
+ -webkit-transition: all 0.3s ease-in-out;
4011
+ transition: all 0.3s ease-in-out; }
4012
+
4013
+ /******** Premium Media Grid ********/
4014
+ /************************************/
4015
+ .premium-img-gallery-filter,
4016
+ .premium-blog-filter {
4017
+ -js-display: flex;
4018
+ display: -webkit-box;
4019
+ display: -webkit-flex;
4020
+ display: -moz-box;
4021
+ display: -ms-flexbox;
4022
+ display: flex;
4023
+ -webkit-box-align: center;
4024
+ -webkit-align-items: center;
4025
+ -moz-box-align: center;
4026
+ -ms-flex-align: center;
4027
+ align-items: center;
4028
+ -webkit-box-pack: center;
4029
+ -webkit-justify-content: center;
4030
+ -moz-box-pack: center;
4031
+ -ms-flex-pack: center;
4032
+ justify-content: center; }
4033
+
4034
+ .premium-img-gallery {
4035
+ clear: both;
4036
+ overflow: hidden; }
4037
+
4038
+ .premium-gallery-container .premium-gallery-item {
4039
+ padding: 10px;
4040
+ float: left; }
4041
+
4042
+ .premium-gallery-container .grid-sizer {
4043
+ width: 33.33%; }
4044
+
4045
+ .premium-gallery-container .pa-gallery-item {
4046
+ padding: 10px; }
4047
+
4048
+ .premium-img-gallery-filter .premium-gallery-cats-container li a.category,
4049
+ .premium-blog-filter .premium-blog-filters-container li a.category {
4050
+ outline: none;
4051
+ text-decoration: none;
4052
+ -webkit-border-radius: 75px;
4053
+ border-radius: 75px;
4054
+ margin: 15px 5px 20px;
4055
+ padding: 7px 20px;
4056
+ -webkit-transition: all 0.3s ease-in-out;
4057
+ transition: all 0.3s ease-in-out; }
4058
+
4059
+ .premium-img-gallery-filter .premium-gallery-cats-container li a.category span {
4060
+ -webkit-transition: all 0.3s ease-in-out;
4061
+ transition: all 0.3s ease-in-out; }
4062
+
4063
+ .pa-gallery-img {
4064
+ position: relative; }
4065
+ .pa-gallery-img .pa-gallery-whole-link {
4066
+ position: absolute;
4067
+ top: 0;
4068
+ left: 0;
4069
+ width: 100%;
4070
+ height: 100%; }
4071
+ .pa-gallery-img.style2 .pa-gallery-whole-link {
4072
+ z-index: 99; }
4073
+
4074
+ .pa-gallery-img-container {
4075
+ overflow: hidden;
4076
+ -webkit-backface-visibility: hidden;
4077
+ backface-visibility: hidden;
4078
+ -webkit-transform: translate3d(0, 0, 0);
4079
+ transform: translate3d(0, 0, 0); }
4080
+ .pa-gallery-img-container img {
4081
+ display: block;
4082
+ width: 100%;
4083
+ -webkit-transition: all 0.3s ease-in-out;
4084
+ transition: all 0.3s ease-in-out; }
4085
+
4086
+ .premium-img-gallery.gray img {
4087
+ -webkit-filter: grayscale(100%);
4088
+ filter: grayscale(100%); }
4089
+
4090
+ .premium-img-gallery.zoomout img,
4091
+ .premium-img-gallery.scale img {
4092
+ -webkit-transform: scale(1.2);
4093
+ -ms-transform: scale(1.2);
4094
+ transform: scale(1.2); }
4095
+
4096
+ .premium-img-gallery.sepia img {
4097
+ -webkit-filter: sepia(30%);
4098
+ filter: sepia(30%); }
4099
+
4100
+ .premium-img-gallery.bright img {
4101
+ -webkit-filter: brightness(1);
4102
+ filter: brightness(1); }
4103
+
4104
+ .premium-img-gallery.trans img {
4105
+ -webkit-transform: translateX(-15px) scale(1.1);
4106
+ -ms-transform: translateX(-15px) scale(1.1);
4107
+ transform: translateX(-15px) scale(1.1); }
4108
+
4109
+ .pa-gallery-img .pa-gallery-magnific-image,
4110
+ .pa-gallery-img .pa-gallery-img-link {
4111
+ outline: none; }
4112
+ .pa-gallery-img .pa-gallery-magnific-image i,
4113
+ .pa-gallery-img .pa-gallery-magnific-image svg,
4114
+ .pa-gallery-img .pa-gallery-img-link i,
4115
+ .pa-gallery-img .pa-gallery-img-link svg {
4116
+ -webkit-transition: all 0.3s ease-in-out;
4117
+ transition: all 0.3s ease-in-out; }
4118
+
4119
+ .pa-gallery-img .pa-gallery-magnific-image span,
4120
+ .pa-gallery-img .pa-gallery-img-link span {
4121
+ line-height: 1;
4122
+ display: inline-block;
4123
+ opacity: 0;
4124
+ margin: 0 5px;
4125
+ padding: 15px;
4126
+ -webkit-border-radius: 50%;
4127
+ border-radius: 50%; }
4128
+
4129
+ .pa-gallery-img.style2 .pa-gallery-magnific-image span,
4130
+ .pa-gallery-img.style2 .pa-gallery-img-link span {
4131
+ margin: 0 5px 20px; }
4132
+
4133
+ .pa-gallery-img:hover .pa-gallery-magnific-image span {
4134
+ -webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
4135
+ transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s; }
4136
+
4137
+ .pa-gallery-img:hover .pa-gallery-img-link span {
4138
+ -webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
4139
+ transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s; }
4140
+
4141
+ .pa-gallery-img:hover .pa-gallery-magnific-image span,
4142
+ .pa-gallery-img:hover .pa-gallery-img-link span {
4143
+ opacity: 1; }
4144
+
4145
+ .premium-gallery-icon-show a.pa-gallery-video-icon span {
4146
+ opacity: 1; }
4147
+
4148
+ .premium-img-gallery-filter ul.premium-gallery-cats-container,
4149
+ .premium-blog-filter ul.premium-blog-filters-container {
4150
+ text-align: center;
4151
+ margin: 0;
4152
+ padding: 0; }
4153
+
4154
+ .premium-img-gallery-filter .premium-gallery-cats-container li,
4155
+ .premium-blog-filter .premium-blog-filters-container li {
4156
+ list-style: none;
4157
+ -js-display: inline-flex;
4158
+ display: -webkit-inline-box;
4159
+ display: -webkit-inline-flex;
4160
+ display: -moz-inline-box;
4161
+ display: -ms-inline-flexbox;
4162
+ display: inline-flex; }
4163
+
4164
+ .premium-img-gallery.zoomin .pa-gallery-img:hover img {
4165
+ -webkit-transform: scale(1.1);
4166
+ -ms-transform: scale(1.1);
4167
+ transform: scale(1.1); }
4168
+
4169
+ .premium-img-gallery.zoomout .pa-gallery-img:hover img {
4170
+ -webkit-transform: scale(1);
4171
+ -ms-transform: scale(1);
4172
+ transform: scale(1); }
4173
+
4174
+ .premium-img-gallery.scale .pa-gallery-img:hover img {
4175
+ -webkit-transform: scale(1.3) rotate(5deg);
4176
+ -ms-transform: scale(1.3) rotate(5deg);
4177
+ transform: scale(1.3) rotate(5deg); }
4178
+
4179
+ .premium-img-gallery.gray .pa-gallery-img:hover img {
4180
+ -webkit-filter: grayscale(0%);
4181
+ filter: grayscale(0%); }
4182
+
4183
+ .premium-img-gallery.blur .pa-gallery-img:hover img {
4184
+ -webkit-filter: blur(3px);
4185
+ filter: blur(3px); }
4186
+
4187
+ .premium-img-gallery.sepia .pa-gallery-img:hover img {
4188
+ -webkit-filter: sepia(0%);
4189
+ filter: sepia(0%); }
4190
+
4191
+ .premium-img-gallery.trans .pa-gallery-img:hover img {
4192
+ -webkit-transform: translateX(0px) scale(1.1);
4193
+ -ms-transform: translateX(0px) scale(1.1);
4194
+ transform: translateX(0px) scale(1.1); }
4195
+
4196
+ .premium-img-gallery.bright .pa-gallery-img:hover img {
4197
+ -webkit-filter: brightness(1.2);
4198
+ filter: brightness(1.2); }
4199
+
4200
+ .pa-gallery-img .premium-gallery-caption {
4201
+ padding: 10px; }
4202
+ .pa-gallery-img .premium-gallery-caption .premium-gallery-img-name {
4203
+ margin-bottom: 0; }
4204
+
4205
+ .pa-gallery-img.style1 {
4206
+ overflow: hidden; }
4207
+
4208
+ .pa-gallery-img:not(.style2) .pa-gallery-icons-wrapper {
4209
+ position: absolute;
4210
+ top: 0;
4211
+ left: 0;
4212
+ width: 100%;
4213
+ height: 100%;
4214
+ -webkit-transition: all 0.3s ease-in-out;
4215
+ transition: all 0.3s ease-in-out; }
4216
+
4217
+ .pa-gallery-img:not(.style2) .pa-gallery-icons-inner-container {
4218
+ position: absolute;
4219
+ top: 33.33%;
4220
+ width: 100%;
4221
+ text-align: center;
4222
+ -webkit-transform: translateY(-50%);
4223
+ -ms-transform: translateY(-50%);
4224
+ transform: translateY(-50%);
4225
+ z-index: 999; }
4226
+
4227
+ .pa-gallery-img.style1 .premium-gallery-caption {
4228
+ position: absolute;
4229
+ top: auto;
4230
+ right: 0;
4231
+ bottom: -1px;
4232
+ left: 0;
4233
+ width: 100%;
4234
+ -webkit-transition: all 500ms ease 0s;
4235
+ transition: all 500ms ease 0s;
4236
+ -webkit-transform: translate3d(0, 100%, 0);
4237
+ transform: translate3d(0, 100%, 0); }
4238
+
4239
+ .pa-gallery-img.style1:hover .premium-gallery-caption {
4240
+ -webkit-transform: translate3d(0, 0, 0);
4241
+ transform: translate3d(0, 0, 0);
4242
+ bottom: -1px !important; }
4243
+
4244
+ .pa-gallery-img.default .premium-gallery-caption {
4245
+ position: absolute;
4246
+ top: auto;
4247
+ right: 0;
4248
+ left: 0;
4249
+ width: 100%;
4250
+ bottom: 0; }
4251
+
4252
+ .pa-gallery-img.style2 .pa-gallery-icons-caption-container {
4253
+ position: absolute;
4254
+ top: 0;
4255
+ left: 0;
4256
+ width: 100%;
4257
+ height: 100%;
4258
+ opacity: 0;
4259
+ -webkit-backface-visibility: hidden;
4260
+ backface-visibility: hidden;
4261
+ -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
4262
+ transition: opacity 0.3s, -webkit-transform 0.3s;
4263
+ transition: transform 0.3s, opacity 0.3s;
4264
+ transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
4265
+ z-index: 1;
4266
+ background-color: rgba(108, 191, 226, 0.68);
4267
+ -js-display: flex;
4268
+ display: -webkit-box;
4269
+ display: -webkit-flex;
4270
+ display: -moz-box;
4271
+ display: -ms-flexbox;
4272
+ display: flex;
4273
+ text-align: center;
4274
+ -webkit-box-align: center;
4275
+ -webkit-align-items: center;
4276
+ -moz-box-align: center;
4277
+ -ms-flex-align: center;
4278
+ align-items: center; }
4279
+
4280
+ .pa-gallery-img.style2 .pa-gallery-icons-caption-cell {
4281
+ width: 100%; }
4282
+
4283
+ .pa-gallery-img.style2:hover .pa-gallery-icons-caption-container {
4284
+ opacity: 1;
4285
+ -webkit-transform: translate(15px, 15px);
4286
+ -ms-transform: translate(15px, 15px);
4287
+ transform: translate(15px, 15px); }
4288
+
4289
+ .premium-clearfix {
4290
+ clear: both; }
4291
+
4292
+ /**
4293
+ * Metro Layout
4294
+ */
4295
+ .premium-img-gallery-metro .premium-gallery-item {
4296
+ overflow: hidden; }
4297
+
4298
+ .premium-img-gallery-metro .pa-gallery-img {
4299
+ height: 100%; }
4300
+
4301
+ .premium-img-gallery-metro .pa-gallery-img-container {
4302
+ height: 100%; }
4303
+ .premium-img-gallery-metro .pa-gallery-img-container img {
4304
+ min-height: 100%;
4305
+ width: 100%;
4306
+ -o-object-fit: fill;
4307
+ object-fit: fill; }
4308
+
4309
+ .premium-img-gallery .premium-gallery-item-hidden {
4310
+ visibility: hidden;
4311
+ width: 0 !important;
4312
+ height: 0 !important;
4313
+ margin: 0 !important;
4314
+ padding: 0 !important; }
4315
+
4316
+ .premium-gallery-load-more {
4317
+ position: relative; }
4318
+ .premium-gallery-load-more .premium-gallery-load-more-btn {
4319
+ -webkit-box-shadow: none;
4320
+ box-shadow: none;
4321
+ text-shadow: none;
4322
+ border: none;
4323
+ outline: none;
4324
+ -webkit-box-align: center;
4325
+ -webkit-align-items: center;
4326
+ -moz-box-align: center;
4327
+ -ms-flex-align: center;
4328
+ align-items: center;
4329
+ vertical-align: bottom;
4330
+ cursor: pointer;
4331
+ line-height: 1;
4332
+ font-style: normal;
4333
+ font-weight: normal;
4334
+ background-image: none;
4335
+ color: #fff;
4336
+ -webkit-transition: all 0.3s ease-in-out;
4337
+ transition: all 0.3s ease-in-out; }
4338
+
4339
+ .premium-gallery-load-more-btn {
4340
+ -js-display: inline-flex;
4341
+ display: -webkit-inline-box;
4342
+ display: -webkit-inline-flex;
4343
+ display: -moz-inline-box;
4344
+ display: -ms-inline-flexbox;
4345
+ display: inline-flex;
4346
+ -webkit-box-align: center;
4347
+ -webkit-align-items: center;
4348
+ -moz-box-align: center;
4349
+ -ms-flex-align: center;
4350
+ align-items: center; }
4351
+
4352
+ .premium-gallery-load-more-btn div {
4353
+ margin-left: 3px; }
4354
+
4355
+ .premium-gallery-load-more-btn .premium-loader {
4356
+ display: inline-block;
4357
+ width: 20px;
4358
+ height: 20px; }
4359
+
4360
+ .pa-gallery-img .pa-gallery-lightbox-wrap {
4361
+ display: inline-block; }
4362
+
4363
+ .premium-img-gallery-no-lightbox .premium-gallery-video-item .pa-gallery-img,
4364
+ .pa-gallery-img .pa-gallery-video-icon {
4365
+ cursor: pointer; }
4366
+
4367
+ .pa-gallery-img-container iframe {
4368
+ position: absolute;
4369
+ visibility: hidden;
4370
+ top: 0;
4371
+ left: 0;
4372
+ max-width: 100%;
4373
+ width: 100%;
4374
+ height: 100%;
4375
+ margin: 0;
4376
+ line-height: 1;
4377
+ border: none; }
4378
+
4379
+ .pa-gallery-img-container video {
4380
+ position: absolute;
4381
+ visibility: hidden;
4382
+ top: 0;
4383
+ left: 0;
4384
+ max-width: 100%;
4385
+ width: 100%;
4386
+ height: 100%;
4387
+ margin: 0;
4388
+ line-height: 1;
4389
+ border: none;
4390
+ -o-object-fit: contain;
4391
+ object-fit: contain; }
4392
+
4393
+ .pa-gallery-icons-inner-container svg,
4394
+ .pa-gallery-icons-caption-cell svg {
4395
+ width: 14px;
4396
+ height: 14px; }
4397
+
4398
+ .premium-gallery-gradient-layer {
4399
+ position: absolute;
4400
+ bottom: 40px;
4401
+ width: 100%;
4402
+ height: 20px;
4403
+ background: -webkit-gradient(linear, left bottom, left top, from(#17181f), to(rgba(255, 255, 255, 0)));
4404
+ background: -webkit-linear-gradient(bottom, #17181f 0%, rgba(255, 255, 255, 0) 100%);
4405
+ background: linear-gradient(to top, #17181f 0%, rgba(255, 255, 255, 0) 100%); }
4406
+
4407
+ /********* Premium Lottie Animations *********/
4408
+ /*********************************************/
4409
+ .elementor-widget-premium-lottie .premium-lottie-animation {
4410
+ position: relative;
4411
+ -js-display: inline-flex;
4412
+ display: -webkit-inline-box;
4413
+ display: -webkit-inline-flex;
4414
+ display: -moz-inline-box;
4415
+ display: -ms-inline-flexbox;
4416
+ display: inline-flex;
4417
+ -webkit-transition: all 0.3s ease-in-out;
4418
+ transition: all 0.3s ease-in-out; }
4419
+ .elementor-widget-premium-lottie .premium-lottie-animation a {
4420
+ position: absolute;
4421
+ left: 0;
4422
+ top: 0;
4423
+ width: 100%;
4424
+ height: 100%;
4425
+ z-index: 2; }
4426
+
4427
+ /**************** Premium Google Maps ******************/
4428
+ /*******************************************************/
4429
+ .premium-maps-info-container {
4430
+ margin-top: 10px;
4431
+ margin-bottom: 10px; }
4432
+
4433
+ .premium-maps-info-title,
4434
+ .premium-maps-info-desc {
4435
+ margin: 0;
4436
+ padding: 0; }
4437
+
4438
+ .premium-maps-container .gm-style-iw {
4439
+ text-align: center; }
4440
+
4441
+ .premium-maps-container .gm-style img {
4442
+ max-width: none !important; }
4443
+
4444
+ /**************** Premium Modal Box ****************/
4445
+ /***************************************************/
4446
+ .premium-modal-trigger-btn,
4447
+ .premium-modal-box-modal-lower-close {
4448
+ display: inline-block;
4449
+ padding: 6px 12px;
4450
+ margin-bottom: 0;
4451
+ font-size: 14px;
4452
+ font-weight: normal;
4453
+ line-height: 1.42857143;
4454
+ text-align: center;
4455
+ white-space: nowrap;
4456
+ vertical-align: middle;
4457
+ -ms-touch-action: manipulation;
4458
+ touch-action: manipulation;
4459
+ cursor: pointer;
4460
+ -webkit-user-select: none;
4461
+ -moz-user-select: none;
4462
+ -ms-user-select: none;
4463
+ user-select: none;
4464
+ background-image: none;
4465
+ border: 1px solid transparent; }
4466
+
4467
+ .premium-modal-trigger-btn > svg,
4468
+ .premium-modal-trigger-btn .premium-modal-box-icon {
4469
+ -webkit-transition: all 0.3s ease-in-out;
4470
+ transition: all 0.3s ease-in-out; }
4471
+
4472
+ .premium-modal-trigger-btn > svg {
4473
+ width: 30px;
4474
+ height: 30px; }
4475
+
4476
+ .premium-modal-box-modal-close {
4477
+ float: right;
4478
+ font-size: 21px;
4479
+ font-weight: bold;
4480
+ line-height: 1;
4481
+ color: #000; }
4482
+ .premium-modal-box-modal-close:hover, .premium-modal-box-modal-close:focus {
4483
+ color: #000;
4484
+ text-decoration: none;
4485
+ cursor: pointer; }
4486
+
4487
+ button.premium-modal-box-modal-close {
4488
+ -webkit-appearance: none;
4489
+ padding: 0;
4490
+ cursor: pointer;
4491
+ background: transparent;
4492
+ border: 0; }
4493
+
4494
+ .premium-modal-box-modal {
4495
+ position: fixed;
4496
+ top: 0;
4497
+ right: 0;
4498
+ bottom: 0;
4499
+ left: 0;
4500
+ z-index: 1050;
4501
+ display: none;
4502
+ -webkit-overflow-scrolling: touch;
4503
+ outline: 0;
4504
+ padding: 0 !important;
4505
+ background: rgba(0, 0, 0, 0.5);
4506
+ -webkit-box-align: center;
4507
+ -webkit-align-items: center;
4508
+ -moz-box-align: center;
4509
+ -ms-flex-align: center;
4510
+ align-items: center;
4511
+ -webkit-box-pack: center;
4512
+ -webkit-justify-content: center;
4513
+ -moz-box-pack: center;
4514
+ -ms-flex-pack: center;
4515
+ justify-content: center; }
4516
+ .premium-modal-box-modal .premium-modal-box-modal-dialog {
4517
+ position: absolute;
4518
+ max-height: -webkit-calc(100vh - 150px);
4519
+ max-height: calc(100vh - 150px);
4520
+ -js-display: flex;
4521
+ display: -webkit-box;
4522
+ display: -webkit-flex;
4523
+ display: -moz-box;
4524
+ display: -ms-flexbox;
4525
+ display: flex;
4526
+ -webkit-box-orient: vertical;
4527
+ -webkit-box-direction: normal;
4528
+ -webkit-flex-direction: column;
4529
+ -moz-box-orient: vertical;
4530
+ -moz-box-direction: normal;
4531
+ -ms-flex-direction: column;
4532
+ flex-direction: column;
4533
+ opacity: 0;
4534
+ background-color: #fff;
4535
+ border: 1px solid rgba(0, 0, 0, 0.2);
4536
+ -webkit-border-radius: 6px;
4537
+ border-radius: 6px; }
4538
+
4539
+ .premium-modal-box-modal-content {
4540
+ background-clip: padding-box;
4541
+ outline: 0;
4542
+ overflow-x: hidden; }
4543
+
4544
+ .premium-modal-backdrop.premium-in {
4545
+ filter: alpha(opacity=50);
4546
+ opacity: 0.5 !important; }
4547
+
4548
+ .premium-in {
4549
+ opacity: 1; }
4550
+
4551
+ .premium-modal-backdrop {
4552
+ position: fixed;
4553
+ top: 0;
4554
+ right: 0;
4555
+ bottom: 0;
4556
+ left: 0;
4557
+ z-index: 1040;
4558
+ background-color: #000; }
4559
+
4560
+ .premium-in {
4561
+ -js-display: flex !important;
4562
+ display: -webkit-box !important;
4563
+ display: -webkit-flex !important;
4564
+ display: -moz-box !important;
4565
+ display: -ms-flexbox !important;
4566
+ display: flex !important; }
4567
+
4568
+ .premium-modal-box-modal-header {
4569
+ -js-display: flex;
4570
+ display: -webkit-box;
4571
+ display: -webkit-flex;
4572
+ display: -moz-box;
4573
+ display: -ms-flexbox;
4574
+ display: flex;
4575
+ -webkit-box-pack: justify;
4576
+ -webkit-justify-content: space-between;
4577
+ -moz-box-pack: justify;
4578
+ -ms-flex-pack: justify;
4579
+ justify-content: space-between;
4580
+ -webkit-box-align: center;
4581
+ -webkit-align-items: center;
4582
+ -moz-box-align: center;
4583
+ -ms-flex-align: center;
4584
+ align-items: center;
4585
+ padding: 5px 15px;
4586
+ border-bottom: 1px solid #e5e5e5; }
4587
+ .premium-modal-box-modal-header .premium-modal-box-modal-close {
4588
+ margin-top: -2px; }
4589
+ .premium-modal-box-modal-header .premium-modal-box-modal-title {
4590
+ -js-display: flex;
4591
+ display: -webkit-box;
4592
+ display: -webkit-flex;
4593
+ display: -moz-box;
4594
+ display: -ms-flexbox;
4595
+ display: flex;
4596
+ -webkit-box-align: center;
4597
+ -webkit-align-items: center;
4598
+ -moz-box-align: center;
4599
+ -ms-flex-align: center;
4600
+ align-items: center;
4601
+ margin: 0;
4602
+ padding: 0; }
4603
+ .premium-modal-box-modal-header .premium-modal-box-modal-title svg {
4604
+ width: 50px;
4605
+ height: 60px; }
4606
+
4607
+ .premium-modal-box-modal-body {
4608
+ position: relative;
4609
+ padding: 15px; }
4610
+
4611
+ .premium-modal-box-modal-footer {
4612
+ padding: 15px;
4613
+ text-align: right;
4614
+ border-top: 1px solid #e5e5e5; }
4615
+
4616
+ .premium-modal-scrollbar-measure {
4617
+ position: absolute;
4618
+ top: -9999px;
4619
+ width: 50px;
4620
+ height: 50px;
4621
+ overflow: scroll; }
4622
+
4623
+ .premium-modal-trigger-text {
4624
+ background: none !important;
4625
+ display: inline-block; }
4626
+
4627
+ .premium-modal-box-container {
4628
+ width: 100% !important; }
4629
+
4630
+ /*Open Modal Button Style*/
4631
+ .premium-modal-trigger-container .premium-modal-trigger-btn {
4632
+ -js-display: inline-flex;
4633
+ display: -webkit-inline-box;
4634
+ display: -webkit-inline-flex;
4635
+ display: -moz-inline-box;
4636
+ display: -ms-inline-flexbox;
4637
+ display: inline-flex;
4638
+ -webkit-box-align: center;
4639
+ -webkit-align-items: center;
4640
+ -moz-box-align: center;
4641
+ -ms-flex-align: center;
4642
+ align-items: center;
4643
+ border: none;
4644
+ -webkit-transition: all 0.3s ease-in-out;
4645
+ transition: all 0.3s ease-in-out; }
4646
+ .premium-modal-trigger-container .premium-modal-trigger-btn.premium-btn-block {
4647
+ -webkit-box-pack: center;
4648
+ -webkit-justify-content: center;
4649
+ -moz-box-pack: center;
4650
+ -ms-flex-pack: center;
4651
+ justify-content: center; }
4652
+
4653
+ .premium-modal-trigger-container .premium-modal-trigger-img,
4654
+ .premium-modal-trigger-container .premium-modal-trigger-text,
4655
+ .premium-modal-trigger-container .premium-modal-trigger-animation {
4656
+ cursor: pointer; }
4657
+
4658
+ .premium-modal-trigger-container .premium-modal-trigger-animation {
4659
+ display: inline-block;
4660
+ width: 200px;
4661
+ height: 200px;
4662
+ -webkit-transition: all 0.3s ease-in-out;
4663
+ transition: all 0.3s ease-in-out; }
4664
+
4665
+ /*Image on Modal Header Style*/
4666
+ .premium-modal-box-modal-header img {
4667
+ width: 48px;
4668
+ padding-right: 5px; }
4669
+
4670
+ .premium-modal-box-modal-header i,
4671
+ .premium-modal-box-modal-header svg {
4672
+ padding-right: 6px; }
4673
+
4674
+ .premium-modal-box-modal-close {
4675
+ position: relative;
4676
+ z-index: 99; }
4677
+
4678
+ .premium-modal-trigger-img,
4679
+ .premium-modal-trigger-text,
4680
+ .premium-modal-box-close-button-container,
4681
+ .premium-modal-box-modal-close,
4682
+ .premium-modal-box-modal-lower-close {
4683
+ -webkit-transition: all 0.3s ease-in-out;
4684
+ transition: all 0.3s ease-in-out; }
4685
+
4686
+ @media (min-width: 768px) {
4687
+ .premium-modal-box-modal-dialog {
4688
+ width: 700px;
4689
+ max-height: 600px;
4690
+ overflow: auto; } }
4691
+
4692
+ @media (max-width: 767px) {
4693
+ .premium-modal-box-modal-dialog {
4694
+ width: 100%;
4695
+ max-height: 500px;
4696
+ overflow: auto; } }
4697
+
4698
+ .premium-modal-box-container[data-modal-animation*="animated-"] {
4699
+ opacity: 0; }
4700
+
4701
+ /************ Premium Team Members ************/
4702
+ /**********************************************/
4703
+ .premium-person-container {
4704
+ position: relative; }
4705
+
4706
+ .premium-person-image-container {
4707
+ position: relative;
4708
+ text-align: center;
4709
+ overflow: hidden; }
4710
+ .premium-person-image-container .premium-person-image-wrap {
4711
+ overflow: hidden; }
4712
+
4713
+ .premium-person-zoomout-effect .premium-person-image-container img,
4714
+ .premium-person-scale-effect .premium-person-image-container img {
4715
+ -webkit-transform: scale(1.2);
4716
+ -ms-transform: scale(1.2);
4717
+ transform: scale(1.2); }
4718
+
4719
+ .premium-person-sepia-effect .premium-person-image-container img {
4720
+ -webkit-filter: sepia(30%);
4721
+ filter: sepia(30%); }
4722
+
4723
+ .premium-person-bright-effect .premium-person-image-container img {
4724
+ -webkit-filter: brightness(1);
4725
+ filter: brightness(1); }
4726
+
4727
+ .premium-person-trans-effect .premium-person-image-container img {
4728
+ -webkit-transform: translateX(-15px) scale(1.1);
4729
+ -ms-transform: translateX(-15px) scale(1.1);
4730
+ transform: translateX(-15px) scale(1.1); }
4731
+
4732
+ .premium-person-zoomin-effect:hover .premium-person-image-container img {
4733
+ -webkit-transform: scale(1.2);
4734
+ -ms-transform: scale(1.2);
4735
+ transform: scale(1.2); }
4736
+
4737
+ .premium-person-zoomout-effect:hover .premium-person-image-container img {
4738
+ -webkit-transform: scale(1.1);
4739
+ -ms-transform: scale(1.1);
4740
+ transform: scale(1.1); }
4741
+
4742
+ .premium-person-scale-effect:hover .premium-person-image-container img {
4743
+ -webkit-transform: scale(1.3) rotate(5deg);
4744
+ -ms-transform: scale(1.3) rotate(5deg);
4745
+ transform: scale(1.3) rotate(5deg); }
4746
+
4747
+ .premium-person-grayscale-effect:hover .premium-person-image-container img {
4748
+ -webkit-filter: grayscale(100%);
4749
+ filter: grayscale(100%); }
4750
+
4751
+ .premium-person-blur-effect:hover .premium-person-image-container img {
4752
+ -webkit-filter: blur(3px);
4753
+ filter: blur(3px); }
4754
+
4755
+ .premium-person-sepia-effect:hover .premium-person-image-container img {
4756
+ -webkit-filter: sepia(0%);
4757
+ filter: sepia(0%); }
4758
+
4759
+ .premium-person-bright-effect:hover .premium-person-image-container img {
4760
+ -webkit-filter: brightness(1.2);
4761
+ filter: brightness(1.2); }
4762
+
4763
+ .premium-person-trans-effect:hover .premium-person-image-container img {
4764
+ -webkit-transform: translateX(0px) scale(1.1);
4765
+ -ms-transform: translateX(0px) scale(1.1);
4766
+ transform: translateX(0px) scale(1.1); }
4767
+
4768
+ .premium-person-container .premium-person-image-container img {
4769
+ width: 100%;
4770
+ height: 100%;
4771
+ -o-object-fit: cover;
4772
+ object-fit: cover;
4773
+ -webkit-transition: all 0.5s ease-in-out;
4774
+ transition: all 0.5s ease-in-out; }
4775
+
4776
+ .premium-person-style2 .premium-person-social {
4777
+ position: absolute;
4778
+ top: 0;
4779
+ left: 0;
4780
+ width: 100%;
4781
+ height: 100%;
4782
+ z-index: 2;
4783
+ -js-display: flex;
4784
+ display: -webkit-box;
4785
+ display: -webkit-flex;
4786
+ display: -moz-box;
4787
+ display: -ms-flexbox;
4788
+ display: flex;
4789
+ -webkit-box-pack: center;
4790
+ -webkit-justify-content: center;
4791
+ -moz-box-pack: center;
4792
+ -ms-flex-pack: center;
4793
+ justify-content: center;
4794
+ -webkit-box-align: center;
4795
+ -webkit-align-items: center;
4796
+ -moz-box-align: center;
4797
+ -ms-flex-align: center;
4798
+ align-items: center;
4799
+ -webkit-box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
4800
+ box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
4801
+ -webkit-transition: all 0.5s linear 0s;
4802
+ transition: all 0.5s linear 0s;
4803
+ opacity: 0; }
4804
+
4805
+ .premium-person-style2 .premium-person-image-container:hover .premium-person-social {
4806
+ opacity: 1; }
4807
+
4808
+ .premium-person-list-item a {
4809
+ display: inline-block; }
4810
+
4811
+ .premium-person-style2 .premium-person-list-item a {
4812
+ opacity: 0;
4813
+ -webkit-transform: scale(0);
4814
+ -ms-transform: scale(0);
4815
+ transform: scale(0);
4816
+ -webkit-transition: all 0.5s ease-in-out 0s;
4817
+ transition: all 0.5s ease-in-out 0s; }
4818
+
4819
+ .premium-person-style2 .premium-person-image-container:hover .premium-person-list-item a {
4820
+ opacity: 1;
4821
+ -webkit-transform: scale(1);
4822
+ -ms-transform: scale(1);
4823
+ transform: scale(1); }
4824
+
4825
+ .premium-person-info-container {
4826
+ padding: 30px 15px; }
4827
+
4828
+ .premium-person-name {
4829
+ margin: 0 0 5px;
4830
+ font-weight: 700; }
4831
+
4832
+ .premium-person-title {
4833
+ margin: 0 0 20px;
4834
+ padding: 0; }
4835
+
4836
+ .premium-person-content {
4837
+ margin: 0 0 30px; }
4838
+
4839
+ /*Override Theme List Margin*/
4840
+ ul.premium-person-social-list {
4841
+ margin: 0px !important;
4842
+ padding: 0; }
4843
+
4844
+ .premium-person-social-list .premium-person-list-item {
4845
+ display: inline;
4846
+ list-style: none; }
4847
+
4848
+ .premium-person-social-list li {
4849
+ position: relative;
4850
+ bottom: 0px;
4851
+ -webkit-transition: all 0.2s ease-in-out;
4852
+ transition: all 0.2s ease-in-out; }
4853
+ .premium-person-social-list li i {
4854
+ position: relative;
4855
+ bottom: 0px;
4856
+ -webkit-transition: all 0.2s ease-in-out;
4857
+ transition: all 0.2s ease-in-out; }
4858
+
4859
+ .premium-person-defaults-yes li.premium-person-facebook:hover a {
4860
+ background-color: #3b5998 !important; }
4861
+
4862
+ .premium-person-defaults-yes li.premium-person-twitter:hover a {
4863
+ background-color: #55acee !important; }
4864
+
4865
+ .premium-person-defaults-yes li.premium-person-linkedin:hover a {
4866
+ background-color: #0077b5 !important; }
4867
+
4868
+ .premium-person-defaults-yes li.premium-person-google:hover a {
4869
+ background-color: #dc4e41 !important; }
4870
+
4871
+ .premium-person-defaults-yes li.premium-person-youtube:hover a {
4872
+ background-color: #b31217 !important; }
4873
+
4874
+ .premium-person-defaults-yes li.premium-person-instagram:hover a {
4875
+ background-color: #e4405f !important; }
4876
+
4877
+ .premium-person-defaults-yes li.premium-person-skype:hover a {
4878
+ background-color: #00aff0 !important; }
4879
+
4880
+ .premium-person-defaults-yes li.premium-person-pinterest:hover a {
4881
+ background-color: #bd081c !important; }
4882
+
4883
+ .premium-person-defaults-yes li.premium-person-dribbble:hover a {
4884
+ background-color: #ea4c89 !important; }
4885
+
4886
+ .premium-person-defaults-yes li.premium-person-mail:hover a {
4887
+ background-color: #b23121 !important; }
4888
+
4889
+ .premium-person-defaults-yes li.premium-person-behance:hover a {
4890
+ background-color: #1769ff !important; }
4891
+
4892
+ .premium-person-defaults-yes li.premium-person-whatsapp:hover a {
4893
+ background-color: #25d366 !important; }
4894
+
4895
+ .premium-person-defaults-yes li.premium-person-telegram:hover a {
4896
+ background-color: #0088cc !important; }
4897
+
4898
+ .premium-person-defaults-yes li.premium-person-site:hover a {
4899
+ background-color: #0055a5 !important; }
4900
+
4901
+ .premium-person-social-list li:hover a {
4902
+ -webkit-box-shadow: none;
4903
+ box-shadow: none; }
4904
+
4905
+ .premium-person-social-list li a:focus {
4906
+ -webkit-box-shadow: none;
4907
+ box-shadow: none;
4908
+ outline: none; }
4909
+
4910
+ .premium-person-social-list li i {
4911
+ font-size: 18px; }
4912
+
4913
+ .elementor-widget-premium-addon-person .elementor-widget-container {
4914
+ -js-display: flex;
4915
+ display: -webkit-box;
4916
+ display: -webkit-flex;
4917
+ display: -moz-box;
4918
+ display: -ms-flexbox;
4919
+ display: flex;
4920
+ -webkit-box-pack: center;
4921
+ -webkit-justify-content: center;
4922
+ -moz-box-pack: center;
4923
+ -ms-flex-pack: center;
4924
+ justify-content: center; }
4925
+
4926
+ .premium-persons-container.multiple-persons {
4927
+ -js-display: flex;
4928
+ display: -webkit-box;
4929
+ display: -webkit-flex;
4930
+ display: -moz-box;
4931
+ display: -ms-flexbox;
4932
+ display: flex;
4933
+ -webkit-flex-wrap: wrap;
4934
+ -ms-flex-wrap: wrap;
4935
+ flex-wrap: wrap;
4936
+ width: 100%; }
4937
+
4938
+ .premium-person-style1 .premium-person-container {
4939
+ overflow: hidden; }
4940
+ .premium-person-style1 .premium-person-container .premium-person-info {
4941
+ position: absolute;
4942
+ top: auto;
4943
+ right: 0;
4944
+ left: 0;
4945
+ -webkit-transition: all 500ms ease 0s;
4946
+ transition: all 500ms ease 0s;
4947
+ -webkit-transform: translate3d(0, 100%, 0);
4948
+ transform: translate3d(0, 100%, 0); }
4949
+ .premium-person-style1 .premium-person-container:hover .premium-person-info {
4950
+ -webkit-transform: translate3d(0, 0, 0);
4951
+ transform: translate3d(0, 0, 0);
4952
+ bottom: -1px !important; }
4953
+
4954
+ .premium-person-style1 .premium-person-social-list li:hover {
4955
+ bottom: 5px; }
4956
+
4957
+ .premium-person-style1.multiple-persons:not([data-persons-equal="yes"]) {
4958
+ -webkit-box-align: start;
4959
+ -webkit-align-items: flex-start;
4960
+ -moz-box-align: start;
4961
+ -ms-flex-align: start;
4962
+ align-items: flex-start; }
4963
+
4964
+ .premium-person-style1 .slick-track {
4965
+ -js-display: flex;
4966
+ display: -webkit-box;
4967
+ display: -webkit-flex;
4968
+ display: -moz-box;
4969
+ display: -ms-flexbox;
4970
+ display: flex; }
4971
+
4972
+ .premium-person-style1 .slick-slide {
4973
+ height: inherit !important; }
4974
+
4975
+ .premium-person-style1.multiple-persons[data-persons-equal="yes"] .premium-person-image-container,
4976
+ .premium-person-style1.multiple-persons[data-persons-equal="yes"] .premium-person-image-wrap {
4977
+ height: 100%; }
4978
+
4979
+ .premium-person-style3 .premium-person-info-container {
4980
+ position: absolute;
4981
+ top: 0;
4982
+ left: 0;
4983
+ width: 100%;
4984
+ height: 100%;
4985
+ -js-display: flex;
4986
+ display: -webkit-box;
4987
+ display: -webkit-flex;
4988
+ display: -moz-box;
4989
+ display: -ms-flexbox;
4990
+ display: flex;
4991
+ -webkit-box-orient: vertical;
4992
+ -webkit-box-direction: normal;
4993
+ -webkit-flex-direction: column;
4994
+ -moz-box-orient: vertical;
4995
+ -moz-box-direction: normal;
4996
+ -ms-flex-direction: column;
4997
+ flex-direction: column;
4998
+ -webkit-box-pack: justify;
4999
+ -webkit-justify-content: space-between;
5000
+ -moz-box-pack: justify;
5001
+ -ms-flex-pack: justify;
5002
+ justify-content: space-between; }
5003
+
5004
+ .premium-person-style3 .premium-person-title-desc-wrap {
5005
+ -js-display: flex;
5006
+ display: -webkit-box;
5007
+ display: -webkit-flex;
5008
+ display: -moz-box;
5009
+ display: -ms-flexbox;
5010
+ display: flex;
5011
+ -webkit-box-orient: horizontal;
5012
+ -webkit-box-direction: reverse;
5013
+ -webkit-flex-direction: row-reverse;
5014
+ -moz-box-orient: horizontal;
5015
+ -moz-box-direction: reverse;
5016
+ -ms-flex-direction: row-reverse;
5017
+ flex-direction: row-reverse;
5018
+ -webkit-box-pack: justify;
5019
+ -webkit-justify-content: space-between;
5020
+ -moz-box-pack: justify;
5021
+ -ms-flex-pack: justify;
5022
+ justify-content: space-between;
5023
+ -webkit-box-align: start;
5024
+ -webkit-align-items: flex-start;
5025
+ -moz-box-align: start;
5026
+ -ms-flex-align: start;
5027
+ align-items: flex-start; }
5028
+
5029
+ .premium-person-style3 .premium-person-name-icons-wrap {
5030
+ -js-display: flex;
5031
+ display: -webkit-box;
5032
+ display: -webkit-flex;
5033
+ display: -moz-box;
5034
+ display: -ms-flexbox;
5035
+ display: flex;
5036
+ -webkit-box-pack: justify;
5037
+ -webkit-justify-content: space-between;
5038
+ -moz-box-pack: justify;
5039
+ -ms-flex-pack: justify;
5040
+ justify-content: space-between;
5041
+ -webkit-box-align: end;
5042
+ -webkit-align-items: flex-end;
5043
+ -moz-box-align: end;
5044
+ -ms-flex-align: end;
5045
+ align-items: flex-end; }
5046
+
5047
+ .premium-person-style3 .premium-person-title {
5048
+ opacity: 0;
5049
+ -webkit-transition: all 0.3s ease;
5050
+ transition: all 0.3s ease;
5051
+ width: 0; }
5052
+ .premium-person-style3 .premium-person-title span {
5053
+ display: inline-block; }
5054
+
5055
+ .premium-person-style3 .premium-person-name {
5056
+ padding-left: 10px; }
5057
+
5058
+ .premium-person-style3 .premium-person-social-list {
5059
+ -js-display: flex;
5060
+ display: -webkit-box;
5061
+ display: -webkit-flex;
5062
+ display: -moz-box;
5063
+ display: -ms-flexbox;
5064
+ display: flex;
5065
+ -webkit-box-orient: vertical;
5066
+ -webkit-box-direction: normal;
5067
+ -webkit-flex-direction: column;
5068
+ -moz-box-orient: vertical;
5069
+ -moz-box-direction: normal;
5070
+ -ms-flex-direction: column;
5071
+ flex-direction: column;
5072
+ -webkit-transform: translateY(20px);
5073
+ -ms-transform: translateY(20px);
5074
+ transform: translateY(20px);
5075
+ opacity: 0;
5076
+ -webkit-transition: all 0.3s ease;
5077
+ transition: all 0.3s ease; }
5078
+
5079
+ .premium-person-style3 .premium-person-list-item {
5080
+ line-height: 0; }
5081
+ .premium-person-style3 .premium-person-list-item a {
5082
+ padding: 5px 10px 0 0;
5083
+ margin: 5px 0; }
5084
+
5085
+ .premium-person-style3 .premium-person-container:hover .premium-person-title {
5086
+ opacity: 1; }
5087
+
5088
+ .premium-person-style3 .premium-person-container:hover .premium-person-social-list {
5089
+ opacity: 1;
5090
+ -webkit-transform: translateY(0);
5091
+ -ms-transform: translateY(0);
5092
+ transform: translateY(0); }
5093
+
5094
+ .premium-persons-title-cw .premium-person-title {
5095
+ -webkit-transform: translateX(15px) rotate(90deg);
5096
+ -ms-transform: translateX(15px) rotate(90deg);
5097
+ transform: translateX(15px) rotate(90deg);
5098
+ -webkit-transform-origin: top;
5099
+ -ms-transform-origin: top;
5100
+ transform-origin: top; }
5101
+
5102
+ .premium-persons-title-cw .premium-person-container:hover .premium-person-title {
5103
+ -webkit-transform: translateX(0) rotate(90deg);
5104
+ -ms-transform: translateX(0) rotate(90deg);
5105
+ transform: translateX(0) rotate(90deg); }
5106
+
5107
+ .premium-persons-title-ccw .premium-person-title {
5108
+ width: auto;
5109
+ margin-right: 20px;
5110
+ -webkit-transform: translateX(15px) rotate(-90deg);
5111
+ -ms-transform: translateX(15px) rotate(-90deg);
5112
+ transform: translateX(15px) rotate(-90deg);
5113
+ -webkit-transform-origin: center right;
5114
+ -ms-transform-origin: center right;
5115
+ transform-origin: center right; }
5116
+
5117
+ .premium-persons-title-ccw .premium-person-container:hover .premium-person-title {
5118
+ -webkit-transform: translateX(0) rotate(-90deg);
5119
+ -ms-transform: translateX(0) rotate(-90deg);
5120
+ transform: translateX(0) rotate(-90deg); }
5121
+
5122
+ /**************** Premium Pricing Table ****************/
5123
+ /*******************************************************/
5124
+ .premium-pricing-table-container {
5125
+ position: relative;
5126
+ overflow: hidden;
5127
+ text-align: center;
5128
+ -webkit-transition: all 0.3s ease-in-out;
5129
+ transition: all 0.3s ease-in-out; }
5130
+
5131
+ .premium-pricing-icon-container {
5132
+ -js-display: flex;
5133
+ display: -webkit-box;
5134
+ display: -webkit-flex;
5135
+ display: -moz-box;
5136
+ display: -ms-flexbox;
5137
+ display: flex;
5138
+ -webkit-box-pack: center;
5139
+ -webkit-justify-content: center;
5140
+ -moz-box-pack: center;
5141
+ -ms-flex-pack: center;
5142
+ justify-content: center;
5143
+ line-height: 0; }
5144
+ .premium-pricing-icon-container .premium-pricing-icon {
5145
+ display: inline-block; }
5146
+ .premium-pricing-icon-container .premium-pricing-image {
5147
+ overflow: hidden; }
5148
+ .premium-pricing-icon-container .premium-pricing-image img {
5149
+ width: 25px;
5150
+ height: 25px;
5151
+ -o-object-fit: cover;
5152
+ object-fit: cover; }
5153
+
5154
+ .premium-badge-left {
5155
+ position: absolute;
5156
+ top: 0; }
5157
+
5158
+ .premium-badge-right {
5159
+ position: absolute;
5160
+ top: 0;
5161
+ right: 0; }
5162
+
5163
+ .premium-badge-left {
5164
+ left: 0; }
5165
+
5166
+ .premium-badge-triangle.premium-badge-left .corner {
5167
+ width: 0;
5168
+ height: 0;
5169
+ border-top: 150px solid;
5170
+ border-bottom: 150px solid transparent;
5171
+ border-right: 150px solid transparent; }
5172
+
5173
+ .premium-badge-triangle.premium-badge-right .corner {
5174
+ width: 0;
5175
+ height: 0;
5176
+ border-bottom: 150px solid transparent;
5177
+ border-right: 150px solid;
5178
+ border-left: 150px solid transparent; }
5179
+
5180
+ .premium-badge-triangle span {
5181
+ position: absolute;
5182
+ top: 35px;
5183
+ width: 100px;
5184
+ text-align: center;
5185
+ -webkit-transform: rotate(-45deg);
5186
+ -ms-transform: rotate(-45deg);
5187
+ transform: rotate(-45deg);
5188
+ display: block;
5189
+ text-transform: uppercase; }
5190
+
5191
+ .premium-badge-triangle.premium-badge-right span {
5192
+ -webkit-transform: rotate(45deg);
5193
+ -ms-transform: rotate(45deg);
5194
+ transform: rotate(45deg);
5195
+ right: 0; }
5196
+
5197
+ .premium-badge-circle {
5198
+ min-width: 4em;
5199
+ min-height: 4em;
5200
+ line-height: 4em;
5201
+ text-align: center;
5202
+ -webkit-border-radius: 100%;
5203
+ border-radius: 100%;
5204
+ position: absolute;
5205
+ z-index: 1; }
5206
+
5207
+ .premium-badge-stripe {
5208
+ position: absolute;
5209
+ -webkit-transform: rotate(90deg);
5210
+ -ms-transform: rotate(90deg);
5211
+ transform: rotate(90deg);
5212
+ width: 15em;
5213
+ overflow: hidden;
5214
+ height: 15em; }
5215
+ .premium-badge-stripe.premium-badge-left {
5216
+ -webkit-transform: rotate(0);
5217
+ -ms-transform: rotate(0);
5218
+ transform: rotate(0); }
5219
+ .premium-badge-stripe .corner {
5220
+ text-align: center;
5221
+ left: 0;
5222
+ width: 150%;
5223
+ -webkit-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
5224
+ -ms-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
5225
+ transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
5226
+ margin-top: 35px;
5227
+ font-size: 13px;
5228
+ line-height: 2;
5229
+ font-weight: 800;
5230
+ text-transform: uppercase; }
5231
+
5232
+ .premium-badge-flag .corner {
5233
+ text-align: center;
5234
+ -webkit-border-radius: 4px 4px 0 4px;
5235
+ border-radius: 4px 4px 0 4px;
5236
+ padding: 3px 15px;
5237
+ position: absolute;
5238
+ top: 10%;
5239
+ right: -8px; }
5240
+ .premium-badge-flag .corner::before, .premium-badge-flag .corner::after {
5241
+ content: "";
5242
+ display: block;
5243
+ position: absolute;
5244
+ width: 0;
5245
+ height: 0;
5246
+ top: 100%;
5247
+ right: 0;
5248
+ border-bottom: 8px solid transparent; }
5249
+
5250
+ .elementor-widget-premium-addon-pricing-table .elementor-widget-container {
5251
+ overflow: visible !important; }
5252
+
5253
+ .premium-badge-flag .corner::after {
5254
+ border-left: 8px solid rgba(0, 0, 0, 0.2); }
5255
+
5256
+ .premium-pricing-price-currency {
5257
+ position: relative; }
5258
+
5259
+ .premium-pricing-button-container {
5260
+ display: block; }
5261
+
5262
+ .premium-pricing-list {
5263
+ -js-display: flex;
5264
+ display: -webkit-box;
5265
+ display: -webkit-flex;
5266
+ display: -moz-box;
5267
+ display: -ms-flexbox;
5268
+ display: flex;
5269
+ -webkit-box-orient: vertical;
5270
+ -webkit-box-direction: normal;
5271
+ -webkit-flex-direction: column;
5272
+ -moz-box-orient: vertical;
5273
+ -moz-box-direction: normal;
5274
+ -ms-flex-direction: column;
5275
+ flex-direction: column;
5276
+ list-style-type: none;
5277
+ margin: 0; }
5278
+ .premium-pricing-list .premium-pricing-list-item {
5279
+ -js-display: flex;
5280
+ display: -webkit-box;
5281
+ display: -webkit-flex;
5282
+ display: -moz-box;
5283
+ display: -ms-flexbox;
5284
+ display: flex;
5285
+ -webkit-box-align: center;
5286
+ -webkit-align-items: center;
5287
+ -moz-box-align: center;
5288
+ -ms-flex-align: center;
5289
+ align-items: center; }
5290
+ .premium-pricing-list .premium-pricing-list-item svg {
5291
+ width: 50px;
5292
+ height: 50px; }
5293
+ .premium-pricing-list .premium-pricing-list-item img {
5294
+ width: 30px;
5295
+ height: 30px;
5296
+ -o-object-fit: cover;
5297
+ object-fit: cover; }
5298
+ .premium-pricing-list .premium-pricing-list-span {
5299
+ position: relative; }
5300
+ .premium-pricing-list .list-item-tooltip {
5301
+ border-bottom: 1px dotted; }
5302
+ .premium-pricing-list .premium-pricing-list-tooltip {
5303
+ position: absolute;
5304
+ top: -webkit-calc(100% + 1px);
5305
+ top: calc(100% + 1px);
5306
+ left: 0;
5307
+ visibility: hidden;
5308
+ padding: 15px 20px;
5309
+ -webkit-border-radius: 5px;
5310
+ border-radius: 5px;
5311
+ min-width: 200px;
5312
+ overflow: hidden;
5313
+ text-align: left;
5314
+ font-size: 0.8rem;
5315
+ color: #fff;
5316
+ background-color: #aaa; }
5317
+
5318
+ .premium-pricing-features-left .premium-pricing-list-span {
5319
+ text-align: left; }
5320
+
5321
+ .premium-pricing-features-center .premium-pricing-list-span {
5322
+ text-align: center; }
5323
+
5324
+ .premium-pricing-features-right .premium-pricing-list-span {
5325
+ text-align: right; }
5326
+
5327
+ .premium-pricing-list-span:hover .premium-pricing-list-tooltip {
5328
+ z-index: 99;
5329
+ visibility: visible;
5330
+ opacity: 1; }
5331
+
5332
+ .premium-pricing-slashed-price-value {
5333
+ display: inline-block;
5334
+ font-size: 20px;
5335
+ font-weight: 400;
5336
+ margin-right: 5px; }
5337
+
5338
+ .premium-pricing-price-value {
5339
+ font-size: 70px; }
5340
+
5341
+ .premium-pricing-description-container li {
5342
+ list-style-position: inside;
5343
+ text-indent: -40px; }
5344
+
5345
+ @-moz-document url-prefix() {
5346
+ .premium-pricing-description-container li {
5347
+ text-indent: 0px; } }
5348
+
5349
+ .premium-pricing-price-button {
5350
+ display: block;
5351
+ padding: 6px 12px;
5352
+ line-height: 1.42857143;
5353
+ text-align: center;
5354
+ color: #fff;
5355
+ background: #6ec1e4;
5356
+ margin-bottom: 0;
5357
+ -webkit-transition: all 0.3s ease-in-out;
5358
+ transition: all 0.3s ease-in-out; }
5359
+
5360
+ /**************** Premium Progress Bar ****************/
5361
+ /******************************************************/
5362
+ .premium-progressbar-container {
5363
+ position: relative; }
5364
+
5365
+ .premium-progressbar-bar-wrap {
5366
+ position: relative;
5367
+ text-align: left;
5368
+ overflow: hidden;
5369
+ height: 25px;
5370
+ margin-bottom: 50px;
5371
+ background-color: #f5f5f5;
5372
+ -webkit-border-radius: 4px;
5373
+ border-radius: 4px;
5374
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
5375
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }
5376
+ .premium-progressbar-bar-wrap.premium-progressbar-dots {
5377
+ background-color: transparent;
5378
+ width: 100%;
5379
+ -js-display: flex;
5380
+ display: -webkit-box;
5381
+ display: -webkit-flex;
5382
+ display: -moz-box;
5383
+ display: -ms-flexbox;
5384
+ display: flex;
5385
+ height: auto;
5386
+ -webkit-box-shadow: none;
5387
+ box-shadow: none; }
5388
+ .premium-progressbar-bar-wrap .progress-segment {
5389
+ position: relative;
5390
+ width: 25px;
5391
+ height: 25px;
5392
+ -webkit-border-radius: 50%;
5393
+ border-radius: 50%;
5394
+ overflow: hidden;
5395
+ background-color: #f5f5f5; }
5396
+ .premium-progressbar-bar-wrap .progress-segment.filled {
5397
+ background: #6ec1e4; }
5398
+ .premium-progressbar-bar-wrap .progress-segment:not(:first-child):not(:last-child) {
5399
+ margin: 0 4px; }
5400
+ .premium-progressbar-bar-wrap .progress-segment:first-child {
5401
+ margin-right: 4px; }
5402
+ .premium-progressbar-bar-wrap .progress-segment:last-child {
5403
+ margin-left: 4px; }
5404
+ .premium-progressbar-bar-wrap .progress-segment .segment-inner {
5405
+ position: absolute;
5406
+ top: 0;
5407
+ left: 0;
5408
+ height: 100%;
5409
+ background-color: #6ec1e4; }
5410
+
5411
+ .premium-progressbar-bar {
5412
+ float: left;
5413
+ width: 0%;
5414
+ height: 100%;
5415
+ font-size: 12px;
5416
+ line-height: 20px;
5417
+ background: #6ec1e4;
5418
+ text-align: center;
5419
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
5420
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); }
5421
+
5422
+ .premium-progressbar-striped .premium-progressbar-bar {
5423
+ 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);
5424
+ 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);
5425
+ -webkit-background-size: 40px 40px;
5426
+ background-size: 40px 40px; }
5427
+
5428
+ .premium-progressbar-active .premium-progressbar-bar {
5429
+ -webkit-animation: progress-bar-stripes 2s linear infinite;
5430
+ animation: progress-bar-stripes 2s linear infinite; }
5431
+
5432
+ .premium-progressbar-gradient .premium-progressbar-bar {
5433
+ -webkit-background-size: 400% 400% !important;
5434
+ background-size: 400% 400% !important;
5435
+ -webkit-animation: progress-bar-gradient 10s ease-in-out infinite;
5436
+ animation: progress-bar-gradient 10s ease-in-out infinite; }
5437
+
5438
+ .premium-progressbar-bar {
5439
+ position: absolute;
5440
+ overflow: hidden;
5441
+ line-height: 20px; }
5442
+
5443
+ .premium-progressbar-container .clearfix {
5444
+ clear: both; }
5445
+
5446
+ .premium-progressbar-bar {
5447
+ -webkit-transition: width 0s ease-in-out !important;
5448
+ transition: width 0s ease-in-out !important; }
5449
+
5450
+ .premium-progressbar-container p:first-of-type {
5451
+ margin: 0;
5452
+ float: left; }
5453
+
5454
+ .premium-progressbar-container p:nth-of-type(2) {
5455
+ margin: 0;
5456
+ float: right; }
5457
+
5458
+ .premium-progressbar-name {
5459
+ left: 50%;
5460
+ top: 0;
5461
+ right: 0;
5462
+ -webkit-transform: translateX(-12.5px);
5463
+ -ms-transform: translateX(-12.5px);
5464
+ transform: translateX(-12.5px);
5465
+ z-index: 1; }
5466
+
5467
+ .premium-progressbar-multiple-label {
5468
+ position: relative;
5469
+ float: left;
5470
+ width: 0;
5471
+ left: 50%; }
5472
+
5473
+ .premium-progressbar-center-label {
5474
+ position: relative;
5475
+ white-space: nowrap; }
5476
+
5477
+ .premium-progressbar-arrow {
5478
+ height: 15px;
5479
+ left: 50%;
5480
+ display: inline-block;
5481
+ border-left: 7px solid transparent;
5482
+ border-right: 7px solid transparent;
5483
+ border-top: 11px solid;
5484
+ -webkit-transform: translateX(-50%);
5485
+ -ms-transform: translateX(-50%);
5486
+ transform: translateX(-50%); }
5487
+
5488
+ .premium-progressbar-pin {
5489
+ border-left: 1px solid;
5490
+ height: 12px;
5491
+ left: 50%;
5492
+ display: inline-block; }
5493
+
5494
+ /**
5495
+ * Circle Progress Bar
5496
+ */
5497
+ .premium-progressbar-circle-wrap {
5498
+ width: 200px;
5499
+ height: 200px;
5500
+ position: relative;
5501
+ margin: 0 auto; }
5502
+ .premium-progressbar-circle-wrap .premium-progressbar-circle {
5503
+ position: absolute;
5504
+ top: 0;
5505
+ left: 0;
5506
+ width: 100%;
5507
+ height: 100%;
5508
+ -webkit-clip-path: inset(0 0 0 50%);
5509
+ clip-path: inset(0 0 0 50%); }
5510
+ .premium-progressbar-circle-wrap .premium-progressbar-circle div {
5511
+ position: absolute;
5512
+ left: 0;
5513
+ top: 0;
5514
+ height: 100%;
5515
+ width: 100%;
5516
+ border-width: 6px;
5517
+ border-style: solid;
5518
+ border-color: #54595f;
5519
+ -webkit-border-radius: 50%;
5520
+ border-radius: 50%;
5521
+ -webkit-clip-path: inset(0 50% 0 0);
5522
+ clip-path: inset(0 50% 0 0); }
5523
+ .premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-left {
5524
+ -webkit-transform: rotate(0);
5525
+ -ms-transform: rotate(0);
5526
+ transform: rotate(0); }
5527
+ .premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-right {
5528
+ -webkit-transform: rotate(180deg);
5529
+ -ms-transform: rotate(180deg);
5530
+ transform: rotate(180deg);
5531
+ visibility: hidden; }
5532
+ .premium-progressbar-circle-wrap .premium-progressbar-circle-base {
5533
+ width: 100%;
5534
+ height: 100%;
5535
+ border: 6px solid #eee;
5536
+ -webkit-border-radius: 50%;
5537
+ border-radius: 50%; }
5538
+ .premium-progressbar-circle-wrap .premium-progressbar-circle-content {
5539
+ position: absolute;
5540
+ top: 0;
5541
+ left: 0;
5542
+ width: 100%;
5543
+ height: 100%;
5544
+ -js-display: flex;
5545
+ display: -webkit-box;
5546
+ display: -webkit-flex;
5547
+ display: -moz-box;
5548
+ display: -ms-flexbox;
5549
+ display: flex;
5550
+ -webkit-box-orient: vertical;
5551
+ -webkit-box-direction: normal;
5552
+ -webkit-flex-direction: column;
5553
+ -moz-box-orient: vertical;
5554
+ -moz-box-direction: normal;
5555
+ -ms-flex-direction: column;
5556
+ flex-direction: column;
5557
+ -webkit-box-pack: center;
5558
+ -webkit-justify-content: center;
5559
+ -moz-box-pack: center;
5560
+ -ms-flex-pack: center;
5561
+ justify-content: center;
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
+ .premium-progressbar-circle-wrap .premium-lottie-animation {
5568
+ line-height: 1; }
5569
+
5570
+ @-webkit-keyframes progress-bar-stripes {
5571
+ from {
5572
+ background-position: 0 0; }
5573
+ to {
5574
+ background-position: 40px 0; } }
5575
+
5576
+ @keyframes progress-bar-stripes {
5577
+ from {
5578
+ background-position: 0 0; }
5579
+ to {
5580
+ background-position: 40px 0; } }
5581
+
5582
+ @-webkit-keyframes progress-bar-gradient {
5583
+ 0% {
5584
+ background-position: 0% 50%; }
5585
+ 50% {
5586
+ background-position: 100% 50%; }
5587
+ 100% {
5588
+ background-position: 0% 50%; } }
5589
+
5590
+ @keyframes progress-bar-gradient {
5591
+ 0% {
5592
+ background-position: 0% 50%; }
5593
+ 50% {
5594
+ background-position: 100% 50%; }
5595
+ 100% {
5596
+ background-position: 0% 50%; } }
5597
+
5598
+ /**************** Premium Testimonials ****************/
5599
+ /******************************************************/
5600
+ .premium-testimonial-box {
5601
+ width: 100%;
5602
+ background: transparent;
5603
+ -webkit-transition: all 0.3s ease-in-out;
5604
+ transition: all 0.3s ease-in-out; }
5605
+ .premium-testimonial-box .premium-testimonial-author-info {
5606
+ -js-display: flex;
5607
+ display: -webkit-box;
5608
+ display: -webkit-flex;
5609
+ display: -moz-box;
5610
+ display: -ms-flexbox;
5611
+ display: flex;
5612
+ -webkit-box-pack: center;
5613
+ -webkit-justify-content: center;
5614
+ -moz-box-pack: center;
5615
+ -ms-flex-pack: center;
5616
+ justify-content: center;
5617
+ -webkit-box-align: center;
5618
+ -webkit-align-items: center;
5619
+ -moz-box-align: center;
5620
+ -ms-flex-align: center;
5621
+ align-items: center; }
5622
+ .premium-testimonial-box .premium-testimonial-person-name,
5623
+ .premium-testimonial-box .premium-testimonial-company-name {
5624
+ font-weight: 600;
5625
+ margin: 0; }
5626
+
5627
+ .premium-testimonial-container {
5628
+ position: relative; }
5629
+
5630
+ .premium-testimonial-img-wrapper {
5631
+ margin-left: auto;
5632
+ margin-right: auto;
5633
+ overflow: hidden;
5634
+ border-style: solid !important; }
5635
+ .premium-testimonial-img-wrapper.circle {
5636
+ -webkit-border-radius: 50%;
5637
+ border-radius: 50%; }
5638
+ .premium-testimonial-img-wrapper.rounded {
5639
+ -webkit-border-radius: 15px;
5640
+ border-radius: 15px; }
5641
+ .premium-testimonial-img-wrapper img {
5642
+ -o-object-fit: cover;
5643
+ object-fit: cover;
5644
+ width: 100%;
5645
+ height: 100% !important; }
5646
+
5647
+ .premium-testimonial-content-wrapper {
5648
+ position: relative;
5649
+ -js-display: flex;
5650
+ display: -webkit-box;
5651
+ display: -webkit-flex;
5652
+ display: -moz-box;
5653
+ display: -ms-flexbox;
5654
+ display: flex;
5655
+ -webkit-box-orient: vertical;
5656
+ -webkit-box-direction: normal;
5657
+ -webkit-flex-direction: column;
5658
+ -moz-box-orient: vertical;
5659
+ -moz-box-direction: normal;
5660
+ -ms-flex-direction: column;
5661
+ flex-direction: column;
5662
+ z-index: 2;
5663
+ width: 100%;
5664
+ padding: 20px;
5665
+ text-align: center; }
5666
+
5667
+ .premium-testimonial-clear-float {
5668
+ clear: both; }
5669
+
5670
+ .premium-testimonial-upper-quote,
5671
+ .premium-testimonial-lower-quote {
5672
+ position: absolute;
5673
+ z-index: 1; }
5674
+
5675
+ /**************** Premium Title ****************/
5676
+ /***********************************************/
5677
+ .premium-title-container .premium-title-header {
5678
+ position: relative;
5679
+ margin: 0;
5680
+ padding: 10px; }
5681
+ .premium-title-container .premium-title-header:not(.premium-title-style7) {
5682
+ -webkit-box-align: center;
5683
+ -webkit-align-items: center;
5684
+ -moz-box-align: center;
5685
+ -ms-flex-align: center;
5686
+ align-items: center; }
5687
+ .premium-title-container .premium-title-header svg {
5688
+ width: 40px;
5689
+ height: 40px; }
5690
+ .premium-title-container .premium-title-header img {
5691
+ width: 40px;
5692
+ height: 40px;
5693
+ -o-object-fit: cover;
5694
+ object-fit: cover; }
5695
+ .premium-title-container .premium-title-header a {
5696
+ position: absolute;
5697
+ top: 0;
5698
+ left: 0;
5699
+ width: 100%;
5700
+ height: 100%; }
5701
+
5702
+ .premium-title-container .premium-lottie-animation {
5703
+ -js-display: flex;
5704
+ display: -webkit-box;
5705
+ display: -webkit-flex;
5706
+ display: -moz-box;
5707
+ display: -ms-flexbox;
5708
+ display: flex; }
5709
+
5710
+ .premium-title-icon-row .premium-title-icon {
5711
+ margin-right: 10px; }
5712
+
5713
+ .premium-title-icon-row-reverse .premium-title-icon {
5714
+ margin-left: 10px; }
5715
+
5716
+ .premium-title-style3,
5717
+ .premium-title-style4 {
5718
+ -js-display: flex;
5719
+ display: -webkit-box;
5720
+ display: -webkit-flex;
5721
+ display: -moz-box;
5722
+ display: -ms-flexbox;
5723
+ display: flex; }
5724
+
5725
+ .premium-title-style1,
5726
+ .premium-title-style2,
5727
+ .premium-title-style5,
5728
+ .premium-title-style6,
5729
+ .premium-title-style8,
5730
+ .premium-title-style9 {
5731
+ -js-display: inline-flex;
5732
+ display: -webkit-inline-box;
5733
+ display: -webkit-inline-flex;
5734
+ display: -moz-inline-box;
5735
+ display: -ms-inline-flexbox;
5736
+ display: inline-flex; }
5737
+
5738
+ .premium-title-style7 {
5739
+ -js-display: inline-flex;
5740
+ display: -webkit-inline-box;
5741
+ display: -webkit-inline-flex;
5742
+ display: -moz-inline-box;
5743
+ display: -ms-inline-flexbox;
5744
+ display: inline-flex;
5745
+ -webkit-box-orient: vertical;
5746
+ -webkit-box-direction: normal;
5747
+ -webkit-flex-direction: column;
5748
+ -moz-box-orient: vertical;
5749
+ -moz-box-direction: normal;
5750
+ -ms-flex-direction: column;
5751
+ flex-direction: column; }
5752
+ .premium-title-style7 .premium-title-style7-inner {
5753
+ -js-display: flex;
5754
+ display: -webkit-box;
5755
+ display: -webkit-flex;
5756
+ display: -moz-box;
5757
+ display: -ms-flexbox;
5758
+ display: flex;
5759
+ -webkit-box-align: center;
5760
+ -webkit-align-items: center;
5761
+ -moz-box-align: center;
5762
+ -ms-flex-align: center;
5763
+ align-items: center; }
5764
+
5765
+ .premium-title-style1 {
5766
+ border-width: 0;
5767
+ border-left: 3px solid #6ec1e4; }
5768
+
5769
+ .premium-title-container.style2, .premium-title-container.style4, .premium-title-container.style5, .premium-title-container.style6 {
5770
+ border-bottom: 3px solid #6ec1e4; }
5771
+
5772
+ /*Style 6 Header*/
5773
+ .premium-title-style6:before {
5774
+ position: absolute;
5775
+ left: 50%;
5776
+ bottom: 0;
5777
+ margin-left: -2px;
5778
+ content: "";
5779
+ border: 3px solid transparent; }
5780
+
5781
+ /*Style 6 Trinagle*/
5782
+ .premium-title-style7-stripe-wrap {
5783
+ -js-display: flex;
5784
+ display: -webkit-box;
5785
+ display: -webkit-flex;
5786
+ display: -moz-box;
5787
+ display: -ms-flexbox;
5788
+ display: flex; }
5789
+
5790
+ .premium-title-style7:before {
5791
+ display: none; }
5792
+
5793
+ .premium-title-style8 .premium-title-text[data-animation="shiny"] {
5794
+ -webkit-background-size: 125px 125px !important;
5795
+ background-size: 125px !important;
5796
+ color: rgba(255, 255, 255, 0);
5797
+ -webkit-background-clip: text !important;
5798
+ background-clip: text !important;
5799
+ -webkit-animation-name: pa-shinny-text !important;
5800
+ animation-name: pa-shinny-text !important;
5801
+ -webkit-animation-duration: var(--animation-speed) !important;
5802
+ animation-duration: var(--animation-speed) !important;
5803
+ -webkit-animation-iteration-count: infinite !important;
5804
+ animation-iteration-count: infinite !important;
5805
+ 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; }
5806
+
5807
+ @-webkit-keyframes pa-shinny-text {
5808
+ 0% {
5809
+ background-position: 0%; }
5810
+ 100% {
5811
+ background-position: 200%; } }
5812
+
5813
+ @keyframes pa-shinny-text {
5814
+ 0% {
5815
+ background-position: 0%; }
5816
+ 100% {
5817
+ background-position: 200%; } }
5818
+
5819
+ .premium-title-style9[data-animation-blur="process"] .premium-title-style9-letter {
5820
+ -webkit-animation: pa-blur-shadow 2s 1 alternate;
5821
+ animation: pa-blur-shadow 2s 1 alternate; }
5822
+
5823
+ @-webkit-keyframes pa-blur-shadow {
5824
+ from {
5825
+ text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
5826
+ color: transparent; }
5827
+ to {
5828
+ text-shadow: 0; } }
5829
+
5830
+ @keyframes pa-blur-shadow {
5831
+ from {
5832
+ text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
5833
+ color: transparent; }
5834
+ to {
5835
+ text-shadow: 0; } }
5836
+
5837
+ .premium-title-gradient-yes .premium-title-text,
5838
+ .premium-title-gradient-yes .premium-title-icon {
5839
+ -webkit-background-clip: text;
5840
+ -webkit-text-fill-color: transparent;
5841
+ background-image: -webkit-gradient(linear, left top, right top, from(#ffa648), color-stop(#f17cc1), to(#4da9fd));
5842
+ background-image: -webkit-linear-gradient(left, #ffa648, #f17cc1, #4da9fd);
5843
+ background-image: linear-gradient(to right, #ffa648, #f17cc1, #4da9fd);
5844
+ -webkit-animation: pa-text-gradient 8s infinite;
5845
+ animation: pa-text-gradient 8s infinite; }
5846
+
5847
+ .premium-title-clipped .premium-title-header {
5848
+ -webkit-text-fill-color: transparent;
5849
+ -webkit-background-clip: text;
5850
+ background-clip: text; }
5851
+
5852
+ @-webkit-keyframes pa-text-gradient {
5853
+ 0%,
5854
+ 100% {
5855
+ -webkit-filter: hue-rotate(0deg);
5856
+ filter: hue-rotate(0deg); }
5857
+ 50% {
5858
+ -webkit-filter: hue-rotate(360deg);
5859
+ filter: hue-rotate(360deg); } }
5860
+
5861
+ @keyframes pa-text-gradient {
5862
+ 0%,
5863
+ 100% {
5864
+ -webkit-filter: hue-rotate(0deg);
5865
+ filter: hue-rotate(0deg); }
5866
+ 50% {
5867
+ -webkit-filter: hue-rotate(360deg);
5868
+ filter: hue-rotate(360deg); } }
5869
+
5870
+ /**************** Premium Video Box ************/
5871
+ /***********************************************/
5872
+ .premium-video-box-transform {
5873
+ -webkit-transform: none !important;
5874
+ -ms-transform: none !important;
5875
+ transform: none !important; }
5876
+
5877
+ .premium-video-box-container {
5878
+ -js-display: flex;
5879
+ display: -webkit-box;
5880
+ display: -webkit-flex;
5881
+ display: -moz-box;
5882
+ display: -ms-flexbox;
5883
+ display: flex;
5884
+ -webkit-box-orient: vertical;
5885
+ -webkit-box-direction: normal;
5886
+ -webkit-flex-direction: column;
5887
+ -moz-box-orient: vertical;
5888
+ -moz-box-direction: normal;
5889
+ -ms-flex-direction: column;
5890
+ flex-direction: column; }
5891
+
5892
+ .premium-video-box-container > div {
5893
+ position: relative;
5894
+ overflow: hidden; }
5895
+
5896
+ .pa-aspect-ratio-11 .premium-video-box-container > div {
5897
+ padding-bottom: 100%; }
5898
+
5899
+ .pa-aspect-ratio-169 .premium-video-box-container > div {
5900
+ padding-bottom: 56.25%; }
5901
+
5902
+ .pa-aspect-ratio-43 .premium-video-box-container > div {
5903
+ padding-bottom: 75%; }
5904
+
5905
+ .pa-aspect-ratio-32 .premium-video-box-container > div {
5906
+ padding-bottom: 66.6666%; }
5907
+
5908
+ .pa-aspect-ratio-219 .premium-video-box-container > div {
5909
+ padding-bottom: 42.8571%; }
5910
+
5911
+ .pa-aspect-ratio-916 .premium-video-box-container > div {
5912
+ padding-bottom: 177.8%; }
5913
+
5914
+ .premium-video-box-image-container {
5915
+ position: absolute;
5916
+ top: 0;
5917
+ left: 0;
5918
+ bottom: 0;
5919
+ right: 0;
5920
+ width: 100%;
5921
+ height: 100%;
5922
+ -webkit-background-size: cover;
5923
+ background-size: cover;
5924
+ background-position: 50%;
5925
+ cursor: pointer;
5926
+ margin: auto;
5927
+ -webkit-transition: 0.2s all;
5928
+ transition: 0.2s all; }
5929
+
5930
+ .premium-video-box-play-icon-container {
5931
+ position: absolute;
5932
+ z-index: 2;
5933
+ cursor: pointer;
5934
+ -webkit-transform: translate(-50%, -50%);
5935
+ -ms-transform: translate(-50%, -50%);
5936
+ transform: translate(-50%, -50%);
5937
+ background: rgba(252, 252, 252, 0.35); }
5938
+
5939
+ .premium-video-box-description-container {
5940
+ position: absolute;
5941
+ z-index: 2;
5942
+ padding: 5px;
5943
+ text-align: center;
5944
+ cursor: pointer;
5945
+ -webkit-transform: translate(-50%, -50%);
5946
+ -ms-transform: translate(-50%, -50%);
5947
+ transform: translate(-50%, -50%); }
5948
+
5949
+ .premium-video-box-text {
5950
+ margin-bottom: 0 !important;
5951
+ -webkit-transition: all 0.3s ease-in-out;
5952
+ transition: all 0.3s ease-in-out; }
5953
+
5954
+ .premium-video-box-play-icon {
5955
+ padding: 15px;
5956
+ -webkit-transform: translateX(4%);
5957
+ -ms-transform: translateX(4%);
5958
+ transform: translateX(4%);
5959
+ -webkit-transition: all 0.3s ease-in-out;
5960
+ transition: all 0.3s ease-in-out; }
5961
+
5962
+ .premium-video-box-video-container {
5963
+ position: absolute;
5964
+ top: 0;
5965
+ left: 0;
5966
+ z-index: 2;
5967
+ width: 100%;
5968
+ height: 100%;
5969
+ -webkit-transition: opacity 0.8s ease-in-out;
5970
+ transition: opacity 0.8s ease-in-out;
5971
+ overflow: hidden;
5972
+ cursor: pointer; }
5973
+
5974
+ .premium-video-box-container[data-overlay="true"][data-type="self"] .premium-video-box-video-container {
5975
+ opacity: 0;
5976
+ visibility: hidden; }
5977
+
5978
+ .premium-video-box-video-container iframe {
5979
+ max-width: 100%;
5980
+ width: 100%;
5981
+ height: 100%;
5982
+ margin: 0;
5983
+ line-height: 1;
5984
+ border: none; }
5985
+
5986
+ .premium-video-box-video-container video {
5987
+ max-width: 100%;
5988
+ width: 100%;
5989
+ height: 100%;
5990
+ margin: 0;
5991
+ line-height: 1;
5992
+ border: none;
5993
+ background-color: #000;
5994
+ -o-object-fit: contain;
5995
+ object-fit: contain; }
5996
+
5997
+ .premium-video-box-container .premium-video-box-vimeo-wrap {
5998
+ -js-display: flex;
5999
+ display: -webkit-box;
6000
+ display: -webkit-flex;
6001
+ display: -moz-box;
6002
+ display: -ms-flexbox;
6003
+ display: flex;
6004
+ position: absolute;
6005
+ top: 0;
6006
+ left: 0;
6007
+ z-index: 3;
6008
+ margin: 10px;
6009
+ margin-right: 10px;
6010
+ -webkit-transition: opacity 0.2s ease-out;
6011
+ transition: opacity 0.2s ease-out;
6012
+ margin-right: 4.6em; }
6013
+
6014
+ .premium-video-box-vimeo-wrap .premium-video-box-vimeo-portrait {
6015
+ width: 60px;
6016
+ height: 60px;
6017
+ background: rgba(23, 35, 34, 0.75);
6018
+ margin-right: 1px;
6019
+ -webkit-box-flex: 1;
6020
+ -webkit-flex: 1 0 auto;
6021
+ -moz-box-flex: 1;
6022
+ -ms-flex: 1 0 auto;
6023
+ flex: 1 0 auto;
6024
+ padding: 0; }
6025
+
6026
+ .premium-video-box-vimeo-portrait img {
6027
+ width: 50px;
6028
+ height: 50px;
6029
+ margin: 5px;
6030
+ padding: 0;
6031
+ border: 0;
6032
+ -webkit-border-radius: 50%;
6033
+ border-radius: 50%; }
6034
+
6035
+ .premium-video-box-vimeo-wrap .premium-video-box-vimeo-headers {
6036
+ font-size: 10px; }
6037
+
6038
+ .premium-video-box-vimeo-wrap .premium-video-box-vimeo-title {
6039
+ max-width: 100%;
6040
+ font-size: 2em !important;
6041
+ font-weight: 700;
6042
+ margin: 0;
6043
+ padding: 0.1em 0.2em;
6044
+ background: rgba(23, 35, 34, 0.75);
6045
+ display: inline-block;
6046
+ text-transform: none;
6047
+ line-height: normal;
6048
+ letter-spacing: normal; }
6049
+
6050
+ .premium-video-box-vimeo-wrap .premium-video-box-vimeo-byline {
6051
+ font-size: 1.2em !important;
6052
+ font-weight: 400;
6053
+ color: #fff;
6054
+ margin-top: 0.1em;
6055
+ padding: 0.2em 0.5em;
6056
+ background: rgba(23, 35, 34, 0.75);
6057
+ text-transform: none;
6058
+ line-height: normal;
6059
+ letter-spacing: normal; }
6060
+
6061
+ .premium-video-box-playlist-container {
6062
+ -js-display: flex;
6063
+ display: -webkit-box;
6064
+ display: -webkit-flex;
6065
+ display: -moz-box;
6066
+ display: -ms-flexbox;
6067
+ display: flex;
6068
+ -webkit-flex-wrap: wrap;
6069
+ -ms-flex-wrap: wrap;
6070
+ flex-wrap: wrap; }
6071
+ .premium-video-box-playlist-container .premium-video-box-container {
6072
+ height: 100%;
6073
+ overflow: hidden; }
6074
+
6075
+ .premium-video-box-container:hover .premium-video-box-image-container.zoomin {
6076
+ -webkit-transform: scale(1.1);
6077
+ -ms-transform: scale(1.1);
6078
+ transform: scale(1.1); }
6079
+
6080
+ .premium-video-box-container:hover .premium-video-box-image-container.zoomout {
6081
+ -webkit-transform: scale(1);
6082
+ -ms-transform: scale(1);
6083
+ transform: scale(1); }
6084
+
6085
+ .premium-video-box-container:hover .premium-video-box-image-container.scale {
6086
+ -webkit-transform: scale(1.3) rotate(5deg);
6087
+ -ms-transform: scale(1.3) rotate(5deg);
6088
+ transform: scale(1.3) rotate(5deg); }
6089
+
6090
+ .premium-video-box-container:hover .premium-video-box-image-container.gray {
6091
+ -webkit-filter: grayscale(0%);
6092
+ filter: grayscale(0%); }
6093
+
6094
+ .premium-video-box-container:hover .premium-video-box-image-container.blur {
6095
+ -webkit-filter: blur(3px);
6096
+ filter: blur(3px); }
6097
+
6098
+ .premium-video-box-container:hover .premium-video-box-image-container.sepia {
6099
+ -webkit-filter: sepia(0%);
6100
+ filter: sepia(0%); }
6101
+
6102
+ .premium-video-box-container:hover .premium-video-box-image-container.trans {
6103
+ -webkit-transform: translateX(0px) scale(1.1);
6104
+ -ms-transform: translateX(0px) scale(1.1);
6105
+ transform: translateX(0px) scale(1.1); }
6106
+
6107
+ .premium-video-box-container:hover .premium-video-box-image-container.bright {
6108
+ -webkit-filter: brightness(1.2);
6109
+ filter: brightness(1.2); }
6110
+
6111
+ .premium-video-box-image-container.gray {
6112
+ -webkit-filter: grayscale(100%);
6113
+ filter: grayscale(100%); }
6114
+
6115
+ .premium-video-box-image-container.zoomout, .premium-video-box-image-container.scale {
6116
+ -webkit-transform: scale(1.2);
6117
+ -ms-transform: scale(1.2);
6118
+ transform: scale(1.2); }
6119
+
6120
+ .premium-video-box-image-container.sepia {
6121
+ -webkit-filter: sepia(30%);
6122
+ filter: sepia(30%); }
6123
+
6124
+ .premium-video-box-image-container.bright {
6125
+ -webkit-filter: brightness(1);
6126
+ filter: brightness(1); }
6127
+
6128
+ .premium-video-box-image-container.trans {
6129
+ -webkit-transform: translateX(-15px) scale(1.1);
6130
+ -ms-transform: translateX(-15px) scale(1.1);
6131
+ transform: translateX(-15px) scale(1.1); }
6132
+
6133
+ .premium-video-box-mask-media {
6134
+ -webkit-mask-repeat: no-repeat;
6135
+ mask-repeat: no-repeat; }
6136
+
6137
+ /* Sticky Video Option */
6138
+ .premium-video-box-container.premium-video-box-sticky-apply {
6139
+ z-index: 99;
6140
+ overflow: unset; }
6141
+ .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
6142
+ position: fixed !important;
6143
+ z-index: 99999;
6144
+ height: 225px;
6145
+ width: 400px;
6146
+ background: #fff; }
6147
+ .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-vimeo-wrap,
6148
+ .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-container:before {
6149
+ visibility: hidden; }
6150
+ .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 {
6151
+ -webkit-box-shadow: unset;
6152
+ box-shadow: unset; }
6153
+
6154
+ .premium-video-box-sticky-close,
6155
+ .premium-video-box-sticky-infobar {
6156
+ display: none; }
6157
+
6158
+ .premium-video-box-sticky-apply .premium-video-box-sticky-close {
6159
+ position: absolute;
6160
+ padding: 5px;
6161
+ cursor: pointer;
6162
+ z-index: 99999;
6163
+ height: 14px;
6164
+ width: 14px;
6165
+ -webkit-box-sizing: content-box;
6166
+ -moz-box-sizing: content-box;
6167
+ box-sizing: content-box;
6168
+ -webkit-border-radius: 100%;
6169
+ border-radius: 100%;
6170
+ -js-display: flex;
6171
+ display: -webkit-box;
6172
+ display: -webkit-flex;
6173
+ display: -moz-box;
6174
+ display: -ms-flexbox;
6175
+ display: flex;
6176
+ -webkit-box-pack: center;
6177
+ -webkit-justify-content: center;
6178
+ -moz-box-pack: center;
6179
+ -ms-flex-pack: center;
6180
+ justify-content: center;
6181
+ -webkit-box-align: center;
6182
+ -webkit-align-items: center;
6183
+ -moz-box-align: center;
6184
+ -ms-flex-align: center;
6185
+ align-items: center; }
6186
+
6187
+ .premium-video-box-sticky-apply .premium-video-box-play-icon-container {
6188
+ -js-display: flex;
6189
+ display: -webkit-box;
6190
+ display: -webkit-flex;
6191
+ display: -moz-box;
6192
+ display: -ms-flexbox;
6193
+ display: flex; }
6194
+
6195
+ .premium-video-box-sticky-apply .premium-video-box-play-icon {
6196
+ -webkit-transition: none;
6197
+ transition: none; }
6198
+
6199
+ .premium-video-box-sticky-apply .premium-video-box-sticky-infobar {
6200
+ display: block;
6201
+ position: relative;
6202
+ top: 100%;
6203
+ width: 100%;
6204
+ padding: 5px;
6205
+ text-align: center;
6206
+ z-index: 9999;
6207
+ margin-top: -1px; }
6208
+
6209
+ .premium-video-box-sticky-apply .premium-video-box-inner-wrap.ui-draggable {
6210
+ cursor: move; }
6211
+
6212
+ .premium-video-sticky-top-left
6213
+ .premium-video-box-container.premium-video-box-sticky-apply
6214
+ .premium-video-box-inner-wrap {
6215
+ right: auto;
6216
+ left: 20px;
6217
+ top: 20px; }
6218
+
6219
+ .premium-video-sticky-bottom-left
6220
+ .premium-video-box-container.premium-video-box-sticky-apply
6221
+ .premium-video-box-inner-wrap {
6222
+ right: auto;
6223
+ left: 20px;
6224
+ bottom: 20px; }
6225
+
6226
+ .premium-video-sticky-top-right
6227
+ .premium-video-box-container.premium-video-box-sticky-apply
6228
+ .premium-video-box-inner-wrap {
6229
+ left: auto;
6230
+ right: 20px;
6231
+ top: 20px; }
6232
+
6233
+ .premium-video-sticky-bottom-right
6234
+ .premium-video-box-container.premium-video-box-sticky-apply
6235
+ .premium-video-box-inner-wrap {
6236
+ left: auto;
6237
+ right: 20px;
6238
+ bottom: 20px; }
6239
+
6240
+ .premium-video-sticky-center-left
6241
+ .premium-video-box-container.premium-video-box-sticky-apply
6242
+ .premium-video-box-inner-wrap {
6243
+ right: auto;
6244
+ left: 20px;
6245
+ top: 50%;
6246
+ -webkit-transform: translateY(-50%);
6247
+ -ms-transform: translateY(-50%);
6248
+ transform: translateY(-50%); }
6249
+
6250
+ .premium-video-sticky-center-right
6251
+ .premium-video-box-container.premium-video-box-sticky-apply
6252
+ .premium-video-box-inner-wrap {
6253
+ left: auto;
6254
+ right: 20px;
6255
+ top: 50%;
6256
+ -webkit-transform: translateY(-50%);
6257
+ -ms-transform: translateY(-50%);
6258
+ transform: translateY(-50%); }
6259
+
6260
+ .premium-video-sticky-bottom-right
6261
+ .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply
6262
+ .premium-video-box-inner-wrap,
6263
+ .premium-video-sticky-bottom-left
6264
+ .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply
6265
+ .premium-video-box-inner-wrap {
6266
+ bottom: 55px; }
6267
+
6268
+ .premium-video-sticky-top-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
6269
+ .premium-video-sticky-bottom-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
6270
+ .premium-video-sticky-center-left .premium-video-box-sticky-apply .premium-video-box-sticky-close {
6271
+ top: -10px;
6272
+ right: -10px; }
6273
+
6274
+ .premium-video-sticky-top-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
6275
+ .premium-video-sticky-bottom-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
6276
+ .premium-video-sticky-center-right .premium-video-box-sticky-apply .premium-video-box-sticky-close {
6277
+ top: -10px;
6278
+ left: -10px; }
6279
+
6280
+ .premium-video-box-filter-sticky {
6281
+ -webkit-filter: none !important;
6282
+ filter: none !important; }
6283
+
6284
+ /************ Premium Vertical Scroll ************/
6285
+ /*************************************************/
6286
+ .premium-vscroll-inner {
6287
+ position: relative;
6288
+ min-height: 100%; }
6289
+ .premium-vscroll-inner .premium-vscroll-dots {
6290
+ position: fixed;
6291
+ z-index: 100;
6292
+ opacity: 1;
6293
+ margin-top: -32px;
6294
+ -webkit-transition: all 0.3s ease-in-out;
6295
+ transition: all 0.3s ease-in-out; }
6296
+
6297
+ .premium-vscroll-wrap .premium-vscroll-nav-menu {
6298
+ opacity: 1;
6299
+ -webkit-transition: all 0.3s ease-in-out;
6300
+ transition: all 0.3s ease-in-out; }
6301
+
6302
+ .premium-vscroll-inner .premium-vscroll-dots,
6303
+ .premium-vscroll-wrap .premium-vscroll-dots-hide {
6304
+ opacity: 0;
6305
+ visibility: hidden; }
6306
+
6307
+ .premium-vscroll-nav-dots-yes .premium-vscroll-inner .premium-vscroll-dots:not(.premium-vscroll-dots-hide) {
6308
+ opacity: 1;
6309
+ visibility: visible; }
6310
+
6311
+ .premium-vscroll-dots.middle {
6312
+ top: 50%; }
6313
+
6314
+ .premium-vscroll-dots.top {
6315
+ top: 40px; }
6316
+
6317
+ .premium-vscroll-dots.bottom {
6318
+ bottom: 30px; }
6319
+
6320
+ .premium-vscroll-dots.right {
6321
+ right: 17px; }
6322
+
6323
+ .premium-vscroll-dots.left {
6324
+ left: 17px; }
6325
+
6326
+ .premium-vscroll-inner ul.premium-vscroll-dots-list,
6327
+ .premium-vscroll-wrap .premium-vscroll-nav-menu {
6328
+ margin: 0 !important;
6329
+ padding: 0; }
6330
+
6331
+ .premium-vscroll-inner ul.premium-vscroll-dots-list li {
6332
+ width: 14px;
6333
+ height: 13px;
6334
+ margin: 7px;
6335
+ position: relative;
6336
+ -js-display: flex;
6337
+ display: -webkit-box;
6338
+ display: -webkit-flex;
6339
+ display: -moz-box;
6340
+ display: -ms-flexbox;
6341
+ display: flex;
6342
+ -webkit-box-pack: center;
6343
+ -webkit-justify-content: center;
6344
+ -moz-box-pack: center;
6345
+ -ms-flex-pack: center;
6346
+ justify-content: center;
6347
+ -webkit-box-align: center;
6348
+ -webkit-align-items: center;
6349
+ -moz-box-align: center;
6350
+ -ms-flex-align: center;
6351
+ align-items: center;
6352
+ overflow: visible; }
6353
+
6354
+ .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link {
6355
+ display: block;
6356
+ position: relative;
6357
+ z-index: 1;
6358
+ width: 100%;
6359
+ height: 100%;
6360
+ cursor: pointer;
6361
+ text-decoration: none; }
6362
+ .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link span {
6363
+ top: 2px;
6364
+ left: 2.5px;
6365
+ width: 8px;
6366
+ height: 8px;
6367
+ border: 1px solid #000;
6368
+ -webkit-border-radius: 50%;
6369
+ border-radius: 50%;
6370
+ position: absolute;
6371
+ z-index: 1;
6372
+ -webkit-transition: all 0.3s ease-in-out;
6373
+ transition: all 0.3s ease-in-out; }
6374
+
6375
+ .premium-vscroll-inner .premium-vscroll-dot-item.active .premium-vscroll-nav-link span {
6376
+ -webkit-transform: scale(1.6);
6377
+ -ms-transform: scale(1.6);
6378
+ transform: scale(1.6); }
6379
+
6380
+ .premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-tooltip {
6381
+ position: absolute;
6382
+ color: #fff;
6383
+ font-size: 14px;
6384
+ font-family: arial, helvetica, sans-serif;
6385
+ white-space: nowrap;
6386
+ max-width: 220px;
6387
+ padding-left: 0.4em;
6388
+ padding-right: 0.4em; }
6389
+
6390
+ .premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip {
6391
+ right: 27px; }
6392
+
6393
+ .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item {
6394
+ width: 4px;
6395
+ height: 30px; }
6396
+ .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item span {
6397
+ width: 100%;
6398
+ height: 100%;
6399
+ -webkit-border-radius: 0;
6400
+ border-radius: 0; }
6401
+ .premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item.active span {
6402
+ -webkit-transform: scale(1);
6403
+ -ms-transform: scale(1);
6404
+ transform: scale(1); }
6405
+
6406
+ .premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip::after {
6407
+ position: absolute;
6408
+ top: 50%;
6409
+ content: "";
6410
+ left: -webkit-calc(100% - 1px);
6411
+ left: calc(100% - 1px);
6412
+ width: 10px;
6413
+ height: 0;
6414
+ border-top: 6px solid transparent;
6415
+ border-bottom: 6px solid transparent;
6416
+ border-left: 6px solid;
6417
+ -webkit-transform: translateY(-50%);
6418
+ -ms-transform: translateY(-50%);
6419
+ transform: translateY(-50%); }
6420
+
6421
+ .premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip {
6422
+ left: 27px; }
6423
+ .premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip::after {
6424
+ position: absolute;
6425
+ top: 50%;
6426
+ content: "";
6427
+ right: -webkit-calc(100% - 1px);
6428
+ right: calc(100% - 1px);
6429
+ width: 10px;
6430
+ height: 0;
6431
+ border-top: 6px solid transparent;
6432
+ border-bottom: 6px solid transparent;
6433
+ border-right: 6px solid;
6434
+ -webkit-transform: translateY(-50%);
6435
+ -ms-transform: translateY(-50%);
6436
+ transform: translateY(-50%); }
6437
+
6438
+ /* * Lines */
6439
+ @media (max-width: 768px) {
6440
+ .premium-vscroll-dots.right {
6441
+ right: 7px; }
6442
+ .premium-vscroll-dots.left {
6443
+ left: 7px; } }
6444
+
6445
+ .premium-vscroll-nav-menu {
6446
+ position: fixed;
6447
+ top: 20px;
6448
+ height: 40px;
6449
+ z-index: 100;
6450
+ padding: 0;
6451
+ margin: 0; }
6452
+ .premium-vscroll-nav-menu.left {
6453
+ left: 0; }
6454
+ .premium-vscroll-nav-menu.right {
6455
+ right: 0; }
6456
+ .premium-vscroll-nav-menu .premium-vscroll-nav-item {
6457
+ display: inline-block;
6458
+ margin: 10px;
6459
+ color: #000;
6460
+ background: #fff;
6461
+ background: rgba(255, 255, 255, 0.3); }
6462
+ .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link {
6463
+ padding: 9px 18px;
6464
+ display: block;
6465
+ cursor: pointer;
6466
+ color: #000; }
6467
+ .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:hover {
6468
+ color: #000; }
6469
+ .premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:focus {
6470
+ outline: none; }
6471
+
6472
+ .multiscroll-nav li a:focus {
6473
+ outline: none; }
6474
+
6475
+ .premium-vscroll-temp .slimScrollBar {
6476
+ visibility: hidden; }
6477
+
6478
+ /********** Premium Woo Products **********/
6479
+ /******************************************/
6480
+ .ast-single-post .entry-content .premium-woocommerce a {
6481
+ text-decoration: none; }
6482
+
6483
+ .premium-woocommerce .premium-woo-qv-btn {
6484
+ cursor: pointer; }
6485
+
6486
+ .premium-woocommerce:not(.premium-woo-skin-grid-7) li.product .star-rating {
6487
+ margin: 0 auto 0.5em; }
6488
+
6489
+ .premium-woocommerce:not(.premium-woo-skin-grid-10) .premium-woo-product-sale-wrap .premium-woo-product-onsale,
6490
+ .premium-woocommerce:not(.premium-woo-skin-grid-10) .premium-woo-product-featured-wrap .premium-woo-product-featured {
6491
+ display: block;
6492
+ text-align: center;
6493
+ color: #fff;
6494
+ min-width: 2em;
6495
+ min-height: 2em;
6496
+ line-height: 2em;
6497
+ padding: 0.3em 0.6em;
6498
+ margin: 0.5em 0.6em; }
6499
+
6500
+ .premium-woocommerce .pa-out-of-stock {
6501
+ display: block;
6502
+ text-align: center;
6503
+ color: #fff;
6504
+ min-width: 2em;
6505
+ min-height: 2em;
6506
+ line-height: 2em;
6507
+ padding: 0.3em 0.6em;
6508
+ margin: 0.5em 0.6em; }
6509
+
6510
+ .premium-woocommerce .woocommerce-loop-product__title {
6511
+ margin-bottom: 0.5em;
6512
+ font-size: 1em;
6513
+ -webkit-transition: all 0.3s ease-in-out;
6514
+ transition: all 0.3s ease-in-out; }
6515
+
6516
+ .premium-woocommerce .premium-woo-product-category {
6517
+ display: block;
6518
+ font-size: 0.85em;
6519
+ margin-bottom: 0.5em;
6520
+ line-height: 1.3; }
6521
+
6522
+ .premium-woocommerce .star-rating {
6523
+ display: block;
6524
+ float: none;
6525
+ -webkit-backface-visibility: hidden;
6526
+ backface-visibility: hidden;
6527
+ overflow: hidden;
6528
+ position: relative;
6529
+ height: 1em;
6530
+ line-height: 1;
6531
+ font-size: 0.857em;
6532
+ width: 5.4em;
6533
+ font-family: "star"; }
6534
+ .premium-woocommerce .star-rating::before {
6535
+ content: "\73\73\73\73\73";
6536
+ color: #54595f;
6537
+ float: left;
6538
+ top: 0;
6539
+ left: 0;
6540
+ position: absolute; }
6541
+ .premium-woocommerce .star-rating span {
6542
+ overflow: hidden;
6543
+ float: left;
6544
+ top: 0;
6545
+ left: 0;
6546
+ position: absolute;
6547
+ padding-top: 1.5em; }
6548
+ .premium-woocommerce .star-rating span::before {
6549
+ content: "\53\53\53\53\53";
6550
+ color: inherit;
6551
+ top: 0;
6552
+ position: absolute;
6553
+ left: 0; }
6554
+
6555
+ .premium-woocommerce .premium-woo-products-inner ul.products {
6556
+ -js-display: flex;
6557
+ display: -webkit-box;
6558
+ display: -webkit-flex;
6559
+ display: -moz-box;
6560
+ display: -ms-flexbox;
6561
+ display: flex;
6562
+ margin: 0;
6563
+ padding: 0;
6564
+ -webkit-flex-wrap: wrap;
6565
+ -ms-flex-wrap: wrap;
6566
+ flex-wrap: wrap;
6567
+ list-style: none outside;
6568
+ -webkit-column-gap: 0;
6569
+ -moz-column-gap: 0;
6570
+ column-gap: 0; }
6571
+ .premium-woocommerce .premium-woo-products-inner ul.products li.product {
6572
+ margin: 0 0 10px;
6573
+ padding: 0 10px; }
6574
+ .premium-woocommerce .premium-woo-products-inner ul.products li.product .premium-woo-product-wrapper {
6575
+ overflow: hidden;
6576
+ -webkit-transition: all 0.3s ease-in-out;
6577
+ transition: all 0.3s ease-in-out; }
6578
+
6579
+ .premium-woocommerce .woocommerce-loop-product__link {
6580
+ position: relative;
6581
+ display: block !important;
6582
+ overflow: hidden;
6583
+ -webkit-transition: all 0.3s ease-in-out;
6584
+ transition: all 0.3s ease-in-out; }
6585
+
6586
+ .premium-woocommerce .premium-woo-ribbon-container,
6587
+ .premium-woocommerce .pa-out-of-stock {
6588
+ position: absolute;
6589
+ z-index: 9; }
6590
+
6591
+ .premium-woocommerce .premium-woo-ribbon-container {
6592
+ top: 0;
6593
+ left: 0; }
6594
+
6595
+ .premium-woocommerce .pa-out-of-stock {
6596
+ top: 7px;
6597
+ left: 9px;
6598
+ margin: 0; }
6599
+
6600
+ .premium-woo-product-thumbnail {
6601
+ position: relative;
6602
+ overflow: hidden; }
6603
+ .premium-woo-product-thumbnail .woocommerce-loop-product__link img {
6604
+ margin: 0;
6605
+ width: 100%; }
6606
+
6607
+ .premium-woo-product-sale-wrap,
6608
+ .premium-woo-product-featured-wrap {
6609
+ margin: 0; }
6610
+
6611
+ .premium-woocommerce .premium-woo-products-details-wrap {
6612
+ padding: 1em 1.2em; }
6613
+ .premium-woocommerce .premium-woo-products-details-wrap .button {
6614
+ display: inline-block;
6615
+ background-color: #6ec1e4;
6616
+ color: #fff;
6617
+ margin: 0.5em 0;
6618
+ line-height: 1.3;
6619
+ padding: 10px 40px;
6620
+ font-size: 100%;
6621
+ cursor: pointer;
6622
+ text-decoration: none;
6623
+ overflow: visible;
6624
+ font-weight: 700;
6625
+ background-image: none;
6626
+ border: none;
6627
+ -webkit-border-radius: 0px;
6628
+ border-radius: 0px;
6629
+ -webkit-box-shadow: none;
6630
+ box-shadow: none;
6631
+ text-shadow: none;
6632
+ -webkit-transition: all 0.3s ease-in-out;
6633
+ transition: all 0.3s ease-in-out; }
6634
+
6635
+ .premium-woocommerce li.product .price {
6636
+ display: block;
6637
+ line-height: 1.3;
6638
+ font-weight: 700;
6639
+ margin-bottom: 0.5em;
6640
+ font-size: 0.9em; }
6641
+ .premium-woocommerce li.product .price del {
6642
+ display: inline-block;
6643
+ font-weight: 400;
6644
+ background: transparent;
6645
+ opacity: 1; }
6646
+ .premium-woocommerce li.product .price ins {
6647
+ display: inline-block;
6648
+ background: transparent;
6649
+ text-decoration: none;
6650
+ font-weight: inherit; }
6651
+ .premium-woocommerce li.product .price .amount {
6652
+ color: inherit !important; }
6653
+
6654
+ .premium-woocommerce li.product .premium-woo-product-desc p {
6655
+ margin: 0; }
6656
+
6657
+ .premium-woo-product-align-left .premium-woocommerce li.product .star-rating {
6658
+ margin-left: 0;
6659
+ margin-right: auto; }
6660
+
6661
+ .premium-woo-product-align-center .premium-woocommerce li.product .star-rating {
6662
+ margin-left: auto;
6663
+ margin-right: auto; }
6664
+
6665
+ .premium-woo-product-align-right .premium-woocommerce li.product .star-rating {
6666
+ margin-left: auto;
6667
+ margin-right: 0; }
6668
+
6669
+ .premium-woo-products-pagination ul.page-numbers {
6670
+ -js-display: flex;
6671
+ display: -webkit-box;
6672
+ display: -webkit-flex;
6673
+ display: -moz-box;
6674
+ display: -ms-flexbox;
6675
+ display: flex;
6676
+ list-style-type: none;
6677
+ margin: 0;
6678
+ margin-top: 10px;
6679
+ padding: 0;
6680
+ border: none;
6681
+ -webkit-box-pack: center;
6682
+ -webkit-justify-content: center;
6683
+ -moz-box-pack: center;
6684
+ -ms-flex-pack: center;
6685
+ justify-content: center; }
6686
+ .premium-woo-products-pagination ul.page-numbers li {
6687
+ margin: 0 0.4em 0.4em 0;
6688
+ padding: 0;
6689
+ text-align: center; }
6690
+ .premium-woo-products-pagination ul.page-numbers li .page-numbers {
6691
+ margin: 0;
6692
+ text-decoration: none;
6693
+ color: #000;
6694
+ border: 1px solid #54595f;
6695
+ padding: 0;
6696
+ line-height: 1;
6697
+ font-size: 1em;
6698
+ font-weight: 400;
6699
+ padding: 0.75em;
6700
+ display: block;
6701
+ min-width: 2.5em;
6702
+ -webkit-transition: all 0.3s ease-in-out;
6703
+ transition: all 0.3s ease-in-out; }
6704
+ .premium-woo-products-pagination ul.page-numbers li .page-numbers:hover, .premium-woo-products-pagination ul.page-numbers li .page-numbers.current {
6705
+ background-color: #54595f;
6706
+ color: #fff;
6707
+ outline: none; }
6708
+
6709
+ .premium-woocommerce .premium-loading-feed,
6710
+ .premium-woo-quick-view-loader .premium-loading-feed {
6711
+ display: block;
6712
+ position: absolute;
6713
+ width: 100%;
6714
+ height: 100%;
6715
+ top: 0px;
6716
+ left: 0px;
6717
+ bottom: 0px;
6718
+ right: 0px;
6719
+ background: rgba(255, 255, 255, 0.2);
6720
+ -js-display: flex;
6721
+ display: -webkit-box;
6722
+ display: -webkit-flex;
6723
+ display: -moz-box;
6724
+ display: -ms-flexbox;
6725
+ display: flex;
6726
+ -webkit-box-align: center;
6727
+ -webkit-align-items: center;
6728
+ -moz-box-align: center;
6729
+ -ms-flex-align: center;
6730
+ align-items: center; }
6731
+
6732
+ /**
6733
+ * Image Hover Effects
6734
+ */
6735
+ .premium-woocommerce .woocommerce-loop-product__link img {
6736
+ -webkit-transition: all 0.3s ease-in-out;
6737
+ transition: all 0.3s ease-in-out; }
6738
+
6739
+ .premium-woo-product__hover-zoomout .woocommerce-loop-product__link img {
6740
+ -webkit-transform: scale(1.2);
6741
+ -ms-transform: scale(1.2);
6742
+ transform: scale(1.2); }
6743
+
6744
+ .premium-woo-product__hover-zoomout li.product:hover .woocommerce-loop-product__link img {
6745
+ -webkit-transform: none;
6746
+ -ms-transform: none;
6747
+ transform: none; }
6748
+
6749
+ .premium-woo-product__hover-zoomin .woocommerce-loop-product__link img {
6750
+ -webkit-transform: none;
6751
+ -ms-transform: none;
6752
+ transform: none; }
6753
+
6754
+ .premium-woo-product__hover-zoomin li.product:hover .woocommerce-loop-product__link img {
6755
+ -webkit-transform: scale(1.2);
6756
+ -ms-transform: scale(1.2);
6757
+ transform: scale(1.2); }
6758
+
6759
+ .premium-woo-product__hover-gray .woocommerce-loop-product__link img {
6760
+ -webkit-filter: grayscale(100%);
6761
+ filter: grayscale(100%); }
6762
+
6763
+ .premium-woo-product__hover-gray li.product:hover .woocommerce-loop-product__link img {
6764
+ -webkit-filter: grayscale(0%);
6765
+ filter: grayscale(0%); }
6766
+
6767
+ .premium-woo-product__hover-sepia .woocommerce-loop-product__link img {
6768
+ -webkit-filter: sepia(30%);
6769
+ filter: sepia(30%); }
6770
+
6771
+ .premium-woo-product__hover-sepia li.product:hover .woocommerce-loop-product__link img {
6772
+ -webkit-filter: sepia(0%);
6773
+ filter: sepia(0%); }
6774
+
6775
+ .premium-woo-product__hover-bright .woocommerce-loop-product__link img {
6776
+ -webkit-filter: brightness(1);
6777
+ filter: brightness(1); }
6778
+
6779
+ .premium-woo-product__hover-bright li.product:hover .woocommerce-loop-product__link img {
6780
+ -webkit-filter: brightness(1.2);
6781
+ filter: brightness(1.2); }
6782
+
6783
+ .premium-woo-product__hover-trans .woocommerce-loop-product__link img {
6784
+ -webkit-transform: translateX(-15px) scale(1.1);
6785
+ -ms-transform: translateX(-15px) scale(1.1);
6786
+ transform: translateX(-15px) scale(1.1); }
6787
+
6788
+ .premium-woo-product__hover-trans li.product:hover .woocommerce-loop-product__link img {
6789
+ -webkit-transform: translateX(0px) scale(1.1);
6790
+ -ms-transform: translateX(0px) scale(1.1);
6791
+ transform: translateX(0px) scale(1.1); }
6792
+
6793
+ .premium-woo-product__hover-scale li.product:hover .woocommerce-loop-product__link img {
6794
+ -webkit-transform: scaleX(1.3) scaleY(1.3) rotate(5deg);
6795
+ -ms-transform: scaleX(1.3) scaleY(1.3) rotate(5deg);
6796
+ transform: scaleX(1.3) scaleY(1.3) rotate(5deg); }
6797
+
6798
+ .premium-woocommerce .premium-woo-product__on_hover {
6799
+ position: absolute;
6800
+ top: 0;
6801
+ right: 0;
6802
+ bottom: 0;
6803
+ left: 0;
6804
+ height: 100%;
6805
+ opacity: 0; }
6806
+
6807
+ .premium-woo-product__hover-swap li.product:hover .premium-woo-product__on_hover {
6808
+ opacity: 1; }
6809
+
6810
+ .premium-woo-skin-grid-1 .premium-woo-qv-btn,
6811
+ .premium-woo-skin-grid-3 .premium-woo-qv-btn,
6812
+ .premium-woo-skin-grid-4 .premium-woo-qv-btn {
6813
+ position: absolute;
6814
+ bottom: 0;
6815
+ left: 0;
6816
+ width: 100%;
6817
+ text-align: center;
6818
+ padding: 5px;
6819
+ background: rgba(2, 2, 2, 0.5);
6820
+ color: #fff;
6821
+ -webkit-transition: all 0.3s ease-in-out;
6822
+ transition: all 0.3s ease-in-out;
6823
+ z-index: 2;
6824
+ -webkit-transform: translateY(100%);
6825
+ -ms-transform: translateY(100%);
6826
+ transform: translateY(100%); }
6827
+
6828
+ .premium-woo-skin-grid-4 .premium-woo-qv-btn {
6829
+ -webkit-transition-delay: 0.1s;
6830
+ transition-delay: 0.1s; }
6831
+
6832
+ .premium-woo-skin-grid-1 .premium-woo-qv-icon,
6833
+ .premium-woo-skin-grid-3 .premium-woo-qv-icon,
6834
+ .premium-woo-skin-grid-4 .premium-woo-qv-icon,
6835
+ .premium-woo-skin-grid-6 .premium-woo-qv-icon {
6836
+ margin-left: 0.5em; }
6837
+
6838
+ .premium-woo-product-thumbnail:hover .premium-woo-qv-btn-translate {
6839
+ -webkit-transform: translateY(0);
6840
+ -ms-transform: translateY(0);
6841
+ transform: translateY(0); }
6842
+
6843
+ .premium-woo-product-wrapper .premium-woo-qv-data {
6844
+ position: absolute;
6845
+ top: 0;
6846
+ left: 0;
6847
+ width: 100%;
6848
+ height: 100%;
6849
+ z-index: 1;
6850
+ overflow: hidden;
6851
+ cursor: pointer; }
6852
+
6853
+ /**
6854
+ * Skin 1,4
6855
+ */
6856
+ .premium-woo-skin-grid-1 .premium-woo-product-actions-wrapper,
6857
+ .premium-woo-skin-grid-4 .premium-woo-product-actions-wrapper {
6858
+ position: absolute;
6859
+ top: 0.7em;
6860
+ right: 1em;
6861
+ -webkit-transform: translate3d(15px, 0, 0);
6862
+ transform: translate3d(15px, 0, 0);
6863
+ -webkit-transition: all 0.3s ease-in-out;
6864
+ transition: all 0.3s ease-in-out;
6865
+ opacity: 0;
6866
+ z-index: 9; }
6867
+
6868
+ .premium-woocommerce .premium-woo-product-actions-wrapper .premium-woo-cart-btn {
6869
+ position: relative;
6870
+ display: block;
6871
+ margin: 0 0 3px;
6872
+ background: #fff;
6873
+ text-align: center;
6874
+ outline: 0;
6875
+ -webkit-transition: all 0.3s ease-in-out;
6876
+ transition: all 0.3s ease-in-out; }
6877
+
6878
+ .premium-woocommerce .premium-woo-product-actions-wrapper .premium-woo-add-cart-icon {
6879
+ display: block;
6880
+ color: #54595f;
6881
+ width: 30px;
6882
+ line-height: 30px;
6883
+ height: 30px;
6884
+ cursor: pointer;
6885
+ -webkit-transition: all 0.3s ease-in-out;
6886
+ transition: all 0.3s ease-in-out; }
6887
+
6888
+ .premium-woo-skin-grid-1 li.product:hover .premium-woo-product-actions-wrapper,
6889
+ .premium-woo-skin-grid-4 li.product:hover .premium-woo-product-actions-wrapper {
6890
+ -webkit-transform: translate3d(5px, 0, 0);
6891
+ transform: translate3d(5px, 0, 0);
6892
+ opacity: 1; }
6893
+
6894
+ .premium-woocommerce .premium-woo-cart-btn.adding .premium-woo-add-cart-icon {
6895
+ -webkit-animation: spin 2s linear infinite;
6896
+ animation: spin 2s linear infinite; }
6897
+
6898
+ .premium-woocommerce .premium-woo-cart-btn.adding .premium-woo-add-cart-icon::before {
6899
+ content: "\f013"; }
6900
+
6901
+ .premium-woocommerce .premium-woo-cart-btn.added .premium-woo-add-cart-icon::before {
6902
+ content: "\f00c"; }
6903
+
6904
+ /**
6905
+ * Skin 2
6906
+ */
6907
+ .premium-woo-skin-grid-2 li.product .premium-woo-products-details-wrap {
6908
+ position: absolute;
6909
+ background: #fff;
6910
+ bottom: 0;
6911
+ left: 0;
6912
+ width: 100%;
6913
+ z-index: 2;
6914
+ padding: 0;
6915
+ opacity: 0;
6916
+ -webkit-transition: opacity 0.2s, -webkit-transform 0.4s;
6917
+ transition: opacity 0.2s, -webkit-transform 0.4s;
6918
+ transition: transform 0.4s, opacity 0.2s;
6919
+ transition: transform 0.4s, opacity 0.2s, -webkit-transform 0.4s;
6920
+ -webkit-transform: translateZ(0) translateY(5px);
6921
+ transform: translateZ(0) translateY(5px); }
6922
+
6923
+ .premium-woo-skin-grid-2 .premium-woo-product-details {
6924
+ padding: 15px 0; }
6925
+
6926
+ .premium-woo-skin-grid-2 li.product:hover .premium-woo-products-details-wrap {
6927
+ opacity: 1;
6928
+ -webkit-transform: translateZ(0) translateY(0);
6929
+ transform: translateZ(0) translateY(0); }
6930
+
6931
+ .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper {
6932
+ position: static;
6933
+ -js-display: flex;
6934
+ display: -webkit-box;
6935
+ display: -webkit-flex;
6936
+ display: -moz-box;
6937
+ display: -ms-flexbox;
6938
+ display: flex;
6939
+ -webkit-box-orient: horizontal;
6940
+ -webkit-box-direction: reverse;
6941
+ -webkit-flex-direction: row-reverse;
6942
+ -moz-box-orient: horizontal;
6943
+ -moz-box-direction: reverse;
6944
+ -ms-flex-direction: row-reverse;
6945
+ flex-direction: row-reverse; }
6946
+
6947
+ .premium-woo-skin-grid-2 .premium-woo-product-actions-wrapper > * {
6948
+ -webkit-box-flex: 1;
6949
+ -webkit-flex: 1;
6950
+ -moz-box-flex: 1;
6951
+ -ms-flex: 1;
6952
+ flex: 1;
6953
+ min-width: 50%; }
6954
+
6955
+ .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper .button {
6956
+ -js-display: flex;
6957
+ display: -webkit-box;
6958
+ display: -webkit-flex;
6959
+ display: -moz-box;
6960
+ display: -ms-flexbox;
6961
+ display: flex;
6962
+ margin: 0;
6963
+ text-align: center;
6964
+ -webkit-box-pack: center;
6965
+ -webkit-justify-content: center;
6966
+ -moz-box-pack: center;
6967
+ -ms-flex-pack: center;
6968
+ justify-content: center;
6969
+ -webkit-box-align: center;
6970
+ -webkit-align-items: center;
6971
+ -moz-box-align: center;
6972
+ -ms-flex-align: center;
6973
+ align-items: center; }
6974
+
6975
+ .premium-woo-skin-grid-2 li.product .premium-woo-product-actions-wrapper .premium-woo-qv-btn {
6976
+ background-color: #54595f; }
6977
+
6978
+ /**
6979
+ * Skin 4
6980
+ */
6981
+ .premium-woo-skin-grid-4 li.product .premium-woo-products-details-wrap {
6982
+ position: absolute;
6983
+ left: 0;
6984
+ right: 0;
6985
+ top: 50%;
6986
+ -webkit-transform: scale(0.9) translateZ(0) translateY(-50%);
6987
+ transform: scale(0.9) translateZ(0) translateY(-50%);
6988
+ text-align: center;
6989
+ z-index: 2;
6990
+ opacity: 0;
6991
+ -webkit-transition: opacity 0.5s, -webkit-transform 0.3s;
6992
+ transition: opacity 0.5s, -webkit-transform 0.3s;
6993
+ transition: opacity 0.5s, transform 0.3s;
6994
+ transition: opacity 0.5s, transform 0.3s, -webkit-transform 0.3s; }
6995
+
6996
+ .premium-woo-skin-grid-4 li.product .premium-woo-product-overlay,
6997
+ .premium-woo-skin-grid-8 li.product .premium-woo-product-overlay {
6998
+ position: absolute;
6999
+ top: 0;
7000
+ left: 0;
7001
+ width: 100%;
7002
+ height: 100%;
7003
+ opacity: 0;
7004
+ visibility: hidden;
7005
+ background-color: rgba(27, 27, 23, 0.3);
7006
+ -webkit-transition: all 0.25s ease-in-out;
7007
+ transition: all 0.25s ease-in-out; }
7008
+
7009
+ .premium-woo-skin-grid-4 li.product:hover .premium-woo-product-overlay,
7010
+ .premium-woo-skin-grid-8 li.product:hover .premium-woo-product-overlay {
7011
+ opacity: 1;
7012
+ visibility: visible;
7013
+ z-index: 1; }
7014
+
7015
+ .premium-woo-skin-grid-4 li.product:hover .premium-woo-products-details-wrap {
7016
+ -webkit-transform: scale(1) translateZ(0) translateY(-50%);
7017
+ transform: scale(1) translateZ(0) translateY(-50%);
7018
+ opacity: 1; }
7019
+
7020
+ /**
7021
+ * Skin 5
7022
+ */
7023
+ .premium-woo-skin-grid-5 li.product .premium-woo-product-actions-wrapper {
7024
+ -js-display: flex;
7025
+ display: -webkit-box;
7026
+ display: -webkit-flex;
7027
+ display: -moz-box;
7028
+ display: -ms-flexbox;
7029
+ display: flex; }
7030
+ .premium-woo-skin-grid-5 li.product .premium-woo-product-actions-wrapper .premium-woo-qv-btn {
7031
+ -js-display: flex;
7032
+ display: -webkit-box;
7033
+ display: -webkit-flex;
7034
+ display: -moz-box;
7035
+ display: -ms-flexbox;
7036
+ display: flex;
7037
+ -webkit-box-align: center;
7038
+ -webkit-align-items: center;
7039
+ -moz-box-align: center;
7040
+ -ms-flex-align: center;
7041
+ align-items: center;
7042
+ background-color: #54595f;
7043
+ padding: 10px;
7044
+ -webkit-transition: all 0.25s ease 0s;
7045
+ transition: all 0.25s ease 0s; }
7046
+
7047
+ .premium-woo-skin-grid-5 li.product .premium-woo-products-details-wrap {
7048
+ width: 75%; }
7049
+
7050
+ .premium-woo-skin-grid-5 .premium-woo-product-wrapper {
7051
+ -js-display: flex;
7052
+ display: -webkit-box;
7053
+ display: -webkit-flex;
7054
+ display: -moz-box;
7055
+ display: -ms-flexbox;
7056
+ display: flex;
7057
+ -webkit-box-align: center;
7058
+ -webkit-align-items: center;
7059
+ -moz-box-align: center;
7060
+ -ms-flex-align: center;
7061
+ align-items: center; }
7062
+
7063
+ .premium-woo-product-align-right .premium-woo-skin-grid-5 .premium-woo-product-actions-wrapper {
7064
+ -webkit-box-pack: end;
7065
+ -webkit-justify-content: flex-end;
7066
+ -moz-box-pack: end;
7067
+ -ms-flex-pack: end;
7068
+ justify-content: flex-end; }
7069
+
7070
+ .premium-woo-product-align-center .premium-woo-skin-grid-5 .premium-woo-product-actions-wrapper {
7071
+ -webkit-box-pack: center;
7072
+ -webkit-justify-content: center;
7073
+ -moz-box-pack: center;
7074
+ -ms-flex-pack: center;
7075
+ justify-content: center; }
7076
+
7077
+ /**
7078
+ * Skin 6
7079
+ */
7080
+ .premium-woo-skin-grid-6 .premium-woo-qv-btn {
7081
+ position: absolute;
7082
+ top: 50%;
7083
+ left: 50%;
7084
+ min-width: 40%;
7085
+ text-align: center;
7086
+ padding: 5px;
7087
+ background: rgba(2, 2, 2, 0.5);
7088
+ color: #fff;
7089
+ -webkit-transform: translate(-50%, -50%);
7090
+ -ms-transform: translate(-50%, -50%);
7091
+ transform: translate(-50%, -50%);
7092
+ opacity: 0;
7093
+ visibility: hidden;
7094
+ -webkit-transition: all 0.3s ease-in-out;
7095
+ transition: all 0.3s ease-in-out;
7096
+ cursor: pointer;
7097
+ z-index: 2; }
7098
+
7099
+ .premium-woo-skin-grid-6 li.product:hover .premium-woo-qv-btn {
7100
+ opacity: 1;
7101
+ visibility: visible; }
7102
+
7103
+ .premium-woo-product-align-right .premium-woo-skin-grid-6 li.product .premium-woo-product-info .star-rating,
7104
+ .premium-woo-product-align-left .premium-woo-skin-grid-6 li.product .premium-woo-product-info .star-rating,
7105
+ .premium-woo-product-align-right .premium-woo-skin-grid-7 li.product .premium-woo-product-info .star-rating,
7106
+ .premium-woo-product-align-left .premium-woo-skin-grid-7 li.product .premium-woo-product-info .star-rating {
7107
+ margin: 0; }
7108
+
7109
+ .premium-woo-skin-grid-6 li.product .premium-woo-product-info {
7110
+ -js-display: flex;
7111
+ display: -webkit-box;
7112
+ display: -webkit-flex;
7113
+ display: -moz-box;
7114
+ display: -ms-flexbox;
7115
+ display: flex;
7116
+ -webkit-box-pack: justify;
7117
+ -webkit-justify-content: space-between;
7118
+ -moz-box-pack: justify;
7119
+ -ms-flex-pack: justify;
7120
+ justify-content: space-between; }
7121
+
7122
+ .premium-woo-product-align-center .premium-woocommerce li.product .premium-woo-product-info {
7123
+ -webkit-box-orient: vertical;
7124
+ -webkit-box-direction: normal;
7125
+ -webkit-flex-direction: column;
7126
+ -moz-box-orient: vertical;
7127
+ -moz-box-direction: normal;
7128
+ -ms-flex-direction: column;
7129
+ flex-direction: column; }
7130
+
7131
+ .premium-woo-product-align-right .premium-woocommerce li.product .premium-woo-product-info {
7132
+ -webkit-box-orient: horizontal;
7133
+ -webkit-box-direction: reverse;
7134
+ -webkit-flex-direction: row-reverse;
7135
+ -moz-box-orient: horizontal;
7136
+ -moz-box-direction: reverse;
7137
+ -ms-flex-direction: row-reverse;
7138
+ flex-direction: row-reverse; }
7139
+
7140
+ .premium-woo-skin-grid-6 li.product .premium-woo-product-gallery-images {
7141
+ -js-display: flex;
7142
+ display: -webkit-box;
7143
+ display: -webkit-flex;
7144
+ display: -moz-box;
7145
+ display: -ms-flexbox;
7146
+ display: flex;
7147
+ position: absolute;
7148
+ bottom: 10px;
7149
+ width: 100%;
7150
+ -webkit-box-pack: center;
7151
+ -webkit-justify-content: center;
7152
+ -moz-box-pack: center;
7153
+ -ms-flex-pack: center;
7154
+ justify-content: center; }
7155
+
7156
+ .premium-woo-product-gallery-images .premium-woo-product__gallery_image {
7157
+ width: 20%;
7158
+ margin: 0 0.2em;
7159
+ border: 2px solid #aaa;
7160
+ cursor: pointer; }
7161
+
7162
+ /**
7163
+ * Metro
7164
+ */
7165
+ /*.premium-woo-grid-style1 ul.products li.product {
7166
+ width: 25%;
7167
+ }*/
7168
+ .premium-woo-products-metro li.product .premium-woo-product-thumbnail img,
7169
+ .premium-woo-products-metro li.product .premium-woo-product-wrapper,
7170
+ .premium-woo-products-metro li.product .premium-woo-product-thumbnail,
7171
+ .premium-woo-products-metro li.product .woocommerce-LoopProduct-link {
7172
+ height: 100%; }
7173
+
7174
+ .premium-woo-products-metro ul.products li.product {
7175
+ margin-bottom: 0; }
7176
+
7177
+ .premium-woo-products-metro li.product .premium-woo-product-thumbnail img {
7178
+ -o-object-fit: cover;
7179
+ object-fit: cover; }
7180
+
7181
+ /*
7182
+ * Carousel
7183
+ */
7184
+ .premium-woo-hidden {
7185
+ opacity: 0;
7186
+ visibility: hidden; }
7187
+
7188
+ .premium-woocommerce:not(.premium-woo-skin-grid-7) .slick-arrow {
7189
+ -webkit-border-radius: 50%;
7190
+ border-radius: 50%; }
7191
+
7192
+ .premium-woocommerce ul.slick-dots {
7193
+ width: 100%; }
7194
+
7195
+ /*
7196
+ * Quick View Html/body
7197
+ */
7198
+ html.premium-woo-qv-opened,
7199
+ html.premium-woo-qv-opened body {
7200
+ overflow: hidden; }
7201
+
7202
+ /**
7203
+ * Quick View Modal
7204
+ */
7205
+ .premium-woo-quick-view-back {
7206
+ position: fixed;
7207
+ visibility: hidden;
7208
+ overflow: hidden;
7209
+ background: rgba(2, 2, 2, 0.5);
7210
+ opacity: 0;
7211
+ -webkit-transition: opacity 0.25s;
7212
+ transition: opacity 0.25s;
7213
+ z-index: 999; }
7214
+
7215
+ .premium-woo-quick-view-active {
7216
+ top: 0;
7217
+ left: 0;
7218
+ width: 100%;
7219
+ height: 100%;
7220
+ opacity: 1;
7221
+ visibility: visible; }
7222
+
7223
+ #premium-woo-quick-view-modal {
7224
+ position: fixed;
7225
+ visibility: hidden;
7226
+ opacity: 0;
7227
+ top: 0;
7228
+ left: 0;
7229
+ width: 100%;
7230
+ height: 100%;
7231
+ z-index: 1400;
7232
+ text-align: center;
7233
+ -webkit-transition: all 0.3s;
7234
+ transition: all 0.3s;
7235
+ overflow-x: hidden;
7236
+ overflow-y: auto; }
7237
+ #premium-woo-quick-view-modal.active {
7238
+ visibility: visible;
7239
+ opacity: 1; }
7240
+ #premium-woo-quick-view-modal.active .premium-woo-content-main {
7241
+ -webkit-transform: translateY(0);
7242
+ -ms-transform: translateY(0);
7243
+ transform: translateY(0);
7244
+ opacity: 1;
7245
+ width: 100%; }
7246
+ #premium-woo-quick-view-modal .premium-woo-content-main-wrapper {
7247
+ position: absolute;
7248
+ width: 100%;
7249
+ height: 100%;
7250
+ top: 0;
7251
+ left: 0;
7252
+ text-align: center;
7253
+ padding: 30px;
7254
+ -js-display: flex;
7255
+ display: -webkit-box;
7256
+ display: -webkit-flex;
7257
+ display: -moz-box;
7258
+ display: -ms-flexbox;
7259
+ display: flex;
7260
+ -webkit-box-align: center;
7261
+ -webkit-align-items: center;
7262
+ -moz-box-align: center;
7263
+ -ms-flex-align: center;
7264
+ align-items: center; }
7265
+ #premium-woo-quick-view-modal .premium-woo-content-main {
7266
+ position: relative;
7267
+ pointer-events: none;
7268
+ max-width: 100%;
7269
+ text-align: left;
7270
+ z-index: 1045;
7271
+ -webkit-transform: translateY(-30px);
7272
+ -ms-transform: translateY(-30px);
7273
+ transform: translateY(-30px);
7274
+ opacity: 0;
7275
+ -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
7276
+ transition: opacity 0.3s, -webkit-transform 0.5s;
7277
+ transition: transform 0.5s, opacity 0.3s;
7278
+ transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
7279
+ margin: 0 auto; }
7280
+ #premium-woo-quick-view-modal .premium-woo-lightbox-content {
7281
+ position: relative;
7282
+ display: table;
7283
+ pointer-events: auto;
7284
+ background-color: #fff;
7285
+ max-width: 975px;
7286
+ margin: 20px auto;
7287
+ -webkit-transform: translateZ(0);
7288
+ transform: translateZ(0);
7289
+ -webkit-box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.15);
7290
+ box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.15);
7291
+ overflow: hidden; }
7292
+ #premium-woo-quick-view-modal .summary {
7293
+ width: 50%;
7294
+ margin: 0;
7295
+ padding: 30px;
7296
+ float: left;
7297
+ -webkit-box-sizing: border-box;
7298
+ -moz-box-sizing: border-box;
7299
+ box-sizing: border-box; }
7300
+ #premium-woo-quick-view-modal .summary .quantity {
7301
+ min-width: auto; }
7302
+ #premium-woo-quick-view-modal .summary .quantity input.qty {
7303
+ width: 54px;
7304
+ -webkit-appearance: button;
7305
+ -moz-appearance: button;
7306
+ appearance: button; }
7307
+ #premium-woo-quick-view-modal .summary .quantity input[type="number"]::-webkit-inner-spin-button,
7308
+ #premium-woo-quick-view-modal .summary .quantity input[type="number"]::-webkit-outer-spin-button {
7309
+ display: unset; }
7310
+ #premium-woo-quick-view-modal .woocommerce-product-details__short-description p {
7311
+ margin: 0; }
7312
+
7313
+ #premium-woo-quick-view-close {
7314
+ position: absolute;
7315
+ font-size: 22px;
7316
+ top: 10px;
7317
+ right: 10px;
7318
+ width: 22px;
7319
+ height: 22px;
7320
+ line-height: 22px;
7321
+ opacity: 0.7;
7322
+ text-align: center;
7323
+ z-index: 2;
7324
+ color: #000; }
7325
+
7326
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider {
7327
+ position: relative; }
7328
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider li {
7329
+ list-style: none; }
7330
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav {
7331
+ margin: 0;
7332
+ padding: 0;
7333
+ width: 100%;
7334
+ position: absolute;
7335
+ bottom: 10px;
7336
+ text-align: center; }
7337
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li {
7338
+ margin: 0 6px;
7339
+ display: inline-block;
7340
+ vertical-align: middle; }
7341
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a {
7342
+ width: 11px;
7343
+ height: 11px;
7344
+ display: block;
7345
+ background: #666;
7346
+ background: rgba(0, 0, 0, 0.5);
7347
+ cursor: pointer;
7348
+ text-indent: -9999px;
7349
+ -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
7350
+ box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
7351
+ -webkit-border-radius: 20px;
7352
+ border-radius: 20px; }
7353
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a.flex-active {
7354
+ background: rgba(0, 0, 0, 0.9);
7355
+ cursor: default; }
7356
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-control-nav li a:focus {
7357
+ outline: none; }
7358
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider img {
7359
+ -o-object-fit: cover;
7360
+ object-fit: cover; }
7361
+
7362
+ #premium-woo-quick-view-content div.images {
7363
+ width: 50%;
7364
+ float: left;
7365
+ opacity: 1 !important;
7366
+ margin: 0; }
7367
+
7368
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav {
7369
+ margin: 0;
7370
+ padding: 0;
7371
+ list-style: none; }
7372
+
7373
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav a {
7374
+ text-decoration: none;
7375
+ display: block;
7376
+ width: 14px;
7377
+ height: 32px;
7378
+ font-size: 32px;
7379
+ line-height: 32px;
7380
+ margin: -20px 0 0;
7381
+ position: absolute;
7382
+ top: 50%;
7383
+ z-index: 10;
7384
+ overflow: hidden;
7385
+ cursor: pointer;
7386
+ color: rgba(0, 0, 0, 0.8);
7387
+ text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
7388
+ -webkit-transition: all 0.3s ease-in-out;
7389
+ transition: all 0.3s ease-in-out; }
7390
+
7391
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next,
7392
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev {
7393
+ display: inline-block;
7394
+ font-family: "Font Awesome 5 Free";
7395
+ font-weight: 900;
7396
+ text-rendering: auto;
7397
+ -webkit-font-smoothing: antialiased;
7398
+ -moz-osx-font-smoothing: grayscale; }
7399
+
7400
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev {
7401
+ left: 10px; }
7402
+
7403
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next {
7404
+ right: 10px; }
7405
+
7406
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-prev::before {
7407
+ content: "\f104"; }
7408
+
7409
+ #premium-woo-quick-view-modal .premium-woo-qv-image-slider .flex-direction-nav .flex-next::before {
7410
+ content: "\f105"; }
7411
+
7412
+ .premium-woocommerce li.product .added_to_cart.wc-forward {
7413
+ display: none; }
7414
+
7415
+ .premium-woo-atc-button .add_to_cart_button span {
7416
+ -webkit-animation: spin 2s linear infinite;
7417
+ animation: spin 2s linear infinite;
7418
+ margin-left: 5px;
7419
+ vertical-align: baseline; }
7420
+
7421
+ @media (min-width: 545px) {
7422
+ #premium-woo-quick-view-content div.summary {
7423
+ content: "544";
7424
+ overflow-y: auto; } }
7425
+
7426
+ @media (max-width: 544px) {
7427
+ #premium-woo-quick-view-content .premium-woo-lightbox-content {
7428
+ display: block; }
7429
+ #premium-woo-quick-view-content div.images,
7430
+ #premium-woo-quick-view-content div.summary {
7431
+ width: 100%;
7432
+ float: none; } }
7433
+
7434
+ /*
7435
+ * Common Title/Dual Heading
7436
+ */
7437
+ .premium-title-bg-text:before {
7438
+ position: absolute;
7439
+ content: attr(data-background);
7440
+ top: 0;
7441
+ left: 0;
7442
+ text-align: left; }
7443
+
7444
+ .premium-bg-text-yes .elementor-widget-container:before {
7445
+ position: absolute;
7446
+ top: 0;
7447
+ left: 0;
7448
+ text-align: left; }
7449
+
7450
+ .premium-mask-yes .premium-dual-header-first-clip .premium-dual-header-first-span .premium-mask-span,
7451
+ .premium-mask-yes .premium-dual-header-second-clip .premium-mask-span {
7452
+ background: inherit; }
7453
+
7454
+ .premium-mask-yes .premium-mask-span {
7455
+ position: relative;
7456
+ overflow: hidden;
7457
+ -js-display: inline-flex !important;
7458
+ display: -webkit-inline-box !important;
7459
+ display: -webkit-inline-flex !important;
7460
+ display: -moz-inline-box !important;
7461
+ display: -ms-inline-flexbox !important;
7462
+ display: inline-flex !important; }
7463
+ .premium-mask-yes .premium-mask-span::after {
7464
+ content: "";
7465
+ position: absolute;
7466
+ top: 0;
7467
+ right: 0px;
7468
+ width: 100%;
7469
+ height: 100%;
7470
+ background-color: currentColor;
7471
+ -webkit-backface-visibility: visible;
7472
+ backface-visibility: visible; }
7473
+
7474
+ .premium-mask-active.premium-mask-tr .premium-mask-span::after {
7475
+ -webkit-animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
7476
+ animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
7477
+ -webkit-transform: translateX(-103%);
7478
+ -ms-transform: translateX(-103%);
7479
+ transform: translateX(-103%); }
7480
+
7481
+ .premium-mask-active.premium-mask-tl .premium-mask-span::after {
7482
+ -webkit-animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
7483
+ animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
7484
+ -webkit-transform: translateX(103%);
7485
+ -ms-transform: translateX(103%);
7486
+ transform: translateX(103%); }
7487
+
7488
+ .premium-mask-active.premium-mask-tb .premium-mask-span::after {
7489
+ -webkit-animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
7490
+ animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
7491
+ -webkit-transform: translateY(-103%);
7492
+ -ms-transform: translateY(-103%);
7493
+ transform: translateY(-103%); }
7494
+
7495
+ .premium-mask-active.premium-mask-tt .premium-mask-span::after {
7496
+ -webkit-animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
7497
+ animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
7498
+ -webkit-transform: translateY(103%);
7499
+ -ms-transform: translateY(103%);
7500
+ transform: translateY(103%); }
7501
+
7502
+ @-webkit-keyframes pa-mask-tr {
7503
+ 0% {
7504
+ -webkit-transform: translateX(0%);
7505
+ transform: translateX(0%); }
7506
+ 100% {
7507
+ -webkit-transform: translateX(103%);
7508
+ transform: translateX(103%); } }
7509
+
7510
+ @keyframes pa-mask-tr {
7511
+ 0% {
7512
+ -webkit-transform: translateX(0%);
7513
+ transform: translateX(0%); }
7514
+ 100% {
7515
+ -webkit-transform: translateX(103%);
7516
+ transform: translateX(103%); } }
7517
+
7518
+ @-webkit-keyframes pa-mask-tl {
7519
+ 0% {
7520
+ -webkit-transform: translateX(0%);
7521
+ transform: translateX(0%); }
7522
+ 100% {
7523
+ -webkit-transform: translateX(-103%);
7524
+ transform: translateX(-103%); } }
7525
+
7526
+ @keyframes pa-mask-tl {
7527
+ 0% {
7528
+ -webkit-transform: translateX(0%);
7529
+ transform: translateX(0%); }
7530
+ 100% {
7531
+ -webkit-transform: translateX(-103%);
7532
+ transform: translateX(-103%); } }
7533
+
7534
+ @-webkit-keyframes pa-mask-tb {
7535
+ 0% {
7536
+ -webkit-transform: translateY(0%);
7537
+ transform: translateY(0%); }
7538
+ 100% {
7539
+ -webkit-transform: translateY(103%);
7540
+ transform: translateY(103%); } }
7541
+
7542
+ @keyframes pa-mask-tb {
7543
+ 0% {
7544
+ -webkit-transform: translateY(0%);
7545
+ transform: translateY(0%); }
7546
+ 100% {
7547
+ -webkit-transform: translateY(103%);
7548
+ transform: translateY(103%); } }
7549
+
7550
+ @-webkit-keyframes pa-mask-tt {
7551
+ 0% {
7552
+ -webkit-transform: translateY(0%);
7553
+ transform: translateY(0%); }
7554
+ 100% {
7555
+ -webkit-transform: translateY(-103%);
7556
+ transform: translateY(-103%); } }
7557
+
7558
+ @keyframes pa-mask-tt {
7559
+ 0% {
7560
+ -webkit-transform: translateY(0%);
7561
+ transform: translateY(0%); }
7562
+ 100% {
7563
+ -webkit-transform: translateY(-103%);
7564
+ transform: translateY(-103%); } }
7565
+
7566
+ /*
7567
+ * Common Buttons Style.
7568
+ */
7569
+ .premium-button .premium-lottie-animation,
7570
+ .premium-image-button .premium-lottie-animation {
7571
+ -js-display: flex;
7572
+ display: -webkit-box;
7573
+ display: -webkit-flex;
7574
+ display: -moz-box;
7575
+ display: -ms-flexbox;
7576
+ display: flex; }
7577
+
7578
+ .premium-button svg,
7579
+ .premium-image-button svg {
7580
+ width: 30px;
7581
+ height: 30px; }
7582
+
7583
+ .premium-btn-sm,
7584
+ .premium-btn-md,
7585
+ .premium-btn-lg,
7586
+ .premium-btn-block {
7587
+ background-color: #eee;
7588
+ color: #042551;
7589
+ margin: 0px;
7590
+ text-decoration: none; }
7591
+ .premium-btn-sm:hover,
7592
+ .premium-btn-md:hover,
7593
+ .premium-btn-lg:hover,
7594
+ .premium-btn-block:hover {
7595
+ background-color: #54595f;
7596
+ color: #eee; }
7597
+
7598
+ .premium-btn-sm {
7599
+ padding: 12px 24px;
7600
+ font-size: 14px;
7601
+ line-height: 1; }
7602
+
7603
+ .premium-btn-md {
7604
+ padding: 14px 26px;
7605
+ font-size: 16px;
7606
+ line-height: 1.2; }
7607
+
7608
+ .premium-btn-lg {
7609
+ padding: 16px 28px;
7610
+ font-size: 18px;
7611
+ line-height: 1.3333; }
7612
+
7613
+ .premium-btn-block {
7614
+ font-size: 18px;
7615
+ line-height: 1;
7616
+ padding: 20px 0px;
7617
+ width: 100%;
7618
+ text-align: center; }
7619
+
7620
+ .premium-button-text {
7621
+ display: inline-block;
7622
+ width: 100%; }
7623
+
7624
+ /*
7625
+ * Common Button/Image Button Mouse Detect Effect.
7626
+ */
7627
+ .premium-mouse-detect-yes .premium-button-style6 .premium-button-style6-bg {
7628
+ position: absolute;
7629
+ z-index: 0;
7630
+ top: 0;
7631
+ left: 0;
7632
+ width: 0px;
7633
+ height: 0px;
7634
+ -webkit-border-radius: 50%;
7635
+ border-radius: 50%;
7636
+ display: block;
7637
+ -webkit-transform: translate(-50%, -50%);
7638
+ -ms-transform: translate(-50%, -50%);
7639
+ transform: translate(-50%, -50%);
7640
+ -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
7641
+ transition: width 0.4s ease-in-out, height 0.4s ease-in-out; }
7642
+
7643
+ .premium-mouse-detect-yes .premium-button-style6:hover .premium-button-style6-bg {
7644
+ width: 225%;
7645
+ height: 560px; }
7646
+
7647
+ .premium-mouse-detect-yes .premium-button-style6:before {
7648
+ width: 0;
7649
+ height: 0; }
7650
+
7651
+ /** Loader */
7652
+ .premium-loader {
7653
+ border: 3px solid #f3f3f3;
7654
+ border-top-width: 3px;
7655
+ border-top-style: solid;
7656
+ border-top-color: #f3f3f3;
7657
+ -webkit-border-radius: 50%;
7658
+ border-radius: 50%;
7659
+ border-top: 3px solid;
7660
+ border-top-color: #bbb;
7661
+ width: 30px;
7662
+ height: 30px;
7663
+ -webkit-animation: spin 2s linear infinite;
7664
+ animation: spin 2s linear infinite;
7665
+ margin: 0 auto; }
7666
+
7667
+ /** Common Animation */
7668
+ @-webkit-keyframes spin {
7669
+ 0% {
7670
+ -webkit-transform: rotate(0deg);
7671
+ transform: rotate(0deg); }
7672
+ 100% {
7673
+ -webkit-transform: rotate(360deg);
7674
+ transform: rotate(360deg); } }
7675
+ @keyframes spin {
7676
+ 0% {
7677
+ -webkit-transform: rotate(0deg);
7678
+ transform: rotate(0deg); }
7679
+ 100% {
7680
+ -webkit-transform: rotate(360deg);
7681
+ transform: rotate(360deg); } }
7682
+
7683
+ /**Notice*/
7684
+ .premium-error-notice {
7685
+ width: 100%;
7686
+ padding: 10px;
7687
+ color: #b94a48;
7688
+ background-color: #f2dede;
7689
+ border-color: #eed3d7;
7690
+ text-align: center; }
assets/frontend/css/premium-banner.css CHANGED
@@ -1,1257 +1,1257 @@
1
- /**************** Premium Banner ****************/
2
- /************************************************/
3
- .elementor-widget-premium-addon-banner {
4
- overflow: hidden; }
5
-
6
- .premium-banner-ib {
7
- display: block;
8
- position: relative;
9
- z-index: 1;
10
- overflow: hidden;
11
- margin: 0;
12
- text-align: center;
13
- -webkit-box-sizing: border-box;
14
- -moz-box-sizing: border-box;
15
- box-sizing: border-box; }
16
- .premium-banner-ib img {
17
- display: block;
18
- position: relative; }
19
-
20
- .premium-banner-img-wrap {
21
- -js-display: flex;
22
- display: -webkit-box;
23
- display: -webkit-flex;
24
- display: -moz-box;
25
- display: -ms-flexbox;
26
- display: flex;
27
- height: 100%; }
28
- .premium-banner-img-wrap .premium-banner-ib-img {
29
- -webkit-flex-shrink: 0;
30
- -ms-flex-negative: 0;
31
- flex-shrink: 0; }
32
-
33
- .premium-banner-ib-desc .premium-banner-read-more {
34
- z-index: 100; }
35
-
36
- .elementor-widget-premium-addon-banner .premium-banner-ib-title {
37
- background: transparent; }
38
-
39
- .premium-banner-ib *,
40
- .premium-banner-ib .premium-banner-ib-desc {
41
- -webkit-box-sizing: border-box;
42
- -moz-box-sizing: border-box;
43
- box-sizing: border-box; }
44
-
45
- .premium-banner-ib img {
46
- min-width: 100%;
47
- max-width: 100%;
48
- -webkit-transition: opacity 0.35s;
49
- transition: opacity 0.35s; }
50
-
51
- .premium-banner-ib .premium-banner-ib-desc {
52
- padding: 15px;
53
- -webkit-backface-visibility: hidden;
54
- backface-visibility: hidden;
55
- -webkit-box-sizing: border-box;
56
- -moz-box-sizing: border-box;
57
- box-sizing: border-box;
58
- position: absolute;
59
- top: 0;
60
- left: 0;
61
- width: 100%;
62
- height: 100%; }
63
-
64
- .premium-banner-ib .premium-banner-ib-link {
65
- position: absolute;
66
- top: 0;
67
- left: 0;
68
- width: 100%;
69
- height: 100%;
70
- z-index: 1000;
71
- text-indent: 200%;
72
- white-space: nowrap;
73
- font-size: 0;
74
- opacity: 0; }
75
-
76
- .premium-banner-ib a.premium-banner-ib-link {
77
- display: block;
78
- background: 0 0; }
79
-
80
- .premium-banner-animation1 img {
81
- width: -webkit-calc(100% + 50px) !important;
82
- width: calc(100% + 50px) !important;
83
- max-width: -webkit-calc(100% + 50px) !important;
84
- max-width: calc(100% + 50px) !important;
85
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
86
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
87
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
88
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
89
- -webkit-transform: translate3d(-40px, 0, 0);
90
- transform: translate3d(-40px, 0, 0); }
91
-
92
- .premium-banner-animation2 .premium-banner-ib-title {
93
- padding: 15px; }
94
-
95
- .premium-banner-animation1 .premium-banner-ib-desc {
96
- top: auto;
97
- bottom: 0;
98
- min-height: 25%;
99
- height: auto;
100
- max-height: 100%;
101
- text-align: left; }
102
-
103
- .premium-banner-animation1 .premium-banner-ib-content,
104
- .premium-banner-animation1 .premium-banner-ib-title,
105
- .premium-banner-animation1 .premium-banner-read-more {
106
- -webkit-transform: translate3d(0, 40px, 0);
107
- transform: translate3d(0, 40px, 0);
108
- -webkit-transition-delay: 0.05s;
109
- transition-delay: 0.05s;
110
- -webkit-transition-duration: 0.35s;
111
- transition-duration: 0.35s; }
112
-
113
- .premium-banner-animation1 .premium-banner-ib-title {
114
- -webkit-transition: -webkit-transform 0.35s;
115
- transition: -webkit-transform 0.35s;
116
- transition: transform 0.35s;
117
- transition: transform 0.35s, -webkit-transform 0.35s; }
118
-
119
- .premium-banner-animation1 .premium-banner-ib-content,
120
- .premium-banner-animation1 .premium-banner-read-more {
121
- margin-top: 10px;
122
- opacity: 0;
123
- -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
124
- transition: opacity 0.2s, -webkit-transform 0.35s;
125
- transition: opacity 0.2s, transform 0.35s;
126
- transition: opacity 0.2s, transform 0.35s, -webkit-transform 0.35s; }
127
-
128
- .premium-banner-animation1:hover .premium-banner-ib-content,
129
- .premium-banner-animation1.active .premium-banner-ib-content,
130
- .premium-banner-animation1:hover .premium-banner-read-more,
131
- .premium-banner-animation1.active .premium-banner-read-more {
132
- opacity: 1;
133
- -webkit-transition-delay: 0.05s;
134
- transition-delay: 0.05s;
135
- -webkit-transition-duration: 0.35s;
136
- transition-duration: 0.35s; }
137
-
138
- .premium-banner-animation1:hover .premium-banner-ib-content,
139
- .premium-banner-animation1.active .premium-banner-ib-content,
140
- .premium-banner-animation1:hover .premium-banner-read-more,
141
- .premium-banner-animation1.active .premium-banner-read-more,
142
- .premium-banner-animation1:hover .premium-banner-ib-title,
143
- .premium-banner-animation1.active .premium-banner-ib-title,
144
- .premium-banner-animation1:hover img,
145
- .premium-banner-animation1.active img {
146
- -webkit-transform: translate3d(0, 0, 0);
147
- transform: translate3d(0, 0, 0);
148
- -webkit-transition-delay: 0.05s;
149
- transition-delay: 0.05s;
150
- -webkit-transition-duration: 0.35s;
151
- transition-duration: 0.35s; }
152
-
153
- .premium-banner-animation1.zoomout img,
154
- .premium-banner-animation1.scale img {
155
- -webkit-transform: translate3d(-40px, 0, 0) scale(1.1);
156
- transform: translate3d(-40px, 0, 0) scale(1.1); }
157
-
158
- .premium-banner-ib.sepia img {
159
- -webkit-filter: sepia(30%);
160
- filter: sepia(30%); }
161
-
162
- .premium-banner-ib.bright img {
163
- -webkit-filter: brightness(1);
164
- filter: brightness(1); }
165
-
166
- .premium-banner-ib.sepia:hover img {
167
- -webkit-filter: sepia(0%);
168
- filter: sepia(0%); }
169
-
170
- .premium-banner-ib.bright:hover img {
171
- -webkit-filter: brightness(1.2);
172
- filter: brightness(1.2); }
173
-
174
- .premium-banner-animation1.premium-banner-min-height img,
175
- .premium-banner-animation2.premium-banner-min-height img,
176
- .premium-banner-animation4.premium-banner-min-height img,
177
- .premium-banner-animation5.premium-banner-min-height img,
178
- .premium-banner-animation6.premium-banner-min-height img,
179
- .premium-banner-animation13.premium-banner-min-height img {
180
- height: auto; }
181
-
182
- .premium-banner-animation2 img {
183
- width: 100%; }
184
-
185
- .premium-banner-animation2 .premium-banner-ib-desc::before {
186
- position: absolute;
187
- content: "";
188
- top: 0;
189
- left: 0;
190
- width: 100%;
191
- height: 100%;
192
- opacity: 0;
193
- -webkit-transform: translate3d(0, 50%, 0);
194
- transform: translate3d(0, 50%, 0); }
195
-
196
- .premium-banner-animation2 .premium-banner-ib-title {
197
- position: absolute;
198
- top: 50%;
199
- left: 0;
200
- width: 100%;
201
- -webkit-transition: color 0.35s, -webkit-transform 0.35s;
202
- transition: color 0.35s, -webkit-transform 0.35s;
203
- transition: transform 0.35s, color 0.35s;
204
- transition: transform 0.35s, color 0.35s, -webkit-transform 0.35s;
205
- -webkit-transform: translate3d(0, -50%, 0);
206
- transform: translate3d(0, -50%, 0); }
207
-
208
- .premium-banner-animation2 .premium-banner-ib-content,
209
- .premium-banner-animation2 .premium-banner-read-more,
210
- .premium-banner-animation2 .premium-banner-ib-desc::before {
211
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
212
- transition: opacity 0.35s, -webkit-transform 0.35s;
213
- transition: opacity 0.35s, transform 0.35s;
214
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
215
-
216
- .premium-banner-animation2 .premium-banner-ib-content,
217
- .premium-banner-animation2 .premium-banner-read-more {
218
- position: absolute;
219
- bottom: 0;
220
- left: 0;
221
- padding: 15px;
222
- width: 100%;
223
- max-height: 50%;
224
- opacity: 0;
225
- -webkit-transform: translate3d(0, 10px, 0);
226
- transform: translate3d(0, 10px, 0); }
227
-
228
- .premium-banner-animation2:hover .premium-banner-ib-title,
229
- .premium-banner-animation2.active .premium-banner-ib-title {
230
- -webkit-transform: translate3d(0, -40px, 0);
231
- transform: translate3d(0, -40px, 0); }
232
-
233
- .premium-banner-animation2:hover .premium-banner-read-more,
234
- .premium-banner-animation2.active .premium-banner-read-more,
235
- .premium-banner-animation2:hover .premium-banner-ib-desc::before,
236
- .premium-banner-animation2.active .premium-banner-ib-desc::before {
237
- opacity: 1;
238
- -webkit-transform: translate3d(0, 0, 0);
239
- transform: translate3d(0, 0, 0); }
240
-
241
- .premium-banner-animation2:hover .premium-banner-ib-content,
242
- .premium-banner-animation2.active .premium-banner-ib-content {
243
- opacity: 1;
244
- -webkit-transform: translate3d(0, -30px, 0);
245
- transform: translate3d(0, -30px, 0); }
246
-
247
- .premium-banner-animation3 .premium-banner-ib-title {
248
- position: absolute;
249
- bottom: 0;
250
- left: 0;
251
- padding: 15px;
252
- width: 100%;
253
- text-align: left;
254
- -webkit-transform: translate3d(0, -30px, 0);
255
- transform: translate3d(0, -30px, 0); }
256
-
257
- .premium-banner-animation3 .premium-banner-ib-desc::before,
258
- .premium-banner-animation3 .premium-banner-ib-title {
259
- -webkit-transition: -webkit-transform 0.35s;
260
- transition: -webkit-transform 0.35s;
261
- transition: transform 0.35s;
262
- transition: transform 0.35s, -webkit-transform 0.35s; }
263
-
264
- .premium-banner-animation3:hover .premium-banner-ib-desc::before,
265
- .premium-banner-animation3.active .premium-banner-ib-desc::before,
266
- .premium-banner-animation3:hover .premium-banner-ib-title,
267
- .premium-banner-animation3.active .premium-banner-ib-title {
268
- opacity: 1;
269
- -webkit-transform: translate3d(0, 0, 0);
270
- transform: translate3d(0, 0, 0); }
271
-
272
- .premium-banner-animation3 .premium-banner-ib-content {
273
- max-height: -webkit-calc(100% - 60px - 1.5em);
274
- max-height: calc(100% - 60px - 1.5em);
275
- overflow: hidden; }
276
-
277
- .premium-banner-animation4 img {
278
- width: -webkit-calc(100% + 40px) !important;
279
- width: calc(100% + 40px) !important;
280
- max-width: -webkit-calc(100% + 40px) !important;
281
- max-width: calc(100% + 40px) !important; }
282
-
283
- .premium-banner-animation4 .premium-banner-ib-desc {
284
- padding: 30px; }
285
- .premium-banner-animation4 .premium-banner-ib-desc::after {
286
- position: absolute;
287
- content: "";
288
- opacity: 0; }
289
- .premium-banner-animation4 .premium-banner-ib-desc::before {
290
- position: absolute;
291
- content: "";
292
- opacity: 0;
293
- top: 50px;
294
- right: 30px;
295
- bottom: 50px;
296
- left: 30px;
297
- border-top: 1px solid #fff;
298
- border-bottom: 1px solid #fff;
299
- -webkit-transform: scale(0, 1);
300
- -ms-transform: scale(0, 1);
301
- transform: scale(0, 1);
302
- -webkit-transform-origin: 0 0;
303
- -ms-transform-origin: 0 0;
304
- transform-origin: 0 0; }
305
- .premium-banner-animation4 .premium-banner-ib-desc::after {
306
- top: 30px;
307
- right: 50px;
308
- bottom: 30px;
309
- left: 50px;
310
- border-right: 1px solid #fff;
311
- border-left: 1px solid #fff;
312
- -webkit-transform: scale(1, 0);
313
- -ms-transform: scale(1, 0);
314
- transform: scale(1, 0);
315
- -webkit-transform-origin: 100% 0;
316
- -ms-transform-origin: 100% 0;
317
- transform-origin: 100% 0; }
318
-
319
- .premium-banner-animation4 .premium-banner-ib-title {
320
- padding: 50px 30px 0 30px;
321
- -webkit-transition: -webkit-transform 0.35s;
322
- transition: -webkit-transform 0.35s;
323
- transition: transform 0.35s;
324
- transition: transform 0.35s, -webkit-transform 0.35s; }
325
-
326
- .premium-banner-animation4 .premium-banner-ib-content,
327
- .premium-banner-animation4 .premium-banner-read-more {
328
- padding: 10px 30px;
329
- opacity: 0;
330
- overflow: hidden;
331
- -webkit-transform: translate3d(0, -10px, 0);
332
- transform: translate3d(0, -10px, 0); }
333
-
334
- .premium-banner-animation4 .premium-banner-ib-title,
335
- .premium-banner-animation4 img {
336
- -webkit-transform: translate3d(-30px, 0, 0);
337
- transform: translate3d(-30px, 0, 0); }
338
-
339
- .premium-banner-animation4.zoomout img,
340
- .premium-banner-animation4.scale img {
341
- -webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
342
- transform: translate3d(-30px, 0, 0) scale(1.1); }
343
-
344
- .premium-banner-animation4 .premium-banner-ib-content,
345
- .premium-banner-animation4 .premium-banner-read-more {
346
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
347
- transition: opacity 0.35s, -webkit-transform 0.35s;
348
- transition: opacity 0.35s, transform 0.35s;
349
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
350
-
351
- .premium-banner-animation4 .premium-banner-ib-desc::after, .premium-banner-animation4 .premium-banner-ib-desc::before {
352
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
353
- transition: opacity 0.35s, -webkit-transform 0.35s;
354
- transition: opacity 0.35s, transform 0.35s;
355
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
356
-
357
- .premium-banner-animation4 img {
358
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
359
- transition: opacity 0.35s, -webkit-transform 0.35s;
360
- transition: opacity 0.35s, transform 0.35s;
361
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
362
-
363
- .premium-banner-animation4:hover .premium-banner-ib-desc::after,
364
- .premium-banner-animation4.active .premium-banner-ib-desc::after,
365
- .premium-banner-animation4:hover .premium-banner-ib-desc::before,
366
- .premium-banner-animation4.active .premium-banner-ib-desc::before {
367
- opacity: 1;
368
- -webkit-transform: scale(1);
369
- -ms-transform: scale(1);
370
- transform: scale(1); }
371
-
372
- .premium-banner-animation4:hover .premium-banner-ib-content,
373
- .premium-banner-animation4.active .premium-banner-ib-content,
374
- .premium-banner-animation4:hover .premium-banner-read-more,
375
- .premium-banner-animation4.active .premium-banner-read-more,
376
- .premium-banner-animation4:hover .premium-banner-ib-title,
377
- .premium-banner-animation4.active .premium-banner-ib-title {
378
- opacity: 1;
379
- -webkit-transform: translate3d(0, 0, 0);
380
- transform: translate3d(0, 0, 0); }
381
-
382
- .premium-banner-animation4:hover .premium-banner-ib-content,
383
- .premium-banner-animation4:hover .premium-banner-ib-desc::after,
384
- .premium-banner-animation4:hover .premium-banner-ib-title,
385
- .premium-banner-animation4:hover img {
386
- -webkit-transition-delay: 0.15s;
387
- transition-delay: 0.15s; }
388
-
389
- .premium-banner-animation5 .premium-banner-ib-desc {
390
- top: auto;
391
- bottom: 0;
392
- padding: 15px;
393
- height: auto;
394
- background: #f2f2f2;
395
- color: #3c4a50;
396
- -webkit-transition: -webkit-transform 0.35s;
397
- transition: -webkit-transform 0.35s;
398
- transition: transform 0.35s;
399
- transition: transform 0.35s, -webkit-transform 0.35s;
400
- -webkit-transform: translate3d(0, 100%, 0);
401
- transform: translate3d(0, 100%, 0); }
402
-
403
- .premium-banner-animation5 .premium-banner-ib-content {
404
- position: absolute;
405
- top: auto;
406
- bottom: 100%;
407
- left: 0;
408
- width: 100%;
409
- padding: 15px;
410
- opacity: 0;
411
- -webkit-transition: opacity 0.35s;
412
- transition: opacity 0.35s; }
413
-
414
- .premium-banner-animation5 .premium-banner-ib-title,
415
- .premium-banner-animation5 .premium-banner-read-more {
416
- -webkit-transition: -webkit-transform 0.35s;
417
- transition: -webkit-transform 0.35s;
418
- transition: transform 0.35s;
419
- transition: transform 0.35s, -webkit-transform 0.35s;
420
- -webkit-transform: translate3d(0, 200%, 0);
421
- transform: translate3d(0, 200%, 0);
422
- text-align: center; }
423
-
424
- .premium-banner-animation5 .premium-banner-ib-title {
425
- margin: 10px 0; }
426
-
427
- .premium-banner-animation5:hover .premium-banner-ib-content,
428
- .premium-banner-animation5.active .premium-banner-ib-content,
429
- .premium-banner-animation5:hover .premium-banner-ib-content *,
430
- .premium-banner-animation5.active .premium-banner-ib-content * {
431
- opacity: 1 !important;
432
- z-index: 99 !important;
433
- -webkit-backface-visibility: hidden !important;
434
- backface-visibility: hidden !important; }
435
-
436
- .premium-banner-animation5:hover .premium-banner-ib-desc,
437
- .premium-banner-animation5.active .premium-banner-ib-desc,
438
- .premium-banner-animation5:hover .premium-banner-ib-title,
439
- .premium-banner-animation5.active .premium-banner-ib-title,
440
- .premium-banner-animation5:hover .premium-banner-read-more,
441
- .premium-banner-animation5.active .premium-banner-read-more {
442
- -webkit-transform: translateY(0);
443
- -ms-transform: translateY(0);
444
- transform: translateY(0); }
445
-
446
- .premium-banner-animation5:hover .premium-banner-ib-title {
447
- -webkit-transition-delay: 0.05s;
448
- transition-delay: 0.05s; }
449
-
450
- .premium-banner-animation5 img {
451
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
452
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
453
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
454
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
455
-
456
- .premium-banner-animation2 img,
457
- .premium-banner-animation4 img,
458
- .premium-banner-animation6 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-animation5.zoomout img,
465
- .premium-banner-animation5.scale img {
466
- -webkit-transform: scale(1.1);
467
- -ms-transform: scale(1.1);
468
- transform: scale(1.1); }
469
-
470
- .premium-banner-animation2.zoomout img,
471
- .premium-banner-animation2.scale img {
472
- -webkit-transform: scale(1.1);
473
- -ms-transform: scale(1.1);
474
- transform: scale(1.1); }
475
-
476
- .premium-banner-animation6.zoomout img,
477
- .premium-banner-animation6.scale img {
478
- -webkit-transform: scale(1.1);
479
- -ms-transform: scale(1.1);
480
- transform: scale(1.1); }
481
-
482
- .premium-banner-animation5.zoomin:hover img,
483
- .premium-banner-animation2.zoomin:hover img,
484
- .premium-banner-animation6.zoomin:hover img {
485
- -webkit-transform: scale(1.1);
486
- -ms-transform: scale(1.1);
487
- transform: scale(1.1); }
488
-
489
- .premium-banner-animation5.zoomout:hover img,
490
- .premium-banner-animation2.zoomout:hover img,
491
- .premium-banner-animation6.zoomout:hover img {
492
- -webkit-transform: scale(1);
493
- -ms-transform: scale(1);
494
- transform: scale(1); }
495
-
496
- .premium-banner-animation5.scale:hover img,
497
- .premium-banner-animation2.scale:hover img,
498
- .premium-banner-animation6.scale:hover img {
499
- -webkit-transform: scale(1.2) rotate(5deg);
500
- -ms-transform: scale(1.2) rotate(5deg);
501
- transform: scale(1.2) rotate(5deg); }
502
-
503
- .premium-banner-animation5.grayscale:hover img,
504
- .premium-banner-animation2.grayscale:hover img,
505
- .premium-banner-animation6.grayscale:hover img {
506
- -webkit-filter: grayscale(100%);
507
- filter: grayscale(100%); }
508
-
509
- .premium-banner-animation5.blur:hover img,
510
- .premium-banner-animation2.blur:hover img {
511
- -webkit-filter: blur(3px);
512
- filter: blur(3px); }
513
-
514
- .premium-banner-animation6.blur:hover img {
515
- -webkit-filter: blur(3px);
516
- filter: blur(3px); }
517
-
518
- .premium-banner-animation6 .premium-banner-ib-desc {
519
- padding: 45px; }
520
- .premium-banner-animation6 .premium-banner-ib-desc::before {
521
- position: absolute;
522
- content: "";
523
- top: 30px;
524
- right: 30px;
525
- bottom: 30px;
526
- left: 30px;
527
- border: 1px solid #fff; }
528
-
529
- .premium-banner-animation6 .premium-banner-ib-title {
530
- margin: 20px 0 10px;
531
- -webkit-transition: -webkit-transform 0.35s;
532
- transition: -webkit-transform 0.35s;
533
- transition: transform 0.35s;
534
- transition: transform 0.35s, -webkit-transform 0.35s;
535
- -webkit-transform: translate3d(0, 100%, 0);
536
- transform: translate3d(0, 100%, 0); }
537
-
538
- .premium-banner-animation6 .premium-banner-ib-content,
539
- .premium-banner-animation6 .premium-banner-read-more,
540
- .premium-banner-animation6 .premium-banner-ib-desc::before {
541
- opacity: 0;
542
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
543
- transition: opacity 0.35s, -webkit-transform 0.35s;
544
- transition: opacity 0.35s, transform 0.35s;
545
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
546
- -webkit-transform: scale(0);
547
- -ms-transform: scale(0);
548
- transform: scale(0); }
549
-
550
- .premium-banner-animation6 .premium-banner-read-more {
551
- margin-top: 10px; }
552
-
553
- .premium-banner-animation6:hover .premium-banner-ib-title,
554
- .premium-banner-animation6.active .premium-banner-ib-title {
555
- -webkit-transform: translate3d(0, 0, 0);
556
- transform: translate3d(0, 0, 0); }
557
-
558
- .premium-banner-animation6:hover .premium-banner-ib-content,
559
- .premium-banner-animation6.active .premium-banner-ib-content,
560
- .premium-banner-animation6:hover .premium-banner-read-more,
561
- .premium-banner-animation6.active .premium-banner-read-more,
562
- .premium-banner-animation6:hover .premium-banner-ib-desc::before,
563
- .premium-banner-animation6.active .premium-banner-ib-desc::before {
564
- opacity: 1;
565
- -webkit-transform: scale(1);
566
- -ms-transform: scale(1);
567
- transform: scale(1); }
568
-
569
- .premium-banner-animation12 .premium-banner-ib-desc::after {
570
- position: absolute;
571
- content: "";
572
- right: 30px;
573
- bottom: 30px;
574
- left: 30px;
575
- height: -webkit-calc(50% - 30px);
576
- height: calc(50% - 30px);
577
- border: 7px solid #fff;
578
- -webkit-transition: -webkit-transform 0.35s;
579
- transition: -webkit-transform 0.35s;
580
- transition: transform 0.35s;
581
- transition: transform 0.35s, -webkit-transform 0.35s;
582
- -webkit-transform: translate3d(0, -100%, 0);
583
- transform: translate3d(0, -100%, 0); }
584
-
585
- .premium-banner-animation12:hover .premium-banner-ib-desc::after,
586
- .premium-banner-animation12.active .premium-banner-ib-desc::after {
587
- -webkit-transform: translate3d(0, 0, 0);
588
- transform: translate3d(0, 0, 0); }
589
-
590
- .premium-banner-animation12 .premium-banner-ib-desc {
591
- padding: 45px;
592
- text-align: left; }
593
-
594
- .premium-banner-animation12 .premium-banner-ib-content {
595
- position: absolute;
596
- right: 60px;
597
- bottom: 60px;
598
- left: 60px;
599
- opacity: 0;
600
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
601
- transition: opacity 0.35s, -webkit-transform 0.35s;
602
- transition: opacity 0.35s, transform 0.35s;
603
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
604
- -webkit-transform: translate3d(0, -100px, 0);
605
- transform: translate3d(0, -100px, 0); }
606
-
607
- .premium-banner-animation12:hover .premium-banner-ib-content,
608
- .premium-banner-animation12.active .premium-banner-ib-content {
609
- opacity: 1;
610
- -webkit-transform: translate3d(0, 0, 0);
611
- transform: translate3d(0, 0, 0); }
612
-
613
- .premium-banner-animation13 img {
614
- width: -webkit-calc(100% + 20px) !important;
615
- width: calc(100% + 20px) !important;
616
- max-width: -webkit-calc(100% + 20px) !important;
617
- max-width: calc(100% + 20px) !important;
618
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
619
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
620
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
621
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
622
- -webkit-transform: translate3d(-10px, 0, 0);
623
- transform: translate3d(-10px, 0, 0);
624
- -webkit-backface-visibility: hidden;
625
- backface-visibility: hidden; }
626
-
627
- .premium-banner-animation13.zoomout img,
628
- .premium-banner-animation13.scale img {
629
- -webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
630
- transform: translate3d(-10px, 0, 0) scale(1.1); }
631
-
632
- .premium-banner-animation13.none:hover img {
633
- -webkit-transform: translate3d(0, 0, 0);
634
- transform: translate3d(0, 0, 0); }
635
-
636
- .premium-banner-animation1.none:hover img,
637
- .premium-banner-animation4.none:hover img {
638
- -webkit-transform: translate3d(0, 0, 0);
639
- transform: translate3d(0, 0, 0); }
640
-
641
- .premium-banner-animation13.zoomin:hover img,
642
- .premium-banner-animation1.zoomin:hover img,
643
- .premium-banner-animation4.zoomin:hover img,
644
- .premium-banner-animation8.zoomin:hover img,
645
- .premium-banner-animation7.zoomin:hover img,
646
- .premium-banner-animation9.zoomin:hover img,
647
- .premium-banner-animation10.zoomin:hover img,
648
- .premium-banner-animation11.zoomin:hover img {
649
- -webkit-transform: translate3d(0, 0, 0) scale(1.1);
650
- transform: translate3d(0, 0, 0) scale(1.1); }
651
-
652
- .premium-banner-animation13.zoomout:hover img,
653
- .premium-banner-animation1.zoomout:hover img,
654
- .premium-banner-animation4.zoomout:hover img,
655
- .premium-banner-animation8.zoomout:hover img,
656
- .premium-banner-animation7.zoomout:hover img,
657
- .premium-banner-animation9.zoomout:hover img,
658
- .premium-banner-animation10.zoomout:hover img,
659
- .premium-banner-animation11.zoomout:hover img {
660
- -webkit-transform: translate3d(0, 0, 0) scale(1);
661
- transform: translate3d(0, 0, 0) scale(1); }
662
-
663
- .premium-banner-animation13.scale:hover img,
664
- .premium-banner-animation1.scale:hover img,
665
- .premium-banner-animation4.scale:hover img,
666
- .premium-banner-animation8.scale:hover img,
667
- .premium-banner-animation7.scale:hover img,
668
- .premium-banner-animation9.scale:hover img,
669
- .premium-banner-animation10.scale:hover img,
670
- .premium-banner-animation11.scale:hover img {
671
- -webkit-transform: translate3d(0, 0, 0) scale(1.2) rotate(5deg);
672
- transform: translate3d(0, 0, 0) scale(1.2) rotate(5deg); }
673
-
674
- .premium-banner-animation13.grayscale:hover img,
675
- .premium-banner-animation1.grayscale:hover img,
676
- .premium-banner-animation4.grayscale:hover img,
677
- .premium-banner-animation8.grayscale:hover img,
678
- .premium-banner-animation7.grayscale:hover img,
679
- .premium-banner-animation9.grayscale:hover img,
680
- .premium-banner-animation10.grayscale:hover img,
681
- .premium-banner-animation11.grayscale:hover img {
682
- -webkit-transform: translate3d(0, 0, 0);
683
- transform: translate3d(0, 0, 0);
684
- -webkit-filter: grayscale(100%);
685
- filter: grayscale(100%); }
686
-
687
- .premium-banner-animation13.blur:hover img,
688
- .premium-banner-animation1.blur:hover img,
689
- .premium-banner-animation4.blur:hover,
690
- .premium-banner-animation8.blur:hover img,
691
- .premium-banner-animation7.blur:hover img,
692
- .premium-banner-animation9.blur:hover img,
693
- .premium-banner-animation10.blur:hover img,
694
- .premium-banner-animation11.blur:hover img {
695
- -webkit-transform: translate3d(0, 0, 0);
696
- transform: translate3d(0, 0, 0);
697
- -webkit-filter: blur(3px);
698
- filter: blur(3px); }
699
-
700
- .premium-banner-animation13 .premium-banner-ib-desc {
701
- text-align: left; }
702
-
703
- .premium-banner-animation13 .premium-banner-ib-title {
704
- position: relative;
705
- overflow: hidden;
706
- padding: 5px 0 10px; }
707
- .premium-banner-animation13 .premium-banner-ib-title::after {
708
- position: absolute;
709
- content: "";
710
- bottom: 0;
711
- left: 0;
712
- width: 100%;
713
- height: 2px;
714
- background: #fff;
715
- -webkit-transition: -webkit-transform 0.35s;
716
- transition: -webkit-transform 0.35s;
717
- transition: transform 0.35s;
718
- transition: transform 0.35s, -webkit-transform 0.35s;
719
- -webkit-transform: translate3d(-101%, 0, 0);
720
- transform: translate3d(-101%, 0, 0); }
721
-
722
- .premium-banner-animation13:hover .premium-banner-ib-title::after,
723
- .premium-banner-animation13.active .premium-banner-ib-title::after {
724
- -webkit-transform: translate3d(0, 0, 0);
725
- transform: translate3d(0, 0, 0); }
726
-
727
- .premium-banner-animation13 .premium-banner-ib-content,
728
- .premium-banner-animation13 .premium-banner-read-more {
729
- padding: 15px 0;
730
- opacity: 0;
731
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
732
- transition: opacity 0.35s, -webkit-transform 0.35s;
733
- transition: opacity 0.35s, transform 0.35s;
734
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
735
- -webkit-transform: translate3d(100%, 0, 0);
736
- transform: translate3d(100%, 0, 0); }
737
-
738
- .premium-banner-animation13:hover .premium-banner-ib-content,
739
- .premium-banner-animation13.active .premium-banner-ib-content,
740
- .premium-banner-animation13:hover .premium-banner-read-more,
741
- .premium-banner-animation13.active .premium-banner-read-more {
742
- opacity: 1;
743
- -webkit-transform: translate3d(0, 0, 0);
744
- transform: translate3d(0, 0, 0); }
745
-
746
- .premium-banner-ib.premium-banner-animation5 .premium-banner-toggle-size {
747
- left: 50%;
748
- width: auto !important;
749
- height: 100%;
750
- max-width: none;
751
- -webkit-transform: translateX(-50%);
752
- -ms-transform: translateX(-50%);
753
- transform: translateX(-50%); }
754
-
755
- .premium-banner-ib img {
756
- border: none;
757
- padding: 0;
758
- margin: 0; }
759
-
760
- .premium-banner-animation7 img {
761
- width: -webkit-calc(100% + 40px) !important;
762
- width: calc(100% + 40px) !important;
763
- max-width: -webkit-calc(100% + 40px) !important;
764
- max-width: calc(100% + 40px) !important;
765
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
766
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
767
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
768
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
769
-
770
- .premium-banner-animation7 .premium-banner-brlr {
771
- width: 7px; }
772
-
773
- .premium-banner-animation7 .premium-banner-brtb {
774
- height: 7px; }
775
-
776
- .premium-banner-animation7 .premium-banner-br {
777
- position: absolute;
778
- z-index: 1;
779
- background-color: white;
780
- -webkit-transition: all 0.3s ease-in-out;
781
- transition: all 0.3s ease-in-out;
782
- -webkit-transition-delay: 0.2s;
783
- transition-delay: 0.2s; }
784
-
785
- .premium-banner-animation7 .premium-banner-bleft {
786
- left: 30px;
787
- top: -webkit-calc(100% - 150px);
788
- top: calc(100% - 150px);
789
- height: 0; }
790
-
791
- .premium-banner-animation7 .premium-banner-bright {
792
- right: 30px;
793
- bottom: -webkit-calc(100% - 150px);
794
- bottom: calc(100% - 150px);
795
- height: 0; }
796
-
797
- .premium-banner-animation7 .premium-banner-bottom {
798
- right: -webkit-calc(100% - 150px);
799
- right: calc(100% - 150px);
800
- bottom: 30px;
801
- width: 0; }
802
-
803
- .premium-banner-animation7 .premium-banner-btop {
804
- left: -webkit-calc(100% - 150px);
805
- left: calc(100% - 150px);
806
- top: 30px;
807
- width: 0; }
808
-
809
- .premium-banner-animation7 .premium-banner-ib-desc {
810
- padding: 70px;
811
- display: table; }
812
- .premium-banner-animation7 .premium-banner-ib-desc .premium-banner-desc-centered {
813
- display: table-cell;
814
- vertical-align: middle; }
815
-
816
- .premium-banner-animation7 .premium-banner-ib-title {
817
- margin-top: 0; }
818
-
819
- .premium-banner-animation7 .premium-banner-ib-title,
820
- .premium-banner-animation7 img {
821
- -webkit-transform: translate3d(-30px, 0, 0);
822
- transform: translate3d(-30px, 0, 0); }
823
-
824
- .premium-banner-animation7.zoomout img,
825
- .premium-banner-animation7.scale img {
826
- -webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
827
- transform: translate3d(-30px, 0, 0) scale(1.1); }
828
-
829
- .premium-banner-animation7 .premium-banner-ib-content,
830
- .premium-banner-animation7 .premium-banner-read-more {
831
- margin-top: 10px; }
832
-
833
- .premium-banner-animation7 .premium-banner-ib-desc::after, .premium-banner-animation7 .premium-banner-ib-desc::before {
834
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
835
- transition: opacity 0.35s, -webkit-transform 0.35s;
836
- transition: opacity 0.35s, transform 0.35s;
837
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
838
-
839
- .premium-banner-animation7 .premium-banner-ib-title,
840
- .premium-banner-animation7 .premium-banner-ib-content,
841
- .premium-banner-animation7 .premium-banner-read-more {
842
- opacity: 0;
843
- -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
844
- transition: opacity 0.35s, -webkit-transform 0.35s;
845
- transition: opacity 0.35s, transform 0.35s;
846
- transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
847
-
848
- .premium-banner-animation7:hover .premium-banner-ib-content,
849
- .premium-banner-animation7.active .premium-banner-ib-content,
850
- .premium-banner-animation7:hover .premium-banner-read-more,
851
- .premium-banner-animation7.active .premium-banner-read-more,
852
- .premium-banner-animation7:hover .premium-banner-ib-title,
853
- .premium-banner-animation7.active .premium-banner-ib-title {
854
- opacity: 1;
855
- -webkit-transform: translate3d(0, 0, 0);
856
- transform: translate3d(0, 0, 0); }
857
-
858
- .premium-banner-animation7:hover .premium-banner-bleft, .premium-banner-animation7.active .premium-banner-bleft {
859
- top: 30px;
860
- height: 70px; }
861
-
862
- .premium-banner-animation7:hover .premium-banner-bright, .premium-banner-animation7.active .premium-banner-bright {
863
- bottom: 30px;
864
- height: 70px; }
865
-
866
- .premium-banner-animation7:hover .premium-banner-bottom, .premium-banner-animation7.active .premium-banner-bottom {
867
- right: 30px;
868
- width: 70px; }
869
-
870
- .premium-banner-animation7:hover .premium-banner-btop, .premium-banner-animation7.active .premium-banner-btop {
871
- left: 30px;
872
- width: 70px; }
873
-
874
- .premium-banner-animation7:hover .premium-banner-ib-content,
875
- .premium-banner-animation7:hover .premium-banner-read-more,
876
- .premium-banner-animation7:hover .premium-banner-ib-title,
877
- .premium-banner-animation7:hover img {
878
- -webkit-transition-delay: 0.15s;
879
- transition-delay: 0.15s; }
880
-
881
- .premium-banner-animation8 img {
882
- width: -webkit-calc(100% + 40px) !important;
883
- width: calc(100% + 40px) !important;
884
- max-width: -webkit-calc(100% + 40px) !important;
885
- max-width: calc(100% + 40px) !important;
886
- -webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
887
- transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
888
- transition: opacity 0.35s, filter 0.35s, transform 0.35s;
889
- transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
890
-
891
- .premium-banner-animation8 .premium-banner-brlr {
892
- width: 7px; }
893
-
894
- .premium-banner-animation8 .premium-banner-brtb {
895
- height: 7px; }
896
-
897
- .premium-banner-animation8 .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
- .premium-banner-animation8 .premium-banner-bleft {
907
- left: 30px;
908
- top: 50%;
909
- -webkit-transform: translateY(-50%);
910
- -ms-transform: translateY(-50%);
911
- transform: translateY(-50%);
912
- height: 0; }
913
-
914
- .premium-banner-animation8 .premium-banner-bright {
915
- right: 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-bottom {
923
- left: 50%;
924
- -webkit-transform: translateX(-50%);
925
- -ms-transform: translateX(-50%);
926
- transform: translateX(-50%);
927
- bottom: 30px;
928
- width: 0; }
929
-
930
- .premium-banner-animation8 .premium-banner-btop {
931
- left: 50%;
932
- -webkit-transform: translateX(-50%);
933
- -ms-transform: translateX(-50%);
934
- transform: translateX(-50%);
935
- top: 30px;
936
- width: 0; }
937
-
938
- .premium-banner-animation8 .premium-banner-ib-desc {
939
- padding: 70px;
940
- display: table; }
941
- .premium-banner-animation8 .premium-banner-ib-desc .premium-banner-desc-centered {
942
- display: table-cell;
943
- vertical-align: middle; }
944
-
945
- .premium-banner-animation8 .premium-banner-ib-title {
946
- margin-top: 0; }
947
-
948
- .premium-banner-animation8 .premium-banner-ib-title,
949
- .premium-banner-animation8 img {
950
- -webkit-transform: translate