Version Description
- Tweak: Added Justify option to Content Alignment in Blog widget.
- Fixed: Video lightbox conflict with some themes in Media Grid widget.
Download this release
Release Info
Developer | leap13 |
Plugin | Premium Addons for Elementor |
Version | 4.4.3 |
Comparing to | |
See all releases |
Code changes from version 4.4.2 to 4.4.3
- admin/includes/admin-helper.php +823 -823
- assets/frontend/css/premium-addons-rtl.css +8169 -8169
- assets/frontend/css/premium-addons.css +6690 -6690
- assets/frontend/js/premium-addons.js +1028 -1982
admin/includes/admin-helper.php
CHANGED
@@ -1,823 +1,823 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* PA Admin Helper
|
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_Helper
|
16 |
-
*/
|
17 |
-
class Admin_Helper {
|
18 |
-
|
19 |
-
/**
|
20 |
-
* Admin settings tabs
|
21 |
-
*
|
22 |
-
* @var tabs
|
23 |
-
*/
|
24 |
-
private static $tabs = null;
|
25 |
-
|
26 |
-
/**
|
27 |
-
* Class instance
|
28 |
-
*
|
29 |
-
* @var instance
|
30 |
-
*/
|
31 |
-
private static $instance = null;
|
32 |
-
|
33 |
-
/**
|
34 |
-
* Premium Addons Settings Page Slug
|
35 |
-
*
|
36 |
-
* @var page_slug
|
37 |
-
*/
|
38 |
-
protected $page_slug = 'premium-addons';
|
39 |
-
|
40 |
-
/**
|
41 |
-
* Current Screen ID
|
42 |
-
*
|
43 |
-
* @var current_screen
|
44 |
-
*/
|
45 |
-
public static $current_screen = null;
|
46 |
-
|
47 |
-
/**
|
48 |
-
* Elements List
|
49 |
-
*
|
50 |
-
* @var elements_list
|
51 |
-
*/
|
52 |
-
public static $elements_list = null;
|
53 |
-
|
54 |
-
/**
|
55 |
-
* Integrations List
|
56 |
-
*
|
57 |
-
* @var integrations_list
|
58 |
-
*/
|
59 |
-
public static $integrations_list = null;
|
60 |
-
|
61 |
-
/**
|
62 |
-
* Constructor for the class
|
63 |
-
*/
|
64 |
-
public function __construct() {
|
65 |
-
|
66 |
-
// Get current screen ID.
|
67 |
-
add_action( 'current_screen', array( $this, 'get_current_screen' ) );
|
68 |
-
|
69 |
-
// Insert admin settings submenus.
|
70 |
-
$this->set_admin_tabs();
|
71 |
-
add_action( 'admin_menu', array( $this, 'add_menu_tabs' ), 100 );
|
72 |
-
|
73 |
-
// Enqueue required admin scripts.
|
74 |
-
add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
|
75 |
-
|
76 |
-
// Plugin Action Links.
|
77 |
-
add_filter( 'plugin_action_links_' . PREMIUM_ADDONS_BASENAME, array( $this, 'insert_action_links' ) );
|
78 |
-
add_filter( 'plugin_row_meta', array( $this, 'plugin_row_meta' ), 10, 2 );
|
79 |
-
|
80 |
-
// Register AJAX HOOKS.
|
81 |
-
add_action( 'wp_ajax_pa_save_global_btn', array( $this, 'save_global_btn_value' ) );
|
82 |
-
add_action( 'wp_ajax_pa_elements_settings', array( $this, 'save_settings' ) );
|
83 |
-
add_action( 'wp_ajax_pa_additional_settings', array( $this, 'save_additional_settings' ) );
|
84 |
-
|
85 |
-
add_action( 'pa_before_render_admin_tabs', array( $this, 'render_dashboard_header' ) );
|
86 |
-
|
87 |
-
// Register Rollback hooks.
|
88 |
-
add_action( 'admin_post_premium_addons_rollback', array( $this, 'run_pa_rollback' ) );
|
89 |
-
|
90 |
-
// Beta_Testers::get_instance();
|
91 |
-
|
92 |
-
if ( is_admin() ) {
|
93 |
-
$current_page = $_SERVER['REQUEST_URI'];
|
94 |
-
if ( false === strpos( $current_page, 'action=elementor' ) ) {
|
95 |
-
Admin_Notices::get_instance();
|
96 |
-
|
97 |
-
// PA Duplicator.
|
98 |
-
if ( self::check_duplicator() ) {
|
99 |
-
Duplicator::get_instance();
|
100 |
-
}
|
101 |
-
}
|
102 |
-
}
|
103 |
-
|
104 |
-
}
|
105 |
-
|
106 |
-
/**
|
107 |
-
* Get Elements List
|
108 |
-
*
|
109 |
-
* Get a list of all the elements available in the plugin
|
110 |
-
*
|
111 |
-
* @since 3.20.9
|
112 |
-
* @access private
|
113 |
-
*
|
114 |
-
* @return array widget_list
|
115 |
-
*/
|
116 |
-
private static function get_elements_list() {
|
117 |
-
|
118 |
-
if ( null === self::$elements_list ) {
|
119 |
-
|
120 |
-
self::$elements_list = require_once PREMIUM_ADDONS_PATH . 'admin/includes/elements.php';
|
121 |
-
|
122 |
-
}
|
123 |
-
|
124 |
-
return self::$elements_list;
|
125 |
-
|
126 |
-
}
|
127 |
-
|
128 |
-
/**
|
129 |
-
* Get Integrations List
|
130 |
-
*
|
131 |
-
* Get a list of all the integrations available in the plugin
|
132 |
-
*
|
133 |
-
* @since 3.20.9
|
134 |
-
* @access private
|
135 |
-
*
|
136 |
-
* @return array integrations_list
|
137 |
-
*/
|
138 |
-
private static function get_integrations_list() {
|
139 |
-
|
140 |
-
if ( null === self::$integrations_list ) {
|
141 |
-
|
142 |
-
self::$integrations_list = array(
|
143 |
-
'premium-map-api',
|
144 |
-
'premium-youtube-api',
|
145 |
-
'premium-map-disable-api',
|
146 |
-
'premium-map-cluster',
|
147 |
-
'premium-map-locale',
|
148 |
-
'is-beta-tester',
|
149 |
-
);
|
150 |
-
|
151 |
-
}
|
152 |
-
|
153 |
-
return self::$integrations_list;
|
154 |
-
|
155 |
-
}
|
156 |
-
|
157 |
-
/**
|
158 |
-
* Admin Enqueue Scripts
|
159 |
-
*
|
160 |
-
* Enqueue the required assets on our admin pages
|
161 |
-
*
|
162 |
-
* @since 1.0.0
|
163 |
-
* @access public
|
164 |
-
*/
|
165 |
-
public function admin_enqueue_scripts() {
|
166 |
-
|
167 |
-
wp_enqueue_style(
|
168 |
-
'pa_admin_icon',
|
169 |
-
PREMIUM_ADDONS_URL . 'admin/assets/fonts/style.css',
|
170 |
-
array(),
|
171 |
-
PREMIUM_ADDONS_VERSION,
|
172 |
-
'all'
|
173 |
-
);
|
174 |
-
|
175 |
-
$suffix = is_rtl() ? '-rtl' : '';
|
176 |
-
|
177 |
-
$current_screen = self::get_current_screen();
|
178 |
-
|
179 |
-
wp_enqueue_style(
|
180 |
-
'pa-notice-css',
|
181 |
-
PREMIUM_ADDONS_URL . 'admin/assets/css/notice' . $suffix . '.css',
|
182 |
-
array(),
|
183 |
-
PREMIUM_ADDONS_VERSION,
|
184 |
-
'all'
|
185 |
-
);
|
186 |
-
|
187 |
-
if ( strpos( $current_screen, $this->page_slug ) !== false ) {
|
188 |
-
|
189 |
-
wp_enqueue_style(
|
190 |
-
'pa-admin-css',
|
191 |
-
PREMIUM_ADDONS_URL . 'admin/assets/css/admin' . $suffix . '.css',
|
192 |
-
array(),
|
193 |
-
PREMIUM_ADDONS_VERSION,
|
194 |
-
'all'
|
195 |
-
);
|
196 |
-
|
197 |
-
wp_enqueue_style(
|
198 |
-
'pa-sweetalert-style',
|
199 |
-
PREMIUM_ADDONS_URL . 'admin/assets/js/sweetalert2/sweetalert2.min.css',
|
200 |
-
array(),
|
201 |
-
PREMIUM_ADDONS_VERSION,
|
202 |
-
'all'
|
203 |
-
);
|
204 |
-
|
205 |
-
wp_enqueue_script(
|
206 |
-
'pa-admin',
|
207 |
-
PREMIUM_ADDONS_URL . 'admin/assets/js/admin.js',
|
208 |
-
array( 'jquery' ),
|
209 |
-
PREMIUM_ADDONS_VERSION,
|
210 |
-
true
|
211 |
-
);
|
212 |
-
|
213 |
-
wp_enqueue_script(
|
214 |
-
'pa-sweetalert-core',
|
215 |
-
PREMIUM_ADDONS_URL . 'admin/assets/js/sweetalert2/core.js',
|
216 |
-
array( 'jquery' ),
|
217 |
-
PREMIUM_ADDONS_VERSION,
|
218 |
-
true
|
219 |
-
);
|
220 |
-
|
221 |
-
wp_enqueue_script(
|
222 |
-
'pa-sweetalert',
|
223 |
-
PREMIUM_ADDONS_URL . 'admin/assets/js/sweetalert2/sweetalert2.min.js',
|
224 |
-
array( 'jquery', 'pa-sweetalert-core' ),
|
225 |
-
PREMIUM_ADDONS_VERSION,
|
226 |
-
true
|
227 |
-
);
|
228 |
-
|
229 |
-
$theme_slug = Helper_Functions::get_installed_theme();
|
230 |
-
|
231 |
-
$localized_data = array(
|
232 |
-
'settings' => array(
|
233 |
-
'ajaxurl' => admin_url( 'admin-ajax.php' ),
|
234 |
-
'nonce' => wp_create_nonce( 'pa-settings-tab' ),
|
235 |
-
'theme' => $theme_slug,
|
236 |
-
),
|
237 |
-
'premiumRollBackConfirm' => array(
|
238 |
-
'home_url' => home_url(),
|
239 |
-
'i18n' => array(
|
240 |
-
'rollback_to_previous_version' => __( 'Rollback to Previous Version', 'premium-addons-for-elementor' ),
|
241 |
-
/* translators: %s: PA stable version */
|
242 |
-
'rollback_confirm' => sprintf( __( 'Are you sure you want to reinstall version %s?', 'premium-addons-for-elementor' ), PREMIUM_ADDONS_STABLE_VERSION ),
|
243 |
-
'yes' => __( 'Continue', 'premium-addons-for-elementor' ),
|
244 |
-
'cancel' => __( 'Cancel', 'premium-addons-for-elementor' ),
|
245 |
-
),
|
246 |
-
),
|
247 |
-
);
|
248 |
-
|
249 |
-
// Add PAPRO Rollback Confirm message if PAPRO installed.
|
250 |
-
if ( Helper_Functions::check_papro_version() ) {
|
251 |
-
/* translators: %s: PA stable version */
|
252 |
-
$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 );
|
253 |
-
}
|
254 |
-
|
255 |
-
wp_localize_script( 'pa-admin', 'premiumAddonsSettings', $localized_data );
|
256 |
-
|
257 |
-
}
|
258 |
-
}
|
259 |
-
|
260 |
-
/**
|
261 |
-
* Insert action links.
|
262 |
-
*
|
263 |
-
* Adds action links to the plugin list table
|
264 |
-
*
|
265 |
-
* Fired by `plugin_action_links` filter.
|
266 |
-
*
|
267 |
-
* @param array $links plugin action links.
|
268 |
-
*
|
269 |
-
* @since 1.0.0
|
270 |
-
* @access public
|
271 |
-
*/
|
272 |
-
public function insert_action_links( $links ) {
|
273 |
-
|
274 |
-
$papro_path = 'premium-addons-pro/premium-addons-pro-for-elementor.php';
|
275 |
-
|
276 |
-
$is_papro_installed = Helper_Functions::is_plugin_installed( $papro_path );
|
277 |
-
|
278 |
-
$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' ) );
|
279 |
-
|
280 |
-
$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 );
|
281 |
-
|
282 |
-
$new_links = array( $settings_link, $rollback_link );
|
283 |
-
|
284 |
-
if ( ! $is_papro_installed ) {
|
285 |
-
|
286 |
-
$link = Helper_Functions::get_campaign_link( 'https://premiumaddons.com/pro', 'plugins-page', 'wp-dash', 'get-pro' );
|
287 |
-
|
288 |
-
$pro_link = sprintf( '<a href="%s" target="_blank" style="color: #39b54a; font-weight: bold;">%s</a>', $link, __( 'Go Pro', 'premium-addons-for-elementor' ) );
|
289 |
-
array_push( $new_links, $pro_link );
|
290 |
-
}
|
291 |
-
|
292 |
-
$new_links = array_merge( $links, $new_links );
|
293 |
-
|
294 |
-
return $new_links;
|
295 |
-
}
|
296 |
-
|
297 |
-
/**
|
298 |
-
* Plugin row meta.
|
299 |
-
*
|
300 |
-
* Extends plugin row meta links
|
301 |
-
*
|
302 |
-
* Fired by `plugin_row_meta` filter.
|
303 |
-
*
|
304 |
-
* @since 3.8.4
|
305 |
-
* @access public
|
306 |
-
*
|
307 |
-
* @param array $meta array of the plugin's metadata.
|
308 |
-
* @param string $file path to the plugin file.
|
309 |
-
*
|
310 |
-
* @return array An array of plugin row meta links.
|
311 |
-
*/
|
312 |
-
public function plugin_row_meta( $meta, $file ) {
|
313 |
-
|
314 |
-
if ( Helper_Functions::is_hide_row_meta() ) {
|
315 |
-
return $meta;
|
316 |
-
}
|
317 |
-
|
318 |
-
if ( PREMIUM_ADDONS_BASENAME === $file ) {
|
319 |
-
|
320 |
-
$link = Helper_Functions::get_campaign_link( 'https://premiumaddons.com/support', 'plugins-page', 'wp-dash', 'get-support' );
|
321 |
-
|
322 |
-
$row_meta = array(
|
323 |
-
'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>',
|
324 |
-
'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>',
|
325 |
-
);
|
326 |
-
|
327 |
-
$meta = array_merge( $meta, $row_meta );
|
328 |
-
}
|
329 |
-
|
330 |
-
return $meta;
|
331 |
-
|
332 |
-
}
|
333 |
-
|
334 |
-
/**
|
335 |
-
* Gets current screen slug
|
336 |
-
*
|
337 |
-
* @since 3.3.8
|
338 |
-
* @access public
|
339 |
-
*
|
340 |
-
* @return string current screen slug
|
341 |
-
*/
|
342 |
-
public static function get_current_screen() {
|
343 |
-
|
344 |
-
self::$current_screen = get_current_screen()->id;
|
345 |
-
|
346 |
-
return isset( self::$current_screen ) ? self::$current_screen : false;
|
347 |
-
|
348 |
-
}
|
349 |
-
|
350 |
-
/**
|
351 |
-
* Set Admin Tabs
|
352 |
-
*
|
353 |
-
* @access private
|
354 |
-
* @since 3.20.8
|
355 |
-
*/
|
356 |
-
private function set_admin_tabs() {
|
357 |
-
|
358 |
-
$slug = $this->page_slug;
|
359 |
-
|
360 |
-
self::$tabs = array(
|
361 |
-
'general' => array(
|
362 |
-
'id' => 'general',
|
363 |
-
'slug' => $slug . '#tab=general',
|
364 |
-
'title' => __( 'General', 'premium-addons-for-elementor' ),
|
365 |
-
'href' => '#tab=general',
|
366 |
-
'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/general',
|
367 |
-
),
|
368 |
-
'elements' => array(
|
369 |
-
'id' => 'elements',
|
370 |
-
'slug' => $slug . '#tab=elements',
|
371 |
-
'title' => __( 'Widgets & Add-ons', 'premium-addons-for-elementor' ),
|
372 |
-
'href' => '#tab=elements',
|
373 |
-
'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/modules-settings',
|
374 |
-
),
|
375 |
-
'features' => array(
|
376 |
-
'id' => 'features',
|
377 |
-
'slug' => $slug . '#tab=features',
|
378 |
-
'title' => __( 'Features', 'premium-addons-for-elementor' ),
|
379 |
-
'href' => '#tab=features',
|
380 |
-
'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/features',
|
381 |
-
),
|
382 |
-
'integrations' => array(
|
383 |
-
'id' => 'integrations',
|
384 |
-
'slug' => $slug . '#tab=integrations',
|
385 |
-
'title' => __( 'Integrations', 'premium-addons-for-elementor' ),
|
386 |
-
'href' => '#tab=integrations',
|
387 |
-
'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/integrations',
|
388 |
-
),
|
389 |
-
'version-control' => array(
|
390 |
-
'id' => 'vcontrol',
|
391 |
-
'slug' => $slug . '#tab=vcontrol',
|
392 |
-
'title' => __( 'Version Control', 'premium-addons-for-elementor' ),
|
393 |
-
'href' => '#tab=vcontrol',
|
394 |
-
'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/version-control',
|
395 |
-
),
|
396 |
-
'white-label' => array(
|
397 |
-
'id' => 'white-label',
|
398 |
-
'slug' => $slug . '#tab=white-label',
|
399 |
-
'title' => __( 'White Labeling', 'premium-addons-for-elementor' ),
|
400 |
-
'href' => '#tab=white-label',
|
401 |
-
'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/white-label',
|
402 |
-
),
|
403 |
-
'info' => array(
|
404 |
-
'id' => 'system-info',
|
405 |
-
'slug' => $slug . '#tab=system-info',
|
406 |
-
'title' => __( 'System Info', 'premium-addons-for-elementor' ),
|
407 |
-
'href' => '#tab=system-info',
|
408 |
-
'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/info',
|
409 |
-
),
|
410 |
-
);
|
411 |
-
|
412 |
-
self::$tabs = apply_filters( 'pa_admin_register_tabs', self::$tabs );
|
413 |
-
|
414 |
-
}
|
415 |
-
|
416 |
-
/**
|
417 |
-
* Add Menu Tabs
|
418 |
-
*
|
419 |
-
* Create Submenu Page
|
420 |
-
*
|
421 |
-
* @since 3.20.9
|
422 |
-
* @access public
|
423 |
-
*
|
424 |
-
* @return void
|
425 |
-
*/
|
426 |
-
public function add_menu_tabs() {
|
427 |
-
|
428 |
-
$plugin_name = Helper_Functions::name();
|
429 |
-
|
430 |
-
call_user_func(
|
431 |
-
'add_menu_page',
|
432 |
-
$plugin_name,
|
433 |
-
$plugin_name,
|
434 |
-
'manage_options',
|
435 |
-
$this->page_slug,
|
436 |
-
array( $this, 'render_setting_tabs' ),
|
437 |
-
'',
|
438 |
-
100
|
439 |
-
);
|
440 |
-
|
441 |
-
foreach ( self::$tabs as $tab ) {
|
442 |
-
|
443 |
-
call_user_func(
|
444 |
-
'add_submenu_page',
|
445 |
-
$this->page_slug,
|
446 |
-
$tab['title'],
|
447 |
-
$tab['title'],
|
448 |
-
'manage_options',
|
449 |
-
$tab['slug'],
|
450 |
-
'__return_null'
|
451 |
-
);
|
452 |
-
}
|
453 |
-
|
454 |
-
remove_submenu_page( $this->page_slug, $this->page_slug );
|
455 |
-
}
|
456 |
-
|
457 |
-
/**
|
458 |
-
* Render Setting Tabs
|
459 |
-
*
|
460 |
-
* Render the final HTML content for admin setting tabs
|
461 |
-
*
|
462 |
-
* @access public
|
463 |
-
* @since 3.20.8
|
464 |
-
*/
|
465 |
-
public function render_setting_tabs() {
|
466 |
-
|
467 |
-
?>
|
468 |
-
<div class="pa-settings-wrap">
|
469 |
-
<?php do_action( 'pa_before_render_admin_tabs' ); ?>
|
470 |
-
<div class="pa-settings-tabs">
|
471 |
-
<ul class="pa-settings-tabs-list">
|
472 |
-
<?php
|
473 |
-
foreach ( self::$tabs as $key => $tab ) {
|
474 |
-
$link = '<li class="pa-settings-tab">';
|
475 |
-
$link .= '<a id="pa-tab-link-' . esc_attr( $tab['id'] ) . '"';
|
476 |
-
$link .= ' href="' . esc_url( $tab['href'] ) . '">';
|
477 |
-
$link .= '<i class="pa-dash-' . esc_attr( $tab['id'] ) . '"></i>';
|
478 |
-
$link .= '<span>' . esc_html( $tab['title'] ) . '</span>';
|
479 |
-
$link .= '</a>';
|
480 |
-
$link .= '</li>';
|
481 |
-
|
482 |
-
echo $link;
|
483 |
-
}
|
484 |
-
?>
|
485 |
-
</ul>
|
486 |
-
</div> <!-- Settings Tabs -->
|
487 |
-
|
488 |
-
<div class="pa-settings-sections">
|
489 |
-
<?php
|
490 |
-
foreach ( self::$tabs as $key => $tab ) {
|
491 |
-
echo wp_kses_post( '<div id="pa-section-' . $tab['id'] . '" class="pa-section pa-section-' . $key . '">' );
|
492 |
-
include_once $tab['template'] . '.php';
|
493 |
-
echo '</div>';
|
494 |
-
}
|
495 |
-
?>
|
496 |
-
</div> <!-- Settings Sections -->
|
497 |
-
<?php do_action( 'pa_after_render_admin_tabs' ); ?>
|
498 |
-
</div> <!-- Settings Wrap -->
|
499 |
-
<?php
|
500 |
-
}
|
501 |
-
|
502 |
-
/**
|
503 |
-
* Render Dashboard Header
|
504 |
-
*
|
505 |
-
* @since 4.0.0
|
506 |
-
* @access public
|
507 |
-
*/
|
508 |
-
public function render_dashboard_header() {
|
509 |
-
|
510 |
-
$url = Helper_Functions::get_campaign_link( 'https://premiumaddons.com/pro/', 'settings-page', 'wp-dash', 'dashboard' );
|
511 |
-
|
512 |
-
$show_logo = Helper_Functions::is_hide_logo();
|
513 |
-
|
514 |
-
?>
|
515 |
-
|
516 |
-
<div class="papro-admin-notice">
|
517 |
-
<?php if ( ! $show_logo ) : ?>
|
518 |
-
<div class="papro-admin-notice-left">
|
519 |
-
<div class="papro-admin-notice-logo">
|
520 |
-
<img class="pa-notice-logo" src="<?php echo esc_attr( PREMIUM_ADDONS_URL . 'admin/images/papro-notice-logo.png' ); ?>">
|
521 |
-
</div>
|
522 |
-
<a href="https://premiumaddons.com" target="_blank"></a>
|
523 |
-
</div>
|
524 |
-
<?php endif; ?>
|
525 |
-
|
526 |
-
<?php if ( ! Helper_Functions::check_papro_version() ) : ?>
|
527 |
-
<div class="papro-admin-notice-right">
|
528 |
-
<div class="papro-admin-notice-info">
|
529 |
-
<h4>
|
530 |
-
<?php echo esc_html( __( 'Get Premium Addons PRO', 'premium-addons-for-elementor' ) ); ?>
|
531 |
-
</h4>
|
532 |
-
<p>
|
533 |
-
<?php
|
534 |
-
/* translators: %s: html tags */
|
535 |
-
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>' ) );
|
536 |
-
?>
|
537 |
-
</p>
|
538 |
-
</div>
|
539 |
-
<div class="papro-admin-notice-cta">
|
540 |
-
<a class="papro-notice-btn" href="<?php echo esc_url( $url ); ?>" target="_blank">
|
541 |
-
<?php echo esc_html( __( 'Get PRO', 'premium-addons-for-elementor' ) ); ?>
|
542 |
-
</a>
|
543 |
-
</div>
|
544 |
-
</div>
|
545 |
-
<?php endif; ?>
|
546 |
-
</div>
|
547 |
-
|
548 |
-
<?php
|
549 |
-
}
|
550 |
-
|
551 |
-
/**
|
552 |
-
* Save Settings
|
553 |
-
*
|
554 |
-
* Save elements settings using AJAX
|
555 |
-
*
|
556 |
-
* @access public
|
557 |
-
* @since 3.20.8
|
558 |
-
*/
|
559 |
-
public function save_settings() {
|
560 |
-
|
561 |
-
check_ajax_referer( 'pa-settings-tab', 'security' );
|
562 |
-
|
563 |
-
if ( ! isset( $_POST['fields'] ) ) {
|
564 |
-
return;
|
565 |
-
}
|
566 |
-
|
567 |
-
parse_str( sanitize_text_field( $_POST['fields'] ), $settings );
|
568 |
-
|
569 |
-
$defaults = self::get_default_elements();
|
570 |
-
|
571 |
-
$elements = array_fill_keys( array_keys( array_intersect_key( $settings, $defaults ) ), true );
|
572 |
-
|
573 |
-
update_option( 'pa_save_settings', $elements );
|
574 |
-
|
575 |
-
wp_send_json_success();
|
576 |
-
}
|
577 |
-
|
578 |
-
/**
|
579 |
-
* Save Integrations Control Settings
|
580 |
-
*
|
581 |
-
* Stores integration and version control settings
|
582 |
-
*
|
583 |
-
* @since 3.20.8
|
584 |
-
* @access public
|
585 |
-
*/
|
586 |
-
public function save_additional_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 |
-
$new_settings = array(
|
597 |
-
'premium-map-api' => sanitize_text_field( $settings['premium-map-api'] ),
|
598 |
-
'premium-youtube-api' => sanitize_text_field( $settings['premium-youtube-api'] ),
|
599 |
-
'premium-map-disable-api' => intval( $settings['premium-map-disable-api'] ? 1 : 0 ),
|
600 |
-
'premium-map-cluster' => intval( $settings['premium-map-cluster'] ? 1 : 0 ),
|
601 |
-
'premium-map-locale' => sanitize_text_field( $settings['premium-map-locale'] ),
|
602 |
-
'is-beta-tester' => intval( $settings['is-beta-tester'] ? 1 : 0 ),
|
603 |
-
);
|
604 |
-
|
605 |
-
update_option( 'pa_maps_save_settings', $new_settings );
|
606 |
-
|
607 |
-
wp_send_json_success( $settings );
|
608 |
-
|
609 |
-
}
|
610 |
-
|
611 |
-
/**
|
612 |
-
* Save Global Button Value
|
613 |
-
*
|
614 |
-
* Saves value for elements global switcher
|
615 |
-
*
|
616 |
-
* @since 4.0.0
|
617 |
-
* @access public
|
618 |
-
*/
|
619 |
-
public function save_global_btn_value() {
|
620 |
-
|
621 |
-
check_ajax_referer( 'pa-settings-tab', 'security' );
|
622 |
-
|
623 |
-
if ( ! isset( $_POST['isGlobalOn'] ) ) {
|
624 |
-
wp_send_json_error();
|
625 |
-
}
|
626 |
-
|
627 |
-
$global_btn_value = sanitize_text_field( $_POST['isGlobalOn'] );
|
628 |
-
|
629 |
-
update_option( 'pa_global_btn_value', $global_btn_value );
|
630 |
-
|
631 |
-
wp_send_json_success();
|
632 |
-
|
633 |
-
}
|
634 |
-
|
635 |
-
/**
|
636 |
-
* Get default Elements
|
637 |
-
*
|
638 |
-
* @since 3.20.9
|
639 |
-
* @access private
|
640 |
-
*
|
641 |
-
* @return $default_keys array keys defaults
|
642 |
-
*/
|
643 |
-
private static function get_default_elements() {
|
644 |
-
|
645 |
-
$elements = self::get_elements_list();
|
646 |
-
|
647 |
-
$keys = array();
|
648 |
-
|
649 |
-
// Now, we need to fill our array with elements keys.
|
650 |
-
foreach ( $elements as $cat ) {
|
651 |
-
if ( count( $cat['elements'] ) ) {
|
652 |
-
foreach ( $cat['elements'] as $elem ) {
|
653 |
-
array_push( $keys, $elem['key'] );
|
654 |
-
}
|
655 |
-
}
|
656 |
-
}
|
657 |
-
|
658 |
-
$default_keys = array_fill_keys( $keys, true );
|
659 |
-
|
660 |
-
return $default_keys;
|
661 |
-
|
662 |
-
}
|
663 |
-
|
664 |
-
/**
|
665 |
-
* Get Default Interations
|
666 |
-
*
|
667 |
-
* @since 3.20.9
|
668 |
-
* @access private
|
669 |
-
*
|
670 |
-
* @return $default_keys array default keys
|
671 |
-
*/
|
672 |
-
private static function get_default_integrations() {
|
673 |
-
|
674 |
-
$settings = self::get_integrations_list();
|
675 |
-
|
676 |
-
$default_keys = array_fill_keys( $settings, true );
|
677 |
-
|
678 |
-
// Beta Tester should NOT be enabled by default.
|
679 |
-
$default_keys['is-beta-tester'] = false;
|
680 |
-
|
681 |
-
return $default_keys;
|
682 |
-
|
683 |
-
}
|
684 |
-
|
685 |
-
/**
|
686 |
-
* Get enabled widgets
|
687 |
-
*
|
688 |
-
* @since 3.20.9
|
689 |
-
* @access public
|
690 |
-
*
|
691 |
-
* @return array $enabled_keys enabled elements
|
692 |
-
*/
|
693 |
-
public static function get_enabled_elements() {
|
694 |
-
|
695 |
-
$defaults = self::get_default_elements();
|
696 |
-
|
697 |
-
$enabled_keys = get_option( 'pa_save_settings', $defaults );
|
698 |
-
|
699 |
-
foreach ( $defaults as $key => $value ) {
|
700 |
-
if ( ! isset( $enabled_keys[ $key ] ) ) {
|
701 |
-
$defaults[ $key ] = 0;
|
702 |
-
}
|
703 |
-
}
|
704 |
-
|
705 |
-
return $defaults;
|
706 |
-
|
707 |
-
}
|
708 |
-
|
709 |
-
/**
|
710 |
-
* Check If Premium Templates is enabled
|
711 |
-
*
|
712 |
-
* @since 3.6.0
|
713 |
-
* @access public
|
714 |
-
*
|
715 |
-
* @return boolean
|
716 |
-
*/
|
717 |
-
public static function check_premium_templates() {
|
718 |
-
|
719 |
-
$settings = self::get_enabled_elements();
|
720 |
-
|
721 |
-
if ( ! isset( $settings['premium-templates'] ) ) {
|
722 |
-
return true;
|
723 |
-
}
|
724 |
-
|
725 |
-
$is_enabled = $settings['premium-templates'];
|
726 |
-
|
727 |
-
return $is_enabled;
|
728 |
-
}
|
729 |
-
|
730 |
-
|
731 |
-
/**
|
732 |
-
* Check If Premium Duplicator is enabled
|
733 |
-
*
|
734 |
-
* @since 3.20.9
|
735 |
-
* @access public
|
736 |
-
*
|
737 |
-
* @return boolean
|
738 |
-
*/
|
739 |
-
public static function check_duplicator() {
|
740 |
-
|
741 |
-
$settings = self::get_enabled_elements();
|
742 |
-
|
743 |
-
if ( ! isset( $settings['premium-duplicator'] ) ) {
|
744 |
-
return true;
|
745 |
-
}
|
746 |
-
|
747 |
-
$is_enabled = $settings['premium-duplicator'];
|
748 |
-
|
749 |
-
return $is_enabled;
|
750 |
-
}
|
751 |
-
|
752 |
-
/**
|
753 |
-
* Get Integrations Settings
|
754 |
-
*
|
755 |
-
* Get plugin integrations settings
|
756 |
-
*
|
757 |
-
* @since 3.20.9
|
758 |
-
* @access public
|
759 |
-
*
|
760 |
-
* @return array $settings integrations settings
|
761 |
-
*/
|
762 |
-
public static function get_integrations_settings() {
|
763 |
-
|
764 |
-
$enabled_keys = get_option( 'pa_maps_save_settings', self::get_default_integrations() );
|
765 |
-
|
766 |
-
return $enabled_keys;
|
767 |
-
|
768 |
-
}
|
769 |
-
|
770 |
-
/**
|
771 |
-
* Run PA Rollback
|
772 |
-
*
|
773 |
-
* Trigger PA Rollback actions
|
774 |
-
*
|
775 |
-
* @since 4.2.5
|
776 |
-
* @access public
|
777 |
-
*/
|
778 |
-
public function run_pa_rollback() {
|
779 |
-
|
780 |
-
check_admin_referer( 'premium_addons_rollback' );
|
781 |
-
|
782 |
-
$plugin_slug = basename( PREMIUM_ADDONS_FILE, '.php' );
|
783 |
-
|
784 |
-
$pa_rollback = new PA_Rollback(
|
785 |
-
array(
|
786 |
-
'version' => PREMIUM_ADDONS_STABLE_VERSION,
|
787 |
-
'plugin_name' => PREMIUM_ADDONS_BASENAME,
|
788 |
-
'plugin_slug' => $plugin_slug,
|
789 |
-
'package_url' => sprintf( 'https://downloads.wordpress.org/plugin/%s.%s.zip', $plugin_slug, PREMIUM_ADDONS_STABLE_VERSION ),
|
790 |
-
)
|
791 |
-
);
|
792 |
-
|
793 |
-
$pa_rollback->run();
|
794 |
-
|
795 |
-
wp_die(
|
796 |
-
'',
|
797 |
-
esc_html( __( 'Rollback to Previous Version', 'premium-addons-for-elementor' ) ),
|
798 |
-
array(
|
799 |
-
'response' => 200,
|
800 |
-
)
|
801 |
-
);
|
802 |
-
|
803 |
-
}
|
804 |
-
|
805 |
-
/**
|
806 |
-
* Creates and returns an instance of the class
|
807 |
-
*
|
808 |
-
* @since 1.0.0
|
809 |
-
* @access public
|
810 |
-
*
|
811 |
-
* @return object
|
812 |
-
*/
|
813 |
-
public static function get_instance() {
|
814 |
-
|
815 |
-
if ( ! isset( self::$instance ) ) {
|
816 |
-
|
817 |
-
self::$instance = new self();
|
818 |
-
|
819 |
-
}
|
820 |
-
|
821 |
-
return self::$instance;
|
822 |
-
}
|
823 |
-
}
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* PA Admin Helper
|
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_Helper
|
16 |
+
*/
|
17 |
+
class Admin_Helper {
|
18 |
+
|
19 |
+
/**
|
20 |
+
* Admin settings tabs
|
21 |
+
*
|
22 |
+
* @var tabs
|
23 |
+
*/
|
24 |
+
private static $tabs = null;
|
25 |
+
|
26 |
+
/**
|
27 |
+
* Class instance
|
28 |
+
*
|
29 |
+
* @var instance
|
30 |
+
*/
|
31 |
+
private static $instance = null;
|
32 |
+
|
33 |
+
/**
|
34 |
+
* Premium Addons Settings Page Slug
|
35 |
+
*
|
36 |
+
* @var page_slug
|
37 |
+
*/
|
38 |
+
protected $page_slug = 'premium-addons';
|
39 |
+
|
40 |
+
/**
|
41 |
+
* Current Screen ID
|
42 |
+
*
|
43 |
+
* @var current_screen
|
44 |
+
*/
|
45 |
+
public static $current_screen = null;
|
46 |
+
|
47 |
+
/**
|
48 |
+
* Elements List
|
49 |
+
*
|
50 |
+
* @var elements_list
|
51 |
+
*/
|
52 |
+
public static $elements_list = null;
|
53 |
+
|
54 |
+
/**
|
55 |
+
* Integrations List
|
56 |
+
*
|
57 |
+
* @var integrations_list
|
58 |
+
*/
|
59 |
+
public static $integrations_list = null;
|
60 |
+
|
61 |
+
/**
|
62 |
+
* Constructor for the class
|
63 |
+
*/
|
64 |
+
public function __construct() {
|
65 |
+
|
66 |
+
// Get current screen ID.
|
67 |
+
add_action( 'current_screen', array( $this, 'get_current_screen' ) );
|
68 |
+
|
69 |
+
// Insert admin settings submenus.
|
70 |
+
$this->set_admin_tabs();
|
71 |
+
add_action( 'admin_menu', array( $this, 'add_menu_tabs' ), 100 );
|
72 |
+
|
73 |
+
// Enqueue required admin scripts.
|
74 |
+
add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
|
75 |
+
|
76 |
+
// Plugin Action Links.
|
77 |
+
add_filter( 'plugin_action_links_' . PREMIUM_ADDONS_BASENAME, array( $this, 'insert_action_links' ) );
|
78 |
+
add_filter( 'plugin_row_meta', array( $this, 'plugin_row_meta' ), 10, 2 );
|
79 |
+
|
80 |
+
// Register AJAX HOOKS.
|
81 |
+
add_action( 'wp_ajax_pa_save_global_btn', array( $this, 'save_global_btn_value' ) );
|
82 |
+
add_action( 'wp_ajax_pa_elements_settings', array( $this, 'save_settings' ) );
|
83 |
+
add_action( 'wp_ajax_pa_additional_settings', array( $this, 'save_additional_settings' ) );
|
84 |
+
|
85 |
+
add_action( 'pa_before_render_admin_tabs', array( $this, 'render_dashboard_header' ) );
|
86 |
+
|
87 |
+
// Register Rollback hooks.
|
88 |
+
add_action( 'admin_post_premium_addons_rollback', array( $this, 'run_pa_rollback' ) );
|
89 |
+
|
90 |
+
// Beta_Testers::get_instance();
|
91 |
+
|
92 |
+
if ( is_admin() ) {
|
93 |
+
$current_page = $_SERVER['REQUEST_URI'];
|
94 |
+
if ( false === strpos( $current_page, 'action=elementor' ) ) {
|
95 |
+
Admin_Notices::get_instance();
|
96 |
+
|
97 |
+
// PA Duplicator.
|
98 |
+
if ( self::check_duplicator() ) {
|
99 |
+
Duplicator::get_instance();
|
100 |
+
}
|
101 |
+
}
|
102 |
+
}
|
103 |
+
|
104 |
+
}
|
105 |
+
|
106 |
+
/**
|
107 |
+
* Get Elements List
|
108 |
+
*
|
109 |
+
* Get a list of all the elements available in the plugin
|
110 |
+
*
|
111 |
+
* @since 3.20.9
|
112 |
+
* @access private
|
113 |
+
*
|
114 |
+
* @return array widget_list
|
115 |
+
*/
|
116 |
+
private static function get_elements_list() {
|
117 |
+
|
118 |
+
if ( null === self::$elements_list ) {
|
119 |
+
|
120 |
+
self::$elements_list = require_once PREMIUM_ADDONS_PATH . 'admin/includes/elements.php';
|
121 |
+
|
122 |
+
}
|
123 |
+
|
124 |
+
return self::$elements_list;
|
125 |
+
|
126 |
+
}
|
127 |
+
|
128 |
+
/**
|
129 |
+
* Get Integrations List
|
130 |
+
*
|
131 |
+
* Get a list of all the integrations available in the plugin
|
132 |
+
*
|
133 |
+
* @since 3.20.9
|
134 |
+
* @access private
|
135 |
+
*
|
136 |
+
* @return array integrations_list
|
137 |
+
*/
|
138 |
+
private static function get_integrations_list() {
|
139 |
+
|
140 |
+
if ( null === self::$integrations_list ) {
|
141 |
+
|
142 |
+
self::$integrations_list = array(
|
143 |
+
'premium-map-api',
|
144 |
+
'premium-youtube-api',
|
145 |
+
'premium-map-disable-api',
|
146 |
+
'premium-map-cluster',
|
147 |
+
'premium-map-locale',
|
148 |
+
'is-beta-tester',
|
149 |
+
);
|
150 |
+
|
151 |
+
}
|
152 |
+
|
153 |
+
return self::$integrations_list;
|
154 |
+
|
155 |
+
}
|
156 |
+
|
157 |
+
/**
|
158 |
+
* Admin Enqueue Scripts
|
159 |
+
*
|
160 |
+
* Enqueue the required assets on our admin pages
|
161 |
+
*
|
162 |
+
* @since 1.0.0
|
163 |
+
* @access public
|
164 |
+
*/
|
165 |
+
public function admin_enqueue_scripts() {
|
166 |
+
|
167 |
+
wp_enqueue_style(
|
168 |
+
'pa_admin_icon',
|
169 |
+
PREMIUM_ADDONS_URL . 'admin/assets/fonts/style.css',
|
170 |
+
array(),
|
171 |
+
PREMIUM_ADDONS_VERSION,
|
172 |
+
'all'
|
173 |
+
);
|
174 |
+
|
175 |
+
$suffix = is_rtl() ? '-rtl' : '';
|
176 |
+
|
177 |
+
$current_screen = self::get_current_screen();
|
178 |
+
|
179 |
+
wp_enqueue_style(
|
180 |
+
'pa-notice-css',
|
181 |
+
PREMIUM_ADDONS_URL . 'admin/assets/css/notice' . $suffix . '.css',
|
182 |
+
array(),
|
183 |
+
PREMIUM_ADDONS_VERSION,
|
184 |
+
'all'
|
185 |
+
);
|
186 |
+
|
187 |
+
if ( strpos( $current_screen, $this->page_slug ) !== false ) {
|
188 |
+
|
189 |
+
wp_enqueue_style(
|
190 |
+
'pa-admin-css',
|
191 |
+
PREMIUM_ADDONS_URL . 'admin/assets/css/admin' . $suffix . '.css',
|
192 |
+
array(),
|
193 |
+
PREMIUM_ADDONS_VERSION,
|
194 |
+
'all'
|
195 |
+
);
|
196 |
+
|
197 |
+
wp_enqueue_style(
|
198 |
+
'pa-sweetalert-style',
|
199 |
+
PREMIUM_ADDONS_URL . 'admin/assets/js/sweetalert2/sweetalert2.min.css',
|
200 |
+
array(),
|
201 |
+
PREMIUM_ADDONS_VERSION,
|
202 |
+
'all'
|
203 |
+
);
|
204 |
+
|
205 |
+
wp_enqueue_script(
|
206 |
+
'pa-admin',
|
207 |
+
PREMIUM_ADDONS_URL . 'admin/assets/js/admin.js',
|
208 |
+
array( 'jquery' ),
|
209 |
+
PREMIUM_ADDONS_VERSION,
|
210 |
+
true
|
211 |
+
);
|
212 |
+
|
213 |
+
wp_enqueue_script(
|
214 |
+
'pa-sweetalert-core',
|
215 |
+
PREMIUM_ADDONS_URL . 'admin/assets/js/sweetalert2/core.js',
|
216 |
+
array( 'jquery' ),
|
217 |
+
PREMIUM_ADDONS_VERSION,
|
218 |
+
true
|
219 |
+
);
|
220 |
+
|
221 |
+
wp_enqueue_script(
|
222 |
+
'pa-sweetalert',
|
223 |
+
PREMIUM_ADDONS_URL . 'admin/assets/js/sweetalert2/sweetalert2.min.js',
|
224 |
+
array( 'jquery', 'pa-sweetalert-core' ),
|
225 |
+
PREMIUM_ADDONS_VERSION,
|
226 |
+
true
|
227 |
+
);
|
228 |
+
|
229 |
+
$theme_slug = Helper_Functions::get_installed_theme();
|
230 |
+
|
231 |
+
$localized_data = array(
|
232 |
+
'settings' => array(
|
233 |
+
'ajaxurl' => admin_url( 'admin-ajax.php' ),
|
234 |
+
'nonce' => wp_create_nonce( 'pa-settings-tab' ),
|
235 |
+
'theme' => $theme_slug,
|
236 |
+
),
|
237 |
+
'premiumRollBackConfirm' => array(
|
238 |
+
'home_url' => home_url(),
|
239 |
+
'i18n' => array(
|
240 |
+
'rollback_to_previous_version' => __( 'Rollback to Previous Version', 'premium-addons-for-elementor' ),
|
241 |
+
/* translators: %s: PA stable version */
|
242 |
+
'rollback_confirm' => sprintf( __( 'Are you sure you want to reinstall version %s?', 'premium-addons-for-elementor' ), PREMIUM_ADDONS_STABLE_VERSION ),
|
243 |
+
'yes' => __( 'Continue', 'premium-addons-for-elementor' ),
|
244 |
+
'cancel' => __( 'Cancel', 'premium-addons-for-elementor' ),
|
245 |
+
),
|
246 |
+
),
|
247 |
+
);
|
248 |
+
|
249 |
+
// Add PAPRO Rollback Confirm message if PAPRO installed.
|
250 |
+
if ( Helper_Functions::check_papro_version() ) {
|
251 |
+
/* translators: %s: PA stable version */
|
252 |
+
$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 );
|
253 |
+
}
|
254 |
+
|
255 |
+
wp_localize_script( 'pa-admin', 'premiumAddonsSettings', $localized_data );
|
256 |
+
|
257 |
+
}
|
258 |
+
}
|
259 |
+
|
260 |
+
/**
|
261 |
+
* Insert action links.
|
262 |
+
*
|
263 |
+
* Adds action links to the plugin list table
|
264 |
+
*
|
265 |
+
* Fired by `plugin_action_links` filter.
|
266 |
+
*
|
267 |
+
* @param array $links plugin action links.
|
268 |
+
*
|
269 |
+
* @since 1.0.0
|
270 |
+
* @access public
|
271 |
+
*/
|
272 |
+
public function insert_action_links( $links ) {
|
273 |
+
|
274 |
+
$papro_path = 'premium-addons-pro/premium-addons-pro-for-elementor.php';
|
275 |
+
|
276 |
+
$is_papro_installed = Helper_Functions::is_plugin_installed( $papro_path );
|
277 |
+
|
278 |
+
$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' ) );
|
279 |
+
|
280 |
+
$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 );
|
281 |
+
|
282 |
+
$new_links = array( $settings_link, $rollback_link );
|
283 |
+
|
284 |
+
if ( ! $is_papro_installed ) {
|
285 |
+
|
286 |
+
$link = Helper_Functions::get_campaign_link( 'https://premiumaddons.com/pro', 'plugins-page', 'wp-dash', 'get-pro' );
|
287 |
+
|
288 |
+
$pro_link = sprintf( '<a href="%s" target="_blank" style="color: #39b54a; font-weight: bold;">%s</a>', $link, __( 'Go Pro', 'premium-addons-for-elementor' ) );
|
289 |
+
array_push( $new_links, $pro_link );
|
290 |
+
}
|
291 |
+
|
292 |
+
$new_links = array_merge( $links, $new_links );
|
293 |
+
|
294 |
+
return $new_links;
|
295 |
+
}
|
296 |
+
|
297 |
+
/**
|
298 |
+
* Plugin row meta.
|
299 |
+
*
|
300 |
+
* Extends plugin row meta links
|
301 |
+
*
|
302 |
+
* Fired by `plugin_row_meta` filter.
|
303 |
+
*
|
304 |
+
* @since 3.8.4
|
305 |
+
* @access public
|
306 |
+
*
|
307 |
+
* @param array $meta array of the plugin's metadata.
|
308 |
+
* @param string $file path to the plugin file.
|
309 |
+
*
|
310 |
+
* @return array An array of plugin row meta links.
|
311 |
+
*/
|
312 |
+
public function plugin_row_meta( $meta, $file ) {
|
313 |
+
|
314 |
+
if ( Helper_Functions::is_hide_row_meta() ) {
|
315 |
+
return $meta;
|
316 |
+
}
|
317 |
+
|
318 |
+
if ( PREMIUM_ADDONS_BASENAME === $file ) {
|
319 |
+
|
320 |
+
$link = Helper_Functions::get_campaign_link( 'https://premiumaddons.com/support', 'plugins-page', 'wp-dash', 'get-support' );
|
321 |
+
|
322 |
+
$row_meta = array(
|
323 |
+
'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>',
|
324 |
+
'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>',
|
325 |
+
);
|
326 |
+
|
327 |
+
$meta = array_merge( $meta, $row_meta );
|
328 |
+
}
|
329 |
+
|
330 |
+
return $meta;
|
331 |
+
|
332 |
+
}
|
333 |
+
|
334 |
+
/**
|
335 |
+
* Gets current screen slug
|
336 |
+
*
|
337 |
+
* @since 3.3.8
|
338 |
+
* @access public
|
339 |
+
*
|
340 |
+
* @return string current screen slug
|
341 |
+
*/
|
342 |
+
public static function get_current_screen() {
|
343 |
+
|
344 |
+
self::$current_screen = get_current_screen()->id;
|
345 |
+
|
346 |
+
return isset( self::$current_screen ) ? self::$current_screen : false;
|
347 |
+
|
348 |
+
}
|
349 |
+
|
350 |
+
/**
|
351 |
+
* Set Admin Tabs
|
352 |
+
*
|
353 |
+
* @access private
|
354 |
+
* @since 3.20.8
|
355 |
+
*/
|
356 |
+
private function set_admin_tabs() {
|
357 |
+
|
358 |
+
$slug = $this->page_slug;
|
359 |
+
|
360 |
+
self::$tabs = array(
|
361 |
+
'general' => array(
|
362 |
+
'id' => 'general',
|
363 |
+
'slug' => $slug . '#tab=general',
|
364 |
+
'title' => __( 'General', 'premium-addons-for-elementor' ),
|
365 |
+
'href' => '#tab=general',
|
366 |
+
'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/general',
|
367 |
+
),
|
368 |
+
'elements' => array(
|
369 |
+
'id' => 'elements',
|
370 |
+
'slug' => $slug . '#tab=elements',
|
371 |
+
'title' => __( 'Widgets & Add-ons', 'premium-addons-for-elementor' ),
|
372 |
+
'href' => '#tab=elements',
|
373 |
+
'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/modules-settings',
|
374 |
+
),
|
375 |
+
'features' => array(
|
376 |
+
'id' => 'features',
|
377 |
+
'slug' => $slug . '#tab=features',
|
378 |
+
'title' => __( 'Features', 'premium-addons-for-elementor' ),
|
379 |
+
'href' => '#tab=features',
|
380 |
+
'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/features',
|
381 |
+
),
|
382 |
+
'integrations' => array(
|
383 |
+
'id' => 'integrations',
|
384 |
+
'slug' => $slug . '#tab=integrations',
|
385 |
+
'title' => __( 'Integrations', 'premium-addons-for-elementor' ),
|
386 |
+
'href' => '#tab=integrations',
|
387 |
+
'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/integrations',
|
388 |
+
),
|
389 |
+
'version-control' => array(
|
390 |
+
'id' => 'vcontrol',
|
391 |
+
'slug' => $slug . '#tab=vcontrol',
|
392 |
+
'title' => __( 'Version Control', 'premium-addons-for-elementor' ),
|
393 |
+
'href' => '#tab=vcontrol',
|
394 |
+
'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/version-control',
|
395 |
+
),
|
396 |
+
'white-label' => array(
|
397 |
+
'id' => 'white-label',
|
398 |
+
'slug' => $slug . '#tab=white-label',
|
399 |
+
'title' => __( 'White Labeling', 'premium-addons-for-elementor' ),
|
400 |
+
'href' => '#tab=white-label',
|
401 |
+
'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/white-label',
|
402 |
+
),
|
403 |
+
'info' => array(
|
404 |
+
'id' => 'system-info',
|
405 |
+
'slug' => $slug . '#tab=system-info',
|
406 |
+
'title' => __( 'System Info', 'premium-addons-for-elementor' ),
|
407 |
+
'href' => '#tab=system-info',
|
408 |
+
'template' => PREMIUM_ADDONS_PATH . 'admin/includes/templates/info',
|
409 |
+
),
|
410 |
+
);
|
411 |
+
|
412 |
+
self::$tabs = apply_filters( 'pa_admin_register_tabs', self::$tabs );
|
413 |
+
|
414 |
+
}
|
415 |
+
|
416 |
+
/**
|
417 |
+
* Add Menu Tabs
|
418 |
+
*
|
419 |
+
* Create Submenu Page
|
420 |
+
*
|
421 |
+
* @since 3.20.9
|
422 |
+
* @access public
|
423 |
+
*
|
424 |
+
* @return void
|
425 |
+
*/
|
426 |
+
public function add_menu_tabs() {
|
427 |
+
|
428 |
+
$plugin_name = Helper_Functions::name();
|
429 |
+
|
430 |
+
call_user_func(
|
431 |
+
'add_menu_page',
|
432 |
+
$plugin_name,
|
433 |
+
$plugin_name,
|
434 |
+
'manage_options',
|
435 |
+
$this->page_slug,
|
436 |
+
array( $this, 'render_setting_tabs' ),
|
437 |
+
'',
|
438 |
+
100
|
439 |
+
);
|
440 |
+
|
441 |
+
foreach ( self::$tabs as $tab ) {
|
442 |
+
|
443 |
+
call_user_func(
|
444 |
+
'add_submenu_page',
|
445 |
+
$this->page_slug,
|
446 |
+
$tab['title'],
|
447 |
+
$tab['title'],
|
448 |
+
'manage_options',
|
449 |
+
$tab['slug'],
|
450 |
+
'__return_null'
|
451 |
+
);
|
452 |
+
}
|
453 |
+
|
454 |
+
remove_submenu_page( $this->page_slug, $this->page_slug );
|
455 |
+
}
|
456 |
+
|
457 |
+
/**
|
458 |
+
* Render Setting Tabs
|
459 |
+
*
|
460 |
+
* Render the final HTML content for admin setting tabs
|
461 |
+
*
|
462 |
+
* @access public
|
463 |
+
* @since 3.20.8
|
464 |
+
*/
|
465 |
+
public function render_setting_tabs() {
|
466 |
+
|
467 |
+
?>
|
468 |
+
<div class="pa-settings-wrap">
|
469 |
+
<?php do_action( 'pa_before_render_admin_tabs' ); ?>
|
470 |
+
<div class="pa-settings-tabs">
|
471 |
+
<ul class="pa-settings-tabs-list">
|
472 |
+
<?php
|
473 |
+
foreach ( self::$tabs as $key => $tab ) {
|
474 |
+
$link = '<li class="pa-settings-tab">';
|
475 |
+
$link .= '<a id="pa-tab-link-' . esc_attr( $tab['id'] ) . '"';
|
476 |
+
$link .= ' href="' . esc_url( $tab['href'] ) . '">';
|
477 |
+
$link .= '<i class="pa-dash-' . esc_attr( $tab['id'] ) . '"></i>';
|
478 |
+
$link .= '<span>' . esc_html( $tab['title'] ) . '</span>';
|
479 |
+
$link .= '</a>';
|
480 |
+
$link .= '</li>';
|
481 |
+
|
482 |
+
echo $link;
|
483 |
+
}
|
484 |
+
?>
|
485 |
+
</ul>
|
486 |
+
</div> <!-- Settings Tabs -->
|
487 |
+
|
488 |
+
<div class="pa-settings-sections">
|
489 |
+
<?php
|
490 |
+
foreach ( self::$tabs as $key => $tab ) {
|
491 |
+
echo wp_kses_post( '<div id="pa-section-' . $tab['id'] . '" class="pa-section pa-section-' . $key . '">' );
|
492 |
+
include_once $tab['template'] . '.php';
|
493 |
+
echo '</div>';
|
494 |
+
}
|
495 |
+
?>
|
496 |
+
</div> <!-- Settings Sections -->
|
497 |
+
<?php do_action( 'pa_after_render_admin_tabs' ); ?>
|
498 |
+
</div> <!-- Settings Wrap -->
|
499 |
+
<?php
|
500 |
+
}
|
501 |
+
|
502 |
+
/**
|
503 |
+
* Render Dashboard Header
|
504 |
+
*
|
505 |
+
* @since 4.0.0
|
506 |
+
* @access public
|
507 |
+
*/
|
508 |
+
public function render_dashboard_header() {
|
509 |
+
|
510 |
+
$url = Helper_Functions::get_campaign_link( 'https://premiumaddons.com/pro/', 'settings-page', 'wp-dash', 'dashboard' );
|
511 |
+
|
512 |
+
$show_logo = Helper_Functions::is_hide_logo();
|
513 |
+
|
514 |
+
?>
|
515 |
+
|
516 |
+
<div class="papro-admin-notice">
|
517 |
+
<?php if ( ! $show_logo ) : ?>
|
518 |
+
<div class="papro-admin-notice-left">
|
519 |
+
<div class="papro-admin-notice-logo">
|
520 |
+
<img class="pa-notice-logo" src="<?php echo esc_attr( PREMIUM_ADDONS_URL . 'admin/images/papro-notice-logo.png' ); ?>">
|
521 |
+
</div>
|
522 |
+
<a href="https://premiumaddons.com" target="_blank"></a>
|
523 |
+
</div>
|
524 |
+
<?php endif; ?>
|
525 |
+
|
526 |
+
<?php if ( ! Helper_Functions::check_papro_version() ) : ?>
|
527 |
+
<div class="papro-admin-notice-right">
|
528 |
+
<div class="papro-admin-notice-info">
|
529 |
+
<h4>
|
530 |
+
<?php echo esc_html( __( 'Get Premium Addons PRO', 'premium-addons-for-elementor' ) ); ?>
|
531 |
+
</h4>
|
532 |
+
<p>
|
533 |
+
<?php
|
534 |
+
/* translators: %s: html tags */
|
535 |
+
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>' ) );
|
536 |
+
?>
|
537 |
+
</p>
|
538 |
+
</div>
|
539 |
+
<div class="papro-admin-notice-cta">
|
540 |
+
<a class="papro-notice-btn" href="<?php echo esc_url( $url ); ?>" target="_blank">
|
541 |
+
<?php echo esc_html( __( 'Get PRO', 'premium-addons-for-elementor' ) ); ?>
|
542 |
+
</a>
|
543 |
+
</div>
|
544 |
+
</div>
|
545 |
+
<?php endif; ?>
|
546 |
+
</div>
|
547 |
+
|
548 |
+
<?php
|
549 |
+
}
|
550 |
+
|
551 |
+
/**
|
552 |
+
* Save Settings
|
553 |
+
*
|
554 |
+
* Save elements settings using AJAX
|
555 |
+
*
|
556 |
+
* @access public
|
557 |
+
* @since 3.20.8
|
558 |
+
*/
|
559 |
+
public function save_settings() {
|
560 |
+
|
561 |
+
check_ajax_referer( 'pa-settings-tab', 'security' );
|
562 |
+
|
563 |
+
if ( ! isset( $_POST['fields'] ) ) {
|
564 |
+
return;
|
565 |
+
}
|
566 |
+
|
567 |
+
parse_str( sanitize_text_field( $_POST['fields'] ), $settings );
|
568 |
+
|
569 |
+
$defaults = self::get_default_elements();
|
570 |
+
|
571 |
+
$elements = array_fill_keys( array_keys( array_intersect_key( $settings, $defaults ) ), true );
|
572 |
+
|
573 |
+
update_option( 'pa_save_settings', $elements );
|
574 |
+
|
575 |
+
wp_send_json_success();
|
576 |
+
}
|
577 |
+
|
578 |
+
/**
|
579 |
+
* Save Integrations Control Settings
|
580 |
+
*
|
581 |
+
* Stores integration and version control settings
|
582 |
+
*
|
583 |
+
* @since 3.20.8
|
584 |
+
* @access public
|
585 |
+
*/
|
586 |
+
public function save_additional_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 |
+
$new_settings = array(
|
597 |
+
'premium-map-api' => sanitize_text_field( $settings['premium-map-api'] ),
|
598 |
+
'premium-youtube-api' => sanitize_text_field( $settings['premium-youtube-api'] ),
|
599 |
+
'premium-map-disable-api' => intval( $settings['premium-map-disable-api'] ? 1 : 0 ),
|
600 |
+
'premium-map-cluster' => intval( $settings['premium-map-cluster'] ? 1 : 0 ),
|
601 |
+
'premium-map-locale' => sanitize_text_field( $settings['premium-map-locale'] ),
|
602 |
+
'is-beta-tester' => intval( $settings['is-beta-tester'] ? 1 : 0 ),
|
603 |
+
);
|
604 |
+
|
605 |
+
update_option( 'pa_maps_save_settings', $new_settings );
|
606 |
+
|
607 |
+
wp_send_json_success( $settings );
|
608 |
+
|
609 |
+
}
|
610 |
+
|
611 |
+
/**
|
612 |
+
* Save Global Button Value
|
613 |
+
*
|
614 |
+
* Saves value for elements global switcher
|
615 |
+
*
|
616 |
+
* @since 4.0.0
|
617 |
+
* @access public
|
618 |
+
*/
|
619 |
+
public function save_global_btn_value() {
|
620 |
+
|
621 |
+
check_ajax_referer( 'pa-settings-tab', 'security' );
|
622 |
+
|
623 |
+
if ( ! isset( $_POST['isGlobalOn'] ) ) {
|
624 |
+
wp_send_json_error();
|
625 |
+
}
|
626 |
+
|
627 |
+
$global_btn_value = sanitize_text_field( $_POST['isGlobalOn'] );
|
628 |
+
|
629 |
+
update_option( 'pa_global_btn_value', $global_btn_value );
|
630 |
+
|
631 |
+
wp_send_json_success();
|
632 |
+
|
633 |
+
}
|
634 |
+
|
635 |
+
/**
|
636 |
+
* Get default Elements
|
637 |
+
*
|
638 |
+
* @since 3.20.9
|
639 |
+
* @access private
|
640 |
+
*
|
641 |
+
* @return $default_keys array keys defaults
|
642 |
+
*/
|
643 |
+
private static function get_default_elements() {
|
644 |
+
|
645 |
+
$elements = self::get_elements_list();
|
646 |
+
|
647 |
+
$keys = array();
|
648 |
+
|
649 |
+
// Now, we need to fill our array with elements keys.
|
650 |
+
foreach ( $elements as $cat ) {
|
651 |
+
if ( count( $cat['elements'] ) ) {
|
652 |
+
foreach ( $cat['elements'] as $elem ) {
|
653 |
+
array_push( $keys, $elem['key'] );
|
654 |
+
}
|
655 |
+
}
|
656 |
+
}
|
657 |
+
|
658 |
+
$default_keys = array_fill_keys( $keys, true );
|
659 |
+
|
660 |
+
return $default_keys;
|
661 |
+
|
662 |
+
}
|
663 |
+
|
664 |
+
/**
|
665 |
+
* Get Default Interations
|
666 |
+
*
|
667 |
+
* @since 3.20.9
|
668 |
+
* @access private
|
669 |
+
*
|
670 |
+
* @return $default_keys array default keys
|
671 |
+
*/
|
672 |
+
private static function get_default_integrations() {
|
673 |
+
|
674 |
+
$settings = self::get_integrations_list();
|
675 |
+
|
676 |
+
$default_keys = array_fill_keys( $settings, true );
|
677 |
+
|
678 |
+
// Beta Tester should NOT be enabled by default.
|
679 |
+
$default_keys['is-beta-tester'] = false;
|
680 |
+
|
681 |
+
return $default_keys;
|
682 |
+
|
683 |
+
}
|
684 |
+
|
685 |
+
/**
|
686 |
+
* Get enabled widgets
|
687 |
+
*
|
688 |
+
* @since 3.20.9
|
689 |
+
* @access public
|
690 |
+
*
|
691 |
+
* @return array $enabled_keys enabled elements
|
692 |
+
*/
|
693 |
+
public static function get_enabled_elements() {
|
694 |
+
|
695 |
+
$defaults = self::get_default_elements();
|
696 |
+
|
697 |
+
$enabled_keys = get_option( 'pa_save_settings', $defaults );
|
698 |
+
|
699 |
+
foreach ( $defaults as $key => $value ) {
|
700 |
+
if ( ! isset( $enabled_keys[ $key ] ) ) {
|
701 |
+
$defaults[ $key ] = 0;
|
702 |
+
}
|
703 |
+
}
|
704 |
+
|
705 |
+
return $defaults;
|
706 |
+
|
707 |
+
}
|
708 |
+
|
709 |
+
/**
|
710 |
+
* Check If Premium Templates is enabled
|
711 |
+
*
|
712 |
+
* @since 3.6.0
|
713 |
+
* @access public
|
714 |
+
*
|
715 |
+
* @return boolean
|
716 |
+
*/
|
717 |
+
public static function check_premium_templates() {
|
718 |
+
|
719 |
+
$settings = self::get_enabled_elements();
|
720 |
+
|
721 |
+
if ( ! isset( $settings['premium-templates'] ) ) {
|
722 |
+
return true;
|
723 |
+
}
|
724 |
+
|
725 |
+
$is_enabled = $settings['premium-templates'];
|
726 |
+
|
727 |
+
return $is_enabled;
|
728 |
+
}
|
729 |
+
|
730 |
+
|
731 |
+
/**
|
732 |
+
* Check If Premium Duplicator is enabled
|
733 |
+
*
|
734 |
+
* @since 3.20.9
|
735 |
+
* @access public
|
736 |
+
*
|
737 |
+
* @return boolean
|
738 |
+
*/
|
739 |
+
public static function check_duplicator() {
|
740 |
+
|
741 |
+
$settings = self::get_enabled_elements();
|
742 |
+
|
743 |
+
if ( ! isset( $settings['premium-duplicator'] ) ) {
|
744 |
+
return true;
|
745 |
+
}
|
746 |
+
|
747 |
+
$is_enabled = $settings['premium-duplicator'];
|
748 |
+
|
749 |
+
return $is_enabled;
|
750 |
+
}
|
751 |
+
|
752 |
+
/**
|
753 |
+
* Get Integrations Settings
|
754 |
+
*
|
755 |
+
* Get plugin integrations settings
|
756 |
+
*
|
757 |
+
* @since 3.20.9
|
758 |
+
* @access public
|
759 |
+
*
|
760 |
+
* @return array $settings integrations settings
|
761 |
+
*/
|
762 |
+
public static function get_integrations_settings() {
|
763 |
+
|
764 |
+
$enabled_keys = get_option( 'pa_maps_save_settings', self::get_default_integrations() );
|
765 |
+
|
766 |
+
return $enabled_keys;
|
767 |
+
|
768 |
+
}
|
769 |
+
|
770 |
+
/**
|
771 |
+
* Run PA Rollback
|
772 |
+
*
|
773 |
+
* Trigger PA Rollback actions
|
774 |
+
*
|
775 |
+
* @since 4.2.5
|
776 |
+
* @access public
|
777 |
+
*/
|
778 |
+
public function run_pa_rollback() {
|
779 |
+
|
780 |
+
check_admin_referer( 'premium_addons_rollback' );
|
781 |
+
|
782 |
+
$plugin_slug = basename( PREMIUM_ADDONS_FILE, '.php' );
|
783 |
+
|
784 |
+
$pa_rollback = new PA_Rollback(
|
785 |
+
array(
|
786 |
+
'version' => PREMIUM_ADDONS_STABLE_VERSION,
|
787 |
+
'plugin_name' => PREMIUM_ADDONS_BASENAME,
|
788 |
+
'plugin_slug' => $plugin_slug,
|
789 |
+
'package_url' => sprintf( 'https://downloads.wordpress.org/plugin/%s.%s.zip', $plugin_slug, PREMIUM_ADDONS_STABLE_VERSION ),
|
790 |
+
)
|
791 |
+
);
|
792 |
+
|
793 |
+
$pa_rollback->run();
|
794 |
+
|
795 |
+
wp_die(
|
796 |
+
'',
|
797 |
+
esc_html( __( 'Rollback to Previous Version', 'premium-addons-for-elementor' ) ),
|
798 |
+
array(
|
799 |
+
'response' => 200,
|
800 |
+
)
|
801 |
+
);
|
802 |
+
|
803 |
+
}
|
804 |
+
|
805 |
+
/**
|
806 |
+
* Creates and returns an instance of the class
|
807 |
+
*
|
808 |
+
* @since 1.0.0
|
809 |
+
* @access public
|
810 |
+
*
|
811 |
+
* @return object
|
812 |
+
*/
|
813 |
+
public static function get_instance() {
|
814 |
+
|
815 |
+
if ( ! isset( self::$instance ) ) {
|
816 |
+
|
817 |
+
self::$instance = new self();
|
818 |
+
|
819 |
+
}
|
820 |
+
|
821 |
+
return self::$instance;
|
822 |
+
}
|
823 |
+
}
|
assets/frontend/css/premium-addons-rtl.css
CHANGED
@@ -1,8170 +1,8170 @@
|
|
1 |
-
@font-face {
|
2 |
-
font-family: "pa-elements";
|
3 |
-
src: url("../../editor/fonts/pa-elements.eot?p2y7wv");
|
4 |
-
src: url("../../editor/fonts/pa-elements.eot?p2y7wv#iefix") format("embedded-opentype"),
|
5 |
-
url("../../editor/fonts/pa-elements.ttf?p2y7wv") format("truetype"),
|
6 |
-
url("../../editor/fonts/pa-elements.woff?p2y7wv") format("woff"),
|
7 |
-
url("../../editor/fonts/pa-elements.svg?p2y7wv#pa-elements") format("svg");
|
8 |
-
font-weight: normal;
|
9 |
-
font-style: normal;
|
10 |
-
}
|
11 |
-
|
12 |
-
/**************** Premium Banner ****************/
|
13 |
-
/************************************************/
|
14 |
-
.premium-banner {
|
15 |
-
overflow: hidden;
|
16 |
-
}
|
17 |
-
|
18 |
-
.premium-banner-ib {
|
19 |
-
display: block;
|
20 |
-
position: relative;
|
21 |
-
}
|
22 |
-
|
23 |
-
.premium-banner-ib img {
|
24 |
-
display: block;
|
25 |
-
position: relative;
|
26 |
-
}
|
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 |
-
}
|
37 |
-
|
38 |
-
.premium-banner-img-wrap .premium-banner-ib-img {
|
39 |
-
-webkit-flex-shrink: 0;
|
40 |
-
-ms-flex-negative: 0;
|
41 |
-
flex-shrink: 0;
|
42 |
-
}
|
43 |
-
|
44 |
-
.premium-banner-ib {
|
45 |
-
z-index: 1;
|
46 |
-
overflow: hidden;
|
47 |
-
margin: 0 0 35px;
|
48 |
-
text-align: center;
|
49 |
-
-webkit-box-sizing: border-box;
|
50 |
-
-moz-box-sizing: border-box;
|
51 |
-
box-sizing: border-box;
|
52 |
-
}
|
53 |
-
|
54 |
-
.premium-banner-ib-desc .premium-banner-read-more {
|
55 |
-
z-index: 100;
|
56 |
-
}
|
57 |
-
|
58 |
-
.premium-banner-ib,
|
59 |
-
.wpb_column>.wpb_wrapper .premium-banner-ib {
|
60 |
-
margin-bottom: 0px;
|
61 |
-
}
|
62 |
-
|
63 |
-
.elementor-widget-premium-addon-banner .premium-banner-ib-title {
|
64 |
-
background: transparent;
|
65 |
-
}
|
66 |
-
|
67 |
-
.premium-banner-ib *,
|
68 |
-
.premium-banner-ib .premium-banner-ib-desc {
|
69 |
-
-webkit-box-sizing: border-box;
|
70 |
-
-moz-box-sizing: border-box;
|
71 |
-
box-sizing: border-box;
|
72 |
-
}
|
73 |
-
|
74 |
-
.premium-banner-ib img {
|
75 |
-
min-width: 100%;
|
76 |
-
max-width: 100%;
|
77 |
-
-webkit-transition: opacity 0.35s;
|
78 |
-
transition: opacity 0.35s;
|
79 |
-
}
|
80 |
-
|
81 |
-
.premium-banner-ib .premium-banner-ib-desc {
|
82 |
-
padding: 15px;
|
83 |
-
-webkit-backface-visibility: hidden;
|
84 |
-
backface-visibility: hidden;
|
85 |
-
-webkit-box-sizing: border-box;
|
86 |
-
-moz-box-sizing: border-box;
|
87 |
-
box-sizing: border-box;
|
88 |
-
position: absolute;
|
89 |
-
top: 0;
|
90 |
-
right: 0;
|
91 |
-
width: 100%;
|
92 |
-
height: 100%;
|
93 |
-
}
|
94 |
-
|
95 |
-
.premium-banner-ib .premium-banner-ib-link {
|
96 |
-
position: absolute;
|
97 |
-
top: 0;
|
98 |
-
right: 0;
|
99 |
-
width: 100%;
|
100 |
-
height: 100%;
|
101 |
-
z-index: 1000;
|
102 |
-
text-indent: 200%;
|
103 |
-
white-space: nowrap;
|
104 |
-
font-size: 0;
|
105 |
-
opacity: 0;
|
106 |
-
}
|
107 |
-
|
108 |
-
.premium-banner-ib a.premium-banner-ib-link {
|
109 |
-
display: block;
|
110 |
-
background: 100% 0;
|
111 |
-
}
|
112 |
-
|
113 |
-
.premium-banner-animation1 img {
|
114 |
-
width: -webkit-calc(100% + 50px) !important;
|
115 |
-
width: calc(100% + 50px) !important;
|
116 |
-
max-width: -webkit-calc(100% + 50px) !important;
|
117 |
-
max-width: calc(100% + 50px) !important;
|
118 |
-
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
119 |
-
transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
120 |
-
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
121 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s;
|
122 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
123 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
124 |
-
-webkit-transform: translate3d(40px, 0, 0);
|
125 |
-
transform: translate3d(40px, 0, 0);
|
126 |
-
}
|
127 |
-
|
128 |
-
.premium-banner-animation2 .premium-banner-ib-title {
|
129 |
-
padding: 15px;
|
130 |
-
}
|
131 |
-
|
132 |
-
.premium-banner-animation1 .premium-banner-ib-desc {
|
133 |
-
top: auto;
|
134 |
-
bottom: 0;
|
135 |
-
min-height: 25%;
|
136 |
-
height: auto;
|
137 |
-
max-height: 100%;
|
138 |
-
text-align: right;
|
139 |
-
}
|
140 |
-
|
141 |
-
.premium-banner-animation1 .premium-banner-ib-content,
|
142 |
-
.premium-banner-animation1 .premium-banner-ib-title,
|
143 |
-
.premium-banner-animation1 .premium-banner-read-more {
|
144 |
-
-webkit-transform: translate3d(0, 40px, 0);
|
145 |
-
transform: translate3d(0, 40px, 0);
|
146 |
-
-webkit-transition-delay: 0.05s;
|
147 |
-
transition-delay: 0.05s;
|
148 |
-
-webkit-transition-duration: 0.35s;
|
149 |
-
transition-duration: 0.35s;
|
150 |
-
}
|
151 |
-
|
152 |
-
.premium-banner-animation1 .premium-banner-ib-title {
|
153 |
-
-webkit-transition: -webkit-transform 0.35s;
|
154 |
-
transition: -webkit-transform 0.35s;
|
155 |
-
transition: transform 0.35s;
|
156 |
-
transition: transform 0.35s, -webkit-transform 0.35s;
|
157 |
-
}
|
158 |
-
|
159 |
-
.premium-banner-animation1 .premium-banner-ib-content,
|
160 |
-
.premium-banner-animation1 .premium-banner-read-more {
|
161 |
-
margin-top: 10px;
|
162 |
-
opacity: 0;
|
163 |
-
-webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
|
164 |
-
transition: opacity 0.2s, -webkit-transform 0.35s;
|
165 |
-
transition: opacity 0.2s, transform 0.35s;
|
166 |
-
transition: opacity 0.2s, transform 0.35s, -webkit-transform 0.35s;
|
167 |
-
}
|
168 |
-
|
169 |
-
.premium-banner-animation1:hover .premium-banner-ib-content,
|
170 |
-
.premium-banner-animation1.active .premium-banner-ib-content,
|
171 |
-
.premium-banner-animation1:hover .premium-banner-read-more,
|
172 |
-
.premium-banner-animation1.active .premium-banner-read-more {
|
173 |
-
opacity: 1;
|
174 |
-
-webkit-transition-delay: 0.05s;
|
175 |
-
transition-delay: 0.05s;
|
176 |
-
-webkit-transition-duration: 0.35s;
|
177 |
-
transition-duration: 0.35s;
|
178 |
-
}
|
179 |
-
|
180 |
-
.premium-banner-animation1:hover .premium-banner-ib-content,
|
181 |
-
.premium-banner-animation1.active .premium-banner-ib-content,
|
182 |
-
.premium-banner-animation1:hover .premium-banner-read-more,
|
183 |
-
.premium-banner-animation1.active .premium-banner-read-more,
|
184 |
-
.premium-banner-animation1:hover .premium-banner-ib-title,
|
185 |
-
.premium-banner-animation1.active .premium-banner-ib-title,
|
186 |
-
.premium-banner-animation1:hover img,
|
187 |
-
.premium-banner-animation1.active img {
|
188 |
-
-webkit-transform: translate3d(0, 0, 0);
|
189 |
-
transform: translate3d(0, 0, 0);
|
190 |
-
-webkit-transition-delay: 0.05s;
|
191 |
-
transition-delay: 0.05s;
|
192 |
-
-webkit-transition-duration: 0.35s;
|
193 |
-
transition-duration: 0.35s;
|
194 |
-
}
|
195 |
-
|
196 |
-
.premium-banner-animation1.zoomout img,
|
197 |
-
.premium-banner-animation1.scale img {
|
198 |
-
-webkit-transform: translate3d(40px, 0, 0) scale(1.1);
|
199 |
-
transform: translate3d(40px, 0, 0) scale(1.1);
|
200 |
-
}
|
201 |
-
|
202 |
-
.premium-banner-ib.sepia img {
|
203 |
-
-webkit-filter: sepia(30%);
|
204 |
-
filter: sepia(30%);
|
205 |
-
}
|
206 |
-
|
207 |
-
.premium-banner-ib.bright img {
|
208 |
-
-webkit-filter: brightness(1);
|
209 |
-
filter: brightness(1);
|
210 |
-
}
|
211 |
-
|
212 |
-
.premium-banner-ib.sepia:hover img {
|
213 |
-
-webkit-filter: sepia(0%);
|
214 |
-
filter: sepia(0%);
|
215 |
-
}
|
216 |
-
|
217 |
-
.premium-banner-ib.bright:hover img {
|
218 |
-
-webkit-filter: brightness(1.2);
|
219 |
-
filter: brightness(1.2);
|
220 |
-
}
|
221 |
-
|
222 |
-
.premium-banner-animation1.premium-banner-min-height img,
|
223 |
-
.premium-banner-animation2.premium-banner-min-height img,
|
224 |
-
.premium-banner-animation4.premium-banner-min-height img,
|
225 |
-
.premium-banner-animation5.premium-banner-min-height img,
|
226 |
-
.premium-banner-animation6.premium-banner-min-height img,
|
227 |
-
.premium-banner-animation13.premium-banner-min-height img {
|
228 |
-
height: auto;
|
229 |
-
}
|
230 |
-
|
231 |
-
.premium-banner-animation2 img {
|
232 |
-
width: 100%;
|
233 |
-
}
|
234 |
-
|
235 |
-
.premium-banner-animation2 .premium-banner-ib-desc::before {
|
236 |
-
position: absolute;
|
237 |
-
content: "";
|
238 |
-
top: 0;
|
239 |
-
right: 0;
|
240 |
-
width: 100%;
|
241 |
-
height: 100%;
|
242 |
-
opacity: 0;
|
243 |
-
-webkit-transform: translate3d(0, 50%, 0);
|
244 |
-
transform: translate3d(0, 50%, 0);
|
245 |
-
}
|
246 |
-
|
247 |
-
.premium-banner-animation2 .premium-banner-ib-title {
|
248 |
-
position: absolute;
|
249 |
-
top: 50%;
|
250 |
-
right: 0;
|
251 |
-
width: 100%;
|
252 |
-
-webkit-transition: color 0.35s, -webkit-transform 0.35s;
|
253 |
-
transition: color 0.35s, -webkit-transform 0.35s;
|
254 |
-
transition: transform 0.35s, color 0.35s;
|
255 |
-
transition: transform 0.35s, color 0.35s, -webkit-transform 0.35s;
|
256 |
-
-webkit-transform: translate3d(0, -50%, 0);
|
257 |
-
transform: translate3d(0, -50%, 0);
|
258 |
-
}
|
259 |
-
|
260 |
-
.premium-banner-animation2 .premium-banner-ib-content,
|
261 |
-
.premium-banner-animation2 .premium-banner-read-more,
|
262 |
-
.premium-banner-animation2 .premium-banner-ib-desc::before {
|
263 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
264 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
265 |
-
transition: opacity 0.35s, transform 0.35s;
|
266 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
267 |
-
}
|
268 |
-
|
269 |
-
.premium-banner-animation2 .premium-banner-ib-content,
|
270 |
-
.premium-banner-animation2 .premium-banner-read-more {
|
271 |
-
position: absolute;
|
272 |
-
bottom: 0;
|
273 |
-
right: 0;
|
274 |
-
padding: 15px;
|
275 |
-
width: 100%;
|
276 |
-
max-height: 50%;
|
277 |
-
opacity: 0;
|
278 |
-
-webkit-transform: translate3d(0, 10px, 0);
|
279 |
-
transform: translate3d(0, 10px, 0);
|
280 |
-
}
|
281 |
-
|
282 |
-
.premium-banner-animation2:hover .premium-banner-ib-title,
|
283 |
-
.premium-banner-animation2.active .premium-banner-ib-title {
|
284 |
-
-webkit-transform: translate3d(0, -40px, 0);
|
285 |
-
transform: translate3d(0, -40px, 0);
|
286 |
-
}
|
287 |
-
|
288 |
-
.premium-banner-animation2:hover .premium-banner-read-more,
|
289 |
-
.premium-banner-animation2.active .premium-banner-read-more,
|
290 |
-
.premium-banner-animation2:hover .premium-banner-ib-desc::before,
|
291 |
-
.premium-banner-animation2.active .premium-banner-ib-desc::before {
|
292 |
-
opacity: 1;
|
293 |
-
-webkit-transform: translate3d(0, 0, 0);
|
294 |
-
transform: translate3d(0, 0, 0);
|
295 |
-
}
|
296 |
-
|
297 |
-
.premium-banner-animation2:hover .premium-banner-ib-content,
|
298 |
-
.premium-banner-animation2.active .premium-banner-ib-content {
|
299 |
-
opacity: 1;
|
300 |
-
-webkit-transform: translate3d(0, -30px, 0);
|
301 |
-
transform: translate3d(0, -30px, 0);
|
302 |
-
}
|
303 |
-
|
304 |
-
.premium-banner-animation3 .premium-banner-ib-title {
|
305 |
-
position: absolute;
|
306 |
-
bottom: 0;
|
307 |
-
right: 0;
|
308 |
-
padding: 15px;
|
309 |
-
width: 100%;
|
310 |
-
text-align: right;
|
311 |
-
-webkit-transform: translate3d(0, -30px, 0);
|
312 |
-
transform: translate3d(0, -30px, 0);
|
313 |
-
}
|
314 |
-
|
315 |
-
.premium-banner-animation3 .premium-banner-ib-desc::before,
|
316 |
-
.premium-banner-animation3 .premium-banner-ib-title {
|
317 |
-
-webkit-transition: -webkit-transform 0.35s;
|
318 |
-
transition: -webkit-transform 0.35s;
|
319 |
-
transition: transform 0.35s;
|
320 |
-
transition: transform 0.35s, -webkit-transform 0.35s;
|
321 |
-
}
|
322 |
-
|
323 |
-
.premium-banner-animation3:hover .premium-banner-ib-desc::before,
|
324 |
-
.premium-banner-animation3.active .premium-banner-ib-desc::before,
|
325 |
-
.premium-banner-animation3:hover .premium-banner-ib-title,
|
326 |
-
.premium-banner-animation3.active .premium-banner-ib-title {
|
327 |
-
opacity: 1;
|
328 |
-
-webkit-transform: translate3d(0, 0, 0);
|
329 |
-
transform: translate3d(0, 0, 0);
|
330 |
-
}
|
331 |
-
|
332 |
-
.premium-banner-animation3 .premium-banner-ib-content {
|
333 |
-
max-height: -webkit-calc(100% - 60px - 1.5em);
|
334 |
-
max-height: calc(100% - 60px - 1.5em);
|
335 |
-
overflow: hidden;
|
336 |
-
}
|
337 |
-
|
338 |
-
.premium-banner-animation4 img {
|
339 |
-
width: -webkit-calc(100% + 40px) !important;
|
340 |
-
width: calc(100% + 40px) !important;
|
341 |
-
max-width: -webkit-calc(100% + 40px) !important;
|
342 |
-
max-width: calc(100% + 40px) !important;
|
343 |
-
}
|
344 |
-
|
345 |
-
.premium-banner-animation4 .premium-banner-ib-desc {
|
346 |
-
padding: 30px;
|
347 |
-
}
|
348 |
-
|
349 |
-
.premium-banner-animation4 .premium-banner-ib-desc::after {
|
350 |
-
position: absolute;
|
351 |
-
content: "";
|
352 |
-
opacity: 0;
|
353 |
-
}
|
354 |
-
|
355 |
-
.premium-banner-animation4 .premium-banner-ib-desc::before {
|
356 |
-
position: absolute;
|
357 |
-
content: "";
|
358 |
-
opacity: 0;
|
359 |
-
top: 50px;
|
360 |
-
left: 30px;
|
361 |
-
bottom: 50px;
|
362 |
-
right: 30px;
|
363 |
-
border-top: 1px solid #fff;
|
364 |
-
border-bottom: 1px solid #fff;
|
365 |
-
-webkit-transform: scale(0, 1);
|
366 |
-
-ms-transform: scale(0, 1);
|
367 |
-
transform: scale(0, 1);
|
368 |
-
-webkit-transform-origin: 100% 0;
|
369 |
-
-ms-transform-origin: 100% 0;
|
370 |
-
transform-origin: 100% 0;
|
371 |
-
}
|
372 |
-
|
373 |
-
.premium-banner-animation4 .premium-banner-ib-desc::after {
|
374 |
-
top: 30px;
|
375 |
-
left: 50px;
|
376 |
-
bottom: 30px;
|
377 |
-
right: 50px;
|
378 |
-
border-left: 1px solid #fff;
|
379 |
-
border-right: 1px solid #fff;
|
380 |
-
-webkit-transform: scale(1, 0);
|
381 |
-
-ms-transform: scale(1, 0);
|
382 |
-
transform: scale(1, 0);
|
383 |
-
-webkit-transform-origin: 0% 0;
|
384 |
-
-ms-transform-origin: 0% 0;
|
385 |
-
transform-origin: 0% 0;
|
386 |
-
}
|
387 |
-
|
388 |
-
.premium-banner-animation4 .premium-banner-ib-title {
|
389 |
-
padding: 50px 30px 0 30px;
|
390 |
-
-webkit-transition: -webkit-transform 0.35s;
|
391 |
-
transition: -webkit-transform 0.35s;
|
392 |
-
transition: transform 0.35s;
|
393 |
-
transition: transform 0.35s, -webkit-transform 0.35s;
|
394 |
-
}
|
395 |
-
|
396 |
-
.premium-banner-animation4 .premium-banner-ib-content,
|
397 |
-
.premium-banner-animation4 .premium-banner-read-more {
|
398 |
-
padding: 10px 30px;
|
399 |
-
opacity: 0;
|
400 |
-
overflow: hidden;
|
401 |
-
-webkit-transform: translate3d(0, -10px, 0);
|
402 |
-
transform: translate3d(0, -10px, 0);
|
403 |
-
}
|
404 |
-
|
405 |
-
.premium-banner-animation4 .premium-banner-ib-title,
|
406 |
-
.premium-banner-animation4 img {
|
407 |
-
-webkit-transform: translate3d(30px, 0, 0);
|
408 |
-
transform: translate3d(30px, 0, 0);
|
409 |
-
}
|
410 |
-
|
411 |
-
.premium-banner-animation4.zoomout img,
|
412 |
-
.premium-banner-animation4.scale img {
|
413 |
-
-webkit-transform: translate3d(30px, 0, 0) scale(1.1);
|
414 |
-
transform: translate3d(30px, 0, 0) scale(1.1);
|
415 |
-
}
|
416 |
-
|
417 |
-
.premium-banner-animation4 .premium-banner-ib-content,
|
418 |
-
.premium-banner-animation4 .premium-banner-read-more {
|
419 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
420 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
421 |
-
transition: opacity 0.35s, transform 0.35s;
|
422 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
423 |
-
}
|
424 |
-
|
425 |
-
.premium-banner-animation4 .premium-banner-ib-desc::after,
|
426 |
-
.premium-banner-animation4 .premium-banner-ib-desc::before {
|
427 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
428 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
429 |
-
transition: opacity 0.35s, transform 0.35s;
|
430 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
431 |
-
}
|
432 |
-
|
433 |
-
.premium-banner-animation4 img {
|
434 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
435 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
436 |
-
transition: opacity 0.35s, transform 0.35s;
|
437 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
438 |
-
}
|
439 |
-
|
440 |
-
.premium-banner-animation4:hover .premium-banner-ib-desc::after,
|
441 |
-
.premium-banner-animation4.active .premium-banner-ib-desc::after,
|
442 |
-
.premium-banner-animation4:hover .premium-banner-ib-desc::before,
|
443 |
-
.premium-banner-animation4.active .premium-banner-ib-desc::before {
|
444 |
-
opacity: 1;
|
445 |
-
-webkit-transform: scale(1);
|
446 |
-
-ms-transform: scale(1);
|
447 |
-
transform: scale(1);
|
448 |
-
}
|
449 |
-
|
450 |
-
.premium-banner-animation4:hover .premium-banner-ib-content,
|
451 |
-
.premium-banner-animation4.active .premium-banner-ib-content,
|
452 |
-
.premium-banner-animation4:hover .premium-banner-read-more,
|
453 |
-
.premium-banner-animation4.active .premium-banner-read-more,
|
454 |
-
.premium-banner-animation4:hover .premium-banner-ib-title,
|
455 |
-
.premium-banner-animation4.active .premium-banner-ib-title {
|
456 |
-
opacity: 1;
|
457 |
-
-webkit-transform: translate3d(0, 0, 0);
|
458 |
-
transform: translate3d(0, 0, 0);
|
459 |
-
}
|
460 |
-
|
461 |
-
.premium-banner-animation4:hover .premium-banner-ib-content,
|
462 |
-
.premium-banner-animation4:hover .premium-banner-ib-desc::after,
|
463 |
-
.premium-banner-animation4:hover .premium-banner-ib-title,
|
464 |
-
.premium-banner-animation4:hover img {
|
465 |
-
-webkit-transition-delay: 0.15s;
|
466 |
-
transition-delay: 0.15s;
|
467 |
-
}
|
468 |
-
|
469 |
-
.premium-banner-animation5 .premium-banner-ib-desc {
|
470 |
-
top: auto;
|
471 |
-
bottom: 0;
|
472 |
-
padding: 15px;
|
473 |
-
height: auto;
|
474 |
-
background: #f2f2f2;
|
475 |
-
color: #3c4a50;
|
476 |
-
-webkit-transition: -webkit-transform 0.35s;
|
477 |
-
transition: -webkit-transform 0.35s;
|
478 |
-
transition: transform 0.35s;
|
479 |
-
transition: transform 0.35s, -webkit-transform 0.35s;
|
480 |
-
-webkit-transform: translate3d(0, 100%, 0);
|
481 |
-
transform: translate3d(0, 100%, 0);
|
482 |
-
}
|
483 |
-
|
484 |
-
.premium-banner-animation5 .premium-banner-ib-content {
|
485 |
-
position: absolute;
|
486 |
-
top: auto;
|
487 |
-
bottom: 100%;
|
488 |
-
right: 0;
|
489 |
-
width: 100%;
|
490 |
-
padding: 15px;
|
491 |
-
opacity: 0;
|
492 |
-
-webkit-transition: opacity 0.35s;
|
493 |
-
transition: opacity 0.35s;
|
494 |
-
}
|
495 |
-
|
496 |
-
.premium-banner-animation5 .premium-banner-ib-title,
|
497 |
-
.premium-banner-animation5 .premium-banner-read-more {
|
498 |
-
-webkit-transition: -webkit-transform 0.35s;
|
499 |
-
transition: -webkit-transform 0.35s;
|
500 |
-
transition: transform 0.35s;
|
501 |
-
transition: transform 0.35s, -webkit-transform 0.35s;
|
502 |
-
-webkit-transform: translate3d(0, 200%, 0);
|
503 |
-
transform: translate3d(0, 200%, 0);
|
504 |
-
text-align: center;
|
505 |
-
}
|
506 |
-
|
507 |
-
.premium-banner-animation5 .premium-banner-ib-title {
|
508 |
-
margin: 10px 0;
|
509 |
-
}
|
510 |
-
|
511 |
-
.premium-banner-animation5:hover .premium-banner-ib-content,
|
512 |
-
.premium-banner-animation5.active .premium-banner-ib-content,
|
513 |
-
.premium-banner-animation5:hover .premium-banner-ib-content *,
|
514 |
-
.premium-banner-animation5.active .premium-banner-ib-content * {
|
515 |
-
opacity: 1 !important;
|
516 |
-
z-index: 99 !important;
|
517 |
-
-webkit-backface-visibility: hidden !important;
|
518 |
-
backface-visibility: hidden !important;
|
519 |
-
}
|
520 |
-
|
521 |
-
.premium-banner-animation5:hover .premium-banner-ib-desc,
|
522 |
-
.premium-banner-animation5.active .premium-banner-ib-desc,
|
523 |
-
.premium-banner-animation5:hover .premium-banner-ib-title,
|
524 |
-
.premium-banner-animation5.active .premium-banner-ib-title,
|
525 |
-
.premium-banner-animation5:hover .premium-banner-read-more,
|
526 |
-
.premium-banner-animation5.active .premium-banner-read-more {
|
527 |
-
-webkit-transform: translateY(0);
|
528 |
-
-ms-transform: translateY(0);
|
529 |
-
transform: translateY(0);
|
530 |
-
}
|
531 |
-
|
532 |
-
.premium-banner-animation5:hover .premium-banner-ib-title {
|
533 |
-
-webkit-transition-delay: 0.05s;
|
534 |
-
transition-delay: 0.05s;
|
535 |
-
}
|
536 |
-
|
537 |
-
.premium-banner-animation5 img {
|
538 |
-
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
539 |
-
transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
540 |
-
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
541 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s;
|
542 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
543 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
544 |
-
}
|
545 |
-
|
546 |
-
.premium-banner-animation2 img,
|
547 |
-
.premium-banner-animation4 img,
|
548 |
-
.premium-banner-animation6 img {
|
549 |
-
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
550 |
-
transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
551 |
-
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
552 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s;
|
553 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
554 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
555 |
-
}
|
556 |
-
|
557 |
-
.premium-banner-animation5.zoomout img,
|
558 |
-
.premium-banner-animation5.scale img {
|
559 |
-
-webkit-transform: scale(1.1);
|
560 |
-
-ms-transform: scale(1.1);
|
561 |
-
transform: scale(1.1);
|
562 |
-
}
|
563 |
-
|
564 |
-
.premium-banner-animation2.zoomout img,
|
565 |
-
.premium-banner-animation2.scale img {
|
566 |
-
-webkit-transform: scale(1.1);
|
567 |
-
-ms-transform: scale(1.1);
|
568 |
-
transform: scale(1.1);
|
569 |
-
}
|
570 |
-
|
571 |
-
.premium-banner-animation6.zoomout img,
|
572 |
-
.premium-banner-animation6.scale img {
|
573 |
-
-webkit-transform: scale(1.1);
|
574 |
-
-ms-transform: scale(1.1);
|
575 |
-
transform: scale(1.1);
|
576 |
-
}
|
577 |
-
|
578 |
-
.premium-banner-animation5.zoomin:hover img,
|
579 |
-
.premium-banner-animation2.zoomin:hover img,
|
580 |
-
.premium-banner-animation6.zoomin:hover img {
|
581 |
-
-webkit-transform: scale(1.1);
|
582 |
-
-ms-transform: scale(1.1);
|
583 |
-
transform: scale(1.1);
|
584 |
-
}
|
585 |
-
|
586 |
-
.premium-banner-animation5.zoomout:hover img,
|
587 |
-
.premium-banner-animation2.zoomout:hover img,
|
588 |
-
.premium-banner-animation6.zoomout:hover img {
|
589 |
-
-webkit-transform: scale(1);
|
590 |
-
-ms-transform: scale(1);
|
591 |
-
transform: scale(1);
|
592 |
-
}
|
593 |
-
|
594 |
-
.premium-banner-animation5.scale:hover img,
|
595 |
-
.premium-banner-animation2.scale:hover img,
|
596 |
-
.premium-banner-animation6.scale:hover img {
|
597 |
-
-webkit-transform: scale(1.2) rotate(-5deg);
|
598 |
-
-ms-transform: scale(1.2) rotate(-5deg);
|
599 |
-
transform: scale(1.2) rotate(-5deg);
|
600 |
-
}
|
601 |
-
|
602 |
-
.premium-banner-animation5.grayscale:hover img,
|
603 |
-
.premium-banner-animation2.grayscale:hover img,
|
604 |
-
.premium-banner-animation6.grayscale:hover img {
|
605 |
-
-webkit-filter: grayscale(100%);
|
606 |
-
filter: grayscale(100%);
|
607 |
-
}
|
608 |
-
|
609 |
-
.premium-banner-animation5.blur:hover img,
|
610 |
-
.premium-banner-animation2.blur:hover img {
|
611 |
-
-webkit-filter: blur(3px);
|
612 |
-
filter: blur(3px);
|
613 |
-
}
|
614 |
-
|
615 |
-
.premium-banner-animation6.blur:hover img {
|
616 |
-
-webkit-filter: blur(3px);
|
617 |
-
filter: blur(3px);
|
618 |
-
}
|
619 |
-
|
620 |
-
.premium-banner-animation6 .premium-banner-ib-desc {
|
621 |
-
padding: 45px;
|
622 |
-
}
|
623 |
-
|
624 |
-
.premium-banner-animation6 .premium-banner-ib-desc::before {
|
625 |
-
position: absolute;
|
626 |
-
content: "";
|
627 |
-
top: 30px;
|
628 |
-
left: 30px;
|
629 |
-
bottom: 30px;
|
630 |
-
right: 30px;
|
631 |
-
border: 1px solid #fff;
|
632 |
-
}
|
633 |
-
|
634 |
-
.premium-banner-animation6 .premium-banner-ib-title {
|
635 |
-
margin: 20px 0 10px;
|
636 |
-
-webkit-transition: -webkit-transform 0.35s;
|
637 |
-
transition: -webkit-transform 0.35s;
|
638 |
-
transition: transform 0.35s;
|
639 |
-
transition: transform 0.35s, -webkit-transform 0.35s;
|
640 |
-
-webkit-transform: translate3d(0, 100%, 0);
|
641 |
-
transform: translate3d(0, 100%, 0);
|
642 |
-
}
|
643 |
-
|
644 |
-
.premium-banner-animation6 .premium-banner-ib-content,
|
645 |
-
.premium-banner-animation6 .premium-banner-read-more,
|
646 |
-
.premium-banner-animation6 .premium-banner-ib-desc::before {
|
647 |
-
opacity: 0;
|
648 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
649 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
650 |
-
transition: opacity 0.35s, transform 0.35s;
|
651 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
652 |
-
-webkit-transform: scale(0);
|
653 |
-
-ms-transform: scale(0);
|
654 |
-
transform: scale(0);
|
655 |
-
}
|
656 |
-
|
657 |
-
.premium-banner-animation6 .premium-banner-read-more {
|
658 |
-
margin-top: 10px;
|
659 |
-
}
|
660 |
-
|
661 |
-
.premium-banner-animation6:hover .premium-banner-ib-title,
|
662 |
-
.premium-banner-animation6.active .premium-banner-ib-title {
|
663 |
-
-webkit-transform: translate3d(0, 0, 0);
|
664 |
-
transform: translate3d(0, 0, 0);
|
665 |
-
}
|
666 |
-
|
667 |
-
.premium-banner-animation6:hover .premium-banner-ib-content,
|
668 |
-
.premium-banner-animation6.active .premium-banner-ib-content,
|
669 |
-
.premium-banner-animation6:hover .premium-banner-read-more,
|
670 |
-
.premium-banner-animation6.active .premium-banner-read-more,
|
671 |
-
.premium-banner-animation6:hover .premium-banner-ib-desc::before,
|
672 |
-
.premium-banner-animation6.active .premium-banner-ib-desc::before {
|
673 |
-
opacity: 1;
|
674 |
-
-webkit-transform: scale(1);
|
675 |
-
-ms-transform: scale(1);
|
676 |
-
transform: scale(1);
|
677 |
-
}
|
678 |
-
|
679 |
-
.premium-banner-animation12 .premium-banner-ib-desc::after {
|
680 |
-
position: absolute;
|
681 |
-
content: "";
|
682 |
-
left: 30px;
|
683 |
-
bottom: 30px;
|
684 |
-
right: 30px;
|
685 |
-
height: -webkit-calc(50% - 30px);
|
686 |
-
height: calc(50% - 30px);
|
687 |
-
border: 7px solid #fff;
|
688 |
-
-webkit-transition: -webkit-transform 0.35s;
|
689 |
-
transition: -webkit-transform 0.35s;
|
690 |
-
transition: transform 0.35s;
|
691 |
-
transition: transform 0.35s, -webkit-transform 0.35s;
|
692 |
-
-webkit-transform: translate3d(0, -100%, 0);
|
693 |
-
transform: translate3d(0, -100%, 0);
|
694 |
-
}
|
695 |
-
|
696 |
-
.premium-banner-animation12:hover .premium-banner-ib-desc::after,
|
697 |
-
.premium-banner-animation12.active .premium-banner-ib-desc::after {
|
698 |
-
-webkit-transform: translate3d(0, 0, 0);
|
699 |
-
transform: translate3d(0, 0, 0);
|
700 |
-
}
|
701 |
-
|
702 |
-
.premium-banner-animation12 .premium-banner-ib-desc {
|
703 |
-
padding: 45px;
|
704 |
-
text-align: right;
|
705 |
-
}
|
706 |
-
|
707 |
-
.premium-banner-animation12 .premium-banner-ib-content {
|
708 |
-
position: absolute;
|
709 |
-
left: 60px;
|
710 |
-
bottom: 60px;
|
711 |
-
right: 60px;
|
712 |
-
opacity: 0;
|
713 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
714 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
715 |
-
transition: opacity 0.35s, transform 0.35s;
|
716 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
717 |
-
-webkit-transform: translate3d(0, -100px, 0);
|
718 |
-
transform: translate3d(0, -100px, 0);
|
719 |
-
}
|
720 |
-
|
721 |
-
.premium-banner-animation12:hover .premium-banner-ib-content,
|
722 |
-
.premium-banner-animation12.active .premium-banner-ib-content {
|
723 |
-
opacity: 1;
|
724 |
-
-webkit-transform: translate3d(0, 0, 0);
|
725 |
-
transform: translate3d(0, 0, 0);
|
726 |
-
}
|
727 |
-
|
728 |
-
.premium-banner-animation13 img {
|
729 |
-
width: -webkit-calc(100% + 20px) !important;
|
730 |
-
width: calc(100% + 20px) !important;
|
731 |
-
max-width: -webkit-calc(100% + 20px) !important;
|
732 |
-
max-width: calc(100% + 20px) !important;
|
733 |
-
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
734 |
-
transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
735 |
-
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
736 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s;
|
737 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
738 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
739 |
-
-webkit-transform: translate3d(10px, 0, 0);
|
740 |
-
transform: translate3d(10px, 0, 0);
|
741 |
-
-webkit-backface-visibility: hidden;
|
742 |
-
backface-visibility: hidden;
|
743 |
-
}
|
744 |
-
|
745 |
-
.premium-banner-animation13.zoomout img,
|
746 |
-
.premium-banner-animation13.scale img {
|
747 |
-
-webkit-transform: translate3d(10px, 0, 0) scale(1.1);
|
748 |
-
transform: translate3d(10px, 0, 0) scale(1.1);
|
749 |
-
}
|
750 |
-
|
751 |
-
.premium-banner-animation13.none:hover img {
|
752 |
-
-webkit-transform: translate3d(0, 0, 0);
|
753 |
-
transform: translate3d(0, 0, 0);
|
754 |
-
}
|
755 |
-
|
756 |
-
.premium-banner-animation1.none:hover img,
|
757 |
-
.premium-banner-animation4.none:hover img {
|
758 |
-
-webkit-transform: translate3d(0, 0, 0);
|
759 |
-
transform: translate3d(0, 0, 0);
|
760 |
-
}
|
761 |
-
|
762 |
-
.premium-banner-animation13.zoomin:hover img,
|
763 |
-
.premium-banner-animation1.zoomin:hover img,
|
764 |
-
.premium-banner-animation4.zoomin:hover img,
|
765 |
-
.premium-banner-animation8.zoomin:hover img,
|
766 |
-
.premium-banner-animation7.zoomin:hover img,
|
767 |
-
.premium-banner-animation9.zoomin:hover img,
|
768 |
-
.premium-banner-animation10.zoomin:hover img,
|
769 |
-
.premium-banner-animation11.zoomin:hover img {
|
770 |
-
-webkit-transform: translate3d(0, 0, 0) scale(1.1);
|
771 |
-
transform: translate3d(0, 0, 0) scale(1.1);
|
772 |
-
}
|
773 |
-
|
774 |
-
.premium-banner-animation13.zoomout:hover img,
|
775 |
-
.premium-banner-animation1.zoomout:hover img,
|
776 |
-
.premium-banner-animation4.zoomout:hover img,
|
777 |
-
.premium-banner-animation8.zoomout:hover img,
|
778 |
-
.premium-banner-animation7.zoomout:hover img,
|
779 |
-
.premium-banner-animation9.zoomout:hover img,
|
780 |
-
.premium-banner-animation10.zoomout:hover img,
|
781 |
-
.premium-banner-animation11.zoomout:hover img {
|
782 |
-
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
783 |
-
transform: translate3d(0, 0, 0) scale(1);
|
784 |
-
}
|
785 |
-
|
786 |
-
.premium-banner-animation13.scale:hover img,
|
787 |
-
.premium-banner-animation1.scale:hover img,
|
788 |
-
.premium-banner-animation4.scale:hover img,
|
789 |
-
.premium-banner-animation8.scale:hover img,
|
790 |
-
.premium-banner-animation7.scale:hover img,
|
791 |
-
.premium-banner-animation9.scale:hover img,
|
792 |
-
.premium-banner-animation10.scale:hover img,
|
793 |
-
.premium-banner-animation11.scale:hover img {
|
794 |
-
-webkit-transform: translate3d(0, 0, 0) scale(1.2) rotate(-5deg);
|
795 |
-
transform: translate3d(0, 0, 0) scale(1.2) rotate(-5deg);
|
796 |
-
}
|
797 |
-
|
798 |
-
.premium-banner-animation13.grayscale:hover img,
|
799 |
-
.premium-banner-animation1.grayscale:hover img,
|
800 |
-
.premium-banner-animation4.grayscale:hover img,
|
801 |
-
.premium-banner-animation8.grayscale:hover img,
|
802 |
-
.premium-banner-animation7.grayscale:hover img,
|
803 |
-
.premium-banner-animation9.grayscale:hover img,
|
804 |
-
.premium-banner-animation10.grayscale:hover img,
|
805 |
-
.premium-banner-animation11.grayscale:hover img {
|
806 |
-
-webkit-transform: translate3d(0, 0, 0);
|
807 |
-
transform: translate3d(0, 0, 0);
|
808 |
-
-webkit-filter: grayscale(100%);
|
809 |
-
filter: grayscale(100%);
|
810 |
-
}
|
811 |
-
|
812 |
-
.premium-banner-animation13.blur:hover img,
|
813 |
-
.premium-banner-animation1.blur:hover img,
|
814 |
-
.premium-banner-animation4.blur:hover,
|
815 |
-
.premium-banner-animation8.blur:hover img,
|
816 |
-
.premium-banner-animation7.blur:hover img,
|
817 |
-
.premium-banner-animation9.blur:hover img,
|
818 |
-
.premium-banner-animation10.blur:hover img,
|
819 |
-
.premium-banner-animation11.blur:hover img {
|
820 |
-
-webkit-transform: translate3d(0, 0, 0);
|
821 |
-
transform: translate3d(0, 0, 0);
|
822 |
-
-webkit-filter: blur(3px);
|
823 |
-
filter: blur(3px);
|
824 |
-
}
|
825 |
-
|
826 |
-
.premium-banner-animation13 .premium-banner-ib-desc {
|
827 |
-
text-align: right;
|
828 |
-
}
|
829 |
-
|
830 |
-
.premium-banner-animation13 .premium-banner-ib-title {
|
831 |
-
position: relative;
|
832 |
-
overflow: hidden;
|
833 |
-
padding: 5px 0 10px;
|
834 |
-
}
|
835 |
-
|
836 |
-
.premium-banner-animation13 .premium-banner-ib-title::after {
|
837 |
-
position: absolute;
|
838 |
-
content: "";
|
839 |
-
bottom: 0;
|
840 |
-
right: 0;
|
841 |
-
width: 100%;
|
842 |
-
height: 2px;
|
843 |
-
background: #fff;
|
844 |
-
-webkit-transition: -webkit-transform 0.35s;
|
845 |
-
transition: -webkit-transform 0.35s;
|
846 |
-
transition: transform 0.35s;
|
847 |
-
transition: transform 0.35s, -webkit-transform 0.35s;
|
848 |
-
-webkit-transform: translate3d(101%, 0, 0);
|
849 |
-
transform: translate3d(101%, 0, 0);
|
850 |
-
}
|
851 |
-
|
852 |
-
.premium-banner-animation13:hover .premium-banner-ib-title::after,
|
853 |
-
.premium-banner-animation13.active .premium-banner-ib-title::after {
|
854 |
-
-webkit-transform: translate3d(0, 0, 0);
|
855 |
-
transform: translate3d(0, 0, 0);
|
856 |
-
}
|
857 |
-
|
858 |
-
.premium-banner-animation13 .premium-banner-ib-content,
|
859 |
-
.premium-banner-animation13 .premium-banner-read-more {
|
860 |
-
padding: 15px 0;
|
861 |
-
opacity: 0;
|
862 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
863 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
864 |
-
transition: opacity 0.35s, transform 0.35s;
|
865 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
866 |
-
-webkit-transform: translate3d(-100%, 0, 0);
|
867 |
-
transform: translate3d(-100%, 0, 0);
|
868 |
-
}
|
869 |
-
|
870 |
-
.premium-banner-animation13:hover .premium-banner-ib-content,
|
871 |
-
.premium-banner-animation13.active .premium-banner-ib-content,
|
872 |
-
.premium-banner-animation13:hover .premium-banner-read-more,
|
873 |
-
.premium-banner-animation13.active .premium-banner-read-more {
|
874 |
-
opacity: 1;
|
875 |
-
-webkit-transform: translate3d(0, 0, 0);
|
876 |
-
transform: translate3d(0, 0, 0);
|
877 |
-
}
|
878 |
-
|
879 |
-
.premium-banner-ib.premium-banner-animation5 .premium-banner-toggle-size {
|
880 |
-
right: 50%;
|
881 |
-
width: auto !important;
|
882 |
-
height: 100%;
|
883 |
-
max-width: none;
|
884 |
-
-webkit-transform: translateX(50%);
|
885 |
-
-ms-transform: translateX(50%);
|
886 |
-
transform: translateX(50%);
|
887 |
-
}
|
888 |
-
|
889 |
-
.premium-banner-ib img {
|
890 |
-
border: none;
|
891 |
-
padding: 0;
|
892 |
-
margin: 0;
|
893 |
-
}
|
894 |
-
|
895 |
-
.premium-banner-animation7 img {
|
896 |
-
width: -webkit-calc(100% + 40px) !important;
|
897 |
-
width: calc(100% + 40px) !important;
|
898 |
-
max-width: -webkit-calc(100% + 40px) !important;
|
899 |
-
max-width: calc(100% + 40px) !important;
|
900 |
-
}
|
901 |
-
|
902 |
-
.premium-banner-animation7 .premium-banner-brlr {
|
903 |
-
width: 7px;
|
904 |
-
}
|
905 |
-
|
906 |
-
.premium-banner-animation7 .premium-banner-brtb {
|
907 |
-
height: 7px;
|
908 |
-
}
|
909 |
-
|
910 |
-
.premium-banner-animation7 .premium-banner-br {
|
911 |
-
position: absolute;
|
912 |
-
z-index: 1;
|
913 |
-
background-color: white;
|
914 |
-
-webkit-transition: all 0.3s ease-in-out;
|
915 |
-
transition: all 0.3s ease-in-out;
|
916 |
-
-webkit-transition-delay: 0.2s;
|
917 |
-
transition-delay: 0.2s;
|
918 |
-
}
|
919 |
-
|
920 |
-
.premium-banner-animation7 .premium-banner-bleft {
|
921 |
-
right: 30px;
|
922 |
-
top: -webkit-calc(100% - 150px);
|
923 |
-
top: calc(100% - 150px);
|
924 |
-
height: 0;
|
925 |
-
}
|
926 |
-
|
927 |
-
.premium-banner-animation7 .premium-banner-bright {
|
928 |
-
left: 30px;
|
929 |
-
bottom: -webkit-calc(100% - 150px);
|
930 |
-
bottom: calc(100% - 150px);
|
931 |
-
height: 0;
|
932 |
-
}
|
933 |
-
|
934 |
-
.premium-banner-animation7 .premium-banner-bottom {
|
935 |
-
left: -webkit-calc(100% - 150px);
|
936 |
-
left: calc(100% - 150px);
|
937 |
-
bottom: 30px;
|
938 |
-
width: 0;
|
939 |
-
}
|
940 |
-
|
941 |
-
.premium-banner-animation7 .premium-banner-btop {
|
942 |
-
right: -webkit-calc(100% - 150px);
|
943 |
-
right: calc(100% - 150px);
|
944 |
-
top: 30px;
|
945 |
-
width: 0;
|
946 |
-
}
|
947 |
-
|
948 |
-
.premium-banner-animation7 .premium-banner-ib-desc {
|
949 |
-
padding: 70px;
|
950 |
-
display: table;
|
951 |
-
}
|
952 |
-
|
953 |
-
.premium-banner-animation7 .premium-banner-ib-desc .premium-banner-desc-centered {
|
954 |
-
display: table-cell;
|
955 |
-
vertical-align: middle;
|
956 |
-
}
|
957 |
-
|
958 |
-
.premium-banner-animation7 .premium-banner-ib-title {
|
959 |
-
margin-top: 0;
|
960 |
-
}
|
961 |
-
|
962 |
-
.premium-banner-animation7 .premium-banner-ib-title,
|
963 |
-
.premium-banner-animation7 img {
|
964 |
-
-webkit-transform: translate3d(30px, 0, 0);
|
965 |
-
transform: translate3d(30px, 0, 0);
|
966 |
-
}
|
967 |
-
|
968 |
-
.premium-banner-animation7.zoomout img,
|
969 |
-
.premium-banner-animation7.scale img {
|
970 |
-
-webkit-transform: translate3d(30px, 0, 0) scale(1.1);
|
971 |
-
transform: translate3d(30px, 0, 0) scale(1.1);
|
972 |
-
}
|
973 |
-
|
974 |
-
.premium-banner-animation7 .premium-banner-ib-content,
|
975 |
-
.premium-banner-animation7 .premium-banner-read-more {
|
976 |
-
margin-top: 10px;
|
977 |
-
}
|
978 |
-
|
979 |
-
.premium-banner-animation7 .premium-banner-ib-desc::after,
|
980 |
-
.premium-banner-animation7 .premium-banner-ib-desc::before {
|
981 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
982 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
983 |
-
transition: opacity 0.35s, transform 0.35s;
|
984 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
985 |
-
}
|
986 |
-
|
987 |
-
.premium-banner-animation7 .premium-banner-ib-title,
|
988 |
-
.premium-banner-animation7 .premium-banner-ib-content,
|
989 |
-
.premium-banner-animation7 .premium-banner-read-more {
|
990 |
-
opacity: 0;
|
991 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
992 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
993 |
-
transition: opacity 0.35s, transform 0.35s;
|
994 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
995 |
-
}
|
996 |
-
|
997 |
-
.premium-banner-animation7 img {
|
998 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
999 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
1000 |
-
transition: opacity 0.35s, transform 0.35s;
|
1001 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
1002 |
-
}
|
1003 |
-
|
1004 |
-
.premium-banner-animation7:hover .premium-banner-ib-content,
|
1005 |
-
.premium-banner-animation7.active .premium-banner-ib-content,
|
1006 |
-
.premium-banner-animation7:hover .premium-banner-read-more,
|
1007 |
-
.premium-banner-animation7.active .premium-banner-read-more,
|
1008 |
-
.premium-banner-animation7:hover .premium-banner-ib-title,
|
1009 |
-
.premium-banner-animation7.active .premium-banner-ib-title {
|
1010 |
-
opacity: 1;
|
1011 |
-
-webkit-transform: translate3d(0, 0, 0);
|
1012 |
-
transform: translate3d(0, 0, 0);
|
1013 |
-
}
|
1014 |
-
|
1015 |
-
.premium-banner-animation7:hover .premium-banner-bleft,
|
1016 |
-
.premium-banner-animation7.active .premium-banner-bleft {
|
1017 |
-
top: 30px;
|
1018 |
-
height: 70px;
|
1019 |
-
}
|
1020 |
-
|
1021 |
-
.premium-banner-animation7:hover .premium-banner-bright,
|
1022 |
-
.premium-banner-animation7.active .premium-banner-bright {
|
1023 |
-
bottom: 30px;
|
1024 |
-
height: 70px;
|
1025 |
-
}
|
1026 |
-
|
1027 |
-
.premium-banner-animation7:hover .premium-banner-bottom,
|
1028 |
-
.premium-banner-animation7.active .premium-banner-bottom {
|
1029 |
-
left: 30px;
|
1030 |
-
width: 70px;
|
1031 |
-
}
|
1032 |
-
|
1033 |
-
.premium-banner-animation7:hover .premium-banner-btop,
|
1034 |
-
.premium-banner-animation7.active .premium-banner-btop {
|
1035 |
-
right: 30px;
|
1036 |
-
width: 70px;
|
1037 |
-
}
|
1038 |
-
|
1039 |
-
.premium-banner-animation7:hover .premium-banner-ib-content,
|
1040 |
-
.premium-banner-animation7:hover .premium-banner-read-more,
|
1041 |
-
.premium-banner-animation7:hover .premium-banner-ib-title,
|
1042 |
-
.premium-banner-animation7:hover img {
|
1043 |
-
-webkit-transition-delay: 0.15s;
|
1044 |
-
transition-delay: 0.15s;
|
1045 |
-
}
|
1046 |
-
|
1047 |
-
.premium-banner-animation8 img {
|
1048 |
-
width: -webkit-calc(100% + 40px) !important;
|
1049 |
-
width: calc(100% + 40px) !important;
|
1050 |
-
max-width: -webkit-calc(100% + 40px) !important;
|
1051 |
-
max-width: calc(100% + 40px) !important;
|
1052 |
-
}
|
1053 |
-
|
1054 |
-
.premium-banner-animation8 .premium-banner-brlr {
|
1055 |
-
width: 7px;
|
1056 |
-
}
|
1057 |
-
|
1058 |
-
.premium-banner-animation8 .premium-banner-brtb {
|
1059 |
-
height: 7px;
|
1060 |
-
}
|
1061 |
-
|
1062 |
-
.premium-banner-animation8 .premium-banner-br {
|
1063 |
-
position: absolute;
|
1064 |
-
z-index: 1;
|
1065 |
-
background-color: white;
|
1066 |
-
-webkit-transition: all 0.3s ease-in-out;
|
1067 |
-
transition: all 0.3s ease-in-out;
|
1068 |
-
-webkit-transition-delay: 0.2s;
|
1069 |
-
transition-delay: 0.2s;
|
1070 |
-
}
|
1071 |
-
|
1072 |
-
.premium-banner-animation8 .premium-banner-bleft {
|
1073 |
-
right: 30px;
|
1074 |
-
top: 50%;
|
1075 |
-
-webkit-transform: translateY(-50%);
|
1076 |
-
-ms-transform: translateY(-50%);
|
1077 |
-
transform: translateY(-50%);
|
1078 |
-
height: 0;
|
1079 |
-
}
|
1080 |
-
|
1081 |
-
.premium-banner-animation8 .premium-banner-bright {
|
1082 |
-
left: 30px;
|
1083 |
-
top: 50%;
|
1084 |
-
-webkit-transform: translateY(-50%);
|
1085 |
-
-ms-transform: translateY(-50%);
|
1086 |
-
transform: translateY(-50%);
|
1087 |
-
height: 0;
|
1088 |
-
}
|
1089 |
-
|
1090 |
-
.premium-banner-animation8 .premium-banner-bottom {
|
1091 |
-
right: 50%;
|
1092 |
-
-webkit-transform: translateX(50%);
|
1093 |
-
-ms-transform: translateX(50%);
|
1094 |
-
transform: translateX(50%);
|
1095 |
-
bottom: 30px;
|
1096 |
-
width: 0;
|
1097 |
-
}
|
1098 |
-
|
1099 |
-
.premium-banner-animation8 .premium-banner-btop {
|
1100 |
-
right: 50%;
|
1101 |
-
-webkit-transform: translateX(50%);
|
1102 |
-
-ms-transform: translateX(50%);
|
1103 |
-
transform: translateX(50%);
|
1104 |
-
top: 30px;
|
1105 |
-
width: 0;
|
1106 |
-
}
|
1107 |
-
|
1108 |
-
.premium-banner-animation8 .premium-banner-ib-desc {
|
1109 |
-
padding: 70px;
|
1110 |
-
display: table;
|
1111 |
-
}
|
1112 |
-
|
1113 |
-
.premium-banner-animation8 .premium-banner-ib-desc .premium-banner-desc-centered {
|
1114 |
-
display: table-cell;
|
1115 |
-
vertical-align: middle;
|
1116 |
-
}
|
1117 |
-
|
1118 |
-
.premium-banner-animation8 .premium-banner-ib-title {
|
1119 |
-
margin-top: 0;
|
1120 |
-
}
|
1121 |
-
|
1122 |
-
.premium-banner-animation8 .premium-banner-ib-title,
|
1123 |
-
.premium-banner-animation8 img {
|
1124 |
-
-webkit-transform: translate3d(30px, 0, 0);
|
1125 |
-
transform: translate3d(30px, 0, 0);
|
1126 |
-
}
|
1127 |
-
|
1128 |
-
.premium-banner-animation8.zoomout img,
|
1129 |
-
.premium-banner-animation8.scale img {
|
1130 |
-
-webkit-transform: translate3d(30px, 0, 0) scale(1.1);
|
1131 |
-
transform: translate3d(30px, 0, 0) scale(1.1);
|
1132 |
-
}
|
1133 |
-
|
1134 |
-
.premium-banner-animation8 .premium-banner-ib-content,
|
1135 |
-
.premium-banner-animation8 .premium-banner-read-more {
|
1136 |
-
margin-top: 10px;
|
1137 |
-
}
|
1138 |
-
|
1139 |
-
.premium-banner-animation8 .premium-banner-ib-desc::after,
|
1140 |
-
.premium-banner-animation8 .premium-banner-ib-desc::before {
|
1141 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
1142 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
1143 |
-
transition: opacity 0.35s, transform 0.35s;
|
1144 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
1145 |
-
}
|
1146 |
-
|
1147 |
-
.premium-banner-animation8 .premium-banner-ib-title,
|
1148 |
-
.premium-banner-animation8 .premium-banner-ib-content,
|
1149 |
-
.premium-banner-animation8 .premium-banner-read-more {
|
1150 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
1151 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
1152 |
-
transition: opacity 0.35s, transform 0.35s;
|
1153 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
1154 |
-
opacity: 0;
|
1155 |
-
}
|
1156 |
-
|
1157 |
-
.premium-banner-animation8 img {
|
1158 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
1159 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
1160 |
-
transition: opacity 0.35s, transform 0.35s;
|
1161 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
1162 |
-
}
|
1163 |
-
|
1164 |
-
.premium-banner-animation8:hover .premium-banner-ib-content,
|
1165 |
-
.premium-banner-animation8.active .premium-banner-ib-content,
|
1166 |
-
.premium-banner-animation8:hover .premium-banner-read-more,
|
1167 |
-
.premium-banner-animation8.active .premium-banner-read-more,
|
1168 |
-
.premium-banner-animation8:hover .premium-banner-ib-title,
|
1169 |
-
.premium-banner-animation8.active .premium-banner-ib-title {
|
1170 |
-
opacity: 1;
|
1171 |
-
-webkit-transform: translate3d(0, 0, 0);
|
1172 |
-
transform: translate3d(0, 0, 0);
|
1173 |
-
}
|
1174 |
-
|
1175 |
-
.premium-banner-animation8:hover .premium-banner-bleft,
|
1176 |
-
.premium-banner-animation8.active .premium-banner-bleft {
|
1177 |
-
height: -webkit-calc(100% - 61px);
|
1178 |
-
height: calc(100% - 61px);
|
1179 |
-
}
|
1180 |
-
|
1181 |
-
.premium-banner-animation8:hover .premium-banner-bright,
|
1182 |
-
.premium-banner-animation8.active .premium-banner-bright {
|
1183 |
-
height: -webkit-calc(100% - 61px);
|
1184 |
-
height: calc(100% - 61px);
|
1185 |
-
}
|
1186 |
-
|
1187 |
-
.premium-banner-animation8:hover .premium-banner-bottom,
|
1188 |
-
.premium-banner-animation8.active .premium-banner-bottom {
|
1189 |
-
width: -webkit-calc(100% - 61px);
|
1190 |
-
width: calc(100% - 61px);
|
1191 |
-
}
|
1192 |
-
|
1193 |
-
.premium-banner-animation8:hover .premium-banner-btop,
|
1194 |
-
.premium-banner-animation8.active .premium-banner-btop {
|
1195 |
-
width: -webkit-calc(100% - 61px);
|
1196 |
-
width: calc(100% - 61px);
|
1197 |
-
}
|
1198 |
-
|
1199 |
-
.premium-banner-animation8:hover .premium-banner-ib-content,
|
1200 |
-
.premium-banner-animation8:hover .premium-banner-ib-title,
|
1201 |
-
.premium-banner-animation8:hover .premium-banner-read-more,
|
1202 |
-
.premium-banner-animation8:hover img {
|
1203 |
-
-webkit-transition-delay: 0.15s;
|
1204 |
-
transition-delay: 0.15s;
|
1205 |
-
}
|
1206 |
-
|
1207 |
-
.premium-banner-animation9 img {
|
1208 |
-
width: -webkit-calc(100% + 20px) !important;
|
1209 |
-
width: calc(100% + 20px) !important;
|
1210 |
-
max-width: -webkit-calc(100% + 20px) !important;
|
1211 |
-
max-width: calc(100% + 20px) !important;
|
1212 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
1213 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
1214 |
-
transition: opacity 0.35s, transform 0.35s;
|
1215 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
1216 |
-
-webkit-transform: scale(1.2);
|
1217 |
-
-ms-transform: scale(1.2);
|
1218 |
-
transform: scale(1.2);
|
1219 |
-
}
|
1220 |
-
|
1221 |
-
.premium-banner-animation9 .premium-banner-ib-desc {
|
1222 |
-
width: 100%;
|
1223 |
-
height: 100%;
|
1224 |
-
}
|
1225 |
-
|
1226 |
-
.premium-banner-animation9 .premium-banner-ib-desc::before {
|
1227 |
-
position: absolute;
|
1228 |
-
top: 50%;
|
1229 |
-
right: 50%;
|
1230 |
-
width: 80%;
|
1231 |
-
height: 1px;
|
1232 |
-
background: #fff;
|
1233 |
-
content: "";
|
1234 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
1235 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
1236 |
-
transition: opacity 0.35s, transform 0.35s;
|
1237 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
1238 |
-
-webkit-transform: translate3d(50%, -50%, 0);
|
1239 |
-
transform: translate3d(50%, -50%, 0);
|
1240 |
-
}
|
1241 |
-
|
1242 |
-
.premium-banner-animation9 .premium-banner-ib-desc::after {
|
1243 |
-
position: absolute;
|
1244 |
-
top: 50%;
|
1245 |
-
right: 50%;
|
1246 |
-
width: 80%;
|
1247 |
-
height: 1px;
|
1248 |
-
background: #fff;
|
1249 |
-
content: "";
|
1250 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
1251 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
1252 |
-
transition: opacity 0.35s, transform 0.35s;
|
1253 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
1254 |
-
-webkit-transform: translate3d(50%, -50%, 0);
|
1255 |
-
transform: translate3d(50%, -50%, 0);
|
1256 |
-
}
|
1257 |
-
|
1258 |
-
.premium-banner-animation9 .premium-banner-ib-title {
|
1259 |
-
position: absolute;
|
1260 |
-
top: 50%;
|
1261 |
-
right: 0;
|
1262 |
-
width: 100%;
|
1263 |
-
-webkit-transition: -webkit-transform 0.35s;
|
1264 |
-
transition: -webkit-transform 0.35s;
|
1265 |
-
transition: transform 0.35s;
|
1266 |
-
transition: transform 0.35s, -webkit-transform 0.35s;
|
1267 |
-
-webkit-transform: translate3d(0, -70px, 0);
|
1268 |
-
transform: translate3d(0, -70px, 0);
|
1269 |
-
margin-top: 0;
|
1270 |
-
padding: 0 10%;
|
1271 |
-
}
|
1272 |
-
|
1273 |
-
.premium-banner-animation9:hover .premium-banner-ib-title,
|
1274 |
-
.premium-banner-animation9.active .premium-banner-ib-title {
|
1275 |
-
-webkit-transform: translate3d(0, -80px, 0);
|
1276 |
-
transform: translate3d(0, -80px, 0);
|
1277 |
-
}
|
1278 |
-
|
1279 |
-
.premium-banner-animation9 .premium-banner-ib-content,
|
1280 |
-
.premium-banner-animation9 .premium-banner-read-more {
|
1281 |
-
position: absolute;
|
1282 |
-
top: 50%;
|
1283 |
-
right: 0;
|
1284 |
-
width: 100%;
|
1285 |
-
-webkit-transition: -webkit-transform 0.35s;
|
1286 |
-
transition: -webkit-transform 0.35s;
|
1287 |
-
transition: transform 0.35s;
|
1288 |
-
transition: transform 0.35s, -webkit-transform 0.35s;
|
1289 |
-
padding: 0 10%;
|
1290 |
-
-webkit-transform: translate3d(0, 35px, 0);
|
1291 |
-
transform: translate3d(0, 35px, 0);
|
1292 |
-
}
|
1293 |
-
|
1294 |
-
.premium-banner-animation9 .premium-banner-read-more {
|
1295 |
-
top: 75%;
|
1296 |
-
}
|
1297 |
-
|
1298 |
-
.premium-banner-animation9:hover .premium-banner-ib-content,
|
1299 |
-
.premium-banner-animation9.active .premium-banner-ib-content,
|
1300 |
-
.premium-banner-animation9:hover .premium-banner-read-more,
|
1301 |
-
.premium-banner-animation9.active .premium-banner-read-more {
|
1302 |
-
-webkit-transform: translate3d(0, 45px, 0);
|
1303 |
-
transform: translate3d(0, 45px, 0);
|
1304 |
-
}
|
1305 |
-
|
1306 |
-
.premium-banner-animation9:hover .premium-banner-ib-desc::before,
|
1307 |
-
.premium-banner-animation9.active .premium-banner-ib-desc::before {
|
1308 |
-
opacity: 0.5;
|
1309 |
-
-webkit-transform: translate3d(50%, -50%, 0) rotate(-45deg);
|
1310 |
-
transform: translate3d(50%, -50%, 0) rotate(-45deg);
|
1311 |
-
}
|
1312 |
-
|
1313 |
-
.premium-banner-animation9:hover .premium-banner-ib-desc::after,
|
1314 |
-
.premium-banner-animation9.active .premium-banner-ib-desc::after {
|
1315 |
-
opacity: 0.5;
|
1316 |
-
-webkit-transform: translate3d(50%, -50%, 0) rotate(45deg);
|
1317 |
-
transform: translate3d(50%, -50%, 0) rotate(45deg);
|
1318 |
-
}
|
1319 |
-
|
1320 |
-
.premium-banner-animation9:hover img {
|
1321 |
-
-webkit-transform: scale(1);
|
1322 |
-
-ms-transform: scale(1);
|
1323 |
-
transform: scale(1);
|
1324 |
-
}
|
1325 |
-
|
1326 |
-
.premium-banner-animation10 img {
|
1327 |
-
width: -webkit-calc(100% + 20px) !important;
|
1328 |
-
width: calc(100% + 20px) !important;
|
1329 |
-
max-width: -webkit-calc(100% + 20px) !important;
|
1330 |
-
max-width: calc(100% + 20px) !important;
|
1331 |
-
}
|
1332 |
-
|
1333 |
-
.premium-banner-animation10 .premium-banner-ib-title {
|
1334 |
-
position: relative;
|
1335 |
-
overflow: hidden;
|
1336 |
-
padding: 5px 0 15px;
|
1337 |
-
-webkit-transition: -webkit-transform 0.35s;
|
1338 |
-
transition: -webkit-transform 0.35s;
|
1339 |
-
transition: transform 0.35s;
|
1340 |
-
transition: transform 0.35s, -webkit-transform 0.35s;
|
1341 |
-
-webkit-transform: translate3d(0, 20px, 0);
|
1342 |
-
transform: translate3d(0, 20px, 0);
|
1343 |
-
margin-bottom: 0;
|
1344 |
-
}
|
1345 |
-
|
1346 |
-
.premium-banner-animation10 .premium-banner-ib-title::after {
|
1347 |
-
position: absolute;
|
1348 |
-
content: "";
|
1349 |
-
bottom: 0;
|
1350 |
-
right: 0;
|
1351 |
-
width: 100%;
|
1352 |
-
height: 3px;
|
1353 |
-
background: #fff;
|
1354 |
-
opacity: 0;
|
1355 |
-
-webkit-transform: translate3d(0, 100%, 0);
|
1356 |
-
transform: translate3d(0, 100%, 0);
|
1357 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
1358 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
1359 |
-
transition: opacity 0.35s, transform 0.35s;
|
1360 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
1361 |
-
}
|
1362 |
-
|
1363 |
-
.premium-banner-animation10:hover .premium-banner-ib-title,
|
1364 |
-
.premium-banner-animation10.active .premium-banner-ib-title {
|
1365 |
-
-webkit-transform: translate3d(0, 0, 0);
|
1366 |
-
transform: translate3d(0, 0, 0);
|
1367 |
-
}
|
1368 |
-
|
1369 |
-
.premium-banner-animation10:hover .premium-banner-ib-title::after,
|
1370 |
-
.premium-banner-animation10.active .premium-banner-ib-title::after {
|
1371 |
-
opacity: 1;
|
1372 |
-
-webkit-transform: translate3d(0, 0, 0);
|
1373 |
-
transform: translate3d(0, 0, 0);
|
1374 |
-
}
|
1375 |
-
|
1376 |
-
.premium-banner-animation10 .premium-banner-ib-content,
|
1377 |
-
.premium-banner-animation10 .premium-banner-read-more {
|
1378 |
-
padding-top: 15px;
|
1379 |
-
opacity: 0;
|
1380 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
1381 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
1382 |
-
transition: opacity 0.35s, transform 0.35s;
|
1383 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
1384 |
-
-webkit-transform: translate3d(0, 100%, 0);
|
1385 |
-
transform: translate3d(0, 100%, 0);
|
1386 |
-
}
|
1387 |
-
|
1388 |
-
.premium-banner-animation10 .premium-banner-read-more {
|
1389 |
-
padding: 0;
|
1390 |
-
}
|
1391 |
-
|
1392 |
-
.premium-banner-animation10:hover .premium-banner-ib-content,
|
1393 |
-
.premium-banner-animation10.active .premium-banner-ib-content,
|
1394 |
-
.premium-banner-animation10:hover .premium-banner-read-more,
|
1395 |
-
.premium-banner-animation10.active .premium-banner-read-more {
|
1396 |
-
opacity: 1;
|
1397 |
-
-webkit-transform: translate3d(0, 0, 0);
|
1398 |
-
transform: translate3d(0, 0, 0);
|
1399 |
-
}
|
1400 |
-
|
1401 |
-
.premium-banner-animation11 {
|
1402 |
-
-webkit-transition: -webkit-transform 1s ease-out;
|
1403 |
-
transition: -webkit-transform 1s ease-out;
|
1404 |
-
transition: transform 1s ease-out;
|
1405 |
-
transition: transform 1s ease-out, -webkit-transform 1s ease-out;
|
1406 |
-
-webkit-transition-delay: 0.125s;
|
1407 |
-
transition-delay: 0.125s;
|
1408 |
-
}
|
1409 |
-
|
1410 |
-
.premium-banner-animation11 .premium-banner-ib-desc {
|
1411 |
-
position: absolute;
|
1412 |
-
z-index: 5;
|
1413 |
-
-webkit-transform: translate3d(30px, 0, 0);
|
1414 |
-
transform: translate3d(30px, 0, 0);
|
1415 |
-
opacity: 0;
|
1416 |
-
top: auto;
|
1417 |
-
bottom: 0;
|
1418 |
-
min-height: 25%;
|
1419 |
-
height: auto;
|
1420 |
-
max-height: 100%;
|
1421 |
-
text-align: left;
|
1422 |
-
padding: 30px;
|
1423 |
-
-webkit-transition: all 0.6s ease-out;
|
1424 |
-
transition: all 0.6s ease-out;
|
1425 |
-
}
|
1426 |
-
|
1427 |
-
.premium-banner-animation11 img {
|
1428 |
-
width: 100%;
|
1429 |
-
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
1430 |
-
transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
1431 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s;
|
1432 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
1433 |
-
}
|
1434 |
-
|
1435 |
-
.premium-banner-animation11 .premium-banner-ib-title {
|
1436 |
-
margin-bottom: 10px;
|
1437 |
-
}
|
1438 |
-
|
1439 |
-
.premium-banner-animation11 .premium-banner-gradient {
|
1440 |
-
position: absolute;
|
1441 |
-
left: 0;
|
1442 |
-
top: 0;
|
1443 |
-
right: 0;
|
1444 |
-
bottom: 0;
|
1445 |
-
}
|
1446 |
-
|
1447 |
-
.premium-banner-animation11 .premium-banner-gradient:after,
|
1448 |
-
.premium-banner-animation11 .premium-banner-gradient:before {
|
1449 |
-
position: absolute;
|
1450 |
-
content: "";
|
1451 |
-
left: 0;
|
1452 |
-
top: 0;
|
1453 |
-
right: 0;
|
1454 |
-
bottom: 0;
|
1455 |
-
-webkit-transform: translate3d(100%, 0, 0);
|
1456 |
-
transform: translate3d(100%, 0, 0);
|
1457 |
-
background-image: -webkit-linear-gradient(-40deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
|
1458 |
-
background-image: -webkit-linear-gradient(130deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
|
1459 |
-
background-image: linear-gradient(-40deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
|
1460 |
-
z-index: 2;
|
1461 |
-
}
|
1462 |
-
|
1463 |
-
.premium-banner-animation11 .premium-banner-gradient:before {
|
1464 |
-
mix-blend-mode: color;
|
1465 |
-
}
|
1466 |
-
|
1467 |
-
.premium-banner-animation11 .premium-banner-gradient:after {
|
1468 |
-
mix-blend-mode: multiply;
|
1469 |
-
}
|
1470 |
-
|
1471 |
-
.premium-banner-animation11:hover .premium-banner-ib-desc,
|
1472 |
-
.premium-banner-animation11.active .premium-banner-ib-desc {
|
1473 |
-
opacity: 1;
|
1474 |
-
-webkit-transform: translate3d(0, 0, 0);
|
1475 |
-
transform: translate3d(0, 0, 0);
|
1476 |
-
}
|
1477 |
-
|
1478 |
-
.premium-banner-animation11:hover .premium-banner-gradient:after,
|
1479 |
-
.premium-banner-animation11:hover .premium-banner-gradient:before,
|
1480 |
-
.premium-banner-animation11.active .premium-banner-gradient:after,
|
1481 |
-
.premium-banner-animation11.active .premium-banner-gradient:before {
|
1482 |
-
-webkit-transform: translate3d(0, 0, 0);
|
1483 |
-
transform: translate3d(0, 0, 0);
|
1484 |
-
}
|
1485 |
-
|
1486 |
-
.premium-banner-animation11.zoomout img,
|
1487 |
-
.premium-banner-animation11.scale img {
|
1488 |
-
-webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
|
1489 |
-
transform: translate3d(-10px, 0, 0) scale(1.1);
|
1490 |
-
}
|
1491 |
-
|
1492 |
-
/************ Premium Countdown ************/
|
1493 |
-
/*******************************************/
|
1494 |
-
.premium-countdown {
|
1495 |
-
-js-display: flex;
|
1496 |
-
display: -webkit-box;
|
1497 |
-
display: -webkit-flex;
|
1498 |
-
display: -moz-box;
|
1499 |
-
display: -ms-flexbox;
|
1500 |
-
display: flex;
|
1501 |
-
text-align: center;
|
1502 |
-
}
|
1503 |
-
|
1504 |
-
.countdown-row {
|
1505 |
-
display: block;
|
1506 |
-
text-align: center;
|
1507 |
-
}
|
1508 |
-
|
1509 |
-
.countdown .countdown-section {
|
1510 |
-
display: inline-block;
|
1511 |
-
max-width: 100%;
|
1512 |
-
margin-bottom: 15px;
|
1513 |
-
-js-display: inline-flex;
|
1514 |
-
display: -webkit-inline-box;
|
1515 |
-
display: -webkit-inline-flex;
|
1516 |
-
display: -moz-inline-box;
|
1517 |
-
display: -ms-inline-flexbox;
|
1518 |
-
display: inline-flex;
|
1519 |
-
-webkit-box-align: center;
|
1520 |
-
-webkit-align-items: center;
|
1521 |
-
-moz-box-align: center;
|
1522 |
-
-ms-flex-align: center;
|
1523 |
-
align-items: center;
|
1524 |
-
}
|
1525 |
-
|
1526 |
-
.countdown .countdown-section:last-child {
|
1527 |
-
margin-left: 0;
|
1528 |
-
}
|
1529 |
-
|
1530 |
-
.countdown span.countdown-amount {
|
1531 |
-
font-size: 70px;
|
1532 |
-
line-height: 1;
|
1533 |
-
padding: 40px;
|
1534 |
-
}
|
1535 |
-
|
1536 |
-
.countdown .pre_time-mid {
|
1537 |
-
display: block;
|
1538 |
-
}
|
1539 |
-
|
1540 |
-
.premium-countdown-separator-yes .countdown_separator {
|
1541 |
-
display: block;
|
1542 |
-
margin: 0 50px;
|
1543 |
-
font-size: 30px;
|
1544 |
-
}
|
1545 |
-
|
1546 |
-
.premium-countdown-separator-yes .countdown-row .countdown-section:last-child .countdown_separator,
|
1547 |
-
.premium-countdown-separator-yes .premium-countdown-block:last-child .countdown_separator {
|
1548 |
-
display: none;
|
1549 |
-
}
|
1550 |
-
|
1551 |
-
/**
|
1552 |
-
* Digit and unit styles
|
1553 |
-
*/
|
1554 |
-
.side .countdown-section .countdown-period {
|
1555 |
-
vertical-align: bottom;
|
1556 |
-
}
|
1557 |
-
|
1558 |
-
.countdown .countdown-section .countdown-period {
|
1559 |
-
font-size: 17px;
|
1560 |
-
line-height: 3em;
|
1561 |
-
}
|
1562 |
-
|
1563 |
-
.side .countdown-section .countdown-amount,
|
1564 |
-
.side .countdown-section .countdown-period {
|
1565 |
-
display: inline-block;
|
1566 |
-
}
|
1567 |
-
|
1568 |
-
.side .countdown-section .countdown-amount {
|
1569 |
-
margin-left: 5px;
|
1570 |
-
}
|
1571 |
-
|
1572 |
-
.down .countdown-section .countdown-amount,
|
1573 |
-
.down .countdown-section .countdown-period {
|
1574 |
-
display: block;
|
1575 |
-
}
|
1576 |
-
|
1577 |
-
/**
|
1578 |
-
* Flip Layout
|
1579 |
-
*/
|
1580 |
-
.premium-countdown-flip .premium-countdown-block {
|
1581 |
-
text-align: center;
|
1582 |
-
-js-display: inline-flex;
|
1583 |
-
display: -webkit-inline-box;
|
1584 |
-
display: -webkit-inline-flex;
|
1585 |
-
display: -moz-inline-box;
|
1586 |
-
display: -ms-inline-flexbox;
|
1587 |
-
display: inline-flex;
|
1588 |
-
-webkit-box-align: center;
|
1589 |
-
-webkit-align-items: center;
|
1590 |
-
-moz-box-align: center;
|
1591 |
-
-ms-flex-align: center;
|
1592 |
-
align-items: center;
|
1593 |
-
}
|
1594 |
-
|
1595 |
-
.premium-countdown-flip .premium-countdown-block:last-child {
|
1596 |
-
margin-left: 0;
|
1597 |
-
}
|
1598 |
-
|
1599 |
-
.premium-countdown-flip .premium-countdown-label {
|
1600 |
-
overflow: hidden;
|
1601 |
-
color: #1a1a1a;
|
1602 |
-
text-transform: uppercase;
|
1603 |
-
}
|
1604 |
-
|
1605 |
-
.premium-countdown-flip .premium-countdown-figure {
|
1606 |
-
position: relative;
|
1607 |
-
height: 110px;
|
1608 |
-
width: 100px;
|
1609 |
-
line-height: 107px;
|
1610 |
-
background-color: #fff;
|
1611 |
-
-webkit-border-radius: 10px;
|
1612 |
-
border-radius: 10px;
|
1613 |
-
-webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset -2px 4px 0 0 rgba(255, 255, 255, 0.08);
|
1614 |
-
box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset -2px 4px 0 0 rgba(255, 255, 255, 0.08);
|
1615 |
-
}
|
1616 |
-
|
1617 |
-
.premium-countdown-flip .premium-countdown-figure:last-child {
|
1618 |
-
margin-left: 0;
|
1619 |
-
}
|
1620 |
-
|
1621 |
-
.premium-countdown-flip .premium-countdown-figure>span {
|
1622 |
-
position: absolute;
|
1623 |
-
right: 0;
|
1624 |
-
left: 0;
|
1625 |
-
margin: auto;
|
1626 |
-
font-weight: 700;
|
1627 |
-
}
|
1628 |
-
|
1629 |
-
.premium-countdown-flip .premium-countdown-figure .top {
|
1630 |
-
z-index: 3;
|
1631 |
-
-webkit-transform-origin: 50% 100%;
|
1632 |
-
-ms-transform-origin: 50% 100%;
|
1633 |
-
transform-origin: 50% 100%;
|
1634 |
-
-webkit-transform: perspective(200px);
|
1635 |
-
transform: perspective(200px);
|
1636 |
-
-webkit-backface-visibility: hidden;
|
1637 |
-
backface-visibility: hidden;
|
1638 |
-
}
|
1639 |
-
|
1640 |
-
.premium-countdown-flip .premium-countdown-figure .bottom {
|
1641 |
-
z-index: 1;
|
1642 |
-
}
|
1643 |
-
|
1644 |
-
.premium-countdown-flip .premium-countdown-figure .bottom::before {
|
1645 |
-
content: "";
|
1646 |
-
position: absolute;
|
1647 |
-
display: block;
|
1648 |
-
top: 0;
|
1649 |
-
right: 0;
|
1650 |
-
width: 100%;
|
1651 |
-
height: 50%;
|
1652 |
-
background-color: rgba(0, 0, 0, 0.02);
|
1653 |
-
}
|
1654 |
-
|
1655 |
-
.premium-countdown-flip .premium-countdown-figure .top-back {
|
1656 |
-
-webkit-backface-visibility: hidden;
|
1657 |
-
backface-visibility: hidden;
|
1658 |
-
z-index: 4;
|
1659 |
-
bottom: 0;
|
1660 |
-
-webkit-transform-origin: 50% 0;
|
1661 |
-
-ms-transform-origin: 50% 0;
|
1662 |
-
transform-origin: 50% 0;
|
1663 |
-
-webkit-transform: perspective(200px) rotateX(180deg);
|
1664 |
-
transform: perspective(200px) rotateX(180deg);
|
1665 |
-
}
|
1666 |
-
|
1667 |
-
.premium-countdown-flip .premium-countdown-figure .top-back span {
|
1668 |
-
position: absolute;
|
1669 |
-
top: -100%;
|
1670 |
-
right: 0;
|
1671 |
-
left: 0;
|
1672 |
-
margin: auto;
|
1673 |
-
}
|
1674 |
-
|
1675 |
-
.premium-countdown-flip .premium-countdown-figure .bottom-back {
|
1676 |
-
z-index: 2;
|
1677 |
-
top: 0;
|
1678 |
-
}
|
1679 |
-
|
1680 |
-
.premium-countdown-flip .premium-countdown-figure .bottom-back span {
|
1681 |
-
position: absolute;
|
1682 |
-
top: 0;
|
1683 |
-
right: 0;
|
1684 |
-
left: 0;
|
1685 |
-
margin: auto;
|
1686 |
-
}
|
1687 |
-
|
1688 |
-
.premium-countdown-flip .premium-countdown-figure .top,
|
1689 |
-
.premium-countdown-flip .premium-countdown-figure .bottom-back,
|
1690 |
-
.premium-countdown-flip .premium-countdown-figure .top-back {
|
1691 |
-
height: 50%;
|
1692 |
-
overflow: hidden;
|
1693 |
-
background-color: #f7f7f7;
|
1694 |
-
-webkit-border-top-right-radius: 10px;
|
1695 |
-
border-top-right-radius: 10px;
|
1696 |
-
-webkit-border-top-left-radius: 10px;
|
1697 |
-
border-top-left-radius: 10px;
|
1698 |
-
}
|
1699 |
-
|
1700 |
-
.premium-countdown-flip .premium-countdown-figure .top-back {
|
1701 |
-
-webkit-border-bottom-right-radius: 10px;
|
1702 |
-
border-bottom-right-radius: 10px;
|
1703 |
-
-webkit-border-bottom-left-radius: 10px;
|
1704 |
-
border-bottom-left-radius: 10px;
|
1705 |
-
}
|
1706 |
-
|
1707 |
-
.premium-countdown-flip .premium-countdown-figure .top::after,
|
1708 |
-
.premium-countdown-flip .premium-countdown-figure .bottom-back::after {
|
1709 |
-
content: "";
|
1710 |
-
position: absolute;
|
1711 |
-
z-index: -1;
|
1712 |
-
right: 0;
|
1713 |
-
bottom: 0;
|
1714 |
-
width: 100%;
|
1715 |
-
height: 100%;
|
1716 |
-
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
1717 |
-
}
|
1718 |
-
|
1719 |
-
.side .premium-countdown-figure,
|
1720 |
-
.side .premium-countdown-label {
|
1721 |
-
display: inline-block;
|
1722 |
-
}
|
1723 |
-
|
1724 |
-
.side .premium-countdown-figure {
|
1725 |
-
margin-left: 5px;
|
1726 |
-
}
|
1727 |
-
|
1728 |
-
.down .premium-countdown-figure,
|
1729 |
-
.down .premium-countdown-label {
|
1730 |
-
display: block;
|
1731 |
-
}
|
1732 |
-
|
1733 |
-
.down .premium-countdown-label {
|
1734 |
-
width: 100%;
|
1735 |
-
}
|
1736 |
-
|
1737 |
-
/**************** Premium Carousel **************/
|
1738 |
-
/************************************************/
|
1739 |
-
.premium-carousel-wrapper a.carousel-arrow,
|
1740 |
-
.premium-carousel-wrapper a.ver-carousel-arrow,
|
1741 |
-
.premium-fb-rev-container a.carousel-arrow,
|
1742 |
-
.premium-tabs-nav-list a.carousel-arrow,
|
1743 |
-
.premium-blog-wrap a.carousel-arrow,
|
1744 |
-
.premium-hscroll-wrap a.carousel-arrow,
|
1745 |
-
.premium-twitter-feed-wrapper a.carousel-arrow,
|
1746 |
-
.premium-facebook-feed-wrapper a.carousel-arrow,
|
1747 |
-
.premium-instafeed-container a.carousel-arrow,
|
1748 |
-
.premium-persons-container a.carousel-arrow {
|
1749 |
-
display: -ms-flexbox;
|
1750 |
-
display: -webkit-flex;
|
1751 |
-
display: -moz-flex;
|
1752 |
-
display: -ms-flex;
|
1753 |
-
-js-display: flex;
|
1754 |
-
display: -webkit-box;
|
1755 |
-
display: -moz-box;
|
1756 |
-
display: flex;
|
1757 |
-
-webkit-box-align: center;
|
1758 |
-
-webkit-align-items: center;
|
1759 |
-
-moz-box-align: center;
|
1760 |
-
-ms-flex-align: center;
|
1761 |
-
align-items: center;
|
1762 |
-
-webkit-box-pack: center;
|
1763 |
-
-webkit-justify-content: center;
|
1764 |
-
-moz-box-pack: center;
|
1765 |
-
-ms-flex-pack: center;
|
1766 |
-
justify-content: center;
|
1767 |
-
width: 2em;
|
1768 |
-
height: 2em;
|
1769 |
-
line-height: 0;
|
1770 |
-
text-align: center;
|
1771 |
-
position: absolute;
|
1772 |
-
z-index: 99;
|
1773 |
-
cursor: pointer;
|
1774 |
-
-webkit-transition: all 0.3s ease-in-out;
|
1775 |
-
transition: all 0.3s ease-in-out;
|
1776 |
-
-webkit-appearance: inherit;
|
1777 |
-
border: none;
|
1778 |
-
-webkit-box-shadow: none;
|
1779 |
-
box-shadow: none;
|
1780 |
-
}
|
1781 |
-
|
1782 |
-
div[class^="premium-"] .slick-arrow i {
|
1783 |
-
display: block;
|
1784 |
-
}
|
1785 |
-
|
1786 |
-
.ver-carousel-arrow.carousel-next i {
|
1787 |
-
margin-bottom: -3px;
|
1788 |
-
}
|
1789 |
-
|
1790 |
-
.premium-carousel-wrapper a.slick-arrow:hover {
|
1791 |
-
-webkit-box-shadow: none !important;
|
1792 |
-
box-shadow: none !important;
|
1793 |
-
}
|
1794 |
-
|
1795 |
-
.premium-carousel-wrapper .premium-carousel-content-hidden {
|
1796 |
-
visibility: hidden;
|
1797 |
-
}
|
1798 |
-
|
1799 |
-
.premium-carousel-wrapper a.carousel-arrow,
|
1800 |
-
.premium-fb-rev-container a.carousel-arrow,
|
1801 |
-
.premium-tabs-nav-list a.carousel-arrow,
|
1802 |
-
.premium-blog-wrap a.carousel-arrow,
|
1803 |
-
.premium-hscroll-wrap a.carousel-arrow,
|
1804 |
-
.premium-twitter-feed-wrapper a.carousel-arrow,
|
1805 |
-
.premium-facebook-feed-wrapper a.carousel-arrow,
|
1806 |
-
.premium-instafeed-container a.carousel-arrow,
|
1807 |
-
.premium-persons-container a.carousel-arrow {
|
1808 |
-
top: 50%;
|
1809 |
-
-webkit-transform: translateY(-50%);
|
1810 |
-
-ms-transform: translateY(-50%);
|
1811 |
-
transform: translateY(-50%);
|
1812 |
-
}
|
1813 |
-
|
1814 |
-
.premium-carousel-wrapper a.ver-carousel-arrow {
|
1815 |
-
right: 50%;
|
1816 |
-
-webkit-transform: translateX(50%);
|
1817 |
-
-ms-transform: translateX(50%);
|
1818 |
-
transform: translateX(50%);
|
1819 |
-
}
|
1820 |
-
|
1821 |
-
a.carousel-arrow.carousel-next {
|
1822 |
-
right: -20px;
|
1823 |
-
}
|
1824 |
-
|
1825 |
-
a.carousel-arrow.carousel-prev {
|
1826 |
-
left: -20px;
|
1827 |
-
}
|
1828 |
-
|
1829 |
-
a.ver-carousel-arrow.carousel-next {
|
1830 |
-
bottom: -56px;
|
1831 |
-
}
|
1832 |
-
|
1833 |
-
a.ver-carousel-arrow.carousel-prev {
|
1834 |
-
top: -45px;
|
1835 |
-
}
|
1836 |
-
|
1837 |
-
a.circle-bg {
|
1838 |
-
-webkit-border-radius: 100%;
|
1839 |
-
border-radius: 100%;
|
1840 |
-
}
|
1841 |
-
|
1842 |
-
a.circle-border {
|
1843 |
-
-webkit-border-radius: 100%;
|
1844 |
-
border-radius: 100%;
|
1845 |
-
border: solid black;
|
1846 |
-
}
|
1847 |
-
|
1848 |
-
a.square-border {
|
1849 |
-
border: solid black;
|
1850 |
-
}
|
1851 |
-
|
1852 |
-
.premium-carousel-dots-below,
|
1853 |
-
.premium-blog-wrap ul.slick-dots,
|
1854 |
-
.premium-fb-rev-reviews ul.slick-dots {
|
1855 |
-
position: relative;
|
1856 |
-
bottom: 0;
|
1857 |
-
list-style: none;
|
1858 |
-
text-align: center;
|
1859 |
-
margin: 0;
|
1860 |
-
padding: 0;
|
1861 |
-
}
|
1862 |
-
|
1863 |
-
.premium-carousel-dots-above ul.slick-dots {
|
1864 |
-
position: absolute;
|
1865 |
-
display: -ms-flexbox;
|
1866 |
-
display: -webkit-flex;
|
1867 |
-
display: -moz-flex;
|
1868 |
-
display: -ms-flex;
|
1869 |
-
-js-display: flex;
|
1870 |
-
display: -webkit-box;
|
1871 |
-
display: -moz-box;
|
1872 |
-
display: flex;
|
1873 |
-
top: 50%;
|
1874 |
-
-webkit-transform: translateY(-50%);
|
1875 |
-
-ms-transform: translateY(-50%);
|
1876 |
-
transform: translateY(-50%);
|
1877 |
-
-webkit-flex-direction: column;
|
1878 |
-
-webkit-box-orient: vertical;
|
1879 |
-
-webkit-box-direction: normal;
|
1880 |
-
-moz-box-orient: vertical;
|
1881 |
-
-moz-box-direction: normal;
|
1882 |
-
-ms-flex-direction: column;
|
1883 |
-
flex-direction: column;
|
1884 |
-
}
|
1885 |
-
|
1886 |
-
ul.slick-dots li {
|
1887 |
-
font-size: 10px;
|
1888 |
-
display: -webkit-inline-box;
|
1889 |
-
display: -webkit-inline-flex;
|
1890 |
-
display: -ms-inline-flexbox;
|
1891 |
-
-js-display: inline-flex;
|
1892 |
-
display: -moz-inline-box;
|
1893 |
-
display: inline-flex;
|
1894 |
-
-webkit-box-pack: center;
|
1895 |
-
-webkit-justify-content: center;
|
1896 |
-
-moz-box-pack: center;
|
1897 |
-
-ms-flex-pack: center;
|
1898 |
-
justify-content: center;
|
1899 |
-
-webkit-box-align: center;
|
1900 |
-
-webkit-align-items: center;
|
1901 |
-
-moz-box-align: center;
|
1902 |
-
-ms-flex-align: center;
|
1903 |
-
align-items: center;
|
1904 |
-
margin: 5px;
|
1905 |
-
width: 20px;
|
1906 |
-
height: 20px;
|
1907 |
-
cursor: pointer;
|
1908 |
-
}
|
1909 |
-
|
1910 |
-
/*
|
1911 |
-
* Custom Navigation Dot
|
1912 |
-
*/
|
1913 |
-
.premium-carousel-wrapper .premium-carousel-nav-dot,
|
1914 |
-
.premium-carousel-wrapper .premium-carousel-nav-arrow-prev,
|
1915 |
-
.premium-carousel-wrapper .premium-carousel-nav-arrow-next {
|
1916 |
-
display: none;
|
1917 |
-
}
|
1918 |
-
|
1919 |
-
.premium-carousel-wrapper ul.slick-dots svg {
|
1920 |
-
width: 20px;
|
1921 |
-
height: 20px;
|
1922 |
-
}
|
1923 |
-
|
1924 |
-
/* Ripple Out */
|
1925 |
-
@-webkit-keyframes hvr-ripple-out {
|
1926 |
-
0% {
|
1927 |
-
-webkit-transform: scale(1);
|
1928 |
-
transform: scale(1);
|
1929 |
-
opacity: 1;
|
1930 |
-
}
|
1931 |
-
|
1932 |
-
100% {
|
1933 |
-
-webkit-transform: scale(1.5);
|
1934 |
-
transform: scale(1.5);
|
1935 |
-
opacity: 0;
|
1936 |
-
}
|
1937 |
-
}
|
1938 |
-
|
1939 |
-
@keyframes hvr-ripple-out {
|
1940 |
-
0% {
|
1941 |
-
-webkit-transform: scale(1);
|
1942 |
-
transform: scale(1);
|
1943 |
-
opacity: 1;
|
1944 |
-
}
|
1945 |
-
|
1946 |
-
100% {
|
1947 |
-
-webkit-transform: scale(1.5);
|
1948 |
-
transform: scale(1.5);
|
1949 |
-
opacity: 0;
|
1950 |
-
}
|
1951 |
-
}
|
1952 |
-
|
1953 |
-
.premium-carousel-ripple-yes .premium-carousel-wrapper {
|
1954 |
-
padding-bottom: 1px;
|
1955 |
-
}
|
1956 |
-
|
1957 |
-
.premium-carousel-ripple-yes ul.slick-dots li,
|
1958 |
-
.premium-carousel-ripple-yes ul.slick-dots li i {
|
1959 |
-
position: relative;
|
1960 |
-
}
|
1961 |
-
|
1962 |
-
.premium-carousel-ripple-yes ul.slick-dots li i {
|
1963 |
-
z-index: 1;
|
1964 |
-
}
|
1965 |
-
|
1966 |
-
.premium-carousel-ripple-yes ul.slick-dots li:hover:before {
|
1967 |
-
content: "";
|
1968 |
-
position: absolute;
|
1969 |
-
-webkit-transform: scale(1);
|
1970 |
-
-ms-transform: scale(1);
|
1971 |
-
transform: scale(1);
|
1972 |
-
top: 0;
|
1973 |
-
left: 0;
|
1974 |
-
bottom: 0;
|
1975 |
-
right: 0;
|
1976 |
-
-webkit-border-radius: 50%;
|
1977 |
-
border-radius: 50%;
|
1978 |
-
pointer-events: none;
|
1979 |
-
background-color: rgba(0, 0, 0, 0.15);
|
1980 |
-
}
|
1981 |
-
|
1982 |
-
.premium-carousel-ripple-yes ul.slick-dots li.slick-active:hover:before {
|
1983 |
-
background-color: rgba(0, 0, 0, 0.3);
|
1984 |
-
}
|
1985 |
-
|
1986 |
-
.premium-carousel-ripple-yes ul.slick-dots li:hover:before {
|
1987 |
-
-webkit-animation: hvr-ripple-out 1.3s infinite;
|
1988 |
-
animation: hvr-ripple-out 1.3s infinite;
|
1989 |
-
}
|
1990 |
-
|
1991 |
-
.premium-carousel-wrapper.premium-carousel-scale .slick-slide {
|
1992 |
-
-webkit-transform: scale(1.25, 1.25);
|
1993 |
-
-ms-transform: scale(1.25, 1.25);
|
1994 |
-
transform: scale(1.25, 1.25);
|
1995 |
-
-webkit-transition: all 0.3s ease-in-out !important;
|
1996 |
-
transition: all 0.3s ease-in-out !important;
|
1997 |
-
}
|
1998 |
-
|
1999 |
-
.premium-carousel-wrapper.premium-carousel-scale div.slick-active {
|
2000 |
-
-webkit-transform: scale(1, 1);
|
2001 |
-
-ms-transform: scale(1, 1);
|
2002 |
-
transform: scale(1, 1);
|
2003 |
-
}
|
2004 |
-
|
2005 |
-
[dir="rtl"] .premium-carousel-inner .slick-slide {
|
2006 |
-
float: right;
|
2007 |
-
}
|
2008 |
-
|
2009 |
-
/**************** Premium Counter ***************/
|
2010 |
-
/************************************************/
|
2011 |
-
.premium-counter-area {
|
2012 |
-
padding: 10px 0;
|
2013 |
-
-js-display: flex;
|
2014 |
-
display: -webkit-box;
|
2015 |
-
display: -webkit-flex;
|
2016 |
-
display: -moz-box;
|
2017 |
-
display: -ms-flexbox;
|
2018 |
-
display: flex;
|
2019 |
-
-webkit-box-pack: center;
|
2020 |
-
-webkit-justify-content: center;
|
2021 |
-
-moz-box-pack: center;
|
2022 |
-
-ms-flex-pack: center;
|
2023 |
-
justify-content: center;
|
2024 |
-
-webkit-box-align: center;
|
2025 |
-
-webkit-align-items: center;
|
2026 |
-
-moz-box-align: center;
|
2027 |
-
-ms-flex-align: center;
|
2028 |
-
align-items: center;
|
2029 |
-
}
|
2030 |
-
|
2031 |
-
.premium-counter-area.top {
|
2032 |
-
-webkit-box-orient: vertical;
|
2033 |
-
-webkit-box-direction: normal;
|
2034 |
-
-webkit-flex-direction: column;
|
2035 |
-
-moz-box-orient: vertical;
|
2036 |
-
-moz-box-direction: normal;
|
2037 |
-
-ms-flex-direction: column;
|
2038 |
-
flex-direction: column;
|
2039 |
-
}
|
2040 |
-
|
2041 |
-
.premium-counter-area.right {
|
2042 |
-
-webkit-box-orient: horizontal;
|
2043 |
-
-webkit-box-direction: reverse;
|
2044 |
-
-webkit-flex-direction: row-reverse;
|
2045 |
-
-moz-box-orient: horizontal;
|
2046 |
-
-moz-box-direction: reverse;
|
2047 |
-
-ms-flex-direction: row-reverse;
|
2048 |
-
flex-direction: row-reverse;
|
2049 |
-
}
|
2050 |
-
|
2051 |
-
.premium-counter-area.right .premium-counter-icon {
|
2052 |
-
padding-right: 20px;
|
2053 |
-
}
|
2054 |
-
|
2055 |
-
.premium-counter-area.left .premium-counter-icon {
|
2056 |
-
padding-left: 20px;
|
2057 |
-
}
|
2058 |
-
|
2059 |
-
.premium-counter-area .premium-counter-icon .icon i.fa:before {
|
2060 |
-
vertical-align: text-top;
|
2061 |
-
}
|
2062 |
-
|
2063 |
-
.premium-counter-area .premium-counter-icon span.icon {
|
2064 |
-
text-align: center;
|
2065 |
-
display: inline-block;
|
2066 |
-
vertical-align: middle;
|
2067 |
-
}
|
2068 |
-
|
2069 |
-
.premium-counter-area .premium-counter-icon .circle {
|
2070 |
-
-webkit-border-radius: 100%;
|
2071 |
-
border-radius: 100%;
|
2072 |
-
}
|
2073 |
-
|
2074 |
-
.premium-counter-area .premium-counter-icon img,
|
2075 |
-
.premium-counter-area .premium-counter-icon svg {
|
2076 |
-
width: 80px;
|
2077 |
-
}
|
2078 |
-
|
2079 |
-
.premium-counter-area .premium-counter-icon .premium-counter-animation svg {
|
2080 |
-
height: 80px;
|
2081 |
-
}
|
2082 |
-
|
2083 |
-
.premium-counter-area .premium-counter-title {
|
2084 |
-
padding: 0;
|
2085 |
-
margin: 0;
|
2086 |
-
}
|
2087 |
-
|
2088 |
-
.premium-counter-area .premium-counter-value-wrap {
|
2089 |
-
-js-display: flex;
|
2090 |
-
display: -webkit-box;
|
2091 |
-
display: -webkit-flex;
|
2092 |
-
display: -moz-box;
|
2093 |
-
display: -ms-flexbox;
|
2094 |
-
display: flex;
|
2095 |
-
-webkit-box-align: center;
|
2096 |
-
-webkit-align-items: center;
|
2097 |
-
-moz-box-align: center;
|
2098 |
-
-ms-flex-align: center;
|
2099 |
-
align-items: center;
|
2100 |
-
}
|
2101 |
-
|
2102 |
-
.premium-init-wrapper.right {
|
2103 |
-
text-align: left;
|
2104 |
-
}
|
2105 |
-
|
2106 |
-
/* * Custom image and simple styles image fix */
|
2107 |
-
span.icon.flex-width {
|
2108 |
-
width: auto !important;
|
2109 |
-
height: auto !important;
|
2110 |
-
}
|
2111 |
-
|
2112 |
-
.premium-counter-area .premium-counter-init {
|
2113 |
-
font-size: 35px;
|
2114 |
-
}
|
2115 |
-
|
2116 |
-
/**************** Premium Image Separator ****************/
|
2117 |
-
/*********************************************************/
|
2118 |
-
/*Image Separator Container Style*/
|
2119 |
-
.premium-image-separator-container {
|
2120 |
-
position: absolute;
|
2121 |
-
width: 100%;
|
2122 |
-
z-index: 2;
|
2123 |
-
top: auto;
|
2124 |
-
}
|
2125 |
-
|
2126 |
-
.premium-image-separator-container img {
|
2127 |
-
display: inline-block !important;
|
2128 |
-
-webkit-mask-repeat: no-repeat;
|
2129 |
-
mask-repeat: no-repeat;
|
2130 |
-
-webkit-mask-position: center;
|
2131 |
-
mask-position: center;
|
2132 |
-
}
|
2133 |
-
|
2134 |
-
/*Link on Image Style*/
|
2135 |
-
.premium-image-separator-link {
|
2136 |
-
position: absolute;
|
2137 |
-
z-index: 9999;
|
2138 |
-
top: 0;
|
2139 |
-
right: 0;
|
2140 |
-
width: 100%;
|
2141 |
-
height: 100%;
|
2142 |
-
text-decoration: none;
|
2143 |
-
}
|
2144 |
-
|
2145 |
-
/*Important to override Theme options*/
|
2146 |
-
a.premium-image-separator-link:hover,
|
2147 |
-
a.premium-image-separator-link:visited,
|
2148 |
-
a.premium-image-separator-link:focus,
|
2149 |
-
a.premium-image-separator-link:active {
|
2150 |
-
-webkit-box-shadow: none !important;
|
2151 |
-
box-shadow: none !important;
|
2152 |
-
outline: none !important;
|
2153 |
-
border: none !important;
|
2154 |
-
text-decoration: none !important;
|
2155 |
-
}
|
2156 |
-
|
2157 |
-
.premium-image-separator-container .img-responsive {
|
2158 |
-
display: inline-block;
|
2159 |
-
}
|
2160 |
-
|
2161 |
-
.premium-image-separator-container i {
|
2162 |
-
padding: 0.1em;
|
2163 |
-
-webkit-transition: all 0.3s ease-in-out;
|
2164 |
-
transition: all 0.3s ease-in-out;
|
2165 |
-
}
|
2166 |
-
|
2167 |
-
/**************** Premium Modal Box ****************/
|
2168 |
-
/***************************************************/
|
2169 |
-
.premium-modal-trigger-btn,
|
2170 |
-
.premium-modal-box-modal-lower-close {
|
2171 |
-
display: inline-block;
|
2172 |
-
padding: 6px 12px;
|
2173 |
-
margin-bottom: 0;
|
2174 |
-
font-size: 14px;
|
2175 |
-
font-weight: normal;
|
2176 |
-
line-height: 1.42857143;
|
2177 |
-
text-align: center;
|
2178 |
-
white-space: nowrap;
|
2179 |
-
vertical-align: middle;
|
2180 |
-
-ms-touch-action: manipulation;
|
2181 |
-
touch-action: manipulation;
|
2182 |
-
cursor: pointer;
|
2183 |
-
-webkit-user-select: none;
|
2184 |
-
-moz-user-select: none;
|
2185 |
-
-ms-user-select: none;
|
2186 |
-
user-select: none;
|
2187 |
-
background-image: none;
|
2188 |
-
border: 1px solid transparent;
|
2189 |
-
}
|
2190 |
-
|
2191 |
-
.premium-modal-trigger-btn i {
|
2192 |
-
-webkit-transition: all 0.3s ease-in-out;
|
2193 |
-
transition: all 0.3s ease-in-out;
|
2194 |
-
}
|
2195 |
-
|
2196 |
-
.premium-btn-md {
|
2197 |
-
padding: 8px 14px;
|
2198 |
-
font-size: 16px;
|
2199 |
-
line-height: 1.2;
|
2200 |
-
}
|
2201 |
-
|
2202 |
-
.premium-btn-lg {
|
2203 |
-
padding: 10px 16px;
|
2204 |
-
font-size: 18px;
|
2205 |
-
line-height: 1.3333333;
|
2206 |
-
}
|
2207 |
-
|
2208 |
-
.premium-btn-block {
|
2209 |
-
display: block;
|
2210 |
-
width: 100%;
|
2211 |
-
}
|
2212 |
-
|
2213 |
-
.premium-modal-box-modal-close {
|
2214 |
-
float: left;
|
2215 |
-
font-size: 21px;
|
2216 |
-
font-weight: bold;
|
2217 |
-
line-height: 1;
|
2218 |
-
color: #000;
|
2219 |
-
}
|
2220 |
-
|
2221 |
-
.premium-modal-box-modal-close:hover,
|
2222 |
-
.premium-modal-box-modal-close:focus {
|
2223 |
-
color: #000;
|
2224 |
-
text-decoration: none;
|
2225 |
-
cursor: pointer;
|
2226 |
-
}
|
2227 |
-
|
2228 |
-
button.premium-modal-box-modal-close {
|
2229 |
-
-webkit-appearance: none;
|
2230 |
-
padding: 0;
|
2231 |
-
cursor: pointer;
|
2232 |
-
background: transparent;
|
2233 |
-
border: 0;
|
2234 |
-
}
|
2235 |
-
|
2236 |
-
.premium-modal-box-modal {
|
2237 |
-
position: fixed;
|
2238 |
-
top: 0;
|
2239 |
-
left: 0;
|
2240 |
-
bottom: 0;
|
2241 |
-
right: 0;
|
2242 |
-
z-index: 1050;
|
2243 |
-
display: none;
|
2244 |
-
-webkit-overflow-scrolling: touch;
|
2245 |
-
outline: 0;
|
2246 |
-
padding: 0 !important;
|
2247 |
-
background: rgba(0, 0, 0, 0.5);
|
2248 |
-
-webkit-box-align: center;
|
2249 |
-
-webkit-align-items: center;
|
2250 |
-
-moz-box-align: center;
|
2251 |
-
-ms-flex-align: center;
|
2252 |
-
align-items: center;
|
2253 |
-
-webkit-box-pack: center;
|
2254 |
-
-webkit-justify-content: center;
|
2255 |
-
-moz-box-pack: center;
|
2256 |
-
-ms-flex-pack: center;
|
2257 |
-
justify-content: center;
|
2258 |
-
}
|
2259 |
-
|
2260 |
-
.premium-modal-box-modal .premium-modal-box-modal-dialog {
|
2261 |
-
position: absolute;
|
2262 |
-
max-height: -webkit-calc(100vh - 150px);
|
2263 |
-
max-height: calc(100vh - 150px);
|
2264 |
-
-js-display: flex;
|
2265 |
-
display: -webkit-box;
|
2266 |
-
display: -webkit-flex;
|
2267 |
-
display: -moz-box;
|
2268 |
-
display: -ms-flexbox;
|
2269 |
-
display: flex;
|
2270 |
-
-webkit-box-orient: vertical;
|
2271 |
-
-webkit-box-direction: normal;
|
2272 |
-
-webkit-flex-direction: column;
|
2273 |
-
-moz-box-orient: vertical;
|
2274 |
-
-moz-box-direction: normal;
|
2275 |
-
-ms-flex-direction: column;
|
2276 |
-
flex-direction: column;
|
2277 |
-
opacity: 0;
|
2278 |
-
}
|
2279 |
-
|
2280 |
-
.premium-modal-box-modal-content {
|
2281 |
-
background-color: #fff;
|
2282 |
-
-webkit-background-clip: padding-box;
|
2283 |
-
background-clip: padding-box;
|
2284 |
-
border: 1px solid rgba(0, 0, 0, 0.2);
|
2285 |
-
-webkit-border-radius: 6px;
|
2286 |
-
border-radius: 6px;
|
2287 |
-
outline: 0;
|
2288 |
-
}
|
2289 |
-
|
2290 |
-
.premium-modal-backdrop.premium-in {
|
2291 |
-
filter: alpha(opacity=50);
|
2292 |
-
opacity: 0.5 !important;
|
2293 |
-
}
|
2294 |
-
|
2295 |
-
.premium-modal-fade.premium-in {
|
2296 |
-
opacity: 1;
|
2297 |
-
}
|
2298 |
-
|
2299 |
-
.premium-modal-backdrop {
|
2300 |
-
position: fixed;
|
2301 |
-
top: 0;
|
2302 |
-
left: 0;
|
2303 |
-
bottom: 0;
|
2304 |
-
right: 0;
|
2305 |
-
z-index: 1040;
|
2306 |
-
background-color: #000;
|
2307 |
-
}
|
2308 |
-
|
2309 |
-
.premium-modal-backdrop.premium-modal-fade {
|
2310 |
-
filter: alpha(opacity=0);
|
2311 |
-
opacity: 0;
|
2312 |
-
}
|
2313 |
-
|
2314 |
-
.premium-modal-fade {
|
2315 |
-
opacity: 0;
|
2316 |
-
}
|
2317 |
-
|
2318 |
-
.premium-in {
|
2319 |
-
-js-display: flex !important;
|
2320 |
-
display: -webkit-box !important;
|
2321 |
-
display: -webkit-flex !important;
|
2322 |
-
display: -moz-box !important;
|
2323 |
-
display: -ms-flexbox !important;
|
2324 |
-
display: flex !important;
|
2325 |
-
}
|
2326 |
-
|
2327 |
-
.premium-modal-box-modal-header {
|
2328 |
-
-js-display: flex;
|
2329 |
-
display: -webkit-box;
|
2330 |
-
display: -webkit-flex;
|
2331 |
-
display: -moz-box;
|
2332 |
-
display: -ms-flexbox;
|
2333 |
-
display: flex;
|
2334 |
-
-webkit-box-pack: justify;
|
2335 |
-
-webkit-justify-content: space-between;
|
2336 |
-
-moz-box-pack: justify;
|
2337 |
-
-ms-flex-pack: justify;
|
2338 |
-
justify-content: space-between;
|
2339 |
-
-webkit-box-align: center;
|
2340 |
-
-webkit-align-items: center;
|
2341 |
-
-moz-box-align: center;
|
2342 |
-
-ms-flex-align: center;
|
2343 |
-
align-items: center;
|
2344 |
-
padding: 5px 15px;
|
2345 |
-
border-bottom: 1px solid #e5e5e5;
|
2346 |
-
}
|
2347 |
-
|
2348 |
-
.premium-modal-box-modal-header .premium-modal-box-modal-close {
|
2349 |
-
margin-top: -2px;
|
2350 |
-
}
|
2351 |
-
|
2352 |
-
.premium-modal-box-modal-header .premium-modal-box-modal-title {
|
2353 |
-
-js-display: flex;
|
2354 |
-
display: -webkit-box;
|
2355 |
-
display: -webkit-flex;
|
2356 |
-
display: -moz-box;
|
2357 |
-
display: -ms-flexbox;
|
2358 |
-
display: flex;
|
2359 |
-
-webkit-box-align: center;
|
2360 |
-
-webkit-align-items: center;
|
2361 |
-
-moz-box-align: center;
|
2362 |
-
-ms-flex-align: center;
|
2363 |
-
align-items: center;
|
2364 |
-
margin: 0;
|
2365 |
-
padding: 0;
|
2366 |
-
}
|
2367 |
-
|
2368 |
-
.premium-modal-box-modal-header .premium-modal-box-modal-title svg {
|
2369 |
-
width: 50px;
|
2370 |
-
height: 60px;
|
2371 |
-
}
|
2372 |
-
|
2373 |
-
.premium-modal-box-modal-body {
|
2374 |
-
position: relative;
|
2375 |
-
padding: 15px;
|
2376 |
-
overflow: hidden;
|
2377 |
-
}
|
2378 |
-
|
2379 |
-
.premium-modal-box-modal-footer {
|
2380 |
-
padding: 15px;
|
2381 |
-
text-align: left;
|
2382 |
-
border-top: 1px solid #e5e5e5;
|
2383 |
-
}
|
2384 |
-
|
2385 |
-
.premium-modal-scrollbar-measure {
|
2386 |
-
position: absolute;
|
2387 |
-
top: -9999px;
|
2388 |
-
width: 50px;
|
2389 |
-
height: 50px;
|
2390 |
-
overflow: scroll;
|
2391 |
-
}
|
2392 |
-
|
2393 |
-
.premium-modal-trigger-text {
|
2394 |
-
background: none !important;
|
2395 |
-
display: inline-block;
|
2396 |
-
}
|
2397 |
-
|
2398 |
-
.premium-modal-box-container {
|
2399 |
-
width: 100% !important;
|
2400 |
-
}
|
2401 |
-
|
2402 |
-
/*Open Modal Button Style*/
|
2403 |
-
.premium-modal-trigger-container .premium-modal-trigger-btn {
|
2404 |
-
border: none;
|
2405 |
-
-webkit-transition: all 0.3s ease-in-out;
|
2406 |
-
transition: all 0.3s ease-in-out;
|
2407 |
-
}
|
2408 |
-
|
2409 |
-
.premium-modal-trigger-container .premium-modal-trigger-img,
|
2410 |
-
.premium-modal-trigger-container .premium-modal-trigger-text,
|
2411 |
-
.premium-modal-trigger-container .premium-modal-trigger-animation {
|
2412 |
-
cursor: pointer;
|
2413 |
-
}
|
2414 |
-
|
2415 |
-
.premium-modal-trigger-container .premium-modal-trigger-animation {
|
2416 |
-
display: inline-block;
|
2417 |
-
width: 200px;
|
2418 |
-
height: 200px;
|
2419 |
-
-webkit-transition: all 0.3s ease-in-out;
|
2420 |
-
transition: all 0.3s ease-in-out;
|
2421 |
-
}
|
2422 |
-
|
2423 |
-
/*Image on Modal Header Style*/
|
2424 |
-
.premium-modal-box-modal-header img {
|
2425 |
-
width: 48px;
|
2426 |
-
padding-left: 5px;
|
2427 |
-
}
|
2428 |
-
|
2429 |
-
.premium-modal-box-modal-header i,
|
2430 |
-
.premium-modal-box-modal-header svg {
|
2431 |
-
padding-left: 6px;
|
2432 |
-
}
|
2433 |
-
|
2434 |
-
.premium-modal-box-modal-close {
|
2435 |
-
position: relative;
|
2436 |
-
z-index: 99;
|
2437 |
-
}
|
2438 |
-
|
2439 |
-
.premium-modal-trigger-img,
|
2440 |
-
.premium-modal-trigger-text,
|
2441 |
-
.premium-modal-box-close-button-container,
|
2442 |
-
.premium-modal-box-modal-close,
|
2443 |
-
.premium-modal-box-modal-lower-close {
|
2444 |
-
-webkit-transition: all 0.3s ease-in-out;
|
2445 |
-
transition: all 0.3s ease-in-out;
|
2446 |
-
}
|
2447 |
-
|
2448 |
-
@media (min-width: 768px) {
|
2449 |
-
.premium-modal-box-modal-dialog {
|
2450 |
-
width: 700px;
|
2451 |
-
max-height: 600px;
|
2452 |
-
overflow: auto;
|
2453 |
-
}
|
2454 |
-
}
|
2455 |
-
|
2456 |
-
@media (max-width: 767px) {
|
2457 |
-
.premium-modal-box-modal-dialog {
|
2458 |
-
width: 100%;
|
2459 |
-
max-height: 500px;
|
2460 |
-
overflow: auto;
|
2461 |
-
}
|
2462 |
-
}
|
2463 |
-
|
2464 |
-
.premium-modal-box-container[data-modal-animation*="animated-"] {
|
2465 |
-
opacity: 0;
|
2466 |
-
}
|
2467 |
-
|
2468 |
-
/**************** Premium Progress Bar ****************/
|
2469 |
-
/******************************************************/
|
2470 |
-
.premium-progressbar-container {
|
2471 |
-
position: relative;
|
2472 |
-
}
|
2473 |
-
|
2474 |
-
.premium-progressbar-bar-wrap {
|
2475 |
-
position: relative;
|
2476 |
-
text-align: right;
|
2477 |
-
overflow: hidden;
|
2478 |
-
height: 25px;
|
2479 |
-
margin-bottom: 50px;
|
2480 |
-
background-color: #f5f5f5;
|
2481 |
-
-webkit-border-radius: 4px;
|
2482 |
-
border-radius: 4px;
|
2483 |
-
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
2484 |
-
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
2485 |
-
}
|
2486 |
-
|
2487 |
-
.premium-progressbar-bar-wrap.premium-progressbar-dots {
|
2488 |
-
background-color: transparent;
|
2489 |
-
width: 100%;
|
2490 |
-
-js-display: flex;
|
2491 |
-
display: -webkit-box;
|
2492 |
-
display: -webkit-flex;
|
2493 |
-
display: -moz-box;
|
2494 |
-
display: -ms-flexbox;
|
2495 |
-
display: flex;
|
2496 |
-
height: auto;
|
2497 |
-
-webkit-box-shadow: none;
|
2498 |
-
box-shadow: none;
|
2499 |
-
}
|
2500 |
-
|
2501 |
-
.premium-progressbar-bar-wrap .progress-segment {
|
2502 |
-
position: relative;
|
2503 |
-
width: 25px;
|
2504 |
-
height: 25px;
|
2505 |
-
-webkit-border-radius: 50%;
|
2506 |
-
border-radius: 50%;
|
2507 |
-
overflow: hidden;
|
2508 |
-
background-color: #f5f5f5;
|
2509 |
-
}
|
2510 |
-
|
2511 |
-
.premium-progressbar-bar-wrap .progress-segment.filled {
|
2512 |
-
background: #6ec1e4;
|
2513 |
-
}
|
2514 |
-
|
2515 |
-
.premium-progressbar-bar-wrap .progress-segment:not(:first-child):not(:last-child) {
|
2516 |
-
margin: 0 4px;
|
2517 |
-
}
|
2518 |
-
|
2519 |
-
.premium-progressbar-bar-wrap .progress-segment:first-child {
|
2520 |
-
margin-left: 4px;
|
2521 |
-
}
|
2522 |
-
|
2523 |
-
.premium-progressbar-bar-wrap .progress-segment:last-child {
|
2524 |
-
margin-right: 4px;
|
2525 |
-
}
|
2526 |
-
|
2527 |
-
.premium-progressbar-bar-wrap .progress-segment .segment-inner {
|
2528 |
-
position: absolute;
|
2529 |
-
top: 0;
|
2530 |
-
right: 0;
|
2531 |
-
height: 100%;
|
2532 |
-
background-color: #6ec1e4;
|
2533 |
-
}
|
2534 |
-
|
2535 |
-
.premium-progressbar-bar {
|
2536 |
-
float: right;
|
2537 |
-
width: 0%;
|
2538 |
-
height: 100%;
|
2539 |
-
font-size: 12px;
|
2540 |
-
line-height: 20px;
|
2541 |
-
background: #6ec1e4;
|
2542 |
-
text-align: center;
|
2543 |
-
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
2544 |
-
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
2545 |
-
}
|
2546 |
-
|
2547 |
-
.premium-progressbar-striped .premium-progressbar-bar {
|
2548 |
-
background-image: -webkit-linear-gradient(-135deg,
|
2549 |
-
rgba(255, 255, 255, 0.15) 25%,
|
2550 |
-
transparent 25%,
|
2551 |
-
transparent 50%,
|
2552 |
-
rgba(255, 255, 255, 0.15) 50%,
|
2553 |
-
rgba(255, 255, 255, 0.15) 75%,
|
2554 |
-
transparent 75%,
|
2555 |
-
transparent);
|
2556 |
-
background-image: -webkit-linear-gradient(45deg,
|
2557 |
-
rgba(255, 255, 255, 0.15) 25%,
|
2558 |
-
transparent 25%,
|
2559 |
-
transparent 50%,
|
2560 |
-
rgba(255, 255, 255, 0.15) 50%,
|
2561 |
-
rgba(255, 255, 255, 0.15) 75%,
|
2562 |
-
transparent 75%,
|
2563 |
-
transparent);
|
2564 |
-
background-image: linear-gradient(45deg,
|
2565 |
-
rgba(255, 255, 255, 0.15) 25%,
|
2566 |
-
transparent 25%,
|
2567 |
-
transparent 50%,
|
2568 |
-
rgba(255, 255, 255, 0.15) 50%,
|
2569 |
-
rgba(255, 255, 255, 0.15) 75%,
|
2570 |
-
transparent 75%,
|
2571 |
-
transparent);
|
2572 |
-
-webkit-background-size: 40px 40px;
|
2573 |
-
background-size: 40px 40px;
|
2574 |
-
}
|
2575 |
-
|
2576 |
-
.premium-progressbar-active .premium-progressbar-bar {
|
2577 |
-
-webkit-animation: progress-bar-stripes 2s linear infinite;
|
2578 |
-
animation: progress-bar-stripes 2s linear infinite;
|
2579 |
-
}
|
2580 |
-
|
2581 |
-
.premium-progressbar-gradient .premium-progressbar-bar {
|
2582 |
-
-webkit-background-size: 400% 400% !important;
|
2583 |
-
background-size: 400% 400% !important;
|
2584 |
-
-webkit-animation: progress-bar-gradient 10s ease-in-out infinite;
|
2585 |
-
animation: progress-bar-gradient 10s ease-in-out infinite;
|
2586 |
-
}
|
2587 |
-
|
2588 |
-
.premium-progressbar-bar {
|
2589 |
-
position: absolute;
|
2590 |
-
overflow: hidden;
|
2591 |
-
line-height: 20px;
|
2592 |
-
}
|
2593 |
-
|
2594 |
-
.premium-progressbar-container .clearfix {
|
2595 |
-
clear: both;
|
2596 |
-
}
|
2597 |
-
|
2598 |
-
.premium-progressbar-bar {
|
2599 |
-
-webkit-transition: width 0s ease-in-out !important;
|
2600 |
-
transition: width 0s ease-in-out !important;
|
2601 |
-
}
|
2602 |
-
|
2603 |
-
.premium-progressbar-container p:first-of-type {
|
2604 |
-
margin: 0;
|
2605 |
-
float: right;
|
2606 |
-
}
|
2607 |
-
|
2608 |
-
.premium-progressbar-container p:nth-of-type(2) {
|
2609 |
-
margin: 0;
|
2610 |
-
float: left;
|
2611 |
-
}
|
2612 |
-
|
2613 |
-
.premium-progressbar-name {
|
2614 |
-
right: 50%;
|
2615 |
-
top: 0;
|
2616 |
-
left: 0;
|
2617 |
-
-webkit-transform: translateX(12.5px);
|
2618 |
-
-ms-transform: translateX(12.5px);
|
2619 |
-
transform: translateX(12.5px);
|
2620 |
-
z-index: 1;
|
2621 |
-
}
|
2622 |
-
|
2623 |
-
.premium-progressbar-multiple-label {
|
2624 |
-
position: relative;
|
2625 |
-
float: right;
|
2626 |
-
width: 0;
|
2627 |
-
right: 50%;
|
2628 |
-
}
|
2629 |
-
|
2630 |
-
.premium-progressbar-center-label {
|
2631 |
-
position: relative;
|
2632 |
-
white-space: nowrap;
|
2633 |
-
}
|
2634 |
-
|
2635 |
-
.premium-progressbar-arrow {
|
2636 |
-
height: 15px;
|
2637 |
-
right: 50%;
|
2638 |
-
display: inline-block;
|
2639 |
-
border-right: 7px solid transparent;
|
2640 |
-
border-left: 7px solid transparent;
|
2641 |
-
border-top: 11px solid;
|
2642 |
-
-webkit-transform: translateX(50%);
|
2643 |
-
-ms-transform: translateX(50%);
|
2644 |
-
transform: translateX(50%);
|
2645 |
-
}
|
2646 |
-
|
2647 |
-
.premium-progressbar-pin {
|
2648 |
-
border-right: 1px solid;
|
2649 |
-
height: 12px;
|
2650 |
-
right: 50%;
|
2651 |
-
display: inline-block;
|
2652 |
-
}
|
2653 |
-
|
2654 |
-
/**
|
2655 |
-
* Circle Progress Bar
|
2656 |
-
*/
|
2657 |
-
.premium-progressbar-circle-wrap {
|
2658 |
-
width: 200px;
|
2659 |
-
height: 200px;
|
2660 |
-
position: relative;
|
2661 |
-
margin: 0 auto;
|
2662 |
-
}
|
2663 |
-
|
2664 |
-
.premium-progressbar-circle-wrap .premium-progressbar-circle {
|
2665 |
-
position: absolute;
|
2666 |
-
top: 0;
|
2667 |
-
right: 0;
|
2668 |
-
width: 100%;
|
2669 |
-
height: 100%;
|
2670 |
-
-webkit-clip-path: inset(0 0 0 50%);
|
2671 |
-
clip-path: inset(0 0 0 50%);
|
2672 |
-
}
|
2673 |
-
|
2674 |
-
.premium-progressbar-circle-wrap .premium-progressbar-circle div {
|
2675 |
-
position: absolute;
|
2676 |
-
right: 0;
|
2677 |
-
top: 0;
|
2678 |
-
height: 100%;
|
2679 |
-
width: 100%;
|
2680 |
-
border-width: 6px;
|
2681 |
-
border-style: solid;
|
2682 |
-
border-color: #54595f;
|
2683 |
-
-webkit-border-radius: 50%;
|
2684 |
-
border-radius: 50%;
|
2685 |
-
-webkit-clip-path: inset(0 50% 0 0);
|
2686 |
-
clip-path: inset(0 50% 0 0);
|
2687 |
-
}
|
2688 |
-
|
2689 |
-
.premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-left {
|
2690 |
-
-webkit-transform: rotate(0);
|
2691 |
-
-ms-transform: rotate(0);
|
2692 |
-
transform: rotate(0);
|
2693 |
-
}
|
2694 |
-
|
2695 |
-
.premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-right {
|
2696 |
-
-webkit-transform: rotate(-180deg);
|
2697 |
-
-ms-transform: rotate(-180deg);
|
2698 |
-
transform: rotate(-180deg);
|
2699 |
-
visibility: hidden;
|
2700 |
-
}
|
2701 |
-
|
2702 |
-
.premium-progressbar-circle-wrap .premium-progressbar-circle-base {
|
2703 |
-
width: 100%;
|
2704 |
-
height: 100%;
|
2705 |
-
border: 6px solid #eee;
|
2706 |
-
-webkit-border-radius: 50%;
|
2707 |
-
border-radius: 50%;
|
2708 |
-
}
|
2709 |
-
|
2710 |
-
.premium-progressbar-circle-wrap .premium-progressbar-circle-content {
|
2711 |
-
position: absolute;
|
2712 |
-
top: 0;
|
2713 |
-
right: 0;
|
2714 |
-
width: 100%;
|
2715 |
-
height: 100%;
|
2716 |
-
-js-display: flex;
|
2717 |
-
display: -webkit-box;
|
2718 |
-
display: -webkit-flex;
|
2719 |
-
display: -moz-box;
|
2720 |
-
display: -ms-flexbox;
|
2721 |
-
display: flex;
|
2722 |
-
-webkit-box-orient: vertical;
|
2723 |
-
-webkit-box-direction: normal;
|
2724 |
-
-webkit-flex-direction: column;
|
2725 |
-
-moz-box-orient: vertical;
|
2726 |
-
-moz-box-direction: normal;
|
2727 |
-
-ms-flex-direction: column;
|
2728 |
-
flex-direction: column;
|
2729 |
-
-webkit-box-pack: center;
|
2730 |
-
-webkit-justify-content: center;
|
2731 |
-
-moz-box-pack: center;
|
2732 |
-
-ms-flex-pack: center;
|
2733 |
-
justify-content: center;
|
2734 |
-
-webkit-box-align: center;
|
2735 |
-
-webkit-align-items: center;
|
2736 |
-
-moz-box-align: center;
|
2737 |
-
-ms-flex-align: center;
|
2738 |
-
align-items: center;
|
2739 |
-
}
|
2740 |
-
|
2741 |
-
.premium-progressbar-circle-wrap .premium-lottie-animation {
|
2742 |
-
line-height: 1;
|
2743 |
-
}
|
2744 |
-
|
2745 |
-
@-webkit-keyframes progress-bar-stripes {
|
2746 |
-
from {
|
2747 |
-
background-position: 100% 0;
|
2748 |
-
}
|
2749 |
-
|
2750 |
-
to {
|
2751 |
-
background-position: 40px 0;
|
2752 |
-
}
|
2753 |
-
}
|
2754 |
-
|
2755 |
-
@keyframes progress-bar-stripes {
|
2756 |
-
from {
|
2757 |
-
background-position: 100% 0;
|
2758 |
-
}
|
2759 |
-
|
2760 |
-
to {
|
2761 |
-
background-position: 40px 0;
|
2762 |
-
}
|
2763 |
-
}
|
2764 |
-
|
2765 |
-
@-webkit-keyframes progress-bar-gradient {
|
2766 |
-
0% {
|
2767 |
-
background-position: 100% 50%;
|
2768 |
-
}
|
2769 |
-
|
2770 |
-
50% {
|
2771 |
-
background-position: 0% 50%;
|
2772 |
-
}
|
2773 |
-
|
2774 |
-
100% {
|
2775 |
-
background-position: 100% 50%;
|
2776 |
-
}
|
2777 |
-
}
|
2778 |
-
|
2779 |
-
@keyframes progress-bar-gradient {
|
2780 |
-
0% {
|
2781 |
-
background-position: 100% 50%;
|
2782 |
-
}
|
2783 |
-
|
2784 |
-
50% {
|
2785 |
-
background-position: 0% 50%;
|
2786 |
-
}
|
2787 |
-
|
2788 |
-
100% {
|
2789 |
-
background-position: 100% 50%;
|
2790 |
-
}
|
2791 |
-
}
|
2792 |
-
|
2793 |
-
/**************** Premium Testimonials ****************/
|
2794 |
-
/******************************************************/
|
2795 |
-
.premium-testimonial-box {
|
2796 |
-
width: 100%;
|
2797 |
-
background: transparent;
|
2798 |
-
-webkit-transition: all 0.3s ease-in-out;
|
2799 |
-
transition: all 0.3s ease-in-out;
|
2800 |
-
}
|
2801 |
-
|
2802 |
-
.premium-testimonial-box .premium-testimonial-author-info {
|
2803 |
-
-js-display: flex;
|
2804 |
-
display: -webkit-box;
|
2805 |
-
display: -webkit-flex;
|
2806 |
-
display: -moz-box;
|
2807 |
-
display: -ms-flexbox;
|
2808 |
-
display: flex;
|
2809 |
-
-webkit-box-pack: center;
|
2810 |
-
-webkit-justify-content: center;
|
2811 |
-
-moz-box-pack: center;
|
2812 |
-
-ms-flex-pack: center;
|
2813 |
-
justify-content: center;
|
2814 |
-
-webkit-box-align: center;
|
2815 |
-
-webkit-align-items: center;
|
2816 |
-
-moz-box-align: center;
|
2817 |
-
-ms-flex-align: center;
|
2818 |
-
align-items: center;
|
2819 |
-
}
|
2820 |
-
|
2821 |
-
.premium-testimonial-box .premium-testimonial-person-name,
|
2822 |
-
.premium-testimonial-box .premium-testimonial-company-name {
|
2823 |
-
font-weight: 600;
|
2824 |
-
margin: 0;
|
2825 |
-
}
|
2826 |
-
|
2827 |
-
.premium-testimonial-container {
|
2828 |
-
position: relative;
|
2829 |
-
}
|
2830 |
-
|
2831 |
-
.premium-testimonial-img-wrapper {
|
2832 |
-
margin-right: auto;
|
2833 |
-
margin-left: auto;
|
2834 |
-
overflow: hidden;
|
2835 |
-
border-style: solid !important;
|
2836 |
-
}
|
2837 |
-
|
2838 |
-
.premium-testimonial-img-wrapper.circle {
|
2839 |
-
-webkit-border-radius: 50%;
|
2840 |
-
border-radius: 50%;
|
2841 |
-
}
|
2842 |
-
|
2843 |
-
.premium-testimonial-img-wrapper.rounded {
|
2844 |
-
-webkit-border-radius: 15px;
|
2845 |
-
border-radius: 15px;
|
2846 |
-
}
|
2847 |
-
|
2848 |
-
.premium-testimonial-img-wrapper img {
|
2849 |
-
-o-object-fit: cover;
|
2850 |
-
object-fit: cover;
|
2851 |
-
width: 100%;
|
2852 |
-
height: 100% !important;
|
2853 |
-
}
|
2854 |
-
|
2855 |
-
.premium-testimonial-content-wrapper {
|
2856 |
-
position: relative;
|
2857 |
-
display: -ms-flexbox;
|
2858 |
-
display: -webkit-flex;
|
2859 |
-
display: -moz-flex;
|
2860 |
-
display: -ms-flex;
|
2861 |
-
-js-display: flex;
|
2862 |
-
display: -webkit-box;
|
2863 |
-
display: -moz-box;
|
2864 |
-
display: flex;
|
2865 |
-
-webkit-box-orient: vertical;
|
2866 |
-
-webkit-box-direction: normal;
|
2867 |
-
-webkit-flex-direction: column;
|
2868 |
-
-moz-box-orient: vertical;
|
2869 |
-
-moz-box-direction: normal;
|
2870 |
-
-ms-flex-direction: column;
|
2871 |
-
flex-direction: column;
|
2872 |
-
z-index: 2;
|
2873 |
-
width: 100%;
|
2874 |
-
padding: 20px;
|
2875 |
-
text-align: center;
|
2876 |
-
}
|
2877 |
-
|
2878 |
-
.premium-testimonial-clear-float {
|
2879 |
-
clear: both;
|
2880 |
-
}
|
2881 |
-
|
2882 |
-
.premium-testimonial-upper-quote,
|
2883 |
-
.premium-testimonial-lower-quote {
|
2884 |
-
position: absolute;
|
2885 |
-
z-index: 1;
|
2886 |
-
}
|
2887 |
-
|
2888 |
-
/**************** Premium Dual Heading *****************/
|
2889 |
-
/*******************************************************/
|
2890 |
-
.premium-dual-header-container .premium-dual-header-first-header,
|
2891 |
-
.premium-dual-header-container .premium-dual-header-second-header {
|
2892 |
-
position: relative;
|
2893 |
-
padding: 0;
|
2894 |
-
margin: 0;
|
2895 |
-
display: inline-block;
|
2896 |
-
-webkit-transform: translate(0, 0);
|
2897 |
-
-ms-transform: translate(0, 0);
|
2898 |
-
transform: translate(0, 0);
|
2899 |
-
}
|
2900 |
-
|
2901 |
-
.premium-dual-header-first-clip .premium-dual-header-first-span,
|
2902 |
-
.premium-dual-header-second-clip {
|
2903 |
-
-webkit-text-fill-color: transparent;
|
2904 |
-
-webkit-background-clip: text;
|
2905 |
-
}
|
2906 |
-
|
2907 |
-
.premium-dual-header-first-clip.stroke .premium-dual-header-first-span,
|
2908 |
-
.premium-dual-header-second-clip.stroke {
|
2909 |
-
-webkit-text-stroke-color: transparent;
|
2910 |
-
-webkit-text-fill-color: #fafafa;
|
2911 |
-
-webkit-text-stroke-width: 2px;
|
2912 |
-
}
|
2913 |
-
|
2914 |
-
@media (max-width: 500px) {
|
2915 |
-
|
2916 |
-
.premium-dual-header-container .premium-dual-header-first-header,
|
2917 |
-
.premium-dual-header-container .premium-dual-header-second-header {
|
2918 |
-
display: block;
|
2919 |
-
word-wrap: break-word;
|
2920 |
-
}
|
2921 |
-
|
2922 |
-
.premium-dual-header-first-container,
|
2923 |
-
.premium-dual-header-second-container {
|
2924 |
-
margin: 0;
|
2925 |
-
}
|
2926 |
-
}
|
2927 |
-
|
2928 |
-
@media (min-width: 501px) {
|
2929 |
-
.premium-dual-header-first-container {
|
2930 |
-
margin-left: 5px;
|
2931 |
-
}
|
2932 |
-
}
|
2933 |
-
|
2934 |
-
.premium-dual-header-first-header.gradient .premium-dual-header-first-span,
|
2935 |
-
.premium-dual-header-second-header.gradient {
|
2936 |
-
-webkit-background-size: 300% 300% !important;
|
2937 |
-
background-size: 300% 300% !important;
|
2938 |
-
-webkit-animation: Gradient 10s ease-in-out infinite;
|
2939 |
-
animation: Gradient 10s ease-in-out infinite;
|
2940 |
-
}
|
2941 |
-
|
2942 |
-
@-webkit-keyframes Gradient {
|
2943 |
-
0% {
|
2944 |
-
background-position: 100% 50%;
|
2945 |
-
}
|
2946 |
-
|
2947 |
-
50% {
|
2948 |
-
background-position: 0% 50%;
|
2949 |
-
}
|
2950 |
-
|
2951 |
-
100% {
|
2952 |
-
background-position: 100% 50%;
|
2953 |
-
}
|
2954 |
-
}
|
2955 |
-
|
2956 |
-
@keyframes Gradient {
|
2957 |
-
0% {
|
2958 |
-
background-position: 100% 50%;
|
2959 |
-
}
|
2960 |
-
|
2961 |
-
50% {
|
2962 |
-
background-position: 0% 50%;
|
2963 |
-
}
|
2964 |
-
|
2965 |
-
100% {
|
2966 |
-
background-position: 100% 50%;
|
2967 |
-
}
|
2968 |
-
}
|
2969 |
-
|
2970 |
-
/**************** Premium Title ****************/
|
2971 |
-
/***********************************************/
|
2972 |
-
.premium-title-container {
|
2973 |
-
position: relative;
|
2974 |
-
width: 100%;
|
2975 |
-
clear: both;
|
2976 |
-
overflow: hidden;
|
2977 |
-
}
|
2978 |
-
|
2979 |
-
.premium-title-container .premium-title-header {
|
2980 |
-
position: relative;
|
2981 |
-
margin: 0;
|
2982 |
-
padding: 10px;
|
2983 |
-
}
|
2984 |
-
|
2985 |
-
.premium-title-container .premium-title-header:not(.premium-title-style7) {
|
2986 |
-
-webkit-box-align: center;
|
2987 |
-
-webkit-align-items: center;
|
2988 |
-
-moz-box-align: center;
|
2989 |
-
-ms-flex-align: center;
|
2990 |
-
align-items: center;
|
2991 |
-
}
|
2992 |
-
|
2993 |
-
.premium-title-container .premium-title-header svg {
|
2994 |
-
width: 40px;
|
2995 |
-
height: 40px;
|
2996 |
-
}
|
2997 |
-
|
2998 |
-
.premium-title-container .premium-title-header img {
|
2999 |
-
width: 40px;
|
3000 |
-
height: 40px;
|
3001 |
-
-o-object-fit: cover;
|
3002 |
-
object-fit: cover;
|
3003 |
-
}
|
3004 |
-
|
3005 |
-
.premium-title-container .premium-title-header a {
|
3006 |
-
position: absolute;
|
3007 |
-
top: 0;
|
3008 |
-
right: 0;
|
3009 |
-
width: 100%;
|
3010 |
-
height: 100%;
|
3011 |
-
}
|
3012 |
-
|
3013 |
-
.premium-title-container .premium-lottie-animation {
|
3014 |
-
-js-display: flex;
|
3015 |
-
display: -webkit-box;
|
3016 |
-
display: -webkit-flex;
|
3017 |
-
display: -moz-box;
|
3018 |
-
display: -ms-flexbox;
|
3019 |
-
display: flex;
|
3020 |
-
}
|
3021 |
-
|
3022 |
-
.premium-title-icon-row .premium-title-icon {
|
3023 |
-
margin-left: 10px;
|
3024 |
-
}
|
3025 |
-
|
3026 |
-
.premium-title-icon-row-reverse .premium-title-icon {
|
3027 |
-
margin-right: 10px;
|
3028 |
-
}
|
3029 |
-
|
3030 |
-
.premium-title-style3,
|
3031 |
-
.premium-title-style4 {
|
3032 |
-
-js-display: flex;
|
3033 |
-
display: -webkit-box;
|
3034 |
-
display: -webkit-flex;
|
3035 |
-
display: -moz-box;
|
3036 |
-
display: -ms-flexbox;
|
3037 |
-
display: flex;
|
3038 |
-
}
|
3039 |
-
|
3040 |
-
.premium-title-style1,
|
3041 |
-
.premium-title-style2,
|
3042 |
-
.premium-title-style5,
|
3043 |
-
.premium-title-style6,
|
3044 |
-
.premium-title-style8,
|
3045 |
-
.premium-title-style9 {
|
3046 |
-
-js-display: inline-flex;
|
3047 |
-
display: -webkit-inline-box;
|
3048 |
-
display: -webkit-inline-flex;
|
3049 |
-
display: -moz-inline-box;
|
3050 |
-
display: -ms-inline-flexbox;
|
3051 |
-
display: inline-flex;
|
3052 |
-
}
|
3053 |
-
|
3054 |
-
.premium-title-style7 {
|
3055 |
-
-js-display: inline-flex;
|
3056 |
-
display: -webkit-inline-box;
|
3057 |
-
display: -webkit-inline-flex;
|
3058 |
-
display: -moz-inline-box;
|
3059 |
-
display: -ms-inline-flexbox;
|
3060 |
-
display: inline-flex;
|
3061 |
-
-webkit-box-orient: vertical;
|
3062 |
-
-webkit-box-direction: normal;
|
3063 |
-
-webkit-flex-direction: column;
|
3064 |
-
-moz-box-orient: vertical;
|
3065 |
-
-moz-box-direction: normal;
|
3066 |
-
-ms-flex-direction: column;
|
3067 |
-
flex-direction: column;
|
3068 |
-
}
|
3069 |
-
|
3070 |
-
.premium-title-style7 .premium-title-style7-inner {
|
3071 |
-
-js-display: flex;
|
3072 |
-
display: -webkit-box;
|
3073 |
-
display: -webkit-flex;
|
3074 |
-
display: -moz-box;
|
3075 |
-
display: -ms-flexbox;
|
3076 |
-
display: flex;
|
3077 |
-
-webkit-box-align: center;
|
3078 |
-
-webkit-align-items: center;
|
3079 |
-
-moz-box-align: center;
|
3080 |
-
-ms-flex-align: center;
|
3081 |
-
align-items: center;
|
3082 |
-
}
|
3083 |
-
|
3084 |
-
.premium-title-style1 {
|
3085 |
-
border-right: 3px solid #6ec1e4;
|
3086 |
-
}
|
3087 |
-
|
3088 |
-
.premium-title-container.style2,
|
3089 |
-
.premium-title-container.style4,
|
3090 |
-
.premium-title-container.style5,
|
3091 |
-
.premium-title-container.style6 {
|
3092 |
-
border-bottom: 3px solid #6ec1e4;
|
3093 |
-
}
|
3094 |
-
|
3095 |
-
/*Style 6 Header*/
|
3096 |
-
.premium-title-style6:before {
|
3097 |
-
position: absolute;
|
3098 |
-
right: 50%;
|
3099 |
-
bottom: 0;
|
3100 |
-
margin-right: -2px;
|
3101 |
-
content: "";
|
3102 |
-
border: 3px solid transparent;
|
3103 |
-
}
|
3104 |
-
|
3105 |
-
/*Style 6 Trinagle*/
|
3106 |
-
.premium-title-style7-stripe-wrap {
|
3107 |
-
-js-display: flex;
|
3108 |
-
display: -webkit-box;
|
3109 |
-
display: -webkit-flex;
|
3110 |
-
display: -moz-box;
|
3111 |
-
display: -ms-flexbox;
|
3112 |
-
display: flex;
|
3113 |
-
}
|
3114 |
-
|
3115 |
-
.premium-title-style7:before {
|
3116 |
-
display: none;
|
3117 |
-
}
|
3118 |
-
|
3119 |
-
.premium-title-style8 .premium-title-text[data-animation="shiny"] {
|
3120 |
-
-webkit-background-size: 125px 125px !important;
|
3121 |
-
background-size: 125px !important;
|
3122 |
-
color: rgba(255, 255, 255, 0);
|
3123 |
-
-webkit-background-clip: text !important;
|
3124 |
-
background-clip: text !important;
|
3125 |
-
-webkit-animation-name: pa-shinny-text !important;
|
3126 |
-
animation-name: pa-shinny-text !important;
|
3127 |
-
-webkit-animation-duration: var(--animation-speed) !important;
|
3128 |
-
animation-duration: var(--animation-speed) !important;
|
3129 |
-
-webkit-animation-iteration-count: infinite !important;
|
3130 |
-
animation-iteration-count: infinite !important;
|
3131 |
-
background: var(--base-color) -webkit-gradient(linear,
|
3132 |
-
left top,
|
3133 |
-
right top,
|
3134 |
-
from(var(--base-color)),
|
3135 |
-
to(var(--base-color)),
|
3136 |
-
color-stop(0.5, var(--shiny-color))) 0 0 no-repeat;
|
3137 |
-
}
|
3138 |
-
|
3139 |
-
.premium-title-style9[data-animation-blur="process"] .premium-title-style9-letter {
|
3140 |
-
-webkit-animation: pa-blur-shadow 2s 1 alternate;
|
3141 |
-
animation: pa-blur-shadow 2s 1 alternate;
|
3142 |
-
}
|
3143 |
-
|
3144 |
-
.premium-title-gradient-yes .premium-title-text,
|
3145 |
-
.premium-title-gradient-yes .premium-title-icon {
|
3146 |
-
-webkit-background-clip: text;
|
3147 |
-
-webkit-text-fill-color: transparent;
|
3148 |
-
background-image: -webkit-gradient(linear, left top, right top, from(#ffa648), color-stop(#f17cc1), to(#4da9fd));
|
3149 |
-
background-image: -webkit-linear-gradient(left, #ffa648, #f17cc1, #4da9fd);
|
3150 |
-
background-image: linear-gradient(to right, #ffa648, #f17cc1, #4da9fd);
|
3151 |
-
-webkit-animation: pa-text-gradient 8s infinite;
|
3152 |
-
animation: pa-text-gradient 8s infinite;
|
3153 |
-
}
|
3154 |
-
|
3155 |
-
@-webkit-keyframes pa-shinny-text {
|
3156 |
-
0% {
|
3157 |
-
background-position: 100%;
|
3158 |
-
}
|
3159 |
-
|
3160 |
-
100% {
|
3161 |
-
background-position: -100%;
|
3162 |
-
}
|
3163 |
-
}
|
3164 |
-
|
3165 |
-
@keyframes pa-shinny-text {
|
3166 |
-
0% {
|
3167 |
-
background-position: 100%;
|
3168 |
-
}
|
3169 |
-
|
3170 |
-
100% {
|
3171 |
-
background-position: -100%;
|
3172 |
-
}
|
3173 |
-
}
|
3174 |
-
|
3175 |
-
@-webkit-keyframes pa-blur-shadow {
|
3176 |
-
from {
|
3177 |
-
text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
|
3178 |
-
color: transparent;
|
3179 |
-
}
|
3180 |
-
|
3181 |
-
to {
|
3182 |
-
text-shadow: 0;
|
3183 |
-
}
|
3184 |
-
}
|
3185 |
-
|
3186 |
-
@keyframes pa-blur-shadow {
|
3187 |
-
from {
|
3188 |
-
text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
|
3189 |
-
color: transparent;
|
3190 |
-
}
|
3191 |
-
|
3192 |
-
to {
|
3193 |
-
text-shadow: 0;
|
3194 |
-
}
|
3195 |
-
}
|
3196 |
-
|
3197 |
-
@-webkit-keyframes pa-text-gradient {
|
3198 |
-
|
3199 |
-
0%,
|
3200 |
-
100% {
|
3201 |
-
-webkit-filter: hue-rotate(0deg);
|
3202 |
-
filter: hue-rotate(0deg);
|
3203 |
-
}
|
3204 |
-
|
3205 |
-
50% {
|
3206 |
-
-webkit-filter: hue-rotate(360deg);
|
3207 |
-
filter: hue-rotate(360deg);
|
3208 |
-
}
|
3209 |
-
}
|
3210 |
-
|
3211 |
-
@keyframes pa-text-gradient {
|
3212 |
-
|
3213 |
-
0%,
|
3214 |
-
100% {
|
3215 |
-
-webkit-filter: hue-rotate(0deg);
|
3216 |
-
filter: hue-rotate(0deg);
|
3217 |
-
}
|
3218 |
-
|
3219 |
-
50% {
|
3220 |
-
-webkit-filter: hue-rotate(360deg);
|
3221 |
-
filter: hue-rotate(360deg);
|
3222 |
-
}
|
3223 |
-
}
|
3224 |
-
|
3225 |
-
/*
|
3226 |
-
* Common Title/Dual Heading
|
3227 |
-
*/
|
3228 |
-
.premium-title-bg-text:before {
|
3229 |
-
position: absolute;
|
3230 |
-
content: attr(data-background);
|
3231 |
-
top: 0;
|
3232 |
-
left: 0;
|
3233 |
-
text-align: left;
|
3234 |
-
}
|
3235 |
-
|
3236 |
-
.premium-mask-yes .premium-dual-header-first-clip .premium-dual-header-first-span .premium-mask-span,
|
3237 |
-
.premium-mask-yes .premium-dual-header-second-clip .premium-mask-span {
|
3238 |
-
background: inherit;
|
3239 |
-
}
|
3240 |
-
|
3241 |
-
.premium-mask-yes .premium-mask-span {
|
3242 |
-
position: relative;
|
3243 |
-
overflow: hidden;
|
3244 |
-
-js-display: inline-flex !important;
|
3245 |
-
display: -webkit-inline-box !important;
|
3246 |
-
display: -webkit-inline-flex !important;
|
3247 |
-
display: -moz-inline-box !important;
|
3248 |
-
display: -ms-inline-flexbox !important;
|
3249 |
-
display: inline-flex !important;
|
3250 |
-
}
|
3251 |
-
|
3252 |
-
.premium-mask-yes .premium-mask-span::after {
|
3253 |
-
content: "";
|
3254 |
-
position: absolute;
|
3255 |
-
top: 0;
|
3256 |
-
right: 0px;
|
3257 |
-
width: 100%;
|
3258 |
-
height: 100%;
|
3259 |
-
background-color: currentColor;
|
3260 |
-
-webkit-backface-visibility: visible;
|
3261 |
-
backface-visibility: visible;
|
3262 |
-
}
|
3263 |
-
|
3264 |
-
.premium-mask-active.premium-mask-tr .premium-mask-span::after {
|
3265 |
-
-webkit-animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
3266 |
-
animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
3267 |
-
-webkit-transform: translateX(-103%);
|
3268 |
-
-ms-transform: translateX(-103%);
|
3269 |
-
transform: translateX(-103%);
|
3270 |
-
}
|
3271 |
-
|
3272 |
-
.premium-mask-active.premium-mask-tl .premium-mask-span::after {
|
3273 |
-
-webkit-animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
3274 |
-
animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
3275 |
-
-webkit-transform: translateX(103%);
|
3276 |
-
-ms-transform: translateX(103%);
|
3277 |
-
transform: translateX(103%);
|
3278 |
-
}
|
3279 |
-
|
3280 |
-
.premium-mask-active.premium-mask-tb .premium-mask-span::after {
|
3281 |
-
-webkit-animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
3282 |
-
animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
3283 |
-
-webkit-transform: translateY(-103%);
|
3284 |
-
-ms-transform: translateY(-103%);
|
3285 |
-
transform: translateY(-103%);
|
3286 |
-
}
|
3287 |
-
|
3288 |
-
.premium-mask-active.premium-mask-tt .premium-mask-span::after {
|
3289 |
-
-webkit-animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
3290 |
-
animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
3291 |
-
-webkit-transform: translateY(103%);
|
3292 |
-
-ms-transform: translateY(103%);
|
3293 |
-
transform: translateY(103%);
|
3294 |
-
}
|
3295 |
-
|
3296 |
-
@-webkit-keyframes pa-mask-tr {
|
3297 |
-
0% {
|
3298 |
-
-webkit-transform: translateX(0%);
|
3299 |
-
transform: translateX(0%);
|
3300 |
-
}
|
3301 |
-
|
3302 |
-
100% {
|
3303 |
-
-webkit-transform: translateX(103%);
|
3304 |
-
transform: translateX(103%);
|
3305 |
-
}
|
3306 |
-
}
|
3307 |
-
|
3308 |
-
@keyframes pa-mask-tr {
|
3309 |
-
0% {
|
3310 |
-
-webkit-transform: translateX(0%);
|
3311 |
-
transform: translateX(0%);
|
3312 |
-
}
|
3313 |
-
|
3314 |
-
100% {
|
3315 |
-
-webkit-transform: translateX(103%);
|
3316 |
-
transform: translateX(103%);
|
3317 |
-
}
|
3318 |
-
}
|
3319 |
-
|
3320 |
-
@-webkit-keyframes pa-mask-tl {
|
3321 |
-
0% {
|
3322 |
-
-webkit-transform: translateX(0%);
|
3323 |
-
transform: translateX(0%);
|
3324 |
-
}
|
3325 |
-
|
3326 |
-
100% {
|
3327 |
-
-webkit-transform: translateX(-103%);
|
3328 |
-
transform: translateX(-103%);
|
3329 |
-
}
|
3330 |
-
}
|
3331 |
-
|
3332 |
-
@keyframes pa-mask-tl {
|
3333 |
-
0% {
|
3334 |
-
-webkit-transform: translateX(0%);
|
3335 |
-
transform: translateX(0%);
|
3336 |
-
}
|
3337 |
-
|
3338 |
-
100% {
|
3339 |
-
-webkit-transform: translateX(-103%);
|
3340 |
-
transform: translateX(-103%);
|
3341 |
-
}
|
3342 |
-
}
|
3343 |
-
|
3344 |
-
@-webkit-keyframes pa-mask-tb {
|
3345 |
-
0% {
|
3346 |
-
-webkit-transform: translateY(0%);
|
3347 |
-
transform: translateY(0%);
|
3348 |
-
}
|
3349 |
-
|
3350 |
-
100% {
|
3351 |
-
-webkit-transform: translateY(103%);
|
3352 |
-
transform: translateY(103%);
|
3353 |
-
}
|
3354 |
-
}
|
3355 |
-
|
3356 |
-
@keyframes pa-mask-tb {
|
3357 |
-
0% {
|
3358 |
-
-webkit-transform: translateY(0%);
|
3359 |
-
transform: translateY(0%);
|
3360 |
-
}
|
3361 |
-
|
3362 |
-
100% {
|
3363 |
-
-webkit-transform: translateY(103%);
|
3364 |
-
transform: translateY(103%);
|
3365 |
-
}
|
3366 |
-
}
|
3367 |
-
|
3368 |
-
@-webkit-keyframes pa-mask-tt {
|
3369 |
-
0% {
|
3370 |
-
-webkit-transform: translateY(0%);
|
3371 |
-
transform: translateY(0%);
|
3372 |
-
}
|
3373 |
-
|
3374 |
-
100% {
|
3375 |
-
-webkit-transform: translateY(-103%);
|
3376 |
-
transform: translateY(-103%);
|
3377 |
-
}
|
3378 |
-
}
|
3379 |
-
|
3380 |
-
@keyframes pa-mask-tt {
|
3381 |
-
0% {
|
3382 |
-
-webkit-transform: translateY(0%);
|
3383 |
-
transform: translateY(0%);
|
3384 |
-
}
|
3385 |
-
|
3386 |
-
100% {
|
3387 |
-
-webkit-transform: translateY(-103%);
|
3388 |
-
transform: translateY(-103%);
|
3389 |
-
}
|
3390 |
-
}
|
3391 |
-
|
3392 |
-
/**************** Premium Video Box ************/
|
3393 |
-
/***********************************************/
|
3394 |
-
.premium-video-box-transform {
|
3395 |
-
-webkit-transform: none !important;
|
3396 |
-
-ms-transform: none !important;
|
3397 |
-
transform: none !important;
|
3398 |
-
}
|
3399 |
-
|
3400 |
-
.premium-video-box-container {
|
3401 |
-
-js-display: flex;
|
3402 |
-
display: -webkit-box;
|
3403 |
-
display: -webkit-flex;
|
3404 |
-
display: -moz-box;
|
3405 |
-
display: -ms-flexbox;
|
3406 |
-
display: flex;
|
3407 |
-
-webkit-box-orient: vertical;
|
3408 |
-
-webkit-box-direction: normal;
|
3409 |
-
-webkit-flex-direction: column;
|
3410 |
-
-moz-box-orient: vertical;
|
3411 |
-
-moz-box-direction: normal;
|
3412 |
-
-ms-flex-direction: column;
|
3413 |
-
flex-direction: column;
|
3414 |
-
}
|
3415 |
-
|
3416 |
-
.premium-video-box-container>div {
|
3417 |
-
position: relative;
|
3418 |
-
overflow: hidden;
|
3419 |
-
}
|
3420 |
-
|
3421 |
-
.pa-aspect-ratio-11 .premium-video-box-container>div {
|
3422 |
-
padding-bottom: 100%;
|
3423 |
-
}
|
3424 |
-
|
3425 |
-
.pa-aspect-ratio-169 .premium-video-box-container>div {
|
3426 |
-
padding-bottom: 56.25%;
|
3427 |
-
}
|
3428 |
-
|
3429 |
-
.pa-aspect-ratio-43 .premium-video-box-container>div {
|
3430 |
-
padding-bottom: 75%;
|
3431 |
-
}
|
3432 |
-
|
3433 |
-
.pa-aspect-ratio-32 .premium-video-box-container>div {
|
3434 |
-
padding-bottom: 66.6666%;
|
3435 |
-
}
|
3436 |
-
|
3437 |
-
.pa-aspect-ratio-219 .premium-video-box-container>div {
|
3438 |
-
padding-bottom: 42.8571%;
|
3439 |
-
}
|
3440 |
-
|
3441 |
-
.pa-aspect-ratio-916 .premium-video-box-container>div {
|
3442 |
-
padding-bottom: 177.8%;
|
3443 |
-
}
|
3444 |
-
|
3445 |
-
.premium-video-box-image-container {
|
3446 |
-
position: absolute;
|
3447 |
-
top: 0;
|
3448 |
-
right: 0;
|
3449 |
-
bottom: 0;
|
3450 |
-
left: 0;
|
3451 |
-
width: 100%;
|
3452 |
-
height: 100%;
|
3453 |
-
-webkit-background-size: cover;
|
3454 |
-
background-size: cover;
|
3455 |
-
background-position: 50%;
|
3456 |
-
cursor: pointer;
|
3457 |
-
margin: auto;
|
3458 |
-
-webkit-transition: 0.2s all;
|
3459 |
-
transition: 0.2s all;
|
3460 |
-
}
|
3461 |
-
|
3462 |
-
.premium-video-box-play-icon-container {
|
3463 |
-
position: absolute;
|
3464 |
-
z-index: 2;
|
3465 |
-
cursor: pointer;
|
3466 |
-
-webkit-transform: translate(50%, -50%);
|
3467 |
-
-ms-transform: translate(50%, -50%);
|
3468 |
-
transform: translate(50%, -50%);
|
3469 |
-
background: rgba(252, 252, 252, 0.35);
|
3470 |
-
}
|
3471 |
-
|
3472 |
-
.premium-video-box-description-container {
|
3473 |
-
position: absolute;
|
3474 |
-
z-index: 2;
|
3475 |
-
padding: 5px;
|
3476 |
-
text-align: center;
|
3477 |
-
cursor: pointer;
|
3478 |
-
-webkit-transform: translate(50%, -50%);
|
3479 |
-
-ms-transform: translate(50%, -50%);
|
3480 |
-
transform: translate(50%, -50%);
|
3481 |
-
}
|
3482 |
-
|
3483 |
-
.premium-video-box-text {
|
3484 |
-
margin-bottom: 0 !important;
|
3485 |
-
-webkit-transition: all 0.3s ease-in-out;
|
3486 |
-
transition: all 0.3s ease-in-out;
|
3487 |
-
}
|
3488 |
-
|
3489 |
-
.premium-video-box-play-icon {
|
3490 |
-
padding: 15px;
|
3491 |
-
-webkit-transform: translateX(-4%);
|
3492 |
-
-ms-transform: translateX(-4%);
|
3493 |
-
transform: translateX(-4%);
|
3494 |
-
-webkit-transition: all 0.3s ease-in-out;
|
3495 |
-
transition: all 0.3s ease-in-out;
|
3496 |
-
}
|
3497 |
-
|
3498 |
-
.premium-video-box-video-container {
|
3499 |
-
position: absolute;
|
3500 |
-
top: 0;
|
3501 |
-
right: 0;
|
3502 |
-
z-index: 2;
|
3503 |
-
width: 100%;
|
3504 |
-
height: 100%;
|
3505 |
-
-webkit-transition: opacity 0.8s ease-in-out;
|
3506 |
-
transition: opacity 0.8s ease-in-out;
|
3507 |
-
overflow: hidden;
|
3508 |
-
cursor: pointer;
|
3509 |
-
}
|
3510 |
-
|
3511 |
-
.premium-video-box-container[data-overlay="true"][data-type="self"] .premium-video-box-video-container {
|
3512 |
-
opacity: 0;
|
3513 |
-
visibility: hidden;
|
3514 |
-
}
|
3515 |
-
|
3516 |
-
.premium-video-box-video-container iframe {
|
3517 |
-
max-width: 100%;
|
3518 |
-
width: 100%;
|
3519 |
-
height: 100%;
|
3520 |
-
margin: 0;
|
3521 |
-
line-height: 1;
|
3522 |
-
border: none;
|
3523 |
-
}
|
3524 |
-
|
3525 |
-
.premium-video-box-video-container video {
|
3526 |
-
max-width: 100%;
|
3527 |
-
width: 100%;
|
3528 |
-
height: 100%;
|
3529 |
-
margin: 0;
|
3530 |
-
line-height: 1;
|
3531 |
-
border: none;
|
3532 |
-
background-color: #000;
|
3533 |
-
-o-object-fit: contain;
|
3534 |
-
object-fit: contain;
|
3535 |
-
}
|
3536 |
-
|
3537 |
-
.premium-video-box-container .premium-video-box-vimeo-wrap {
|
3538 |
-
-js-display: flex;
|
3539 |
-
display: -webkit-box;
|
3540 |
-
display: -webkit-flex;
|
3541 |
-
display: -moz-box;
|
3542 |
-
display: -ms-flexbox;
|
3543 |
-
display: flex;
|
3544 |
-
position: absolute;
|
3545 |
-
top: 0;
|
3546 |
-
right: 0;
|
3547 |
-
z-index: 3;
|
3548 |
-
margin: 10px;
|
3549 |
-
margin-left: 10px;
|
3550 |
-
-webkit-transition: opacity 0.2s ease-out;
|
3551 |
-
transition: opacity 0.2s ease-out;
|
3552 |
-
margin-left: 4.6em;
|
3553 |
-
}
|
3554 |
-
|
3555 |
-
.premium-video-box-vimeo-wrap .premium-video-box-vimeo-portrait {
|
3556 |
-
width: 60px;
|
3557 |
-
height: 60px;
|
3558 |
-
background: rgba(23, 35, 34, 0.75);
|
3559 |
-
margin-left: 1px;
|
3560 |
-
-webkit-box-flex: 1;
|
3561 |
-
-webkit-flex: 1 0 auto;
|
3562 |
-
-moz-box-flex: 1;
|
3563 |
-
-ms-flex: 1 0 auto;
|
3564 |
-
flex: 1 0 auto;
|
3565 |
-
padding: 0;
|
3566 |
-
}
|
3567 |
-
|
3568 |
-
.premium-video-box-vimeo-portrait img {
|
3569 |
-
width: 50px;
|
3570 |
-
height: 50px;
|
3571 |
-
margin: 5px;
|
3572 |
-
padding: 0;
|
3573 |
-
border: 0;
|
3574 |
-
-webkit-border-radius: 50%;
|
3575 |
-
border-radius: 50%;
|
3576 |
-
}
|
3577 |
-
|
3578 |
-
.premium-video-box-vimeo-wrap .premium-video-box-vimeo-headers {
|
3579 |
-
font-size: 10px;
|
3580 |
-
}
|
3581 |
-
|
3582 |
-
.premium-video-box-vimeo-wrap .premium-video-box-vimeo-title {
|
3583 |
-
max-width: 100%;
|
3584 |
-
font-size: 2em !important;
|
3585 |
-
font-weight: 700;
|
3586 |
-
margin: 0;
|
3587 |
-
padding: 0.1em 0.2em;
|
3588 |
-
background: rgba(23, 35, 34, 0.75);
|
3589 |
-
display: inline-block;
|
3590 |
-
text-transform: none;
|
3591 |
-
line-height: normal;
|
3592 |
-
letter-spacing: normal;
|
3593 |
-
}
|
3594 |
-
|
3595 |
-
.premium-video-box-vimeo-wrap .premium-video-box-vimeo-byline {
|
3596 |
-
font-size: 1.2em !important;
|
3597 |
-
font-weight: 400;
|
3598 |
-
color: #fff;
|
3599 |
-
margin-top: 0.1em;
|
3600 |
-
padding: 0.2em 0.5em;
|
3601 |
-
background: rgba(23, 35, 34, 0.75);
|
3602 |
-
text-transform: none;
|
3603 |
-
line-height: normal;
|
3604 |
-
letter-spacing: normal;
|
3605 |
-
}
|
3606 |
-
|
3607 |
-
.premium-video-box-playlist-container {
|
3608 |
-
-js-display: flex;
|
3609 |
-
display: -webkit-box;
|
3610 |
-
display: -webkit-flex;
|
3611 |
-
display: -moz-box;
|
3612 |
-
display: -ms-flexbox;
|
3613 |
-
display: flex;
|
3614 |
-
-webkit-flex-wrap: wrap;
|
3615 |
-
-ms-flex-wrap: wrap;
|
3616 |
-
flex-wrap: wrap;
|
3617 |
-
}
|
3618 |
-
|
3619 |
-
.premium-video-box-playlist-container .premium-video-box-container {
|
3620 |
-
height: 100%;
|
3621 |
-
overflow: hidden;
|
3622 |
-
}
|
3623 |
-
|
3624 |
-
.premium-video-box-container:hover .premium-video-box-image-container.zoomin {
|
3625 |
-
-webkit-transform: scale(1.1);
|
3626 |
-
-ms-transform: scale(1.1);
|
3627 |
-
transform: scale(1.1);
|
3628 |
-
}
|
3629 |
-
|
3630 |
-
.premium-video-box-container:hover .premium-video-box-image-container.zoomout {
|
3631 |
-
-webkit-transform: scale(1);
|
3632 |
-
-ms-transform: scale(1);
|
3633 |
-
transform: scale(1);
|
3634 |
-
}
|
3635 |
-
|
3636 |
-
.premium-video-box-container:hover .premium-video-box-image-container.scale {
|
3637 |
-
-webkit-transform: scale(1.3) rotate(-5deg);
|
3638 |
-
-ms-transform: scale(1.3) rotate(-5deg);
|
3639 |
-
transform: scale(1.3) rotate(-5deg);
|
3640 |
-
}
|
3641 |
-
|
3642 |
-
.premium-video-box-container:hover .premium-video-box-image-container.gray {
|
3643 |
-
-webkit-filter: grayscale(0%);
|
3644 |
-
filter: grayscale(0%);
|
3645 |
-
}
|
3646 |
-
|
3647 |
-
.premium-video-box-container:hover .premium-video-box-image-container.blur {
|
3648 |
-
-webkit-filter: blur(3px);
|
3649 |
-
filter: blur(3px);
|
3650 |
-
}
|
3651 |
-
|
3652 |
-
.premium-video-box-container:hover .premium-video-box-image-container.sepia {
|
3653 |
-
-webkit-filter: sepia(0%);
|
3654 |
-
filter: sepia(0%);
|
3655 |
-
}
|
3656 |
-
|
3657 |
-
.premium-video-box-container:hover .premium-video-box-image-container.trans {
|
3658 |
-
-webkit-transform: translateX(0px) scale(1.1);
|
3659 |
-
-ms-transform: translateX(0px) scale(1.1);
|
3660 |
-
transform: translateX(0px) scale(1.1);
|
3661 |
-
}
|
3662 |
-
|
3663 |
-
.premium-video-box-container:hover .premium-video-box-image-container.bright {
|
3664 |
-
-webkit-filter: brightness(1.2);
|
3665 |
-
filter: brightness(1.2);
|
3666 |
-
}
|
3667 |
-
|
3668 |
-
.premium-video-box-image-container.gray {
|
3669 |
-
-webkit-filter: grayscale(100%);
|
3670 |
-
filter: grayscale(100%);
|
3671 |
-
}
|
3672 |
-
|
3673 |
-
.premium-video-box-image-container.zoomout,
|
3674 |
-
.premium-video-box-image-container.scale {
|
3675 |
-
-webkit-transform: scale(1.2);
|
3676 |
-
-ms-transform: scale(1.2);
|
3677 |
-
transform: scale(1.2);
|
3678 |
-
}
|
3679 |
-
|
3680 |
-
.premium-video-box-image-container.sepia {
|
3681 |
-
-webkit-filter: sepia(30%);
|
3682 |
-
filter: sepia(30%);
|
3683 |
-
}
|
3684 |
-
|
3685 |
-
.premium-video-box-image-container.bright {
|
3686 |
-
-webkit-filter: brightness(1);
|
3687 |
-
filter: brightness(1);
|
3688 |
-
}
|
3689 |
-
|
3690 |
-
.premium-video-box-image-container.trans {
|
3691 |
-
-webkit-transform: translateX(15px) scale(1.1);
|
3692 |
-
-ms-transform: translateX(15px) scale(1.1);
|
3693 |
-
transform: translateX(15px) scale(1.1);
|
3694 |
-
}
|
3695 |
-
|
3696 |
-
.premium-video-box-mask-media {
|
3697 |
-
-webkit-mask-repeat: no-repeat;
|
3698 |
-
mask-repeat: no-repeat;
|
3699 |
-
}
|
3700 |
-
|
3701 |
-
/* Sticky Video Option */
|
3702 |
-
.premium-video-box-container.premium-video-box-sticky-apply {
|
3703 |
-
z-index: 99;
|
3704 |
-
overflow: unset;
|
3705 |
-
}
|
3706 |
-
|
3707 |
-
.premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
|
3708 |
-
position: fixed !important;
|
3709 |
-
z-index: 99999;
|
3710 |
-
height: 225px;
|
3711 |
-
width: 400px;
|
3712 |
-
background: #fff;
|
3713 |
-
}
|
3714 |
-
|
3715 |
-
.premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-vimeo-wrap,
|
3716 |
-
.premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-container:before {
|
3717 |
-
visibility: hidden;
|
3718 |
-
}
|
3719 |
-
|
3720 |
-
.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 {
|
3721 |
-
-webkit-box-shadow: unset;
|
3722 |
-
box-shadow: unset;
|
3723 |
-
}
|
3724 |
-
|
3725 |
-
.premium-video-box-sticky-close,
|
3726 |
-
.premium-video-box-sticky-infobar {
|
3727 |
-
display: none;
|
3728 |
-
}
|
3729 |
-
|
3730 |
-
.premium-video-box-sticky-apply .premium-video-box-sticky-close {
|
3731 |
-
position: absolute;
|
3732 |
-
padding: 5px;
|
3733 |
-
cursor: pointer;
|
3734 |
-
z-index: 99999;
|
3735 |
-
height: 14px;
|
3736 |
-
width: 14px;
|
3737 |
-
-webkit-box-sizing: content-box;
|
3738 |
-
-moz-box-sizing: content-box;
|
3739 |
-
box-sizing: content-box;
|
3740 |
-
-webkit-border-radius: 100%;
|
3741 |
-
border-radius: 100%;
|
3742 |
-
-js-display: flex;
|
3743 |
-
display: -webkit-box;
|
3744 |
-
display: -webkit-flex;
|
3745 |
-
display: -moz-box;
|
3746 |
-
display: -ms-flexbox;
|
3747 |
-
display: flex;
|
3748 |
-
-webkit-box-pack: center;
|
3749 |
-
-webkit-justify-content: center;
|
3750 |
-
-moz-box-pack: center;
|
3751 |
-
-ms-flex-pack: center;
|
3752 |
-
justify-content: center;
|
3753 |
-
-webkit-box-align: center;
|
3754 |
-
-webkit-align-items: center;
|
3755 |
-
-moz-box-align: center;
|
3756 |
-
-ms-flex-align: center;
|
3757 |
-
align-items: center;
|
3758 |
-
}
|
3759 |
-
|
3760 |
-
.premium-video-box-sticky-apply .premium-video-box-play-icon-container {
|
3761 |
-
-js-display: flex;
|
3762 |
-
display: -webkit-box;
|
3763 |
-
display: -webkit-flex;
|
3764 |
-
display: -moz-box;
|
3765 |
-
display: -ms-flexbox;
|
3766 |
-
display: flex;
|
3767 |
-
}
|
3768 |
-
|
3769 |
-
.premium-video-box-sticky-apply .premium-video-box-play-icon {
|
3770 |
-
-webkit-transition: none;
|
3771 |
-
transition: none;
|
3772 |
-
}
|
3773 |
-
|
3774 |
-
.premium-video-box-sticky-apply .premium-video-box-sticky-infobar {
|
3775 |
-
display: block;
|
3776 |
-
position: relative;
|
3777 |
-
top: 100%;
|
3778 |
-
width: 100%;
|
3779 |
-
padding: 5px;
|
3780 |
-
text-align: center;
|
3781 |
-
z-index: 9999;
|
3782 |
-
margin-top: -1px;
|
3783 |
-
}
|
3784 |
-
|
3785 |
-
.premium-video-box-sticky-apply .premium-video-box-inner-wrap.ui-draggable {
|
3786 |
-
cursor: move;
|
3787 |
-
}
|
3788 |
-
|
3789 |
-
.premium-video-sticky-top-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
|
3790 |
-
left: auto;
|
3791 |
-
right: 20px;
|
3792 |
-
top: 20px;
|
3793 |
-
}
|
3794 |
-
|
3795 |
-
.premium-video-sticky-bottom-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
|
3796 |
-
left: auto;
|
3797 |
-
right: 20px;
|
3798 |
-
bottom: 20px;
|
3799 |
-
}
|
3800 |
-
|
3801 |
-
.premium-video-sticky-top-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
|
3802 |
-
right: auto;
|
3803 |
-
left: 20px;
|
3804 |
-
top: 20px;
|
3805 |
-
}
|
3806 |
-
|
3807 |
-
.premium-video-sticky-bottom-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
|
3808 |
-
right: auto;
|
3809 |
-
left: 20px;
|
3810 |
-
bottom: 20px;
|
3811 |
-
}
|
3812 |
-
|
3813 |
-
.premium-video-sticky-center-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
|
3814 |
-
left: auto;
|
3815 |
-
right: 20px;
|
3816 |
-
top: 50%;
|
3817 |
-
-webkit-transform: translateY(-50%);
|
3818 |
-
-ms-transform: translateY(-50%);
|
3819 |
-
transform: translateY(-50%);
|
3820 |
-
}
|
3821 |
-
|
3822 |
-
.premium-video-sticky-center-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
|
3823 |
-
right: auto;
|
3824 |
-
left: 20px;
|
3825 |
-
top: 50%;
|
3826 |
-
-webkit-transform: translateY(-50%);
|
3827 |
-
-ms-transform: translateY(-50%);
|
3828 |
-
transform: translateY(-50%);
|
3829 |
-
}
|
3830 |
-
|
3831 |
-
.premium-video-sticky-bottom-right .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap,
|
3832 |
-
.premium-video-sticky-bottom-left .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
|
3833 |
-
bottom: 55px;
|
3834 |
-
}
|
3835 |
-
|
3836 |
-
.premium-video-sticky-top-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
|
3837 |
-
.premium-video-sticky-bottom-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
|
3838 |
-
.premium-video-sticky-center-left .premium-video-box-sticky-apply .premium-video-box-sticky-close {
|
3839 |
-
top: -10px;
|
3840 |
-
left: -10px;
|
3841 |
-
}
|
3842 |
-
|
3843 |
-
.premium-video-sticky-top-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
|
3844 |
-
.premium-video-sticky-bottom-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
|
3845 |
-
.premium-video-sticky-center-right .premium-video-box-sticky-apply .premium-video-box-sticky-close {
|
3846 |
-
top: -10px;
|
3847 |
-
right: -10px;
|
3848 |
-
}
|
3849 |
-
|
3850 |
-
.premium-video-box-filter-sticky {
|
3851 |
-
-webkit-filter: none !important;
|
3852 |
-
filter: none !important;
|
3853 |
-
}
|
3854 |
-
|
3855 |
-
/**************** Premium Blog *****************/
|
3856 |
-
/***********************************************/
|
3857 |
-
.premium-blog-thumb-effect-wrapper {
|
3858 |
-
position: relative;
|
3859 |
-
overflow: hidden;
|
3860 |
-
}
|
3861 |
-
|
3862 |
-
.premium-blog-effect-container:not(.premium-blog-bordered-effect) .premium-blog-post-link {
|
3863 |
-
position: absolute;
|
3864 |
-
top: 0;
|
3865 |
-
right: 0;
|
3866 |
-
width: 100%;
|
3867 |
-
height: 100%;
|
3868 |
-
z-index: 2;
|
3869 |
-
padding: 20px;
|
3870 |
-
}
|
3871 |
-
|
3872 |
-
.premium-blog-bordered-effect .premium-blog-post-link {
|
3873 |
-
display: block;
|
3874 |
-
height: 100%;
|
3875 |
-
position: relative;
|
3876 |
-
}
|
3877 |
-
|
3878 |
-
/*Thumbnail Img*/
|
3879 |
-
.premium-blog-thumbnail-container {
|
3880 |
-
overflow: hidden;
|
3881 |
-
}
|
3882 |
-
|
3883 |
-
.premium-blog-thumbnail-container img,
|
3884 |
-
.premium-blog-thumbnail-container .below-entry-meta {
|
3885 |
-
width: 100%;
|
3886 |
-
height: 100%;
|
3887 |
-
margin: 0 !important;
|
3888 |
-
-webkit-transition: all 0.4s ease-in-out;
|
3889 |
-
transition: all 0.4s ease-in-out;
|
3890 |
-
}
|
3891 |
-
|
3892 |
-
.premium-blog-thumb-effect-wrapper .premium-blog-zoomout-effect img,
|
3893 |
-
.premium-blog-thumb-effect-wrapper .premium-blog-scale-effect img {
|
3894 |
-
-webkit-transform: scale(1.2);
|
3895 |
-
-ms-transform: scale(1.2);
|
3896 |
-
transform: scale(1.2);
|
3897 |
-
}
|
3898 |
-
|
3899 |
-
.premium-blog-thumb-effect-wrapper .premium-blog-sepia-effect img {
|
3900 |
-
-webkit-filter: sepia(30%);
|
3901 |
-
filter: sepia(30%);
|
3902 |
-
}
|
3903 |
-
|
3904 |
-
.premium-blog-thumb-effect-wrapper .premium-blog-bright-effect img {
|
3905 |
-
-webkit-filter: brightness(1);
|
3906 |
-
filter: brightness(1);
|
3907 |
-
}
|
3908 |
-
|
3909 |
-
.premium-blog-thumb-effect-wrapper .premium-blog-trans-effect img {
|
3910 |
-
-webkit-transform: translateX(15px) scale(1.1);
|
3911 |
-
-ms-transform: translateX(15px) scale(1.1);
|
3912 |
-
transform: translateX(15px) scale(1.1);
|
3913 |
-
}
|
3914 |
-
|
3915 |
-
.premium-blog-post-outer-container:hover .premium-blog-zoomin-effect img {
|
3916 |
-
-webkit-transform: scale(1.2);
|
3917 |
-
-ms-transform: scale(1.2);
|
3918 |
-
transform: scale(1.2);
|
3919 |
-
}
|
3920 |
-
|
3921 |
-
.premium-blog-post-outer-container:hover .premium-blog-zoomout-effect img {
|
3922 |
-
-webkit-transform: scale(1.1);
|
3923 |
-
-ms-transform: scale(1.1);
|
3924 |
-
transform: scale(1.1);
|
3925 |
-
}
|
3926 |
-
|
3927 |
-
.premium-blog-post-outer-container:hover .premium-blog-scale-effect img {
|
3928 |
-
-webkit-transform: scale(1.3) rotate(-5deg);
|
3929 |
-
-ms-transform: scale(1.3) rotate(-5deg);
|
3930 |
-
transform: scale(1.3) rotate(-5deg);
|
3931 |
-
}
|
3932 |
-
|
3933 |
-
.premium-blog-post-outer-container:hover .premium-blog-gray-effect img {
|
3934 |
-
-webkit-filter: grayscale(100%);
|
3935 |
-
filter: grayscale(100%);
|
3936 |
-
}
|
3937 |
-
|
3938 |
-
.premium-blog-post-outer-container:hover .premium-blog-blur-effect img {
|
3939 |
-
-webkit-filter: blur(3px);
|
3940 |
-
filter: blur(3px);
|
3941 |
-
}
|
3942 |
-
|
3943 |
-
.premium-blog-post-outer-container:hover .premium-blog-sepia-effect img {
|
3944 |
-
-webkit-filter: sepia(0%);
|
3945 |
-
filter: sepia(0%);
|
3946 |
-
}
|
3947 |
-
|
3948 |
-
.premium-blog-post-outer-container:hover .premium-blog-bright-effect img {
|
3949 |
-
-webkit-filter: brightness(1.2);
|
3950 |
-
filter: brightness(1.2);
|
3951 |
-
}
|
3952 |
-
|
3953 |
-
.premium-blog-post-outer-container:hover .premium-blog-trans-effect img {
|
3954 |
-
-webkit-transform: translateX(0px) scale(1.1);
|
3955 |
-
-ms-transform: translateX(0px) scale(1.1);
|
3956 |
-
transform: translateX(0px) scale(1.1);
|
3957 |
-
}
|
3958 |
-
|
3959 |
-
.premium-blog-post-container {
|
3960 |
-
overflow: hidden;
|
3961 |
-
}
|
3962 |
-
|
3963 |
-
.premium-blog-post-container .premium-blog-inner-container {
|
3964 |
-
-js-display: flex;
|
3965 |
-
display: -webkit-box;
|
3966 |
-
display: -webkit-flex;
|
3967 |
-
display: -moz-box;
|
3968 |
-
display: -ms-flexbox;
|
3969 |
-
display: flex;
|
3970 |
-
}
|
3971 |
-
|
3972 |
-
.premium-blog-post-container .premium-blog-post-content {
|
3973 |
-
line-height: 1.5em;
|
3974 |
-
color: #777;
|
3975 |
-
font-size: 14px;
|
3976 |
-
margin-bottom: 10px;
|
3977 |
-
}
|
3978 |
-
|
3979 |
-
.premium-blog-post-container ul.post-categories a:hover,
|
3980 |
-
.premium-blog-post-container ul.post-categories a:focus,
|
3981 |
-
.premium-blog-post-container .premium-blog-post-link:hover,
|
3982 |
-
.premium-blog-post-container .premium-blog-post-link:focus {
|
3983 |
-
-webkit-box-shadow: none !important;
|
3984 |
-
box-shadow: none !important;
|
3985 |
-
outline: none !important;
|
3986 |
-
}
|
3987 |
-
|
3988 |
-
.premium-blog-post-container .premium-blog-entry-title {
|
3989 |
-
font-size: 18px;
|
3990 |
-
margin-bottom: 5px;
|
3991 |
-
}
|
3992 |
-
|
3993 |
-
.premium-blog-post-container.premium-blog-skin-modern .premium-blog-content-wrapper {
|
3994 |
-
position: relative;
|
3995 |
-
z-index: 3;
|
3996 |
-
top: -50px;
|
3997 |
-
}
|
3998 |
-
|
3999 |
-
.premium-blog-post-container .premium-blog-content-wrapper {
|
4000 |
-
background-color: #f5f5f5;
|
4001 |
-
padding: 30px;
|
4002 |
-
}
|
4003 |
-
|
4004 |
-
.premium-blog-post-container .premium-blog-content-wrapper.empty-thumb {
|
4005 |
-
top: 0;
|
4006 |
-
}
|
4007 |
-
|
4008 |
-
.premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before,
|
4009 |
-
.premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:after {
|
4010 |
-
position: absolute;
|
4011 |
-
content: "";
|
4012 |
-
z-index: 1;
|
4013 |
-
top: 50%;
|
4014 |
-
right: 50%;
|
4015 |
-
opacity: 0;
|
4016 |
-
-webkit-transform: translate(50%, -50%);
|
4017 |
-
-ms-transform: translate(50%, -50%);
|
4018 |
-
transform: translate(50%, -50%);
|
4019 |
-
-webkit-transition: all 0.4s linear 0s;
|
4020 |
-
transition: all 0.4s linear 0s;
|
4021 |
-
height: 1px;
|
4022 |
-
width: 100%;
|
4023 |
-
background-color: #fff;
|
4024 |
-
}
|
4025 |
-
|
4026 |
-
.premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before {
|
4027 |
-
width: 1px;
|
4028 |
-
height: 100%;
|
4029 |
-
}
|
4030 |
-
|
4031 |
-
.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 {
|
4032 |
-
width: 20px;
|
4033 |
-
opacity: 1;
|
4034 |
-
}
|
4035 |
-
|
4036 |
-
.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 {
|
4037 |
-
height: 20px;
|
4038 |
-
opacity: 1;
|
4039 |
-
}
|
4040 |
-
|
4041 |
-
.premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-content-wrapper {
|
4042 |
-
margin: 0px 10px 20px;
|
4043 |
-
clear: both;
|
4044 |
-
}
|
4045 |
-
|
4046 |
-
.premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay,
|
4047 |
-
.premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay,
|
4048 |
-
.premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay {
|
4049 |
-
position: absolute;
|
4050 |
-
top: 0;
|
4051 |
-
right: 0;
|
4052 |
-
width: 100%;
|
4053 |
-
height: 100%;
|
4054 |
-
-webkit-transition: all 0.3s ease-in-out;
|
4055 |
-
transition: all 0.3s ease-in-out;
|
4056 |
-
opacity: 0;
|
4057 |
-
}
|
4058 |
-
|
4059 |
-
.premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay a,
|
4060 |
-
.premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay a,
|
4061 |
-
.premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay a {
|
4062 |
-
-js-display: flex;
|
4063 |
-
display: -webkit-box;
|
4064 |
-
display: -webkit-flex;
|
4065 |
-
display: -moz-box;
|
4066 |
-
display: -ms-flexbox;
|
4067 |
-
display: flex;
|
4068 |
-
-webkit-box-pack: center;
|
4069 |
-
-webkit-justify-content: center;
|
4070 |
-
-moz-box-pack: center;
|
4071 |
-
-ms-flex-pack: center;
|
4072 |
-
justify-content: center;
|
4073 |
-
-webkit-box-align: center;
|
4074 |
-
-webkit-align-items: center;
|
4075 |
-
-moz-box-align: center;
|
4076 |
-
-ms-flex-align: center;
|
4077 |
-
align-items: center;
|
4078 |
-
width: 100%;
|
4079 |
-
height: 100%;
|
4080 |
-
}
|
4081 |
-
|
4082 |
-
.premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay span,
|
4083 |
-
.premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay i,
|
4084 |
-
.premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay span,
|
4085 |
-
.premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay i,
|
4086 |
-
.premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay span,
|
4087 |
-
.premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay i {
|
4088 |
-
-webkit-transition: all 0.3s ease-in-out;
|
4089 |
-
transition: all 0.3s ease-in-out;
|
4090 |
-
}
|
4091 |
-
|
4092 |
-
.premium-blog-post-container.premium-blog-skin-side {
|
4093 |
-
-js-display: flex;
|
4094 |
-
display: -webkit-box;
|
4095 |
-
display: -webkit-flex;
|
4096 |
-
display: -moz-box;
|
4097 |
-
display: -ms-flexbox;
|
4098 |
-
display: flex;
|
4099 |
-
}
|
4100 |
-
|
4101 |
-
.premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-container {
|
4102 |
-
height: 100%;
|
4103 |
-
}
|
4104 |
-
|
4105 |
-
.premium-blog-post-container.premium-blog-skin-side .premium-blog-content-wrapper {
|
4106 |
-
-webkit-box-flex: 1;
|
4107 |
-
-webkit-flex: 1;
|
4108 |
-
-moz-box-flex: 1;
|
4109 |
-
-ms-flex: 1;
|
4110 |
-
flex: 1;
|
4111 |
-
}
|
4112 |
-
|
4113 |
-
.premium-blog-post-container.premium-blog-skin-banner {
|
4114 |
-
position: relative;
|
4115 |
-
}
|
4116 |
-
|
4117 |
-
.premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper {
|
4118 |
-
position: absolute;
|
4119 |
-
width: 100%;
|
4120 |
-
bottom: 0;
|
4121 |
-
-js-display: flex;
|
4122 |
-
display: -webkit-box;
|
4123 |
-
display: -webkit-flex;
|
4124 |
-
display: -moz-box;
|
4125 |
-
display: -ms-flexbox;
|
4126 |
-
display: flex;
|
4127 |
-
-webkit-box-orient: vertical;
|
4128 |
-
-webkit-box-direction: normal;
|
4129 |
-
-webkit-flex-direction: column;
|
4130 |
-
-moz-box-orient: vertical;
|
4131 |
-
-moz-box-direction: normal;
|
4132 |
-
-ms-flex-direction: column;
|
4133 |
-
flex-direction: column;
|
4134 |
-
background-color: transparent;
|
4135 |
-
z-index: 3;
|
4136 |
-
}
|
4137 |
-
|
4138 |
-
.premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper-inner {
|
4139 |
-
-webkit-transition: -webkit-transform 0.3s ease-in-out;
|
4140 |
-
transition: -webkit-transform 0.3s ease-in-out;
|
4141 |
-
transition: transform 0.3s ease-in-out;
|
4142 |
-
transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
|
4143 |
-
}
|
4144 |
-
|
4145 |
-
.premium-blog-post-container.premium-blog-skin-banner:hover .premium-blog-content-wrapper-inner {
|
4146 |
-
-webkit-transform: translateY(-5px);
|
4147 |
-
-ms-transform: translateY(-5px);
|
4148 |
-
transform: translateY(-5px);
|
4149 |
-
}
|
4150 |
-
|
4151 |
-
.premium-blog-post-container .premium-blog-cats-container ul.post-categories {
|
4152 |
-
margin: 0;
|
4153 |
-
padding: 0;
|
4154 |
-
list-style: none;
|
4155 |
-
-js-display: flex;
|
4156 |
-
display: -webkit-box;
|
4157 |
-
display: -webkit-flex;
|
4158 |
-
display: -moz-box;
|
4159 |
-
display: -ms-flexbox;
|
4160 |
-
display: flex;
|
4161 |
-
}
|
4162 |
-
|
4163 |
-
.premium-blog-post-container .premium-blog-cats-container a {
|
4164 |
-
display: block;
|
4165 |
-
font-size: 12px;
|
4166 |
-
color: #fff;
|
4167 |
-
background-color: #777;
|
4168 |
-
margin: 0 0 10px 3px;
|
4169 |
-
padding: 5px;
|
4170 |
-
-webkit-transition: all 0.3s ease-in-out;
|
4171 |
-
transition: all 0.3s ease-in-out;
|
4172 |
-
}
|
4173 |
-
|
4174 |
-
/*
|
4175 |
-
* Diagonal Effect
|
4176 |
-
*/
|
4177 |
-
.premium-blog-diagonal-container {
|
4178 |
-
position: absolute;
|
4179 |
-
top: 0;
|
4180 |
-
right: 0;
|
4181 |
-
width: 100%;
|
4182 |
-
height: 100%;
|
4183 |
-
}
|
4184 |
-
|
4185 |
-
.premium-blog-diagonal-effect:before {
|
4186 |
-
position: absolute;
|
4187 |
-
top: 0px;
|
4188 |
-
right: 0px;
|
4189 |
-
width: 100%;
|
4190 |
-
height: 100%;
|
4191 |
-
content: " ";
|
4192 |
-
z-index: 1;
|
4193 |
-
background: rgba(255, 255, 255, 0.2);
|
4194 |
-
-webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
|
4195 |
-
transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
|
4196 |
-
-webkit-transition: all 0.3s linear 0s;
|
4197 |
-
transition: all 0.3s linear 0s;
|
4198 |
-
}
|
4199 |
-
|
4200 |
-
.premium-blog-thumb-effect-wrapper:hover .premium-blog-diagonal-effect:before {
|
4201 |
-
-webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
|
4202 |
-
transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
|
4203 |
-
}
|
4204 |
-
|
4205 |
-
/*
|
4206 |
-
* Framed Effect
|
4207 |
-
*/
|
4208 |
-
.premium-blog-framed-effect {
|
4209 |
-
position: absolute;
|
4210 |
-
width: -webkit-calc(100% - 30px);
|
4211 |
-
width: calc(100% - 30px);
|
4212 |
-
height: -webkit-calc(100% - 30px);
|
4213 |
-
height: calc(100% - 30px);
|
4214 |
-
top: 15px;
|
4215 |
-
right: 15px;
|
4216 |
-
opacity: 0;
|
4217 |
-
-webkit-transform: scale(0.3);
|
4218 |
-
-ms-transform: scale(0.3);
|
4219 |
-
transform: scale(0.3);
|
4220 |
-
-webkit-transition: all 0.3s linear 0s;
|
4221 |
-
transition: all 0.3s linear 0s;
|
4222 |
-
}
|
4223 |
-
|
4224 |
-
.premium-blog-thumb-effect-wrapper:hover .premium-blog-framed-effect {
|
4225 |
-
opacity: 0.99;
|
4226 |
-
-webkit-transform: scale(1);
|
4227 |
-
-ms-transform: scale(1);
|
4228 |
-
transform: scale(1);
|
4229 |
-
}
|
4230 |
-
|
4231 |
-
/*
|
4232 |
-
* Bordered Effect
|
4233 |
-
*/
|
4234 |
-
.premium-blog-bordered-effect {
|
4235 |
-
position: absolute;
|
4236 |
-
top: 0;
|
4237 |
-
right: 0;
|
4238 |
-
width: 100%;
|
4239 |
-
height: 100%;
|
4240 |
-
opacity: 0;
|
4241 |
-
padding: 15px;
|
4242 |
-
-webkit-transition: all 0.3s linear 0s;
|
4243 |
-
transition: all 0.3s linear 0s;
|
4244 |
-
}
|
4245 |
-
|
4246 |
-
.premium-blog-bordered-effect .premium-blog-post-link:before,
|
4247 |
-
.premium-blog-bordered-effect .premium-blog-post-link:after {
|
4248 |
-
content: "";
|
4249 |
-
display: block;
|
4250 |
-
position: absolute;
|
4251 |
-
top: 0;
|
4252 |
-
right: 0;
|
4253 |
-
width: 100%;
|
4254 |
-
height: 100%;
|
4255 |
-
-webkit-transition: all 0.5s linear 0s;
|
4256 |
-
transition: all 0.5s linear 0s;
|
4257 |
-
-webkit-transition-delay: 0s;
|
4258 |
-
transition-delay: 0s;
|
4259 |
-
border-color: rgba(255, 255, 255, 0.45);
|
4260 |
-
}
|
4261 |
-
|
4262 |
-
.premium-blog-bordered-effect .premium-blog-post-link:before {
|
4263 |
-
border-left: 2px solid;
|
4264 |
-
border-right: 2px solid;
|
4265 |
-
-webkit-transform: scale(1, 0);
|
4266 |
-
-ms-transform: scale(1, 0);
|
4267 |
-
transform: scale(1, 0);
|
4268 |
-
-webkit-transform-origin: 0% 0;
|
4269 |
-
-ms-transform-origin: 0% 0;
|
4270 |
-
transform-origin: 0% 0;
|
4271 |
-
}
|
4272 |
-
|
4273 |
-
.premium-blog-bordered-effect .premium-blog-post-link:after {
|
4274 |
-
border-top: 2px solid;
|
4275 |
-
border-bottom: 2px solid;
|
4276 |
-
-webkit-transform: scale(0, 1);
|
4277 |
-
-ms-transform: scale(0, 1);
|
4278 |
-
transform: scale(0, 1);
|
4279 |
-
-webkit-transform-origin: 100% 0;
|
4280 |
-
-ms-transform-origin: 100% 0;
|
4281 |
-
transform-origin: 100% 0;
|
4282 |
-
}
|
4283 |
-
|
4284 |
-
.premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect {
|
4285 |
-
opacity: 0.99;
|
4286 |
-
}
|
4287 |
-
|
4288 |
-
.premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect .premium-blog-post-link:before,
|
4289 |
-
.premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect .premium-blog-post-link:after {
|
4290 |
-
-webkit-transition-delay: 0.15s;
|
4291 |
-
transition-delay: 0.15s;
|
4292 |
-
opacity: 1;
|
4293 |
-
-webkit-transform: scale(1);
|
4294 |
-
-ms-transform: scale(1);
|
4295 |
-
transform: scale(1);
|
4296 |
-
}
|
4297 |
-
|
4298 |
-
/*
|
4299 |
-
* Squares Effect
|
4300 |
-
*/
|
4301 |
-
.premium-blog-squares-effect,
|
4302 |
-
.premium-blog-squares-square-container {
|
4303 |
-
position: absolute;
|
4304 |
-
top: 0;
|
4305 |
-
right: 0;
|
4306 |
-
width: 100%;
|
4307 |
-
height: 100%;
|
4308 |
-
}
|
4309 |
-
|
4310 |
-
.premium-blog-squares-effect:before,
|
4311 |
-
.premium-blog-squares-effect:after {
|
4312 |
-
position: absolute;
|
4313 |
-
content: "";
|
4314 |
-
top: 0;
|
4315 |
-
right: 0;
|
4316 |
-
width: 50%;
|
4317 |
-
height: 50%;
|
4318 |
-
-webkit-transform: translate(100%, -100%);
|
4319 |
-
-ms-transform: translate(100%, -100%);
|
4320 |
-
transform: translate(100%, -100%);
|
4321 |
-
opacity: 0.7;
|
4322 |
-
-webkit-transition: all 0.3s linear 0s;
|
4323 |
-
transition: all 0.3s linear 0s;
|
4324 |
-
}
|
4325 |
-
|
4326 |
-
.premium-blog-squares-square-container:before,
|
4327 |
-
.premium-blog-squares-square-container:after {
|
4328 |
-
position: absolute;
|
4329 |
-
content: "";
|
4330 |
-
top: 0;
|
4331 |
-
right: 0;
|
4332 |
-
width: 50%;
|
4333 |
-
height: 50%;
|
4334 |
-
-webkit-transform: translate(100%, -100%);
|
4335 |
-
-ms-transform: translate(100%, -100%);
|
4336 |
-
transform: translate(100%, -100%);
|
4337 |
-
opacity: 0.7;
|
4338 |
-
-webkit-transition: all 0.3s linear 0s;
|
4339 |
-
transition: all 0.3s linear 0s;
|
4340 |
-
}
|
4341 |
-
|
4342 |
-
.premium-blog-squares-square-container:before,
|
4343 |
-
.premium-blog-squares-square-container:after {
|
4344 |
-
opacity: 0.8;
|
4345 |
-
}
|
4346 |
-
|
4347 |
-
.premium-blog-squares-effect:after {
|
4348 |
-
-webkit-transform: translate(-200%, 200%);
|
4349 |
-
-ms-transform: translate(-200%, 200%);
|
4350 |
-
transform: translate(-200%, 200%);
|
4351 |
-
}
|
4352 |
-
|
4353 |
-
.premium-blog-squares-square-container:before {
|
4354 |
-
-webkit-transform: translate(100%, 200%);
|
4355 |
-
-ms-transform: translate(100%, 200%);
|
4356 |
-
transform: translate(100%, 200%);
|
4357 |
-
}
|
4358 |
-
|
4359 |
-
.premium-blog-squares-square-container:after {
|
4360 |
-
-webkit-transform: translate(-200%, -100%);
|
4361 |
-
-ms-transform: translate(-200%, -100%);
|
4362 |
-
transform: translate(-200%, -100%);
|
4363 |
-
}
|
4364 |
-
|
4365 |
-
.premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:before {
|
4366 |
-
-webkit-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
|
4367 |
-
-ms-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
|
4368 |
-
transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
|
4369 |
-
}
|
4370 |
-
|
4371 |
-
.premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:after {
|
4372 |
-
-webkit-transform: translate(-100%, 100%) scaleY(1.003) scaleX(1.003);
|
4373 |
-
-ms-transform: translate(-100%, 100%) scaleY(1.003) scaleX(1.003);
|
4374 |
-
transform: translate(-100%, 100%) scaleY(1.003) scaleX(1.003);
|
4375 |
-
}
|
4376 |
-
|
4377 |
-
.premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:before {
|
4378 |
-
-webkit-transform: translate(0, 100%);
|
4379 |
-
-ms-transform: translate(0, 100%);
|
4380 |
-
transform: translate(0, 100%);
|
4381 |
-
}
|
4382 |
-
|
4383 |
-
.premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:after {
|
4384 |
-
-webkit-transform: translate(-100%, 0%);
|
4385 |
-
-ms-transform: translate(-100%, 0%);
|
4386 |
-
transform: translate(-100%, 0%);
|
4387 |
-
}
|
4388 |
-
|
4389 |
-
.premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay {
|
4390 |
-
opacity: 1;
|
4391 |
-
}
|
4392 |
-
|
4393 |
-
.premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay a {
|
4394 |
-
opacity: 1;
|
4395 |
-
-webkit-transform: scale(1);
|
4396 |
-
-ms-transform: scale(1);
|
4397 |
-
transform: scale(1);
|
4398 |
-
}
|
4399 |
-
|
4400 |
-
.premium-blog-clear-fix {
|
4401 |
-
clear: both;
|
4402 |
-
}
|
4403 |
-
|
4404 |
-
.premium-blog-masked .premium-blog-thumbnail-container {
|
4405 |
-
position: relative;
|
4406 |
-
overflow: visible;
|
4407 |
-
}
|
4408 |
-
|
4409 |
-
.premium-blog-masked .premium-blog-thumbnail-container svg {
|
4410 |
-
position: absolute;
|
4411 |
-
height: 100px;
|
4412 |
-
width: 100%;
|
4413 |
-
bottom: -5px;
|
4414 |
-
right: 0;
|
4415 |
-
fill: #f5f5f5;
|
4416 |
-
z-index: 99;
|
4417 |
-
}
|
4418 |
-
|
4419 |
-
.premium-blog-masked .premium-blog-thumbnail-container svg.premium-blog-shape-divider-svg {
|
4420 |
-
-webkit-transform: rotate(180deg);
|
4421 |
-
-ms-transform: rotate(180deg);
|
4422 |
-
transform: rotate(180deg);
|
4423 |
-
}
|
4424 |
-
|
4425 |
-
.premium-blog-masked .premium-blog-author-thumbnail,
|
4426 |
-
.premium-blog-masked .premium-blog-skin-banner .premium-blog-content-wrapper {
|
4427 |
-
z-index: 999 !important;
|
4428 |
-
}
|
4429 |
-
|
4430 |
-
/*Post Format Container*/
|
4431 |
-
.premium-blog-format-link {
|
4432 |
-
padding: 5px;
|
4433 |
-
line-height: 0;
|
4434 |
-
}
|
4435 |
-
|
4436 |
-
/*Post Format Icon*/
|
4437 |
-
/*Post Format Content Margin */
|
4438 |
-
.premium-blog-entry-meta {
|
4439 |
-
line-height: 1.3em;
|
4440 |
-
font-size: 12px;
|
4441 |
-
margin-bottom: 13px;
|
4442 |
-
color: #adadad;
|
4443 |
-
}
|
4444 |
-
|
4445 |
-
.premium-blog-entry-meta i {
|
4446 |
-
margin-left: 3px;
|
4447 |
-
-webkit-transition: all 0.3s ease-in-out;
|
4448 |
-
transition: all 0.3s ease-in-out;
|
4449 |
-
}
|
4450 |
-
|
4451 |
-
.premium-blog-meta-data {
|
4452 |
-
display: inline-block;
|
4453 |
-
}
|
4454 |
-
|
4455 |
-
.premium-blog-meta-data .premium-blog-meta-separator {
|
4456 |
-
margin: 0 5px;
|
4457 |
-
}
|
4458 |
-
|
4459 |
-
.premium-blog-meta-data a,
|
4460 |
-
.premium-blog-meta-data span {
|
4461 |
-
color: inherit;
|
4462 |
-
-webkit-transition: all 0.3s ease-in-out;
|
4463 |
-
transition: all 0.3s ease-in-out;
|
4464 |
-
}
|
4465 |
-
|
4466 |
-
.premium-blog-author-thumbnail {
|
4467 |
-
position: relative;
|
4468 |
-
padding: 0 30px;
|
4469 |
-
width: 100%;
|
4470 |
-
top: -10px;
|
4471 |
-
height: 0;
|
4472 |
-
pointer-events: none;
|
4473 |
-
}
|
4474 |
-
|
4475 |
-
.premium-blog-author-thumbnail img {
|
4476 |
-
-webkit-border-radius: 50%;
|
4477 |
-
border-radius: 50%;
|
4478 |
-
width: 60px;
|
4479 |
-
pointer-events: all;
|
4480 |
-
-webkit-transform: translateY(-50%);
|
4481 |
-
-ms-transform: translateY(-50%);
|
4482 |
-
transform: translateY(-50%);
|
4483 |
-
}
|
4484 |
-
|
4485 |
-
.premium-blog-entry-title a,
|
4486 |
-
.premium-blog-post-tags-container a,
|
4487 |
-
.premium-blog-post-content .premium-blog-excerpt-link {
|
4488 |
-
-webkit-transition: all 0.3s ease-in-out;
|
4489 |
-
transition: all 0.3s ease-in-out;
|
4490 |
-
}
|
4491 |
-
|
4492 |
-
.premium-blog-excerpt-link-wrap a.premium-blog-excerpt-link {
|
4493 |
-
background-color: transparent;
|
4494 |
-
color: #54595f;
|
4495 |
-
padding: 0;
|
4496 |
-
}
|
4497 |
-
|
4498 |
-
.premium-blog-cta-full-yes .premium-blog-excerpt-link {
|
4499 |
-
width: 100%;
|
4500 |
-
}
|
4501 |
-
|
4502 |
-
.premium-blog-post-tags-container {
|
4503 |
-
margin-top: 8px;
|
4504 |
-
-js-display: flex;
|
4505 |
-
display: -webkit-box;
|
4506 |
-
display: -webkit-flex;
|
4507 |
-
display: -moz-box;
|
4508 |
-
display: -ms-flexbox;
|
4509 |
-
display: flex;
|
4510 |
-
-webkit-box-align: center;
|
4511 |
-
-webkit-align-items: center;
|
4512 |
-
-moz-box-align: center;
|
4513 |
-
-ms-flex-align: center;
|
4514 |
-
align-items: center;
|
4515 |
-
-webkit-flex-wrap: wrap;
|
4516 |
-
-ms-flex-wrap: wrap;
|
4517 |
-
flex-wrap: wrap;
|
4518 |
-
}
|
4519 |
-
|
4520 |
-
.premium-blog-post-tags-container a {
|
4521 |
-
color: inherit;
|
4522 |
-
margin-right: 5px;
|
4523 |
-
}
|
4524 |
-
|
4525 |
-
.premium-blog-align-center .post-categories,
|
4526 |
-
.premium-blog-align-center .premium-blog-inner-container,
|
4527 |
-
.premium-blog-align-center .premium-blog-post-tags-container {
|
4528 |
-
-webkit-box-pack: center;
|
4529 |
-
-webkit-justify-content: center;
|
4530 |
-
-moz-box-pack: center;
|
4531 |
-
-ms-flex-pack: center;
|
4532 |
-
justify-content: center;
|
4533 |
-
}
|
4534 |
-
|
4535 |
-
.premium-blog-align-left .premium-blog-post-container:not(.premium-blog-skin-cards) .post-categories,
|
4536 |
-
.premium-blog-align-left .premium-blog-post-container:not(.premium-blog-skin-cards) .premium-blog-inner-container,
|
4537 |
-
.premium-blog-align-left .premium-blog-post-container:not(.premium-blog-skin-cards) .premium-blog-post-tags-container {
|
4538 |
-
-webkit-box-pack: end;
|
4539 |
-
-webkit-justify-content: flex-end;
|
4540 |
-
-moz-box-pack: end;
|
4541 |
-
-ms-flex-pack: end;
|
4542 |
-
justify-content: flex-end;
|
4543 |
-
}
|
4544 |
-
|
4545 |
-
.premium-blog-align-left .premium-blog-post-container.premium-blog-skin-cards .post-categories,
|
4546 |
-
.premium-blog-align-left .premium-blog-post-container.premium-blog-skin-cards .premium-blog-inner-container,
|
4547 |
-
.premium-blog-align-left .premium-blog-post-container.premium-blog-skin-cards .premium-blog-post-tags-container {
|
4548 |
-
-webkit-box-pack: start;
|
4549 |
-
-webkit-justify-content: flex-start;
|
4550 |
-
-moz-box-pack: start;
|
4551 |
-
-ms-flex-pack: start;
|
4552 |
-
justify-content: flex-start;
|
4553 |
-
}
|
4554 |
-
|
4555 |
-
.premium-blog-align-right .premium-blog-post-container:not(.premium-blog-skin-cards) .post-categories,
|
4556 |
-
.premium-blog-align-right .premium-blog-post-container:not(.premium-blog-skin-cards) .premium-blog-inner-container,
|
4557 |
-
.premium-blog-align-right .premium-blog-post-container:not(.premium-blog-skin-cards) .premium-blog-post-tags-container {
|
4558 |
-
-webkit-box-pack: start;
|
4559 |
-
-webkit-justify-content: flex-start;
|
4560 |
-
-moz-box-pack: start;
|
4561 |
-
-ms-flex-pack: start;
|
4562 |
-
justify-content: flex-start;
|
4563 |
-
}
|
4564 |
-
|
4565 |
-
.premium-blog-align-right .premium-blog-post-container.premium-blog-skin-cards .post-categories,
|
4566 |
-
.premium-blog-align-right .premium-blog-post-container.premium-blog-skin-cards .premium-blog-inner-container,
|
4567 |
-
.premium-blog-align-right .premium-blog-post-container.premium-blog-skin-cards .premium-blog-post-tags-container {
|
4568 |
-
-webkit-box-pack: end;
|
4569 |
-
-webkit-justify-content: flex-end;
|
4570 |
-
-moz-box-pack: end;
|
4571 |
-
-ms-flex-pack: end;
|
4572 |
-
justify-content: flex-end;
|
4573 |
-
}
|
4574 |
-
|
4575 |
-
/* Pagination */
|
4576 |
-
.premium-blog-pagination-container {
|
4577 |
-
text-align: left;
|
4578 |
-
}
|
4579 |
-
|
4580 |
-
.premium-blog-pagination-container span {
|
4581 |
-
cursor: default;
|
4582 |
-
}
|
4583 |
-
|
4584 |
-
.premium-blog-pagination-container .page-numbers {
|
4585 |
-
display: inline-block;
|
4586 |
-
color: #000;
|
4587 |
-
line-height: 1;
|
4588 |
-
font-size: 1em;
|
4589 |
-
font-weight: 400;
|
4590 |
-
text-decoration: none;
|
4591 |
-
padding: 0.75em;
|
4592 |
-
margin: 0 0 0.4em 0.4em;
|
4593 |
-
-webkit-transition: all 0.2s ease-in-out;
|
4594 |
-
transition: all 0.2s ease-in-out;
|
4595 |
-
}
|
4596 |
-
|
4597 |
-
.premium-blog-wrap .premium-loading-feed {
|
4598 |
-
display: block;
|
4599 |
-
position: absolute;
|
4600 |
-
width: 100%;
|
4601 |
-
height: 100%;
|
4602 |
-
top: 0px;
|
4603 |
-
right: 0px;
|
4604 |
-
bottom: 0px;
|
4605 |
-
left: 0px;
|
4606 |
-
background: rgba(255, 255, 255, 0.2);
|
4607 |
-
-js-display: flex;
|
4608 |
-
display: -webkit-box;
|
4609 |
-
display: -webkit-flex;
|
4610 |
-
display: -moz-box;
|
4611 |
-
display: -ms-flexbox;
|
4612 |
-
display: flex;
|
4613 |
-
-webkit-box-align: center;
|
4614 |
-
-webkit-align-items: center;
|
4615 |
-
-moz-box-align: center;
|
4616 |
-
-ms-flex-align: center;
|
4617 |
-
align-items: center;
|
4618 |
-
z-index: 99;
|
4619 |
-
}
|
4620 |
-
|
4621 |
-
.premium-blog-wrap {
|
4622 |
-
-js-display: flex;
|
4623 |
-
display: -webkit-box;
|
4624 |
-
display: -webkit-flex;
|
4625 |
-
display: -moz-box;
|
4626 |
-
display: -ms-flexbox;
|
4627 |
-
display: flex;
|
4628 |
-
-webkit-flex-wrap: wrap;
|
4629 |
-
-ms-flex-wrap: wrap;
|
4630 |
-
flex-wrap: wrap;
|
4631 |
-
}
|
4632 |
-
|
4633 |
-
.premium-blog-wrap ul.slick-dots {
|
4634 |
-
width: 100%;
|
4635 |
-
}
|
4636 |
-
|
4637 |
-
/**
|
4638 |
-
* Even Layout
|
4639 |
-
*/
|
4640 |
-
.premium-blog-even .premium-blog-post-container {
|
4641 |
-
height: 100%;
|
4642 |
-
}
|
4643 |
-
|
4644 |
-
.premium-blog-even .slick-track {
|
4645 |
-
-js-display: flex;
|
4646 |
-
display: -webkit-box;
|
4647 |
-
display: -webkit-flex;
|
4648 |
-
display: -moz-box;
|
4649 |
-
display: -ms-flexbox;
|
4650 |
-
display: flex;
|
4651 |
-
}
|
4652 |
-
|
4653 |
-
.premium-blog-even .slick-slide {
|
4654 |
-
height: inherit !important;
|
4655 |
-
}
|
4656 |
-
|
4657 |
-
/**
|
4658 |
-
* Responsive Style
|
4659 |
-
*/
|
4660 |
-
@media (max-width: 768px) {
|
4661 |
-
.premium-blog-content-wrapper {
|
4662 |
-
top: 0;
|
4663 |
-
margin: 0;
|
4664 |
-
padding: 15px;
|
4665 |
-
}
|
4666 |
-
|
4667 |
-
.premium-blog-thumb-effect-wrapper {
|
4668 |
-
margin-bottom: 15px;
|
4669 |
-
}
|
4670 |
-
}
|
4671 |
-
|
4672 |
-
[dir="rtl"] .premium-blog-wrap.slick-slider .slick-list,
|
4673 |
-
[dir="rtl"] .premium-blog-wrap.slick-slider .slick-track {
|
4674 |
-
direction: ltr;
|
4675 |
-
}
|
4676 |
-
|
4677 |
-
/************ Premium Team Members ************/
|
4678 |
-
/*********************************************/
|
4679 |
-
.premium-person-container {
|
4680 |
-
position: relative;
|
4681 |
-
}
|
4682 |
-
|
4683 |
-
.premium-person-image-container {
|
4684 |
-
position: relative;
|
4685 |
-
text-align: center;
|
4686 |
-
}
|
4687 |
-
|
4688 |
-
.premium-person-image-container .premium-person-image-wrap {
|
4689 |
-
overflow: hidden;
|
4690 |
-
}
|
4691 |
-
|
4692 |
-
.premium-person-zoomout-effect .premium-person-image-container img,
|
4693 |
-
.premium-person-scale-effect .premium-person-image-container img {
|
4694 |
-
-webkit-transform: scale(1.2);
|
4695 |
-
-ms-transform: scale(1.2);
|
4696 |
-
transform: scale(1.2);
|
4697 |
-
}
|
4698 |
-
|
4699 |
-
.premium-person-sepia-effect .premium-person-image-container img {
|
4700 |
-
-webkit-filter: sepia(30%);
|
4701 |
-
filter: sepia(30%);
|
4702 |
-
}
|
4703 |
-
|
4704 |
-
.premium-person-bright-effect .premium-person-image-container img {
|
4705 |
-
-webkit-filter: brightness(1);
|
4706 |
-
filter: brightness(1);
|
4707 |
-
}
|
4708 |
-
|
4709 |
-
.premium-person-trans-effect .premium-person-image-container img {
|
4710 |
-
-webkit-transform: translateX(15px) scale(1.1);
|
4711 |
-
-ms-transform: translateX(15px) scale(1.1);
|
4712 |
-
transform: translateX(15px) scale(1.1);
|
4713 |
-
}
|
4714 |
-
|
4715 |
-
.premium-person-zoomin-effect:hover .premium-person-image-container img {
|
4716 |
-
-webkit-transform: scale(1.2);
|
4717 |
-
-ms-transform: scale(1.2);
|
4718 |
-
transform: scale(1.2);
|
4719 |
-
}
|
4720 |
-
|
4721 |
-
.premium-person-zoomout-effect:hover .premium-person-image-container img {
|
4722 |
-
-webkit-transform: scale(1.1);
|
4723 |
-
-ms-transform: scale(1.1);
|
4724 |
-
transform: scale(1.1);
|
4725 |
-
}
|
4726 |
-
|
4727 |
-
.premium-person-scale-effect:hover .premium-person-image-container img {
|
4728 |
-
-webkit-transform: scale(1.3) rotate(-5deg);
|
4729 |
-
-ms-transform: scale(1.3) rotate(-5deg);
|
4730 |
-
transform: scale(1.3) rotate(-5deg);
|
4731 |
-
}
|
4732 |
-
|
4733 |
-
.premium-person-grayscale-effect:hover .premium-person-image-container img {
|
4734 |
-
-webkit-filter: grayscale(100%);
|
4735 |
-
filter: grayscale(100%);
|
4736 |
-
}
|
4737 |
-
|
4738 |
-
.premium-person-blur-effect:hover .premium-person-image-container img {
|
4739 |
-
-webkit-filter: blur(3px);
|
4740 |
-
filter: blur(3px);
|
4741 |
-
}
|
4742 |
-
|
4743 |
-
.premium-person-sepia-effect:hover .premium-person-image-container img {
|
4744 |
-
-webkit-filter: sepia(0%);
|
4745 |
-
filter: sepia(0%);
|
4746 |
-
}
|
4747 |
-
|
4748 |
-
.premium-person-bright-effect:hover .premium-person-image-container img {
|
4749 |
-
-webkit-filter: brightness(1.2);
|
4750 |
-
filter: brightness(1.2);
|
4751 |
-
}
|
4752 |
-
|
4753 |
-
.premium-person-trans-effect:hover .premium-person-image-container img {
|
4754 |
-
-webkit-transform: translateX(0px) scale(1.1);
|
4755 |
-
-ms-transform: translateX(0px) scale(1.1);
|
4756 |
-
transform: translateX(0px) scale(1.1);
|
4757 |
-
}
|
4758 |
-
|
4759 |
-
.premium-person-container .premium-person-image-container img {
|
4760 |
-
width: 100%;
|
4761 |
-
height: 100%;
|
4762 |
-
-o-object-fit: cover;
|
4763 |
-
object-fit: cover;
|
4764 |
-
-webkit-transition: all 0.5s ease-in-out;
|
4765 |
-
transition: all 0.5s ease-in-out;
|
4766 |
-
}
|
4767 |
-
|
4768 |
-
.premium-person-style2 .premium-person-social {
|
4769 |
-
position: absolute;
|
4770 |
-
top: 0;
|
4771 |
-
right: 0;
|
4772 |
-
width: 100%;
|
4773 |
-
height: 100%;
|
4774 |
-
z-index: 2;
|
4775 |
-
-js-display: flex;
|
4776 |
-
display: -webkit-box;
|
4777 |
-
display: -webkit-flex;
|
4778 |
-
display: -moz-box;
|
4779 |
-
display: -ms-flexbox;
|
4780 |
-
display: flex;
|
4781 |
-
-webkit-box-pack: center;
|
4782 |
-
-webkit-justify-content: center;
|
4783 |
-
-moz-box-pack: center;
|
4784 |
-
-ms-flex-pack: center;
|
4785 |
-
justify-content: center;
|
4786 |
-
-webkit-box-align: center;
|
4787 |
-
-webkit-align-items: center;
|
4788 |
-
-moz-box-align: center;
|
4789 |
-
-ms-flex-align: center;
|
4790 |
-
align-items: center;
|
4791 |
-
-webkit-box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
|
4792 |
-
box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
|
4793 |
-
-webkit-transition: all 0.5s linear 0s;
|
4794 |
-
transition: all 0.5s linear 0s;
|
4795 |
-
opacity: 0;
|
4796 |
-
}
|
4797 |
-
|
4798 |
-
.premium-person-style2 .premium-person-image-container:hover .premium-person-social {
|
4799 |
-
opacity: 1;
|
4800 |
-
}
|
4801 |
-
|
4802 |
-
.premium-person-list-item a {
|
4803 |
-
display: inline-block;
|
4804 |
-
}
|
4805 |
-
|
4806 |
-
.premium-person-style2 .premium-person-list-item a {
|
4807 |
-
opacity: 0;
|
4808 |
-
-webkit-transform: scale(0);
|
4809 |
-
-ms-transform: scale(0);
|
4810 |
-
transform: scale(0);
|
4811 |
-
-webkit-transition: all 0.5s ease-in-out 0s;
|
4812 |
-
transition: all 0.5s ease-in-out 0s;
|
4813 |
-
}
|
4814 |
-
|
4815 |
-
.premium-person-style2 .premium-person-image-container:hover .premium-person-list-item a {
|
4816 |
-
opacity: 1;
|
4817 |
-
-webkit-transform: scale(1);
|
4818 |
-
-ms-transform: scale(1);
|
4819 |
-
transform: scale(1);
|
4820 |
-
}
|
4821 |
-
|
4822 |
-
.premium-person-info-container {
|
4823 |
-
padding: 30px 15px;
|
4824 |
-
}
|
4825 |
-
|
4826 |
-
.premium-person-name {
|
4827 |
-
margin: 0 0 5px;
|
4828 |
-
font-weight: 700;
|
4829 |
-
}
|
4830 |
-
|
4831 |
-
.premium-person-title {
|
4832 |
-
margin: 0 0 20px;
|
4833 |
-
padding: 0;
|
4834 |
-
}
|
4835 |
-
|
4836 |
-
.premium-person-content {
|
4837 |
-
margin: 0 0 30px;
|
4838 |
-
}
|
4839 |
-
|
4840 |
-
/*Override Theme List Margin*/
|
4841 |
-
ul.premium-person-social-list {
|
4842 |
-
margin: 0px !important;
|
4843 |
-
padding: 0;
|
4844 |
-
}
|
4845 |
-
|
4846 |
-
.premium-person-social-list .premium-person-list-item {
|
4847 |
-
display: inline;
|
4848 |
-
list-style: none;
|
4849 |
-
}
|
4850 |
-
|
4851 |
-
.premium-person-social-list li {
|
4852 |
-
position: relative;
|
4853 |
-
bottom: 0px;
|
4854 |
-
-webkit-transition: all 0.2s ease-in-out;
|
4855 |
-
transition: all 0.2s ease-in-out;
|
4856 |
-
}
|
4857 |
-
|
4858 |
-
.premium-person-social-list li i {
|
4859 |
-
position: relative;
|
4860 |
-
bottom: 0px;
|
4861 |
-
-webkit-transition: all 0.2s ease-in-out;
|
4862 |
-
transition: all 0.2s ease-in-out;
|
4863 |
-
}
|
4864 |
-
|
4865 |
-
.premium-person-defaults-yes li.premium-person-facebook:hover a {
|
4866 |
-
background-color: #3b5998 !important;
|
4867 |
-
}
|
4868 |
-
|
4869 |
-
.premium-person-defaults-yes li.premium-person-twitter:hover a {
|
4870 |
-
background-color: #55acee !important;
|
4871 |
-
}
|
4872 |
-
|
4873 |
-
.premium-person-defaults-yes li.premium-person-linkedin:hover a {
|
4874 |
-
background-color: #0077b5 !important;
|
4875 |
-
}
|
4876 |
-
|
4877 |
-
.premium-person-defaults-yes li.premium-person-google:hover a {
|
4878 |
-
background-color: #dc4e41 !important;
|
4879 |
-
}
|
4880 |
-
|
4881 |
-
.premium-person-defaults-yes li.premium-person-youtube:hover a {
|
4882 |
-
background-color: #b31217 !important;
|
4883 |
-
}
|
4884 |
-
|
4885 |
-
.premium-person-defaults-yes li.premium-person-instagram:hover a {
|
4886 |
-
background-color: #e4405f !important;
|
4887 |
-
}
|
4888 |
-
|
4889 |
-
.premium-person-defaults-yes li.premium-person-skype:hover a {
|
4890 |
-
background-color: #00aff0 !important;
|
4891 |
-
}
|
4892 |
-
|
4893 |
-
.premium-person-defaults-yes li.premium-person-pinterest:hover a {
|
4894 |
-
background-color: #bd081c !important;
|
4895 |
-
}
|
4896 |
-
|
4897 |
-
.premium-person-defaults-yes li.premium-person-dribbble:hover a {
|
4898 |
-
background-color: #ea4c89 !important;
|
4899 |
-
}
|
4900 |
-
|
4901 |
-
.premium-person-defaults-yes li.premium-person-mail:hover a {
|
4902 |
-
background-color: #b23121 !important;
|
4903 |
-
}
|
4904 |
-
|
4905 |
-
.premium-person-defaults-yes li.premium-person-behance:hover a {
|
4906 |
-
background-color: #1769ff !important;
|
4907 |
-
}
|
4908 |
-
|
4909 |
-
.premium-person-defaults-yes li.premium-person-whatsapp:hover a {
|
4910 |
-
background-color: #25d366 !important;
|
4911 |
-
}
|
4912 |
-
|
4913 |
-
.premium-person-defaults-yes li.premium-person-telegram:hover a {
|
4914 |
-
background-color: #0088cc !important;
|
4915 |
-
}
|
4916 |
-
|
4917 |
-
.premium-person-defaults-yes li.premium-person-site:hover a {
|
4918 |
-
background-color: #0055a5 !important;
|
4919 |
-
}
|
4920 |
-
|
4921 |
-
.premium-person-social-list li:hover a {
|
4922 |
-
-webkit-box-shadow: none;
|
4923 |
-
box-shadow: none;
|
4924 |
-
}
|
4925 |
-
|
4926 |
-
.premium-person-social-list li a:focus {
|
4927 |
-
-webkit-box-shadow: none;
|
4928 |
-
box-shadow: none;
|
4929 |
-
outline: none;
|
4930 |
-
}
|
4931 |
-
|
4932 |
-
.premium-person-social-list li i {
|
4933 |
-
font-size: 18px;
|
4934 |
-
}
|
4935 |
-
|
4936 |
-
.elementor-widget-premium-addon-person .elementor-widget-container {
|
4937 |
-
-js-display: flex;
|
4938 |
-
display: -webkit-box;
|
4939 |
-
display: -webkit-flex;
|
4940 |
-
display: -moz-box;
|
4941 |
-
display: -ms-flexbox;
|
4942 |
-
display: flex;
|
4943 |
-
-webkit-box-pack: center;
|
4944 |
-
-webkit-justify-content: center;
|
4945 |
-
-moz-box-pack: center;
|
4946 |
-
-ms-flex-pack: center;
|
4947 |
-
justify-content: center;
|
4948 |
-
}
|
4949 |
-
|
4950 |
-
.premium-persons-container.multiple-persons {
|
4951 |
-
-js-display: flex;
|
4952 |
-
display: -webkit-box;
|
4953 |
-
display: -webkit-flex;
|
4954 |
-
display: -moz-box;
|
4955 |
-
display: -ms-flexbox;
|
4956 |
-
display: flex;
|
4957 |
-
-webkit-flex-wrap: wrap;
|
4958 |
-
-ms-flex-wrap: wrap;
|
4959 |
-
flex-wrap: wrap;
|
4960 |
-
width: 100%;
|
4961 |
-
}
|
4962 |
-
|
4963 |
-
.premium-person-style1 .premium-person-container {
|
4964 |
-
overflow: hidden;
|
4965 |
-
}
|
4966 |
-
|
4967 |
-
.premium-person-style1 .premium-person-container .premium-person-info {
|
4968 |
-
position: absolute;
|
4969 |
-
top: auto;
|
4970 |
-
left: 0;
|
4971 |
-
right: 0;
|
4972 |
-
-webkit-transition: all 500ms ease 0s;
|
4973 |
-
transition: all 500ms ease 0s;
|
4974 |
-
-webkit-transform: translate3d(0, 100%, 0);
|
4975 |
-
transform: translate3d(0, 100%, 0);
|
4976 |
-
}
|
4977 |
-
|
4978 |
-
.premium-person-style1 .premium-person-container:hover .premium-person-info {
|
4979 |
-
-webkit-transform: translate3d(0, 0, 0);
|
4980 |
-
transform: translate3d(0, 0, 0);
|
4981 |
-
bottom: -1px !important;
|
4982 |
-
}
|
4983 |
-
|
4984 |
-
.premium-person-style1 .premium-person-social-list li:hover {
|
4985 |
-
bottom: 5px;
|
4986 |
-
}
|
4987 |
-
|
4988 |
-
.premium-person-style1.multiple-persons:not([data-persons-equal="yes"]) {
|
4989 |
-
-webkit-box-align: start;
|
4990 |
-
-webkit-align-items: flex-start;
|
4991 |
-
-moz-box-align: start;
|
4992 |
-
-ms-flex-align: start;
|
4993 |
-
align-items: flex-start;
|
4994 |
-
}
|
4995 |
-
|
4996 |
-
.premium-person-style1 .slick-track {
|
4997 |
-
-js-display: flex;
|
4998 |
-
display: -webkit-box;
|
4999 |
-
display: -webkit-flex;
|
5000 |
-
display: -moz-box;
|
5001 |
-
display: -ms-flexbox;
|
5002 |
-
display: flex;
|
5003 |
-
}
|
5004 |
-
|
5005 |
-
.premium-person-style1 .slick-slide {
|
5006 |
-
height: inherit !important;
|
5007 |
-
}
|
5008 |
-
|
5009 |
-
.premium-person-style1.multiple-persons[data-persons-equal="yes"] .premium-person-image-container,
|
5010 |
-
.premium-person-style1.multiple-persons[data-persons-equal="yes"] .premium-person-image-wrap {
|
5011 |
-
height: 100%;
|
5012 |
-
}
|
5013 |
-
|
5014 |
-
.premium-person-style3 .premium-person-info-container {
|
5015 |
-
position: absolute;
|
5016 |
-
top: 0;
|
5017 |
-
right: 0;
|
5018 |
-
width: 100%;
|
5019 |
-
height: 100%;
|
5020 |
-
-js-display: flex;
|
5021 |
-
display: -webkit-box;
|
5022 |
-
display: -webkit-flex;
|
5023 |
-
display: -moz-box;
|
5024 |
-
display: -ms-flexbox;
|
5025 |
-
display: flex;
|
5026 |
-
-webkit-box-orient: vertical;
|
5027 |
-
-webkit-box-direction: normal;
|
5028 |
-
-webkit-flex-direction: column;
|
5029 |
-
-moz-box-orient: vertical;
|
5030 |
-
-moz-box-direction: normal;
|
5031 |
-
-ms-flex-direction: column;
|
5032 |
-
flex-direction: column;
|
5033 |
-
-webkit-box-pack: justify;
|
5034 |
-
-webkit-justify-content: space-between;
|
5035 |
-
-moz-box-pack: justify;
|
5036 |
-
-ms-flex-pack: justify;
|
5037 |
-
justify-content: space-between;
|
5038 |
-
}
|
5039 |
-
|
5040 |
-
.premium-person-style3 .premium-person-title-desc-wrap {
|
5041 |
-
-js-display: flex;
|
5042 |
-
display: -webkit-box;
|
5043 |
-
display: -webkit-flex;
|
5044 |
-
display: -moz-box;
|
5045 |
-
display: -ms-flexbox;
|
5046 |
-
display: flex;
|
5047 |
-
-webkit-box-orient: horizontal;
|
5048 |
-
-webkit-box-direction: reverse;
|
5049 |
-
-webkit-flex-direction: row-reverse;
|
5050 |
-
-moz-box-orient: horizontal;
|
5051 |
-
-moz-box-direction: reverse;
|
5052 |
-
-ms-flex-direction: row-reverse;
|
5053 |
-
flex-direction: row-reverse;
|
5054 |
-
-webkit-box-pack: justify;
|
5055 |
-
-webkit-justify-content: space-between;
|
5056 |
-
-moz-box-pack: justify;
|
5057 |
-
-ms-flex-pack: justify;
|
5058 |
-
justify-content: space-between;
|
5059 |
-
-webkit-box-align: start;
|
5060 |
-
-webkit-align-items: flex-start;
|
5061 |
-
-moz-box-align: start;
|
5062 |
-
-ms-flex-align: start;
|
5063 |
-
align-items: flex-start;
|
5064 |
-
}
|
5065 |
-
|
5066 |
-
.premium-person-style3 .premium-person-name-icons-wrap {
|
5067 |
-
-js-display: flex;
|
5068 |
-
display: -webkit-box;
|
5069 |
-
display: -webkit-flex;
|
5070 |
-
display: -moz-box;
|
5071 |
-
display: -ms-flexbox;
|
5072 |
-
display: flex;
|
5073 |
-
-webkit-box-pack: justify;
|
5074 |
-
-webkit-justify-content: space-between;
|
5075 |
-
-moz-box-pack: justify;
|
5076 |
-
-ms-flex-pack: justify;
|
5077 |
-
justify-content: space-between;
|
5078 |
-
-webkit-box-align: end;
|
5079 |
-
-webkit-align-items: flex-end;
|
5080 |
-
-moz-box-align: end;
|
5081 |
-
-ms-flex-align: end;
|
5082 |
-
align-items: flex-end;
|
5083 |
-
}
|
5084 |
-
|
5085 |
-
.premium-person-style3 .premium-person-title {
|
5086 |
-
opacity: 0;
|
5087 |
-
-webkit-transition: all 0.3s ease;
|
5088 |
-
transition: all 0.3s ease;
|
5089 |
-
width: 0;
|
5090 |
-
}
|
5091 |
-
|
5092 |
-
.premium-person-style3 .premium-person-title span {
|
5093 |
-
display: inline-block;
|
5094 |
-
}
|
5095 |
-
|
5096 |
-
.premium-person-style3 .premium-person-name {
|
5097 |
-
padding-right: 10px;
|
5098 |
-
}
|
5099 |
-
|
5100 |
-
.premium-person-style3 .premium-person-social-list {
|
5101 |
-
-js-display: flex;
|
5102 |
-
display: -webkit-box;
|
5103 |
-
display: -webkit-flex;
|
5104 |
-
display: -moz-box;
|
5105 |
-
display: -ms-flexbox;
|
5106 |
-
display: flex;
|
5107 |
-
-webkit-box-orient: vertical;
|
5108 |
-
-webkit-box-direction: normal;
|
5109 |
-
-webkit-flex-direction: column;
|
5110 |
-
-moz-box-orient: vertical;
|
5111 |
-
-moz-box-direction: normal;
|
5112 |
-
-ms-flex-direction: column;
|
5113 |
-
flex-direction: column;
|
5114 |
-
-webkit-transform: translateY(20px);
|
5115 |
-
-ms-transform: translateY(20px);
|
5116 |
-
transform: translateY(20px);
|
5117 |
-
opacity: 0;
|
5118 |
-
-webkit-transition: all 0.3s ease;
|
5119 |
-
transition: all 0.3s ease;
|
5120 |
-
}
|
5121 |
-
|
5122 |
-
.premium-person-style3 .premium-person-list-item {
|
5123 |
-
line-height: 0;
|
5124 |
-
}
|
5125 |
-
|
5126 |
-
.premium-person-style3 .premium-person-list-item a {
|
5127 |
-
padding: 5px 0 0 10px;
|
5128 |
-
margin: 5px 0;
|
5129 |
-
}
|
5130 |
-
|
5131 |
-
.premium-person-style3 .premium-person-container:hover .premium-person-title {
|
5132 |
-
opacity: 1;
|
5133 |
-
}
|
5134 |
-
|
5135 |
-
.premium-person-style3 .premium-person-container:hover .premium-person-social-list {
|
5136 |
-
opacity: 1;
|
5137 |
-
-webkit-transform: translateY(0);
|
5138 |
-
-ms-transform: translateY(0);
|
5139 |
-
transform: translateY(0);
|
5140 |
-
}
|
5141 |
-
|
5142 |
-
.premium-persons-title-cw .premium-person-title {
|
5143 |
-
-webkit-transform: translateX(-15px) rotate(-90deg);
|
5144 |
-
-ms-transform: translateX(-15px) rotate(-90deg);
|
5145 |
-
transform: translateX(-15px) rotate(-90deg);
|
5146 |
-
-webkit-transform-origin: top;
|
5147 |
-
-ms-transform-origin: top;
|
5148 |
-
transform-origin: top;
|
5149 |
-
}
|
5150 |
-
|
5151 |
-
.premium-persons-title-cw .premium-person-container:hover .premium-person-title {
|
5152 |
-
-webkit-transform: translateX(0) rotate(-90deg);
|
5153 |
-
-ms-transform: translateX(0) rotate(-90deg);
|
5154 |
-
transform: translateX(0) rotate(-90deg);
|
5155 |
-
}
|
5156 |
-
|
5157 |
-
.premium-persons-title-ccw .premium-person-title {
|
5158 |
-
width: auto;
|
5159 |
-
margin-left: 20px;
|
5160 |
-
-webkit-transform: translateX(-15px) rotate(90deg);
|
5161 |
-
-ms-transform: translateX(-15px) rotate(90deg);
|
5162 |
-
transform: translateX(-15px) rotate(90deg);
|
5163 |
-
-webkit-transform-origin: center left;
|
5164 |
-
-ms-transform-origin: center left;
|
5165 |
-
transform-origin: center left;
|
5166 |
-
}
|
5167 |
-
|
5168 |
-
.premium-persons-title-ccw .premium-person-container:hover .premium-person-title {
|
5169 |
-
-webkit-transform: translateX(0) rotate(90deg);
|
5170 |
-
-ms-transform: translateX(0) rotate(90deg);
|
5171 |
-
transform: translateX(0) rotate(90deg);
|
5172 |
-
}
|
5173 |
-
|
5174 |
-
/**************** Premium Fancy Text *******************/
|
5175 |
-
/*******************************************************/
|
5176 |
-
.premium-suffix-text,
|
5177 |
-
.premium-fancy-text,
|
5178 |
-
.premium-prefix-text {
|
5179 |
-
font-size: 40px;
|
5180 |
-
}
|
5181 |
-
|
5182 |
-
.premium-fancy-text-wrapper .premium-fancy-list-items {
|
5183 |
-
list-style: none;
|
5184 |
-
}
|
5185 |
-
|
5186 |
-
.premium-fancy-text-wrapper .premium-fancy-text-span-align {
|
5187 |
-
vertical-align: top;
|
5188 |
-
}
|
5189 |
-
|
5190 |
-
.premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-text-items-wrapper {
|
5191 |
-
margin: 0;
|
5192 |
-
padding: 0;
|
5193 |
-
border: none;
|
5194 |
-
position: relative;
|
5195 |
-
}
|
5196 |
-
|
5197 |
-
.premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-list-items {
|
5198 |
-
position: absolute;
|
5199 |
-
top: 0;
|
5200 |
-
right: 0;
|
5201 |
-
display: inline-block;
|
5202 |
-
}
|
5203 |
-
|
5204 |
-
.premium-fancy-text-wrapper.zoomout .premium-fancy-item-hidden {
|
5205 |
-
opacity: 0;
|
5206 |
-
-webkit-animation: pa-zoom-out 0.8s;
|
5207 |
-
animation: pa-zoom-out 0.8s;
|
5208 |
-
}
|
5209 |
-
|
5210 |
-
.premium-fancy-text-wrapper.zoomout .premium-fancy-item-visible {
|
5211 |
-
position: relative !important;
|
5212 |
-
-webkit-animation: pa-zoom-in 0.8s;
|
5213 |
-
animation: pa-zoom-in 0.8s;
|
5214 |
-
}
|
5215 |
-
|
5216 |
-
.premium-fancy-text-wrapper.zoomout .premium-fancy-text-items-wrapper {
|
5217 |
-
-webkit-perspective: 300px;
|
5218 |
-
perspective: 300px;
|
5219 |
-
}
|
5220 |
-
|
5221 |
-
.premium-fancy-text-wrapper.rotate .premium-fancy-list-items {
|
5222 |
-
-webkit-transform-origin: 50% 100%;
|
5223 |
-
-ms-transform-origin: 50% 100%;
|
5224 |
-
transform-origin: 50% 100%;
|
5225 |
-
}
|
5226 |
-
|
5227 |
-
.premium-fancy-text-wrapper.rotate .premium-fancy-item-hidden {
|
5228 |
-
opacity: 0;
|
5229 |
-
-webkit-transform: rotateX(180deg);
|
5230 |
-
-ms-transform: rotateX(180deg);
|
5231 |
-
transform: rotateX(180deg);
|
5232 |
-
-webkit-animation: pa-rotate-out 1.2s;
|
5233 |
-
animation: pa-rotate-out 1.2s;
|
5234 |
-
}
|
5235 |
-
|
5236 |
-
.premium-fancy-text-wrapper.rotate .premium-fancy-item-visible {
|
5237 |
-
position: relative !important;
|
5238 |
-
-webkit-transform: rotateX(0deg);
|
5239 |
-
-ms-transform: rotateX(0deg);
|
5240 |
-
transform: rotateX(0deg);
|
5241 |
-
-webkit-animation: pa-rotate-in 1.2s;
|
5242 |
-
animation: pa-rotate-in 1.2s;
|
5243 |
-
}
|
5244 |
-
|
5245 |
-
.premium-fancy-text-wrapper.bar .premium-fancy-text-items-wrapper::after {
|
5246 |
-
position: absolute;
|
5247 |
-
content: "";
|
5248 |
-
right: 0;
|
5249 |
-
bottom: 0;
|
5250 |
-
width: 0;
|
5251 |
-
height: 3px;
|
5252 |
-
background: #000;
|
5253 |
-
}
|
5254 |
-
|
5255 |
-
.premium-fancy-text-wrapper.bar .premium-fancy-text-items-wrapper.active::after {
|
5256 |
-
width: 100%;
|
5257 |
-
-webkit-transition: width 3s ease-in-out;
|
5258 |
-
transition: width 3s ease-in-out;
|
5259 |
-
}
|
5260 |
-
|
5261 |
-
.premium-fancy-text-wrapper.bar .premium-fancy-list-items {
|
5262 |
-
opacity: 0;
|
5263 |
-
}
|
5264 |
-
|
5265 |
-
.premium-fancy-text-wrapper.bar .premium-fancy-item-visible {
|
5266 |
-
opacity: 1;
|
5267 |
-
-webkit-transition: opacity 2s ease-in-out;
|
5268 |
-
transition: opacity 2s ease-in-out;
|
5269 |
-
position: relative !important;
|
5270 |
-
}
|
5271 |
-
|
5272 |
-
.premium-fancy-text-wrapper.auto-fade .premium-fancy-text {
|
5273 |
-
display: inline-block;
|
5274 |
-
width: 200px;
|
5275 |
-
font-weight: 400;
|
5276 |
-
}
|
5277 |
-
|
5278 |
-
.premium-fancy-text-wrapper.auto-fade .premium-fancy-svg-text {
|
5279 |
-
position: relative;
|
5280 |
-
vertical-align: sub;
|
5281 |
-
}
|
5282 |
-
|
5283 |
-
.premium-fancy-text-wrapper.auto-fade g>text {
|
5284 |
-
text-anchor: start;
|
5285 |
-
shape-rendering: crispEdges;
|
5286 |
-
opacity: 0;
|
5287 |
-
font-size: 300px;
|
5288 |
-
-webkit-animation-name: pa-auto-fade;
|
5289 |
-
animation-name: pa-auto-fade;
|
5290 |
-
-moz-animation-name: pa-auto-fade;
|
5291 |
-
-webkit-animation-duration: 9s;
|
5292 |
-
animation-duration: 9s;
|
5293 |
-
-webkit-animation-timing-function: linear;
|
5294 |
-
animation-timing-function: linear;
|
5295 |
-
-webkit-animation-iteration-count: infinite;
|
5296 |
-
animation-iteration-count: infinite;
|
5297 |
-
}
|
5298 |
-
|
5299 |
-
.premium-fancy-text-wrapper.auto-fade g>text:nth-child(1) {
|
5300 |
-
-webkit-animation-delay: 0s;
|
5301 |
-
animation-delay: 0s;
|
5302 |
-
}
|
5303 |
-
|
5304 |
-
.premium-fancy-text-wrapper.auto-fade g>text:nth-child(2) {
|
5305 |
-
-webkit-animation-delay: 3s;
|
5306 |
-
animation-delay: 3s;
|
5307 |
-
}
|
5308 |
-
|
5309 |
-
.premium-fancy-text-wrapper.auto-fade g>text:nth-child(3) {
|
5310 |
-
-webkit-animation-delay: 6s;
|
5311 |
-
animation-delay: 6s;
|
5312 |
-
}
|
5313 |
-
|
5314 |
-
@-webkit-keyframes pa-auto-fade {
|
5315 |
-
0% {
|
5316 |
-
opacity: 0;
|
5317 |
-
}
|
5318 |
-
|
5319 |
-
20% {
|
5320 |
-
opacity: 1;
|
5321 |
-
}
|
5322 |
-
|
5323 |
-
35% {
|
5324 |
-
opacity: 0;
|
5325 |
-
}
|
5326 |
-
|
5327 |
-
100% {
|
5328 |
-
opacity: 0;
|
5329 |
-
}
|
5330 |
-
}
|
5331 |
-
|
5332 |
-
@keyframes pa-auto-fade {
|
5333 |
-
0% {
|
5334 |
-
opacity: 0;
|
5335 |
-
}
|
5336 |
-
|
5337 |
-
20% {
|
5338 |
-
opacity: 1;
|
5339 |
-
}
|
5340 |
-
|
5341 |
-
35% {
|
5342 |
-
opacity: 0;
|
5343 |
-
}
|
5344 |
-
|
5345 |
-
100% {
|
5346 |
-
opacity: 0;
|
5347 |
-
}
|
5348 |
-
}
|
5349 |
-
|
5350 |
-
@-webkit-keyframes pa-zoom-in {
|
5351 |
-
0% {
|
5352 |
-
opacity: 0;
|
5353 |
-
-webkit-transform: translateZ(100px);
|
5354 |
-
transform: translateZ(100px);
|
5355 |
-
}
|
5356 |
-
|
5357 |
-
100% {
|
5358 |
-
opacity: 1;
|
5359 |
-
-webkit-transform: translateZ(0);
|
5360 |
-
transform: translateZ(0);
|
5361 |
-
}
|
5362 |
-
}
|
5363 |
-
|
5364 |
-
@keyframes pa-zoom-in {
|
5365 |
-
0% {
|
5366 |
-
opacity: 0;
|
5367 |
-
-webkit-transform: translateZ(100px);
|
5368 |
-
transform: translateZ(100px);
|
5369 |
-
}
|
5370 |
-
|
5371 |
-
100% {
|
5372 |
-
opacity: 1;
|
5373 |
-
-webkit-transform: translateZ(0);
|
5374 |
-
transform: translateZ(0);
|
5375 |
-
}
|
5376 |
-
}
|
5377 |
-
|
5378 |
-
@-webkit-keyframes pa-zoom-out {
|
5379 |
-
0% {
|
5380 |
-
opacity: 1;
|
5381 |
-
-webkit-transform: translateZ(0);
|
5382 |
-
transform: translateZ(0);
|
5383 |
-
}
|
5384 |
-
|
5385 |
-
100% {
|
5386 |
-
opacity: 0;
|
5387 |
-
-webkit-transform: translateZ(-100px);
|
5388 |
-
transform: translateZ(-100px);
|
5389 |
-
}
|
5390 |
-
}
|
5391 |
-
|
5392 |
-
@keyframes pa-zoom-out {
|
5393 |
-
0% {
|
5394 |
-
opacity: 1;
|
5395 |
-
-webkit-transform: translateZ(0);
|
5396 |
-
transform: translateZ(0);
|
5397 |
-
}
|
5398 |
-
|
5399 |
-
100% {
|
5400 |
-
opacity: 0;
|
5401 |
-
-webkit-transform: translateZ(-100px);
|
5402 |
-
transform: translateZ(-100px);
|
5403 |
-
}
|
5404 |
-
}
|
5405 |
-
|
5406 |
-
@-webkit-keyframes pa-rotate-in {
|
5407 |
-
0% {
|
5408 |
-
opacity: 0;
|
5409 |
-
-webkit-transform: rotateX(180deg);
|
5410 |
-
transform: rotateX(180deg);
|
5411 |
-
}
|
5412 |
-
|
5413 |
-
35% {
|
5414 |
-
opacity: 0;
|
5415 |
-
-webkit-transform: rotateX(120deg);
|
5416 |
-
transform: rotateX(120deg);
|
5417 |
-
}
|
5418 |
-
|
5419 |
-
65% {
|
5420 |
-
opacity: 0;
|
5421 |
-
}
|
5422 |
-
|
5423 |
-
100% {
|
5424 |
-
opacity: 1;
|
5425 |
-
-webkit-transform: rotateX(360deg);
|
5426 |
-
transform: rotateX(360deg);
|
5427 |
-
}
|
5428 |
-
}
|
5429 |
-
|
5430 |
-
@keyframes pa-rotate-in {
|
5431 |
-
0% {
|
5432 |
-
opacity: 0;
|
5433 |
-
-webkit-transform: rotateX(180deg);
|
5434 |
-
transform: rotateX(180deg);
|
5435 |
-
}
|
5436 |
-
|
5437 |
-
35% {
|
5438 |
-
opacity: 0;
|
5439 |
-
-webkit-transform: rotateX(120deg);
|
5440 |
-
transform: rotateX(120deg);
|
5441 |
-
}
|
5442 |
-
|
5443 |
-
65% {
|
5444 |
-
opacity: 0;
|
5445 |
-
}
|
5446 |
-
|
5447 |
-
100% {
|
5448 |
-
opacity: 1;
|
5449 |
-
-webkit-transform: rotateX(360deg);
|
5450 |
-
transform: rotateX(360deg);
|
5451 |
-
}
|
5452 |
-
}
|
5453 |
-
|
5454 |
-
@-webkit-keyframes pa-rotate-out {
|
5455 |
-
0% {
|
5456 |
-
opacity: 1;
|
5457 |
-
-webkit-transform: rotateX(0deg);
|
5458 |
-
transform: rotateX(0deg);
|
5459 |
-
}
|
5460 |
-
|
5461 |
-
35% {
|
5462 |
-
opacity: 1;
|
5463 |
-
-webkit-transform: rotateX(-40deg);
|
5464 |
-
transform: rotateX(-40deg);
|
5465 |
-
}
|
5466 |
-
|
5467 |
-
65% {
|
5468 |
-
opacity: 0;
|
5469 |
-
}
|
5470 |
-
|
5471 |
-
100% {
|
5472 |
-
opacity: 0;
|
5473 |
-
-webkit-transform: rotateX(180deg);
|
5474 |
-
transform: rotateX(180deg);
|
5475 |
-
}
|
5476 |
-
}
|
5477 |
-
|
5478 |
-
@keyframes pa-rotate-out {
|
5479 |
-
0% {
|
5480 |
-
opacity: 1;
|
5481 |
-
-webkit-transform: rotateX(0deg);
|
5482 |
-
transform: rotateX(0deg);
|
5483 |
-
}
|
5484 |
-
|
5485 |
-
35% {
|
5486 |
-
opacity: 1;
|
5487 |
-
-webkit-transform: rotateX(-40deg);
|
5488 |
-
transform: rotateX(-40deg);
|
5489 |
-
}
|
5490 |
-
|
5491 |
-
65% {
|
5492 |
-
opacity: 0;
|
5493 |
-
}
|
5494 |
-
|
5495 |
-
100% {
|
5496 |
-
opacity: 0;
|
5497 |
-
-webkit-transform: rotateX(180deg);
|
5498 |
-
transform: rotateX(180deg);
|
5499 |
-
}
|
5500 |
-
}
|
5501 |
-
|
5502 |
-
/**************** Premium Pricing Table ****************/
|
5503 |
-
/*******************************************************/
|
5504 |
-
.premium-pricing-table-container {
|
5505 |
-
position: relative;
|
5506 |
-
overflow: hidden;
|
5507 |
-
text-align: center;
|
5508 |
-
-webkit-transition: all 0.3s ease-in-out;
|
5509 |
-
transition: all 0.3s ease-in-out;
|
5510 |
-
}
|
5511 |
-
|
5512 |
-
.premium-pricing-icon-container {
|
5513 |
-
-js-display: flex;
|
5514 |
-
display: -webkit-box;
|
5515 |
-
display: -webkit-flex;
|
5516 |
-
display: -moz-box;
|
5517 |
-
display: -ms-flexbox;
|
5518 |
-
display: flex;
|
5519 |
-
-webkit-box-pack: center;
|
5520 |
-
-webkit-justify-content: center;
|
5521 |
-
-moz-box-pack: center;
|
5522 |
-
-ms-flex-pack: center;
|
5523 |
-
justify-content: center;
|
5524 |
-
line-height: 0;
|
5525 |
-
}
|
5526 |
-
|
5527 |
-
.premium-pricing-icon-container .premium-pricing-icon {
|
5528 |
-
display: inline-block;
|
5529 |
-
}
|
5530 |
-
|
5531 |
-
.premium-pricing-icon-container .premium-pricing-image {
|
5532 |
-
overflow: hidden;
|
5533 |
-
}
|
5534 |
-
|
5535 |
-
.premium-pricing-icon-container .premium-pricing-image img {
|
5536 |
-
width: 25px;
|
5537 |
-
height: 25px;
|
5538 |
-
-o-object-fit: cover;
|
5539 |
-
object-fit: cover;
|
5540 |
-
}
|
5541 |
-
|
5542 |
-
.premium-badge-left {
|
5543 |
-
position: absolute;
|
5544 |
-
top: 0;
|
5545 |
-
}
|
5546 |
-
|
5547 |
-
.premium-badge-right {
|
5548 |
-
position: absolute;
|
5549 |
-
top: 0;
|
5550 |
-
right: 0;
|
5551 |
-
}
|
5552 |
-
|
5553 |
-
.premium-badge-left {
|
5554 |
-
left: 0;
|
5555 |
-
}
|
5556 |
-
|
5557 |
-
.premium-badge-triangle.premium-badge-left .corner {
|
5558 |
-
width: 0;
|
5559 |
-
height: 0;
|
5560 |
-
border-top: 150px solid;
|
5561 |
-
border-bottom: 150px solid transparent;
|
5562 |
-
border-right: 150px solid transparent;
|
5563 |
-
}
|
5564 |
-
|
5565 |
-
.premium-badge-triangle.premium-badge-right .corner {
|
5566 |
-
width: 0;
|
5567 |
-
height: 0;
|
5568 |
-
border-bottom: 150px solid transparent;
|
5569 |
-
border-right: 150px solid;
|
5570 |
-
border-left: 150px solid transparent;
|
5571 |
-
}
|
5572 |
-
|
5573 |
-
.premium-badge-triangle span {
|
5574 |
-
position: absolute;
|
5575 |
-
top: 35px;
|
5576 |
-
width: 100px;
|
5577 |
-
text-align: center;
|
5578 |
-
-webkit-transform: rotate(-45deg);
|
5579 |
-
-ms-transform: rotate(-45deg);
|
5580 |
-
transform: rotate(-45deg);
|
5581 |
-
display: block;
|
5582 |
-
text-transform: uppercase;
|
5583 |
-
}
|
5584 |
-
|
5585 |
-
.premium-badge-triangle.premium-badge-right span {
|
5586 |
-
-webkit-transform: rotate(45deg);
|
5587 |
-
-ms-transform: rotate(45deg);
|
5588 |
-
transform: rotate(45deg);
|
5589 |
-
right: 0;
|
5590 |
-
}
|
5591 |
-
|
5592 |
-
.premium-badge-circle {
|
5593 |
-
min-width: 4em;
|
5594 |
-
min-height: 4em;
|
5595 |
-
line-height: 4em;
|
5596 |
-
text-align: center;
|
5597 |
-
-webkit-border-radius: 100%;
|
5598 |
-
border-radius: 100%;
|
5599 |
-
position: absolute;
|
5600 |
-
z-index: 1;
|
5601 |
-
}
|
5602 |
-
|
5603 |
-
.premium-badge-stripe {
|
5604 |
-
position: absolute;
|
5605 |
-
-webkit-transform: rotate(90deg);
|
5606 |
-
-ms-transform: rotate(90deg);
|
5607 |
-
transform: rotate(90deg);
|
5608 |
-
width: 15em;
|
5609 |
-
overflow: hidden;
|
5610 |
-
height: 15em;
|
5611 |
-
}
|
5612 |
-
|
5613 |
-
.premium-badge-stripe.premium-badge-left {
|
5614 |
-
-webkit-transform: rotate(0);
|
5615 |
-
-ms-transform: rotate(0);
|
5616 |
-
transform: rotate(0);
|
5617 |
-
}
|
5618 |
-
|
5619 |
-
.premium-badge-stripe .corner {
|
5620 |
-
text-align: center;
|
5621 |
-
left: 0;
|
5622 |
-
width: 150%;
|
5623 |
-
-webkit-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
|
5624 |
-
-ms-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
|
5625 |
-
transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
|
5626 |
-
margin-top: 35px;
|
5627 |
-
font-size: 13px;
|
5628 |
-
line-height: 2;
|
5629 |
-
font-weight: 800;
|
5630 |
-
text-transform: uppercase;
|
5631 |
-
}
|
5632 |
-
|
5633 |
-
.premium-badge-flag .corner {
|
5634 |
-
text-align: center;
|
5635 |
-
-webkit-border-radius: 4px 4px 0 4px;
|
5636 |
-
border-radius: 4px 4px 0 4px;
|
5637 |
-
padding: 3px 15px;
|
5638 |
-
position: absolute;
|
5639 |
-
top: 10%;
|
5640 |
-
right: -8px;
|
5641 |
-
}
|
5642 |
-
|
5643 |
-
.premium-badge-flag .corner::before,
|
5644 |
-
.premium-badge-flag .corner::after {
|
5645 |
-
content: "";
|
5646 |
-
display: block;
|
5647 |
-
position: absolute;
|
5648 |
-
width: 0;
|
5649 |
-
height: 0;
|
5650 |
-
top: 100%;
|
5651 |
-
right: 0;
|
5652 |
-
border-bottom: 8px solid transparent;
|
5653 |
-
}
|
5654 |
-
|
5655 |
-
.elementor-widget-premium-addon-pricing-table .elementor-widget-container {
|
5656 |
-
overflow: visible !important;
|
5657 |
-
}
|
5658 |
-
|
5659 |
-
.premium-badge-flag .corner::after {
|
5660 |
-
border-left: 8px solid rgba(0, 0, 0, 0.2);
|
5661 |
-
}
|
5662 |
-
|
5663 |
-
.premium-pricing-price-currency {
|
5664 |
-
position: relative;
|
5665 |
-
}
|
5666 |
-
|
5667 |
-
.premium-pricing-button-container {
|
5668 |
-
display: block;
|
5669 |
-
}
|
5670 |
-
|
5671 |
-
.premium-pricing-list {
|
5672 |
-
-js-display: flex;
|
5673 |
-
display: -webkit-box;
|
5674 |
-
display: -webkit-flex;
|
5675 |
-
display: -moz-box;
|
5676 |
-
display: -ms-flexbox;
|
5677 |
-
display: flex;
|
5678 |
-
-webkit-box-orient: vertical;
|
5679 |
-
-webkit-box-direction: normal;
|
5680 |
-
-webkit-flex-direction: column;
|
5681 |
-
-moz-box-orient: vertical;
|
5682 |
-
-moz-box-direction: normal;
|
5683 |
-
-ms-flex-direction: column;
|
5684 |
-
flex-direction: column;
|
5685 |
-
list-style-type: none;
|
5686 |
-
margin: 0;
|
5687 |
-
}
|
5688 |
-
|
5689 |
-
.premium-pricing-list .premium-pricing-list-item {
|
5690 |
-
-js-display: flex;
|
5691 |
-
display: -webkit-box;
|
5692 |
-
display: -webkit-flex;
|
5693 |
-
display: -moz-box;
|
5694 |
-
display: -ms-flexbox;
|
5695 |
-
display: flex;
|
5696 |
-
-webkit-box-align: center;
|
5697 |
-
-webkit-align-items: center;
|
5698 |
-
-moz-box-align: center;
|
5699 |
-
-ms-flex-align: center;
|
5700 |
-
align-items: center;
|
5701 |
-
}
|
5702 |
-
|
5703 |
-
.premium-pricing-list .premium-pricing-list-item svg {
|
5704 |
-
width: 50px;
|
5705 |
-
height: 50px;
|
5706 |
-
}
|
5707 |
-
|
5708 |
-
.premium-pricing-list .premium-pricing-list-item img {
|
5709 |
-
width: 30px;
|
5710 |
-
height: 30px;
|
5711 |
-
-o-object-fit: cover;
|
5712 |
-
object-fit: cover;
|
5713 |
-
}
|
5714 |
-
|
5715 |
-
.premium-pricing-list .premium-pricing-list-span {
|
5716 |
-
position: relative;
|
5717 |
-
}
|
5718 |
-
|
5719 |
-
.premium-pricing-list .list-item-tooltip {
|
5720 |
-
border-bottom: 1px dotted;
|
5721 |
-
}
|
5722 |
-
|
5723 |
-
.premium-pricing-list .premium-pricing-list-tooltip {
|
5724 |
-
position: absolute;
|
5725 |
-
top: -webkit-calc(100% + 1px);
|
5726 |
-
top: calc(100% + 1px);
|
5727 |
-
right: 0;
|
5728 |
-
visibility: hidden;
|
5729 |
-
padding: 15px 20px;
|
5730 |
-
-webkit-border-radius: 5px;
|
5731 |
-
border-radius: 5px;
|
5732 |
-
min-width: 200px;
|
5733 |
-
overflow: hidden;
|
5734 |
-
text-align: right;
|
5735 |
-
font-size: 0.8rem;
|
5736 |
-
color: #fff;
|
5737 |
-
background-color: #aaa;
|
5738 |
-
}
|
5739 |
-
|
5740 |
-
.premium-pricing-features-left .premium-pricing-list-span {
|
5741 |
-
text-align: right;
|
5742 |
-
}
|
5743 |
-
|
5744 |
-
.premium-pricing-features-center .premium-pricing-list-span {
|
5745 |
-
text-align: center;
|
5746 |
-
}
|
5747 |
-
|
5748 |
-
.premium-pricing-features-right .premium-pricing-list-span {
|
5749 |
-
text-align: left;
|
5750 |
-
}
|
5751 |
-
|
5752 |
-
.premium-pricing-list-span:hover .premium-pricing-list-tooltip {
|
5753 |
-
z-index: 99;
|
5754 |
-
visibility: visible;
|
5755 |
-
opacity: 1;
|
5756 |
-
}
|
5757 |
-
|
5758 |
-
.premium-pricing-slashed-price-value {
|
5759 |
-
display: inline-block;
|
5760 |
-
font-size: 20px;
|
5761 |
-
font-weight: 400;
|
5762 |
-
margin-left: 5px;
|
5763 |
-
}
|
5764 |
-
|
5765 |
-
.premium-pricing-price-value {
|
5766 |
-
font-size: 70px;
|
5767 |
-
}
|
5768 |
-
|
5769 |
-
.premium-pricing-description-container li {
|
5770 |
-
list-style-position: inside;
|
5771 |
-
text-indent: -40px;
|
5772 |
-
}
|
5773 |
-
|
5774 |
-
@-moz-document url-prefix() {
|
5775 |
-
.premium-pricing-description-container li {
|
5776 |
-
text-indent: 0px;
|
5777 |
-
}
|
5778 |
-
}
|
5779 |
-
|
5780 |
-
.premium-pricing-price-button {
|
5781 |
-
display: block;
|
5782 |
-
padding: 6px 12px;
|
5783 |
-
line-height: 1.42857143;
|
5784 |
-
text-align: center;
|
5785 |
-
color: #fff;
|
5786 |
-
background: #6ec1e4;
|
5787 |
-
margin-bottom: 0;
|
5788 |
-
-webkit-transition: all 0.3s ease-in-out;
|
5789 |
-
transition: all 0.3s ease-in-out;
|
5790 |
-
}
|
5791 |
-
|
5792 |
-
/**************** Premium Google Maps ******************/
|
5793 |
-
/*******************************************************/
|
5794 |
-
.premium-maps-info-container {
|
5795 |
-
margin-top: 10px;
|
5796 |
-
margin-bottom: 10px;
|
5797 |
-
}
|
5798 |
-
|
5799 |
-
.premium-maps-info-title,
|
5800 |
-
.premium-maps-info-desc {
|
5801 |
-
margin: 0;
|
5802 |
-
padding: 0;
|
5803 |
-
}
|
5804 |
-
|
5805 |
-
.premium-maps-container .gm-style-iw {
|
5806 |
-
text-align: center;
|
5807 |
-
direction: ltr;
|
5808 |
-
}
|
5809 |
-
|
5810 |
-
.premium-maps-container .gm-style img {
|
5811 |
-
max-width: none !important;
|
5812 |
-
}
|
5813 |
-
|
5814 |
-
/**************** Premium Button ***********************/
|
5815 |
-
/*******************************************************/
|
5816 |
-
.premium-button {
|
5817 |
-
display: inline-block;
|
5818 |
-
position: relative;
|
5819 |
-
overflow: hidden;
|
5820 |
-
cursor: pointer;
|
5821 |
-
-webkit-transition: all 0.2s ease-in-out !important;
|
5822 |
-
transition: all 0.2s ease-in-out !important;
|
5823 |
-
}
|
5824 |
-
|
5825 |
-
.premium-button-sm {
|
5826 |
-
padding: 12px 24px;
|
5827 |
-
font-size: 14px;
|
5828 |
-
line-height: 1;
|
5829 |
-
}
|
5830 |
-
|
5831 |
-
.premium-button .premium-lottie-animation,
|
5832 |
-
.premium-image-button .premium-lottie-animation {
|
5833 |
-
-js-display: flex;
|
5834 |
-
display: -webkit-box;
|
5835 |
-
display: -webkit-flex;
|
5836 |
-
display: -moz-box;
|
5837 |
-
display: -ms-flexbox;
|
5838 |
-
display: flex;
|
5839 |
-
}
|
5840 |
-
|
5841 |
-
.premium-button .premium-lottie-animation svg,
|
5842 |
-
.premium-image-button .premium-lottie-animation svg {
|
5843 |
-
width: 50px;
|
5844 |
-
height: 50px;
|
5845 |
-
}
|
5846 |
-
|
5847 |
-
.premium-button-md {
|
5848 |
-
padding: 14px 26px;
|
5849 |
-
font-size: 16px;
|
5850 |
-
line-height: 1.2;
|
5851 |
-
}
|
5852 |
-
|
5853 |
-
.premium-button-lg {
|
5854 |
-
padding: 16px 28px;
|
5855 |
-
font-size: 18px;
|
5856 |
-
line-height: 1.3333;
|
5857 |
-
}
|
5858 |
-
|
5859 |
-
.premium-button-block {
|
5860 |
-
font-size: 15px;
|
5861 |
-
line-height: 1;
|
5862 |
-
padding: 12px 24px;
|
5863 |
-
width: 100%;
|
5864 |
-
text-align: center;
|
5865 |
-
}
|
5866 |
-
|
5867 |
-
.premium-button-text {
|
5868 |
-
display: inline-block;
|
5869 |
-
width: 100%;
|
5870 |
-
}
|
5871 |
-
|
5872 |
-
.premium-button-style1,
|
5873 |
-
.premium-button-style2,
|
5874 |
-
.premium-button-style5,
|
5875 |
-
.premium-button-style7 {
|
5876 |
-
display: inline-block;
|
5877 |
-
vertical-align: middle;
|
5878 |
-
-webkit-transform: perspective(1px) translateZ(0);
|
5879 |
-
transform: perspective(1px) translateZ(0);
|
5880 |
-
-webkit-box-shadow: 0 0 1px transparent;
|
5881 |
-
box-shadow: 0 0 1px transparent;
|
5882 |
-
position: relative;
|
5883 |
-
-webkit-transition-property: color;
|
5884 |
-
transition-property: color;
|
5885 |
-
-webkit-transition-duration: 0.15s;
|
5886 |
-
transition-duration: 0.15s;
|
5887 |
-
}
|
5888 |
-
|
5889 |
-
.premium-button-style1:before,
|
5890 |
-
.premium-button-style2:before,
|
5891 |
-
.premium-button-style5:before {
|
5892 |
-
content: "";
|
5893 |
-
position: absolute;
|
5894 |
-
z-index: -1;
|
5895 |
-
top: 0;
|
5896 |
-
right: 0;
|
5897 |
-
left: 0;
|
5898 |
-
bottom: 0;
|
5899 |
-
-webkit-transform: scaleY(0);
|
5900 |
-
-ms-transform: scaleY(0);
|
5901 |
-
transform: scaleY(0);
|
5902 |
-
-webkit-transform-origin: 50% 0;
|
5903 |
-
-ms-transform-origin: 50% 0;
|
5904 |
-
transform-origin: 50% 0;
|
5905 |
-
-webkit-transition-property: -webkit-transform;
|
5906 |
-
transition-property: -webkit-transform;
|
5907 |
-
transition-property: transform;
|
5908 |
-
transition-property: transform, -webkit-transform;
|
5909 |
-
-webkit-transition-duration: 0.15s;
|
5910 |
-
transition-duration: 0.15s;
|
5911 |
-
-webkit-transition-timing-function: ease-out;
|
5912 |
-
transition-timing-function: ease-out;
|
5913 |
-
}
|
5914 |
-
|
5915 |
-
.premium-button-style5-radialin:before,
|
5916 |
-
.premium-button-style5-radialout:before {
|
5917 |
-
-webkit-transform-origin: 50%;
|
5918 |
-
-ms-transform-origin: 50%;
|
5919 |
-
transform-origin: 50%;
|
5920 |
-
-webkit-border-radius: 100%;
|
5921 |
-
border-radius: 100%;
|
5922 |
-
-webkit-transform: scale(0);
|
5923 |
-
-ms-transform: scale(0);
|
5924 |
-
transform: scale(0);
|
5925 |
-
}
|
5926 |
-
|
5927 |
-
.premium-button-style5-radialin:before {
|
5928 |
-
-webkit-transform: scale(2);
|
5929 |
-
-ms-transform: scale(2);
|
5930 |
-
transform: scale(2);
|
5931 |
-
}
|
5932 |
-
|
5933 |
-
.premium-button-style5-rectin:before {
|
5934 |
-
-webkit-transform-origin: 50%;
|
5935 |
-
-ms-transform-origin: 50%;
|
5936 |
-
transform-origin: 50%;
|
5937 |
-
-webkit-transform: scale(1);
|
5938 |
-
-ms-transform: scale(1);
|
5939 |
-
transform: scale(1);
|
5940 |
-
}
|
5941 |
-
|
5942 |
-
.premium-button-style5-rectout:before {
|
5943 |
-
-webkit-transform-origin: 50%;
|
5944 |
-
-ms-transform-origin: 50%;
|
5945 |
-
transform-origin: 50%;
|
5946 |
-
-webkit-transform: scale(0);
|
5947 |
-
-ms-transform: scale(0);
|
5948 |
-
transform: scale(0);
|
5949 |
-
}
|
5950 |
-
|
5951 |
-
.premium-button-style5-rectout:hover:before {
|
5952 |
-
-webkit-transform: scale(1);
|
5953 |
-
-ms-transform: scale(1);
|
5954 |
-
transform: scale(1);
|
5955 |
-
}
|
5956 |
-
|
5957 |
-
.premium-button-style5-rectin:hover:before {
|
5958 |
-
-webkit-transform: scale(0);
|
5959 |
-
-ms-transform: scale(0);
|
5960 |
-
transform: scale(0);
|
5961 |
-
}
|
5962 |
-
|
5963 |
-
.premium-button-style5-radialout:hover:before {
|
5964 |
-
-webkit-transform: scale(2);
|
5965 |
-
-ms-transform: scale(2);
|
5966 |
-
transform: scale(2);
|
5967 |
-
}
|
5968 |
-
|
5969 |
-
.premium-button-style5-radialin:hover:before {
|
5970 |
-
-webkit-transform: scale(0);
|
5971 |
-
-ms-transform: scale(0);
|
5972 |
-
transform: scale(0);
|
5973 |
-
}
|
5974 |
-
|
5975 |
-
.premium-button-style1-top:before {
|
5976 |
-
-webkit-transform-origin: 50% 100%;
|
5977 |
-
-ms-transform-origin: 50% 100%;
|
5978 |
-
transform-origin: 50% 100%;
|
5979 |
-
}
|
5980 |
-
|
5981 |
-
.premium-button-style1-right:before {
|
5982 |
-
-webkit-transform: scaleX(0);
|
5983 |
-
-ms-transform: scaleX(0);
|
5984 |
-
transform: scaleX(0);
|
5985 |
-
-webkit-transform-origin: 100% 50%;
|
5986 |
-
-ms-transform-origin: 100% 50%;
|
5987 |
-
transform-origin: 100% 50%;
|
5988 |
-
}
|
5989 |
-
|
5990 |
-
.premium-button-style1-left:before {
|
5991 |
-
-webkit-transform: scaleX(0);
|
5992 |
-
-ms-transform: scaleX(0);
|
5993 |
-
transform: scaleX(0);
|
5994 |
-
-webkit-transform-origin: 0% 50%;
|
5995 |
-
-ms-transform-origin: 0% 50%;
|
5996 |
-
transform-origin: 0% 50%;
|
5997 |
-
}
|
5998 |
-
|
5999 |
-
.premium-button-style2-shutouthor:before,
|
6000 |
-
.premium-button-style2-scshutoutver:before {
|
6001 |
-
-webkit-transform: scaleY(0);
|
6002 |
-
-ms-transform: scaleY(0);
|
6003 |
-
transform: scaleY(0);
|
6004 |
-
-webkit-transform-origin: 0% 50%;
|
6005 |
-
-ms-transform-origin: 0% 50%;
|
6006 |
-
transform-origin: 0% 50%;
|
6007 |
-
}
|
6008 |
-
|
6009 |
-
.premium-button-style2-shutoutver:before,
|
6010 |
-
.premium-button-style2-scshutouthor:before {
|
6011 |
-
-webkit-transform: scaleX(0);
|
6012 |
-
-ms-transform: scaleX(0);
|
6013 |
-
transform: scaleX(0);
|
6014 |
-
-webkit-transform-origin: 50% 50%;
|
6015 |
-
-ms-transform-origin: 50% 50%;
|
6016 |
-
transform-origin: 50% 50%;
|
6017 |
-
}
|
6018 |
-
|
6019 |
-
.premium-button-style2-shutinhor:before {
|
6020 |
-
-webkit-transform: scaleX(1);
|
6021 |
-
-ms-transform: scaleX(1);
|
6022 |
-
transform: scaleX(1);
|
6023 |
-
-webkit-transform-origin: 50%;
|
6024 |
-
-ms-transform-origin: 50%;
|
6025 |
-
transform-origin: 50%;
|
6026 |
-
}
|
6027 |
-
|
6028 |
-
.premium-button-style2-shutinver:before {
|
6029 |
-
-webkit-transform: scaleY(1);
|
6030 |
-
-ms-transform: scaleY(1);
|
6031 |
-
transform: scaleY(1);
|
6032 |
-
-webkit-transform-origin: 50%;
|
6033 |
-
-ms-transform-origin: 50%;
|
6034 |
-
transform-origin: 50%;
|
6035 |
-
}
|
6036 |
-
|
6037 |
-
.premium-button-style1-bottom:hover:before,
|
6038 |
-
.premium-button-style1-top:hover:before {
|
6039 |
-
-webkit-transform: scaleY(1);
|
6040 |
-
-ms-transform: scaleY(1);
|
6041 |
-
transform: scaleY(1);
|
6042 |
-
}
|
6043 |
-
|
6044 |
-
.premium-button-style1-left:hover:before,
|
6045 |
-
.premium-button-style1-right:hover:before,
|
6046 |
-
.premium-button-style2-shutouthor:hover:before,
|
6047 |
-
.premium-button-style2-shutoutver:hover:before {
|
6048 |
-
-webkit-transform: scaleX(1);
|
6049 |
-
-ms-transform: scaleX(1);
|
6050 |
-
transform: scaleX(1);
|
6051 |
-
}
|
6052 |
-
|
6053 |
-
.premium-button-style2-shutinhor:hover:before {
|
6054 |
-
-webkit-transform: scaleX(0);
|
6055 |
-
-ms-transform: scaleX(0);
|
6056 |
-
transform: scaleX(0);
|
6057 |
-
}
|
6058 |
-
|
6059 |
-
.premium-button-style2-shutinver:hover:before {
|
6060 |
-
-webkit-transform: scaleY(0);
|
6061 |
-
-ms-transform: scaleY(0);
|
6062 |
-
transform: scaleY(0);
|
6063 |
-
}
|
6064 |
-
|
6065 |
-
.premium-button-style2-scshutouthor:hover:before {
|
6066 |
-
-webkit-transform: scaleX(0.9);
|
6067 |
-
-ms-transform: scaleX(0.9);
|
6068 |
-
transform: scaleX(0.9);
|
6069 |
-
}
|
6070 |
-
|
6071 |
-
.premium-button-style2-scshutoutver:hover:before {
|
6072 |
-
-webkit-transform: scaleY(0.8);
|
6073 |
-
-ms-transform: scaleY(0.8);
|
6074 |
-
transform: scaleY(0.8);
|
6075 |
-
}
|
6076 |
-
|
6077 |
-
/*Diagonal*/
|
6078 |
-
.premium-button-style2-dshutinhor:before {
|
6079 |
-
top: 50%;
|
6080 |
-
right: 50%;
|
6081 |
-
width: 120%;
|
6082 |
-
height: 0%;
|
6083 |
-
-webkit-transform: translateX(50%) translateY(-50%) rotate(45deg);
|
6084 |
-
-ms-transform: translateX(50%) translateY(-50%) rotate(45deg);
|
6085 |
-
transform: translateX(50%) translateY(-50%) rotate(45deg);
|
6086 |
-
-webkit-transform-origin: 50%;
|
6087 |
-
-ms-transform-origin: 50%;
|
6088 |
-
transform-origin: 50%;
|
6089 |
-
-webkit-transition-property: all;
|
6090 |
-
transition-property: all;
|
6091 |
-
}
|
6092 |
-
|
6093 |
-
.premium-button-style2-dshutinver:before {
|
6094 |
-
top: 50%;
|
6095 |
-
right: 50%;
|
6096 |
-
width: 120%;
|
6097 |
-
height: 0%;
|
6098 |
-
-webkit-transform-origin: 50%;
|
6099 |
-
-ms-transform-origin: 50%;
|
6100 |
-
transform-origin: 50%;
|
6101 |
-
-webkit-transition-property: all;
|
6102 |
-
transition-property: all;
|
6103 |
-
-webkit-transform: translateX(50%) translateY(-50%) rotate(-45deg);
|
6104 |
-
-ms-transform: translateX(50%) translateY(-50%) rotate(-45deg);
|
6105 |
-
transform: translateX(50%) translateY(-50%) rotate(-45deg);
|
6106 |
-
}
|
6107 |
-
|
6108 |
-
.premium-button-style2-dshutinhor:hover:before,
|
6109 |
-
.premium-button-style2-dshutinver:hover:before {
|
6110 |
-
height: 220%;
|
6111 |
-
}
|
6112 |
-
|
6113 |
-
.premium-button-style3-before i,
|
6114 |
-
.premium-button-style3-before svg {
|
6115 |
-
opacity: 0;
|
6116 |
-
-webkit-transform: translateX(5px);
|
6117 |
-
-ms-transform: translateX(5px);
|
6118 |
-
transform: translateX(5px);
|
6119 |
-
-webkit-transition: all 0.5s ease-in-out;
|
6120 |
-
transition: all 0.5s ease-in-out;
|
6121 |
-
}
|
6122 |
-
|
6123 |
-
.premium-button-style3-after i,
|
6124 |
-
.premium-button-style3-after svg {
|
6125 |
-
opacity: 0;
|
6126 |
-
-webkit-transform: translateX(5px);
|
6127 |
-
-ms-transform: translateX(5px);
|
6128 |
-
transform: translateX(5px);
|
6129 |
-
-webkit-transition: all 0.5s ease-in-out;
|
6130 |
-
transition: all 0.5s ease-in-out;
|
6131 |
-
-webkit-transform: translateX(-5px);
|
6132 |
-
-ms-transform: translateX(-5px);
|
6133 |
-
transform: translateX(-5px);
|
6134 |
-
}
|
6135 |
-
|
6136 |
-
.premium-button-style3-after:hover i,
|
6137 |
-
.premium-button-style3-after:hover svg {
|
6138 |
-
opacity: 1;
|
6139 |
-
}
|
6140 |
-
|
6141 |
-
.premium-button-style3-before:hover i,
|
6142 |
-
.premium-button-style3-before:hover svg {
|
6143 |
-
opacity: 1;
|
6144 |
-
}
|
6145 |
-
|
6146 |
-
.premium-button-text-icon-wrapper {
|
6147 |
-
-js-display: flex;
|
6148 |
-
display: -webkit-box;
|
6149 |
-
display: -webkit-flex;
|
6150 |
-
display: -moz-box;
|
6151 |
-
display: -ms-flexbox;
|
6152 |
-
display: flex;
|
6153 |
-
-webkit-box-pack: center;
|
6154 |
-
-webkit-justify-content: center;
|
6155 |
-
-moz-box-pack: center;
|
6156 |
-
-ms-flex-pack: center;
|
6157 |
-
justify-content: center;
|
6158 |
-
-webkit-box-align: center;
|
6159 |
-
-webkit-align-items: center;
|
6160 |
-
-moz-box-align: center;
|
6161 |
-
-ms-flex-align: center;
|
6162 |
-
align-items: center;
|
6163 |
-
-webkit-transition: all 0.2s ease-in-out;
|
6164 |
-
transition: all 0.2s ease-in-out;
|
6165 |
-
}
|
6166 |
-
|
6167 |
-
.premium-button-text-icon-wrapper span,
|
6168 |
-
.premium-button-text-icon-wrapper i,
|
6169 |
-
.premium-button-text-icon-wrapper svg {
|
6170 |
-
-webkit-transition: all 0.2s ease-in-out;
|
6171 |
-
transition: all 0.2s ease-in-out;
|
6172 |
-
}
|
6173 |
-
|
6174 |
-
.premium-button-style4-icon-wrapper {
|
6175 |
-
position: absolute;
|
6176 |
-
z-index: 2;
|
6177 |
-
width: 100%;
|
6178 |
-
text-align: center;
|
6179 |
-
-js-display: flex;
|
6180 |
-
display: -webkit-box;
|
6181 |
-
display: -webkit-flex;
|
6182 |
-
display: -moz-box;
|
6183 |
-
display: -ms-flexbox;
|
6184 |
-
display: flex;
|
6185 |
-
-webkit-box-align: center;
|
6186 |
-
-webkit-align-items: center;
|
6187 |
-
-moz-box-align: center;
|
6188 |
-
-ms-flex-align: center;
|
6189 |
-
align-items: center;
|
6190 |
-
-webkit-box-pack: center;
|
6191 |
-
-webkit-justify-content: center;
|
6192 |
-
-moz-box-pack: center;
|
6193 |
-
-ms-flex-pack: center;
|
6194 |
-
justify-content: center;
|
6195 |
-
height: 100%;
|
6196 |
-
opacity: 0;
|
6197 |
-
-webkit-transition: all 0.3s ease-in-out;
|
6198 |
-
transition: all 0.3s ease-in-out;
|
6199 |
-
}
|
6200 |
-
|
6201 |
-
.premium-button-style4-icon-wrapper.top {
|
6202 |
-
bottom: -100%;
|
6203 |
-
right: 0;
|
6204 |
-
}
|
6205 |
-
|
6206 |
-
.premium-button-style4-icon-wrapper.bottom {
|
6207 |
-
top: -100%;
|
6208 |
-
right: 0;
|
6209 |
-
}
|
6210 |
-
|
6211 |
-
.premium-button-style4-icon-wrapper.left {
|
6212 |
-
top: 0;
|
6213 |
-
right: -100%;
|
6214 |
-
}
|
6215 |
-
|
6216 |
-
.premium-button-style4-icon-wrapper.right {
|
6217 |
-
top: 0;
|
6218 |
-
left: -100%;
|
6219 |
-
}
|
6220 |
-
|
6221 |
-
.premium-button-style4-bottom:hover .premium-button-style4-icon-wrapper {
|
6222 |
-
top: 0;
|
6223 |
-
opacity: 1;
|
6224 |
-
}
|
6225 |
-
|
6226 |
-
.premium-button-style4-top:hover .premium-button-style4-icon-wrapper {
|
6227 |
-
bottom: 0;
|
6228 |
-
opacity: 1;
|
6229 |
-
}
|
6230 |
-
|
6231 |
-
.premium-button-style4-left:hover .premium-button-style4-icon-wrapper {
|
6232 |
-
right: 0;
|
6233 |
-
opacity: 1;
|
6234 |
-
}
|
6235 |
-
|
6236 |
-
.premium-button-style4-right:hover .premium-button-style4-icon-wrapper {
|
6237 |
-
left: 0;
|
6238 |
-
opacity: 1;
|
6239 |
-
}
|
6240 |
-
|
6241 |
-
.premium-button-style4-bottom:hover .premium-button-text-icon-wrapper {
|
6242 |
-
-webkit-transform: translateY(100%);
|
6243 |
-
-ms-transform: translateY(100%);
|
6244 |
-
transform: translateY(100%);
|
6245 |
-
opacity: 0;
|
6246 |
-
}
|
6247 |
-
|
6248 |
-
.premium-button-style4-top:hover .premium-button-text-icon-wrapper {
|
6249 |
-
-webkit-transform: translateY(-100%);
|
6250 |
-
-ms-transform: translateY(-100%);
|
6251 |
-
transform: translateY(-100%);
|
6252 |
-
opacity: 0;
|
6253 |
-
}
|
6254 |
-
|
6255 |
-
.premium-button-style4-left:hover .premium-button-text-icon-wrapper {
|
6256 |
-
-webkit-transform: translateX(-100%);
|
6257 |
-
-ms-transform: translateX(-100%);
|
6258 |
-
transform: translateX(-100%);
|
6259 |
-
opacity: 0;
|
6260 |
-
}
|
6261 |
-
|
6262 |
-
.premium-button-style4-right:hover .premium-button-text-icon-wrapper {
|
6263 |
-
-webkit-transform: translateX(100%);
|
6264 |
-
-ms-transform: translateX(100%);
|
6265 |
-
transform: translateX(100%);
|
6266 |
-
opacity: 0;
|
6267 |
-
}
|
6268 |
-
|
6269 |
-
.premium-button-style6:before {
|
6270 |
-
content: "";
|
6271 |
-
position: absolute;
|
6272 |
-
right: 50%;
|
6273 |
-
top: 50%;
|
6274 |
-
width: 100px;
|
6275 |
-
height: 100px;
|
6276 |
-
-webkit-border-radius: 100%;
|
6277 |
-
border-radius: 100%;
|
6278 |
-
-webkit-transform: translate(50%, -50%) scale(0);
|
6279 |
-
-ms-transform: translate(50%, -50%) scale(0);
|
6280 |
-
transform: translate(50%, -50%) scale(0);
|
6281 |
-
-webkit-transition: all 0.3s ease-in-out;
|
6282 |
-
transition: all 0.3s ease-in-out;
|
6283 |
-
}
|
6284 |
-
|
6285 |
-
.premium-button-style6:hover:before {
|
6286 |
-
-webkit-transform: translate(50%, -50%) scale(3);
|
6287 |
-
-ms-transform: translate(50%, -50%) scale(3);
|
6288 |
-
transform: translate(50%, -50%) scale(3);
|
6289 |
-
}
|
6290 |
-
|
6291 |
-
.premium-button-style6 .premium-button-text-icon-wrapper {
|
6292 |
-
position: relative;
|
6293 |
-
z-index: 1;
|
6294 |
-
}
|
6295 |
-
|
6296 |
-
.premium-mouse-detect-yes .premium-button-style6 .premium-button-style6-bg {
|
6297 |
-
position: absolute;
|
6298 |
-
z-index: 0;
|
6299 |
-
top: 0;
|
6300 |
-
right: 0;
|
6301 |
-
width: 0px;
|
6302 |
-
height: 0px;
|
6303 |
-
-webkit-border-radius: 50%;
|
6304 |
-
border-radius: 50%;
|
6305 |
-
display: block;
|
6306 |
-
-webkit-transform: translate(50%, -50%);
|
6307 |
-
-ms-transform: translate(50%, -50%);
|
6308 |
-
transform: translate(50%, -50%);
|
6309 |
-
-webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
|
6310 |
-
transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
|
6311 |
-
}
|
6312 |
-
|
6313 |
-
.premium-mouse-detect-yes .premium-button-style6:hover .premium-button-style6-bg {
|
6314 |
-
width: 225%;
|
6315 |
-
height: 560px;
|
6316 |
-
}
|
6317 |
-
|
6318 |
-
.premium-mouse-detect-yes .premium-button-style6:before {
|
6319 |
-
width: 0;
|
6320 |
-
height: 0;
|
6321 |
-
}
|
6322 |
-
|
6323 |
-
.premium-button-style7-right .premium-button-text-icon-wrapper:before,
|
6324 |
-
.premium-button-style7-left .premium-button-text-icon-wrapper:before {
|
6325 |
-
-webkit-transition: width 0.3s ease-out 0.15s;
|
6326 |
-
transition: width 0.3s ease-out 0.15s;
|
6327 |
-
}
|
6328 |
-
|
6329 |
-
.premium-button-style7-right .premium-button-text-icon-wrapper:after,
|
6330 |
-
.premium-button-style7-left .premium-button-text-icon-wrapper:after {
|
6331 |
-
-webkit-transition: width 0.3s ease-out 0s;
|
6332 |
-
transition: width 0.3s ease-out 0s;
|
6333 |
-
}
|
6334 |
-
|
6335 |
-
.premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
|
6336 |
-
.premium-button-style7-top .premium-button-text-icon-wrapper:before {
|
6337 |
-
-webkit-transition: height 0.3s ease-out 0.15s;
|
6338 |
-
transition: height 0.3s ease-out 0.15s;
|
6339 |
-
}
|
6340 |
-
|
6341 |
-
.premium-button-style7-bottom .premium-button-text-icon-wrapper:after,
|
6342 |
-
.premium-button-style7-top .premium-button-text-icon-wrapper:after {
|
6343 |
-
-webkit-transition: height 0.3s ease-out 0s;
|
6344 |
-
transition: height 0.3s ease-out 0s;
|
6345 |
-
}
|
6346 |
-
|
6347 |
-
.premium-button[class*="style7"]:hover .premium-button-text-icon-wrapper:before {
|
6348 |
-
-webkit-transition-delay: 0s;
|
6349 |
-
transition-delay: 0s;
|
6350 |
-
}
|
6351 |
-
|
6352 |
-
.premium-button[class*="style7"]:hover .premium-button-text-icon-wrapper:after {
|
6353 |
-
-webkit-transition-delay: 0.15s;
|
6354 |
-
transition-delay: 0.15s;
|
6355 |
-
}
|
6356 |
-
|
6357 |
-
.premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
|
6358 |
-
.premium-button-style7-bottom .premium-button-text-icon-wrapper:after {
|
6359 |
-
content: "";
|
6360 |
-
position: absolute;
|
6361 |
-
left: 0;
|
6362 |
-
top: 0;
|
6363 |
-
right: 0;
|
6364 |
-
height: 0;
|
6365 |
-
z-index: -1;
|
6366 |
-
}
|
6367 |
-
|
6368 |
-
.premium-button-style7-top .premium-button-text-icon-wrapper:after,
|
6369 |
-
.premium-button-style7-top .premium-button-text-icon-wrapper:before {
|
6370 |
-
content: "";
|
6371 |
-
position: absolute;
|
6372 |
-
left: 0;
|
6373 |
-
bottom: 0;
|
6374 |
-
right: 0;
|
6375 |
-
height: 0;
|
6376 |
-
z-index: -1;
|
6377 |
-
}
|
6378 |
-
|
6379 |
-
.premium-button-style7-right .premium-button-text-icon-wrapper:after,
|
6380 |
-
.premium-button-style7-right .premium-button-text-icon-wrapper:before {
|
6381 |
-
content: "";
|
6382 |
-
position: absolute;
|
6383 |
-
right: 0;
|
6384 |
-
top: 0;
|
6385 |
-
bottom: 0;
|
6386 |
-
width: 0;
|
6387 |
-
z-index: -1;
|
6388 |
-
}
|
6389 |
-
|
6390 |
-
.premium-button-style7-left .premium-button-text-icon-wrapper:after,
|
6391 |
-
.premium-button-style7-left .premium-button-text-icon-wrapper:before {
|
6392 |
-
content: "";
|
6393 |
-
position: absolute;
|
6394 |
-
left: 0;
|
6395 |
-
top: 0;
|
6396 |
-
bottom: 0;
|
6397 |
-
width: 0;
|
6398 |
-
z-index: -1;
|
6399 |
-
}
|
6400 |
-
|
6401 |
-
.premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:after,
|
6402 |
-
.premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:before {
|
6403 |
-
height: 100%;
|
6404 |
-
top: 0;
|
6405 |
-
}
|
6406 |
-
|
6407 |
-
.premium-button-style7-top:hover .premium-button-text-icon-wrapper:after,
|
6408 |
-
.premium-button-style7-top:hover .premium-button-text-icon-wrapper:before {
|
6409 |
-
height: 100%;
|
6410 |
-
bottom: 0;
|
6411 |
-
}
|
6412 |
-
|
6413 |
-
.premium-button-style7-left:hover .premium-button-text-icon-wrapper:after,
|
6414 |
-
.premium-button-style7-left:hover .premium-button-text-icon-wrapper:before {
|
6415 |
-
width: 100%;
|
6416 |
-
left: 0;
|
6417 |
-
}
|
6418 |
-
|
6419 |
-
.premium-button-style7-right:hover .premium-button-text-icon-wrapper:after,
|
6420 |
-
.premium-button-style7-right:hover .premium-button-text-icon-wrapper:before {
|
6421 |
-
width: 100%;
|
6422 |
-
right: 0;
|
6423 |
-
}
|
6424 |
-
|
6425 |
-
/**************** Premium Contact Form7 **********/
|
6426 |
-
/*************************************************/
|
6427 |
-
.premium-contact-form-anim-yes .wpcf7-span::after {
|
6428 |
-
display: block;
|
6429 |
-
height: 2px;
|
6430 |
-
content: "";
|
6431 |
-
top: -2px;
|
6432 |
-
position: relative;
|
6433 |
-
width: 0px;
|
6434 |
-
-webkit-transition: all ease-in-out 0.3s;
|
6435 |
-
transition: all ease-in-out 0.3s;
|
6436 |
-
}
|
6437 |
-
|
6438 |
-
.premium-contact-form-anim-yes .wpcf7-span.is-focused::after {
|
6439 |
-
width: 100%;
|
6440 |
-
}
|
6441 |
-
|
6442 |
-
/**************** Premium Image Button ***********/
|
6443 |
-
/*************************************************/
|
6444 |
-
.premium-image-button {
|
6445 |
-
display: inline-block;
|
6446 |
-
position: relative;
|
6447 |
-
overflow: hidden;
|
6448 |
-
background: #6ec1e4;
|
6449 |
-
cursor: pointer;
|
6450 |
-
-webkit-transition: all 0.2s ease-in-out !important;
|
6451 |
-
transition: all 0.2s ease-in-out !important;
|
6452 |
-
}
|
6453 |
-
|
6454 |
-
/*Default background for slide styles*/
|
6455 |
-
.premium-image-button:hover,
|
6456 |
-
.premium-image-button-style4-icon-wrapper,
|
6457 |
-
.premium-image-button-style1-top:before,
|
6458 |
-
.premium-image-button-style1-bottom:before,
|
6459 |
-
.premium-image-button-style1-left:before,
|
6460 |
-
.premium-image-button-style1-right:before {
|
6461 |
-
background-color: #54595f;
|
6462 |
-
}
|
6463 |
-
|
6464 |
-
.premium-image-button.premium-image-button-sm {
|
6465 |
-
padding: 12px 24px;
|
6466 |
-
font-size: 14px;
|
6467 |
-
line-height: 1;
|
6468 |
-
}
|
6469 |
-
|
6470 |
-
.premium-image-button.premium-image-button-md {
|
6471 |
-
padding: 14px 26px;
|
6472 |
-
font-size: 16px;
|
6473 |
-
line-height: 1.2;
|
6474 |
-
}
|
6475 |
-
|
6476 |
-
.premium-image-button.premium-image-button-lg {
|
6477 |
-
padding: 16px 28px;
|
6478 |
-
font-size: 18px;
|
6479 |
-
line-height: 1.3333;
|
6480 |
-
}
|
6481 |
-
|
6482 |
-
.premium-image-button.premium-image-button-block {
|
6483 |
-
font-size: 15px;
|
6484 |
-
line-height: 1;
|
6485 |
-
padding: 12px 24px;
|
6486 |
-
width: 100%;
|
6487 |
-
text-align: center;
|
6488 |
-
}
|
6489 |
-
|
6490 |
-
.premium-image-button-text-icon-wrapper {
|
6491 |
-
display: -webkit-box;
|
6492 |
-
display: -webkit-flex;
|
6493 |
-
display: -ms-flexbox;
|
6494 |
-
-js-display: flex;
|
6495 |
-
display: -moz-box;
|
6496 |
-
display: flex;
|
6497 |
-
-webkit-box-pack: center;
|
6498 |
-
-webkit-justify-content: center;
|
6499 |
-
-moz-box-pack: center;
|
6500 |
-
-ms-flex-pack: center;
|
6501 |
-
justify-content: center;
|
6502 |
-
-webkit-box-align: center;
|
6503 |
-
-webkit-align-items: center;
|
6504 |
-
-moz-box-align: center;
|
6505 |
-
-ms-flex-align: center;
|
6506 |
-
align-items: center;
|
6507 |
-
position: relative;
|
6508 |
-
z-index: 3;
|
6509 |
-
}
|
6510 |
-
|
6511 |
-
.premium-image-button-text-icon-wrapper span,
|
6512 |
-
.premium-image-button-text-icon-wrapper,
|
6513 |
-
.premium-image-button-text-icon-wrapper i,
|
6514 |
-
.premium-image-button-text-icon-wrapper svg {
|
6515 |
-
-webkit-transition: all 0.2s ease-in-out;
|
6516 |
-
transition: all 0.2s ease-in-out;
|
6517 |
-
}
|
6518 |
-
|
6519 |
-
.premium-image-button-style1-bottom:before,
|
6520 |
-
.premium-image-button-style1-top:before,
|
6521 |
-
.premium-image-button-style1-left:before,
|
6522 |
-
.premium-image-button-style1-right:before {
|
6523 |
-
-webkit-transition: all 0.2s ease-in-out;
|
6524 |
-
transition: all 0.2s ease-in-out;
|
6525 |
-
}
|
6526 |
-
|
6527 |
-
.premium-image-button-style1-bottom:before {
|
6528 |
-
content: "";
|
6529 |
-
position: absolute;
|
6530 |
-
width: 100%;
|
6531 |
-
height: 0;
|
6532 |
-
top: 0;
|
6533 |
-
right: 0;
|
6534 |
-
}
|
6535 |
-
|
6536 |
-
.premium-image-button-style1-top:before {
|
6537 |
-
content: "";
|
6538 |
-
position: absolute;
|
6539 |
-
width: 100%;
|
6540 |
-
height: 0;
|
6541 |
-
bottom: 0;
|
6542 |
-
right: 0;
|
6543 |
-
}
|
6544 |
-
|
6545 |
-
.premium-image-button-style1-right:before {
|
6546 |
-
content: "";
|
6547 |
-
position: absolute;
|
6548 |
-
width: 0;
|
6549 |
-
height: 100%;
|
6550 |
-
bottom: 0;
|
6551 |
-
right: 0;
|
6552 |
-
}
|
6553 |
-
|
6554 |
-
.premium-image-button-style1-left:before {
|
6555 |
-
content: "";
|
6556 |
-
position: absolute;
|
6557 |
-
width: 0;
|
6558 |
-
height: 100%;
|
6559 |
-
top: 0;
|
6560 |
-
left: 0;
|
6561 |
-
}
|
6562 |
-
|
6563 |
-
.premium-image-button-style1-bottom:hover:before {
|
6564 |
-
height: 100%;
|
6565 |
-
}
|
6566 |
-
|
6567 |
-
.premium-image-button-style1-top:hover:before {
|
6568 |
-
height: 100%;
|
6569 |
-
}
|
6570 |
-
|
6571 |
-
.premium-image-button-style1-right:hover:before {
|
6572 |
-
width: 100%;
|
6573 |
-
}
|
6574 |
-
|
6575 |
-
.premium-image-button-style1-left:hover:before {
|
6576 |
-
width: 100%;
|
6577 |
-
}
|
6578 |
-
|
6579 |
-
.premium-image-button-diagonal-top,
|
6580 |
-
.premium-image-button-diagonal-bottom,
|
6581 |
-
.premium-image-button-diagonal-left,
|
6582 |
-
.premium-image-button-diagonal-right {
|
6583 |
-
z-index: 10;
|
6584 |
-
}
|
6585 |
-
|
6586 |
-
.premium-image-button-diagonal-top:before,
|
6587 |
-
.premium-image-button-diagonal-bottom:before,
|
6588 |
-
.premium-image-button-diagonal-left:before,
|
6589 |
-
.premium-image-button-diagonal-right:before {
|
6590 |
-
position: absolute;
|
6591 |
-
top: 0px;
|
6592 |
-
right: 0px;
|
6593 |
-
width: 100%;
|
6594 |
-
height: 100%;
|
6595 |
-
content: "";
|
6596 |
-
z-index: 1;
|
6597 |
-
background: rgba(255, 255, 255, 0.2);
|
6598 |
-
-webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
|
6599 |
-
-ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
|
6600 |
-
transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
|
6601 |
-
-webkit-transition: all 0.8s ease-out;
|
6602 |
-
transition: all 0.8s ease-out;
|
6603 |
-
}
|
6604 |
-
|
6605 |
-
.premium-image-button-diagonal-right:hover:before,
|
6606 |
-
.premium-image-button-diagonal-left:before {
|
6607 |
-
-webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
|
6608 |
-
-ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
|
6609 |
-
transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
|
6610 |
-
}
|
6611 |
-
|
6612 |
-
.premium-image-button-diagonal-left:hover:before,
|
6613 |
-
.premium-image-button-diagonal-right:before {
|
6614 |
-
-webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
|
6615 |
-
-ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
|
6616 |
-
transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
|
6617 |
-
}
|
6618 |
-
|
6619 |
-
.premium-image-button-diagonal-top:hover:before,
|
6620 |
-
.premium-image-button-diagonal-bottom:before {
|
6621 |
-
-webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
|
6622 |
-
-ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
|
6623 |
-
transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
|
6624 |
-
}
|
6625 |
-
|
6626 |
-
.premium-image-button-diagonal-bottom:hover:before,
|
6627 |
-
.premium-image-button-diagonal-top:before {
|
6628 |
-
-webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
|
6629 |
-
-ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
|
6630 |
-
transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
|
6631 |
-
}
|
6632 |
-
|
6633 |
-
.premium-image-button-style4-icon-wrapper {
|
6634 |
-
position: absolute;
|
6635 |
-
z-index: 2;
|
6636 |
-
width: 100%;
|
6637 |
-
text-align: center;
|
6638 |
-
display: -webkit-box;
|
6639 |
-
display: -webkit-flex;
|
6640 |
-
display: -ms-flexbox;
|
6641 |
-
-js-display: flex;
|
6642 |
-
display: -moz-box;
|
6643 |
-
display: flex;
|
6644 |
-
-webkit-box-align: center;
|
6645 |
-
-webkit-align-items: center;
|
6646 |
-
-moz-box-align: center;
|
6647 |
-
-ms-flex-align: center;
|
6648 |
-
align-items: center;
|
6649 |
-
-webkit-box-pack: center;
|
6650 |
-
-webkit-justify-content: center;
|
6651 |
-
-moz-box-pack: center;
|
6652 |
-
-ms-flex-pack: center;
|
6653 |
-
justify-content: center;
|
6654 |
-
height: 100%;
|
6655 |
-
opacity: 0;
|
6656 |
-
-webkit-transition: all 0.3s ease-in-out;
|
6657 |
-
transition: all 0.3s ease-in-out;
|
6658 |
-
}
|
6659 |
-
|
6660 |
-
.premium-image-button-style4-icon-wrapper.top {
|
6661 |
-
bottom: -100%;
|
6662 |
-
right: 0;
|
6663 |
-
}
|
6664 |
-
|
6665 |
-
.premium-image-button-style4-icon-wrapper.bottom {
|
6666 |
-
top: -100%;
|
6667 |
-
right: 0;
|
6668 |
-
}
|
6669 |
-
|
6670 |
-
.premium-image-button-style4-icon-wrapper.left {
|
6671 |
-
top: 0;
|
6672 |
-
right: -100%;
|
6673 |
-
}
|
6674 |
-
|
6675 |
-
.premium-image-button-style4-icon-wrapper.right {
|
6676 |
-
top: 0;
|
6677 |
-
left: -100%;
|
6678 |
-
}
|
6679 |
-
|
6680 |
-
.premium-image-button-style4-bottom:hover .premium-image-button-style4-icon-wrapper {
|
6681 |
-
top: 0;
|
6682 |
-
opacity: 1;
|
6683 |
-
}
|
6684 |
-
|
6685 |
-
.premium-image-button-style4-top:hover .premium-image-button-style4-icon-wrapper {
|
6686 |
-
bottom: 0;
|
6687 |
-
opacity: 1;
|
6688 |
-
}
|
6689 |
-
|
6690 |
-
.premium-image-button-style4-left:hover .premium-image-button-style4-icon-wrapper {
|
6691 |
-
right: 0;
|
6692 |
-
opacity: 1;
|
6693 |
-
}
|
6694 |
-
|
6695 |
-
.premium-image-button-style4-right:hover .premium-image-button-style4-icon-wrapper {
|
6696 |
-
left: 0;
|
6697 |
-
opacity: 1;
|
6698 |
-
}
|
6699 |
-
|
6700 |
-
.premium-image-button-style4-bottom:hover .premium-image-button-text-icon-wrapper {
|
6701 |
-
-webkit-transform: translateY(100%);
|
6702 |
-
-ms-transform: translateY(100%);
|
6703 |
-
transform: translateY(100%);
|
6704 |
-
opacity: 0;
|
6705 |
-
}
|
6706 |
-
|
6707 |
-
.premium-image-button-style4-top:hover .premium-image-button-text-icon-wrapper {
|
6708 |
-
-webkit-transform: translateY(-100%);
|
6709 |
-
-ms-transform: translateY(-100%);
|
6710 |
-
transform: translateY(-100%);
|
6711 |
-
opacity: 0;
|
6712 |
-
}
|
6713 |
-
|
6714 |
-
.premium-image-button-style4-left:hover .premium-image-button-text-icon-wrapper {
|
6715 |
-
-webkit-transform: translateX(-100%);
|
6716 |
-
-ms-transform: translateX(-100%);
|
6717 |
-
transform: translateX(-100%);
|
6718 |
-
opacity: 0;
|
6719 |
-
}
|
6720 |
-
|
6721 |
-
.premium-image-button-style4-right:hover .premium-image-button-text-icon-wrapper {
|
6722 |
-
-webkit-transform: translateX(100%);
|
6723 |
-
-ms-transform: translateX(100%);
|
6724 |
-
transform: translateX(100%);
|
6725 |
-
opacity: 0;
|
6726 |
-
}
|
6727 |
-
|
6728 |
-
.premium-image-button-overlap-effect-horizontal:before,
|
6729 |
-
.premium-image-button-overlap-effect-vertical:before {
|
6730 |
-
position: absolute;
|
6731 |
-
content: "";
|
6732 |
-
top: 0;
|
6733 |
-
right: 0;
|
6734 |
-
width: 100%;
|
6735 |
-
height: 100%;
|
6736 |
-
opacity: 0;
|
6737 |
-
-webkit-transition: all 1s ease-in-out;
|
6738 |
-
transition: all 1s ease-in-out;
|
6739 |
-
background: rgba(255, 255, 255, 0.2);
|
6740 |
-
-webkit-animation-name: premium-overlap-effect-done;
|
6741 |
-
animation-name: premium-overlap-effect-done;
|
6742 |
-
-webkit-animation-duration: 1s;
|
6743 |
-
animation-duration: 1s;
|
6744 |
-
}
|
6745 |
-
|
6746 |
-
.premium-image-button-overlap-effect-vertical:before {
|
6747 |
-
-webkit-animation-name: premium-overlap-ver-effect-done;
|
6748 |
-
animation-name: premium-overlap-ver-effect-done;
|
6749 |
-
-webkit-animation-duration: 1s;
|
6750 |
-
animation-duration: 1s;
|
6751 |
-
}
|
6752 |
-
|
6753 |
-
.premium-image-button-overlap-effect-horizontal:hover:before {
|
6754 |
-
-webkit-animation-name: premium-overlap-effect;
|
6755 |
-
animation-name: premium-overlap-effect;
|
6756 |
-
-webkit-animation-duration: 1s;
|
6757 |
-
animation-duration: 1s;
|
6758 |
-
}
|
6759 |
-
|
6760 |
-
.premium-image-button-overlap-effect-vertical:hover:before {
|
6761 |
-
-webkit-animation-name: premium-overlap-ver-effect;
|
6762 |
-
animation-name: premium-overlap-ver-effect;
|
6763 |
-
-webkit-animation-duration: 1s;
|
6764 |
-
animation-duration: 1s;
|
6765 |
-
}
|
6766 |
-
|
6767 |
-
@-webkit-keyframes premium-overlap-effect {
|
6768 |
-
0% {
|
6769 |
-
opacity: 0;
|
6770 |
-
-webkit-transform: rotateY(0deg);
|
6771 |
-
transform: rotateY(0deg);
|
6772 |
-
}
|
6773 |
-
|
6774 |
-
50% {
|
6775 |
-
opacity: 1;
|
6776 |
-
-webkit-transform: rotateY(180deg);
|
6777 |
-
transform: rotateY(180deg);
|
6778 |
-
}
|
6779 |
-
|
6780 |
-
100% {
|
6781 |
-
opacity: 0;
|
6782 |
-
-webkit-transform: rotateY(360deg);
|
6783 |
-
transform: rotateY(360deg);
|
6784 |
-
}
|
6785 |
-
}
|
6786 |
-
|
6787 |
-
@keyframes premium-overlap-effect {
|
6788 |
-
0% {
|
6789 |
-
opacity: 0;
|
6790 |
-
-webkit-transform: rotateY(0deg);
|
6791 |
-
transform: rotateY(0deg);
|
6792 |
-
}
|
6793 |
-
|
6794 |
-
50% {
|
6795 |
-
opacity: 1;
|
6796 |
-
-webkit-transform: rotateY(180deg);
|
6797 |
-
transform: rotateY(180deg);
|
6798 |
-
}
|
6799 |
-
|
6800 |
-
100% {
|
6801 |
-
opacity: 0;
|
6802 |
-
-webkit-transform: rotateY(360deg);
|
6803 |
-
transform: rotateY(360deg);
|
6804 |
-
}
|
6805 |
-
}
|
6806 |
-
|
6807 |
-
@-webkit-keyframes premium-overlap-effect-done {
|
6808 |
-
0% {
|
6809 |
-
opacity: 0;
|
6810 |
-
-webkit-transform: rotateY(0deg);
|
6811 |
-
transform: rotateY(0deg);
|
6812 |
-
}
|
6813 |
-
|
6814 |
-
50% {
|
6815 |
-
opacity: 1;
|
6816 |
-
-webkit-transform: rotateY(180deg);
|
6817 |
-
transform: rotateY(180deg);
|
6818 |
-
}
|
6819 |
-
|
6820 |
-
100% {
|
6821 |
-
opacity: 0;
|
6822 |
-
-webkit-transform: rotateY(360deg);
|
6823 |
-
transform: rotateY(360deg);
|
6824 |
-
}
|
6825 |
-
}
|
6826 |
-
|
6827 |
-
@keyframes premium-overlap-effect-done {
|
6828 |
-
0% {
|
6829 |
-
opacity: 0;
|
6830 |
-
-webkit-transform: rotateY(0deg);
|
6831 |
-
transform: rotateY(0deg);
|
6832 |
-
}
|
6833 |
-
|
6834 |
-
50% {
|
6835 |
-
opacity: 1;
|
6836 |
-
-webkit-transform: rotateY(180deg);
|
6837 |
-
transform: rotateY(180deg);
|
6838 |
-
}
|
6839 |
-
|
6840 |
-
100% {
|
6841 |
-
opacity: 0;
|
6842 |
-
-webkit-transform: rotateY(360deg);
|
6843 |
-
transform: rotateY(360deg);
|
6844 |
-
}
|
6845 |
-
}
|
6846 |
-
|
6847 |
-
@-webkit-keyframes premium-overlap-ver-effect {
|
6848 |
-
0% {
|
6849 |
-
opacity: 0;
|
6850 |
-
-webkit-transform: rotateX(0deg);
|
6851 |
-
transform: rotateX(0deg);
|
6852 |
-
}
|
6853 |
-
|
6854 |
-
50% {
|
6855 |
-
opacity: 1;
|
6856 |
-
-webkit-transform: rotateX(180deg);
|
6857 |
-
transform: rotateX(180deg);
|
6858 |
-
}
|
6859 |
-
|
6860 |
-
100% {
|
6861 |
-
opacity: 0;
|
6862 |
-
-webkit-transform: rotateX(360deg);
|
6863 |
-
transform: rotateX(360deg);
|
6864 |
-
}
|
6865 |
-
}
|
6866 |
-
|
6867 |
-
@keyframes premium-overlap-ver-effect {
|
6868 |
-
0% {
|
6869 |
-
opacity: 0;
|
6870 |
-
-webkit-transform: rotateX(0deg);
|
6871 |
-
transform: rotateX(0deg);
|
6872 |
-
}
|
6873 |
-
|
6874 |
-
50% {
|
6875 |
-
opacity: 1;
|
6876 |
-
-webkit-transform: rotateX(180deg);
|
6877 |
-
transform: rotateX(180deg);
|
6878 |
-
}
|
6879 |
-
|
6880 |
-
100% {
|
6881 |
-
opacity: 0;
|
6882 |
-
-webkit-transform: rotateX(360deg);
|
6883 |
-
transform: rotateX(360deg);
|
6884 |
-
}
|
6885 |
-
}
|
6886 |
-
|
6887 |
-
@-webkit-keyframes premium-overlap-ver-effect-done {
|
6888 |
-
0% {
|
6889 |
-
opacity: 0;
|
6890 |
-
-webkit-transform: rotateX(0deg);
|
6891 |
-
transform: rotateX(0deg);
|
6892 |
-
}
|
6893 |
-
|
6894 |
-
50% {
|
6895 |
-
opacity: 1;
|
6896 |
-
-webkit-transform: rotateX(180deg);
|
6897 |
-
transform: rotateX(180deg);
|
6898 |
-
}
|
6899 |
-
|
6900 |
-
100% {
|
6901 |
-
opacity: 0;
|
6902 |
-
-webkit-transform: rotateX(360deg);
|
6903 |
-
transform: rotateX(360deg);
|
6904 |
-
}
|
6905 |
-
}
|
6906 |
-
|
6907 |
-
@keyframes premium-overlap-ver-effect-done {
|
6908 |
-
0% {
|
6909 |
-
opacity: 0;
|
6910 |
-
-webkit-transform: rotateX(0deg);
|
6911 |
-
transform: rotateX(0deg);
|
6912 |
-
}
|
6913 |
-
|
6914 |
-
50% {
|
6915 |
-
opacity: 1;
|
6916 |
-
-webkit-transform: rotateX(180deg);
|
6917 |
-
transform: rotateX(180deg);
|
6918 |
-
}
|
6919 |
-
|
6920 |
-
100% {
|
6921 |
-
opacity: 0;
|
6922 |
-
-webkit-transform: rotateX(360deg);
|
6923 |
-
transform: rotateX(360deg);
|
6924 |
-
}
|
6925 |
-
}
|
6926 |
-
|
6927 |
-
/**************** Premium Grid *******************/
|
6928 |
-
/*************************************************/
|
6929 |
-
.premium-img-gallery-filter,
|
6930 |
-
.premium-blog-filter {
|
6931 |
-
display: -webkit-box;
|
6932 |
-
display: -webkit-flex;
|
6933 |
-
display: -ms-flexbox;
|
6934 |
-
-js-display: flex;
|
6935 |
-
display: -moz-box;
|
6936 |
-
display: flex;
|
6937 |
-
-webkit-box-align: center;
|
6938 |
-
-webkit-align-items: center;
|
6939 |
-
-moz-box-align: center;
|
6940 |
-
-ms-flex-align: center;
|
6941 |
-
align-items: center;
|
6942 |
-
-webkit-box-pack: center;
|
6943 |
-
-webkit-justify-content: center;
|
6944 |
-
-moz-box-pack: center;
|
6945 |
-
-ms-flex-pack: center;
|
6946 |
-
justify-content: center;
|
6947 |
-
}
|
6948 |
-
|
6949 |
-
.premium-img-gallery {
|
6950 |
-
clear: both;
|
6951 |
-
overflow: hidden;
|
6952 |
-
}
|
6953 |
-
|
6954 |
-
.premium-gallery-container .premium-gallery-item {
|
6955 |
-
padding: 10px;
|
6956 |
-
float: right;
|
6957 |
-
/* Google Chrome isotope issue */
|
6958 |
-
}
|
6959 |
-
|
6960 |
-
.premium-gallery-container .grid-sizer {
|
6961 |
-
width: 33.33%;
|
6962 |
-
}
|
6963 |
-
|
6964 |
-
.premium-img-gallery-filter .premium-gallery-cats-container li a.category,
|
6965 |
-
.premium-blog-filter .premium-blog-filters-container li a.category {
|
6966 |
-
outline: none;
|
6967 |
-
text-decoration: none;
|
6968 |
-
-webkit-border-radius: 75px;
|
6969 |
-
border-radius: 75px;
|
6970 |
-
margin: 15px 5px 20px;
|
6971 |
-
padding: 7px 20px;
|
6972 |
-
-webkit-transition: all 0.3s ease-in-out;
|
6973 |
-
transition: all 0.3s ease-in-out;
|
6974 |
-
}
|
6975 |
-
|
6976 |
-
.premium-img-gallery-filter .premium-gallery-cats-container li a.category span {
|
6977 |
-
-webkit-transition: all 0.3s ease-in-out;
|
6978 |
-
transition: all 0.3s ease-in-out;
|
6979 |
-
}
|
6980 |
-
|
6981 |
-
.pa-gallery-img {
|
6982 |
-
position: relative;
|
6983 |
-
}
|
6984 |
-
|
6985 |
-
.pa-gallery-img .pa-gallery-whole-link {
|
6986 |
-
position: absolute;
|
6987 |
-
top: 0;
|
6988 |
-
right: 0;
|
6989 |
-
width: 100%;
|
6990 |
-
height: 100%;
|
6991 |
-
}
|
6992 |
-
|
6993 |
-
.pa-gallery-img.style2 .pa-gallery-whole-link {
|
6994 |
-
z-index: 99;
|
6995 |
-
}
|
6996 |
-
|
6997 |
-
.pa-gallery-img-container {
|
6998 |
-
overflow: hidden;
|
6999 |
-
-webkit-backface-visibility: hidden;
|
7000 |
-
-moz-backface-visibility: hidden;
|
7001 |
-
-webkit-transform: translate3d(0, 0, 0);
|
7002 |
-
transform: translate3d(0, 0, 0);
|
7003 |
-
}
|
7004 |
-
|
7005 |
-
.pa-gallery-img-container img {
|
7006 |
-
display: block;
|
7007 |
-
width: 100%;
|
7008 |
-
-webkit-transition: all 0.3s ease-in-out;
|
7009 |
-
transition: all 0.3s ease-in-out;
|
7010 |
-
}
|
7011 |
-
|
7012 |
-
.premium-img-gallery.gray img {
|
7013 |
-
-webkit-filter: grayscale(100%);
|
7014 |
-
filter: grayscale(100%);
|
7015 |
-
}
|
7016 |
-
|
7017 |
-
.premium-img-gallery.zoomout img,
|
7018 |
-
.premium-img-gallery.scale img {
|
7019 |
-
-webkit-transform: scale(1.2);
|
7020 |
-
-ms-transform: scale(1.2);
|
7021 |
-
transform: scale(1.2);
|
7022 |
-
}
|
7023 |
-
|
7024 |
-
.premium-img-gallery.sepia img {
|
7025 |
-
-webkit-filter: sepia(30%);
|
7026 |
-
filter: sepia(30%);
|
7027 |
-
}
|
7028 |
-
|
7029 |
-
.premium-img-gallery.bright img {
|
7030 |
-
-webkit-filter: brightness(1);
|
7031 |
-
filter: brightness(1);
|
7032 |
-
}
|
7033 |
-
|
7034 |
-
.premium-img-gallery.trans img {
|
7035 |
-
-webkit-transform: translateX(15px) scale(1.1);
|
7036 |
-
-ms-transform: translateX(15px) scale(1.1);
|
7037 |
-
transform: translateX(15px) scale(1.1);
|
7038 |
-
}
|
7039 |
-
|
7040 |
-
.pa-gallery-img .pa-gallery-magnific-image,
|
7041 |
-
.pa-gallery-img .pa-gallery-img-link {
|
7042 |
-
outline: none;
|
7043 |
-
}
|
7044 |
-
|
7045 |
-
.pa-gallery-img .pa-gallery-magnific-image span,
|
7046 |
-
.pa-gallery-img .pa-gallery-img-link span {
|
7047 |
-
line-height: 1;
|
7048 |
-
display: inline-block;
|
7049 |
-
opacity: 0;
|
7050 |
-
margin: 0 5px;
|
7051 |
-
padding: 15px;
|
7052 |
-
-webkit-border-radius: 50%;
|
7053 |
-
border-radius: 50%;
|
7054 |
-
}
|
7055 |
-
|
7056 |
-
.pa-gallery-img.style2 .pa-gallery-magnific-image span,
|
7057 |
-
.pa-gallery-img.style2 .pa-gallery-img-link span {
|
7058 |
-
margin: 0 5px 20px;
|
7059 |
-
}
|
7060 |
-
|
7061 |
-
.pa-gallery-img:hover .pa-gallery-magnific-image span {
|
7062 |
-
-webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
|
7063 |
-
transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
|
7064 |
-
}
|
7065 |
-
|
7066 |
-
.pa-gallery-img:hover .pa-gallery-img-link span {
|
7067 |
-
-webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
|
7068 |
-
transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
|
7069 |
-
}
|
7070 |
-
|
7071 |
-
.pa-gallery-img:hover .pa-gallery-magnific-image span,
|
7072 |
-
.pa-gallery-img:hover .pa-gallery-img-link span,
|
7073 |
-
.premium-gallery-icon-show a.pa-gallery-video-icon span {
|
7074 |
-
opacity: 1;
|
7075 |
-
}
|
7076 |
-
|
7077 |
-
.premium-img-gallery-filter ul.premium-gallery-cats-container,
|
7078 |
-
.premium-blog-filter ul.premium-blog-filters-container {
|
7079 |
-
text-align: center;
|
7080 |
-
margin: 0;
|
7081 |
-
padding: 0;
|
7082 |
-
}
|
7083 |
-
|
7084 |
-
.premium-img-gallery-filter .premium-gallery-cats-container li,
|
7085 |
-
.premium-blog-filter .premium-blog-filters-container li {
|
7086 |
-
list-style: none;
|
7087 |
-
display: -webkit-inline-box;
|
7088 |
-
display: -webkit-inline-flex;
|
7089 |
-
display: -ms-inline-flexbox;
|
7090 |
-
-js-display: inline-flex;
|
7091 |
-
display: -moz-inline-box;
|
7092 |
-
display: inline-flex;
|
7093 |
-
}
|
7094 |
-
|
7095 |
-
.premium-img-gallery.zoomin .pa-gallery-img:hover img {
|
7096 |
-
-webkit-transform: scale(1.1);
|
7097 |
-
-ms-transform: scale(1.1);
|
7098 |
-
transform: scale(1.1);
|
7099 |
-
}
|
7100 |
-
|
7101 |
-
.premium-img-gallery.zoomout .pa-gallery-img:hover img {
|
7102 |
-
-webkit-transform: scale(1);
|
7103 |
-
-ms-transform: scale(1);
|
7104 |
-
transform: scale(1);
|
7105 |
-
}
|
7106 |
-
|
7107 |
-
.premium-img-gallery.scale .pa-gallery-img:hover img {
|
7108 |
-
-webkit-transform: scale(1.3) rotate(-5deg);
|
7109 |
-
-ms-transform: scale(1.3) rotate(-5deg);
|
7110 |
-
transform: scale(1.3) rotate(-5deg);
|
7111 |
-
}
|
7112 |
-
|
7113 |
-
.premium-img-gallery.gray .pa-gallery-img:hover img {
|
7114 |
-
-webkit-filter: grayscale(0%);
|
7115 |
-
filter: grayscale(0%);
|
7116 |
-
}
|
7117 |
-
|
7118 |
-
.premium-img-gallery.blur .pa-gallery-img:hover img {
|
7119 |
-
-webkit-filter: blur(3px);
|
7120 |
-
filter: blur(3px);
|
7121 |
-
}
|
7122 |
-
|
7123 |
-
.premium-img-gallery.sepia .pa-gallery-img:hover img {
|
7124 |
-
-webkit-filter: sepia(0%);
|
7125 |
-
filter: sepia(0%);
|
7126 |
-
}
|
7127 |
-
|
7128 |
-
.premium-img-gallery.trans .pa-gallery-img:hover img {
|
7129 |
-
-webkit-transform: translateX(0px) scale(1.1);
|
7130 |
-
-ms-transform: translateX(0px) scale(1.1);
|
7131 |
-
transform: translateX(0px) scale(1.1);
|
7132 |
-
}
|
7133 |
-
|
7134 |
-
.premium-img-gallery.bright .pa-gallery-img:hover img {
|
7135 |
-
-webkit-filter: brightness(1.2);
|
7136 |
-
filter: brightness(1.2);
|
7137 |
-
}
|
7138 |
-
|
7139 |
-
.pa-gallery-img .premium-gallery-caption {
|
7140 |
-
padding: 10px;
|
7141 |
-
}
|
7142 |
-
|
7143 |
-
.pa-gallery-img .premium-gallery-caption .premium-gallery-img-name {
|
7144 |
-
margin-bottom: 0;
|
7145 |
-
}
|
7146 |
-
|
7147 |
-
.pa-gallery-img.style1 {
|
7148 |
-
overflow: hidden;
|
7149 |
-
}
|
7150 |
-
|
7151 |
-
.pa-gallery-img:not(.style2) .pa-gallery-icons-wrapper {
|
7152 |
-
position: absolute;
|
7153 |
-
top: 0;
|
7154 |
-
right: 0;
|
7155 |
-
width: 100%;
|
7156 |
-
height: 100%;
|
7157 |
-
-webkit-transition: all 0.3s ease-in-out;
|
7158 |
-
transition: all 0.3s ease-in-out;
|
7159 |
-
}
|
7160 |
-
|
7161 |
-
.pa-gallery-img:not(.style2) .pa-gallery-icons-inner-container {
|
7162 |
-
position: absolute;
|
7163 |
-
top: 33.33%;
|
7164 |
-
width: 100%;
|
7165 |
-
text-align: center;
|
7166 |
-
-webkit-transform: translateY(-50%);
|
7167 |
-
-ms-transform: translateY(-50%);
|
7168 |
-
transform: translateY(-50%);
|
7169 |
-
z-index: 999;
|
7170 |
-
}
|
7171 |
-
|
7172 |
-
.pa-gallery-img.style1 .premium-gallery-caption {
|
7173 |
-
position: absolute;
|
7174 |
-
top: auto;
|
7175 |
-
left: 0;
|
7176 |
-
right: 0;
|
7177 |
-
width: 100%;
|
7178 |
-
-webkit-transition: all 500ms ease 0s;
|
7179 |
-
transition: all 500ms ease 0s;
|
7180 |
-
-webkit-transform: translate3d(0, 100%, 0);
|
7181 |
-
-ms-transform: translate3d(0, 100%, 0);
|
7182 |
-
transform: translate3d(0, 100%, 0);
|
7183 |
-
}
|
7184 |
-
|
7185 |
-
.pa-gallery-img.default .premium-gallery-caption {
|
7186 |
-
position: absolute;
|
7187 |
-
top: auto;
|
7188 |
-
left: 0;
|
7189 |
-
right: 0;
|
7190 |
-
width: 100%;
|
7191 |
-
bottom: 0;
|
7192 |
-
}
|
7193 |
-
|
7194 |
-
.pa-gallery-img.style1:hover .premium-gallery-caption {
|
7195 |
-
-webkit-transform: translate3d(0, 0, 0);
|
7196 |
-
-ms-transform: translate3d(0, 0, 0);
|
7197 |
-
transform: translate3d(0, 0, 0);
|
7198 |
-
bottom: -1px !important;
|
7199 |
-
}
|
7200 |
-
|
7201 |
-
.pa-gallery-img.style2 .pa-gallery-icons-caption-container {
|
7202 |
-
position: absolute;
|
7203 |
-
top: 0;
|
7204 |
-
right: 0;
|
7205 |
-
width: 100%;
|
7206 |
-
height: 100%;
|
7207 |
-
opacity: 0;
|
7208 |
-
-webkit-backface-visibility: hidden;
|
7209 |
-
backface-visibility: hidden;
|
7210 |
-
-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
|
7211 |
-
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
|
7212 |
-
transition: opacity 0.3s, -webkit-transform 0.3s;
|
7213 |
-
transition: transform 0.3s, opacity 0.3s;
|
7214 |
-
transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
|
7215 |
-
z-index: 1;
|
7216 |
-
background-color: rgba(108, 191, 226, 0.68);
|
7217 |
-
display: -webkit-box;
|
7218 |
-
display: -webkit-flex;
|
7219 |
-
display: -ms-flexbox;
|
7220 |
-
-js-display: flex;
|
7221 |
-
display: -moz-box;
|
7222 |
-
display: flex;
|
7223 |
-
text-align: center;
|
7224 |
-
-webkit-box-align: center;
|
7225 |
-
-webkit-align-items: center;
|
7226 |
-
-moz-box-align: center;
|
7227 |
-
-ms-flex-align: center;
|
7228 |
-
align-items: center;
|
7229 |
-
}
|
7230 |
-
|
7231 |
-
.pa-gallery-img.style2 .pa-gallery-icons-caption-cell {
|
7232 |
-
width: 100%;
|
7233 |
-
}
|
7234 |
-
|
7235 |
-
.pa-gallery-img.style2:hover .pa-gallery-icons-caption-container {
|
7236 |
-
opacity: 1;
|
7237 |
-
-webkit-transform: translate(-15px, 15px);
|
7238 |
-
-ms-transform: translate(-15px, 15px);
|
7239 |
-
transform: translate(-15px, 15px);
|
7240 |
-
}
|
7241 |
-
|
7242 |
-
.premium-clearfix {
|
7243 |
-
clear: both;
|
7244 |
-
}
|
7245 |
-
|
7246 |
-
.premium-gallery-container .pa-gallery-item {
|
7247 |
-
padding: 10px;
|
7248 |
-
}
|
7249 |
-
|
7250 |
-
/**
|
7251 |
-
* Metro Layout
|
7252 |
-
*/
|
7253 |
-
.premium-img-gallery-metro .premium-gallery-item {
|
7254 |
-
overflow: hidden;
|
7255 |
-
}
|
7256 |
-
|
7257 |
-
.premium-img-gallery-metro .pa-gallery-img {
|
7258 |
-
height: 100%;
|
7259 |
-
}
|
7260 |
-
|
7261 |
-
.premium-img-gallery-metro .pa-gallery-img-container {
|
7262 |
-
height: 100%;
|
7263 |
-
}
|
7264 |
-
|
7265 |
-
.premium-img-gallery-metro .pa-gallery-img-container img {
|
7266 |
-
min-height: 100%;
|
7267 |
-
width: 100%;
|
7268 |
-
-o-object-fit: fill;
|
7269 |
-
object-fit: fill;
|
7270 |
-
}
|
7271 |
-
|
7272 |
-
.premium-img-gallery .premium-gallery-item-hidden {
|
7273 |
-
visibility: hidden;
|
7274 |
-
width: 0 !important;
|
7275 |
-
height: 0 !important;
|
7276 |
-
margin: 0 !important;
|
7277 |
-
padding: 0 !important;
|
7278 |
-
}
|
7279 |
-
|
7280 |
-
.premium-gallery-load-more .premium-gallery-load-more-btn {
|
7281 |
-
-webkit-box-shadow: none;
|
7282 |
-
box-shadow: none;
|
7283 |
-
text-shadow: none;
|
7284 |
-
border: none;
|
7285 |
-
outline: none;
|
7286 |
-
-webkit-box-align: center;
|
7287 |
-
-ms-flex-align: center;
|
7288 |
-
-webkit-align-items: center;
|
7289 |
-
-moz-box-align: center;
|
7290 |
-
align-items: center;
|
7291 |
-
vertical-align: bottom;
|
7292 |
-
cursor: pointer;
|
7293 |
-
line-height: 1;
|
7294 |
-
font-style: normal;
|
7295 |
-
font-weight: normal;
|
7296 |
-
background-image: none;
|
7297 |
-
color: #fff;
|
7298 |
-
-webkit-transition: all 0.3s ease-in-out;
|
7299 |
-
transition: all 0.3s ease-in-out;
|
7300 |
-
}
|
7301 |
-
|
7302 |
-
.premium-gallery-load-more-btn {
|
7303 |
-
display: -webkit-inline-box;
|
7304 |
-
display: -webkit-inline-flex;
|
7305 |
-
display: -ms-inline-flexbox;
|
7306 |
-
-js-display: inline-flex;
|
7307 |
-
display: -moz-inline-box;
|
7308 |
-
display: inline-flex;
|
7309 |
-
-webkit-box-align: center;
|
7310 |
-
-webkit-align-items: center;
|
7311 |
-
-moz-box-align: center;
|
7312 |
-
-ms-flex-align: center;
|
7313 |
-
align-items: center;
|
7314 |
-
}
|
7315 |
-
|
7316 |
-
.premium-loader {
|
7317 |
-
border: 3px solid #f3f3f3;
|
7318 |
-
border-top-width: 3px;
|
7319 |
-
border-top-style: solid;
|
7320 |
-
border-top-color: rgb(243, 243, 243);
|
7321 |
-
-webkit-border-radius: 50%;
|
7322 |
-
border-radius: 50%;
|
7323 |
-
border-top: 3px solid;
|
7324 |
-
border-top-color: #bbb;
|
7325 |
-
width: 30px;
|
7326 |
-
height: 30px;
|
7327 |
-
-webkit-animation: spin 2s linear infinite;
|
7328 |
-
animation: spin 2s linear infinite;
|
7329 |
-
margin: 0 auto;
|
7330 |
-
}
|
7331 |
-
|
7332 |
-
.premium-gallery-load-more-btn div {
|
7333 |
-
margin-right: 3px;
|
7334 |
-
}
|
7335 |
-
|
7336 |
-
.premium-gallery-load-more-btn .premium-loader {
|
7337 |
-
display: inline-block;
|
7338 |
-
width: 20px;
|
7339 |
-
height: 20px;
|
7340 |
-
}
|
7341 |
-
|
7342 |
-
/** * Video */
|
7343 |
-
.pa-gallery-img .pa-gallery-lightbox-wrap {
|
7344 |
-
display: inline-block;
|
7345 |
-
}
|
7346 |
-
|
7347 |
-
.premium-img-gallery-no-lightbox .premium-gallery-video-item .pa-gallery-img,
|
7348 |
-
.pa-gallery-img .pa-gallery-video-icon {
|
7349 |
-
cursor: pointer;
|
7350 |
-
}
|
7351 |
-
|
7352 |
-
.pa-gallery-img-container iframe,
|
7353 |
-
.pa-gallery-img-container video {
|
7354 |
-
position: absolute;
|
7355 |
-
visibility: hidden;
|
7356 |
-
top: 0;
|
7357 |
-
right: 0;
|
7358 |
-
max-width: 100%;
|
7359 |
-
width: 100%;
|
7360 |
-
height: 100%;
|
7361 |
-
margin: 0;
|
7362 |
-
line-height: 1;
|
7363 |
-
border: none;
|
7364 |
-
}
|
7365 |
-
|
7366 |
-
.pa-gallery-img-container video {
|
7367 |
-
-o-object-fit: contain;
|
7368 |
-
object-fit: contain;
|
7369 |
-
}
|
7370 |
-
|
7371 |
-
.pa-gallery-icons-inner-container svg,
|
7372 |
-
.pa-gallery-icons-caption-cell svg {
|
7373 |
-
width: 14px;
|
7374 |
-
height: 14px;
|
7375 |
-
}
|
7376 |
-
|
7377 |
-
.premium-gallery-gradient-layer {
|
7378 |
-
position: absolute;
|
7379 |
-
bottom: 40px;
|
7380 |
-
width: 100%;
|
7381 |
-
height: 20px;
|
7382 |
-
background: -webkit-gradient(linear, left bottom, left top, from(#17181f), to(rgba(255, 255, 255, 0)));
|
7383 |
-
background: -webkit-linear-gradient(bottom, #17181f 0%, rgba(255, 255, 255, 0) 100%);
|
7384 |
-
background: linear-gradient(to top, #17181f 0%, rgba(255, 255, 255, 0) 100%);
|
7385 |
-
}
|
7386 |
-
|
7387 |
-
@-webkit-keyframes spin {
|
7388 |
-
0% {
|
7389 |
-
-webkit-transform: rotate(0deg);
|
7390 |
-
}
|
7391 |
-
|
7392 |
-
100% {
|
7393 |
-
-webkit-transform: rotate(-360deg);
|
7394 |
-
}
|
7395 |
-
}
|
7396 |
-
|
7397 |
-
@keyframes spin {
|
7398 |
-
0% {
|
7399 |
-
-webkit-transform: rotate(0deg);
|
7400 |
-
transform: rotate(0deg);
|
7401 |
-
}
|
7402 |
-
|
7403 |
-
100% {
|
7404 |
-
-webkit-transform: rotate(-360deg);
|
7405 |
-
transform: rotate(-360deg);
|
7406 |
-
}
|
7407 |
-
}
|
7408 |
-
|
7409 |
-
/************ Premium Vertical Scroll ************/
|
7410 |
-
/*************************************************/
|
7411 |
-
.premium-vscroll-inner {
|
7412 |
-
position: relative;
|
7413 |
-
/* overflow: hidden;
|
7414 |
-
*/
|
7415 |
-
min-height: 100%;
|
7416 |
-
}
|
7417 |
-
|
7418 |
-
.premium-vscroll-inner .premium-vscroll-dots {
|
7419 |
-
position: fixed;
|
7420 |
-
z-index: 100;
|
7421 |
-
opacity: 1;
|
7422 |
-
margin-top: -32px;
|
7423 |
-
-webkit-transition: all 0.3s ease-in-out;
|
7424 |
-
transition: all 0.3s ease-in-out;
|
7425 |
-
}
|
7426 |
-
|
7427 |
-
.premium-vscroll-wrap .premium-vscroll-nav-menu {
|
7428 |
-
opacity: 1;
|
7429 |
-
-webkit-transition: all 0.3s ease-in-out;
|
7430 |
-
transition: all 0.3s ease-in-out;
|
7431 |
-
}
|
7432 |
-
|
7433 |
-
.premium-vscroll-inner .premium-vscroll-dots,
|
7434 |
-
.premium-vscroll-wrap .premium-vscroll-dots-hide {
|
7435 |
-
opacity: 0;
|
7436 |
-
visibility: hidden;
|
7437 |
-
}
|
7438 |
-
|
7439 |
-
.premium-vscroll-nav-dots-yes .premium-vscroll-inner .premium-vscroll-dots {
|
7440 |
-
opacity: 1;
|
7441 |
-
visibility: visible;
|
7442 |
-
}
|
7443 |
-
|
7444 |
-
.premium-vscroll-dots.middle {
|
7445 |
-
top: 50%;
|
7446 |
-
}
|
7447 |
-
|
7448 |
-
.premium-vscroll-dots.top {
|
7449 |
-
top: 40px;
|
7450 |
-
}
|
7451 |
-
|
7452 |
-
.premium-vscroll-dots.bottom {
|
7453 |
-
bottom: 30px;
|
7454 |
-
}
|
7455 |
-
|
7456 |
-
.premium-vscroll-dots.right {
|
7457 |
-
left: 17px;
|
7458 |
-
}
|
7459 |
-
|
7460 |
-
.premium-vscroll-dots.left {
|
7461 |
-
right: 17px;
|
7462 |
-
}
|
7463 |
-
|
7464 |
-
.premium-vscroll-inner ul.premium-vscroll-dots-list,
|
7465 |
-
.premium-vscroll-wrap .premium-vscroll-nav-menu {
|
7466 |
-
margin: 0 !important;
|
7467 |
-
padding: 0;
|
7468 |
-
}
|
7469 |
-
|
7470 |
-
.premium-vscroll-inner ul.premium-vscroll-dots-list li {
|
7471 |
-
width: 14px;
|
7472 |
-
height: 13px;
|
7473 |
-
margin: 7px;
|
7474 |
-
position: relative;
|
7475 |
-
display: -webkit-box;
|
7476 |
-
display: -webkit-flex;
|
7477 |
-
display: -ms-flexbox;
|
7478 |
-
-js-display: flex;
|
7479 |
-
display: -moz-box;
|
7480 |
-
display: flex;
|
7481 |
-
-webkit-box-pack: center;
|
7482 |
-
-ms-flex-pack: center;
|
7483 |
-
-webkit-justify-content: center;
|
7484 |
-
-moz-box-pack: center;
|
7485 |
-
justify-content: center;
|
7486 |
-
-webkit-box-align: center;
|
7487 |
-
-ms-flex-align: center;
|
7488 |
-
-webkit-align-items: center;
|
7489 |
-
-moz-box-align: center;
|
7490 |
-
align-items: center;
|
7491 |
-
overflow: visible;
|
7492 |
-
}
|
7493 |
-
|
7494 |
-
.premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link {
|
7495 |
-
display: block;
|
7496 |
-
position: relative;
|
7497 |
-
z-index: 1;
|
7498 |
-
width: 100%;
|
7499 |
-
height: 100%;
|
7500 |
-
cursor: pointer;
|
7501 |
-
text-decoration: none;
|
7502 |
-
}
|
7503 |
-
|
7504 |
-
.premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link span {
|
7505 |
-
top: 2px;
|
7506 |
-
right: 2.5px;
|
7507 |
-
width: 8px;
|
7508 |
-
height: 8px;
|
7509 |
-
border: 1px solid #000;
|
7510 |
-
-webkit-border-radius: 50%;
|
7511 |
-
border-radius: 50%;
|
7512 |
-
position: absolute;
|
7513 |
-
z-index: 1;
|
7514 |
-
-webkit-transition: all 0.3s ease-in-out;
|
7515 |
-
transition: all 0.3s ease-in-out;
|
7516 |
-
}
|
7517 |
-
|
7518 |
-
.premium-vscroll-inner .premium-vscroll-dot-item.active .premium-vscroll-nav-link span {
|
7519 |
-
-webkit-transform: scale(1.6);
|
7520 |
-
-ms-transform: scale(1.6);
|
7521 |
-
transform: scale(1.6);
|
7522 |
-
}
|
7523 |
-
|
7524 |
-
.premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-tooltip {
|
7525 |
-
position: absolute;
|
7526 |
-
color: #fff;
|
7527 |
-
font-size: 14px;
|
7528 |
-
font-family: arial, helvetica, sans-serif;
|
7529 |
-
white-space: nowrap;
|
7530 |
-
max-width: 220px;
|
7531 |
-
padding-right: 0.4em;
|
7532 |
-
padding-left: 0.4em;
|
7533 |
-
}
|
7534 |
-
|
7535 |
-
.premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip {
|
7536 |
-
left: 27px;
|
7537 |
-
}
|
7538 |
-
|
7539 |
-
/* * Lines */
|
7540 |
-
.premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item {
|
7541 |
-
width: 4px;
|
7542 |
-
height: 30px;
|
7543 |
-
}
|
7544 |
-
|
7545 |
-
.premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item span {
|
7546 |
-
width: 100%;
|
7547 |
-
height: 100%;
|
7548 |
-
-webkit-border-radius: 0;
|
7549 |
-
border-radius: 0;
|
7550 |
-
}
|
7551 |
-
|
7552 |
-
.premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item.active span {
|
7553 |
-
-webkit-transform: scale(1);
|
7554 |
-
-ms-transform: scale(1);
|
7555 |
-
transform: scale(1);
|
7556 |
-
}
|
7557 |
-
|
7558 |
-
@media (max-width: 768px) {
|
7559 |
-
.premium-vscroll-dots.right {
|
7560 |
-
left: 7px;
|
7561 |
-
}
|
7562 |
-
|
7563 |
-
.premium-vscroll-dots.left {
|
7564 |
-
right: 7px;
|
7565 |
-
}
|
7566 |
-
}
|
7567 |
-
|
7568 |
-
.premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip::after {
|
7569 |
-
position: absolute;
|
7570 |
-
top: 50%;
|
7571 |
-
content: "";
|
7572 |
-
right: -webkit-calc(100% - 1px);
|
7573 |
-
right: calc(100% - 1px);
|
7574 |
-
width: 10px;
|
7575 |
-
height: 0;
|
7576 |
-
border-top: 6px solid transparent;
|
7577 |
-
border-bottom: 6px solid transparent;
|
7578 |
-
border-right: 6px solid;
|
7579 |
-
-webkit-transform: translateY(-50%);
|
7580 |
-
-ms-transform: translateY(-50%);
|
7581 |
-
transform: translateY(-50%);
|
7582 |
-
}
|
7583 |
-
|
7584 |
-
.premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip::after {
|
7585 |
-
position: absolute;
|
7586 |
-
top: 50%;
|
7587 |
-
content: "";
|
7588 |
-
left: -webkit-calc(100% - 1px);
|
7589 |
-
left: calc(100% - 1px);
|
7590 |
-
width: 10px;
|
7591 |
-
height: 0;
|
7592 |
-
border-top: 6px solid transparent;
|
7593 |
-
border-bottom: 6px solid transparent;
|
7594 |
-
border-left: 6px solid;
|
7595 |
-
-webkit-transform: translateY(-50%);
|
7596 |
-
-ms-transform: translateY(-50%);
|
7597 |
-
transform: translateY(-50%);
|
7598 |
-
}
|
7599 |
-
|
7600 |
-
.premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip {
|
7601 |
-
right: 27px;
|
7602 |
-
}
|
7603 |
-
|
7604 |
-
.premium-vscroll-nav-menu {
|
7605 |
-
position: fixed;
|
7606 |
-
top: 20px;
|
7607 |
-
height: 40px;
|
7608 |
-
z-index: 100;
|
7609 |
-
padding: 0;
|
7610 |
-
margin: 0;
|
7611 |
-
}
|
7612 |
-
|
7613 |
-
.premium-vscroll-nav-menu.left {
|
7614 |
-
right: 0;
|
7615 |
-
}
|
7616 |
-
|
7617 |
-
.premium-vscroll-nav-menu.right {
|
7618 |
-
left: 0;
|
7619 |
-
}
|
7620 |
-
|
7621 |
-
.premium-vscroll-nav-menu .premium-vscroll-nav-item {
|
7622 |
-
display: inline-block;
|
7623 |
-
margin: 10px;
|
7624 |
-
color: #000;
|
7625 |
-
background: #fff;
|
7626 |
-
background: rgba(255, 255, 255, 0.3);
|
7627 |
-
}
|
7628 |
-
|
7629 |
-
.premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link {
|
7630 |
-
padding: 9px 18px;
|
7631 |
-
display: block;
|
7632 |
-
cursor: pointer;
|
7633 |
-
}
|
7634 |
-
|
7635 |
-
.premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link,
|
7636 |
-
.premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:hover {
|
7637 |
-
color: #000;
|
7638 |
-
}
|
7639 |
-
|
7640 |
-
.premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:focus,
|
7641 |
-
.multiscroll-nav li a:focus {
|
7642 |
-
outline: none;
|
7643 |
-
}
|
7644 |
-
|
7645 |
-
.premium-vscroll-temp .slimScrollBar {
|
7646 |
-
visibility: hidden;
|
7647 |
-
}
|
7648 |
-
|
7649 |
-
/************ Premium Image Scroll ***************/
|
7650 |
-
/*************************************************/
|
7651 |
-
.premium-image-scroll-section,
|
7652 |
-
.premium-image-scroll-container {
|
7653 |
-
-webkit-transition: all 0.3s ease-in-out;
|
7654 |
-
transition: all 0.3s ease-in-out;
|
7655 |
-
}
|
7656 |
-
|
7657 |
-
.premium-image-scroll-section {
|
7658 |
-
position: relative;
|
7659 |
-
overflow: hidden;
|
7660 |
-
width: 100%;
|
7661 |
-
-webkit-mask-image: -webkit-radial-gradient(white, black);
|
7662 |
-
}
|
7663 |
-
|
7664 |
-
.premium-image-scroll-container {
|
7665 |
-
width: 100%;
|
7666 |
-
}
|
7667 |
-
|
7668 |
-
.premium-image-scroll-container .premium-image-scroll-mask-media {
|
7669 |
-
-webkit-mask-repeat: no-repeat;
|
7670 |
-
mask-repeat: no-repeat;
|
7671 |
-
-webkit-mask-position: center;
|
7672 |
-
mask-position: center;
|
7673 |
-
}
|
7674 |
-
|
7675 |
-
.premium-container-scroll {
|
7676 |
-
overflow: auto;
|
7677 |
-
}
|
7678 |
-
|
7679 |
-
.premium-image-scroll-container .premium-image-scroll-horizontal {
|
7680 |
-
position: relative;
|
7681 |
-
width: 100%;
|
7682 |
-
height: 100%;
|
7683 |
-
}
|
7684 |
-
|
7685 |
-
.premium-image-scroll-container .premium-image-scroll-horizontal img {
|
7686 |
-
max-width: none;
|
7687 |
-
height: 100%;
|
7688 |
-
}
|
7689 |
-
|
7690 |
-
.premium-image-scroll-container .premium-image-scroll-vertical img {
|
7691 |
-
width: 100%;
|
7692 |
-
max-width: 100%;
|
7693 |
-
height: auto;
|
7694 |
-
}
|
7695 |
-
|
7696 |
-
.premium-image-scroll-ver {
|
7697 |
-
position: relative;
|
7698 |
-
}
|
7699 |
-
|
7700 |
-
.premium-image-scroll-container .premium-image-scroll-overlay {
|
7701 |
-
background: rgba(2, 2, 2, 0.3);
|
7702 |
-
}
|
7703 |
-
|
7704 |
-
.premium-image-scroll-container .premium-image-scroll-link,
|
7705 |
-
.premium-image-scroll-container .premium-image-scroll-overlay {
|
7706 |
-
position: absolute;
|
7707 |
-
top: 0;
|
7708 |
-
bottom: 0;
|
7709 |
-
right: 0;
|
7710 |
-
left: 0;
|
7711 |
-
z-index: 4;
|
7712 |
-
}
|
7713 |
-
|
7714 |
-
.premium-image-scroll-content {
|
7715 |
-
display: inline-block;
|
7716 |
-
position: absolute;
|
7717 |
-
height: auto;
|
7718 |
-
top: 50%;
|
7719 |
-
right: 50%;
|
7720 |
-
text-align: center;
|
7721 |
-
z-index: 5;
|
7722 |
-
-webkit-transform: translate(50%, -50%);
|
7723 |
-
-ms-transform: translate(50%, -50%);
|
7724 |
-
transform: translate(50%, -50%);
|
7725 |
-
}
|
7726 |
-
|
7727 |
-
.premium-container-scroll-instant .premium-image-scroll-image {
|
7728 |
-
-webkit-transition: all 0s ease-in-out !important;
|
7729 |
-
transition: all 0s ease-in-out !important;
|
7730 |
-
}
|
7731 |
-
|
7732 |
-
.premium-image-scroll-container img {
|
7733 |
-
-webkit-transition: -webkit-transform 3s ease-in-out;
|
7734 |
-
transition: -webkit-transform 3s ease-in-out;
|
7735 |
-
transition: transform 3s ease-in-out;
|
7736 |
-
transition: transform 3s ease-in-out, -webkit-transform 3s ease-in-out;
|
7737 |
-
}
|
7738 |
-
|
7739 |
-
.premium-image-scroll-container .premium-image-scroll-overlay,
|
7740 |
-
.premium-image-scroll-container .premium-image-scroll-content {
|
7741 |
-
-webkit-transition: all 0.3s ease-in-out;
|
7742 |
-
transition: all 0.3s ease-in-out;
|
7743 |
-
opacity: 1;
|
7744 |
-
}
|
7745 |
-
|
7746 |
-
.premium-image-scroll-container:hover .premium-image-scroll-overlay {
|
7747 |
-
opacity: 0;
|
7748 |
-
}
|
7749 |
-
|
7750 |
-
.premium-image-scroll-container:hover .premium-image-scroll-content {
|
7751 |
-
opacity: 0;
|
7752 |
-
visibility: hidden;
|
7753 |
-
}
|
7754 |
-
|
7755 |
-
.premium-image-scroll-content .premium-image-scroll-icon {
|
7756 |
-
display: inline-block;
|
7757 |
-
font-family: "pa-elements" !important;
|
7758 |
-
speak: none;
|
7759 |
-
font-style: normal;
|
7760 |
-
font-weight: normal;
|
7761 |
-
font-variant: normal;
|
7762 |
-
text-transform: none;
|
7763 |
-
line-height: 1;
|
7764 |
-
-webkit-font-smoothing: antialiased;
|
7765 |
-
-moz-osx-font-smoothing: grayscale;
|
7766 |
-
-webkit-animation-duration: 0.5s;
|
7767 |
-
animation-duration: 0.5s;
|
7768 |
-
-webkit-animation-iteration-count: infinite;
|
7769 |
-
animation-iteration-count: infinite;
|
7770 |
-
-webkit-animation-direction: alternate;
|
7771 |
-
animation-direction: alternate;
|
7772 |
-
-webkit-animation-timing-function: ease-in-out;
|
7773 |
-
animation-timing-function: ease-in-out;
|
7774 |
-
}
|
7775 |
-
|
7776 |
-
.pa-horizontal-mouse-scroll:before {
|
7777 |
-
content: "\e917";
|
7778 |
-
}
|
7779 |
-
|
7780 |
-
.pa-vertical-mouse-scroll:before {
|
7781 |
-
content: "\e918";
|
7782 |
-
}
|
7783 |
-
|
7784 |
-
.pa-horizontal-mouse-scroll {
|
7785 |
-
-webkit-animation-name: pa-scroll-horizontal;
|
7786 |
-
animation-name: pa-scroll-horizontal;
|
7787 |
-
}
|
7788 |
-
|
7789 |
-
.pa-vertical-mouse-scroll {
|
7790 |
-
-webkit-animation-name: pa-scroll-vertical;
|
7791 |
-
animation-name: pa-scroll-vertical;
|
7792 |
-
}
|
7793 |
-
|
7794 |
-
@-webkit-keyframes pa-scroll-vertical {
|
7795 |
-
0% {
|
7796 |
-
-webkit-transform: translateY(0px);
|
7797 |
-
transform: translateY(0px);
|
7798 |
-
}
|
7799 |
-
|
7800 |
-
100% {
|
7801 |
-
-webkit-transform: translateY(5px);
|
7802 |
-
transform: translateY(5px);
|
7803 |
-
}
|
7804 |
-
}
|
7805 |
-
|
7806 |
-
@keyframes pa-scroll-vertical {
|
7807 |
-
0% {
|
7808 |
-
-webkit-transform: translateY(0px);
|
7809 |
-
transform: translateY(0px);
|
7810 |
-
}
|
7811 |
-
|
7812 |
-
100% {
|
7813 |
-
-webkit-transform: translateY(5px);
|
7814 |
-
transform: translateY(5px);
|
7815 |
-
}
|
7816 |
-
}
|
7817 |
-
|
7818 |
-
@-webkit-keyframes pa-scroll-horizontal {
|
7819 |
-
0% {
|
7820 |
-
-webkit-transform: translateX(0px);
|
7821 |
-
transform: translateX(0px);
|
7822 |
-
}
|
7823 |
-
|
7824 |
-
100% {
|
7825 |
-
-webkit-transform: translateX(-5px);
|
7826 |
-
transform: translateX(-5px);
|
7827 |
-
}
|
7828 |
-
}
|
7829 |
-
|
7830 |
-
@keyframes pa-scroll-horizontal {
|
7831 |
-
0% {
|
7832 |
-
-webkit-transform: translateX(0px);
|
7833 |
-
transform: translateX(0px);
|
7834 |
-
}
|
7835 |
-
|
7836 |
-
100% {
|
7837 |
-
-webkit-transform: translateX(-5px);
|
7838 |
-
transform: translateX(-5px);
|
7839 |
-
}
|
7840 |
-
}
|
7841 |
-
|
7842 |
-
/********* Premium Lottie Animations **********/
|
7843 |
-
/**********************************************/
|
7844 |
-
.premium-lottie-wrap .premium-lottie-animation {
|
7845 |
-
position: relative;
|
7846 |
-
-js-display: inline-flex;
|
7847 |
-
display: -webkit-inline-box;
|
7848 |
-
display: -webkit-inline-flex;
|
7849 |
-
display: -moz-inline-box;
|
7850 |
-
display: -ms-inline-flexbox;
|
7851 |
-
display: inline-flex;
|
7852 |
-
-webkit-transition: all 0.3s ease-in-out;
|
7853 |
-
transition: all 0.3s ease-in-out;
|
7854 |
-
}
|
7855 |
-
|
7856 |
-
.premium-lottie-wrap .premium-lottie-animation a {
|
7857 |
-
position: absolute;
|
7858 |
-
left: 0;
|
7859 |
-
top: 0;
|
7860 |
-
width: 100%;
|
7861 |
-
height: 100%;
|
7862 |
-
}
|
7863 |
-
|
7864 |
-
/**************** Premium Bullet List *****************/
|
7865 |
-
/******************************************************/
|
7866 |
-
.premium-icon-list-box {
|
7867 |
-
-js-display: flex;
|
7868 |
-
display: -webkit-box;
|
7869 |
-
display: -webkit-flex;
|
7870 |
-
display: -moz-box;
|
7871 |
-
display: -ms-flexbox;
|
7872 |
-
display: flex;
|
7873 |
-
-webkit-flex-wrap: wrap;
|
7874 |
-
-ms-flex-wrap: wrap;
|
7875 |
-
flex-wrap: wrap;
|
7876 |
-
-webkit-box-orient: vertical;
|
7877 |
-
-webkit-box-direction: normal;
|
7878 |
-
-webkit-flex-direction: column;
|
7879 |
-
-moz-box-orient: vertical;
|
7880 |
-
-moz-box-direction: normal;
|
7881 |
-
-ms-flex-direction: column;
|
7882 |
-
flex-direction: column;
|
7883 |
-
}
|
7884 |
-
|
7885 |
-
.premium-icon-list-box .premium-icon-list-content-grow-lc {
|
7886 |
-
-webkit-transform-origin: right center;
|
7887 |
-
-ms-transform-origin: right center;
|
7888 |
-
transform-origin: right center;
|
7889 |
-
}
|
7890 |
-
|
7891 |
-
.premium-icon-list-box .premium-icon-list-content-grow-rc {
|
7892 |
-
-webkit-transform-origin: left center;
|
7893 |
-
-ms-transform-origin: left center;
|
7894 |
-
transform-origin: left center;
|
7895 |
-
}
|
7896 |
-
|
7897 |
-
.premium-icon-list-box .premium-icon-list-content-grow-cc {
|
7898 |
-
-webkit-transform-origin: center center;
|
7899 |
-
-ms-transform-origin: center center;
|
7900 |
-
transform-origin: center center;
|
7901 |
-
}
|
7902 |
-
|
7903 |
-
.premium-icon-list-content {
|
7904 |
-
-js-display: flex;
|
7905 |
-
display: -webkit-box;
|
7906 |
-
display: -webkit-flex;
|
7907 |
-
display: -moz-box;
|
7908 |
-
display: -ms-flexbox;
|
7909 |
-
display: flex;
|
7910 |
-
-webkit-transition: all 0.3s ease-in-out;
|
7911 |
-
transition: all 0.3s ease-in-out;
|
7912 |
-
width: auto;
|
7913 |
-
position: relative;
|
7914 |
-
}
|
7915 |
-
|
7916 |
-
.premium-icon-list-content .premium-icon-list-text span,
|
7917 |
-
.premium-icon-list-content .premium-icon-list-wrapper {
|
7918 |
-
display: inline-block;
|
7919 |
-
-webkit-align-self: center;
|
7920 |
-
-ms-flex-item-align: center;
|
7921 |
-
align-self: center;
|
7922 |
-
-webkit-transition: all 0.3s ease-in-out;
|
7923 |
-
transition: all 0.3s ease-in-out;
|
7924 |
-
}
|
7925 |
-
|
7926 |
-
.premium-icon-list-content .premium-icon-list-text span {
|
7927 |
-
margin: 0 5px;
|
7928 |
-
}
|
7929 |
-
|
7930 |
-
.premium-icon-list-content .premium-icon-list-icon-text p {
|
7931 |
-
font-size: 18px;
|
7932 |
-
background-color: #eee;
|
7933 |
-
padding: 1px 5px;
|
7934 |
-
-webkit-border-radius: 2px;
|
7935 |
-
border-radius: 2px;
|
7936 |
-
}
|
7937 |
-
|
7938 |
-
.premium-icon-list-content .premium-icon-list-text span,
|
7939 |
-
.premium-icon-list-content .premium-icon-list-icon-text p,
|
7940 |
-
.premium-icon-list-content .premium-icon-list-wrapper img,
|
7941 |
-
.premium-icon-list-content .premium-icon-list-wrapper svg,
|
7942 |
-
.premium-icon-list-content .premium-icon-list-wrapper i {
|
7943 |
-
-webkit-transition: all 0.3s ease-in-out;
|
7944 |
-
transition: all 0.3s ease-in-out;
|
7945 |
-
}
|
7946 |
-
|
7947 |
-
.premium-icon-list-content .premium-icon-list-wrapper {
|
7948 |
-
position: relative;
|
7949 |
-
line-height: 0;
|
7950 |
-
}
|
7951 |
-
|
7952 |
-
.premium-icon-list-content .premium-icon-list-wrapper img,
|
7953 |
-
.premium-icon-list-content .premium-icon-list-wrapper .premium-lottie-animation svg {
|
7954 |
-
width: 30px !important;
|
7955 |
-
height: 30px !important;
|
7956 |
-
position: relative;
|
7957 |
-
z-index: 500;
|
7958 |
-
}
|
7959 |
-
|
7960 |
-
.premium-icon-list-content .premium-icon-list-wrapper i,
|
7961 |
-
.premium-icon-list-content .premium-icon-list-wrapper .premium-icon-list-icon-text {
|
7962 |
-
position: relative;
|
7963 |
-
z-index: 500;
|
7964 |
-
}
|
7965 |
-
|
7966 |
-
.premium-icon-list-content .premium-icon-list-link {
|
7967 |
-
position: absolute;
|
7968 |
-
top: 0;
|
7969 |
-
right: 0;
|
7970 |
-
width: 100%;
|
7971 |
-
height: 100%;
|
7972 |
-
z-index: 1000;
|
7973 |
-
}
|
7974 |
-
|
7975 |
-
.premium-icon-list-content:not(:last-of-type) .premium-icon-list-connector {
|
7976 |
-
width: 100%;
|
7977 |
-
height: 100%;
|
7978 |
-
position: absolute;
|
7979 |
-
top: 0.5em;
|
7980 |
-
z-index: 100;
|
7981 |
-
-js-display: flex;
|
7982 |
-
display: -webkit-box;
|
7983 |
-
display: -webkit-flex;
|
7984 |
-
display: -moz-box;
|
7985 |
-
display: -ms-flexbox;
|
7986 |
-
display: flex;
|
7987 |
-
-webkit-box-pack: center;
|
7988 |
-
-webkit-justify-content: center;
|
7989 |
-
-moz-box-pack: center;
|
7990 |
-
-ms-flex-pack: center;
|
7991 |
-
justify-content: center;
|
7992 |
-
}
|
7993 |
-
|
7994 |
-
.premium-icon-list-content:not(:last-of-type) .premium-icon-list-connector .premium-icon-connector-content:after {
|
7995 |
-
content: "";
|
7996 |
-
border-left-width: 1px;
|
7997 |
-
border-left-style: solid;
|
7998 |
-
border-color: #333333;
|
7999 |
-
display: block;
|
8000 |
-
height: 100%;
|
8001 |
-
}
|
8002 |
-
|
8003 |
-
li.premium-icon-list-content.premium-icon-list-content-inline {
|
8004 |
-
-webkit-align-self: center;
|
8005 |
-
-ms-flex-item-align: center;
|
8006 |
-
align-self: center;
|
8007 |
-
z-index: 2;
|
8008 |
-
}
|
8009 |
-
|
8010 |
-
li.premium-icon-list-content.premium-icon-list-content-inline:not(:first-child) {
|
8011 |
-
margin: 0 3px;
|
8012 |
-
}
|
8013 |
-
|
8014 |
-
li.premium-icon-list-content.premium-icon-list-content-inline:first-child {
|
8015 |
-
margin: 0 0 0 3px;
|
8016 |
-
}
|
8017 |
-
|
8018 |
-
.premium-icon-list-divider:not(:last-child) {
|
8019 |
-
width: 100%;
|
8020 |
-
-webkit-box-flex: 0;
|
8021 |
-
-webkit-flex: 0 0 100%;
|
8022 |
-
-moz-box-flex: 0;
|
8023 |
-
-ms-flex: 0 0 100%;
|
8024 |
-
flex: 0 0 100%;
|
8025 |
-
overflow: hidden;
|
8026 |
-
}
|
8027 |
-
|
8028 |
-
.premium-icon-list-divider:not(:last-child):after {
|
8029 |
-
content: "";
|
8030 |
-
display: block;
|
8031 |
-
border-top-style: solid;
|
8032 |
-
border-top-width: 1px;
|
8033 |
-
}
|
8034 |
-
|
8035 |
-
.premium-icon-list-divider-inline:not(:last-child) {
|
8036 |
-
float: left;
|
8037 |
-
display: inline-block;
|
8038 |
-
position: relative;
|
8039 |
-
height: 100%;
|
8040 |
-
overflow: hidden;
|
8041 |
-
-webkit-align-self: center;
|
8042 |
-
-ms-flex-item-align: center;
|
8043 |
-
align-self: center;
|
8044 |
-
margin: 0 3px;
|
8045 |
-
}
|
8046 |
-
|
8047 |
-
.premium-icon-list-divider-inline:not(:last-child):after {
|
8048 |
-
content: "";
|
8049 |
-
display: block;
|
8050 |
-
border-right-width: 1px;
|
8051 |
-
height: 33px;
|
8052 |
-
border-right-style: solid;
|
8053 |
-
}
|
8054 |
-
|
8055 |
-
.premium-icon-list-icon-text {
|
8056 |
-
line-height: 1.5;
|
8057 |
-
}
|
8058 |
-
|
8059 |
-
.premium-icon-list-icon-text p,
|
8060 |
-
ul.premium-icon-list-box,
|
8061 |
-
li.premium-icon-list-content {
|
8062 |
-
margin: 0;
|
8063 |
-
}
|
8064 |
-
|
8065 |
-
.premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-wrapper i,
|
8066 |
-
.premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-text span,
|
8067 |
-
.premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-icon-text p {
|
8068 |
-
color: transparent !important;
|
8069 |
-
text-shadow: 0 0 3px #aaa;
|
8070 |
-
}
|
8071 |
-
|
8072 |
-
.premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-connector-content,
|
8073 |
-
.premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-wrapper .premium-lottie-animation svg,
|
8074 |
-
.premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-wrapper img,
|
8075 |
-
.premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-badge {
|
8076 |
-
-webkit-filter: blur(3px);
|
8077 |
-
filter: blur(3px);
|
8078 |
-
}
|
8079 |
-
|
8080 |
-
.premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-wrapper i,
|
8081 |
-
.premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-text span,
|
8082 |
-
.premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-icon-text p {
|
8083 |
-
color: #aaa !important;
|
8084 |
-
text-shadow: 0 0px 0 transparent;
|
8085 |
-
}
|
8086 |
-
|
8087 |
-
.premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-connector-content,
|
8088 |
-
.premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-wrapper .premium-lottie-animation svg,
|
8089 |
-
.premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-wrapper img,
|
8090 |
-
.premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-badge {
|
8091 |
-
-webkit-filter: none;
|
8092 |
-
filter: none;
|
8093 |
-
}
|
8094 |
-
|
8095 |
-
.premium-icon-list-content .premium-icon-list-badge {
|
8096 |
-
font-size: 11px;
|
8097 |
-
top: auto;
|
8098 |
-
min-width: -webkit-max-content;
|
8099 |
-
min-width: -moz-max-content;
|
8100 |
-
min-width: max-content;
|
8101 |
-
height: -webkit-fit-content;
|
8102 |
-
height: -moz-fit-content;
|
8103 |
-
height: fit-content;
|
8104 |
-
}
|
8105 |
-
|
8106 |
-
.premium-icon-list-content .premium-icon-list-icon-text p {
|
8107 |
-
font-size: 13px;
|
8108 |
-
}
|
8109 |
-
|
8110 |
-
.premium-icon-list-gradient-effect[data-text] {
|
8111 |
-
display: inline-block;
|
8112 |
-
position: relative;
|
8113 |
-
text-decoration: none;
|
8114 |
-
}
|
8115 |
-
|
8116 |
-
.premium-icon-list-gradient-effect[data-text]::before {
|
8117 |
-
content: attr(data-text);
|
8118 |
-
position: absolute;
|
8119 |
-
z-index: 1;
|
8120 |
-
overflow: hidden;
|
8121 |
-
-webkit-clip-path: polygon(100% 100%, 100% 100%, 50% 50%);
|
8122 |
-
clip-path: polygon(100% 100%, 100% 100%, 50% 50%);
|
8123 |
-
-webkit-background-clip: text;
|
8124 |
-
background-clip: text;
|
8125 |
-
-webkit-text-fill-color: transparent;
|
8126 |
-
-webkit-transition: all 0.4s ease;
|
8127 |
-
transition: all 0.4s ease;
|
8128 |
-
}
|
8129 |
-
|
8130 |
-
.premium-icon-list-content:hover .premium-icon-list-gradient-effect[data-text]::before,
|
8131 |
-
.premium-icon-list-content:focus .premium-icon-list-gradient-effect[data-text]::before {
|
8132 |
-
-webkit-animation: rtlgradient 1s forwards;
|
8133 |
-
animation: rtlgradient 1s forwards;
|
8134 |
-
}
|
8135 |
-
|
8136 |
-
@-webkit-keyframes rtlgradient {
|
8137 |
-
0% {
|
8138 |
-
-webkit-clip-path: circle(0% at 150% 50%);
|
8139 |
-
clip-path: circle(0% at 150% 50%);
|
8140 |
-
}
|
8141 |
-
|
8142 |
-
100% {
|
8143 |
-
-webkit-clip-path: circle(100% at 50% 50%);
|
8144 |
-
clip-path: circle(100% at 50% 50%);
|
8145 |
-
}
|
8146 |
-
}
|
8147 |
-
|
8148 |
-
@keyframes rtlgradient {
|
8149 |
-
0% {
|
8150 |
-
-webkit-clip-path: circle(0% at 150% 50%);
|
8151 |
-
clip-path: circle(0% at 150% 50%);
|
8152 |
-
}
|
8153 |
-
|
8154 |
-
100% {
|
8155 |
-
-webkit-clip-path: circle(100% at 50% 50%);
|
8156 |
-
clip-path: circle(100% at 50% 50%);
|
8157 |
-
}
|
8158 |
-
}
|
8159 |
-
|
8160 |
-
ul[data-list-animation*="animated-"] .premium-icon-list-divider,
|
8161 |
-
ul[data-list-animation*="animated-"] .premium-icon-list-content,
|
8162 |
-
ul[data-list-animation*="animated-"] .premium-icon-list-divider-inline {
|
8163 |
-
opacity: 0;
|
8164 |
-
}
|
8165 |
-
|
8166 |
-
.premium-icon-list-content-grow-effect:hover {
|
8167 |
-
-webkit-transform: scale(1.07);
|
8168 |
-
-ms-transform: scale(1.07);
|
8169 |
-
transform: scale(1.07);
|
8170 |
}
|
1 |
+
@font-face {
|
2 |
+
font-family: "pa-elements";
|
3 |
+
src: url("../../editor/fonts/pa-elements.eot?p2y7wv");
|
4 |
+
src: url("../../editor/fonts/pa-elements.eot?p2y7wv#iefix") format("embedded-opentype"),
|
5 |
+
url("../../editor/fonts/pa-elements.ttf?p2y7wv") format("truetype"),
|
6 |
+
url("../../editor/fonts/pa-elements.woff?p2y7wv") format("woff"),
|
7 |
+
url("../../editor/fonts/pa-elements.svg?p2y7wv#pa-elements") format("svg");
|
8 |
+
font-weight: normal;
|
9 |
+
font-style: normal;
|
10 |
+
}
|
11 |
+
|
12 |
+
/**************** Premium Banner ****************/
|
13 |
+
/************************************************/
|
14 |
+
.premium-banner {
|
15 |
+
overflow: hidden;
|
16 |
+
}
|
17 |
+
|
18 |
+
.premium-banner-ib {
|
19 |
+
display: block;
|
20 |
+
position: relative;
|
21 |
+
}
|
22 |
+
|
23 |
+
.premium-banner-ib img {
|
24 |
+
display: block;
|
25 |
+
position: relative;
|
26 |
+
}
|
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 |
+
}
|
37 |
+
|
38 |
+
.premium-banner-img-wrap .premium-banner-ib-img {
|
39 |
+
-webkit-flex-shrink: 0;
|
40 |
+
-ms-flex-negative: 0;
|
41 |
+
flex-shrink: 0;
|
42 |
+
}
|
43 |
+
|
44 |
+
.premium-banner-ib {
|
45 |
+
z-index: 1;
|
46 |
+
overflow: hidden;
|
47 |
+
margin: 0 0 35px;
|
48 |
+
text-align: center;
|
49 |
+
-webkit-box-sizing: border-box;
|
50 |
+
-moz-box-sizing: border-box;
|
51 |
+
box-sizing: border-box;
|
52 |
+
}
|
53 |
+
|
54 |
+
.premium-banner-ib-desc .premium-banner-read-more {
|
55 |
+
z-index: 100;
|
56 |
+
}
|
57 |
+
|
58 |
+
.premium-banner-ib,
|
59 |
+
.wpb_column>.wpb_wrapper .premium-banner-ib {
|
60 |
+
margin-bottom: 0px;
|
61 |
+
}
|
62 |
+
|
63 |
+
.elementor-widget-premium-addon-banner .premium-banner-ib-title {
|
64 |
+
background: transparent;
|
65 |
+
}
|
66 |
+
|
67 |
+
.premium-banner-ib *,
|
68 |
+
.premium-banner-ib .premium-banner-ib-desc {
|
69 |
+
-webkit-box-sizing: border-box;
|
70 |
+
-moz-box-sizing: border-box;
|
71 |
+
box-sizing: border-box;
|
72 |
+
}
|
73 |
+
|
74 |
+
.premium-banner-ib img {
|
75 |
+
min-width: 100%;
|
76 |
+
max-width: 100%;
|
77 |
+
-webkit-transition: opacity 0.35s;
|
78 |
+
transition: opacity 0.35s;
|
79 |
+
}
|
80 |
+
|
81 |
+
.premium-banner-ib .premium-banner-ib-desc {
|
82 |
+
padding: 15px;
|
83 |
+
-webkit-backface-visibility: hidden;
|
84 |
+
backface-visibility: hidden;
|
85 |
+
-webkit-box-sizing: border-box;
|
86 |
+
-moz-box-sizing: border-box;
|
87 |
+
box-sizing: border-box;
|
88 |
+
position: absolute;
|
89 |
+
top: 0;
|
90 |
+
right: 0;
|
91 |
+
width: 100%;
|
92 |
+
height: 100%;
|
93 |
+
}
|
94 |
+
|
95 |
+
.premium-banner-ib .premium-banner-ib-link {
|
96 |
+
position: absolute;
|
97 |
+
top: 0;
|
98 |
+
right: 0;
|
99 |
+
width: 100%;
|
100 |
+
height: 100%;
|
101 |
+
z-index: 1000;
|
102 |
+
text-indent: 200%;
|
103 |
+
white-space: nowrap;
|
104 |
+
font-size: 0;
|
105 |
+
opacity: 0;
|
106 |
+
}
|
107 |
+
|
108 |
+
.premium-banner-ib a.premium-banner-ib-link {
|
109 |
+
display: block;
|
110 |
+
background: 100% 0;
|
111 |
+
}
|
112 |
+
|
113 |
+
.premium-banner-animation1 img {
|
114 |
+
width: -webkit-calc(100% + 50px) !important;
|
115 |
+
width: calc(100% + 50px) !important;
|
116 |
+
max-width: -webkit-calc(100% + 50px) !important;
|
117 |
+
max-width: calc(100% + 50px) !important;
|
118 |
+
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
119 |
+
transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
120 |
+
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
121 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s;
|
122 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
123 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
124 |
+
-webkit-transform: translate3d(40px, 0, 0);
|
125 |
+
transform: translate3d(40px, 0, 0);
|
126 |
+
}
|
127 |
+
|
128 |
+
.premium-banner-animation2 .premium-banner-ib-title {
|
129 |
+
padding: 15px;
|
130 |
+
}
|
131 |
+
|
132 |
+
.premium-banner-animation1 .premium-banner-ib-desc {
|
133 |
+
top: auto;
|
134 |
+
bottom: 0;
|
135 |
+
min-height: 25%;
|
136 |
+
height: auto;
|
137 |
+
max-height: 100%;
|
138 |
+
text-align: right;
|
139 |
+
}
|
140 |
+
|
141 |
+
.premium-banner-animation1 .premium-banner-ib-content,
|
142 |
+
.premium-banner-animation1 .premium-banner-ib-title,
|
143 |
+
.premium-banner-animation1 .premium-banner-read-more {
|
144 |
+
-webkit-transform: translate3d(0, 40px, 0);
|
145 |
+
transform: translate3d(0, 40px, 0);
|
146 |
+
-webkit-transition-delay: 0.05s;
|
147 |
+
transition-delay: 0.05s;
|
148 |
+
-webkit-transition-duration: 0.35s;
|
149 |
+
transition-duration: 0.35s;
|
150 |
+
}
|
151 |
+
|
152 |
+
.premium-banner-animation1 .premium-banner-ib-title {
|
153 |
+
-webkit-transition: -webkit-transform 0.35s;
|
154 |
+
transition: -webkit-transform 0.35s;
|
155 |
+
transition: transform 0.35s;
|
156 |
+
transition: transform 0.35s, -webkit-transform 0.35s;
|
157 |
+
}
|
158 |
+
|
159 |
+
.premium-banner-animation1 .premium-banner-ib-content,
|
160 |
+
.premium-banner-animation1 .premium-banner-read-more {
|
161 |
+
margin-top: 10px;
|
162 |
+
opacity: 0;
|
163 |
+
-webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
|
164 |
+
transition: opacity 0.2s, -webkit-transform 0.35s;
|
165 |
+
transition: opacity 0.2s, transform 0.35s;
|
166 |
+
transition: opacity 0.2s, transform 0.35s, -webkit-transform 0.35s;
|
167 |
+
}
|
168 |
+
|
169 |
+
.premium-banner-animation1:hover .premium-banner-ib-content,
|
170 |
+
.premium-banner-animation1.active .premium-banner-ib-content,
|
171 |
+
.premium-banner-animation1:hover .premium-banner-read-more,
|
172 |
+
.premium-banner-animation1.active .premium-banner-read-more {
|
173 |
+
opacity: 1;
|
174 |
+
-webkit-transition-delay: 0.05s;
|
175 |
+
transition-delay: 0.05s;
|
176 |
+
-webkit-transition-duration: 0.35s;
|
177 |
+
transition-duration: 0.35s;
|
178 |
+
}
|
179 |
+
|
180 |
+
.premium-banner-animation1:hover .premium-banner-ib-content,
|
181 |
+
.premium-banner-animation1.active .premium-banner-ib-content,
|
182 |
+
.premium-banner-animation1:hover .premium-banner-read-more,
|
183 |
+
.premium-banner-animation1.active .premium-banner-read-more,
|
184 |
+
.premium-banner-animation1:hover .premium-banner-ib-title,
|
185 |
+
.premium-banner-animation1.active .premium-banner-ib-title,
|
186 |
+
.premium-banner-animation1:hover img,
|
187 |
+
.premium-banner-animation1.active img {
|
188 |
+
-webkit-transform: translate3d(0, 0, 0);
|
189 |
+
transform: translate3d(0, 0, 0);
|
190 |
+
-webkit-transition-delay: 0.05s;
|
191 |
+
transition-delay: 0.05s;
|
192 |
+
-webkit-transition-duration: 0.35s;
|
193 |
+
transition-duration: 0.35s;
|
194 |
+
}
|
195 |
+
|
196 |
+
.premium-banner-animation1.zoomout img,
|
197 |
+
.premium-banner-animation1.scale img {
|
198 |
+
-webkit-transform: translate3d(40px, 0, 0) scale(1.1);
|
199 |
+
transform: translate3d(40px, 0, 0) scale(1.1);
|
200 |
+
}
|
201 |
+
|
202 |
+
.premium-banner-ib.sepia img {
|
203 |
+
-webkit-filter: sepia(30%);
|
204 |
+
filter: sepia(30%);
|
205 |
+
}
|
206 |
+
|
207 |
+
.premium-banner-ib.bright img {
|
208 |
+
-webkit-filter: brightness(1);
|
209 |
+
filter: brightness(1);
|
210 |
+
}
|
211 |
+
|
212 |
+
.premium-banner-ib.sepia:hover img {
|
213 |
+
-webkit-filter: sepia(0%);
|
214 |
+
filter: sepia(0%);
|
215 |
+
}
|
216 |
+
|
217 |
+
.premium-banner-ib.bright:hover img {
|
218 |
+
-webkit-filter: brightness(1.2);
|
219 |
+
filter: brightness(1.2);
|
220 |
+
}
|
221 |
+
|
222 |
+
.premium-banner-animation1.premium-banner-min-height img,
|
223 |
+
.premium-banner-animation2.premium-banner-min-height img,
|
224 |
+
.premium-banner-animation4.premium-banner-min-height img,
|
225 |
+
.premium-banner-animation5.premium-banner-min-height img,
|
226 |
+
.premium-banner-animation6.premium-banner-min-height img,
|
227 |
+
.premium-banner-animation13.premium-banner-min-height img {
|
228 |
+
height: auto;
|
229 |
+
}
|
230 |
+
|
231 |
+
.premium-banner-animation2 img {
|
232 |
+
width: 100%;
|
233 |
+
}
|
234 |
+
|
235 |
+
.premium-banner-animation2 .premium-banner-ib-desc::before {
|
236 |
+
position: absolute;
|
237 |
+
content: "";
|
238 |
+
top: 0;
|
239 |
+
right: 0;
|
240 |
+
width: 100%;
|
241 |
+
height: 100%;
|
242 |
+
opacity: 0;
|
243 |
+
-webkit-transform: translate3d(0, 50%, 0);
|
244 |
+
transform: translate3d(0, 50%, 0);
|
245 |
+
}
|
246 |
+
|
247 |
+
.premium-banner-animation2 .premium-banner-ib-title {
|
248 |
+
position: absolute;
|
249 |
+
top: 50%;
|
250 |
+
right: 0;
|
251 |
+
width: 100%;
|
252 |
+
-webkit-transition: color 0.35s, -webkit-transform 0.35s;
|
253 |
+
transition: color 0.35s, -webkit-transform 0.35s;
|
254 |
+
transition: transform 0.35s, color 0.35s;
|
255 |
+
transition: transform 0.35s, color 0.35s, -webkit-transform 0.35s;
|
256 |
+
-webkit-transform: translate3d(0, -50%, 0);
|
257 |
+
transform: translate3d(0, -50%, 0);
|
258 |
+
}
|
259 |
+
|
260 |
+
.premium-banner-animation2 .premium-banner-ib-content,
|
261 |
+
.premium-banner-animation2 .premium-banner-read-more,
|
262 |
+
.premium-banner-animation2 .premium-banner-ib-desc::before {
|
263 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
264 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
265 |
+
transition: opacity 0.35s, transform 0.35s;
|
266 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
267 |
+
}
|
268 |
+
|
269 |
+
.premium-banner-animation2 .premium-banner-ib-content,
|
270 |
+
.premium-banner-animation2 .premium-banner-read-more {
|
271 |
+
position: absolute;
|
272 |
+
bottom: 0;
|
273 |
+
right: 0;
|
274 |
+
padding: 15px;
|
275 |
+
width: 100%;
|
276 |
+
max-height: 50%;
|
277 |
+
opacity: 0;
|
278 |
+
-webkit-transform: translate3d(0, 10px, 0);
|
279 |
+
transform: translate3d(0, 10px, 0);
|
280 |
+
}
|
281 |
+
|
282 |
+
.premium-banner-animation2:hover .premium-banner-ib-title,
|
283 |
+
.premium-banner-animation2.active .premium-banner-ib-title {
|
284 |
+
-webkit-transform: translate3d(0, -40px, 0);
|
285 |
+
transform: translate3d(0, -40px, 0);
|
286 |
+
}
|
287 |
+
|
288 |
+
.premium-banner-animation2:hover .premium-banner-read-more,
|
289 |
+
.premium-banner-animation2.active .premium-banner-read-more,
|
290 |
+
.premium-banner-animation2:hover .premium-banner-ib-desc::before,
|
291 |
+
.premium-banner-animation2.active .premium-banner-ib-desc::before {
|
292 |
+
opacity: 1;
|
293 |
+
-webkit-transform: translate3d(0, 0, 0);
|
294 |
+
transform: translate3d(0, 0, 0);
|
295 |
+
}
|
296 |
+
|
297 |
+
.premium-banner-animation2:hover .premium-banner-ib-content,
|
298 |
+
.premium-banner-animation2.active .premium-banner-ib-content {
|
299 |
+
opacity: 1;
|
300 |
+
-webkit-transform: translate3d(0, -30px, 0);
|
301 |
+
transform: translate3d(0, -30px, 0);
|
302 |
+
}
|
303 |
+
|
304 |
+
.premium-banner-animation3 .premium-banner-ib-title {
|
305 |
+
position: absolute;
|
306 |
+
bottom: 0;
|
307 |
+
right: 0;
|
308 |
+
padding: 15px;
|
309 |
+
width: 100%;
|
310 |
+
text-align: right;
|
311 |
+
-webkit-transform: translate3d(0, -30px, 0);
|
312 |
+
transform: translate3d(0, -30px, 0);
|
313 |
+
}
|
314 |
+
|
315 |
+
.premium-banner-animation3 .premium-banner-ib-desc::before,
|
316 |
+
.premium-banner-animation3 .premium-banner-ib-title {
|
317 |
+
-webkit-transition: -webkit-transform 0.35s;
|
318 |
+
transition: -webkit-transform 0.35s;
|
319 |
+
transition: transform 0.35s;
|
320 |
+
transition: transform 0.35s, -webkit-transform 0.35s;
|
321 |
+
}
|
322 |
+
|
323 |
+
.premium-banner-animation3:hover .premium-banner-ib-desc::before,
|
324 |
+
.premium-banner-animation3.active .premium-banner-ib-desc::before,
|
325 |
+
.premium-banner-animation3:hover .premium-banner-ib-title,
|
326 |
+
.premium-banner-animation3.active .premium-banner-ib-title {
|
327 |
+
opacity: 1;
|
328 |
+
-webkit-transform: translate3d(0, 0, 0);
|
329 |
+
transform: translate3d(0, 0, 0);
|
330 |
+
}
|
331 |
+
|
332 |
+
.premium-banner-animation3 .premium-banner-ib-content {
|
333 |
+
max-height: -webkit-calc(100% - 60px - 1.5em);
|
334 |
+
max-height: calc(100% - 60px - 1.5em);
|
335 |
+
overflow: hidden;
|
336 |
+
}
|
337 |
+
|
338 |
+
.premium-banner-animation4 img {
|
339 |
+
width: -webkit-calc(100% + 40px) !important;
|
340 |
+
width: calc(100% + 40px) !important;
|
341 |
+
max-width: -webkit-calc(100% + 40px) !important;
|
342 |
+
max-width: calc(100% + 40px) !important;
|
343 |
+
}
|
344 |
+
|
345 |
+
.premium-banner-animation4 .premium-banner-ib-desc {
|
346 |
+
padding: 30px;
|
347 |
+
}
|
348 |
+
|
349 |
+
.premium-banner-animation4 .premium-banner-ib-desc::after {
|
350 |
+
position: absolute;
|
351 |
+
content: "";
|
352 |
+
opacity: 0;
|
353 |
+
}
|
354 |
+
|
355 |
+
.premium-banner-animation4 .premium-banner-ib-desc::before {
|
356 |
+
position: absolute;
|
357 |
+
content: "";
|
358 |
+
opacity: 0;
|
359 |
+
top: 50px;
|
360 |
+
left: 30px;
|
361 |
+
bottom: 50px;
|
362 |
+
right: 30px;
|
363 |
+
border-top: 1px solid #fff;
|
364 |
+
border-bottom: 1px solid #fff;
|
365 |
+
-webkit-transform: scale(0, 1);
|
366 |
+
-ms-transform: scale(0, 1);
|
367 |
+
transform: scale(0, 1);
|
368 |
+
-webkit-transform-origin: 100% 0;
|
369 |
+
-ms-transform-origin: 100% 0;
|
370 |
+
transform-origin: 100% 0;
|
371 |
+
}
|
372 |
+
|
373 |
+
.premium-banner-animation4 .premium-banner-ib-desc::after {
|
374 |
+
top: 30px;
|
375 |
+
left: 50px;
|
376 |
+
bottom: 30px;
|
377 |
+
right: 50px;
|
378 |
+
border-left: 1px solid #fff;
|
379 |
+
border-right: 1px solid #fff;
|
380 |
+
-webkit-transform: scale(1, 0);
|
381 |
+
-ms-transform: scale(1, 0);
|
382 |
+
transform: scale(1, 0);
|
383 |
+
-webkit-transform-origin: 0% 0;
|
384 |
+
-ms-transform-origin: 0% 0;
|
385 |
+
transform-origin: 0% 0;
|
386 |
+
}
|
387 |
+
|
388 |
+
.premium-banner-animation4 .premium-banner-ib-title {
|
389 |
+
padding: 50px 30px 0 30px;
|
390 |
+
-webkit-transition: -webkit-transform 0.35s;
|
391 |
+
transition: -webkit-transform 0.35s;
|
392 |
+
transition: transform 0.35s;
|
393 |
+
transition: transform 0.35s, -webkit-transform 0.35s;
|
394 |
+
}
|
395 |
+
|
396 |
+
.premium-banner-animation4 .premium-banner-ib-content,
|
397 |
+
.premium-banner-animation4 .premium-banner-read-more {
|
398 |
+
padding: 10px 30px;
|
399 |
+
opacity: 0;
|
400 |
+
overflow: hidden;
|
401 |
+
-webkit-transform: translate3d(0, -10px, 0);
|
402 |
+
transform: translate3d(0, -10px, 0);
|
403 |
+
}
|
404 |
+
|
405 |
+
.premium-banner-animation4 .premium-banner-ib-title,
|
406 |
+
.premium-banner-animation4 img {
|
407 |
+
-webkit-transform: translate3d(30px, 0, 0);
|
408 |
+
transform: translate3d(30px, 0, 0);
|
409 |
+
}
|
410 |
+
|
411 |
+
.premium-banner-animation4.zoomout img,
|
412 |
+
.premium-banner-animation4.scale img {
|
413 |
+
-webkit-transform: translate3d(30px, 0, 0) scale(1.1);
|
414 |
+
transform: translate3d(30px, 0, 0) scale(1.1);
|
415 |
+
}
|
416 |
+
|
417 |
+
.premium-banner-animation4 .premium-banner-ib-content,
|
418 |
+
.premium-banner-animation4 .premium-banner-read-more {
|
419 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
420 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
421 |
+
transition: opacity 0.35s, transform 0.35s;
|
422 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
423 |
+
}
|
424 |
+
|
425 |
+
.premium-banner-animation4 .premium-banner-ib-desc::after,
|
426 |
+
.premium-banner-animation4 .premium-banner-ib-desc::before {
|
427 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
428 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
429 |
+
transition: opacity 0.35s, transform 0.35s;
|
430 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
431 |
+
}
|
432 |
+
|
433 |
+
.premium-banner-animation4 img {
|
434 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
435 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
436 |
+
transition: opacity 0.35s, transform 0.35s;
|
437 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
438 |
+
}
|
439 |
+
|
440 |
+
.premium-banner-animation4:hover .premium-banner-ib-desc::after,
|
441 |
+
.premium-banner-animation4.active .premium-banner-ib-desc::after,
|
442 |
+
.premium-banner-animation4:hover .premium-banner-ib-desc::before,
|
443 |
+
.premium-banner-animation4.active .premium-banner-ib-desc::before {
|
444 |
+
opacity: 1;
|
445 |
+
-webkit-transform: scale(1);
|
446 |
+
-ms-transform: scale(1);
|
447 |
+
transform: scale(1);
|
448 |
+
}
|
449 |
+
|
450 |
+
.premium-banner-animation4:hover .premium-banner-ib-content,
|
451 |
+
.premium-banner-animation4.active .premium-banner-ib-content,
|
452 |
+
.premium-banner-animation4:hover .premium-banner-read-more,
|
453 |
+
.premium-banner-animation4.active .premium-banner-read-more,
|
454 |
+
.premium-banner-animation4:hover .premium-banner-ib-title,
|
455 |
+
.premium-banner-animation4.active .premium-banner-ib-title {
|
456 |
+
opacity: 1;
|
457 |
+
-webkit-transform: translate3d(0, 0, 0);
|
458 |
+
transform: translate3d(0, 0, 0);
|
459 |
+
}
|
460 |
+
|
461 |
+
.premium-banner-animation4:hover .premium-banner-ib-content,
|
462 |
+
.premium-banner-animation4:hover .premium-banner-ib-desc::after,
|
463 |
+
.premium-banner-animation4:hover .premium-banner-ib-title,
|
464 |
+
.premium-banner-animation4:hover img {
|
465 |
+
-webkit-transition-delay: 0.15s;
|
466 |
+
transition-delay: 0.15s;
|
467 |
+
}
|
468 |
+
|
469 |
+
.premium-banner-animation5 .premium-banner-ib-desc {
|
470 |
+
top: auto;
|
471 |
+
bottom: 0;
|
472 |
+
padding: 15px;
|
473 |
+
height: auto;
|
474 |
+
background: #f2f2f2;
|
475 |
+
color: #3c4a50;
|
476 |
+
-webkit-transition: -webkit-transform 0.35s;
|
477 |
+
transition: -webkit-transform 0.35s;
|
478 |
+
transition: transform 0.35s;
|
479 |
+
transition: transform 0.35s, -webkit-transform 0.35s;
|
480 |
+
-webkit-transform: translate3d(0, 100%, 0);
|
481 |
+
transform: translate3d(0, 100%, 0);
|
482 |
+
}
|
483 |
+
|
484 |
+
.premium-banner-animation5 .premium-banner-ib-content {
|
485 |
+
position: absolute;
|
486 |
+
top: auto;
|
487 |
+
bottom: 100%;
|
488 |
+
right: 0;
|
489 |
+
width: 100%;
|
490 |
+
padding: 15px;
|
491 |
+
opacity: 0;
|
492 |
+
-webkit-transition: opacity 0.35s;
|
493 |
+
transition: opacity 0.35s;
|
494 |
+
}
|
495 |
+
|
496 |
+
.premium-banner-animation5 .premium-banner-ib-title,
|
497 |
+
.premium-banner-animation5 .premium-banner-read-more {
|
498 |
+
-webkit-transition: -webkit-transform 0.35s;
|
499 |
+
transition: -webkit-transform 0.35s;
|
500 |
+
transition: transform 0.35s;
|
501 |
+
transition: transform 0.35s, -webkit-transform 0.35s;
|
502 |
+
-webkit-transform: translate3d(0, 200%, 0);
|
503 |
+
transform: translate3d(0, 200%, 0);
|
504 |
+
text-align: center;
|
505 |
+
}
|
506 |
+
|
507 |
+
.premium-banner-animation5 .premium-banner-ib-title {
|
508 |
+
margin: 10px 0;
|
509 |
+
}
|
510 |
+
|
511 |
+
.premium-banner-animation5:hover .premium-banner-ib-content,
|
512 |
+
.premium-banner-animation5.active .premium-banner-ib-content,
|
513 |
+
.premium-banner-animation5:hover .premium-banner-ib-content *,
|
514 |
+
.premium-banner-animation5.active .premium-banner-ib-content * {
|
515 |
+
opacity: 1 !important;
|
516 |
+
z-index: 99 !important;
|
517 |
+
-webkit-backface-visibility: hidden !important;
|
518 |
+
backface-visibility: hidden !important;
|
519 |
+
}
|
520 |
+
|
521 |
+
.premium-banner-animation5:hover .premium-banner-ib-desc,
|
522 |
+
.premium-banner-animation5.active .premium-banner-ib-desc,
|
523 |
+
.premium-banner-animation5:hover .premium-banner-ib-title,
|
524 |
+
.premium-banner-animation5.active .premium-banner-ib-title,
|
525 |
+
.premium-banner-animation5:hover .premium-banner-read-more,
|
526 |
+
.premium-banner-animation5.active .premium-banner-read-more {
|
527 |
+
-webkit-transform: translateY(0);
|
528 |
+
-ms-transform: translateY(0);
|
529 |
+
transform: translateY(0);
|
530 |
+
}
|
531 |
+
|
532 |
+
.premium-banner-animation5:hover .premium-banner-ib-title {
|
533 |
+
-webkit-transition-delay: 0.05s;
|
534 |
+
transition-delay: 0.05s;
|
535 |
+
}
|
536 |
+
|
537 |
+
.premium-banner-animation5 img {
|
538 |
+
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
539 |
+
transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
540 |
+
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
541 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s;
|
542 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
543 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
544 |
+
}
|
545 |
+
|
546 |
+
.premium-banner-animation2 img,
|
547 |
+
.premium-banner-animation4 img,
|
548 |
+
.premium-banner-animation6 img {
|
549 |
+
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
550 |
+
transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
551 |
+
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
552 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s;
|
553 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
554 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
555 |
+
}
|
556 |
+
|
557 |
+
.premium-banner-animation5.zoomout img,
|
558 |
+
.premium-banner-animation5.scale img {
|
559 |
+
-webkit-transform: scale(1.1);
|
560 |
+
-ms-transform: scale(1.1);
|
561 |
+
transform: scale(1.1);
|
562 |
+
}
|
563 |
+
|
564 |
+
.premium-banner-animation2.zoomout img,
|
565 |
+
.premium-banner-animation2.scale img {
|
566 |
+
-webkit-transform: scale(1.1);
|
567 |
+
-ms-transform: scale(1.1);
|
568 |
+
transform: scale(1.1);
|
569 |
+
}
|
570 |
+
|
571 |
+
.premium-banner-animation6.zoomout img,
|
572 |
+
.premium-banner-animation6.scale img {
|
573 |
+
-webkit-transform: scale(1.1);
|
574 |
+
-ms-transform: scale(1.1);
|
575 |
+
transform: scale(1.1);
|
576 |
+
}
|
577 |
+
|
578 |
+
.premium-banner-animation5.zoomin:hover img,
|
579 |
+
.premium-banner-animation2.zoomin:hover img,
|
580 |
+
.premium-banner-animation6.zoomin:hover img {
|
581 |
+
-webkit-transform: scale(1.1);
|
582 |
+
-ms-transform: scale(1.1);
|
583 |
+
transform: scale(1.1);
|
584 |
+
}
|
585 |
+
|
586 |
+
.premium-banner-animation5.zoomout:hover img,
|
587 |
+
.premium-banner-animation2.zoomout:hover img,
|
588 |
+
.premium-banner-animation6.zoomout:hover img {
|
589 |
+
-webkit-transform: scale(1);
|
590 |
+
-ms-transform: scale(1);
|
591 |
+
transform: scale(1);
|
592 |
+
}
|
593 |
+
|
594 |
+
.premium-banner-animation5.scale:hover img,
|
595 |
+
.premium-banner-animation2.scale:hover img,
|
596 |
+
.premium-banner-animation6.scale:hover img {
|
597 |
+
-webkit-transform: scale(1.2) rotate(-5deg);
|
598 |
+
-ms-transform: scale(1.2) rotate(-5deg);
|
599 |
+
transform: scale(1.2) rotate(-5deg);
|
600 |
+
}
|
601 |
+
|
602 |
+
.premium-banner-animation5.grayscale:hover img,
|
603 |
+
.premium-banner-animation2.grayscale:hover img,
|
604 |
+
.premium-banner-animation6.grayscale:hover img {
|
605 |
+
-webkit-filter: grayscale(100%);
|
606 |
+
filter: grayscale(100%);
|
607 |
+
}
|
608 |
+
|
609 |
+
.premium-banner-animation5.blur:hover img,
|
610 |
+
.premium-banner-animation2.blur:hover img {
|
611 |
+
-webkit-filter: blur(3px);
|
612 |
+
filter: blur(3px);
|
613 |
+
}
|
614 |
+
|
615 |
+
.premium-banner-animation6.blur:hover img {
|
616 |
+
-webkit-filter: blur(3px);
|
617 |
+
filter: blur(3px);
|
618 |
+
}
|
619 |
+
|
620 |
+
.premium-banner-animation6 .premium-banner-ib-desc {
|
621 |
+
padding: 45px;
|
622 |
+
}
|
623 |
+
|
624 |
+
.premium-banner-animation6 .premium-banner-ib-desc::before {
|
625 |
+
position: absolute;
|
626 |
+
content: "";
|
627 |
+
top: 30px;
|
628 |
+
left: 30px;
|
629 |
+
bottom: 30px;
|
630 |
+
right: 30px;
|
631 |
+
border: 1px solid #fff;
|
632 |
+
}
|
633 |
+
|
634 |
+
.premium-banner-animation6 .premium-banner-ib-title {
|
635 |
+
margin: 20px 0 10px;
|
636 |
+
-webkit-transition: -webkit-transform 0.35s;
|
637 |
+
transition: -webkit-transform 0.35s;
|
638 |
+
transition: transform 0.35s;
|
639 |
+
transition: transform 0.35s, -webkit-transform 0.35s;
|
640 |
+
-webkit-transform: translate3d(0, 100%, 0);
|
641 |
+
transform: translate3d(0, 100%, 0);
|
642 |
+
}
|
643 |
+
|
644 |
+
.premium-banner-animation6 .premium-banner-ib-content,
|
645 |
+
.premium-banner-animation6 .premium-banner-read-more,
|
646 |
+
.premium-banner-animation6 .premium-banner-ib-desc::before {
|
647 |
+
opacity: 0;
|
648 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
649 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
650 |
+
transition: opacity 0.35s, transform 0.35s;
|
651 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
652 |
+
-webkit-transform: scale(0);
|
653 |
+
-ms-transform: scale(0);
|
654 |
+
transform: scale(0);
|
655 |
+
}
|
656 |
+
|
657 |
+
.premium-banner-animation6 .premium-banner-read-more {
|
658 |
+
margin-top: 10px;
|
659 |
+
}
|
660 |
+
|
661 |
+
.premium-banner-animation6:hover .premium-banner-ib-title,
|
662 |
+
.premium-banner-animation6.active .premium-banner-ib-title {
|
663 |
+
-webkit-transform: translate3d(0, 0, 0);
|
664 |
+
transform: translate3d(0, 0, 0);
|
665 |
+
}
|
666 |
+
|
667 |
+
.premium-banner-animation6:hover .premium-banner-ib-content,
|
668 |
+
.premium-banner-animation6.active .premium-banner-ib-content,
|
669 |
+
.premium-banner-animation6:hover .premium-banner-read-more,
|
670 |
+
.premium-banner-animation6.active .premium-banner-read-more,
|
671 |
+
.premium-banner-animation6:hover .premium-banner-ib-desc::before,
|
672 |
+
.premium-banner-animation6.active .premium-banner-ib-desc::before {
|
673 |
+
opacity: 1;
|
674 |
+
-webkit-transform: scale(1);
|
675 |
+
-ms-transform: scale(1);
|
676 |
+
transform: scale(1);
|
677 |
+
}
|
678 |
+
|
679 |
+
.premium-banner-animation12 .premium-banner-ib-desc::after {
|
680 |
+
position: absolute;
|
681 |
+
content: "";
|
682 |
+
left: 30px;
|
683 |
+
bottom: 30px;
|
684 |
+
right: 30px;
|
685 |
+
height: -webkit-calc(50% - 30px);
|
686 |
+
height: calc(50% - 30px);
|
687 |
+
border: 7px solid #fff;
|
688 |
+
-webkit-transition: -webkit-transform 0.35s;
|
689 |
+
transition: -webkit-transform 0.35s;
|
690 |
+
transition: transform 0.35s;
|
691 |
+
transition: transform 0.35s, -webkit-transform 0.35s;
|
692 |
+
-webkit-transform: translate3d(0, -100%, 0);
|
693 |
+
transform: translate3d(0, -100%, 0);
|
694 |
+
}
|
695 |
+
|
696 |
+
.premium-banner-animation12:hover .premium-banner-ib-desc::after,
|
697 |
+
.premium-banner-animation12.active .premium-banner-ib-desc::after {
|
698 |
+
-webkit-transform: translate3d(0, 0, 0);
|
699 |
+
transform: translate3d(0, 0, 0);
|
700 |
+
}
|
701 |
+
|
702 |
+
.premium-banner-animation12 .premium-banner-ib-desc {
|
703 |
+
padding: 45px;
|
704 |
+
text-align: right;
|
705 |
+
}
|
706 |
+
|
707 |
+
.premium-banner-animation12 .premium-banner-ib-content {
|
708 |
+
position: absolute;
|
709 |
+
left: 60px;
|
710 |
+
bottom: 60px;
|
711 |
+
right: 60px;
|
712 |
+
opacity: 0;
|
713 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
714 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
715 |
+
transition: opacity 0.35s, transform 0.35s;
|
716 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
717 |
+
-webkit-transform: translate3d(0, -100px, 0);
|
718 |
+
transform: translate3d(0, -100px, 0);
|
719 |
+
}
|
720 |
+
|
721 |
+
.premium-banner-animation12:hover .premium-banner-ib-content,
|
722 |
+
.premium-banner-animation12.active .premium-banner-ib-content {
|
723 |
+
opacity: 1;
|
724 |
+
-webkit-transform: translate3d(0, 0, 0);
|
725 |
+
transform: translate3d(0, 0, 0);
|
726 |
+
}
|
727 |
+
|
728 |
+
.premium-banner-animation13 img {
|
729 |
+
width: -webkit-calc(100% + 20px) !important;
|
730 |
+
width: calc(100% + 20px) !important;
|
731 |
+
max-width: -webkit-calc(100% + 20px) !important;
|
732 |
+
max-width: calc(100% + 20px) !important;
|
733 |
+
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
734 |
+
transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
735 |
+
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
736 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s;
|
737 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
738 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
739 |
+
-webkit-transform: translate3d(10px, 0, 0);
|
740 |
+
transform: translate3d(10px, 0, 0);
|
741 |
+
-webkit-backface-visibility: hidden;
|
742 |
+
backface-visibility: hidden;
|
743 |
+
}
|
744 |
+
|
745 |
+
.premium-banner-animation13.zoomout img,
|
746 |
+
.premium-banner-animation13.scale img {
|
747 |
+
-webkit-transform: translate3d(10px, 0, 0) scale(1.1);
|
748 |
+
transform: translate3d(10px, 0, 0) scale(1.1);
|
749 |
+
}
|
750 |
+
|
751 |
+
.premium-banner-animation13.none:hover img {
|
752 |
+
-webkit-transform: translate3d(0, 0, 0);
|
753 |
+
transform: translate3d(0, 0, 0);
|
754 |
+
}
|
755 |
+
|
756 |
+
.premium-banner-animation1.none:hover img,
|
757 |
+
.premium-banner-animation4.none:hover img {
|
758 |
+
-webkit-transform: translate3d(0, 0, 0);
|
759 |
+
transform: translate3d(0, 0, 0);
|
760 |
+
}
|
761 |
+
|
762 |
+
.premium-banner-animation13.zoomin:hover img,
|
763 |
+
.premium-banner-animation1.zoomin:hover img,
|
764 |
+
.premium-banner-animation4.zoomin:hover img,
|
765 |
+
.premium-banner-animation8.zoomin:hover img,
|
766 |
+
.premium-banner-animation7.zoomin:hover img,
|
767 |
+
.premium-banner-animation9.zoomin:hover img,
|
768 |
+
.premium-banner-animation10.zoomin:hover img,
|
769 |
+
.premium-banner-animation11.zoomin:hover img {
|
770 |
+
-webkit-transform: translate3d(0, 0, 0) scale(1.1);
|
771 |
+
transform: translate3d(0, 0, 0) scale(1.1);
|
772 |
+
}
|
773 |
+
|
774 |
+
.premium-banner-animation13.zoomout:hover img,
|
775 |
+
.premium-banner-animation1.zoomout:hover img,
|
776 |
+
.premium-banner-animation4.zoomout:hover img,
|
777 |
+
.premium-banner-animation8.zoomout:hover img,
|
778 |
+
.premium-banner-animation7.zoomout:hover img,
|
779 |
+
.premium-banner-animation9.zoomout:hover img,
|
780 |
+
.premium-banner-animation10.zoomout:hover img,
|
781 |
+
.premium-banner-animation11.zoomout:hover img {
|
782 |
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
783 |
+
transform: translate3d(0, 0, 0) scale(1);
|
784 |
+
}
|
785 |
+
|
786 |
+
.premium-banner-animation13.scale:hover img,
|
787 |
+
.premium-banner-animation1.scale:hover img,
|
788 |
+
.premium-banner-animation4.scale:hover img,
|
789 |
+
.premium-banner-animation8.scale:hover img,
|
790 |
+
.premium-banner-animation7.scale:hover img,
|
791 |
+
.premium-banner-animation9.scale:hover img,
|
792 |
+
.premium-banner-animation10.scale:hover img,
|
793 |
+
.premium-banner-animation11.scale:hover img {
|
794 |
+
-webkit-transform: translate3d(0, 0, 0) scale(1.2) rotate(-5deg);
|
795 |
+
transform: translate3d(0, 0, 0) scale(1.2) rotate(-5deg);
|
796 |
+
}
|
797 |
+
|
798 |
+
.premium-banner-animation13.grayscale:hover img,
|
799 |
+
.premium-banner-animation1.grayscale:hover img,
|
800 |
+
.premium-banner-animation4.grayscale:hover img,
|
801 |
+
.premium-banner-animation8.grayscale:hover img,
|
802 |
+
.premium-banner-animation7.grayscale:hover img,
|
803 |
+
.premium-banner-animation9.grayscale:hover img,
|
804 |
+
.premium-banner-animation10.grayscale:hover img,
|
805 |
+
.premium-banner-animation11.grayscale:hover img {
|
806 |
+
-webkit-transform: translate3d(0, 0, 0);
|
807 |
+
transform: translate3d(0, 0, 0);
|
808 |
+
-webkit-filter: grayscale(100%);
|
809 |
+
filter: grayscale(100%);
|
810 |
+
}
|
811 |
+
|
812 |
+
.premium-banner-animation13.blur:hover img,
|
813 |
+
.premium-banner-animation1.blur:hover img,
|
814 |
+
.premium-banner-animation4.blur:hover,
|
815 |
+
.premium-banner-animation8.blur:hover img,
|
816 |
+
.premium-banner-animation7.blur:hover img,
|
817 |
+
.premium-banner-animation9.blur:hover img,
|
818 |
+
.premium-banner-animation10.blur:hover img,
|
819 |
+
.premium-banner-animation11.blur:hover img {
|
820 |
+
-webkit-transform: translate3d(0, 0, 0);
|
821 |
+
transform: translate3d(0, 0, 0);
|
822 |
+
-webkit-filter: blur(3px);
|
823 |
+
filter: blur(3px);
|
824 |
+
}
|
825 |
+
|
826 |
+
.premium-banner-animation13 .premium-banner-ib-desc {
|
827 |
+
text-align: right;
|
828 |
+
}
|
829 |
+
|
830 |
+
.premium-banner-animation13 .premium-banner-ib-title {
|
831 |
+
position: relative;
|
832 |
+
overflow: hidden;
|
833 |
+
padding: 5px 0 10px;
|
834 |
+
}
|
835 |
+
|
836 |
+
.premium-banner-animation13 .premium-banner-ib-title::after {
|
837 |
+
position: absolute;
|
838 |
+
content: "";
|
839 |
+
bottom: 0;
|
840 |
+
right: 0;
|
841 |
+
width: 100%;
|
842 |
+
height: 2px;
|
843 |
+
background: #fff;
|
844 |
+
-webkit-transition: -webkit-transform 0.35s;
|
845 |
+
transition: -webkit-transform 0.35s;
|
846 |
+
transition: transform 0.35s;
|
847 |
+
transition: transform 0.35s, -webkit-transform 0.35s;
|
848 |
+
-webkit-transform: translate3d(101%, 0, 0);
|
849 |
+
transform: translate3d(101%, 0, 0);
|
850 |
+
}
|
851 |
+
|
852 |
+
.premium-banner-animation13:hover .premium-banner-ib-title::after,
|
853 |
+
.premium-banner-animation13.active .premium-banner-ib-title::after {
|
854 |
+
-webkit-transform: translate3d(0, 0, 0);
|
855 |
+
transform: translate3d(0, 0, 0);
|
856 |
+
}
|
857 |
+
|
858 |
+
.premium-banner-animation13 .premium-banner-ib-content,
|
859 |
+
.premium-banner-animation13 .premium-banner-read-more {
|
860 |
+
padding: 15px 0;
|
861 |
+
opacity: 0;
|
862 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
863 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
864 |
+
transition: opacity 0.35s, transform 0.35s;
|
865 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
866 |
+
-webkit-transform: translate3d(-100%, 0, 0);
|
867 |
+
transform: translate3d(-100%, 0, 0);
|
868 |
+
}
|
869 |
+
|
870 |
+
.premium-banner-animation13:hover .premium-banner-ib-content,
|
871 |
+
.premium-banner-animation13.active .premium-banner-ib-content,
|
872 |
+
.premium-banner-animation13:hover .premium-banner-read-more,
|
873 |
+
.premium-banner-animation13.active .premium-banner-read-more {
|
874 |
+
opacity: 1;
|
875 |
+
-webkit-transform: translate3d(0, 0, 0);
|
876 |
+
transform: translate3d(0, 0, 0);
|
877 |
+
}
|
878 |
+
|
879 |
+
.premium-banner-ib.premium-banner-animation5 .premium-banner-toggle-size {
|
880 |
+
right: 50%;
|
881 |
+
width: auto !important;
|
882 |
+
height: 100%;
|
883 |
+
max-width: none;
|
884 |
+
-webkit-transform: translateX(50%);
|
885 |
+
-ms-transform: translateX(50%);
|
886 |
+
transform: translateX(50%);
|
887 |
+
}
|
888 |
+
|
889 |
+
.premium-banner-ib img {
|
890 |
+
border: none;
|
891 |
+
padding: 0;
|
892 |
+
margin: 0;
|
893 |
+
}
|
894 |
+
|
895 |
+
.premium-banner-animation7 img {
|
896 |
+
width: -webkit-calc(100% + 40px) !important;
|
897 |
+
width: calc(100% + 40px) !important;
|
898 |
+
max-width: -webkit-calc(100% + 40px) !important;
|
899 |
+
max-width: calc(100% + 40px) !important;
|
900 |
+
}
|
901 |
+
|
902 |
+
.premium-banner-animation7 .premium-banner-brlr {
|
903 |
+
width: 7px;
|
904 |
+
}
|
905 |
+
|
906 |
+
.premium-banner-animation7 .premium-banner-brtb {
|
907 |
+
height: 7px;
|
908 |
+
}
|
909 |
+
|
910 |
+
.premium-banner-animation7 .premium-banner-br {
|
911 |
+
position: absolute;
|
912 |
+
z-index: 1;
|
913 |
+
background-color: white;
|
914 |
+
-webkit-transition: all 0.3s ease-in-out;
|
915 |
+
transition: all 0.3s ease-in-out;
|
916 |
+
-webkit-transition-delay: 0.2s;
|
917 |
+
transition-delay: 0.2s;
|
918 |
+
}
|
919 |
+
|
920 |
+
.premium-banner-animation7 .premium-banner-bleft {
|
921 |
+
right: 30px;
|
922 |
+
top: -webkit-calc(100% - 150px);
|
923 |
+
top: calc(100% - 150px);
|
924 |
+
height: 0;
|
925 |
+
}
|
926 |
+
|
927 |
+
.premium-banner-animation7 .premium-banner-bright {
|
928 |
+
left: 30px;
|
929 |
+
bottom: -webkit-calc(100% - 150px);
|
930 |
+
bottom: calc(100% - 150px);
|
931 |
+
height: 0;
|
932 |
+
}
|
933 |
+
|
934 |
+
.premium-banner-animation7 .premium-banner-bottom {
|
935 |
+
left: -webkit-calc(100% - 150px);
|
936 |
+
left: calc(100% - 150px);
|
937 |
+
bottom: 30px;
|
938 |
+
width: 0;
|
939 |
+
}
|
940 |
+
|
941 |
+
.premium-banner-animation7 .premium-banner-btop {
|
942 |
+
right: -webkit-calc(100% - 150px);
|
943 |
+
right: calc(100% - 150px);
|
944 |
+
top: 30px;
|
945 |
+
width: 0;
|
946 |
+
}
|
947 |
+
|
948 |
+
.premium-banner-animation7 .premium-banner-ib-desc {
|
949 |
+
padding: 70px;
|
950 |
+
display: table;
|
951 |
+
}
|
952 |
+
|
953 |
+
.premium-banner-animation7 .premium-banner-ib-desc .premium-banner-desc-centered {
|
954 |
+
display: table-cell;
|
955 |
+
vertical-align: middle;
|
956 |
+
}
|
957 |
+
|
958 |
+
.premium-banner-animation7 .premium-banner-ib-title {
|
959 |
+
margin-top: 0;
|
960 |
+
}
|
961 |
+
|
962 |
+
.premium-banner-animation7 .premium-banner-ib-title,
|
963 |
+
.premium-banner-animation7 img {
|
964 |
+
-webkit-transform: translate3d(30px, 0, 0);
|
965 |
+
transform: translate3d(30px, 0, 0);
|
966 |
+
}
|
967 |
+
|
968 |
+
.premium-banner-animation7.zoomout img,
|
969 |
+
.premium-banner-animation7.scale img {
|
970 |
+
-webkit-transform: translate3d(30px, 0, 0) scale(1.1);
|
971 |
+
transform: translate3d(30px, 0, 0) scale(1.1);
|
972 |
+
}
|
973 |
+
|
974 |
+
.premium-banner-animation7 .premium-banner-ib-content,
|
975 |
+
.premium-banner-animation7 .premium-banner-read-more {
|
976 |
+
margin-top: 10px;
|
977 |
+
}
|
978 |
+
|
979 |
+
.premium-banner-animation7 .premium-banner-ib-desc::after,
|
980 |
+
.premium-banner-animation7 .premium-banner-ib-desc::before {
|
981 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
982 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
983 |
+
transition: opacity 0.35s, transform 0.35s;
|
984 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
985 |
+
}
|
986 |
+
|
987 |
+
.premium-banner-animation7 .premium-banner-ib-title,
|
988 |
+
.premium-banner-animation7 .premium-banner-ib-content,
|
989 |
+
.premium-banner-animation7 .premium-banner-read-more {
|
990 |
+
opacity: 0;
|
991 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
992 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
993 |
+
transition: opacity 0.35s, transform 0.35s;
|
994 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
995 |
+
}
|
996 |
+
|
997 |
+
.premium-banner-animation7 img {
|
998 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
999 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
1000 |
+
transition: opacity 0.35s, transform 0.35s;
|
1001 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
1002 |
+
}
|
1003 |
+
|
1004 |
+
.premium-banner-animation7:hover .premium-banner-ib-content,
|
1005 |
+
.premium-banner-animation7.active .premium-banner-ib-content,
|
1006 |
+
.premium-banner-animation7:hover .premium-banner-read-more,
|
1007 |
+
.premium-banner-animation7.active .premium-banner-read-more,
|
1008 |
+
.premium-banner-animation7:hover .premium-banner-ib-title,
|
1009 |
+
.premium-banner-animation7.active .premium-banner-ib-title {
|
1010 |
+
opacity: 1;
|
1011 |
+
-webkit-transform: translate3d(0, 0, 0);
|
1012 |
+
transform: translate3d(0, 0, 0);
|
1013 |
+
}
|
1014 |
+
|
1015 |
+
.premium-banner-animation7:hover .premium-banner-bleft,
|
1016 |
+
.premium-banner-animation7.active .premium-banner-bleft {
|
1017 |
+
top: 30px;
|
1018 |
+
height: 70px;
|
1019 |
+
}
|
1020 |
+
|
1021 |
+
.premium-banner-animation7:hover .premium-banner-bright,
|
1022 |
+
.premium-banner-animation7.active .premium-banner-bright {
|
1023 |
+
bottom: 30px;
|
1024 |
+
height: 70px;
|
1025 |
+
}
|
1026 |
+
|
1027 |
+
.premium-banner-animation7:hover .premium-banner-bottom,
|
1028 |
+
.premium-banner-animation7.active .premium-banner-bottom {
|
1029 |
+
left: 30px;
|
1030 |
+
width: 70px;
|
1031 |
+
}
|
1032 |
+
|
1033 |
+
.premium-banner-animation7:hover .premium-banner-btop,
|
1034 |
+
.premium-banner-animation7.active .premium-banner-btop {
|
1035 |
+
right: 30px;
|
1036 |
+
width: 70px;
|
1037 |
+
}
|
1038 |
+
|
1039 |
+
.premium-banner-animation7:hover .premium-banner-ib-content,
|
1040 |
+
.premium-banner-animation7:hover .premium-banner-read-more,
|
1041 |
+
.premium-banner-animation7:hover .premium-banner-ib-title,
|
1042 |
+
.premium-banner-animation7:hover img {
|
1043 |
+
-webkit-transition-delay: 0.15s;
|
1044 |
+
transition-delay: 0.15s;
|
1045 |
+
}
|
1046 |
+
|
1047 |
+
.premium-banner-animation8 img {
|
1048 |
+
width: -webkit-calc(100% + 40px) !important;
|
1049 |
+
width: calc(100% + 40px) !important;
|
1050 |
+
max-width: -webkit-calc(100% + 40px) !important;
|
1051 |
+
max-width: calc(100% + 40px) !important;
|
1052 |
+
}
|
1053 |
+
|
1054 |
+
.premium-banner-animation8 .premium-banner-brlr {
|
1055 |
+
width: 7px;
|
1056 |
+
}
|
1057 |
+
|
1058 |
+
.premium-banner-animation8 .premium-banner-brtb {
|
1059 |
+
height: 7px;
|
1060 |
+
}
|
1061 |
+
|
1062 |
+
.premium-banner-animation8 .premium-banner-br {
|
1063 |
+
position: absolute;
|
1064 |
+
z-index: 1;
|
1065 |
+
background-color: white;
|
1066 |
+
-webkit-transition: all 0.3s ease-in-out;
|
1067 |
+
transition: all 0.3s ease-in-out;
|
1068 |
+
-webkit-transition-delay: 0.2s;
|
1069 |
+
transition-delay: 0.2s;
|
1070 |
+
}
|
1071 |
+
|
1072 |
+
.premium-banner-animation8 .premium-banner-bleft {
|
1073 |
+
right: 30px;
|
1074 |
+
top: 50%;
|
1075 |
+
-webkit-transform: translateY(-50%);
|
1076 |
+
-ms-transform: translateY(-50%);
|
1077 |
+
transform: translateY(-50%);
|
1078 |
+
height: 0;
|
1079 |
+
}
|
1080 |
+
|
1081 |
+
.premium-banner-animation8 .premium-banner-bright {
|
1082 |
+
left: 30px;
|
1083 |
+
top: 50%;
|
1084 |
+
-webkit-transform: translateY(-50%);
|
1085 |
+
-ms-transform: translateY(-50%);
|
1086 |
+
transform: translateY(-50%);
|
1087 |
+
height: 0;
|
1088 |
+
}
|
1089 |
+
|
1090 |
+
.premium-banner-animation8 .premium-banner-bottom {
|
1091 |
+
right: 50%;
|
1092 |
+
-webkit-transform: translateX(50%);
|
1093 |
+
-ms-transform: translateX(50%);
|
1094 |
+
transform: translateX(50%);
|
1095 |
+
bottom: 30px;
|
1096 |
+
width: 0;
|
1097 |
+
}
|
1098 |
+
|
1099 |
+
.premium-banner-animation8 .premium-banner-btop {
|
1100 |
+
right: 50%;
|
1101 |
+
-webkit-transform: translateX(50%);
|
1102 |
+
-ms-transform: translateX(50%);
|
1103 |
+
transform: translateX(50%);
|
1104 |
+
top: 30px;
|
1105 |
+
width: 0;
|
1106 |
+
}
|
1107 |
+
|
1108 |
+
.premium-banner-animation8 .premium-banner-ib-desc {
|
1109 |
+
padding: 70px;
|
1110 |
+
display: table;
|
1111 |
+
}
|
1112 |
+
|
1113 |
+
.premium-banner-animation8 .premium-banner-ib-desc .premium-banner-desc-centered {
|
1114 |
+
display: table-cell;
|
1115 |
+
vertical-align: middle;
|
1116 |
+
}
|
1117 |
+
|
1118 |
+
.premium-banner-animation8 .premium-banner-ib-title {
|
1119 |
+
margin-top: 0;
|
1120 |
+
}
|
1121 |
+
|
1122 |
+
.premium-banner-animation8 .premium-banner-ib-title,
|
1123 |
+
.premium-banner-animation8 img {
|
1124 |
+
-webkit-transform: translate3d(30px, 0, 0);
|
1125 |
+
transform: translate3d(30px, 0, 0);
|
1126 |
+
}
|
1127 |
+
|
1128 |
+
.premium-banner-animation8.zoomout img,
|
1129 |
+
.premium-banner-animation8.scale img {
|
1130 |
+
-webkit-transform: translate3d(30px, 0, 0) scale(1.1);
|
1131 |
+
transform: translate3d(30px, 0, 0) scale(1.1);
|
1132 |
+
}
|
1133 |
+
|
1134 |
+
.premium-banner-animation8 .premium-banner-ib-content,
|
1135 |
+
.premium-banner-animation8 .premium-banner-read-more {
|
1136 |
+
margin-top: 10px;
|
1137 |
+
}
|
1138 |
+
|
1139 |
+
.premium-banner-animation8 .premium-banner-ib-desc::after,
|
1140 |
+
.premium-banner-animation8 .premium-banner-ib-desc::before {
|
1141 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
1142 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
1143 |
+
transition: opacity 0.35s, transform 0.35s;
|
1144 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
1145 |
+
}
|
1146 |
+
|
1147 |
+
.premium-banner-animation8 .premium-banner-ib-title,
|
1148 |
+
.premium-banner-animation8 .premium-banner-ib-content,
|
1149 |
+
.premium-banner-animation8 .premium-banner-read-more {
|
1150 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
1151 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
1152 |
+
transition: opacity 0.35s, transform 0.35s;
|
1153 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
1154 |
+
opacity: 0;
|
1155 |
+
}
|
1156 |
+
|
1157 |
+
.premium-banner-animation8 img {
|
1158 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
1159 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
1160 |
+
transition: opacity 0.35s, transform 0.35s;
|
1161 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
1162 |
+
}
|
1163 |
+
|
1164 |
+
.premium-banner-animation8:hover .premium-banner-ib-content,
|
1165 |
+
.premium-banner-animation8.active .premium-banner-ib-content,
|
1166 |
+
.premium-banner-animation8:hover .premium-banner-read-more,
|
1167 |
+
.premium-banner-animation8.active .premium-banner-read-more,
|
1168 |
+
.premium-banner-animation8:hover .premium-banner-ib-title,
|
1169 |
+
.premium-banner-animation8.active .premium-banner-ib-title {
|
1170 |
+
opacity: 1;
|
1171 |
+
-webkit-transform: translate3d(0, 0, 0);
|
1172 |
+
transform: translate3d(0, 0, 0);
|
1173 |
+
}
|
1174 |
+
|
1175 |
+
.premium-banner-animation8:hover .premium-banner-bleft,
|
1176 |
+
.premium-banner-animation8.active .premium-banner-bleft {
|
1177 |
+
height: -webkit-calc(100% - 61px);
|
1178 |
+
height: calc(100% - 61px);
|
1179 |
+
}
|
1180 |
+
|
1181 |
+
.premium-banner-animation8:hover .premium-banner-bright,
|
1182 |
+
.premium-banner-animation8.active .premium-banner-bright {
|
1183 |
+
height: -webkit-calc(100% - 61px);
|
1184 |
+
height: calc(100% - 61px);
|
1185 |
+
}
|
1186 |
+
|
1187 |
+
.premium-banner-animation8:hover .premium-banner-bottom,
|
1188 |
+
.premium-banner-animation8.active .premium-banner-bottom {
|
1189 |
+
width: -webkit-calc(100% - 61px);
|
1190 |
+
width: calc(100% - 61px);
|
1191 |
+
}
|
1192 |
+
|
1193 |
+
.premium-banner-animation8:hover .premium-banner-btop,
|
1194 |
+
.premium-banner-animation8.active .premium-banner-btop {
|
1195 |
+
width: -webkit-calc(100% - 61px);
|
1196 |
+
width: calc(100% - 61px);
|
1197 |
+
}
|
1198 |
+
|
1199 |
+
.premium-banner-animation8:hover .premium-banner-ib-content,
|
1200 |
+
.premium-banner-animation8:hover .premium-banner-ib-title,
|
1201 |
+
.premium-banner-animation8:hover .premium-banner-read-more,
|
1202 |
+
.premium-banner-animation8:hover img {
|
1203 |
+
-webkit-transition-delay: 0.15s;
|
1204 |
+
transition-delay: 0.15s;
|
1205 |
+
}
|
1206 |
+
|
1207 |
+
.premium-banner-animation9 img {
|
1208 |
+
width: -webkit-calc(100% + 20px) !important;
|
1209 |
+
width: calc(100% + 20px) !important;
|
1210 |
+
max-width: -webkit-calc(100% + 20px) !important;
|
1211 |
+
max-width: calc(100% + 20px) !important;
|
1212 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
1213 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
1214 |
+
transition: opacity 0.35s, transform 0.35s;
|
1215 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
1216 |
+
-webkit-transform: scale(1.2);
|
1217 |
+
-ms-transform: scale(1.2);
|
1218 |
+
transform: scale(1.2);
|
1219 |
+
}
|
1220 |
+
|
1221 |
+
.premium-banner-animation9 .premium-banner-ib-desc {
|
1222 |
+
width: 100%;
|
1223 |
+
height: 100%;
|
1224 |
+
}
|
1225 |
+
|
1226 |
+
.premium-banner-animation9 .premium-banner-ib-desc::before {
|
1227 |
+
position: absolute;
|
1228 |
+
top: 50%;
|
1229 |
+
right: 50%;
|
1230 |
+
width: 80%;
|
1231 |
+
height: 1px;
|
1232 |
+
background: #fff;
|
1233 |
+
content: "";
|
1234 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
1235 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
1236 |
+
transition: opacity 0.35s, transform 0.35s;
|
1237 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
1238 |
+
-webkit-transform: translate3d(50%, -50%, 0);
|
1239 |
+
transform: translate3d(50%, -50%, 0);
|
1240 |
+
}
|
1241 |
+
|
1242 |
+
.premium-banner-animation9 .premium-banner-ib-desc::after {
|
1243 |
+
position: absolute;
|
1244 |
+
top: 50%;
|
1245 |
+
right: 50%;
|
1246 |
+
width: 80%;
|
1247 |
+
height: 1px;
|
1248 |
+
background: #fff;
|
1249 |
+
content: "";
|
1250 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
1251 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
1252 |
+
transition: opacity 0.35s, transform 0.35s;
|
1253 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
1254 |
+
-webkit-transform: translate3d(50%, -50%, 0);
|
1255 |
+
transform: translate3d(50%, -50%, 0);
|
1256 |
+
}
|
1257 |
+
|
1258 |
+
.premium-banner-animation9 .premium-banner-ib-title {
|
1259 |
+
position: absolute;
|
1260 |
+
top: 50%;
|
1261 |
+
right: 0;
|
1262 |
+
width: 100%;
|
1263 |
+
-webkit-transition: -webkit-transform 0.35s;
|
1264 |
+
transition: -webkit-transform 0.35s;
|
1265 |
+
transition: transform 0.35s;
|
1266 |
+
transition: transform 0.35s, -webkit-transform 0.35s;
|
1267 |
+
-webkit-transform: translate3d(0, -70px, 0);
|
1268 |
+
transform: translate3d(0, -70px, 0);
|
1269 |
+
margin-top: 0;
|
1270 |
+
padding: 0 10%;
|
1271 |
+
}
|
1272 |
+
|
1273 |
+
.premium-banner-animation9:hover .premium-banner-ib-title,
|
1274 |
+
.premium-banner-animation9.active .premium-banner-ib-title {
|
1275 |
+
-webkit-transform: translate3d(0, -80px, 0);
|
1276 |
+
transform: translate3d(0, -80px, 0);
|
1277 |
+
}
|
1278 |
+
|
1279 |
+
.premium-banner-animation9 .premium-banner-ib-content,
|
1280 |
+
.premium-banner-animation9 .premium-banner-read-more {
|
1281 |
+
position: absolute;
|
1282 |
+
top: 50%;
|
1283 |
+
right: 0;
|
1284 |
+
width: 100%;
|
1285 |
+
-webkit-transition: -webkit-transform 0.35s;
|
1286 |
+
transition: -webkit-transform 0.35s;
|
1287 |
+
transition: transform 0.35s;
|
1288 |
+
transition: transform 0.35s, -webkit-transform 0.35s;
|
1289 |
+
padding: 0 10%;
|
1290 |
+
-webkit-transform: translate3d(0, 35px, 0);
|
1291 |
+
transform: translate3d(0, 35px, 0);
|
1292 |
+
}
|
1293 |
+
|
1294 |
+
.premium-banner-animation9 .premium-banner-read-more {
|
1295 |
+
top: 75%;
|
1296 |
+
}
|
1297 |
+
|
1298 |
+
.premium-banner-animation9:hover .premium-banner-ib-content,
|
1299 |
+
.premium-banner-animation9.active .premium-banner-ib-content,
|
1300 |
+
.premium-banner-animation9:hover .premium-banner-read-more,
|
1301 |
+
.premium-banner-animation9.active .premium-banner-read-more {
|
1302 |
+
-webkit-transform: translate3d(0, 45px, 0);
|
1303 |
+
transform: translate3d(0, 45px, 0);
|
1304 |
+
}
|
1305 |
+
|
1306 |
+
.premium-banner-animation9:hover .premium-banner-ib-desc::before,
|
1307 |
+
.premium-banner-animation9.active .premium-banner-ib-desc::before {
|
1308 |
+
opacity: 0.5;
|
1309 |
+
-webkit-transform: translate3d(50%, -50%, 0) rotate(-45deg);
|
1310 |
+
transform: translate3d(50%, -50%, 0) rotate(-45deg);
|
1311 |
+
}
|
1312 |
+
|
1313 |
+
.premium-banner-animation9:hover .premium-banner-ib-desc::after,
|
1314 |
+
.premium-banner-animation9.active .premium-banner-ib-desc::after {
|
1315 |
+
opacity: 0.5;
|
1316 |
+
-webkit-transform: translate3d(50%, -50%, 0) rotate(45deg);
|
1317 |
+
transform: translate3d(50%, -50%, 0) rotate(45deg);
|
1318 |
+
}
|
1319 |
+
|
1320 |
+
.premium-banner-animation9:hover img {
|
1321 |
+
-webkit-transform: scale(1);
|
1322 |
+
-ms-transform: scale(1);
|
1323 |
+
transform: scale(1);
|
1324 |
+
}
|
1325 |
+
|
1326 |
+
.premium-banner-animation10 img {
|
1327 |
+
width: -webkit-calc(100% + 20px) !important;
|
1328 |
+
width: calc(100% + 20px) !important;
|
1329 |
+
max-width: -webkit-calc(100% + 20px) !important;
|
1330 |
+
max-width: calc(100% + 20px) !important;
|
1331 |
+
}
|
1332 |
+
|
1333 |
+
.premium-banner-animation10 .premium-banner-ib-title {
|
1334 |
+
position: relative;
|
1335 |
+
overflow: hidden;
|
1336 |
+
padding: 5px 0 15px;
|
1337 |
+
-webkit-transition: -webkit-transform 0.35s;
|
1338 |
+
transition: -webkit-transform 0.35s;
|
1339 |
+
transition: transform 0.35s;
|
1340 |
+
transition: transform 0.35s, -webkit-transform 0.35s;
|
1341 |
+
-webkit-transform: translate3d(0, 20px, 0);
|
1342 |
+
transform: translate3d(0, 20px, 0);
|
1343 |
+
margin-bottom: 0;
|
1344 |
+
}
|
1345 |
+
|
1346 |
+
.premium-banner-animation10 .premium-banner-ib-title::after {
|
1347 |
+
position: absolute;
|
1348 |
+
content: "";
|
1349 |
+
bottom: 0;
|
1350 |
+
right: 0;
|
1351 |
+
width: 100%;
|
1352 |
+
height: 3px;
|
1353 |
+
background: #fff;
|
1354 |
+
opacity: 0;
|
1355 |
+
-webkit-transform: translate3d(0, 100%, 0);
|
1356 |
+
transform: translate3d(0, 100%, 0);
|
1357 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
1358 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
1359 |
+
transition: opacity 0.35s, transform 0.35s;
|
1360 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
1361 |
+
}
|
1362 |
+
|
1363 |
+
.premium-banner-animation10:hover .premium-banner-ib-title,
|
1364 |
+
.premium-banner-animation10.active .premium-banner-ib-title {
|
1365 |
+
-webkit-transform: translate3d(0, 0, 0);
|
1366 |
+
transform: translate3d(0, 0, 0);
|
1367 |
+
}
|
1368 |
+
|
1369 |
+
.premium-banner-animation10:hover .premium-banner-ib-title::after,
|
1370 |
+
.premium-banner-animation10.active .premium-banner-ib-title::after {
|
1371 |
+
opacity: 1;
|
1372 |
+
-webkit-transform: translate3d(0, 0, 0);
|
1373 |
+
transform: translate3d(0, 0, 0);
|
1374 |
+
}
|
1375 |
+
|
1376 |
+
.premium-banner-animation10 .premium-banner-ib-content,
|
1377 |
+
.premium-banner-animation10 .premium-banner-read-more {
|
1378 |
+
padding-top: 15px;
|
1379 |
+
opacity: 0;
|
1380 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
1381 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
1382 |
+
transition: opacity 0.35s, transform 0.35s;
|
1383 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
1384 |
+
-webkit-transform: translate3d(0, 100%, 0);
|
1385 |
+
transform: translate3d(0, 100%, 0);
|
1386 |
+
}
|
1387 |
+
|
1388 |
+
.premium-banner-animation10 .premium-banner-read-more {
|
1389 |
+
padding: 0;
|
1390 |
+
}
|
1391 |
+
|
1392 |
+
.premium-banner-animation10:hover .premium-banner-ib-content,
|
1393 |
+
.premium-banner-animation10.active .premium-banner-ib-content,
|
1394 |
+
.premium-banner-animation10:hover .premium-banner-read-more,
|
1395 |
+
.premium-banner-animation10.active .premium-banner-read-more {
|
1396 |
+
opacity: 1;
|
1397 |
+
-webkit-transform: translate3d(0, 0, 0);
|
1398 |
+
transform: translate3d(0, 0, 0);
|
1399 |
+
}
|
1400 |
+
|
1401 |
+
.premium-banner-animation11 {
|
1402 |
+
-webkit-transition: -webkit-transform 1s ease-out;
|
1403 |
+
transition: -webkit-transform 1s ease-out;
|
1404 |
+
transition: transform 1s ease-out;
|
1405 |
+
transition: transform 1s ease-out, -webkit-transform 1s ease-out;
|
1406 |
+
-webkit-transition-delay: 0.125s;
|
1407 |
+
transition-delay: 0.125s;
|
1408 |
+
}
|
1409 |
+
|
1410 |
+
.premium-banner-animation11 .premium-banner-ib-desc {
|
1411 |
+
position: absolute;
|
1412 |
+
z-index: 5;
|
1413 |
+
-webkit-transform: translate3d(30px, 0, 0);
|
1414 |
+
transform: translate3d(30px, 0, 0);
|
1415 |
+
opacity: 0;
|
1416 |
+
top: auto;
|
1417 |
+
bottom: 0;
|
1418 |
+
min-height: 25%;
|
1419 |
+
height: auto;
|
1420 |
+
max-height: 100%;
|
1421 |
+
text-align: left;
|
1422 |
+
padding: 30px;
|
1423 |
+
-webkit-transition: all 0.6s ease-out;
|
1424 |
+
transition: all 0.6s ease-out;
|
1425 |
+
}
|
1426 |
+
|
1427 |
+
.premium-banner-animation11 img {
|
1428 |
+
width: 100%;
|
1429 |
+
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
1430 |
+
transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
1431 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s;
|
1432 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
1433 |
+
}
|
1434 |
+
|
1435 |
+
.premium-banner-animation11 .premium-banner-ib-title {
|
1436 |
+
margin-bottom: 10px;
|
1437 |
+
}
|
1438 |
+
|
1439 |
+
.premium-banner-animation11 .premium-banner-gradient {
|
1440 |
+
position: absolute;
|
1441 |
+
left: 0;
|
1442 |
+
top: 0;
|
1443 |
+
right: 0;
|
1444 |
+
bottom: 0;
|
1445 |
+
}
|
1446 |
+
|
1447 |
+
.premium-banner-animation11 .premium-banner-gradient:after,
|
1448 |
+
.premium-banner-animation11 .premium-banner-gradient:before {
|
1449 |
+
position: absolute;
|
1450 |
+
content: "";
|
1451 |
+
left: 0;
|
1452 |
+
top: 0;
|
1453 |
+
right: 0;
|
1454 |
+
bottom: 0;
|
1455 |
+
-webkit-transform: translate3d(100%, 0, 0);
|
1456 |
+
transform: translate3d(100%, 0, 0);
|
1457 |
+
background-image: -webkit-linear-gradient(-40deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
|
1458 |
+
background-image: -webkit-linear-gradient(130deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
|
1459 |
+
background-image: linear-gradient(-40deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
|
1460 |
+
z-index: 2;
|
1461 |
+
}
|
1462 |
+
|
1463 |
+
.premium-banner-animation11 .premium-banner-gradient:before {
|
1464 |
+
mix-blend-mode: color;
|
1465 |
+
}
|
1466 |
+
|
1467 |
+
.premium-banner-animation11 .premium-banner-gradient:after {
|
1468 |
+
mix-blend-mode: multiply;
|
1469 |
+
}
|
1470 |
+
|
1471 |
+
.premium-banner-animation11:hover .premium-banner-ib-desc,
|
1472 |
+
.premium-banner-animation11.active .premium-banner-ib-desc {
|
1473 |
+
opacity: 1;
|
1474 |
+
-webkit-transform: translate3d(0, 0, 0);
|
1475 |
+
transform: translate3d(0, 0, 0);
|
1476 |
+
}
|
1477 |
+
|
1478 |
+
.premium-banner-animation11:hover .premium-banner-gradient:after,
|
1479 |
+
.premium-banner-animation11:hover .premium-banner-gradient:before,
|
1480 |
+
.premium-banner-animation11.active .premium-banner-gradient:after,
|
1481 |
+
.premium-banner-animation11.active .premium-banner-gradient:before {
|
1482 |
+
-webkit-transform: translate3d(0, 0, 0);
|
1483 |
+
transform: translate3d(0, 0, 0);
|
1484 |
+
}
|
1485 |
+
|
1486 |
+
.premium-banner-animation11.zoomout img,
|
1487 |
+
.premium-banner-animation11.scale img {
|
1488 |
+
-webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
|
1489 |
+
transform: translate3d(-10px, 0, 0) scale(1.1);
|
1490 |
+
}
|
1491 |
+
|
1492 |
+
/************ Premium Countdown ************/
|
1493 |
+
/*******************************************/
|
1494 |
+
.premium-countdown {
|
1495 |
+
-js-display: flex;
|
1496 |
+
display: -webkit-box;
|
1497 |
+
display: -webkit-flex;
|
1498 |
+
display: -moz-box;
|
1499 |
+
display: -ms-flexbox;
|
1500 |
+
display: flex;
|
1501 |
+
text-align: center;
|
1502 |
+
}
|
1503 |
+
|
1504 |
+
.countdown-row {
|
1505 |
+
display: block;
|
1506 |
+
text-align: center;
|
1507 |
+
}
|
1508 |
+
|
1509 |
+
.countdown .countdown-section {
|
1510 |
+
display: inline-block;
|
1511 |
+
max-width: 100%;
|
1512 |
+
margin-bottom: 15px;
|
1513 |
+
-js-display: inline-flex;
|
1514 |
+
display: -webkit-inline-box;
|
1515 |
+
display: -webkit-inline-flex;
|
1516 |
+
display: -moz-inline-box;
|
1517 |
+
display: -ms-inline-flexbox;
|
1518 |
+
display: inline-flex;
|
1519 |
+
-webkit-box-align: center;
|
1520 |
+
-webkit-align-items: center;
|
1521 |
+
-moz-box-align: center;
|
1522 |
+
-ms-flex-align: center;
|
1523 |
+
align-items: center;
|
1524 |
+
}
|
1525 |
+
|
1526 |
+
.countdown .countdown-section:last-child {
|
1527 |
+
margin-left: 0;
|
1528 |
+
}
|
1529 |
+
|
1530 |
+
.countdown span.countdown-amount {
|
1531 |
+
font-size: 70px;
|
1532 |
+
line-height: 1;
|
1533 |
+
padding: 40px;
|
1534 |
+
}
|
1535 |
+
|
1536 |
+
.countdown .pre_time-mid {
|
1537 |
+
display: block;
|
1538 |
+
}
|
1539 |
+
|
1540 |
+
.premium-countdown-separator-yes .countdown_separator {
|
1541 |
+
display: block;
|
1542 |
+
margin: 0 50px;
|
1543 |
+
font-size: 30px;
|
1544 |
+
}
|
1545 |
+
|
1546 |
+
.premium-countdown-separator-yes .countdown-row .countdown-section:last-child .countdown_separator,
|
1547 |
+
.premium-countdown-separator-yes .premium-countdown-block:last-child .countdown_separator {
|
1548 |
+
display: none;
|
1549 |
+
}
|
1550 |
+
|
1551 |
+
/**
|
1552 |
+
* Digit and unit styles
|
1553 |
+
*/
|
1554 |
+
.side .countdown-section .countdown-period {
|
1555 |
+
vertical-align: bottom;
|
1556 |
+
}
|
1557 |
+
|
1558 |
+
.countdown .countdown-section .countdown-period {
|
1559 |
+
font-size: 17px;
|
1560 |
+
line-height: 3em;
|
1561 |
+
}
|
1562 |
+
|
1563 |
+
.side .countdown-section .countdown-amount,
|
1564 |
+
.side .countdown-section .countdown-period {
|
1565 |
+
display: inline-block;
|
1566 |
+
}
|
1567 |
+
|
1568 |
+
.side .countdown-section .countdown-amount {
|
1569 |
+
margin-left: 5px;
|
1570 |
+
}
|
1571 |
+
|
1572 |
+
.down .countdown-section .countdown-amount,
|
1573 |
+
.down .countdown-section .countdown-period {
|
1574 |
+
display: block;
|
1575 |
+
}
|
1576 |
+
|
1577 |
+
/**
|
1578 |
+
* Flip Layout
|
1579 |
+
*/
|
1580 |
+
.premium-countdown-flip .premium-countdown-block {
|
1581 |
+
text-align: center;
|
1582 |
+
-js-display: inline-flex;
|
1583 |
+
display: -webkit-inline-box;
|
1584 |
+
display: -webkit-inline-flex;
|
1585 |
+
display: -moz-inline-box;
|
1586 |
+
display: -ms-inline-flexbox;
|
1587 |
+
display: inline-flex;
|
1588 |
+
-webkit-box-align: center;
|
1589 |
+
-webkit-align-items: center;
|
1590 |
+
-moz-box-align: center;
|
1591 |
+
-ms-flex-align: center;
|
1592 |
+
align-items: center;
|
1593 |
+
}
|
1594 |
+
|
1595 |
+
.premium-countdown-flip .premium-countdown-block:last-child {
|
1596 |
+
margin-left: 0;
|
1597 |
+
}
|
1598 |
+
|
1599 |
+
.premium-countdown-flip .premium-countdown-label {
|
1600 |
+
overflow: hidden;
|
1601 |
+
color: #1a1a1a;
|
1602 |
+
text-transform: uppercase;
|
1603 |
+
}
|
1604 |
+
|
1605 |
+
.premium-countdown-flip .premium-countdown-figure {
|
1606 |
+
position: relative;
|
1607 |
+
height: 110px;
|
1608 |
+
width: 100px;
|
1609 |
+
line-height: 107px;
|
1610 |
+
background-color: #fff;
|
1611 |
+
-webkit-border-radius: 10px;
|
1612 |
+
border-radius: 10px;
|
1613 |
+
-webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset -2px 4px 0 0 rgba(255, 255, 255, 0.08);
|
1614 |
+
box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset -2px 4px 0 0 rgba(255, 255, 255, 0.08);
|
1615 |
+
}
|
1616 |
+
|
1617 |
+
.premium-countdown-flip .premium-countdown-figure:last-child {
|
1618 |
+
margin-left: 0;
|
1619 |
+
}
|
1620 |
+
|
1621 |
+
.premium-countdown-flip .premium-countdown-figure>span {
|
1622 |
+
position: absolute;
|
1623 |
+
right: 0;
|
1624 |
+
left: 0;
|
1625 |
+
margin: auto;
|
1626 |
+
font-weight: 700;
|
1627 |
+
}
|
1628 |
+
|
1629 |
+
.premium-countdown-flip .premium-countdown-figure .top {
|
1630 |
+
z-index: 3;
|
1631 |
+
-webkit-transform-origin: 50% 100%;
|
1632 |
+
-ms-transform-origin: 50% 100%;
|
1633 |
+
transform-origin: 50% 100%;
|
1634 |
+
-webkit-transform: perspective(200px);
|
1635 |
+
transform: perspective(200px);
|
1636 |
+
-webkit-backface-visibility: hidden;
|
1637 |
+
backface-visibility: hidden;
|
1638 |
+
}
|
1639 |
+
|
1640 |
+
.premium-countdown-flip .premium-countdown-figure .bottom {
|
1641 |
+
z-index: 1;
|
1642 |
+
}
|
1643 |
+
|
1644 |
+
.premium-countdown-flip .premium-countdown-figure .bottom::before {
|
1645 |
+
content: "";
|
1646 |
+
position: absolute;
|
1647 |
+
display: block;
|
1648 |
+
top: 0;
|
1649 |
+
right: 0;
|
1650 |
+
width: 100%;
|
1651 |
+
height: 50%;
|
1652 |
+
background-color: rgba(0, 0, 0, 0.02);
|
1653 |
+
}
|
1654 |
+
|
1655 |
+
.premium-countdown-flip .premium-countdown-figure .top-back {
|
1656 |
+
-webkit-backface-visibility: hidden;
|
1657 |
+
backface-visibility: hidden;
|
1658 |
+
z-index: 4;
|
1659 |
+
bottom: 0;
|
1660 |
+
-webkit-transform-origin: 50% 0;
|
1661 |
+
-ms-transform-origin: 50% 0;
|
1662 |
+
transform-origin: 50% 0;
|
1663 |
+
-webkit-transform: perspective(200px) rotateX(180deg);
|
1664 |
+
transform: perspective(200px) rotateX(180deg);
|
1665 |
+
}
|
1666 |
+
|
1667 |
+
.premium-countdown-flip .premium-countdown-figure .top-back span {
|
1668 |
+
position: absolute;
|
1669 |
+
top: -100%;
|
1670 |
+
right: 0;
|
1671 |
+
left: 0;
|
1672 |
+
margin: auto;
|
1673 |
+
}
|
1674 |
+
|
1675 |
+
.premium-countdown-flip .premium-countdown-figure .bottom-back {
|
1676 |
+
z-index: 2;
|
1677 |
+
top: 0;
|
1678 |
+
}
|
1679 |
+
|
1680 |
+
.premium-countdown-flip .premium-countdown-figure .bottom-back span {
|
1681 |
+
position: absolute;
|
1682 |
+
top: 0;
|
1683 |
+
right: 0;
|
1684 |
+
left: 0;
|
1685 |
+
margin: auto;
|
1686 |
+
}
|
1687 |
+
|
1688 |
+
.premium-countdown-flip .premium-countdown-figure .top,
|
1689 |
+
.premium-countdown-flip .premium-countdown-figure .bottom-back,
|
1690 |
+
.premium-countdown-flip .premium-countdown-figure .top-back {
|
1691 |
+
height: 50%;
|
1692 |
+
overflow: hidden;
|
1693 |
+
background-color: #f7f7f7;
|
1694 |
+
-webkit-border-top-right-radius: 10px;
|
1695 |
+
border-top-right-radius: 10px;
|
1696 |
+
-webkit-border-top-left-radius: 10px;
|
1697 |
+
border-top-left-radius: 10px;
|
1698 |
+
}
|
1699 |
+
|
1700 |
+
.premium-countdown-flip .premium-countdown-figure .top-back {
|
1701 |
+
-webkit-border-bottom-right-radius: 10px;
|
1702 |
+
border-bottom-right-radius: 10px;
|
1703 |
+
-webkit-border-bottom-left-radius: 10px;
|
1704 |
+
border-bottom-left-radius: 10px;
|
1705 |
+
}
|
1706 |
+
|
1707 |
+
.premium-countdown-flip .premium-countdown-figure .top::after,
|
1708 |
+
.premium-countdown-flip .premium-countdown-figure .bottom-back::after {
|
1709 |
+
content: "";
|
1710 |
+
position: absolute;
|
1711 |
+
z-index: -1;
|
1712 |
+
right: 0;
|
1713 |
+
bottom: 0;
|
1714 |
+
width: 100%;
|
1715 |
+
height: 100%;
|
1716 |
+
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
1717 |
+
}
|
1718 |
+
|
1719 |
+
.side .premium-countdown-figure,
|
1720 |
+
.side .premium-countdown-label {
|
1721 |
+
display: inline-block;
|
1722 |
+
}
|
1723 |
+
|
1724 |
+
.side .premium-countdown-figure {
|
1725 |
+
margin-left: 5px;
|
1726 |
+
}
|
1727 |
+
|
1728 |
+
.down .premium-countdown-figure,
|
1729 |
+
.down .premium-countdown-label {
|
1730 |
+
display: block;
|
1731 |
+
}
|
1732 |
+
|
1733 |
+
.down .premium-countdown-label {
|
1734 |
+
width: 100%;
|
1735 |
+
}
|
1736 |
+
|
1737 |
+
/**************** Premium Carousel **************/
|
1738 |
+
/************************************************/
|
1739 |
+
.premium-carousel-wrapper a.carousel-arrow,
|
1740 |
+
.premium-carousel-wrapper a.ver-carousel-arrow,
|
1741 |
+
.premium-fb-rev-container a.carousel-arrow,
|
1742 |
+
.premium-tabs-nav-list a.carousel-arrow,
|
1743 |
+
.premium-blog-wrap a.carousel-arrow,
|
1744 |
+
.premium-hscroll-wrap a.carousel-arrow,
|
1745 |
+
.premium-twitter-feed-wrapper a.carousel-arrow,
|
1746 |
+
.premium-facebook-feed-wrapper a.carousel-arrow,
|
1747 |
+
.premium-instafeed-container a.carousel-arrow,
|
1748 |
+
.premium-persons-container a.carousel-arrow {
|
1749 |
+
display: -ms-flexbox;
|
1750 |
+
display: -webkit-flex;
|
1751 |
+
display: -moz-flex;
|
1752 |
+
display: -ms-flex;
|
1753 |
+
-js-display: flex;
|
1754 |
+
display: -webkit-box;
|
1755 |
+
display: -moz-box;
|
1756 |
+
display: flex;
|
1757 |
+
-webkit-box-align: center;
|
1758 |
+
-webkit-align-items: center;
|
1759 |
+
-moz-box-align: center;
|
1760 |
+
-ms-flex-align: center;
|
1761 |
+
align-items: center;
|
1762 |
+
-webkit-box-pack: center;
|
1763 |
+
-webkit-justify-content: center;
|
1764 |
+
-moz-box-pack: center;
|
1765 |
+
-ms-flex-pack: center;
|
1766 |
+
justify-content: center;
|
1767 |
+
width: 2em;
|
1768 |
+
height: 2em;
|
1769 |
+
line-height: 0;
|
1770 |
+
text-align: center;
|
1771 |
+
position: absolute;
|
1772 |
+
z-index: 99;
|
1773 |
+
cursor: pointer;
|
1774 |
+
-webkit-transition: all 0.3s ease-in-out;
|
1775 |
+
transition: all 0.3s ease-in-out;
|
1776 |
+
-webkit-appearance: inherit;
|
1777 |
+
border: none;
|
1778 |
+
-webkit-box-shadow: none;
|
1779 |
+
box-shadow: none;
|
1780 |
+
}
|
1781 |
+
|
1782 |
+
div[class^="premium-"] .slick-arrow i {
|
1783 |
+
display: block;
|
1784 |
+
}
|
1785 |
+
|
1786 |
+
.ver-carousel-arrow.carousel-next i {
|
1787 |
+
margin-bottom: -3px;
|
1788 |
+
}
|
1789 |
+
|
1790 |
+
.premium-carousel-wrapper a.slick-arrow:hover {
|
1791 |
+
-webkit-box-shadow: none !important;
|
1792 |
+
box-shadow: none !important;
|
1793 |
+
}
|
1794 |
+
|
1795 |
+
.premium-carousel-wrapper .premium-carousel-content-hidden {
|
1796 |
+
visibility: hidden;
|
1797 |
+
}
|
1798 |
+
|
1799 |
+
.premium-carousel-wrapper a.carousel-arrow,
|
1800 |
+
.premium-fb-rev-container a.carousel-arrow,
|
1801 |
+
.premium-tabs-nav-list a.carousel-arrow,
|
1802 |
+
.premium-blog-wrap a.carousel-arrow,
|
1803 |
+
.premium-hscroll-wrap a.carousel-arrow,
|
1804 |
+
.premium-twitter-feed-wrapper a.carousel-arrow,
|
1805 |
+
.premium-facebook-feed-wrapper a.carousel-arrow,
|
1806 |
+
.premium-instafeed-container a.carousel-arrow,
|
1807 |
+
.premium-persons-container a.carousel-arrow {
|
1808 |
+
top: 50%;
|
1809 |
+
-webkit-transform: translateY(-50%);
|
1810 |
+
-ms-transform: translateY(-50%);
|
1811 |
+
transform: translateY(-50%);
|
1812 |
+
}
|
1813 |
+
|
1814 |
+
.premium-carousel-wrapper a.ver-carousel-arrow {
|
1815 |
+
right: 50%;
|
1816 |
+
-webkit-transform: translateX(50%);
|
1817 |
+
-ms-transform: translateX(50%);
|
1818 |
+
transform: translateX(50%);
|
1819 |
+
}
|
1820 |
+
|
1821 |
+
a.carousel-arrow.carousel-next {
|
1822 |
+
right: -20px;
|
1823 |
+
}
|
1824 |
+
|
1825 |
+
a.carousel-arrow.carousel-prev {
|
1826 |
+
left: -20px;
|
1827 |
+
}
|
1828 |
+
|
1829 |
+
a.ver-carousel-arrow.carousel-next {
|
1830 |
+
bottom: -56px;
|
1831 |
+
}
|
1832 |
+
|
1833 |
+
a.ver-carousel-arrow.carousel-prev {
|
1834 |
+
top: -45px;
|
1835 |
+
}
|
1836 |
+
|
1837 |
+
a.circle-bg {
|
1838 |
+
-webkit-border-radius: 100%;
|
1839 |
+
border-radius: 100%;
|
1840 |
+
}
|
1841 |
+
|
1842 |
+
a.circle-border {
|
1843 |
+
-webkit-border-radius: 100%;
|
1844 |
+
border-radius: 100%;
|
1845 |
+
border: solid black;
|
1846 |
+
}
|
1847 |
+
|
1848 |
+
a.square-border {
|
1849 |
+
border: solid black;
|
1850 |
+
}
|
1851 |
+
|
1852 |
+
.premium-carousel-dots-below,
|
1853 |
+
.premium-blog-wrap ul.slick-dots,
|
1854 |
+
.premium-fb-rev-reviews ul.slick-dots {
|
1855 |
+
position: relative;
|
1856 |
+
bottom: 0;
|
1857 |
+
list-style: none;
|
1858 |
+
text-align: center;
|
1859 |
+
margin: 0;
|
1860 |
+
padding: 0;
|
1861 |
+
}
|
1862 |
+
|
1863 |
+
.premium-carousel-dots-above ul.slick-dots {
|
1864 |
+
position: absolute;
|
1865 |
+
display: -ms-flexbox;
|
1866 |
+
display: -webkit-flex;
|
1867 |
+
display: -moz-flex;
|
1868 |
+
display: -ms-flex;
|
1869 |
+
-js-display: flex;
|
1870 |
+
display: -webkit-box;
|
1871 |
+
display: -moz-box;
|
1872 |
+
display: flex;
|
1873 |
+
top: 50%;
|
1874 |
+
-webkit-transform: translateY(-50%);
|
1875 |
+
-ms-transform: translateY(-50%);
|
1876 |
+
transform: translateY(-50%);
|
1877 |
+
-webkit-flex-direction: column;
|
1878 |
+
-webkit-box-orient: vertical;
|
1879 |
+
-webkit-box-direction: normal;
|
1880 |
+
-moz-box-orient: vertical;
|
1881 |
+
-moz-box-direction: normal;
|
1882 |
+
-ms-flex-direction: column;
|
1883 |
+
flex-direction: column;
|
1884 |
+
}
|
1885 |
+
|
1886 |
+
ul.slick-dots li {
|
1887 |
+
font-size: 10px;
|
1888 |
+
display: -webkit-inline-box;
|
1889 |
+
display: -webkit-inline-flex;
|
1890 |
+
display: -ms-inline-flexbox;
|
1891 |
+
-js-display: inline-flex;
|
1892 |
+
display: -moz-inline-box;
|
1893 |
+
display: inline-flex;
|
1894 |
+
-webkit-box-pack: center;
|
1895 |
+
-webkit-justify-content: center;
|
1896 |
+
-moz-box-pack: center;
|
1897 |
+
-ms-flex-pack: center;
|
1898 |
+
justify-content: center;
|
1899 |
+
-webkit-box-align: center;
|
1900 |
+
-webkit-align-items: center;
|
1901 |
+
-moz-box-align: center;
|
1902 |
+
-ms-flex-align: center;
|
1903 |
+
align-items: center;
|
1904 |
+
margin: 5px;
|
1905 |
+
width: 20px;
|
1906 |
+
height: 20px;
|
1907 |
+
cursor: pointer;
|
1908 |
+
}
|
1909 |
+
|
1910 |
+
/*
|
1911 |
+
* Custom Navigation Dot
|
1912 |
+
*/
|
1913 |
+
.premium-carousel-wrapper .premium-carousel-nav-dot,
|
1914 |
+
.premium-carousel-wrapper .premium-carousel-nav-arrow-prev,
|
1915 |
+
.premium-carousel-wrapper .premium-carousel-nav-arrow-next {
|
1916 |
+
display: none;
|
1917 |
+
}
|
1918 |
+
|
1919 |
+
.premium-carousel-wrapper ul.slick-dots svg {
|
1920 |
+
width: 20px;
|
1921 |
+
height: 20px;
|
1922 |
+
}
|
1923 |
+
|
1924 |
+
/* Ripple Out */
|
1925 |
+
@-webkit-keyframes hvr-ripple-out {
|
1926 |
+
0% {
|
1927 |
+
-webkit-transform: scale(1);
|
1928 |
+
transform: scale(1);
|
1929 |
+
opacity: 1;
|
1930 |
+
}
|
1931 |
+
|
1932 |
+
100% {
|
1933 |
+
-webkit-transform: scale(1.5);
|
1934 |
+
transform: scale(1.5);
|
1935 |
+
opacity: 0;
|
1936 |
+
}
|
1937 |
+
}
|
1938 |
+
|
1939 |
+
@keyframes hvr-ripple-out {
|
1940 |
+
0% {
|
1941 |
+
-webkit-transform: scale(1);
|
1942 |
+
transform: scale(1);
|
1943 |
+
opacity: 1;
|
1944 |
+
}
|
1945 |
+
|
1946 |
+
100% {
|
1947 |
+
-webkit-transform: scale(1.5);
|
1948 |
+
transform: scale(1.5);
|
1949 |
+
opacity: 0;
|
1950 |
+
}
|
1951 |
+
}
|
1952 |
+
|
1953 |
+
.premium-carousel-ripple-yes .premium-carousel-wrapper {
|
1954 |
+
padding-bottom: 1px;
|
1955 |
+
}
|
1956 |
+
|
1957 |
+
.premium-carousel-ripple-yes ul.slick-dots li,
|
1958 |
+
.premium-carousel-ripple-yes ul.slick-dots li i {
|
1959 |
+
position: relative;
|
1960 |
+
}
|
1961 |
+
|
1962 |
+
.premium-carousel-ripple-yes ul.slick-dots li i {
|
1963 |
+
z-index: 1;
|
1964 |
+
}
|
1965 |
+
|
1966 |
+
.premium-carousel-ripple-yes ul.slick-dots li:hover:before {
|
1967 |
+
content: "";
|
1968 |
+
position: absolute;
|
1969 |
+
-webkit-transform: scale(1);
|
1970 |
+
-ms-transform: scale(1);
|
1971 |
+
transform: scale(1);
|
1972 |
+
top: 0;
|
1973 |
+
left: 0;
|
1974 |
+
bottom: 0;
|
1975 |
+
right: 0;
|
1976 |
+
-webkit-border-radius: 50%;
|
1977 |
+
border-radius: 50%;
|
1978 |
+
pointer-events: none;
|
1979 |
+
background-color: rgba(0, 0, 0, 0.15);
|
1980 |
+
}
|
1981 |
+
|
1982 |
+
.premium-carousel-ripple-yes ul.slick-dots li.slick-active:hover:before {
|
1983 |
+
background-color: rgba(0, 0, 0, 0.3);
|
1984 |
+
}
|
1985 |
+
|
1986 |
+
.premium-carousel-ripple-yes ul.slick-dots li:hover:before {
|
1987 |
+
-webkit-animation: hvr-ripple-out 1.3s infinite;
|
1988 |
+
animation: hvr-ripple-out 1.3s infinite;
|
1989 |
+
}
|
1990 |
+
|
1991 |
+
.premium-carousel-wrapper.premium-carousel-scale .slick-slide {
|
1992 |
+
-webkit-transform: scale(1.25, 1.25);
|
1993 |
+
-ms-transform: scale(1.25, 1.25);
|
1994 |
+
transform: scale(1.25, 1.25);
|
1995 |
+
-webkit-transition: all 0.3s ease-in-out !important;
|
1996 |
+
transition: all 0.3s ease-in-out !important;
|
1997 |
+
}
|
1998 |
+
|
1999 |
+
.premium-carousel-wrapper.premium-carousel-scale div.slick-active {
|
2000 |
+
-webkit-transform: scale(1, 1);
|
2001 |
+
-ms-transform: scale(1, 1);
|
2002 |
+
transform: scale(1, 1);
|
2003 |
+
}
|
2004 |
+
|
2005 |
+
[dir="rtl"] .premium-carousel-inner .slick-slide {
|
2006 |
+
float: right;
|
2007 |
+
}
|
2008 |
+
|
2009 |
+
/**************** Premium Counter ***************/
|
2010 |
+
/************************************************/
|
2011 |
+
.premium-counter-area {
|
2012 |
+
padding: 10px 0;
|
2013 |
+
-js-display: flex;
|
2014 |
+
display: -webkit-box;
|
2015 |
+
display: -webkit-flex;
|
2016 |
+
display: -moz-box;
|
2017 |
+
display: -ms-flexbox;
|
2018 |
+
display: flex;
|
2019 |
+
-webkit-box-pack: center;
|
2020 |
+
-webkit-justify-content: center;
|
2021 |
+
-moz-box-pack: center;
|
2022 |
+
-ms-flex-pack: center;
|
2023 |
+
justify-content: center;
|
2024 |
+
-webkit-box-align: center;
|
2025 |
+
-webkit-align-items: center;
|
2026 |
+
-moz-box-align: center;
|
2027 |
+
-ms-flex-align: center;
|
2028 |
+
align-items: center;
|
2029 |
+
}
|
2030 |
+
|
2031 |
+
.premium-counter-area.top {
|
2032 |
+
-webkit-box-orient: vertical;
|
2033 |
+
-webkit-box-direction: normal;
|
2034 |
+
-webkit-flex-direction: column;
|
2035 |
+
-moz-box-orient: vertical;
|
2036 |
+
-moz-box-direction: normal;
|
2037 |
+
-ms-flex-direction: column;
|
2038 |
+
flex-direction: column;
|
2039 |
+
}
|
2040 |
+
|
2041 |
+
.premium-counter-area.right {
|
2042 |
+
-webkit-box-orient: horizontal;
|
2043 |
+
-webkit-box-direction: reverse;
|
2044 |
+
-webkit-flex-direction: row-reverse;
|
2045 |
+
-moz-box-orient: horizontal;
|
2046 |
+
-moz-box-direction: reverse;
|
2047 |
+
-ms-flex-direction: row-reverse;
|
2048 |
+
flex-direction: row-reverse;
|
2049 |
+
}
|
2050 |
+
|
2051 |
+
.premium-counter-area.right .premium-counter-icon {
|
2052 |
+
padding-right: 20px;
|
2053 |
+
}
|
2054 |
+
|
2055 |
+
.premium-counter-area.left .premium-counter-icon {
|
2056 |
+
padding-left: 20px;
|
2057 |
+
}
|
2058 |
+
|
2059 |
+
.premium-counter-area .premium-counter-icon .icon i.fa:before {
|
2060 |
+
vertical-align: text-top;
|
2061 |
+
}
|
2062 |
+
|
2063 |
+
.premium-counter-area .premium-counter-icon span.icon {
|
2064 |
+
text-align: center;
|
2065 |
+
display: inline-block;
|
2066 |
+
vertical-align: middle;
|
2067 |
+
}
|
2068 |
+
|
2069 |
+
.premium-counter-area .premium-counter-icon .circle {
|
2070 |
+
-webkit-border-radius: 100%;
|
2071 |
+
border-radius: 100%;
|
2072 |
+
}
|
2073 |
+
|
2074 |
+
.premium-counter-area .premium-counter-icon img,
|
2075 |
+
.premium-counter-area .premium-counter-icon svg {
|
2076 |
+
width: 80px;
|
2077 |
+
}
|
2078 |
+
|
2079 |
+
.premium-counter-area .premium-counter-icon .premium-counter-animation svg {
|
2080 |
+
height: 80px;
|
2081 |
+
}
|
2082 |
+
|
2083 |
+
.premium-counter-area .premium-counter-title {
|
2084 |
+
padding: 0;
|
2085 |
+
margin: 0;
|
2086 |
+
}
|
2087 |
+
|
2088 |
+
.premium-counter-area .premium-counter-value-wrap {
|
2089 |
+
-js-display: flex;
|
2090 |
+
display: -webkit-box;
|
2091 |
+
display: -webkit-flex;
|
2092 |
+
display: -moz-box;
|
2093 |
+
display: -ms-flexbox;
|
2094 |
+
display: flex;
|
2095 |
+
-webkit-box-align: center;
|
2096 |
+
-webkit-align-items: center;
|
2097 |
+
-moz-box-align: center;
|
2098 |
+
-ms-flex-align: center;
|
2099 |
+
align-items: center;
|
2100 |
+
}
|
2101 |
+
|
2102 |
+
.premium-init-wrapper.right {
|
2103 |
+
text-align: left;
|
2104 |
+
}
|
2105 |
+
|
2106 |
+
/* * Custom image and simple styles image fix */
|
2107 |
+
span.icon.flex-width {
|
2108 |
+
width: auto !important;
|
2109 |
+
height: auto !important;
|
2110 |
+
}
|
2111 |
+
|
2112 |
+
.premium-counter-area .premium-counter-init {
|
2113 |
+
font-size: 35px;
|
2114 |
+
}
|
2115 |
+
|
2116 |
+
/**************** Premium Image Separator ****************/
|
2117 |
+
/*********************************************************/
|
2118 |
+
/*Image Separator Container Style*/
|
2119 |
+
.premium-image-separator-container {
|
2120 |
+
position: absolute;
|
2121 |
+
width: 100%;
|
2122 |
+
z-index: 2;
|
2123 |
+
top: auto;
|
2124 |
+
}
|
2125 |
+
|
2126 |
+
.premium-image-separator-container img {
|
2127 |
+
display: inline-block !important;
|
2128 |
+
-webkit-mask-repeat: no-repeat;
|
2129 |
+
mask-repeat: no-repeat;
|
2130 |
+
-webkit-mask-position: center;
|
2131 |
+
mask-position: center;
|
2132 |
+
}
|
2133 |
+
|
2134 |
+
/*Link on Image Style*/
|
2135 |
+
.premium-image-separator-link {
|
2136 |
+
position: absolute;
|
2137 |
+
z-index: 9999;
|
2138 |
+
top: 0;
|
2139 |
+
right: 0;
|
2140 |
+
width: 100%;
|
2141 |
+
height: 100%;
|
2142 |
+
text-decoration: none;
|
2143 |
+
}
|
2144 |
+
|
2145 |
+
/*Important to override Theme options*/
|
2146 |
+
a.premium-image-separator-link:hover,
|
2147 |
+
a.premium-image-separator-link:visited,
|
2148 |
+
a.premium-image-separator-link:focus,
|
2149 |
+
a.premium-image-separator-link:active {
|
2150 |
+
-webkit-box-shadow: none !important;
|
2151 |
+
box-shadow: none !important;
|
2152 |
+
outline: none !important;
|
2153 |
+
border: none !important;
|
2154 |
+
text-decoration: none !important;
|
2155 |
+
}
|
2156 |
+
|
2157 |
+
.premium-image-separator-container .img-responsive {
|
2158 |
+
display: inline-block;
|
2159 |
+
}
|
2160 |
+
|
2161 |
+
.premium-image-separator-container i {
|
2162 |
+
padding: 0.1em;
|
2163 |
+
-webkit-transition: all 0.3s ease-in-out;
|
2164 |
+
transition: all 0.3s ease-in-out;
|
2165 |
+
}
|
2166 |
+
|
2167 |
+
/**************** Premium Modal Box ****************/
|
2168 |
+
/***************************************************/
|
2169 |
+
.premium-modal-trigger-btn,
|
2170 |
+
.premium-modal-box-modal-lower-close {
|
2171 |
+
display: inline-block;
|
2172 |
+
padding: 6px 12px;
|
2173 |
+
margin-bottom: 0;
|
2174 |
+
font-size: 14px;
|
2175 |
+
font-weight: normal;
|
2176 |
+
line-height: 1.42857143;
|
2177 |
+
text-align: center;
|
2178 |
+
white-space: nowrap;
|
2179 |
+
vertical-align: middle;
|
2180 |
+
-ms-touch-action: manipulation;
|
2181 |
+
touch-action: manipulation;
|
2182 |
+
cursor: pointer;
|
2183 |
+
-webkit-user-select: none;
|
2184 |
+
-moz-user-select: none;
|
2185 |
+
-ms-user-select: none;
|
2186 |
+
user-select: none;
|
2187 |
+
background-image: none;
|
2188 |
+
border: 1px solid transparent;
|
2189 |
+
}
|
2190 |
+
|
2191 |
+
.premium-modal-trigger-btn i {
|
2192 |
+
-webkit-transition: all 0.3s ease-in-out;
|
2193 |
+
transition: all 0.3s ease-in-out;
|
2194 |
+
}
|
2195 |
+
|
2196 |
+
.premium-btn-md {
|
2197 |
+
padding: 8px 14px;
|
2198 |
+
font-size: 16px;
|
2199 |
+
line-height: 1.2;
|
2200 |
+
}
|
2201 |
+
|
2202 |
+
.premium-btn-lg {
|
2203 |
+
padding: 10px 16px;
|
2204 |
+
font-size: 18px;
|
2205 |
+
line-height: 1.3333333;
|
2206 |
+
}
|
2207 |
+
|
2208 |
+
.premium-btn-block {
|
2209 |
+
display: block;
|
2210 |
+
width: 100%;
|
2211 |
+
}
|
2212 |
+
|
2213 |
+
.premium-modal-box-modal-close {
|
2214 |
+
float: left;
|
2215 |
+
font-size: 21px;
|
2216 |
+
font-weight: bold;
|
2217 |
+
line-height: 1;
|
2218 |
+
color: #000;
|
2219 |
+
}
|
2220 |
+
|
2221 |
+
.premium-modal-box-modal-close:hover,
|
2222 |
+
.premium-modal-box-modal-close:focus {
|
2223 |
+
color: #000;
|
2224 |
+
text-decoration: none;
|
2225 |
+
cursor: pointer;
|
2226 |
+
}
|
2227 |
+
|
2228 |
+
button.premium-modal-box-modal-close {
|
2229 |
+
-webkit-appearance: none;
|
2230 |
+
padding: 0;
|
2231 |
+
cursor: pointer;
|
2232 |
+
background: transparent;
|
2233 |
+
border: 0;
|
2234 |
+
}
|
2235 |
+
|
2236 |
+
.premium-modal-box-modal {
|
2237 |
+
position: fixed;
|
2238 |
+
top: 0;
|
2239 |
+
left: 0;
|
2240 |
+
bottom: 0;
|
2241 |
+
right: 0;
|
2242 |
+
z-index: 1050;
|
2243 |
+
display: none;
|
2244 |
+
-webkit-overflow-scrolling: touch;
|
2245 |
+
outline: 0;
|
2246 |
+
padding: 0 !important;
|
2247 |
+
background: rgba(0, 0, 0, 0.5);
|
2248 |
+
-webkit-box-align: center;
|
2249 |
+
-webkit-align-items: center;
|
2250 |
+
-moz-box-align: center;
|
2251 |
+
-ms-flex-align: center;
|
2252 |
+
align-items: center;
|
2253 |
+
-webkit-box-pack: center;
|
2254 |
+
-webkit-justify-content: center;
|
2255 |
+
-moz-box-pack: center;
|
2256 |
+
-ms-flex-pack: center;
|
2257 |
+
justify-content: center;
|
2258 |
+
}
|
2259 |
+
|
2260 |
+
.premium-modal-box-modal .premium-modal-box-modal-dialog {
|
2261 |
+
position: absolute;
|
2262 |
+
max-height: -webkit-calc(100vh - 150px);
|
2263 |
+
max-height: calc(100vh - 150px);
|
2264 |
+
-js-display: flex;
|
2265 |
+
display: -webkit-box;
|
2266 |
+
display: -webkit-flex;
|
2267 |
+
display: -moz-box;
|
2268 |
+
display: -ms-flexbox;
|
2269 |
+
display: flex;
|
2270 |
+
-webkit-box-orient: vertical;
|
2271 |
+
-webkit-box-direction: normal;
|
2272 |
+
-webkit-flex-direction: column;
|
2273 |
+
-moz-box-orient: vertical;
|
2274 |
+
-moz-box-direction: normal;
|
2275 |
+
-ms-flex-direction: column;
|
2276 |
+
flex-direction: column;
|
2277 |
+
opacity: 0;
|
2278 |
+
}
|
2279 |
+
|
2280 |
+
.premium-modal-box-modal-content {
|
2281 |
+
background-color: #fff;
|
2282 |
+
-webkit-background-clip: padding-box;
|
2283 |
+
background-clip: padding-box;
|
2284 |
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
2285 |
+
-webkit-border-radius: 6px;
|
2286 |
+
border-radius: 6px;
|
2287 |
+
outline: 0;
|
2288 |
+
}
|
2289 |
+
|
2290 |
+
.premium-modal-backdrop.premium-in {
|
2291 |
+
filter: alpha(opacity=50);
|
2292 |
+
opacity: 0.5 !important;
|
2293 |
+
}
|
2294 |
+
|
2295 |
+
.premium-modal-fade.premium-in {
|
2296 |
+
opacity: 1;
|
2297 |
+
}
|
2298 |
+
|
2299 |
+
.premium-modal-backdrop {
|
2300 |
+
position: fixed;
|
2301 |
+
top: 0;
|
2302 |
+
left: 0;
|
2303 |
+
bottom: 0;
|
2304 |
+
right: 0;
|
2305 |
+
z-index: 1040;
|
2306 |
+
background-color: #000;
|
2307 |
+
}
|
2308 |
+
|
2309 |
+
.premium-modal-backdrop.premium-modal-fade {
|
2310 |
+
filter: alpha(opacity=0);
|
2311 |
+
opacity: 0;
|
2312 |
+
}
|
2313 |
+
|
2314 |
+
.premium-modal-fade {
|
2315 |
+
opacity: 0;
|
2316 |
+
}
|
2317 |
+
|
2318 |
+
.premium-in {
|
2319 |
+
-js-display: flex !important;
|
2320 |
+
display: -webkit-box !important;
|
2321 |
+
display: -webkit-flex !important;
|
2322 |
+
display: -moz-box !important;
|
2323 |
+
display: -ms-flexbox !important;
|
2324 |
+
display: flex !important;
|
2325 |
+
}
|
2326 |
+
|
2327 |
+
.premium-modal-box-modal-header {
|
2328 |
+
-js-display: flex;
|
2329 |
+
display: -webkit-box;
|
2330 |
+
display: -webkit-flex;
|
2331 |
+
display: -moz-box;
|
2332 |
+
display: -ms-flexbox;
|
2333 |
+
display: flex;
|
2334 |
+
-webkit-box-pack: justify;
|
2335 |
+
-webkit-justify-content: space-between;
|
2336 |
+
-moz-box-pack: justify;
|
2337 |
+
-ms-flex-pack: justify;
|
2338 |
+
justify-content: space-between;
|
2339 |
+
-webkit-box-align: center;
|
2340 |
+
-webkit-align-items: center;
|
2341 |
+
-moz-box-align: center;
|
2342 |
+
-ms-flex-align: center;
|
2343 |
+
align-items: center;
|
2344 |
+
padding: 5px 15px;
|
2345 |
+
border-bottom: 1px solid #e5e5e5;
|
2346 |
+
}
|
2347 |
+
|
2348 |
+
.premium-modal-box-modal-header .premium-modal-box-modal-close {
|
2349 |
+
margin-top: -2px;
|
2350 |
+
}
|
2351 |
+
|
2352 |
+
.premium-modal-box-modal-header .premium-modal-box-modal-title {
|
2353 |
+
-js-display: flex;
|
2354 |
+
display: -webkit-box;
|
2355 |
+
display: -webkit-flex;
|
2356 |
+
display: -moz-box;
|
2357 |
+
display: -ms-flexbox;
|
2358 |
+
display: flex;
|
2359 |
+
-webkit-box-align: center;
|
2360 |
+
-webkit-align-items: center;
|
2361 |
+
-moz-box-align: center;
|
2362 |
+
-ms-flex-align: center;
|
2363 |
+
align-items: center;
|
2364 |
+
margin: 0;
|
2365 |
+
padding: 0;
|
2366 |
+
}
|
2367 |
+
|
2368 |
+
.premium-modal-box-modal-header .premium-modal-box-modal-title svg {
|
2369 |
+
width: 50px;
|
2370 |
+
height: 60px;
|
2371 |
+
}
|
2372 |
+
|
2373 |
+
.premium-modal-box-modal-body {
|
2374 |
+
position: relative;
|
2375 |
+
padding: 15px;
|
2376 |
+
overflow: hidden;
|
2377 |
+
}
|
2378 |
+
|
2379 |
+
.premium-modal-box-modal-footer {
|
2380 |
+
padding: 15px;
|
2381 |
+
text-align: left;
|
2382 |
+
border-top: 1px solid #e5e5e5;
|
2383 |
+
}
|
2384 |
+
|
2385 |
+
.premium-modal-scrollbar-measure {
|
2386 |
+
position: absolute;
|
2387 |
+
top: -9999px;
|
2388 |
+
width: 50px;
|
2389 |
+
height: 50px;
|
2390 |
+
overflow: scroll;
|
2391 |
+
}
|
2392 |
+
|
2393 |
+
.premium-modal-trigger-text {
|
2394 |
+
background: none !important;
|
2395 |
+
display: inline-block;
|
2396 |
+
}
|
2397 |
+
|
2398 |
+
.premium-modal-box-container {
|
2399 |
+
width: 100% !important;
|
2400 |
+
}
|
2401 |
+
|
2402 |
+
/*Open Modal Button Style*/
|
2403 |
+
.premium-modal-trigger-container .premium-modal-trigger-btn {
|
2404 |
+
border: none;
|
2405 |
+
-webkit-transition: all 0.3s ease-in-out;
|
2406 |
+
transition: all 0.3s ease-in-out;
|
2407 |
+
}
|
2408 |
+
|
2409 |
+
.premium-modal-trigger-container .premium-modal-trigger-img,
|
2410 |
+
.premium-modal-trigger-container .premium-modal-trigger-text,
|
2411 |
+
.premium-modal-trigger-container .premium-modal-trigger-animation {
|
2412 |
+
cursor: pointer;
|
2413 |
+
}
|
2414 |
+
|
2415 |
+
.premium-modal-trigger-container .premium-modal-trigger-animation {
|
2416 |
+
display: inline-block;
|
2417 |
+
width: 200px;
|
2418 |
+
height: 200px;
|
2419 |
+
-webkit-transition: all 0.3s ease-in-out;
|
2420 |
+
transition: all 0.3s ease-in-out;
|
2421 |
+
}
|
2422 |
+
|
2423 |
+
/*Image on Modal Header Style*/
|
2424 |
+
.premium-modal-box-modal-header img {
|
2425 |
+
width: 48px;
|
2426 |
+
padding-left: 5px;
|
2427 |
+
}
|
2428 |
+
|
2429 |
+
.premium-modal-box-modal-header i,
|
2430 |
+
.premium-modal-box-modal-header svg {
|
2431 |
+
padding-left: 6px;
|
2432 |
+
}
|
2433 |
+
|
2434 |
+
.premium-modal-box-modal-close {
|
2435 |
+
position: relative;
|
2436 |
+
z-index: 99;
|
2437 |
+
}
|
2438 |
+
|
2439 |
+
.premium-modal-trigger-img,
|
2440 |
+
.premium-modal-trigger-text,
|
2441 |
+
.premium-modal-box-close-button-container,
|
2442 |
+
.premium-modal-box-modal-close,
|
2443 |
+
.premium-modal-box-modal-lower-close {
|
2444 |
+
-webkit-transition: all 0.3s ease-in-out;
|
2445 |
+
transition: all 0.3s ease-in-out;
|
2446 |
+
}
|
2447 |
+
|
2448 |
+
@media (min-width: 768px) {
|
2449 |
+
.premium-modal-box-modal-dialog {
|
2450 |
+
width: 700px;
|
2451 |
+
max-height: 600px;
|
2452 |
+
overflow: auto;
|
2453 |
+
}
|
2454 |
+
}
|
2455 |
+
|
2456 |
+
@media (max-width: 767px) {
|
2457 |
+
.premium-modal-box-modal-dialog {
|
2458 |
+
width: 100%;
|
2459 |
+
max-height: 500px;
|
2460 |
+
overflow: auto;
|
2461 |
+
}
|
2462 |
+
}
|
2463 |
+
|
2464 |
+
.premium-modal-box-container[data-modal-animation*="animated-"] {
|
2465 |
+
opacity: 0;
|
2466 |
+
}
|
2467 |
+
|
2468 |
+
/**************** Premium Progress Bar ****************/
|
2469 |
+
/******************************************************/
|
2470 |
+
.premium-progressbar-container {
|
2471 |
+
position: relative;
|
2472 |
+
}
|
2473 |
+
|
2474 |
+
.premium-progressbar-bar-wrap {
|
2475 |
+
position: relative;
|
2476 |
+
text-align: right;
|
2477 |
+
overflow: hidden;
|
2478 |
+
height: 25px;
|
2479 |
+
margin-bottom: 50px;
|
2480 |
+
background-color: #f5f5f5;
|
2481 |
+
-webkit-border-radius: 4px;
|
2482 |
+
border-radius: 4px;
|
2483 |
+
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
2484 |
+
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
2485 |
+
}
|
2486 |
+
|
2487 |
+
.premium-progressbar-bar-wrap.premium-progressbar-dots {
|
2488 |
+
background-color: transparent;
|
2489 |
+
width: 100%;
|
2490 |
+
-js-display: flex;
|
2491 |
+
display: -webkit-box;
|
2492 |
+
display: -webkit-flex;
|
2493 |
+
display: -moz-box;
|
2494 |
+
display: -ms-flexbox;
|
2495 |
+
display: flex;
|
2496 |
+
height: auto;
|
2497 |
+
-webkit-box-shadow: none;
|
2498 |
+
box-shadow: none;
|
2499 |
+
}
|
2500 |
+
|
2501 |
+
.premium-progressbar-bar-wrap .progress-segment {
|
2502 |
+
position: relative;
|
2503 |
+
width: 25px;
|
2504 |
+
height: 25px;
|
2505 |
+
-webkit-border-radius: 50%;
|
2506 |
+
border-radius: 50%;
|
2507 |
+
overflow: hidden;
|
2508 |
+
background-color: #f5f5f5;
|
2509 |
+
}
|
2510 |
+
|
2511 |
+
.premium-progressbar-bar-wrap .progress-segment.filled {
|
2512 |
+
background: #6ec1e4;
|
2513 |
+
}
|
2514 |
+
|
2515 |
+
.premium-progressbar-bar-wrap .progress-segment:not(:first-child):not(:last-child) {
|
2516 |
+
margin: 0 4px;
|
2517 |
+
}
|
2518 |
+
|
2519 |
+
.premium-progressbar-bar-wrap .progress-segment:first-child {
|
2520 |
+
margin-left: 4px;
|
2521 |
+
}
|
2522 |
+
|
2523 |
+
.premium-progressbar-bar-wrap .progress-segment:last-child {
|
2524 |
+
margin-right: 4px;
|
2525 |
+
}
|
2526 |
+
|
2527 |
+
.premium-progressbar-bar-wrap .progress-segment .segment-inner {
|
2528 |
+
position: absolute;
|
2529 |
+
top: 0;
|
2530 |
+
right: 0;
|
2531 |
+
height: 100%;
|
2532 |
+
background-color: #6ec1e4;
|
2533 |
+
}
|
2534 |
+
|
2535 |
+
.premium-progressbar-bar {
|
2536 |
+
float: right;
|
2537 |
+
width: 0%;
|
2538 |
+
height: 100%;
|
2539 |
+
font-size: 12px;
|
2540 |
+
line-height: 20px;
|
2541 |
+
background: #6ec1e4;
|
2542 |
+
text-align: center;
|
2543 |
+
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
2544 |
+
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
2545 |
+
}
|
2546 |
+
|
2547 |
+
.premium-progressbar-striped .premium-progressbar-bar {
|
2548 |
+
background-image: -webkit-linear-gradient(-135deg,
|
2549 |
+
rgba(255, 255, 255, 0.15) 25%,
|
2550 |
+
transparent 25%,
|
2551 |
+
transparent 50%,
|
2552 |
+
rgba(255, 255, 255, 0.15) 50%,
|
2553 |
+
rgba(255, 255, 255, 0.15) 75%,
|
2554 |
+
transparent 75%,
|
2555 |
+
transparent);
|
2556 |
+
background-image: -webkit-linear-gradient(45deg,
|
2557 |
+
rgba(255, 255, 255, 0.15) 25%,
|
2558 |
+
transparent 25%,
|
2559 |
+
transparent 50%,
|
2560 |
+
rgba(255, 255, 255, 0.15) 50%,
|
2561 |
+
rgba(255, 255, 255, 0.15) 75%,
|
2562 |
+
transparent 75%,
|
2563 |
+
transparent);
|
2564 |
+
background-image: linear-gradient(45deg,
|
2565 |
+
rgba(255, 255, 255, 0.15) 25%,
|
2566 |
+
transparent 25%,
|
2567 |
+
transparent 50%,
|
2568 |
+
rgba(255, 255, 255, 0.15) 50%,
|
2569 |
+
rgba(255, 255, 255, 0.15) 75%,
|
2570 |
+
transparent 75%,
|
2571 |
+
transparent);
|
2572 |
+
-webkit-background-size: 40px 40px;
|
2573 |
+
background-size: 40px 40px;
|
2574 |
+
}
|
2575 |
+
|
2576 |
+
.premium-progressbar-active .premium-progressbar-bar {
|
2577 |
+
-webkit-animation: progress-bar-stripes 2s linear infinite;
|
2578 |
+
animation: progress-bar-stripes 2s linear infinite;
|
2579 |
+
}
|
2580 |
+
|
2581 |
+
.premium-progressbar-gradient .premium-progressbar-bar {
|
2582 |
+
-webkit-background-size: 400% 400% !important;
|
2583 |
+
background-size: 400% 400% !important;
|
2584 |
+
-webkit-animation: progress-bar-gradient 10s ease-in-out infinite;
|
2585 |
+
animation: progress-bar-gradient 10s ease-in-out infinite;
|
2586 |
+
}
|
2587 |
+
|
2588 |
+
.premium-progressbar-bar {
|
2589 |
+
position: absolute;
|
2590 |
+
overflow: hidden;
|
2591 |
+
line-height: 20px;
|
2592 |
+
}
|
2593 |
+
|
2594 |
+
.premium-progressbar-container .clearfix {
|
2595 |
+
clear: both;
|
2596 |
+
}
|
2597 |
+
|
2598 |
+
.premium-progressbar-bar {
|
2599 |
+
-webkit-transition: width 0s ease-in-out !important;
|
2600 |
+
transition: width 0s ease-in-out !important;
|
2601 |
+
}
|
2602 |
+
|
2603 |
+
.premium-progressbar-container p:first-of-type {
|
2604 |
+
margin: 0;
|
2605 |
+
float: right;
|
2606 |
+
}
|
2607 |
+
|
2608 |
+
.premium-progressbar-container p:nth-of-type(2) {
|
2609 |
+
margin: 0;
|
2610 |
+
float: left;
|
2611 |
+
}
|
2612 |
+
|
2613 |
+
.premium-progressbar-name {
|
2614 |
+
right: 50%;
|
2615 |
+
top: 0;
|
2616 |
+
left: 0;
|
2617 |
+
-webkit-transform: translateX(12.5px);
|
2618 |
+
-ms-transform: translateX(12.5px);
|
2619 |
+
transform: translateX(12.5px);
|
2620 |
+
z-index: 1;
|
2621 |
+
}
|
2622 |
+
|
2623 |
+
.premium-progressbar-multiple-label {
|
2624 |
+
position: relative;
|
2625 |
+
float: right;
|
2626 |
+
width: 0;
|
2627 |
+
right: 50%;
|
2628 |
+
}
|
2629 |
+
|
2630 |
+
.premium-progressbar-center-label {
|
2631 |
+
position: relative;
|
2632 |
+
white-space: nowrap;
|
2633 |
+
}
|
2634 |
+
|
2635 |
+
.premium-progressbar-arrow {
|
2636 |
+
height: 15px;
|
2637 |
+
right: 50%;
|
2638 |
+
display: inline-block;
|
2639 |
+
border-right: 7px solid transparent;
|
2640 |
+
border-left: 7px solid transparent;
|
2641 |
+
border-top: 11px solid;
|
2642 |
+
-webkit-transform: translateX(50%);
|
2643 |
+
-ms-transform: translateX(50%);
|
2644 |
+
transform: translateX(50%);
|
2645 |
+
}
|
2646 |
+
|
2647 |
+
.premium-progressbar-pin {
|
2648 |
+
border-right: 1px solid;
|
2649 |
+
height: 12px;
|
2650 |
+
right: 50%;
|
2651 |
+
display: inline-block;
|
2652 |
+
}
|
2653 |
+
|
2654 |
+
/**
|
2655 |
+
* Circle Progress Bar
|
2656 |
+
*/
|
2657 |
+
.premium-progressbar-circle-wrap {
|
2658 |
+
width: 200px;
|
2659 |
+
height: 200px;
|
2660 |
+
position: relative;
|
2661 |
+
margin: 0 auto;
|
2662 |
+
}
|
2663 |
+
|
2664 |
+
.premium-progressbar-circle-wrap .premium-progressbar-circle {
|
2665 |
+
position: absolute;
|
2666 |
+
top: 0;
|
2667 |
+
right: 0;
|
2668 |
+
width: 100%;
|
2669 |
+
height: 100%;
|
2670 |
+
-webkit-clip-path: inset(0 0 0 50%);
|
2671 |
+
clip-path: inset(0 0 0 50%);
|
2672 |
+
}
|
2673 |
+
|
2674 |
+
.premium-progressbar-circle-wrap .premium-progressbar-circle div {
|
2675 |
+
position: absolute;
|
2676 |
+
right: 0;
|
2677 |
+
top: 0;
|
2678 |
+
height: 100%;
|
2679 |
+
width: 100%;
|
2680 |
+
border-width: 6px;
|
2681 |
+
border-style: solid;
|
2682 |
+
border-color: #54595f;
|
2683 |
+
-webkit-border-radius: 50%;
|
2684 |
+
border-radius: 50%;
|
2685 |
+
-webkit-clip-path: inset(0 50% 0 0);
|
2686 |
+
clip-path: inset(0 50% 0 0);
|
2687 |
+
}
|
2688 |
+
|
2689 |
+
.premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-left {
|
2690 |
+
-webkit-transform: rotate(0);
|
2691 |
+
-ms-transform: rotate(0);
|
2692 |
+
transform: rotate(0);
|
2693 |
+
}
|
2694 |
+
|
2695 |
+
.premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-right {
|
2696 |
+
-webkit-transform: rotate(-180deg);
|
2697 |
+
-ms-transform: rotate(-180deg);
|
2698 |
+
transform: rotate(-180deg);
|
2699 |
+
visibility: hidden;
|
2700 |
+
}
|
2701 |
+
|
2702 |
+
.premium-progressbar-circle-wrap .premium-progressbar-circle-base {
|
2703 |
+
width: 100%;
|
2704 |
+
height: 100%;
|
2705 |
+
border: 6px solid #eee;
|
2706 |
+
-webkit-border-radius: 50%;
|
2707 |
+
border-radius: 50%;
|
2708 |
+
}
|
2709 |
+
|
2710 |
+
.premium-progressbar-circle-wrap .premium-progressbar-circle-content {
|
2711 |
+
position: absolute;
|
2712 |
+
top: 0;
|
2713 |
+
right: 0;
|
2714 |
+
width: 100%;
|
2715 |
+
height: 100%;
|
2716 |
+
-js-display: flex;
|
2717 |
+
display: -webkit-box;
|
2718 |
+
display: -webkit-flex;
|
2719 |
+
display: -moz-box;
|
2720 |
+
display: -ms-flexbox;
|
2721 |
+
display: flex;
|
2722 |
+
-webkit-box-orient: vertical;
|
2723 |
+
-webkit-box-direction: normal;
|
2724 |
+
-webkit-flex-direction: column;
|
2725 |
+
-moz-box-orient: vertical;
|
2726 |
+
-moz-box-direction: normal;
|
2727 |
+
-ms-flex-direction: column;
|
2728 |
+
flex-direction: column;
|
2729 |
+
-webkit-box-pack: center;
|
2730 |
+
-webkit-justify-content: center;
|
2731 |
+
-moz-box-pack: center;
|
2732 |
+
-ms-flex-pack: center;
|
2733 |
+
justify-content: center;
|
2734 |
+
-webkit-box-align: center;
|
2735 |
+
-webkit-align-items: center;
|
2736 |
+
-moz-box-align: center;
|
2737 |
+
-ms-flex-align: center;
|
2738 |
+
align-items: center;
|
2739 |
+
}
|
2740 |
+
|
2741 |
+
.premium-progressbar-circle-wrap .premium-lottie-animation {
|
2742 |
+
line-height: 1;
|
2743 |
+
}
|
2744 |
+
|
2745 |
+
@-webkit-keyframes progress-bar-stripes {
|
2746 |
+
from {
|
2747 |
+
background-position: 100% 0;
|
2748 |
+
}
|
2749 |
+
|
2750 |
+
to {
|
2751 |
+
background-position: 40px 0;
|
2752 |
+
}
|
2753 |
+
}
|
2754 |
+
|
2755 |
+
@keyframes progress-bar-stripes {
|
2756 |
+
from {
|
2757 |
+
background-position: 100% 0;
|
2758 |
+
}
|
2759 |
+
|
2760 |
+
to {
|
2761 |
+
background-position: 40px 0;
|
2762 |
+
}
|
2763 |
+
}
|
2764 |
+
|
2765 |
+
@-webkit-keyframes progress-bar-gradient {
|
2766 |
+
0% {
|
2767 |
+
background-position: 100% 50%;
|
2768 |
+
}
|
2769 |
+
|
2770 |
+
50% {
|
2771 |
+
background-position: 0% 50%;
|
2772 |
+
}
|
2773 |
+
|
2774 |
+
100% {
|
2775 |
+
background-position: 100% 50%;
|
2776 |
+
}
|
2777 |
+
}
|
2778 |
+
|
2779 |
+
@keyframes progress-bar-gradient {
|
2780 |
+
0% {
|
2781 |
+
background-position: 100% 50%;
|
2782 |
+
}
|
2783 |
+
|
2784 |
+
50% {
|
2785 |
+
background-position: 0% 50%;
|
2786 |
+
}
|
2787 |
+
|
2788 |
+
100% {
|
2789 |
+
background-position: 100% 50%;
|
2790 |
+
}
|
2791 |
+
}
|
2792 |
+
|
2793 |
+
/**************** Premium Testimonials ****************/
|
2794 |
+
/******************************************************/
|
2795 |
+
.premium-testimonial-box {
|
2796 |
+
width: 100%;
|
2797 |
+
background: transparent;
|
2798 |
+
-webkit-transition: all 0.3s ease-in-out;
|
2799 |
+
transition: all 0.3s ease-in-out;
|
2800 |
+
}
|
2801 |
+
|
2802 |
+
.premium-testimonial-box .premium-testimonial-author-info {
|
2803 |
+
-js-display: flex;
|
2804 |
+
display: -webkit-box;
|
2805 |
+
display: -webkit-flex;
|
2806 |
+
display: -moz-box;
|
2807 |
+
display: -ms-flexbox;
|
2808 |
+
display: flex;
|
2809 |
+
-webkit-box-pack: center;
|
2810 |
+
-webkit-justify-content: center;
|
2811 |
+
-moz-box-pack: center;
|
2812 |
+
-ms-flex-pack: center;
|
2813 |
+
justify-content: center;
|
2814 |
+
-webkit-box-align: center;
|
2815 |
+
-webkit-align-items: center;
|
2816 |
+
-moz-box-align: center;
|
2817 |
+
-ms-flex-align: center;
|
2818 |
+
align-items: center;
|
2819 |
+
}
|
2820 |
+
|
2821 |
+
.premium-testimonial-box .premium-testimonial-person-name,
|
2822 |
+
.premium-testimonial-box .premium-testimonial-company-name {
|
2823 |
+
font-weight: 600;
|
2824 |
+
margin: 0;
|
2825 |
+
}
|
2826 |
+
|
2827 |
+
.premium-testimonial-container {
|
2828 |
+
position: relative;
|
2829 |
+
}
|
2830 |
+
|
2831 |
+
.premium-testimonial-img-wrapper {
|
2832 |
+
margin-right: auto;
|
2833 |
+
margin-left: auto;
|
2834 |
+
overflow: hidden;
|
2835 |
+
border-style: solid !important;
|
2836 |
+
}
|
2837 |
+
|
2838 |
+
.premium-testimonial-img-wrapper.circle {
|
2839 |
+
-webkit-border-radius: 50%;
|
2840 |
+
border-radius: 50%;
|
2841 |
+
}
|
2842 |
+
|
2843 |
+
.premium-testimonial-img-wrapper.rounded {
|
2844 |
+
-webkit-border-radius: 15px;
|
2845 |
+
border-radius: 15px;
|
2846 |
+
}
|
2847 |
+
|
2848 |
+
.premium-testimonial-img-wrapper img {
|
2849 |
+
-o-object-fit: cover;
|
2850 |
+
object-fit: cover;
|
2851 |
+
width: 100%;
|
2852 |
+
height: 100% !important;
|
2853 |
+
}
|
2854 |
+
|
2855 |
+
.premium-testimonial-content-wrapper {
|
2856 |
+
position: relative;
|
2857 |
+
display: -ms-flexbox;
|
2858 |
+
display: -webkit-flex;
|
2859 |
+
display: -moz-flex;
|
2860 |
+
display: -ms-flex;
|
2861 |
+
-js-display: flex;
|
2862 |
+
display: -webkit-box;
|
2863 |
+
display: -moz-box;
|
2864 |
+
display: flex;
|
2865 |
+
-webkit-box-orient: vertical;
|
2866 |
+
-webkit-box-direction: normal;
|
2867 |
+
-webkit-flex-direction: column;
|
2868 |
+
-moz-box-orient: vertical;
|
2869 |
+
-moz-box-direction: normal;
|
2870 |
+
-ms-flex-direction: column;
|
2871 |
+
flex-direction: column;
|
2872 |
+
z-index: 2;
|
2873 |
+
width: 100%;
|
2874 |
+
padding: 20px;
|
2875 |
+
text-align: center;
|
2876 |
+
}
|
2877 |
+
|
2878 |
+
.premium-testimonial-clear-float {
|
2879 |
+
clear: both;
|
2880 |
+
}
|
2881 |
+
|
2882 |
+
.premium-testimonial-upper-quote,
|
2883 |
+
.premium-testimonial-lower-quote {
|
2884 |
+
position: absolute;
|
2885 |
+
z-index: 1;
|
2886 |
+
}
|
2887 |
+
|
2888 |
+
/**************** Premium Dual Heading *****************/
|
2889 |
+
/*******************************************************/
|
2890 |
+
.premium-dual-header-container .premium-dual-header-first-header,
|
2891 |
+
.premium-dual-header-container .premium-dual-header-second-header {
|
2892 |
+
position: relative;
|
2893 |
+
padding: 0;
|
2894 |
+
margin: 0;
|
2895 |
+
display: inline-block;
|
2896 |
+
-webkit-transform: translate(0, 0);
|
2897 |
+
-ms-transform: translate(0, 0);
|
2898 |
+
transform: translate(0, 0);
|
2899 |
+
}
|
2900 |
+
|
2901 |
+
.premium-dual-header-first-clip .premium-dual-header-first-span,
|
2902 |
+
.premium-dual-header-second-clip {
|
2903 |
+
-webkit-text-fill-color: transparent;
|
2904 |
+
-webkit-background-clip: text;
|
2905 |
+
}
|
2906 |
+
|
2907 |
+
.premium-dual-header-first-clip.stroke .premium-dual-header-first-span,
|
2908 |
+
.premium-dual-header-second-clip.stroke {
|
2909 |
+
-webkit-text-stroke-color: transparent;
|
2910 |
+
-webkit-text-fill-color: #fafafa;
|
2911 |
+
-webkit-text-stroke-width: 2px;
|
2912 |
+
}
|
2913 |
+
|
2914 |
+
@media (max-width: 500px) {
|
2915 |
+
|
2916 |
+
.premium-dual-header-container .premium-dual-header-first-header,
|
2917 |
+
.premium-dual-header-container .premium-dual-header-second-header {
|
2918 |
+
display: block;
|
2919 |
+
word-wrap: break-word;
|
2920 |
+
}
|
2921 |
+
|
2922 |
+
.premium-dual-header-first-container,
|
2923 |
+
.premium-dual-header-second-container {
|
2924 |
+
margin: 0;
|
2925 |
+
}
|
2926 |
+
}
|
2927 |
+
|
2928 |
+
@media (min-width: 501px) {
|
2929 |
+
.premium-dual-header-first-container {
|
2930 |
+
margin-left: 5px;
|
2931 |
+
}
|
2932 |
+
}
|
2933 |
+
|
2934 |
+
.premium-dual-header-first-header.gradient .premium-dual-header-first-span,
|
2935 |
+
.premium-dual-header-second-header.gradient {
|
2936 |
+
-webkit-background-size: 300% 300% !important;
|
2937 |
+
background-size: 300% 300% !important;
|
2938 |
+
-webkit-animation: Gradient 10s ease-in-out infinite;
|
2939 |
+
animation: Gradient 10s ease-in-out infinite;
|
2940 |
+
}
|
2941 |
+
|
2942 |
+
@-webkit-keyframes Gradient {
|
2943 |
+
0% {
|
2944 |
+
background-position: 100% 50%;
|
2945 |
+
}
|
2946 |
+
|
2947 |
+
50% {
|
2948 |
+
background-position: 0% 50%;
|
2949 |
+
}
|
2950 |
+
|
2951 |
+
100% {
|
2952 |
+
background-position: 100% 50%;
|
2953 |
+
}
|
2954 |
+
}
|
2955 |
+
|
2956 |
+
@keyframes Gradient {
|
2957 |
+
0% {
|
2958 |
+
background-position: 100% 50%;
|
2959 |
+
}
|
2960 |
+
|
2961 |
+
50% {
|
2962 |
+
background-position: 0% 50%;
|
2963 |
+
}
|
2964 |
+
|
2965 |
+
100% {
|
2966 |
+
background-position: 100% 50%;
|
2967 |
+
}
|
2968 |
+
}
|
2969 |
+
|
2970 |
+
/**************** Premium Title ****************/
|
2971 |
+
/***********************************************/
|
2972 |
+
.premium-title-container {
|
2973 |
+
position: relative;
|
2974 |
+
width: 100%;
|
2975 |
+
clear: both;
|
2976 |
+
overflow: hidden;
|
2977 |
+
}
|
2978 |
+
|
2979 |
+
.premium-title-container .premium-title-header {
|
2980 |
+
position: relative;
|
2981 |
+
margin: 0;
|
2982 |
+
padding: 10px;
|
2983 |
+
}
|
2984 |
+
|
2985 |
+
.premium-title-container .premium-title-header:not(.premium-title-style7) {
|
2986 |
+
-webkit-box-align: center;
|
2987 |
+
-webkit-align-items: center;
|
2988 |
+
-moz-box-align: center;
|
2989 |
+
-ms-flex-align: center;
|
2990 |
+
align-items: center;
|
2991 |
+
}
|
2992 |
+
|
2993 |
+
.premium-title-container .premium-title-header svg {
|
2994 |
+
width: 40px;
|
2995 |
+
height: 40px;
|
2996 |
+
}
|
2997 |
+
|
2998 |
+
.premium-title-container .premium-title-header img {
|
2999 |
+
width: 40px;
|
3000 |
+
height: 40px;
|
3001 |
+
-o-object-fit: cover;
|
3002 |
+
object-fit: cover;
|
3003 |
+
}
|
3004 |
+
|
3005 |
+
.premium-title-container .premium-title-header a {
|
3006 |
+
position: absolute;
|
3007 |
+
top: 0;
|
3008 |
+
right: 0;
|
3009 |
+
width: 100%;
|
3010 |
+
height: 100%;
|
3011 |
+
}
|
3012 |
+
|
3013 |
+
.premium-title-container .premium-lottie-animation {
|
3014 |
+
-js-display: flex;
|
3015 |
+
display: -webkit-box;
|
3016 |
+
display: -webkit-flex;
|
3017 |
+
display: -moz-box;
|
3018 |
+
display: -ms-flexbox;
|
3019 |
+
display: flex;
|
3020 |
+
}
|
3021 |
+
|
3022 |
+
.premium-title-icon-row .premium-title-icon {
|
3023 |
+
margin-left: 10px;
|
3024 |
+
}
|
3025 |
+
|
3026 |
+
.premium-title-icon-row-reverse .premium-title-icon {
|
3027 |
+
margin-right: 10px;
|
3028 |
+
}
|
3029 |
+
|
3030 |
+
.premium-title-style3,
|
3031 |
+
.premium-title-style4 {
|
3032 |
+
-js-display: flex;
|
3033 |
+
display: -webkit-box;
|
3034 |
+
display: -webkit-flex;
|
3035 |
+
display: -moz-box;
|
3036 |
+
display: -ms-flexbox;
|
3037 |
+
display: flex;
|
3038 |
+
}
|
3039 |
+
|
3040 |
+
.premium-title-style1,
|
3041 |
+
.premium-title-style2,
|
3042 |
+
.premium-title-style5,
|
3043 |
+
.premium-title-style6,
|
3044 |
+
.premium-title-style8,
|
3045 |
+
.premium-title-style9 {
|
3046 |
+
-js-display: inline-flex;
|
3047 |
+
display: -webkit-inline-box;
|
3048 |
+
display: -webkit-inline-flex;
|
3049 |
+
display: -moz-inline-box;
|
3050 |
+
display: -ms-inline-flexbox;
|
3051 |
+
display: inline-flex;
|
3052 |
+
}
|
3053 |
+
|
3054 |
+
.premium-title-style7 {
|
3055 |
+
-js-display: inline-flex;
|
3056 |
+
display: -webkit-inline-box;
|
3057 |
+
display: -webkit-inline-flex;
|
3058 |
+
display: -moz-inline-box;
|
3059 |
+
display: -ms-inline-flexbox;
|
3060 |
+
display: inline-flex;
|
3061 |
+
-webkit-box-orient: vertical;
|
3062 |
+
-webkit-box-direction: normal;
|
3063 |
+
-webkit-flex-direction: column;
|
3064 |
+
-moz-box-orient: vertical;
|
3065 |
+
-moz-box-direction: normal;
|
3066 |
+
-ms-flex-direction: column;
|
3067 |
+
flex-direction: column;
|
3068 |
+
}
|
3069 |
+
|
3070 |
+
.premium-title-style7 .premium-title-style7-inner {
|
3071 |
+
-js-display: flex;
|
3072 |
+
display: -webkit-box;
|
3073 |
+
display: -webkit-flex;
|
3074 |
+
display: -moz-box;
|
3075 |
+
display: -ms-flexbox;
|
3076 |
+
display: flex;
|
3077 |
+
-webkit-box-align: center;
|
3078 |
+
-webkit-align-items: center;
|
3079 |
+
-moz-box-align: center;
|
3080 |
+
-ms-flex-align: center;
|
3081 |
+
align-items: center;
|
3082 |
+
}
|
3083 |
+
|
3084 |
+
.premium-title-style1 {
|
3085 |
+
border-right: 3px solid #6ec1e4;
|
3086 |
+
}
|
3087 |
+
|
3088 |
+
.premium-title-container.style2,
|
3089 |
+
.premium-title-container.style4,
|
3090 |
+
.premium-title-container.style5,
|
3091 |
+
.premium-title-container.style6 {
|
3092 |
+
border-bottom: 3px solid #6ec1e4;
|
3093 |
+
}
|
3094 |
+
|
3095 |
+
/*Style 6 Header*/
|
3096 |
+
.premium-title-style6:before {
|
3097 |
+
position: absolute;
|
3098 |
+
right: 50%;
|
3099 |
+
bottom: 0;
|
3100 |
+
margin-right: -2px;
|
3101 |
+
content: "";
|
3102 |
+
border: 3px solid transparent;
|
3103 |
+
}
|
3104 |
+
|
3105 |
+
/*Style 6 Trinagle*/
|
3106 |
+
.premium-title-style7-stripe-wrap {
|
3107 |
+
-js-display: flex;
|
3108 |
+
display: -webkit-box;
|
3109 |
+
display: -webkit-flex;
|
3110 |
+
display: -moz-box;
|
3111 |
+
display: -ms-flexbox;
|
3112 |
+
display: flex;
|
3113 |
+
}
|
3114 |
+
|
3115 |
+
.premium-title-style7:before {
|
3116 |
+
display: none;
|
3117 |
+
}
|
3118 |
+
|
3119 |
+
.premium-title-style8 .premium-title-text[data-animation="shiny"] {
|
3120 |
+
-webkit-background-size: 125px 125px !important;
|
3121 |
+
background-size: 125px !important;
|
3122 |
+
color: rgba(255, 255, 255, 0);
|
3123 |
+
-webkit-background-clip: text !important;
|
3124 |
+
background-clip: text !important;
|
3125 |
+
-webkit-animation-name: pa-shinny-text !important;
|
3126 |
+
animation-name: pa-shinny-text !important;
|
3127 |
+
-webkit-animation-duration: var(--animation-speed) !important;
|
3128 |
+
animation-duration: var(--animation-speed) !important;
|
3129 |
+
-webkit-animation-iteration-count: infinite !important;
|
3130 |
+
animation-iteration-count: infinite !important;
|
3131 |
+
background: var(--base-color) -webkit-gradient(linear,
|
3132 |
+
left top,
|
3133 |
+
right top,
|
3134 |
+
from(var(--base-color)),
|
3135 |
+
to(var(--base-color)),
|
3136 |
+
color-stop(0.5, var(--shiny-color))) 0 0 no-repeat;
|
3137 |
+
}
|
3138 |
+
|
3139 |
+
.premium-title-style9[data-animation-blur="process"] .premium-title-style9-letter {
|
3140 |
+
-webkit-animation: pa-blur-shadow 2s 1 alternate;
|
3141 |
+
animation: pa-blur-shadow 2s 1 alternate;
|
3142 |
+
}
|
3143 |
+
|
3144 |
+
.premium-title-gradient-yes .premium-title-text,
|
3145 |
+
.premium-title-gradient-yes .premium-title-icon {
|
3146 |
+
-webkit-background-clip: text;
|
3147 |
+
-webkit-text-fill-color: transparent;
|
3148 |
+
background-image: -webkit-gradient(linear, left top, right top, from(#ffa648), color-stop(#f17cc1), to(#4da9fd));
|
3149 |
+
background-image: -webkit-linear-gradient(left, #ffa648, #f17cc1, #4da9fd);
|
3150 |
+
background-image: linear-gradient(to right, #ffa648, #f17cc1, #4da9fd);
|
3151 |
+
-webkit-animation: pa-text-gradient 8s infinite;
|
3152 |
+
animation: pa-text-gradient 8s infinite;
|
3153 |
+
}
|
3154 |
+
|
3155 |
+
@-webkit-keyframes pa-shinny-text {
|
3156 |
+
0% {
|
3157 |
+
background-position: 100%;
|
3158 |
+
}
|
3159 |
+
|
3160 |
+
100% {
|
3161 |
+
background-position: -100%;
|
3162 |
+
}
|
3163 |
+
}
|
3164 |
+
|
3165 |
+
@keyframes pa-shinny-text {
|
3166 |
+
0% {
|
3167 |
+
background-position: 100%;
|
3168 |
+
}
|
3169 |
+
|
3170 |
+
100% {
|
3171 |
+
background-position: -100%;
|
3172 |
+
}
|
3173 |
+
}
|
3174 |
+
|
3175 |
+
@-webkit-keyframes pa-blur-shadow {
|
3176 |
+
from {
|
3177 |
+
text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
|
3178 |
+
color: transparent;
|
3179 |
+
}
|
3180 |
+
|
3181 |
+
to {
|
3182 |
+
text-shadow: 0;
|
3183 |
+
}
|
3184 |
+
}
|
3185 |
+
|
3186 |
+
@keyframes pa-blur-shadow {
|
3187 |
+
from {
|
3188 |
+
text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
|
3189 |
+
color: transparent;
|
3190 |
+
}
|
3191 |
+
|
3192 |
+
to {
|
3193 |
+
text-shadow: 0;
|
3194 |
+
}
|
3195 |
+
}
|
3196 |
+
|
3197 |
+
@-webkit-keyframes pa-text-gradient {
|
3198 |
+
|
3199 |
+
0%,
|
3200 |
+
100% {
|
3201 |
+
-webkit-filter: hue-rotate(0deg);
|
3202 |
+
filter: hue-rotate(0deg);
|
3203 |
+
}
|
3204 |
+
|
3205 |
+
50% {
|
3206 |
+
-webkit-filter: hue-rotate(360deg);
|
3207 |
+
filter: hue-rotate(360deg);
|
3208 |
+
}
|
3209 |
+
}
|
3210 |
+
|
3211 |
+
@keyframes pa-text-gradient {
|
3212 |
+
|
3213 |
+
0%,
|
3214 |
+
100% {
|
3215 |
+
-webkit-filter: hue-rotate(0deg);
|
3216 |
+
filter: hue-rotate(0deg);
|
3217 |
+
}
|
3218 |
+
|
3219 |
+
50% {
|
3220 |
+
-webkit-filter: hue-rotate(360deg);
|
3221 |
+
filter: hue-rotate(360deg);
|
3222 |
+
}
|
3223 |
+
}
|
3224 |
+
|
3225 |
+
/*
|
3226 |
+
* Common Title/Dual Heading
|
3227 |
+
*/
|
3228 |
+
.premium-title-bg-text:before {
|
3229 |
+
position: absolute;
|
3230 |
+
content: attr(data-background);
|
3231 |
+
top: 0;
|
3232 |
+
left: 0;
|
3233 |
+
text-align: left;
|
3234 |
+
}
|
3235 |
+
|
3236 |
+
.premium-mask-yes .premium-dual-header-first-clip .premium-dual-header-first-span .premium-mask-span,
|
3237 |
+
.premium-mask-yes .premium-dual-header-second-clip .premium-mask-span {
|
3238 |
+
background: inherit;
|
3239 |
+
}
|
3240 |
+
|
3241 |
+
.premium-mask-yes .premium-mask-span {
|
3242 |
+
position: relative;
|
3243 |
+
overflow: hidden;
|
3244 |
+
-js-display: inline-flex !important;
|
3245 |
+
display: -webkit-inline-box !important;
|
3246 |
+
display: -webkit-inline-flex !important;
|
3247 |
+
display: -moz-inline-box !important;
|
3248 |
+
display: -ms-inline-flexbox !important;
|
3249 |
+
display: inline-flex !important;
|
3250 |
+
}
|
3251 |
+
|
3252 |
+
.premium-mask-yes .premium-mask-span::after {
|
3253 |
+
content: "";
|
3254 |
+
position: absolute;
|
3255 |
+
top: 0;
|
3256 |
+
right: 0px;
|
3257 |
+
width: 100%;
|
3258 |
+
height: 100%;
|
3259 |
+
background-color: currentColor;
|
3260 |
+
-webkit-backface-visibility: visible;
|
3261 |
+
backface-visibility: visible;
|
3262 |
+
}
|
3263 |
+
|
3264 |
+
.premium-mask-active.premium-mask-tr .premium-mask-span::after {
|
3265 |
+
-webkit-animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
3266 |
+
animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
3267 |
+
-webkit-transform: translateX(-103%);
|
3268 |
+
-ms-transform: translateX(-103%);
|
3269 |
+
transform: translateX(-103%);
|
3270 |
+
}
|
3271 |
+
|
3272 |
+
.premium-mask-active.premium-mask-tl .premium-mask-span::after {
|
3273 |
+
-webkit-animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
3274 |
+
animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
3275 |
+
-webkit-transform: translateX(103%);
|
3276 |
+
-ms-transform: translateX(103%);
|
3277 |
+
transform: translateX(103%);
|
3278 |
+
}
|
3279 |
+
|
3280 |
+
.premium-mask-active.premium-mask-tb .premium-mask-span::after {
|
3281 |
+
-webkit-animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
3282 |
+
animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
3283 |
+
-webkit-transform: translateY(-103%);
|
3284 |
+
-ms-transform: translateY(-103%);
|
3285 |
+
transform: translateY(-103%);
|
3286 |
+
}
|
3287 |
+
|
3288 |
+
.premium-mask-active.premium-mask-tt .premium-mask-span::after {
|
3289 |
+
-webkit-animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
3290 |
+
animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
3291 |
+
-webkit-transform: translateY(103%);
|
3292 |
+
-ms-transform: translateY(103%);
|
3293 |
+
transform: translateY(103%);
|
3294 |
+
}
|
3295 |
+
|
3296 |
+
@-webkit-keyframes pa-mask-tr {
|
3297 |
+
0% {
|
3298 |
+
-webkit-transform: translateX(0%);
|
3299 |
+
transform: translateX(0%);
|
3300 |
+
}
|
3301 |
+
|
3302 |
+
100% {
|
3303 |
+
-webkit-transform: translateX(103%);
|
3304 |
+
transform: translateX(103%);
|
3305 |
+
}
|
3306 |
+
}
|
3307 |
+
|
3308 |
+
@keyframes pa-mask-tr {
|
3309 |
+
0% {
|
3310 |
+
-webkit-transform: translateX(0%);
|
3311 |
+
transform: translateX(0%);
|
3312 |
+
}
|
3313 |
+
|
3314 |
+
100% {
|
3315 |
+
-webkit-transform: translateX(103%);
|
3316 |
+
transform: translateX(103%);
|
3317 |
+
}
|
3318 |
+
}
|
3319 |
+
|
3320 |
+
@-webkit-keyframes pa-mask-tl {
|
3321 |
+
0% {
|
3322 |
+
-webkit-transform: translateX(0%);
|
3323 |
+
transform: translateX(0%);
|
3324 |
+
}
|
3325 |
+
|
3326 |
+
100% {
|
3327 |
+
-webkit-transform: translateX(-103%);
|
3328 |
+
transform: translateX(-103%);
|
3329 |
+
}
|
3330 |
+
}
|
3331 |
+
|
3332 |
+
@keyframes pa-mask-tl {
|
3333 |
+
0% {
|
3334 |
+
-webkit-transform: translateX(0%);
|
3335 |
+
transform: translateX(0%);
|
3336 |
+
}
|
3337 |
+
|
3338 |
+
100% {
|
3339 |
+
-webkit-transform: translateX(-103%);
|
3340 |
+
transform: translateX(-103%);
|
3341 |
+
}
|
3342 |
+
}
|
3343 |
+
|
3344 |
+
@-webkit-keyframes pa-mask-tb {
|
3345 |
+
0% {
|
3346 |
+
-webkit-transform: translateY(0%);
|
3347 |
+
transform: translateY(0%);
|
3348 |
+
}
|
3349 |
+
|
3350 |
+
100% {
|
3351 |
+
-webkit-transform: translateY(103%);
|
3352 |
+
transform: translateY(103%);
|
3353 |
+
}
|
3354 |
+
}
|
3355 |
+
|
3356 |
+
@keyframes pa-mask-tb {
|
3357 |
+
0% {
|
3358 |
+
-webkit-transform: translateY(0%);
|
3359 |
+
transform: translateY(0%);
|
3360 |
+
}
|
3361 |
+
|
3362 |
+
100% {
|
3363 |
+
-webkit-transform: translateY(103%);
|
3364 |
+
transform: translateY(103%);
|
3365 |
+
}
|
3366 |
+
}
|
3367 |
+
|
3368 |
+
@-webkit-keyframes pa-mask-tt {
|
3369 |
+
0% {
|
3370 |
+
-webkit-transform: translateY(0%);
|
3371 |
+
transform: translateY(0%);
|
3372 |
+
}
|
3373 |
+
|
3374 |
+
100% {
|
3375 |
+
-webkit-transform: translateY(-103%);
|
3376 |
+
transform: translateY(-103%);
|
3377 |
+
}
|
3378 |
+
}
|
3379 |
+
|
3380 |
+
@keyframes pa-mask-tt {
|
3381 |
+
0% {
|
3382 |
+
-webkit-transform: translateY(0%);
|
3383 |
+
transform: translateY(0%);
|
3384 |
+
}
|
3385 |
+
|
3386 |
+
100% {
|
3387 |
+
-webkit-transform: translateY(-103%);
|
3388 |
+
transform: translateY(-103%);
|
3389 |
+
}
|
3390 |
+
}
|
3391 |
+
|
3392 |
+
/**************** Premium Video Box ************/
|
3393 |
+
/***********************************************/
|
3394 |
+
.premium-video-box-transform {
|
3395 |
+
-webkit-transform: none !important;
|
3396 |
+
-ms-transform: none !important;
|
3397 |
+
transform: none !important;
|
3398 |
+
}
|
3399 |
+
|
3400 |
+
.premium-video-box-container {
|
3401 |
+
-js-display: flex;
|
3402 |
+
display: -webkit-box;
|
3403 |
+
display: -webkit-flex;
|
3404 |
+
display: -moz-box;
|
3405 |
+
display: -ms-flexbox;
|
3406 |
+
display: flex;
|
3407 |
+
-webkit-box-orient: vertical;
|
3408 |
+
-webkit-box-direction: normal;
|
3409 |
+
-webkit-flex-direction: column;
|
3410 |
+
-moz-box-orient: vertical;
|
3411 |
+
-moz-box-direction: normal;
|
3412 |
+
-ms-flex-direction: column;
|
3413 |
+
flex-direction: column;
|
3414 |
+
}
|
3415 |
+
|
3416 |
+
.premium-video-box-container>div {
|
3417 |
+
position: relative;
|
3418 |
+
overflow: hidden;
|
3419 |
+
}
|
3420 |
+
|
3421 |
+
.pa-aspect-ratio-11 .premium-video-box-container>div {
|
3422 |
+
padding-bottom: 100%;
|
3423 |
+
}
|
3424 |
+
|
3425 |
+
.pa-aspect-ratio-169 .premium-video-box-container>div {
|
3426 |
+
padding-bottom: 56.25%;
|
3427 |
+
}
|
3428 |
+
|
3429 |
+
.pa-aspect-ratio-43 .premium-video-box-container>div {
|
3430 |
+
padding-bottom: 75%;
|
3431 |
+
}
|
3432 |
+
|
3433 |
+
.pa-aspect-ratio-32 .premium-video-box-container>div {
|
3434 |
+
padding-bottom: 66.6666%;
|
3435 |
+
}
|
3436 |
+
|
3437 |
+
.pa-aspect-ratio-219 .premium-video-box-container>div {
|
3438 |
+
padding-bottom: 42.8571%;
|
3439 |
+
}
|
3440 |
+
|
3441 |
+
.pa-aspect-ratio-916 .premium-video-box-container>div {
|
3442 |
+
padding-bottom: 177.8%;
|
3443 |
+
}
|
3444 |
+
|
3445 |
+
.premium-video-box-image-container {
|
3446 |
+
position: absolute;
|
3447 |
+
top: 0;
|
3448 |
+
right: 0;
|
3449 |
+
bottom: 0;
|
3450 |
+
left: 0;
|
3451 |
+
width: 100%;
|
3452 |
+
height: 100%;
|
3453 |
+
-webkit-background-size: cover;
|
3454 |
+
background-size: cover;
|
3455 |
+
background-position: 50%;
|
3456 |
+
cursor: pointer;
|
3457 |
+
margin: auto;
|
3458 |
+
-webkit-transition: 0.2s all;
|
3459 |
+
transition: 0.2s all;
|
3460 |
+
}
|
3461 |
+
|
3462 |
+
.premium-video-box-play-icon-container {
|
3463 |
+
position: absolute;
|
3464 |
+
z-index: 2;
|
3465 |
+
cursor: pointer;
|
3466 |
+
-webkit-transform: translate(50%, -50%);
|
3467 |
+
-ms-transform: translate(50%, -50%);
|
3468 |
+
transform: translate(50%, -50%);
|
3469 |
+
background: rgba(252, 252, 252, 0.35);
|
3470 |
+
}
|
3471 |
+
|
3472 |
+
.premium-video-box-description-container {
|
3473 |
+
position: absolute;
|
3474 |
+
z-index: 2;
|
3475 |
+
padding: 5px;
|
3476 |
+
text-align: center;
|
3477 |
+
cursor: pointer;
|
3478 |
+
-webkit-transform: translate(50%, -50%);
|
3479 |
+
-ms-transform: translate(50%, -50%);
|
3480 |
+
transform: translate(50%, -50%);
|
3481 |
+
}
|
3482 |
+
|
3483 |
+
.premium-video-box-text {
|
3484 |
+
margin-bottom: 0 !important;
|
3485 |
+
-webkit-transition: all 0.3s ease-in-out;
|
3486 |
+
transition: all 0.3s ease-in-out;
|
3487 |
+
}
|
3488 |
+
|
3489 |
+
.premium-video-box-play-icon {
|
3490 |
+
padding: 15px;
|
3491 |
+
-webkit-transform: translateX(-4%);
|
3492 |
+
-ms-transform: translateX(-4%);
|
3493 |
+
transform: translateX(-4%);
|
3494 |
+
-webkit-transition: all 0.3s ease-in-out;
|
3495 |
+
transition: all 0.3s ease-in-out;
|
3496 |
+
}
|
3497 |
+
|
3498 |
+
.premium-video-box-video-container {
|
3499 |
+
position: absolute;
|
3500 |
+
top: 0;
|
3501 |
+
right: 0;
|
3502 |
+
z-index: 2;
|
3503 |
+
width: 100%;
|
3504 |
+
height: 100%;
|
3505 |
+
-webkit-transition: opacity 0.8s ease-in-out;
|
3506 |
+
transition: opacity 0.8s ease-in-out;
|
3507 |
+
overflow: hidden;
|
3508 |
+
cursor: pointer;
|
3509 |
+
}
|
3510 |
+
|
3511 |
+
.premium-video-box-container[data-overlay="true"][data-type="self"] .premium-video-box-video-container {
|
3512 |
+
opacity: 0;
|
3513 |
+
visibility: hidden;
|
3514 |
+
}
|
3515 |
+
|
3516 |
+
.premium-video-box-video-container iframe {
|
3517 |
+
max-width: 100%;
|
3518 |
+
width: 100%;
|
3519 |
+
height: 100%;
|
3520 |
+
margin: 0;
|
3521 |
+
line-height: 1;
|
3522 |
+
border: none;
|
3523 |
+
}
|
3524 |
+
|
3525 |
+
.premium-video-box-video-container video {
|
3526 |
+
max-width: 100%;
|
3527 |
+
width: 100%;
|
3528 |
+
height: 100%;
|
3529 |
+
margin: 0;
|
3530 |
+
line-height: 1;
|
3531 |
+
border: none;
|
3532 |
+
background-color: #000;
|
3533 |
+
-o-object-fit: contain;
|
3534 |
+
object-fit: contain;
|
3535 |
+
}
|
3536 |
+
|
3537 |
+
.premium-video-box-container .premium-video-box-vimeo-wrap {
|
3538 |
+
-js-display: flex;
|
3539 |
+
display: -webkit-box;
|
3540 |
+
display: -webkit-flex;
|
3541 |
+
display: -moz-box;
|
3542 |
+
display: -ms-flexbox;
|
3543 |
+
display: flex;
|
3544 |
+
position: absolute;
|
3545 |
+
top: 0;
|
3546 |
+
right: 0;
|
3547 |
+
z-index: 3;
|
3548 |
+
margin: 10px;
|
3549 |
+
margin-left: 10px;
|
3550 |
+
-webkit-transition: opacity 0.2s ease-out;
|
3551 |
+
transition: opacity 0.2s ease-out;
|
3552 |
+
margin-left: 4.6em;
|
3553 |
+
}
|
3554 |
+
|
3555 |
+
.premium-video-box-vimeo-wrap .premium-video-box-vimeo-portrait {
|
3556 |
+
width: 60px;
|
3557 |
+
height: 60px;
|
3558 |
+
background: rgba(23, 35, 34, 0.75);
|
3559 |
+
margin-left: 1px;
|
3560 |
+
-webkit-box-flex: 1;
|
3561 |
+
-webkit-flex: 1 0 auto;
|
3562 |
+
-moz-box-flex: 1;
|
3563 |
+
-ms-flex: 1 0 auto;
|
3564 |
+
flex: 1 0 auto;
|
3565 |
+
padding: 0;
|
3566 |
+
}
|
3567 |
+
|
3568 |
+
.premium-video-box-vimeo-portrait img {
|
3569 |
+
width: 50px;
|
3570 |
+
height: 50px;
|
3571 |
+
margin: 5px;
|
3572 |
+
padding: 0;
|
3573 |
+
border: 0;
|
3574 |
+
-webkit-border-radius: 50%;
|
3575 |
+
border-radius: 50%;
|
3576 |
+
}
|
3577 |
+
|
3578 |
+
.premium-video-box-vimeo-wrap .premium-video-box-vimeo-headers {
|
3579 |
+
font-size: 10px;
|
3580 |
+
}
|
3581 |
+
|
3582 |
+
.premium-video-box-vimeo-wrap .premium-video-box-vimeo-title {
|
3583 |
+
max-width: 100%;
|
3584 |
+
font-size: 2em !important;
|
3585 |
+
font-weight: 700;
|
3586 |
+
margin: 0;
|
3587 |
+
padding: 0.1em 0.2em;
|
3588 |
+
background: rgba(23, 35, 34, 0.75);
|
3589 |
+
display: inline-block;
|
3590 |
+
text-transform: none;
|
3591 |
+
line-height: normal;
|
3592 |
+
letter-spacing: normal;
|
3593 |
+
}
|
3594 |
+
|
3595 |
+
.premium-video-box-vimeo-wrap .premium-video-box-vimeo-byline {
|
3596 |
+
font-size: 1.2em !important;
|
3597 |
+
font-weight: 400;
|
3598 |
+
color: #fff;
|
3599 |
+
margin-top: 0.1em;
|
3600 |
+
padding: 0.2em 0.5em;
|
3601 |
+
background: rgba(23, 35, 34, 0.75);
|
3602 |
+
text-transform: none;
|
3603 |
+
line-height: normal;
|
3604 |
+
letter-spacing: normal;
|
3605 |
+
}
|
3606 |
+
|
3607 |
+
.premium-video-box-playlist-container {
|
3608 |
+
-js-display: flex;
|
3609 |
+
display: -webkit-box;
|
3610 |
+
display: -webkit-flex;
|
3611 |
+
display: -moz-box;
|
3612 |
+
display: -ms-flexbox;
|
3613 |
+
display: flex;
|
3614 |
+
-webkit-flex-wrap: wrap;
|
3615 |
+
-ms-flex-wrap: wrap;
|
3616 |
+
flex-wrap: wrap;
|
3617 |
+
}
|
3618 |
+
|
3619 |
+
.premium-video-box-playlist-container .premium-video-box-container {
|
3620 |
+
height: 100%;
|
3621 |
+
overflow: hidden;
|
3622 |
+
}
|
3623 |
+
|
3624 |
+
.premium-video-box-container:hover .premium-video-box-image-container.zoomin {
|
3625 |
+
-webkit-transform: scale(1.1);
|
3626 |
+
-ms-transform: scale(1.1);
|
3627 |
+
transform: scale(1.1);
|
3628 |
+
}
|
3629 |
+
|
3630 |
+
.premium-video-box-container:hover .premium-video-box-image-container.zoomout {
|
3631 |
+
-webkit-transform: scale(1);
|
3632 |
+
-ms-transform: scale(1);
|
3633 |
+
transform: scale(1);
|
3634 |
+
}
|
3635 |
+
|
3636 |
+
.premium-video-box-container:hover .premium-video-box-image-container.scale {
|
3637 |
+
-webkit-transform: scale(1.3) rotate(-5deg);
|
3638 |
+
-ms-transform: scale(1.3) rotate(-5deg);
|
3639 |
+
transform: scale(1.3) rotate(-5deg);
|
3640 |
+
}
|
3641 |
+
|
3642 |
+
.premium-video-box-container:hover .premium-video-box-image-container.gray {
|
3643 |
+
-webkit-filter: grayscale(0%);
|
3644 |
+
filter: grayscale(0%);
|
3645 |
+
}
|
3646 |
+
|
3647 |
+
.premium-video-box-container:hover .premium-video-box-image-container.blur {
|
3648 |
+
-webkit-filter: blur(3px);
|
3649 |
+
filter: blur(3px);
|
3650 |
+
}
|
3651 |
+
|
3652 |
+
.premium-video-box-container:hover .premium-video-box-image-container.sepia {
|
3653 |
+
-webkit-filter: sepia(0%);
|
3654 |
+
filter: sepia(0%);
|
3655 |
+
}
|
3656 |
+
|
3657 |
+
.premium-video-box-container:hover .premium-video-box-image-container.trans {
|
3658 |
+
-webkit-transform: translateX(0px) scale(1.1);
|
3659 |
+
-ms-transform: translateX(0px) scale(1.1);
|
3660 |
+
transform: translateX(0px) scale(1.1);
|
3661 |
+
}
|
3662 |
+
|
3663 |
+
.premium-video-box-container:hover .premium-video-box-image-container.bright {
|
3664 |
+
-webkit-filter: brightness(1.2);
|
3665 |
+
filter: brightness(1.2);
|
3666 |
+
}
|
3667 |
+
|
3668 |
+
.premium-video-box-image-container.gray {
|
3669 |
+
-webkit-filter: grayscale(100%);
|
3670 |
+
filter: grayscale(100%);
|
3671 |
+
}
|
3672 |
+
|
3673 |
+
.premium-video-box-image-container.zoomout,
|
3674 |
+
.premium-video-box-image-container.scale {
|
3675 |
+
-webkit-transform: scale(1.2);
|
3676 |
+
-ms-transform: scale(1.2);
|
3677 |
+
transform: scale(1.2);
|
3678 |
+
}
|
3679 |
+
|
3680 |
+
.premium-video-box-image-container.sepia {
|
3681 |
+
-webkit-filter: sepia(30%);
|
3682 |
+
filter: sepia(30%);
|
3683 |
+
}
|
3684 |
+
|
3685 |
+
.premium-video-box-image-container.bright {
|
3686 |
+
-webkit-filter: brightness(1);
|
3687 |
+
filter: brightness(1);
|
3688 |
+
}
|
3689 |
+
|
3690 |
+
.premium-video-box-image-container.trans {
|
3691 |
+
-webkit-transform: translateX(15px) scale(1.1);
|
3692 |
+
-ms-transform: translateX(15px) scale(1.1);
|
3693 |
+
transform: translateX(15px) scale(1.1);
|
3694 |
+
}
|
3695 |
+
|
3696 |
+
.premium-video-box-mask-media {
|
3697 |
+
-webkit-mask-repeat: no-repeat;
|
3698 |
+
mask-repeat: no-repeat;
|
3699 |
+
}
|
3700 |
+
|
3701 |
+
/* Sticky Video Option */
|
3702 |
+
.premium-video-box-container.premium-video-box-sticky-apply {
|
3703 |
+
z-index: 99;
|
3704 |
+
overflow: unset;
|
3705 |
+
}
|
3706 |
+
|
3707 |
+
.premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
|
3708 |
+
position: fixed !important;
|
3709 |
+
z-index: 99999;
|
3710 |
+
height: 225px;
|
3711 |
+
width: 400px;
|
3712 |
+
background: #fff;
|
3713 |
+
}
|
3714 |
+
|
3715 |
+
.premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-vimeo-wrap,
|
3716 |
+
.premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-container:before {
|
3717 |
+
visibility: hidden;
|
3718 |
+
}
|
3719 |
+
|
3720 |
+
.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 {
|
3721 |
+
-webkit-box-shadow: unset;
|
3722 |
+
box-shadow: unset;
|
3723 |
+
}
|
3724 |
+
|
3725 |
+
.premium-video-box-sticky-close,
|
3726 |
+
.premium-video-box-sticky-infobar {
|
3727 |
+
display: none;
|
3728 |
+
}
|
3729 |
+
|
3730 |
+
.premium-video-box-sticky-apply .premium-video-box-sticky-close {
|
3731 |
+
position: absolute;
|
3732 |
+
padding: 5px;
|
3733 |
+
cursor: pointer;
|
3734 |
+
z-index: 99999;
|
3735 |
+
height: 14px;
|
3736 |
+
width: 14px;
|
3737 |
+
-webkit-box-sizing: content-box;
|
3738 |
+
-moz-box-sizing: content-box;
|
3739 |
+
box-sizing: content-box;
|
3740 |
+
-webkit-border-radius: 100%;
|
3741 |
+
border-radius: 100%;
|
3742 |
+
-js-display: flex;
|
3743 |
+
display: -webkit-box;
|
3744 |
+
display: -webkit-flex;
|
3745 |
+
display: -moz-box;
|
3746 |
+
display: -ms-flexbox;
|
3747 |
+
display: flex;
|
3748 |
+
-webkit-box-pack: center;
|
3749 |
+
-webkit-justify-content: center;
|
3750 |
+
-moz-box-pack: center;
|
3751 |
+
-ms-flex-pack: center;
|
3752 |
+
justify-content: center;
|
3753 |
+
-webkit-box-align: center;
|
3754 |
+
-webkit-align-items: center;
|
3755 |
+
-moz-box-align: center;
|
3756 |
+
-ms-flex-align: center;
|
3757 |
+
align-items: center;
|
3758 |
+
}
|
3759 |
+
|
3760 |
+
.premium-video-box-sticky-apply .premium-video-box-play-icon-container {
|
3761 |
+
-js-display: flex;
|
3762 |
+
display: -webkit-box;
|
3763 |
+
display: -webkit-flex;
|
3764 |
+
display: -moz-box;
|
3765 |
+
display: -ms-flexbox;
|
3766 |
+
display: flex;
|
3767 |
+
}
|
3768 |
+
|
3769 |
+
.premium-video-box-sticky-apply .premium-video-box-play-icon {
|
3770 |
+
-webkit-transition: none;
|
3771 |
+
transition: none;
|
3772 |
+
}
|
3773 |
+
|
3774 |
+
.premium-video-box-sticky-apply .premium-video-box-sticky-infobar {
|
3775 |
+
display: block;
|
3776 |
+
position: relative;
|
3777 |
+
top: 100%;
|
3778 |
+
width: 100%;
|
3779 |
+
padding: 5px;
|
3780 |
+
text-align: center;
|
3781 |
+
z-index: 9999;
|
3782 |
+
margin-top: -1px;
|
3783 |
+
}
|
3784 |
+
|
3785 |
+
.premium-video-box-sticky-apply .premium-video-box-inner-wrap.ui-draggable {
|
3786 |
+
cursor: move;
|
3787 |
+
}
|
3788 |
+
|
3789 |
+
.premium-video-sticky-top-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
|
3790 |
+
left: auto;
|
3791 |
+
right: 20px;
|
3792 |
+
top: 20px;
|
3793 |
+
}
|
3794 |
+
|
3795 |
+
.premium-video-sticky-bottom-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
|
3796 |
+
left: auto;
|
3797 |
+
right: 20px;
|
3798 |
+
bottom: 20px;
|
3799 |
+
}
|
3800 |
+
|
3801 |
+
.premium-video-sticky-top-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
|
3802 |
+
right: auto;
|
3803 |
+
left: 20px;
|
3804 |
+
top: 20px;
|
3805 |
+
}
|
3806 |
+
|
3807 |
+
.premium-video-sticky-bottom-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
|
3808 |
+
right: auto;
|
3809 |
+
left: 20px;
|
3810 |
+
bottom: 20px;
|
3811 |
+
}
|
3812 |
+
|
3813 |
+
.premium-video-sticky-center-left .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
|
3814 |
+
left: auto;
|
3815 |
+
right: 20px;
|
3816 |
+
top: 50%;
|
3817 |
+
-webkit-transform: translateY(-50%);
|
3818 |
+
-ms-transform: translateY(-50%);
|
3819 |
+
transform: translateY(-50%);
|
3820 |
+
}
|
3821 |
+
|
3822 |
+
.premium-video-sticky-center-right .premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
|
3823 |
+
right: auto;
|
3824 |
+
left: 20px;
|
3825 |
+
top: 50%;
|
3826 |
+
-webkit-transform: translateY(-50%);
|
3827 |
+
-ms-transform: translateY(-50%);
|
3828 |
+
transform: translateY(-50%);
|
3829 |
+
}
|
3830 |
+
|
3831 |
+
.premium-video-sticky-bottom-right .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap,
|
3832 |
+
.premium-video-sticky-bottom-left .premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
|
3833 |
+
bottom: 55px;
|
3834 |
+
}
|
3835 |
+
|
3836 |
+
.premium-video-sticky-top-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
|
3837 |
+
.premium-video-sticky-bottom-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
|
3838 |
+
.premium-video-sticky-center-left .premium-video-box-sticky-apply .premium-video-box-sticky-close {
|
3839 |
+
top: -10px;
|
3840 |
+
left: -10px;
|
3841 |
+
}
|
3842 |
+
|
3843 |
+
.premium-video-sticky-top-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
|
3844 |
+
.premium-video-sticky-bottom-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
|
3845 |
+
.premium-video-sticky-center-right .premium-video-box-sticky-apply .premium-video-box-sticky-close {
|
3846 |
+
top: -10px;
|
3847 |
+
right: -10px;
|
3848 |
+
}
|
3849 |
+
|
3850 |
+
.premium-video-box-filter-sticky {
|
3851 |
+
-webkit-filter: none !important;
|
3852 |
+
filter: none !important;
|
3853 |
+
}
|
3854 |
+
|
3855 |
+
/**************** Premium Blog *****************/
|
3856 |
+
/***********************************************/
|
3857 |
+
.premium-blog-thumb-effect-wrapper {
|
3858 |
+
position: relative;
|
3859 |
+
overflow: hidden;
|
3860 |
+
}
|
3861 |
+
|
3862 |
+
.premium-blog-effect-container:not(.premium-blog-bordered-effect) .premium-blog-post-link {
|
3863 |
+
position: absolute;
|
3864 |
+
top: 0;
|
3865 |
+
right: 0;
|
3866 |
+
width: 100%;
|
3867 |
+
height: 100%;
|
3868 |
+
z-index: 2;
|
3869 |
+
padding: 20px;
|
3870 |
+
}
|
3871 |
+
|
3872 |
+
.premium-blog-bordered-effect .premium-blog-post-link {
|
3873 |
+
display: block;
|
3874 |
+
height: 100%;
|
3875 |
+
position: relative;
|
3876 |
+
}
|
3877 |
+
|
3878 |
+
/*Thumbnail Img*/
|
3879 |
+
.premium-blog-thumbnail-container {
|
3880 |
+
overflow: hidden;
|
3881 |
+
}
|
3882 |
+
|
3883 |
+
.premium-blog-thumbnail-container img,
|
3884 |
+
.premium-blog-thumbnail-container .below-entry-meta {
|
3885 |
+
width: 100%;
|
3886 |
+
height: 100%;
|
3887 |
+
margin: 0 !important;
|
3888 |
+
-webkit-transition: all 0.4s ease-in-out;
|
3889 |
+
transition: all 0.4s ease-in-out;
|
3890 |
+
}
|
3891 |
+
|
3892 |
+
.premium-blog-thumb-effect-wrapper .premium-blog-zoomout-effect img,
|
3893 |
+
.premium-blog-thumb-effect-wrapper .premium-blog-scale-effect img {
|
3894 |
+
-webkit-transform: scale(1.2);
|
3895 |
+
-ms-transform: scale(1.2);
|
3896 |
+
transform: scale(1.2);
|
3897 |
+
}
|
3898 |
+
|
3899 |
+
.premium-blog-thumb-effect-wrapper .premium-blog-sepia-effect img {
|
3900 |
+
-webkit-filter: sepia(30%);
|
3901 |
+
filter: sepia(30%);
|
3902 |
+
}
|
3903 |
+
|
3904 |
+
.premium-blog-thumb-effect-wrapper .premium-blog-bright-effect img {
|
3905 |
+
-webkit-filter: brightness(1);
|
3906 |
+
filter: brightness(1);
|
3907 |
+
}
|
3908 |
+
|
3909 |
+
.premium-blog-thumb-effect-wrapper .premium-blog-trans-effect img {
|
3910 |
+
-webkit-transform: translateX(15px) scale(1.1);
|
3911 |
+
-ms-transform: translateX(15px) scale(1.1);
|
3912 |
+
transform: translateX(15px) scale(1.1);
|
3913 |
+
}
|
3914 |
+
|
3915 |
+
.premium-blog-post-outer-container:hover .premium-blog-zoomin-effect img {
|
3916 |
+
-webkit-transform: scale(1.2);
|
3917 |
+
-ms-transform: scale(1.2);
|
3918 |
+
transform: scale(1.2);
|
3919 |
+
}
|
3920 |
+
|
3921 |
+
.premium-blog-post-outer-container:hover .premium-blog-zoomout-effect img {
|
3922 |
+
-webkit-transform: scale(1.1);
|
3923 |
+
-ms-transform: scale(1.1);
|
3924 |
+
transform: scale(1.1);
|
3925 |
+
}
|
3926 |
+
|
3927 |
+
.premium-blog-post-outer-container:hover .premium-blog-scale-effect img {
|
3928 |
+
-webkit-transform: scale(1.3) rotate(-5deg);
|
3929 |
+
-ms-transform: scale(1.3) rotate(-5deg);
|
3930 |
+
transform: scale(1.3) rotate(-5deg);
|
3931 |
+
}
|
3932 |
+
|
3933 |
+
.premium-blog-post-outer-container:hover .premium-blog-gray-effect img {
|
3934 |
+
-webkit-filter: grayscale(100%);
|
3935 |
+
filter: grayscale(100%);
|
3936 |
+
}
|
3937 |
+
|
3938 |
+
.premium-blog-post-outer-container:hover .premium-blog-blur-effect img {
|
3939 |
+
-webkit-filter: blur(3px);
|
3940 |
+
filter: blur(3px);
|
3941 |
+
}
|
3942 |
+
|
3943 |
+
.premium-blog-post-outer-container:hover .premium-blog-sepia-effect img {
|
3944 |
+
-webkit-filter: sepia(0%);
|
3945 |
+
filter: sepia(0%);
|
3946 |
+
}
|
3947 |
+
|
3948 |
+
.premium-blog-post-outer-container:hover .premium-blog-bright-effect img {
|
3949 |
+
-webkit-filter: brightness(1.2);
|
3950 |
+
filter: brightness(1.2);
|
3951 |
+
}
|
3952 |
+
|
3953 |
+
.premium-blog-post-outer-container:hover .premium-blog-trans-effect img {
|
3954 |
+
-webkit-transform: translateX(0px) scale(1.1);
|
3955 |
+
-ms-transform: translateX(0px) scale(1.1);
|
3956 |
+
transform: translateX(0px) scale(1.1);
|
3957 |
+
}
|
3958 |
+
|
3959 |
+
.premium-blog-post-container {
|
3960 |
+
overflow: hidden;
|
3961 |
+
}
|
3962 |
+
|
3963 |
+
.premium-blog-post-container .premium-blog-inner-container {
|
3964 |
+
-js-display: flex;
|
3965 |
+
display: -webkit-box;
|
3966 |
+
display: -webkit-flex;
|
3967 |
+
display: -moz-box;
|
3968 |
+
display: -ms-flexbox;
|
3969 |
+
display: flex;
|
3970 |
+
}
|
3971 |
+
|
3972 |
+
.premium-blog-post-container .premium-blog-post-content {
|
3973 |
+
line-height: 1.5em;
|
3974 |
+
color: #777;
|
3975 |
+
font-size: 14px;
|
3976 |
+
margin-bottom: 10px;
|
3977 |
+
}
|
3978 |
+
|
3979 |
+
.premium-blog-post-container ul.post-categories a:hover,
|
3980 |
+
.premium-blog-post-container ul.post-categories a:focus,
|
3981 |
+
.premium-blog-post-container .premium-blog-post-link:hover,
|
3982 |
+
.premium-blog-post-container .premium-blog-post-link:focus {
|
3983 |
+
-webkit-box-shadow: none !important;
|
3984 |
+
box-shadow: none !important;
|
3985 |
+
outline: none !important;
|
3986 |
+
}
|
3987 |
+
|
3988 |
+
.premium-blog-post-container .premium-blog-entry-title {
|
3989 |
+
font-size: 18px;
|
3990 |
+
margin-bottom: 5px;
|
3991 |
+
}
|
3992 |
+
|
3993 |
+
.premium-blog-post-container.premium-blog-skin-modern .premium-blog-content-wrapper {
|
3994 |
+
position: relative;
|
3995 |
+
z-index: 3;
|
3996 |
+
top: -50px;
|
3997 |
+
}
|
3998 |
+
|
3999 |
+
.premium-blog-post-container .premium-blog-content-wrapper {
|
4000 |
+
background-color: #f5f5f5;
|
4001 |
+
padding: 30px;
|
4002 |
+
}
|
4003 |
+
|
4004 |
+
.premium-blog-post-container .premium-blog-content-wrapper.empty-thumb {
|
4005 |
+
top: 0;
|
4006 |
+
}
|
4007 |
+
|
4008 |
+
.premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before,
|
4009 |
+
.premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:after {
|
4010 |
+
position: absolute;
|
4011 |
+
content: "";
|
4012 |
+
z-index: 1;
|
4013 |
+
top: 50%;
|
4014 |
+
right: 50%;
|
4015 |
+
opacity: 0;
|
4016 |
+
-webkit-transform: translate(50%, -50%);
|
4017 |
+
-ms-transform: translate(50%, -50%);
|
4018 |
+
transform: translate(50%, -50%);
|
4019 |
+
-webkit-transition: all 0.4s linear 0s;
|
4020 |
+
transition: all 0.4s linear 0s;
|
4021 |
+
height: 1px;
|
4022 |
+
width: 100%;
|
4023 |
+
background-color: #fff;
|
4024 |
+
}
|
4025 |
+
|
4026 |
+
.premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before {
|
4027 |
+
width: 1px;
|
4028 |
+
height: 100%;
|
4029 |
+
}
|
4030 |
+
|
4031 |
+
.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 {
|
4032 |
+
width: 20px;
|
4033 |
+
opacity: 1;
|
4034 |
+
}
|
4035 |
+
|
4036 |
+
.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 {
|
4037 |
+
height: 20px;
|
4038 |
+
opacity: 1;
|
4039 |
+
}
|
4040 |
+
|
4041 |
+
.premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-content-wrapper {
|
4042 |
+
margin: 0px 10px 20px;
|
4043 |
+
clear: both;
|
4044 |
+
}
|
4045 |
+
|
4046 |
+
.premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay,
|
4047 |
+
.premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay,
|
4048 |
+
.premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay {
|
4049 |
+
position: absolute;
|
4050 |
+
top: 0;
|
4051 |
+
right: 0;
|
4052 |
+
width: 100%;
|
4053 |
+
height: 100%;
|
4054 |
+
-webkit-transition: all 0.3s ease-in-out;
|
4055 |
+
transition: all 0.3s ease-in-out;
|
4056 |
+
opacity: 0;
|
4057 |
+
}
|
4058 |
+
|
4059 |
+
.premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay a,
|
4060 |
+
.premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay a,
|
4061 |
+
.premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay a {
|
4062 |
+
-js-display: flex;
|
4063 |
+
display: -webkit-box;
|
4064 |
+
display: -webkit-flex;
|
4065 |
+
display: -moz-box;
|
4066 |
+
display: -ms-flexbox;
|
4067 |
+
display: flex;
|
4068 |
+
-webkit-box-pack: center;
|
4069 |
+
-webkit-justify-content: center;
|
4070 |
+
-moz-box-pack: center;
|
4071 |
+
-ms-flex-pack: center;
|
4072 |
+
justify-content: center;
|
4073 |
+
-webkit-box-align: center;
|
4074 |
+
-webkit-align-items: center;
|
4075 |
+
-moz-box-align: center;
|
4076 |
+
-ms-flex-align: center;
|
4077 |
+
align-items: center;
|
4078 |
+
width: 100%;
|
4079 |
+
height: 100%;
|
4080 |
+
}
|
4081 |
+
|
4082 |
+
.premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay span,
|
4083 |
+
.premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay i,
|
4084 |
+
.premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay span,
|
4085 |
+
.premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-overlay i,
|
4086 |
+
.premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay span,
|
4087 |
+
.premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay i {
|
4088 |
+
-webkit-transition: all 0.3s ease-in-out;
|
4089 |
+
transition: all 0.3s ease-in-out;
|
4090 |
+
}
|
4091 |
+
|
4092 |
+
.premium-blog-post-container.premium-blog-skin-side {
|
4093 |
+
-js-display: flex;
|
4094 |
+
display: -webkit-box;
|
4095 |
+
display: -webkit-flex;
|
4096 |
+
display: -moz-box;
|
4097 |
+
display: -ms-flexbox;
|
4098 |
+
display: flex;
|
4099 |
+
}
|
4100 |
+
|
4101 |
+
.premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-container {
|
4102 |
+
height: 100%;
|
4103 |
+
}
|
4104 |
+
|
4105 |
+
.premium-blog-post-container.premium-blog-skin-side .premium-blog-content-wrapper {
|
4106 |
+
-webkit-box-flex: 1;
|
4107 |
+
-webkit-flex: 1;
|
4108 |
+
-moz-box-flex: 1;
|
4109 |
+
-ms-flex: 1;
|
4110 |
+
flex: 1;
|
4111 |
+
}
|
4112 |
+
|
4113 |
+
.premium-blog-post-container.premium-blog-skin-banner {
|
4114 |
+
position: relative;
|
4115 |
+
}
|
4116 |
+
|
4117 |
+
.premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper {
|
4118 |
+
position: absolute;
|
4119 |
+
width: 100%;
|
4120 |
+
bottom: 0;
|
4121 |
+
-js-display: flex;
|
4122 |
+
display: -webkit-box;
|
4123 |
+
display: -webkit-flex;
|
4124 |
+
display: -moz-box;
|
4125 |
+
display: -ms-flexbox;
|
4126 |
+
display: flex;
|
4127 |
+
-webkit-box-orient: vertical;
|
4128 |
+
-webkit-box-direction: normal;
|
4129 |
+
-webkit-flex-direction: column;
|
4130 |
+
-moz-box-orient: vertical;
|
4131 |
+
-moz-box-direction: normal;
|
4132 |
+
-ms-flex-direction: column;
|
4133 |
+
flex-direction: column;
|
4134 |
+
background-color: transparent;
|
4135 |
+
z-index: 3;
|
4136 |
+
}
|
4137 |
+
|
4138 |
+
.premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper-inner {
|
4139 |
+
-webkit-transition: -webkit-transform 0.3s ease-in-out;
|
4140 |
+
transition: -webkit-transform 0.3s ease-in-out;
|
4141 |
+
transition: transform 0.3s ease-in-out;
|
4142 |
+
transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
|
4143 |
+
}
|
4144 |
+
|
4145 |
+
.premium-blog-post-container.premium-blog-skin-banner:hover .premium-blog-content-wrapper-inner {
|
4146 |
+
-webkit-transform: translateY(-5px);
|
4147 |
+
-ms-transform: translateY(-5px);
|
4148 |
+
transform: translateY(-5px);
|
4149 |
+
}
|
4150 |
+
|
4151 |
+
.premium-blog-post-container .premium-blog-cats-container ul.post-categories {
|
4152 |
+
margin: 0;
|
4153 |
+
padding: 0;
|
4154 |
+
list-style: none;
|
4155 |
+
-js-display: flex;
|
4156 |
+
display: -webkit-box;
|
4157 |
+
display: -webkit-flex;
|
4158 |
+
display: -moz-box;
|
4159 |
+
display: -ms-flexbox;
|
4160 |
+
display: flex;
|
4161 |
+
}
|
4162 |
+
|
4163 |
+
.premium-blog-post-container .premium-blog-cats-container a {
|
4164 |
+
display: block;
|
4165 |
+
font-size: 12px;
|
4166 |
+
color: #fff;
|
4167 |
+
background-color: #777;
|
4168 |
+
margin: 0 0 10px 3px;
|
4169 |
+
padding: 5px;
|
4170 |
+
-webkit-transition: all 0.3s ease-in-out;
|
4171 |
+
transition: all 0.3s ease-in-out;
|
4172 |
+
}
|
4173 |
+
|
4174 |
+
/*
|
4175 |
+
* Diagonal Effect
|
4176 |
+
*/
|
4177 |
+
.premium-blog-diagonal-container {
|
4178 |
+
position: absolute;
|
4179 |
+
top: 0;
|
4180 |
+
right: 0;
|
4181 |
+
width: 100%;
|
4182 |
+
height: 100%;
|
4183 |
+
}
|
4184 |
+
|
4185 |
+
.premium-blog-diagonal-effect:before {
|
4186 |
+
position: absolute;
|
4187 |
+
top: 0px;
|
4188 |
+
right: 0px;
|
4189 |
+
width: 100%;
|
4190 |
+
height: 100%;
|
4191 |
+
content: " ";
|
4192 |
+
z-index: 1;
|
4193 |
+
background: rgba(255, 255, 255, 0.2);
|
4194 |
+
-webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
|
4195 |
+
transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
|
4196 |
+
-webkit-transition: all 0.3s linear 0s;
|
4197 |
+
transition: all 0.3s linear 0s;
|
4198 |
+
}
|
4199 |
+
|
4200 |
+
.premium-blog-thumb-effect-wrapper:hover .premium-blog-diagonal-effect:before {
|
4201 |
+
-webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
|
4202 |
+
transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
|
4203 |
+
}
|
4204 |
+
|
4205 |
+
/*
|
4206 |
+
* Framed Effect
|
4207 |
+
*/
|
4208 |
+
.premium-blog-framed-effect {
|
4209 |
+
position: absolute;
|
4210 |
+
width: -webkit-calc(100% - 30px);
|
4211 |
+
width: calc(100% - 30px);
|
4212 |
+
height: -webkit-calc(100% - 30px);
|
4213 |
+
height: calc(100% - 30px);
|
4214 |
+
top: 15px;
|
4215 |
+
right: 15px;
|
4216 |
+
opacity: 0;
|
4217 |
+
-webkit-transform: scale(0.3);
|
4218 |
+
-ms-transform: scale(0.3);
|
4219 |
+
transform: scale(0.3);
|
4220 |
+
-webkit-transition: all 0.3s linear 0s;
|
4221 |
+
transition: all 0.3s linear 0s;
|
4222 |
+
}
|
4223 |
+
|
4224 |
+
.premium-blog-thumb-effect-wrapper:hover .premium-blog-framed-effect {
|
4225 |
+
opacity: 0.99;
|
4226 |
+
-webkit-transform: scale(1);
|
4227 |
+
-ms-transform: scale(1);
|
4228 |
+
transform: scale(1);
|
4229 |
+
}
|
4230 |
+
|
4231 |
+
/*
|
4232 |
+
* Bordered Effect
|
4233 |
+
*/
|
4234 |
+
.premium-blog-bordered-effect {
|
4235 |
+
position: absolute;
|
4236 |
+
top: 0;
|
4237 |
+
right: 0;
|
4238 |
+
width: 100%;
|
4239 |
+
height: 100%;
|
4240 |
+
opacity: 0;
|
4241 |
+
padding: 15px;
|
4242 |
+
-webkit-transition: all 0.3s linear 0s;
|
4243 |
+
transition: all 0.3s linear 0s;
|
4244 |
+
}
|
4245 |
+
|
4246 |
+
.premium-blog-bordered-effect .premium-blog-post-link:before,
|
4247 |
+
.premium-blog-bordered-effect .premium-blog-post-link:after {
|
4248 |
+
content: "";
|
4249 |
+
display: block;
|
4250 |
+
position: absolute;
|
4251 |
+
top: 0;
|
4252 |
+
right: 0;
|
4253 |
+
width: 100%;
|
4254 |
+
height: 100%;
|
4255 |
+
-webkit-transition: all 0.5s linear 0s;
|
4256 |
+
transition: all 0.5s linear 0s;
|
4257 |
+
-webkit-transition-delay: 0s;
|
4258 |
+
transition-delay: 0s;
|
4259 |
+
border-color: rgba(255, 255, 255, 0.45);
|
4260 |
+
}
|
4261 |
+
|
4262 |
+
.premium-blog-bordered-effect .premium-blog-post-link:before {
|
4263 |
+
border-left: 2px solid;
|
4264 |
+
border-right: 2px solid;
|
4265 |
+
-webkit-transform: scale(1, 0);
|
4266 |
+
-ms-transform: scale(1, 0);
|
4267 |
+
transform: scale(1, 0);
|
4268 |
+
-webkit-transform-origin: 0% 0;
|
4269 |
+
-ms-transform-origin: 0% 0;
|
4270 |
+
transform-origin: 0% 0;
|
4271 |
+
}
|
4272 |
+
|
4273 |
+
.premium-blog-bordered-effect .premium-blog-post-link:after {
|
4274 |
+
border-top: 2px solid;
|
4275 |
+
border-bottom: 2px solid;
|
4276 |
+
-webkit-transform: scale(0, 1);
|
4277 |
+
-ms-transform: scale(0, 1);
|
4278 |
+
transform: scale(0, 1);
|
4279 |
+
-webkit-transform-origin: 100% 0;
|
4280 |
+
-ms-transform-origin: 100% 0;
|
4281 |
+
transform-origin: 100% 0;
|
4282 |
+
}
|
4283 |
+
|
4284 |
+
.premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect {
|
4285 |
+
opacity: 0.99;
|
4286 |
+
}
|
4287 |
+
|
4288 |
+
.premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect .premium-blog-post-link:before,
|
4289 |
+
.premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect .premium-blog-post-link:after {
|
4290 |
+
-webkit-transition-delay: 0.15s;
|
4291 |
+
transition-delay: 0.15s;
|
4292 |
+
opacity: 1;
|
4293 |
+
-webkit-transform: scale(1);
|
4294 |
+
-ms-transform: scale(1);
|
4295 |
+
transform: scale(1);
|
4296 |
+
}
|
4297 |
+
|
4298 |
+
/*
|
4299 |
+
* Squares Effect
|
4300 |
+
*/
|
4301 |
+
.premium-blog-squares-effect,
|
4302 |
+
.premium-blog-squares-square-container {
|
4303 |
+
position: absolute;
|
4304 |
+
top: 0;
|
4305 |
+
right: 0;
|
4306 |
+
width: 100%;
|
4307 |
+
height: 100%;
|
4308 |
+
}
|
4309 |
+
|
4310 |
+
.premium-blog-squares-effect:before,
|
4311 |
+
.premium-blog-squares-effect:after {
|
4312 |
+
position: absolute;
|
4313 |
+
content: "";
|
4314 |
+
top: 0;
|
4315 |
+
right: 0;
|
4316 |
+
width: 50%;
|
4317 |
+
height: 50%;
|
4318 |
+
-webkit-transform: translate(100%, -100%);
|
4319 |
+
-ms-transform: translate(100%, -100%);
|
4320 |
+
transform: translate(100%, -100%);
|
4321 |
+
opacity: 0.7;
|
4322 |
+
-webkit-transition: all 0.3s linear 0s;
|
4323 |
+
transition: all 0.3s linear 0s;
|
4324 |
+
}
|
4325 |
+
|
4326 |
+
.premium-blog-squares-square-container:before,
|
4327 |
+
.premium-blog-squares-square-container:after {
|
4328 |
+
position: absolute;
|
4329 |
+
content: "";
|
4330 |
+
top: 0;
|
4331 |
+
right: 0;
|
4332 |
+
width: 50%;
|
4333 |
+
height: 50%;
|
4334 |
+
-webkit-transform: translate(100%, -100%);
|
4335 |
+
-ms-transform: translate(100%, -100%);
|
4336 |
+
transform: translate(100%, -100%);
|
4337 |
+
opacity: 0.7;
|
4338 |
+
-webkit-transition: all 0.3s linear 0s;
|
4339 |
+
transition: all 0.3s linear 0s;
|
4340 |
+
}
|
4341 |
+
|
4342 |
+
.premium-blog-squares-square-container:before,
|
4343 |
+
.premium-blog-squares-square-container:after {
|
4344 |
+
opacity: 0.8;
|
4345 |
+
}
|
4346 |
+
|
4347 |
+
.premium-blog-squares-effect:after {
|
4348 |
+
-webkit-transform: translate(-200%, 200%);
|
4349 |
+
-ms-transform: translate(-200%, 200%);
|
4350 |
+
transform: translate(-200%, 200%);
|
4351 |
+
}
|
4352 |
+
|
4353 |
+
.premium-blog-squares-square-container:before {
|
4354 |
+
-webkit-transform: translate(100%, 200%);
|
4355 |
+
-ms-transform: translate(100%, 200%);
|
4356 |
+
transform: translate(100%, 200%);
|
4357 |
+
}
|
4358 |
+
|
4359 |
+
.premium-blog-squares-square-container:after {
|
4360 |
+
-webkit-transform: translate(-200%, -100%);
|
4361 |
+
-ms-transform: translate(-200%, -100%);
|
4362 |
+
transform: translate(-200%, -100%);
|
4363 |
+
}
|
4364 |
+
|
4365 |
+
.premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:before {
|
4366 |
+
-webkit-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
|
4367 |
+
-ms-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
|
4368 |
+
transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
|
4369 |
+
}
|
4370 |
+
|
4371 |
+
.premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:after {
|
4372 |
+
-webkit-transform: translate(-100%, 100%) scaleY(1.003) scaleX(1.003);
|
4373 |
+
-ms-transform: translate(-100%, 100%) scaleY(1.003) scaleX(1.003);
|
4374 |
+
transform: translate(-100%, 100%) scaleY(1.003) scaleX(1.003);
|
4375 |
+
}
|
4376 |
+
|
4377 |
+
.premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:before {
|
4378 |
+
-webkit-transform: translate(0, 100%);
|
4379 |
+
-ms-transform: translate(0, 100%);
|
4380 |
+
transform: translate(0, 100%);
|
4381 |
+
}
|
4382 |
+
|
4383 |
+
.premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:after {
|
4384 |
+
-webkit-transform: translate(-100%, 0%);
|
4385 |
+
-ms-transform: translate(-100%, 0%);
|
4386 |
+
transform: translate(-100%, 0%);
|
4387 |
+
}
|
4388 |
+
|
4389 |
+
.premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay {
|
4390 |
+
opacity: 1;
|
4391 |
+
}
|
4392 |
+
|
4393 |
+
.premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay a {
|
4394 |
+
opacity: 1;
|
4395 |
+
-webkit-transform: scale(1);
|
4396 |
+
-ms-transform: scale(1);
|
4397 |
+
transform: scale(1);
|
4398 |
+
}
|
4399 |
+
|
4400 |
+
.premium-blog-clear-fix {
|
4401 |
+
clear: both;
|
4402 |
+
}
|
4403 |
+
|
4404 |
+
.premium-blog-masked .premium-blog-thumbnail-container {
|
4405 |
+
position: relative;
|
4406 |
+
overflow: visible;
|
4407 |
+
}
|
4408 |
+
|
4409 |
+
.premium-blog-masked .premium-blog-thumbnail-container svg {
|
4410 |
+
position: absolute;
|
4411 |
+
height: 100px;
|
4412 |
+
width: 100%;
|
4413 |
+
bottom: -5px;
|
4414 |
+
right: 0;
|
4415 |
+
fill: #f5f5f5;
|
4416 |
+
z-index: 99;
|
4417 |
+
}
|
4418 |
+
|
4419 |
+
.premium-blog-masked .premium-blog-thumbnail-container svg.premium-blog-shape-divider-svg {
|
4420 |
+
-webkit-transform: rotate(180deg);
|
4421 |
+
-ms-transform: rotate(180deg);
|
4422 |
+
transform: rotate(180deg);
|
4423 |
+
}
|
4424 |
+
|
4425 |
+
.premium-blog-masked .premium-blog-author-thumbnail,
|
4426 |
+
.premium-blog-masked .premium-blog-skin-banner .premium-blog-content-wrapper {
|
4427 |
+
z-index: 999 !important;
|
4428 |
+
}
|
4429 |
+
|
4430 |
+
/*Post Format Container*/
|
4431 |
+
.premium-blog-format-link {
|
4432 |
+
padding: 5px;
|
4433 |
+
line-height: 0;
|
4434 |
+
}
|
4435 |
+
|
4436 |
+
/*Post Format Icon*/
|
4437 |
+
/*Post Format Content Margin */
|
4438 |
+
.premium-blog-entry-meta {
|
4439 |
+
line-height: 1.3em;
|
4440 |
+
font-size: 12px;
|
4441 |
+
margin-bottom: 13px;
|
4442 |
+
color: #adadad;
|
4443 |
+
}
|
4444 |
+
|
4445 |
+
.premium-blog-entry-meta i {
|
4446 |
+
margin-left: 3px;
|
4447 |
+
-webkit-transition: all 0.3s ease-in-out;
|
4448 |
+
transition: all 0.3s ease-in-out;
|
4449 |
+
}
|
4450 |
+
|
4451 |
+
.premium-blog-meta-data {
|
4452 |
+
display: inline-block;
|
4453 |
+
}
|
4454 |
+
|
4455 |
+
.premium-blog-meta-data .premium-blog-meta-separator {
|
4456 |
+
margin: 0 5px;
|
4457 |
+
}
|
4458 |
+
|
4459 |
+
.premium-blog-meta-data a,
|
4460 |
+
.premium-blog-meta-data span {
|
4461 |
+
color: inherit;
|
4462 |
+
-webkit-transition: all 0.3s ease-in-out;
|
4463 |
+
transition: all 0.3s ease-in-out;
|
4464 |
+
}
|
4465 |
+
|
4466 |
+
.premium-blog-author-thumbnail {
|
4467 |
+
position: relative;
|
4468 |
+
padding: 0 30px;
|
4469 |
+
width: 100%;
|
4470 |
+
top: -10px;
|
4471 |
+
height: 0;
|
4472 |
+
pointer-events: none;
|
4473 |
+
}
|
4474 |
+
|
4475 |
+
.premium-blog-author-thumbnail img {
|
4476 |
+
-webkit-border-radius: 50%;
|
4477 |
+
border-radius: 50%;
|
4478 |
+
width: 60px;
|
4479 |
+
pointer-events: all;
|
4480 |
+
-webkit-transform: translateY(-50%);
|
4481 |
+
-ms-transform: translateY(-50%);
|
4482 |
+
transform: translateY(-50%);
|
4483 |
+
}
|
4484 |
+
|
4485 |
+
.premium-blog-entry-title a,
|
4486 |
+
.premium-blog-post-tags-container a,
|
4487 |
+
.premium-blog-post-content .premium-blog-excerpt-link {
|
4488 |
+
-webkit-transition: all 0.3s ease-in-out;
|
4489 |
+
transition: all 0.3s ease-in-out;
|
4490 |
+
}
|
4491 |
+
|
4492 |
+
.premium-blog-excerpt-link-wrap a.premium-blog-excerpt-link {
|
4493 |
+
background-color: transparent;
|
4494 |
+
color: #54595f;
|
4495 |
+
padding: 0;
|
4496 |
+
}
|
4497 |
+
|
4498 |
+
.premium-blog-cta-full-yes .premium-blog-excerpt-link {
|
4499 |
+
width: 100%;
|
4500 |
+
}
|
4501 |
+
|
4502 |
+
.premium-blog-post-tags-container {
|
4503 |
+
margin-top: 8px;
|
4504 |
+
-js-display: flex;
|
4505 |
+
display: -webkit-box;
|
4506 |
+
display: -webkit-flex;
|
4507 |
+
display: -moz-box;
|
4508 |
+
display: -ms-flexbox;
|
4509 |
+
display: flex;
|
4510 |
+
-webkit-box-align: center;
|
4511 |
+
-webkit-align-items: center;
|
4512 |
+
-moz-box-align: center;
|
4513 |
+
-ms-flex-align: center;
|
4514 |
+
align-items: center;
|
4515 |
+
-webkit-flex-wrap: wrap;
|
4516 |
+
-ms-flex-wrap: wrap;
|
4517 |
+
flex-wrap: wrap;
|
4518 |
+
}
|
4519 |
+
|
4520 |
+
.premium-blog-post-tags-container a {
|
4521 |
+
color: inherit;
|
4522 |
+
margin-right: 5px;
|
4523 |
+
}
|
4524 |
+
|
4525 |
+
.premium-blog-align-center .post-categories,
|
4526 |
+
.premium-blog-align-center .premium-blog-inner-container,
|
4527 |
+
.premium-blog-align-center .premium-blog-post-tags-container {
|
4528 |
+
-webkit-box-pack: center;
|
4529 |
+
-webkit-justify-content: center;
|
4530 |
+
-moz-box-pack: center;
|
4531 |
+
-ms-flex-pack: center;
|
4532 |
+
justify-content: center;
|
4533 |
+
}
|
4534 |
+
|
4535 |
+
.premium-blog-align-left .premium-blog-post-container:not(.premium-blog-skin-cards) .post-categories,
|
4536 |
+
.premium-blog-align-left .premium-blog-post-container:not(.premium-blog-skin-cards) .premium-blog-inner-container,
|
4537 |
+
.premium-blog-align-left .premium-blog-post-container:not(.premium-blog-skin-cards) .premium-blog-post-tags-container {
|
4538 |
+
-webkit-box-pack: end;
|
4539 |
+
-webkit-justify-content: flex-end;
|
4540 |
+
-moz-box-pack: end;
|
4541 |
+
-ms-flex-pack: end;
|
4542 |
+
justify-content: flex-end;
|
4543 |
+
}
|
4544 |
+
|
4545 |
+
.premium-blog-align-left .premium-blog-post-container.premium-blog-skin-cards .post-categories,
|
4546 |
+
.premium-blog-align-left .premium-blog-post-container.premium-blog-skin-cards .premium-blog-inner-container,
|
4547 |
+
.premium-blog-align-left .premium-blog-post-container.premium-blog-skin-cards .premium-blog-post-tags-container {
|
4548 |
+
-webkit-box-pack: start;
|
4549 |
+
-webkit-justify-content: flex-start;
|
4550 |
+
-moz-box-pack: start;
|
4551 |
+
-ms-flex-pack: start;
|
4552 |
+
justify-content: flex-start;
|
4553 |
+
}
|
4554 |
+
|
4555 |
+
.premium-blog-align-right .premium-blog-post-container:not(.premium-blog-skin-cards) .post-categories,
|
4556 |
+
.premium-blog-align-right .premium-blog-post-container:not(.premium-blog-skin-cards) .premium-blog-inner-container,
|
4557 |
+
.premium-blog-align-right .premium-blog-post-container:not(.premium-blog-skin-cards) .premium-blog-post-tags-container {
|
4558 |
+
-webkit-box-pack: start;
|
4559 |
+
-webkit-justify-content: flex-start;
|
4560 |
+
-moz-box-pack: start;
|
4561 |
+
-ms-flex-pack: start;
|
4562 |
+
justify-content: flex-start;
|
4563 |
+
}
|
4564 |
+
|
4565 |
+
.premium-blog-align-right .premium-blog-post-container.premium-blog-skin-cards .post-categories,
|
4566 |
+
.premium-blog-align-right .premium-blog-post-container.premium-blog-skin-cards .premium-blog-inner-container,
|
4567 |
+
.premium-blog-align-right .premium-blog-post-container.premium-blog-skin-cards .premium-blog-post-tags-container {
|
4568 |
+
-webkit-box-pack: end;
|
4569 |
+
-webkit-justify-content: flex-end;
|
4570 |
+
-moz-box-pack: end;
|
4571 |
+
-ms-flex-pack: end;
|
4572 |
+
justify-content: flex-end;
|
4573 |
+
}
|
4574 |
+
|
4575 |
+
/* Pagination */
|
4576 |
+
.premium-blog-pagination-container {
|
4577 |
+
text-align: left;
|
4578 |
+
}
|
4579 |
+
|
4580 |
+
.premium-blog-pagination-container span {
|
4581 |
+
cursor: default;
|
4582 |
+
}
|
4583 |
+
|
4584 |
+
.premium-blog-pagination-container .page-numbers {
|
4585 |
+
display: inline-block;
|
4586 |
+
color: #000;
|
4587 |
+
line-height: 1;
|
4588 |
+
font-size: 1em;
|
4589 |
+
font-weight: 400;
|
4590 |
+
text-decoration: none;
|
4591 |
+
padding: 0.75em;
|
4592 |
+
margin: 0 0 0.4em 0.4em;
|
4593 |
+
-webkit-transition: all 0.2s ease-in-out;
|
4594 |
+
transition: all 0.2s ease-in-out;
|
4595 |
+
}
|
4596 |
+
|
4597 |
+
.premium-blog-wrap .premium-loading-feed {
|
4598 |
+
display: block;
|
4599 |
+
position: absolute;
|
4600 |
+
width: 100%;
|
4601 |
+
height: 100%;
|
4602 |
+
top: 0px;
|
4603 |
+
right: 0px;
|
4604 |
+
bottom: 0px;
|
4605 |
+
left: 0px;
|
4606 |
+
background: rgba(255, 255, 255, 0.2);
|
4607 |
+
-js-display: flex;
|
4608 |
+
display: -webkit-box;
|
4609 |
+
display: -webkit-flex;
|
4610 |
+
display: -moz-box;
|
4611 |
+
display: -ms-flexbox;
|
4612 |
+
display: flex;
|
4613 |
+
-webkit-box-align: center;
|
4614 |
+
-webkit-align-items: center;
|
4615 |
+
-moz-box-align: center;
|
4616 |
+
-ms-flex-align: center;
|
4617 |
+
align-items: center;
|
4618 |
+
z-index: 99;
|
4619 |
+
}
|
4620 |
+
|
4621 |
+
.premium-blog-wrap {
|
4622 |
+
-js-display: flex;
|
4623 |
+
display: -webkit-box;
|
4624 |
+
display: -webkit-flex;
|
4625 |
+
display: -moz-box;
|
4626 |
+
display: -ms-flexbox;
|
4627 |
+
display: flex;
|
4628 |
+
-webkit-flex-wrap: wrap;
|
4629 |
+
-ms-flex-wrap: wrap;
|
4630 |
+
flex-wrap: wrap;
|
4631 |
+
}
|
4632 |
+
|
4633 |
+
.premium-blog-wrap ul.slick-dots {
|
4634 |
+
width: 100%;
|
4635 |
+
}
|
4636 |
+
|
4637 |
+
/**
|
4638 |
+
* Even Layout
|
4639 |
+
*/
|
4640 |
+
.premium-blog-even .premium-blog-post-container {
|
4641 |
+
height: 100%;
|
4642 |
+
}
|
4643 |
+
|
4644 |
+
.premium-blog-even .slick-track {
|
4645 |
+
-js-display: flex;
|
4646 |
+
display: -webkit-box;
|
4647 |
+
display: -webkit-flex;
|
4648 |
+
display: -moz-box;
|
4649 |
+
display: -ms-flexbox;
|
4650 |
+
display: flex;
|
4651 |
+
}
|
4652 |
+
|
4653 |
+
.premium-blog-even .slick-slide {
|
4654 |
+
height: inherit !important;
|
4655 |
+
}
|
4656 |
+
|
4657 |
+
/**
|
4658 |
+
* Responsive Style
|
4659 |
+
*/
|
4660 |
+
@media (max-width: 768px) {
|
4661 |
+
.premium-blog-content-wrapper {
|
4662 |
+
top: 0;
|
4663 |
+
margin: 0;
|
4664 |
+
padding: 15px;
|
4665 |
+
}
|
4666 |
+
|
4667 |
+
.premium-blog-thumb-effect-wrapper {
|
4668 |
+
margin-bottom: 15px;
|
4669 |
+
}
|
4670 |
+
}
|
4671 |
+
|
4672 |
+
[dir="rtl"] .premium-blog-wrap.slick-slider .slick-list,
|
4673 |
+
[dir="rtl"] .premium-blog-wrap.slick-slider .slick-track {
|
4674 |
+
direction: ltr;
|
4675 |
+
}
|
4676 |
+
|
4677 |
+
/************ Premium Team Members ************/
|
4678 |
+
/*********************************************/
|
4679 |
+
.premium-person-container {
|
4680 |
+
position: relative;
|
4681 |
+
}
|
4682 |
+
|
4683 |
+
.premium-person-image-container {
|
4684 |
+
position: relative;
|
4685 |
+
text-align: center;
|
4686 |
+
}
|
4687 |
+
|
4688 |
+
.premium-person-image-container .premium-person-image-wrap {
|
4689 |
+
overflow: hidden;
|
4690 |
+
}
|
4691 |
+
|
4692 |
+
.premium-person-zoomout-effect .premium-person-image-container img,
|
4693 |
+
.premium-person-scale-effect .premium-person-image-container img {
|
4694 |
+
-webkit-transform: scale(1.2);
|
4695 |
+
-ms-transform: scale(1.2);
|
4696 |
+
transform: scale(1.2);
|
4697 |
+
}
|
4698 |
+
|
4699 |
+
.premium-person-sepia-effect .premium-person-image-container img {
|
4700 |
+
-webkit-filter: sepia(30%);
|
4701 |
+
filter: sepia(30%);
|
4702 |
+
}
|
4703 |
+
|
4704 |
+
.premium-person-bright-effect .premium-person-image-container img {
|
4705 |
+
-webkit-filter: brightness(1);
|
4706 |
+
filter: brightness(1);
|
4707 |
+
}
|
4708 |
+
|
4709 |
+
.premium-person-trans-effect .premium-person-image-container img {
|
4710 |
+
-webkit-transform: translateX(15px) scale(1.1);
|
4711 |
+
-ms-transform: translateX(15px) scale(1.1);
|
4712 |
+
transform: translateX(15px) scale(1.1);
|
4713 |
+
}
|
4714 |
+
|
4715 |
+
.premium-person-zoomin-effect:hover .premium-person-image-container img {
|
4716 |
+
-webkit-transform: scale(1.2);
|
4717 |
+
-ms-transform: scale(1.2);
|
4718 |
+
transform: scale(1.2);
|
4719 |
+
}
|
4720 |
+
|
4721 |
+
.premium-person-zoomout-effect:hover .premium-person-image-container img {
|
4722 |
+
-webkit-transform: scale(1.1);
|
4723 |
+
-ms-transform: scale(1.1);
|
4724 |
+
transform: scale(1.1);
|
4725 |
+
}
|
4726 |
+
|
4727 |
+
.premium-person-scale-effect:hover .premium-person-image-container img {
|
4728 |
+
-webkit-transform: scale(1.3) rotate(-5deg);
|
4729 |
+
-ms-transform: scale(1.3) rotate(-5deg);
|
4730 |
+
transform: scale(1.3) rotate(-5deg);
|
4731 |
+
}
|
4732 |
+
|
4733 |
+
.premium-person-grayscale-effect:hover .premium-person-image-container img {
|
4734 |
+
-webkit-filter: grayscale(100%);
|
4735 |
+
filter: grayscale(100%);
|
4736 |
+
}
|
4737 |
+
|
4738 |
+
.premium-person-blur-effect:hover .premium-person-image-container img {
|
4739 |
+
-webkit-filter: blur(3px);
|
4740 |
+
filter: blur(3px);
|
4741 |
+
}
|
4742 |
+
|
4743 |
+
.premium-person-sepia-effect:hover .premium-person-image-container img {
|
4744 |
+
-webkit-filter: sepia(0%);
|
4745 |
+
filter: sepia(0%);
|
4746 |
+
}
|
4747 |
+
|
4748 |
+
.premium-person-bright-effect:hover .premium-person-image-container img {
|
4749 |
+
-webkit-filter: brightness(1.2);
|
4750 |
+
filter: brightness(1.2);
|
4751 |
+
}
|
4752 |
+
|
4753 |
+
.premium-person-trans-effect:hover .premium-person-image-container img {
|
4754 |
+
-webkit-transform: translateX(0px) scale(1.1);
|
4755 |
+
-ms-transform: translateX(0px) scale(1.1);
|
4756 |
+
transform: translateX(0px) scale(1.1);
|
4757 |
+
}
|
4758 |
+
|
4759 |
+
.premium-person-container .premium-person-image-container img {
|
4760 |
+
width: 100%;
|
4761 |
+
height: 100%;
|
4762 |
+
-o-object-fit: cover;
|
4763 |
+
object-fit: cover;
|
4764 |
+
-webkit-transition: all 0.5s ease-in-out;
|
4765 |
+
transition: all 0.5s ease-in-out;
|
4766 |
+
}
|
4767 |
+
|
4768 |
+
.premium-person-style2 .premium-person-social {
|
4769 |
+
position: absolute;
|
4770 |
+
top: 0;
|
4771 |
+
right: 0;
|
4772 |
+
width: 100%;
|
4773 |
+
height: 100%;
|
4774 |
+
z-index: 2;
|
4775 |
+
-js-display: flex;
|
4776 |
+
display: -webkit-box;
|
4777 |
+
display: -webkit-flex;
|
4778 |
+
display: -moz-box;
|
4779 |
+
display: -ms-flexbox;
|
4780 |
+
display: flex;
|
4781 |
+
-webkit-box-pack: center;
|
4782 |
+
-webkit-justify-content: center;
|
4783 |
+
-moz-box-pack: center;
|
4784 |
+
-ms-flex-pack: center;
|
4785 |
+
justify-content: center;
|
4786 |
+
-webkit-box-align: center;
|
4787 |
+
-webkit-align-items: center;
|
4788 |
+
-moz-box-align: center;
|
4789 |
+
-ms-flex-align: center;
|
4790 |
+
align-items: center;
|
4791 |
+
-webkit-box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
|
4792 |
+
box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
|
4793 |
+
-webkit-transition: all 0.5s linear 0s;
|
4794 |
+
transition: all 0.5s linear 0s;
|
4795 |
+
opacity: 0;
|
4796 |
+
}
|
4797 |
+
|
4798 |
+
.premium-person-style2 .premium-person-image-container:hover .premium-person-social {
|
4799 |
+
opacity: 1;
|
4800 |
+
}
|
4801 |
+
|
4802 |
+
.premium-person-list-item a {
|
4803 |
+
display: inline-block;
|
4804 |
+
}
|
4805 |
+
|
4806 |
+
.premium-person-style2 .premium-person-list-item a {
|
4807 |
+
opacity: 0;
|
4808 |
+
-webkit-transform: scale(0);
|
4809 |
+
-ms-transform: scale(0);
|
4810 |
+
transform: scale(0);
|
4811 |
+
-webkit-transition: all 0.5s ease-in-out 0s;
|
4812 |
+
transition: all 0.5s ease-in-out 0s;
|
4813 |
+
}
|
4814 |
+
|
4815 |
+
.premium-person-style2 .premium-person-image-container:hover .premium-person-list-item a {
|
4816 |
+
opacity: 1;
|
4817 |
+
-webkit-transform: scale(1);
|
4818 |
+
-ms-transform: scale(1);
|
4819 |
+
transform: scale(1);
|
4820 |
+
}
|
4821 |
+
|
4822 |
+
.premium-person-info-container {
|
4823 |
+
padding: 30px 15px;
|
4824 |
+
}
|
4825 |
+
|
4826 |
+
.premium-person-name {
|
4827 |
+
margin: 0 0 5px;
|
4828 |
+
font-weight: 700;
|
4829 |
+
}
|
4830 |
+
|
4831 |
+
.premium-person-title {
|
4832 |
+
margin: 0 0 20px;
|
4833 |
+
padding: 0;
|
4834 |
+
}
|
4835 |
+
|
4836 |
+
.premium-person-content {
|
4837 |
+
margin: 0 0 30px;
|
4838 |
+
}
|
4839 |
+
|
4840 |
+
/*Override Theme List Margin*/
|
4841 |
+
ul.premium-person-social-list {
|
4842 |
+
margin: 0px !important;
|
4843 |
+
padding: 0;
|
4844 |
+
}
|
4845 |
+
|
4846 |
+
.premium-person-social-list .premium-person-list-item {
|
4847 |
+
display: inline;
|
4848 |
+
list-style: none;
|
4849 |
+
}
|
4850 |
+
|
4851 |
+
.premium-person-social-list li {
|
4852 |
+
position: relative;
|
4853 |
+
bottom: 0px;
|
4854 |
+
-webkit-transition: all 0.2s ease-in-out;
|
4855 |
+
transition: all 0.2s ease-in-out;
|
4856 |
+
}
|
4857 |
+
|
4858 |
+
.premium-person-social-list li i {
|
4859 |
+
position: relative;
|
4860 |
+
bottom: 0px;
|
4861 |
+
-webkit-transition: all 0.2s ease-in-out;
|
4862 |
+
transition: all 0.2s ease-in-out;
|
4863 |
+
}
|
4864 |
+
|
4865 |
+
.premium-person-defaults-yes li.premium-person-facebook:hover a {
|
4866 |
+
background-color: #3b5998 !important;
|
4867 |
+
}
|
4868 |
+
|
4869 |
+
.premium-person-defaults-yes li.premium-person-twitter:hover a {
|
4870 |
+
background-color: #55acee !important;
|
4871 |
+
}
|
4872 |
+
|
4873 |
+
.premium-person-defaults-yes li.premium-person-linkedin:hover a {
|
4874 |
+
background-color: #0077b5 !important;
|
4875 |
+
}
|
4876 |
+
|
4877 |
+
.premium-person-defaults-yes li.premium-person-google:hover a {
|
4878 |
+
background-color: #dc4e41 !important;
|
4879 |
+
}
|
4880 |
+
|
4881 |
+
.premium-person-defaults-yes li.premium-person-youtube:hover a {
|
4882 |
+
background-color: #b31217 !important;
|
4883 |
+
}
|
4884 |
+
|
4885 |
+
.premium-person-defaults-yes li.premium-person-instagram:hover a {
|
4886 |
+
background-color: #e4405f !important;
|
4887 |
+
}
|
4888 |
+
|
4889 |
+
.premium-person-defaults-yes li.premium-person-skype:hover a {
|
4890 |
+
background-color: #00aff0 !important;
|
4891 |
+
}
|
4892 |
+
|
4893 |
+
.premium-person-defaults-yes li.premium-person-pinterest:hover a {
|
4894 |
+
background-color: #bd081c !important;
|
4895 |
+
}
|
4896 |
+
|
4897 |
+
.premium-person-defaults-yes li.premium-person-dribbble:hover a {
|
4898 |
+
background-color: #ea4c89 !important;
|
4899 |
+
}
|
4900 |
+
|
4901 |
+
.premium-person-defaults-yes li.premium-person-mail:hover a {
|
4902 |
+
background-color: #b23121 !important;
|
4903 |
+
}
|
4904 |
+
|
4905 |
+
.premium-person-defaults-yes li.premium-person-behance:hover a {
|
4906 |
+
background-color: #1769ff !important;
|
4907 |
+
}
|
4908 |
+
|
4909 |
+
.premium-person-defaults-yes li.premium-person-whatsapp:hover a {
|
4910 |
+
background-color: #25d366 !important;
|
4911 |
+
}
|
4912 |
+
|
4913 |
+
.premium-person-defaults-yes li.premium-person-telegram:hover a {
|
4914 |
+
background-color: #0088cc !important;
|
4915 |
+
}
|
4916 |
+
|
4917 |
+
.premium-person-defaults-yes li.premium-person-site:hover a {
|
4918 |
+
background-color: #0055a5 !important;
|
4919 |
+
}
|
4920 |
+
|
4921 |
+
.premium-person-social-list li:hover a {
|
4922 |
+
-webkit-box-shadow: none;
|
4923 |
+
box-shadow: none;
|
4924 |
+
}
|
4925 |
+
|
4926 |
+
.premium-person-social-list li a:focus {
|
4927 |
+
-webkit-box-shadow: none;
|
4928 |
+
box-shadow: none;
|
4929 |
+
outline: none;
|
4930 |
+
}
|
4931 |
+
|
4932 |
+
.premium-person-social-list li i {
|
4933 |
+
font-size: 18px;
|
4934 |
+
}
|
4935 |
+
|
4936 |
+
.elementor-widget-premium-addon-person .elementor-widget-container {
|
4937 |
+
-js-display: flex;
|
4938 |
+
display: -webkit-box;
|
4939 |
+
display: -webkit-flex;
|
4940 |
+
display: -moz-box;
|
4941 |
+
display: -ms-flexbox;
|
4942 |
+
display: flex;
|
4943 |
+
-webkit-box-pack: center;
|
4944 |
+
-webkit-justify-content: center;
|
4945 |
+
-moz-box-pack: center;
|
4946 |
+
-ms-flex-pack: center;
|
4947 |
+
justify-content: center;
|
4948 |
+
}
|
4949 |
+
|
4950 |
+
.premium-persons-container.multiple-persons {
|
4951 |
+
-js-display: flex;
|
4952 |
+
display: -webkit-box;
|
4953 |
+
display: -webkit-flex;
|
4954 |
+
display: -moz-box;
|
4955 |
+
display: -ms-flexbox;
|
4956 |
+
display: flex;
|
4957 |
+
-webkit-flex-wrap: wrap;
|
4958 |
+
-ms-flex-wrap: wrap;
|
4959 |
+
flex-wrap: wrap;
|
4960 |
+
width: 100%;
|
4961 |
+
}
|
4962 |
+
|
4963 |
+
.premium-person-style1 .premium-person-container {
|
4964 |
+
overflow: hidden;
|
4965 |
+
}
|
4966 |
+
|
4967 |
+
.premium-person-style1 .premium-person-container .premium-person-info {
|
4968 |
+
position: absolute;
|
4969 |
+
top: auto;
|
4970 |
+
left: 0;
|
4971 |
+
right: 0;
|
4972 |
+
-webkit-transition: all 500ms ease 0s;
|
4973 |
+
transition: all 500ms ease 0s;
|
4974 |
+
-webkit-transform: translate3d(0, 100%, 0);
|
4975 |
+
transform: translate3d(0, 100%, 0);
|
4976 |
+
}
|
4977 |
+
|
4978 |
+
.premium-person-style1 .premium-person-container:hover .premium-person-info {
|
4979 |
+
-webkit-transform: translate3d(0, 0, 0);
|
4980 |
+
transform: translate3d(0, 0, 0);
|
4981 |
+
bottom: -1px !important;
|
4982 |
+
}
|
4983 |
+
|
4984 |
+
.premium-person-style1 .premium-person-social-list li:hover {
|
4985 |
+
bottom: 5px;
|
4986 |
+
}
|
4987 |
+
|
4988 |
+
.premium-person-style1.multiple-persons:not([data-persons-equal="yes"]) {
|
4989 |
+
-webkit-box-align: start;
|
4990 |
+
-webkit-align-items: flex-start;
|
4991 |
+
-moz-box-align: start;
|
4992 |
+
-ms-flex-align: start;
|
4993 |
+
align-items: flex-start;
|
4994 |
+
}
|
4995 |
+
|
4996 |
+
.premium-person-style1 .slick-track {
|
4997 |
+
-js-display: flex;
|
4998 |
+
display: -webkit-box;
|
4999 |
+
display: -webkit-flex;
|
5000 |
+
display: -moz-box;
|
5001 |
+
display: -ms-flexbox;
|
5002 |
+
display: flex;
|
5003 |
+
}
|
5004 |
+
|
5005 |
+
.premium-person-style1 .slick-slide {
|
5006 |
+
height: inherit !important;
|
5007 |
+
}
|
5008 |
+
|
5009 |
+
.premium-person-style1.multiple-persons[data-persons-equal="yes"] .premium-person-image-container,
|
5010 |
+
.premium-person-style1.multiple-persons[data-persons-equal="yes"] .premium-person-image-wrap {
|
5011 |
+
height: 100%;
|
5012 |
+
}
|
5013 |
+
|
5014 |
+
.premium-person-style3 .premium-person-info-container {
|
5015 |
+
position: absolute;
|
5016 |
+
top: 0;
|
5017 |
+
right: 0;
|
5018 |
+
width: 100%;
|
5019 |
+
height: 100%;
|
5020 |
+
-js-display: flex;
|
5021 |
+
display: -webkit-box;
|
5022 |
+
display: -webkit-flex;
|
5023 |
+
display: -moz-box;
|
5024 |
+
display: -ms-flexbox;
|
5025 |
+
display: flex;
|
5026 |
+
-webkit-box-orient: vertical;
|
5027 |
+
-webkit-box-direction: normal;
|
5028 |
+
-webkit-flex-direction: column;
|
5029 |
+
-moz-box-orient: vertical;
|
5030 |
+
-moz-box-direction: normal;
|
5031 |
+
-ms-flex-direction: column;
|
5032 |
+
flex-direction: column;
|
5033 |
+
-webkit-box-pack: justify;
|
5034 |
+
-webkit-justify-content: space-between;
|
5035 |
+
-moz-box-pack: justify;
|
5036 |
+
-ms-flex-pack: justify;
|
5037 |
+
justify-content: space-between;
|
5038 |
+
}
|
5039 |
+
|
5040 |
+
.premium-person-style3 .premium-person-title-desc-wrap {
|
5041 |
+
-js-display: flex;
|
5042 |
+
display: -webkit-box;
|
5043 |
+
display: -webkit-flex;
|
5044 |
+
display: -moz-box;
|
5045 |
+
display: -ms-flexbox;
|
5046 |
+
display: flex;
|
5047 |
+
-webkit-box-orient: horizontal;
|
5048 |
+
-webkit-box-direction: reverse;
|
5049 |
+
-webkit-flex-direction: row-reverse;
|
5050 |
+
-moz-box-orient: horizontal;
|
5051 |
+
-moz-box-direction: reverse;
|
5052 |
+
-ms-flex-direction: row-reverse;
|
5053 |
+
flex-direction: row-reverse;
|
5054 |
+
-webkit-box-pack: justify;
|
5055 |
+
-webkit-justify-content: space-between;
|
5056 |
+
-moz-box-pack: justify;
|
5057 |
+
-ms-flex-pack: justify;
|
5058 |
+
justify-content: space-between;
|
5059 |
+
-webkit-box-align: start;
|
5060 |
+
-webkit-align-items: flex-start;
|
5061 |
+
-moz-box-align: start;
|
5062 |
+
-ms-flex-align: start;
|
5063 |
+
align-items: flex-start;
|
5064 |
+
}
|
5065 |
+
|
5066 |
+
.premium-person-style3 .premium-person-name-icons-wrap {
|
5067 |
+
-js-display: flex;
|
5068 |
+
display: -webkit-box;
|
5069 |
+
display: -webkit-flex;
|
5070 |
+
display: -moz-box;
|
5071 |
+
display: -ms-flexbox;
|
5072 |
+
display: flex;
|
5073 |
+
-webkit-box-pack: justify;
|
5074 |
+
-webkit-justify-content: space-between;
|
5075 |
+
-moz-box-pack: justify;
|
5076 |
+
-ms-flex-pack: justify;
|
5077 |
+
justify-content: space-between;
|
5078 |
+
-webkit-box-align: end;
|
5079 |
+
-webkit-align-items: flex-end;
|
5080 |
+
-moz-box-align: end;
|
5081 |
+
-ms-flex-align: end;
|
5082 |
+
align-items: flex-end;
|
5083 |
+
}
|
5084 |
+
|
5085 |
+
.premium-person-style3 .premium-person-title {
|
5086 |
+
opacity: 0;
|
5087 |
+
-webkit-transition: all 0.3s ease;
|
5088 |
+
transition: all 0.3s ease;
|
5089 |
+
width: 0;
|
5090 |
+
}
|
5091 |
+
|
5092 |
+
.premium-person-style3 .premium-person-title span {
|
5093 |
+
display: inline-block;
|
5094 |
+
}
|
5095 |
+
|
5096 |
+
.premium-person-style3 .premium-person-name {
|
5097 |
+
padding-right: 10px;
|
5098 |
+
}
|
5099 |
+
|
5100 |
+
.premium-person-style3 .premium-person-social-list {
|
5101 |
+
-js-display: flex;
|
5102 |
+
display: -webkit-box;
|
5103 |
+
display: -webkit-flex;
|
5104 |
+
display: -moz-box;
|
5105 |
+
display: -ms-flexbox;
|
5106 |
+
display: flex;
|
5107 |
+
-webkit-box-orient: vertical;
|
5108 |
+
-webkit-box-direction: normal;
|
5109 |
+
-webkit-flex-direction: column;
|
5110 |
+
-moz-box-orient: vertical;
|
5111 |
+
-moz-box-direction: normal;
|
5112 |
+
-ms-flex-direction: column;
|
5113 |
+
flex-direction: column;
|
5114 |
+
-webkit-transform: translateY(20px);
|
5115 |
+
-ms-transform: translateY(20px);
|
5116 |
+
transform: translateY(20px);
|
5117 |
+
opacity: 0;
|
5118 |
+
-webkit-transition: all 0.3s ease;
|
5119 |
+
transition: all 0.3s ease;
|
5120 |
+
}
|
5121 |
+
|
5122 |
+
.premium-person-style3 .premium-person-list-item {
|
5123 |
+
line-height: 0;
|
5124 |
+
}
|
5125 |
+
|
5126 |
+
.premium-person-style3 .premium-person-list-item a {
|
5127 |
+
padding: 5px 0 0 10px;
|
5128 |
+
margin: 5px 0;
|
5129 |
+
}
|
5130 |
+
|
5131 |
+
.premium-person-style3 .premium-person-container:hover .premium-person-title {
|
5132 |
+
opacity: 1;
|
5133 |
+
}
|
5134 |
+
|
5135 |
+
.premium-person-style3 .premium-person-container:hover .premium-person-social-list {
|
5136 |
+
opacity: 1;
|
5137 |
+
-webkit-transform: translateY(0);
|
5138 |
+
-ms-transform: translateY(0);
|
5139 |
+
transform: translateY(0);
|
5140 |
+
}
|
5141 |
+
|
5142 |
+
.premium-persons-title-cw .premium-person-title {
|
5143 |
+
-webkit-transform: translateX(-15px) rotate(-90deg);
|
5144 |
+
-ms-transform: translateX(-15px) rotate(-90deg);
|
5145 |
+
transform: translateX(-15px) rotate(-90deg);
|
5146 |
+
-webkit-transform-origin: top;
|
5147 |
+
-ms-transform-origin: top;
|
5148 |
+
transform-origin: top;
|
5149 |
+
}
|
5150 |
+
|
5151 |
+
.premium-persons-title-cw .premium-person-container:hover .premium-person-title {
|
5152 |
+
-webkit-transform: translateX(0) rotate(-90deg);
|
5153 |
+
-ms-transform: translateX(0) rotate(-90deg);
|
5154 |
+
transform: translateX(0) rotate(-90deg);
|
5155 |
+
}
|
5156 |
+
|
5157 |
+
.premium-persons-title-ccw .premium-person-title {
|
5158 |
+
width: auto;
|
5159 |
+
margin-left: 20px;
|
5160 |
+
-webkit-transform: translateX(-15px) rotate(90deg);
|
5161 |
+
-ms-transform: translateX(-15px) rotate(90deg);
|
5162 |
+
transform: translateX(-15px) rotate(90deg);
|
5163 |
+
-webkit-transform-origin: center left;
|
5164 |
+
-ms-transform-origin: center left;
|
5165 |
+
transform-origin: center left;
|
5166 |
+
}
|
5167 |
+
|
5168 |
+
.premium-persons-title-ccw .premium-person-container:hover .premium-person-title {
|
5169 |
+
-webkit-transform: translateX(0) rotate(90deg);
|
5170 |
+
-ms-transform: translateX(0) rotate(90deg);
|
5171 |
+
transform: translateX(0) rotate(90deg);
|
5172 |
+
}
|
5173 |
+
|
5174 |
+
/**************** Premium Fancy Text *******************/
|
5175 |
+
/*******************************************************/
|
5176 |
+
.premium-suffix-text,
|
5177 |
+
.premium-fancy-text,
|
5178 |
+
.premium-prefix-text {
|
5179 |
+
font-size: 40px;
|
5180 |
+
}
|
5181 |
+
|
5182 |
+
.premium-fancy-text-wrapper .premium-fancy-list-items {
|
5183 |
+
list-style: none;
|
5184 |
+
}
|
5185 |
+
|
5186 |
+
.premium-fancy-text-wrapper .premium-fancy-text-span-align {
|
5187 |
+
vertical-align: top;
|
5188 |
+
}
|
5189 |
+
|
5190 |
+
.premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-text-items-wrapper {
|
5191 |
+
margin: 0;
|
5192 |
+
padding: 0;
|
5193 |
+
border: none;
|
5194 |
+
position: relative;
|
5195 |
+
}
|
5196 |
+
|
5197 |
+
.premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-list-items {
|
5198 |
+
position: absolute;
|
5199 |
+
top: 0;
|
5200 |
+
right: 0;
|
5201 |
+
display: inline-block;
|
5202 |
+
}
|
5203 |
+
|
5204 |
+
.premium-fancy-text-wrapper.zoomout .premium-fancy-item-hidden {
|
5205 |
+
opacity: 0;
|
5206 |
+
-webkit-animation: pa-zoom-out 0.8s;
|
5207 |
+
animation: pa-zoom-out 0.8s;
|
5208 |
+
}
|
5209 |
+
|
5210 |
+
.premium-fancy-text-wrapper.zoomout .premium-fancy-item-visible {
|
5211 |
+
position: relative !important;
|
5212 |
+
-webkit-animation: pa-zoom-in 0.8s;
|
5213 |
+
animation: pa-zoom-in 0.8s;
|
5214 |
+
}
|
5215 |
+
|
5216 |
+
.premium-fancy-text-wrapper.zoomout .premium-fancy-text-items-wrapper {
|
5217 |
+
-webkit-perspective: 300px;
|
5218 |
+
perspective: 300px;
|
5219 |
+
}
|
5220 |
+
|
5221 |
+
.premium-fancy-text-wrapper.rotate .premium-fancy-list-items {
|
5222 |
+
-webkit-transform-origin: 50% 100%;
|
5223 |
+
-ms-transform-origin: 50% 100%;
|
5224 |
+
transform-origin: 50% 100%;
|
5225 |
+
}
|
5226 |
+
|
5227 |
+
.premium-fancy-text-wrapper.rotate .premium-fancy-item-hidden {
|
5228 |
+
opacity: 0;
|
5229 |
+
-webkit-transform: rotateX(180deg);
|
5230 |
+
-ms-transform: rotateX(180deg);
|
5231 |
+
transform: rotateX(180deg);
|
5232 |
+
-webkit-animation: pa-rotate-out 1.2s;
|
5233 |
+
animation: pa-rotate-out 1.2s;
|
5234 |
+
}
|
5235 |
+
|
5236 |
+
.premium-fancy-text-wrapper.rotate .premium-fancy-item-visible {
|
5237 |
+
position: relative !important;
|
5238 |
+
-webkit-transform: rotateX(0deg);
|
5239 |
+
-ms-transform: rotateX(0deg);
|
5240 |
+
transform: rotateX(0deg);
|
5241 |
+
-webkit-animation: pa-rotate-in 1.2s;
|
5242 |
+
animation: pa-rotate-in 1.2s;
|
5243 |
+
}
|
5244 |
+
|
5245 |
+
.premium-fancy-text-wrapper.bar .premium-fancy-text-items-wrapper::after {
|
5246 |
+
position: absolute;
|
5247 |
+
content: "";
|
5248 |
+
right: 0;
|
5249 |
+
bottom: 0;
|
5250 |
+
width: 0;
|
5251 |
+
height: 3px;
|
5252 |
+
background: #000;
|
5253 |
+
}
|
5254 |
+
|
5255 |
+
.premium-fancy-text-wrapper.bar .premium-fancy-text-items-wrapper.active::after {
|
5256 |
+
width: 100%;
|
5257 |
+
-webkit-transition: width 3s ease-in-out;
|
5258 |
+
transition: width 3s ease-in-out;
|
5259 |
+
}
|
5260 |
+
|
5261 |
+
.premium-fancy-text-wrapper.bar .premium-fancy-list-items {
|
5262 |
+
opacity: 0;
|
5263 |
+
}
|
5264 |
+
|
5265 |
+
.premium-fancy-text-wrapper.bar .premium-fancy-item-visible {
|
5266 |
+
opacity: 1;
|
5267 |
+
-webkit-transition: opacity 2s ease-in-out;
|
5268 |
+
transition: opacity 2s ease-in-out;
|
5269 |
+
position: relative !important;
|
5270 |
+
}
|
5271 |
+
|
5272 |
+
.premium-fancy-text-wrapper.auto-fade .premium-fancy-text {
|
5273 |
+
display: inline-block;
|
5274 |
+
width: 200px;
|
5275 |
+
font-weight: 400;
|
5276 |
+
}
|
5277 |
+
|
5278 |
+
.premium-fancy-text-wrapper.auto-fade .premium-fancy-svg-text {
|
5279 |
+
position: relative;
|
5280 |
+
vertical-align: sub;
|
5281 |
+
}
|
5282 |
+
|
5283 |
+
.premium-fancy-text-wrapper.auto-fade g>text {
|
5284 |
+
text-anchor: start;
|
5285 |
+
shape-rendering: crispEdges;
|
5286 |
+
opacity: 0;
|
5287 |
+
font-size: 300px;
|
5288 |
+
-webkit-animation-name: pa-auto-fade;
|
5289 |
+
animation-name: pa-auto-fade;
|
5290 |
+
-moz-animation-name: pa-auto-fade;
|
5291 |
+
-webkit-animation-duration: 9s;
|
5292 |
+
animation-duration: 9s;
|
5293 |
+
-webkit-animation-timing-function: linear;
|
5294 |
+
animation-timing-function: linear;
|
5295 |
+
-webkit-animation-iteration-count: infinite;
|
5296 |
+
animation-iteration-count: infinite;
|
5297 |
+
}
|
5298 |
+
|
5299 |
+
.premium-fancy-text-wrapper.auto-fade g>text:nth-child(1) {
|
5300 |
+
-webkit-animation-delay: 0s;
|
5301 |
+
animation-delay: 0s;
|
5302 |
+
}
|
5303 |
+
|
5304 |
+
.premium-fancy-text-wrapper.auto-fade g>text:nth-child(2) {
|
5305 |
+
-webkit-animation-delay: 3s;
|
5306 |
+
animation-delay: 3s;
|
5307 |
+
}
|
5308 |
+
|
5309 |
+
.premium-fancy-text-wrapper.auto-fade g>text:nth-child(3) {
|
5310 |
+
-webkit-animation-delay: 6s;
|
5311 |
+
animation-delay: 6s;
|
5312 |
+
}
|
5313 |
+
|
5314 |
+
@-webkit-keyframes pa-auto-fade {
|
5315 |
+
0% {
|
5316 |
+
opacity: 0;
|
5317 |
+
}
|
5318 |
+
|
5319 |
+
20% {
|
5320 |
+
opacity: 1;
|
5321 |
+
}
|
5322 |
+
|
5323 |
+
35% {
|
5324 |
+
opacity: 0;
|
5325 |
+
}
|
5326 |
+
|
5327 |
+
100% {
|
5328 |
+
opacity: 0;
|
5329 |
+
}
|
5330 |
+
}
|
5331 |
+
|
5332 |
+
@keyframes pa-auto-fade {
|
5333 |
+
0% {
|
5334 |
+
opacity: 0;
|
5335 |
+
}
|
5336 |
+
|
5337 |
+
20% {
|
5338 |
+
opacity: 1;
|
5339 |
+
}
|
5340 |
+
|
5341 |
+
35% {
|
5342 |
+
opacity: 0;
|
5343 |
+
}
|
5344 |
+
|
5345 |
+
100% {
|
5346 |
+
opacity: 0;
|
5347 |
+
}
|
5348 |
+
}
|
5349 |
+
|
5350 |
+
@-webkit-keyframes pa-zoom-in {
|
5351 |
+
0% {
|
5352 |
+
opacity: 0;
|
5353 |
+
-webkit-transform: translateZ(100px);
|
5354 |
+
transform: translateZ(100px);
|
5355 |
+
}
|
5356 |
+
|
5357 |
+
100% {
|
5358 |
+
opacity: 1;
|
5359 |
+
-webkit-transform: translateZ(0);
|
5360 |
+
transform: translateZ(0);
|
5361 |
+
}
|
5362 |
+
}
|
5363 |
+
|
5364 |
+
@keyframes pa-zoom-in {
|
5365 |
+
0% {
|
5366 |
+
opacity: 0;
|
5367 |
+
-webkit-transform: translateZ(100px);
|
5368 |
+
transform: translateZ(100px);
|
5369 |
+
}
|
5370 |
+
|
5371 |
+
100% {
|
5372 |
+
opacity: 1;
|
5373 |
+
-webkit-transform: translateZ(0);
|
5374 |
+
transform: translateZ(0);
|
5375 |
+
}
|
5376 |
+
}
|
5377 |
+
|
5378 |
+
@-webkit-keyframes pa-zoom-out {
|
5379 |
+
0% {
|
5380 |
+
opacity: 1;
|
5381 |
+
-webkit-transform: translateZ(0);
|
5382 |
+
transform: translateZ(0);
|
5383 |
+
}
|
5384 |
+
|
5385 |
+
100% {
|
5386 |
+
opacity: 0;
|
5387 |
+
-webkit-transform: translateZ(-100px);
|
5388 |
+
transform: translateZ(-100px);
|
5389 |
+
}
|
5390 |
+
}
|
5391 |
+
|
5392 |
+
@keyframes pa-zoom-out {
|
5393 |
+
0% {
|
5394 |
+
opacity: 1;
|
5395 |
+
-webkit-transform: translateZ(0);
|
5396 |
+
transform: translateZ(0);
|
5397 |
+
}
|
5398 |
+
|
5399 |
+
100% {
|
5400 |
+
opacity: 0;
|
5401 |
+
-webkit-transform: translateZ(-100px);
|
5402 |
+
transform: translateZ(-100px);
|
5403 |
+
}
|
5404 |
+
}
|
5405 |
+
|
5406 |
+
@-webkit-keyframes pa-rotate-in {
|
5407 |
+
0% {
|
5408 |
+
opacity: 0;
|
5409 |
+
-webkit-transform: rotateX(180deg);
|
5410 |
+
transform: rotateX(180deg);
|
5411 |
+
}
|
5412 |
+
|
5413 |
+
35% {
|
5414 |
+
opacity: 0;
|
5415 |
+
-webkit-transform: rotateX(120deg);
|
5416 |
+
transform: rotateX(120deg);
|
5417 |
+
}
|
5418 |
+
|
5419 |
+
65% {
|
5420 |
+
opacity: 0;
|
5421 |
+
}
|
5422 |
+
|
5423 |
+
100% {
|
5424 |
+
opacity: 1;
|
5425 |
+
-webkit-transform: rotateX(360deg);
|
5426 |
+
transform: rotateX(360deg);
|
5427 |
+
}
|
5428 |
+
}
|
5429 |
+
|
5430 |
+
@keyframes pa-rotate-in {
|
5431 |
+
0% {
|
5432 |
+
opacity: 0;
|
5433 |
+
-webkit-transform: rotateX(180deg);
|
5434 |
+
transform: rotateX(180deg);
|
5435 |
+
}
|
5436 |
+
|
5437 |
+
35% {
|
5438 |
+
opacity: 0;
|
5439 |
+
-webkit-transform: rotateX(120deg);
|
5440 |
+
transform: rotateX(120deg);
|
5441 |
+
}
|
5442 |
+
|
5443 |
+
65% {
|
5444 |
+
opacity: 0;
|
5445 |
+
}
|
5446 |
+
|
5447 |
+
100% {
|
5448 |
+
opacity: 1;
|
5449 |
+
-webkit-transform: rotateX(360deg);
|
5450 |
+
transform: rotateX(360deg);
|
5451 |
+
}
|
5452 |
+
}
|
5453 |
+
|
5454 |
+
@-webkit-keyframes pa-rotate-out {
|
5455 |
+
0% {
|
5456 |
+
opacity: 1;
|
5457 |
+
-webkit-transform: rotateX(0deg);
|
5458 |
+
transform: rotateX(0deg);
|
5459 |
+
}
|
5460 |
+
|
5461 |
+
35% {
|
5462 |
+
opacity: 1;
|
5463 |
+
-webkit-transform: rotateX(-40deg);
|
5464 |
+
transform: rotateX(-40deg);
|
5465 |
+
}
|
5466 |
+
|
5467 |
+
65% {
|
5468 |
+
opacity: 0;
|
5469 |
+
}
|
5470 |
+
|
5471 |
+
100% {
|
5472 |
+
opacity: 0;
|
5473 |
+
-webkit-transform: rotateX(180deg);
|
5474 |
+
transform: rotateX(180deg);
|
5475 |
+
}
|
5476 |
+
}
|
5477 |
+
|
5478 |
+
@keyframes pa-rotate-out {
|
5479 |
+
0% {
|
5480 |
+
opacity: 1;
|
5481 |
+
-webkit-transform: rotateX(0deg);
|
5482 |
+
transform: rotateX(0deg);
|
5483 |
+
}
|
5484 |
+
|
5485 |
+
35% {
|
5486 |
+
opacity: 1;
|
5487 |
+
-webkit-transform: rotateX(-40deg);
|
5488 |
+
transform: rotateX(-40deg);
|
5489 |
+
}
|
5490 |
+
|
5491 |
+
65% {
|
5492 |
+
opacity: 0;
|
5493 |
+
}
|
5494 |
+
|
5495 |
+
100% {
|
5496 |
+
opacity: 0;
|
5497 |
+
-webkit-transform: rotateX(180deg);
|
5498 |
+
transform: rotateX(180deg);
|
5499 |
+
}
|
5500 |
+
}
|
5501 |
+
|
5502 |
+
/**************** Premium Pricing Table ****************/
|
5503 |
+
/*******************************************************/
|
5504 |
+
.premium-pricing-table-container {
|
5505 |
+
position: relative;
|
5506 |
+
overflow: hidden;
|
5507 |
+
text-align: center;
|
5508 |
+
-webkit-transition: all 0.3s ease-in-out;
|
5509 |
+
transition: all 0.3s ease-in-out;
|
5510 |
+
}
|
5511 |
+
|
5512 |
+
.premium-pricing-icon-container {
|
5513 |
+
-js-display: flex;
|
5514 |
+
display: -webkit-box;
|
5515 |
+
display: -webkit-flex;
|
5516 |
+
display: -moz-box;
|
5517 |
+
display: -ms-flexbox;
|
5518 |
+
display: flex;
|
5519 |
+
-webkit-box-pack: center;
|
5520 |
+
-webkit-justify-content: center;
|
5521 |
+
-moz-box-pack: center;
|
5522 |
+
-ms-flex-pack: center;
|
5523 |
+
justify-content: center;
|
5524 |
+
line-height: 0;
|
5525 |
+
}
|
5526 |
+
|
5527 |
+
.premium-pricing-icon-container .premium-pricing-icon {
|
5528 |
+
display: inline-block;
|
5529 |
+
}
|
5530 |
+
|
5531 |
+
.premium-pricing-icon-container .premium-pricing-image {
|
5532 |
+
overflow: hidden;
|
5533 |
+
}
|
5534 |
+
|
5535 |
+
.premium-pricing-icon-container .premium-pricing-image img {
|
5536 |
+
width: 25px;
|
5537 |
+
height: 25px;
|
5538 |
+
-o-object-fit: cover;
|
5539 |
+
object-fit: cover;
|
5540 |
+
}
|
5541 |
+
|
5542 |
+
.premium-badge-left {
|
5543 |
+
position: absolute;
|
5544 |
+
top: 0;
|
5545 |
+
}
|
5546 |
+
|
5547 |
+
.premium-badge-right {
|
5548 |
+
position: absolute;
|
5549 |
+
top: 0;
|
5550 |
+
right: 0;
|
5551 |
+
}
|
5552 |
+
|
5553 |
+
.premium-badge-left {
|
5554 |
+
left: 0;
|
5555 |
+
}
|
5556 |
+
|
5557 |
+
.premium-badge-triangle.premium-badge-left .corner {
|
5558 |
+
width: 0;
|
5559 |
+
height: 0;
|
5560 |
+
border-top: 150px solid;
|
5561 |
+
border-bottom: 150px solid transparent;
|
5562 |
+
border-right: 150px solid transparent;
|
5563 |
+
}
|
5564 |
+
|
5565 |
+
.premium-badge-triangle.premium-badge-right .corner {
|
5566 |
+
width: 0;
|
5567 |
+
height: 0;
|
5568 |
+
border-bottom: 150px solid transparent;
|
5569 |
+
border-right: 150px solid;
|
5570 |
+
border-left: 150px solid transparent;
|
5571 |
+
}
|
5572 |
+
|
5573 |
+
.premium-badge-triangle span {
|
5574 |
+
position: absolute;
|
5575 |
+
top: 35px;
|
5576 |
+
width: 100px;
|
5577 |
+
text-align: center;
|
5578 |
+
-webkit-transform: rotate(-45deg);
|
5579 |
+
-ms-transform: rotate(-45deg);
|
5580 |
+
transform: rotate(-45deg);
|
5581 |
+
display: block;
|
5582 |
+
text-transform: uppercase;
|
5583 |
+
}
|
5584 |
+
|
5585 |
+
.premium-badge-triangle.premium-badge-right span {
|
5586 |
+
-webkit-transform: rotate(45deg);
|
5587 |
+
-ms-transform: rotate(45deg);
|
5588 |
+
transform: rotate(45deg);
|
5589 |
+
right: 0;
|
5590 |
+
}
|
5591 |
+
|
5592 |
+
.premium-badge-circle {
|
5593 |
+
min-width: 4em;
|
5594 |
+
min-height: 4em;
|
5595 |
+
line-height: 4em;
|
5596 |
+
text-align: center;
|
5597 |
+
-webkit-border-radius: 100%;
|
5598 |
+
border-radius: 100%;
|
5599 |
+
position: absolute;
|
5600 |
+
z-index: 1;
|
5601 |
+
}
|
5602 |
+
|
5603 |
+
.premium-badge-stripe {
|
5604 |
+
position: absolute;
|
5605 |
+
-webkit-transform: rotate(90deg);
|
5606 |
+
-ms-transform: rotate(90deg);
|
5607 |
+
transform: rotate(90deg);
|
5608 |
+
width: 15em;
|
5609 |
+
overflow: hidden;
|
5610 |
+
height: 15em;
|
5611 |
+
}
|
5612 |
+
|
5613 |
+
.premium-badge-stripe.premium-badge-left {
|
5614 |
+
-webkit-transform: rotate(0);
|
5615 |
+
-ms-transform: rotate(0);
|
5616 |
+
transform: rotate(0);
|
5617 |
+
}
|
5618 |
+
|
5619 |
+
.premium-badge-stripe .corner {
|
5620 |
+
text-align: center;
|
5621 |
+
left: 0;
|
5622 |
+
width: 150%;
|
5623 |
+
-webkit-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
|
5624 |
+
-ms-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
|
5625 |
+
transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
|
5626 |
+
margin-top: 35px;
|
5627 |
+
font-size: 13px;
|
5628 |
+
line-height: 2;
|
5629 |
+
font-weight: 800;
|
5630 |
+
text-transform: uppercase;
|
5631 |
+
}
|
5632 |
+
|
5633 |
+
.premium-badge-flag .corner {
|
5634 |
+
text-align: center;
|
5635 |
+
-webkit-border-radius: 4px 4px 0 4px;
|
5636 |
+
border-radius: 4px 4px 0 4px;
|
5637 |
+
padding: 3px 15px;
|
5638 |
+
position: absolute;
|
5639 |
+
top: 10%;
|
5640 |
+
right: -8px;
|
5641 |
+
}
|
5642 |
+
|
5643 |
+
.premium-badge-flag .corner::before,
|
5644 |
+
.premium-badge-flag .corner::after {
|
5645 |
+
content: "";
|
5646 |
+
display: block;
|
5647 |
+
position: absolute;
|
5648 |
+
width: 0;
|
5649 |
+
height: 0;
|
5650 |
+
top: 100%;
|
5651 |
+
right: 0;
|
5652 |
+
border-bottom: 8px solid transparent;
|
5653 |
+
}
|
5654 |
+
|
5655 |
+
.elementor-widget-premium-addon-pricing-table .elementor-widget-container {
|
5656 |
+
overflow: visible !important;
|
5657 |
+
}
|
5658 |
+
|
5659 |
+
.premium-badge-flag .corner::after {
|
5660 |
+
border-left: 8px solid rgba(0, 0, 0, 0.2);
|
5661 |
+
}
|
5662 |
+
|
5663 |
+
.premium-pricing-price-currency {
|
5664 |
+
position: relative;
|
5665 |
+
}
|
5666 |
+
|
5667 |
+
.premium-pricing-button-container {
|
5668 |
+
display: block;
|
5669 |
+
}
|
5670 |
+
|
5671 |
+
.premium-pricing-list {
|
5672 |
+
-js-display: flex;
|
5673 |
+
display: -webkit-box;
|
5674 |
+
display: -webkit-flex;
|
5675 |
+
display: -moz-box;
|
5676 |
+
display: -ms-flexbox;
|
5677 |
+
display: flex;
|
5678 |
+
-webkit-box-orient: vertical;
|
5679 |
+
-webkit-box-direction: normal;
|
5680 |
+
-webkit-flex-direction: column;
|
5681 |
+
-moz-box-orient: vertical;
|
5682 |
+
-moz-box-direction: normal;
|
5683 |
+
-ms-flex-direction: column;
|
5684 |
+
flex-direction: column;
|
5685 |
+
list-style-type: none;
|
5686 |
+
margin: 0;
|
5687 |
+
}
|
5688 |
+
|
5689 |
+
.premium-pricing-list .premium-pricing-list-item {
|
5690 |
+
-js-display: flex;
|
5691 |
+
display: -webkit-box;
|
5692 |
+
display: -webkit-flex;
|
5693 |
+
display: -moz-box;
|
5694 |
+
display: -ms-flexbox;
|
5695 |
+
display: flex;
|
5696 |
+
-webkit-box-align: center;
|
5697 |
+
-webkit-align-items: center;
|
5698 |
+
-moz-box-align: center;
|
5699 |
+
-ms-flex-align: center;
|
5700 |
+
align-items: center;
|
5701 |
+
}
|
5702 |
+
|
5703 |
+
.premium-pricing-list .premium-pricing-list-item svg {
|
5704 |
+
width: 50px;
|
5705 |
+
height: 50px;
|
5706 |
+
}
|
5707 |
+
|
5708 |
+
.premium-pricing-list .premium-pricing-list-item img {
|
5709 |
+
width: 30px;
|
5710 |
+
height: 30px;
|
5711 |
+
-o-object-fit: cover;
|
5712 |
+
object-fit: cover;
|
5713 |
+
}
|
5714 |
+
|
5715 |
+
.premium-pricing-list .premium-pricing-list-span {
|
5716 |
+
position: relative;
|
5717 |
+
}
|
5718 |
+
|
5719 |
+
.premium-pricing-list .list-item-tooltip {
|
5720 |
+
border-bottom: 1px dotted;
|
5721 |
+
}
|
5722 |
+
|
5723 |
+
.premium-pricing-list .premium-pricing-list-tooltip {
|
5724 |
+
position: absolute;
|
5725 |
+
top: -webkit-calc(100% + 1px);
|
5726 |
+
top: calc(100% + 1px);
|
5727 |
+
right: 0;
|
5728 |
+
visibility: hidden;
|
5729 |
+
padding: 15px 20px;
|
5730 |
+
-webkit-border-radius: 5px;
|
5731 |
+
border-radius: 5px;
|
5732 |
+
min-width: 200px;
|
5733 |
+
overflow: hidden;
|
5734 |
+
text-align: right;
|
5735 |
+
font-size: 0.8rem;
|
5736 |
+
color: #fff;
|
5737 |
+
background-color: #aaa;
|
5738 |
+
}
|
5739 |
+
|
5740 |
+
.premium-pricing-features-left .premium-pricing-list-span {
|
5741 |
+
text-align: right;
|
5742 |
+
}
|
5743 |
+
|
5744 |
+
.premium-pricing-features-center .premium-pricing-list-span {
|
5745 |
+
text-align: center;
|
5746 |
+
}
|
5747 |
+
|
5748 |
+
.premium-pricing-features-right .premium-pricing-list-span {
|
5749 |
+
text-align: left;
|
5750 |
+
}
|
5751 |
+
|
5752 |
+
.premium-pricing-list-span:hover .premium-pricing-list-tooltip {
|
5753 |
+
z-index: 99;
|
5754 |
+
visibility: visible;
|
5755 |
+
opacity: 1;
|
5756 |
+
}
|
5757 |
+
|
5758 |
+
.premium-pricing-slashed-price-value {
|
5759 |
+
display: inline-block;
|
5760 |
+
font-size: 20px;
|
5761 |
+
font-weight: 400;
|
5762 |
+
margin-left: 5px;
|
5763 |
+
}
|
5764 |
+
|
5765 |
+
.premium-pricing-price-value {
|
5766 |
+
font-size: 70px;
|
5767 |
+
}
|
5768 |
+
|
5769 |
+
.premium-pricing-description-container li {
|
5770 |
+
list-style-position: inside;
|
5771 |
+
text-indent: -40px;
|
5772 |
+
}
|
5773 |
+
|
5774 |
+
@-moz-document url-prefix() {
|
5775 |
+
.premium-pricing-description-container li {
|
5776 |
+
text-indent: 0px;
|
5777 |
+
}
|
5778 |
+
}
|
5779 |
+
|
5780 |
+
.premium-pricing-price-button {
|
5781 |
+
display: block;
|
5782 |
+
padding: 6px 12px;
|
5783 |
+
line-height: 1.42857143;
|
5784 |
+
text-align: center;
|
5785 |
+
color: #fff;
|
5786 |
+
background: #6ec1e4;
|
5787 |
+
margin-bottom: 0;
|
5788 |
+
-webkit-transition: all 0.3s ease-in-out;
|
5789 |
+
transition: all 0.3s ease-in-out;
|
5790 |
+
}
|
5791 |
+
|
5792 |
+
/**************** Premium Google Maps ******************/
|
5793 |
+
/*******************************************************/
|
5794 |
+
.premium-maps-info-container {
|
5795 |
+
margin-top: 10px;
|
5796 |
+
margin-bottom: 10px;
|
5797 |
+
}
|
5798 |
+
|
5799 |
+
.premium-maps-info-title,
|
5800 |
+
.premium-maps-info-desc {
|
5801 |
+
margin: 0;
|
5802 |
+
padding: 0;
|
5803 |
+
}
|
5804 |
+
|
5805 |
+
.premium-maps-container .gm-style-iw {
|
5806 |
+
text-align: center;
|
5807 |
+
direction: ltr;
|
5808 |
+
}
|
5809 |
+
|
5810 |
+
.premium-maps-container .gm-style img {
|
5811 |
+
max-width: none !important;
|
5812 |
+
}
|
5813 |
+
|
5814 |
+
/**************** Premium Button ***********************/
|
5815 |
+
/*******************************************************/
|
5816 |
+
.premium-button {
|
5817 |
+
display: inline-block;
|
5818 |
+
position: relative;
|
5819 |
+
overflow: hidden;
|
5820 |
+
cursor: pointer;
|
5821 |
+
-webkit-transition: all 0.2s ease-in-out !important;
|
5822 |
+
transition: all 0.2s ease-in-out !important;
|
5823 |
+
}
|
5824 |
+
|
5825 |
+
.premium-button-sm {
|
5826 |
+
padding: 12px 24px;
|
5827 |
+
font-size: 14px;
|
5828 |
+
line-height: 1;
|
5829 |
+
}
|
5830 |
+
|
5831 |
+
.premium-button .premium-lottie-animation,
|
5832 |
+
.premium-image-button .premium-lottie-animation {
|
5833 |
+
-js-display: flex;
|
5834 |
+
display: -webkit-box;
|
5835 |
+
display: -webkit-flex;
|
5836 |
+
display: -moz-box;
|
5837 |
+
display: -ms-flexbox;
|
5838 |
+
display: flex;
|
5839 |
+
}
|
5840 |
+
|
5841 |
+
.premium-button .premium-lottie-animation svg,
|
5842 |
+
.premium-image-button .premium-lottie-animation svg {
|
5843 |
+
width: 50px;
|
5844 |
+
height: 50px;
|
5845 |
+
}
|
5846 |
+
|
5847 |
+
.premium-button-md {
|
5848 |
+
padding: 14px 26px;
|
5849 |
+
font-size: 16px;
|
5850 |
+
line-height: 1.2;
|
5851 |
+
}
|
5852 |
+
|
5853 |
+
.premium-button-lg {
|
5854 |
+
padding: 16px 28px;
|
5855 |
+
font-size: 18px;
|
5856 |
+
line-height: 1.3333;
|
5857 |
+
}
|
5858 |
+
|
5859 |
+
.premium-button-block {
|
5860 |
+
font-size: 15px;
|
5861 |
+
line-height: 1;
|
5862 |
+
padding: 12px 24px;
|
5863 |
+
width: 100%;
|
5864 |
+
text-align: center;
|
5865 |
+
}
|
5866 |
+
|
5867 |
+
.premium-button-text {
|
5868 |
+
display: inline-block;
|
5869 |
+
width: 100%;
|
5870 |
+
}
|
5871 |
+
|
5872 |
+
.premium-button-style1,
|
5873 |
+
.premium-button-style2,
|
5874 |
+
.premium-button-style5,
|
5875 |
+
.premium-button-style7 {
|
5876 |
+
display: inline-block;
|
5877 |
+
vertical-align: middle;
|
5878 |
+
-webkit-transform: perspective(1px) translateZ(0);
|
5879 |
+
transform: perspective(1px) translateZ(0);
|
5880 |
+
-webkit-box-shadow: 0 0 1px transparent;
|
5881 |
+
box-shadow: 0 0 1px transparent;
|
5882 |
+
position: relative;
|
5883 |
+
-webkit-transition-property: color;
|
5884 |
+
transition-property: color;
|
5885 |
+
-webkit-transition-duration: 0.15s;
|
5886 |
+
transition-duration: 0.15s;
|
5887 |
+
}
|
5888 |
+
|
5889 |
+
.premium-button-style1:before,
|
5890 |
+
.premium-button-style2:before,
|
5891 |
+
.premium-button-style5:before {
|
5892 |
+
content: "";
|
5893 |
+
position: absolute;
|
5894 |
+
z-index: -1;
|
5895 |
+
top: 0;
|
5896 |
+
right: 0;
|
5897 |
+
left: 0;
|
5898 |
+
bottom: 0;
|
5899 |
+
-webkit-transform: scaleY(0);
|
5900 |
+
-ms-transform: scaleY(0);
|
5901 |
+
transform: scaleY(0);
|
5902 |
+
-webkit-transform-origin: 50% 0;
|
5903 |
+
-ms-transform-origin: 50% 0;
|
5904 |
+
transform-origin: 50% 0;
|
5905 |
+
-webkit-transition-property: -webkit-transform;
|
5906 |
+
transition-property: -webkit-transform;
|
5907 |
+
transition-property: transform;
|
5908 |
+
transition-property: transform, -webkit-transform;
|
5909 |
+
-webkit-transition-duration: 0.15s;
|
5910 |
+
transition-duration: 0.15s;
|
5911 |
+
-webkit-transition-timing-function: ease-out;
|
5912 |
+
transition-timing-function: ease-out;
|
5913 |
+
}
|
5914 |
+
|
5915 |
+
.premium-button-style5-radialin:before,
|
5916 |
+
.premium-button-style5-radialout:before {
|
5917 |
+
-webkit-transform-origin: 50%;
|
5918 |
+
-ms-transform-origin: 50%;
|
5919 |
+
transform-origin: 50%;
|
5920 |
+
-webkit-border-radius: 100%;
|
5921 |
+
border-radius: 100%;
|
5922 |
+
-webkit-transform: scale(0);
|
5923 |
+
-ms-transform: scale(0);
|
5924 |
+
transform: scale(0);
|
5925 |
+
}
|
5926 |
+
|
5927 |
+
.premium-button-style5-radialin:before {
|
5928 |
+
-webkit-transform: scale(2);
|
5929 |
+
-ms-transform: scale(2);
|
5930 |
+
transform: scale(2);
|
5931 |
+
}
|
5932 |
+
|
5933 |
+
.premium-button-style5-rectin:before {
|
5934 |
+
-webkit-transform-origin: 50%;
|
5935 |
+
-ms-transform-origin: 50%;
|
5936 |
+
transform-origin: 50%;
|
5937 |
+
-webkit-transform: scale(1);
|
5938 |
+
-ms-transform: scale(1);
|
5939 |
+
transform: scale(1);
|
5940 |
+
}
|
5941 |
+
|
5942 |
+
.premium-button-style5-rectout:before {
|
5943 |
+
-webkit-transform-origin: 50%;
|
5944 |
+
-ms-transform-origin: 50%;
|
5945 |
+
transform-origin: 50%;
|
5946 |
+
-webkit-transform: scale(0);
|
5947 |
+
-ms-transform: scale(0);
|
5948 |
+
transform: scale(0);
|
5949 |
+
}
|
5950 |
+
|
5951 |
+
.premium-button-style5-rectout:hover:before {
|
5952 |
+
-webkit-transform: scale(1);
|
5953 |
+
-ms-transform: scale(1);
|
5954 |
+
transform: scale(1);
|
5955 |
+
}
|
5956 |
+
|
5957 |
+
.premium-button-style5-rectin:hover:before {
|
5958 |
+
-webkit-transform: scale(0);
|
5959 |
+
-ms-transform: scale(0);
|
5960 |
+
transform: scale(0);
|
5961 |
+
}
|
5962 |
+
|
5963 |
+
.premium-button-style5-radialout:hover:before {
|
5964 |
+
-webkit-transform: scale(2);
|
5965 |
+
-ms-transform: scale(2);
|
5966 |
+
transform: scale(2);
|
5967 |
+
}
|
5968 |
+
|
5969 |
+
.premium-button-style5-radialin:hover:before {
|
5970 |
+
-webkit-transform: scale(0);
|
5971 |
+
-ms-transform: scale(0);
|
5972 |
+
transform: scale(0);
|
5973 |
+
}
|
5974 |
+
|
5975 |
+
.premium-button-style1-top:before {
|
5976 |
+
-webkit-transform-origin: 50% 100%;
|
5977 |
+
-ms-transform-origin: 50% 100%;
|
5978 |
+
transform-origin: 50% 100%;
|
5979 |
+
}
|
5980 |
+
|
5981 |
+
.premium-button-style1-right:before {
|
5982 |
+
-webkit-transform: scaleX(0);
|
5983 |
+
-ms-transform: scaleX(0);
|
5984 |
+
transform: scaleX(0);
|
5985 |
+
-webkit-transform-origin: 100% 50%;
|
5986 |
+
-ms-transform-origin: 100% 50%;
|
5987 |
+
transform-origin: 100% 50%;
|
5988 |
+
}
|
5989 |
+
|
5990 |
+
.premium-button-style1-left:before {
|
5991 |
+
-webkit-transform: scaleX(0);
|
5992 |
+
-ms-transform: scaleX(0);
|
5993 |
+
transform: scaleX(0);
|
5994 |
+
-webkit-transform-origin: 0% 50%;
|
5995 |
+
-ms-transform-origin: 0% 50%;
|
5996 |
+
transform-origin: 0% 50%;
|
5997 |
+
}
|
5998 |
+
|
5999 |
+
.premium-button-style2-shutouthor:before,
|
6000 |
+
.premium-button-style2-scshutoutver:before {
|
6001 |
+
-webkit-transform: scaleY(0);
|
6002 |
+
-ms-transform: scaleY(0);
|
6003 |
+
transform: scaleY(0);
|
6004 |
+
-webkit-transform-origin: 0% 50%;
|
6005 |
+
-ms-transform-origin: 0% 50%;
|
6006 |
+
transform-origin: 0% 50%;
|
6007 |
+
}
|
6008 |
+
|
6009 |
+
.premium-button-style2-shutoutver:before,
|
6010 |
+
.premium-button-style2-scshutouthor:before {
|
6011 |
+
-webkit-transform: scaleX(0);
|
6012 |
+
-ms-transform: scaleX(0);
|
6013 |
+
transform: scaleX(0);
|
6014 |
+
-webkit-transform-origin: 50% 50%;
|
6015 |
+
-ms-transform-origin: 50% 50%;
|
6016 |
+
transform-origin: 50% 50%;
|
6017 |
+
}
|
6018 |
+
|
6019 |
+
.premium-button-style2-shutinhor:before {
|
6020 |
+
-webkit-transform: scaleX(1);
|
6021 |
+
-ms-transform: scaleX(1);
|
6022 |
+
transform: scaleX(1);
|
6023 |
+
-webkit-transform-origin: 50%;
|
6024 |
+
-ms-transform-origin: 50%;
|
6025 |
+
transform-origin: 50%;
|
6026 |
+
}
|
6027 |
+
|
6028 |
+
.premium-button-style2-shutinver:before {
|
6029 |
+
-webkit-transform: scaleY(1);
|
6030 |
+
-ms-transform: scaleY(1);
|
6031 |
+
transform: scaleY(1);
|
6032 |
+
-webkit-transform-origin: 50%;
|
6033 |
+
-ms-transform-origin: 50%;
|
6034 |
+
transform-origin: 50%;
|
6035 |
+
}
|
6036 |
+
|
6037 |
+
.premium-button-style1-bottom:hover:before,
|
6038 |
+
.premium-button-style1-top:hover:before {
|
6039 |
+
-webkit-transform: scaleY(1);
|
6040 |
+
-ms-transform: scaleY(1);
|
6041 |
+
transform: scaleY(1);
|
6042 |
+
}
|
6043 |
+
|
6044 |
+
.premium-button-style1-left:hover:before,
|
6045 |
+
.premium-button-style1-right:hover:before,
|
6046 |
+
.premium-button-style2-shutouthor:hover:before,
|
6047 |
+
.premium-button-style2-shutoutver:hover:before {
|
6048 |
+
-webkit-transform: scaleX(1);
|
6049 |
+
-ms-transform: scaleX(1);
|
6050 |
+
transform: scaleX(1);
|
6051 |
+
}
|
6052 |
+
|
6053 |
+
.premium-button-style2-shutinhor:hover:before {
|
6054 |
+
-webkit-transform: scaleX(0);
|
6055 |
+
-ms-transform: scaleX(0);
|
6056 |
+
transform: scaleX(0);
|
6057 |
+
}
|
6058 |
+
|
6059 |
+
.premium-button-style2-shutinver:hover:before {
|
6060 |
+
-webkit-transform: scaleY(0);
|
6061 |
+
-ms-transform: scaleY(0);
|
6062 |
+
transform: scaleY(0);
|
6063 |
+
}
|
6064 |
+
|
6065 |
+
.premium-button-style2-scshutouthor:hover:before {
|
6066 |
+
-webkit-transform: scaleX(0.9);
|
6067 |
+
-ms-transform: scaleX(0.9);
|
6068 |
+
transform: scaleX(0.9);
|
6069 |
+
}
|
6070 |
+
|
6071 |
+
.premium-button-style2-scshutoutver:hover:before {
|
6072 |
+
-webkit-transform: scaleY(0.8);
|
6073 |
+
-ms-transform: scaleY(0.8);
|
6074 |
+
transform: scaleY(0.8);
|
6075 |
+
}
|
6076 |
+
|
6077 |
+
/*Diagonal*/
|
6078 |
+
.premium-button-style2-dshutinhor:before {
|
6079 |
+
top: 50%;
|
6080 |
+
right: 50%;
|
6081 |
+
width: 120%;
|
6082 |
+
height: 0%;
|
6083 |
+
-webkit-transform: translateX(50%) translateY(-50%) rotate(45deg);
|
6084 |
+
-ms-transform: translateX(50%) translateY(-50%) rotate(45deg);
|
6085 |
+
transform: translateX(50%) translateY(-50%) rotate(45deg);
|
6086 |
+
-webkit-transform-origin: 50%;
|
6087 |
+
-ms-transform-origin: 50%;
|
6088 |
+
transform-origin: 50%;
|
6089 |
+
-webkit-transition-property: all;
|
6090 |
+
transition-property: all;
|
6091 |
+
}
|
6092 |
+
|
6093 |
+
.premium-button-style2-dshutinver:before {
|
6094 |
+
top: 50%;
|
6095 |
+
right: 50%;
|
6096 |
+
width: 120%;
|
6097 |
+
height: 0%;
|
6098 |
+
-webkit-transform-origin: 50%;
|
6099 |
+
-ms-transform-origin: 50%;
|
6100 |
+
transform-origin: 50%;
|
6101 |
+
-webkit-transition-property: all;
|
6102 |
+
transition-property: all;
|
6103 |
+
-webkit-transform: translateX(50%) translateY(-50%) rotate(-45deg);
|
6104 |
+
-ms-transform: translateX(50%) translateY(-50%) rotate(-45deg);
|
6105 |
+
transform: translateX(50%) translateY(-50%) rotate(-45deg);
|
6106 |
+
}
|
6107 |
+
|
6108 |
+
.premium-button-style2-dshutinhor:hover:before,
|
6109 |
+
.premium-button-style2-dshutinver:hover:before {
|
6110 |
+
height: 220%;
|
6111 |
+
}
|
6112 |
+
|
6113 |
+
.premium-button-style3-before i,
|
6114 |
+
.premium-button-style3-before svg {
|
6115 |
+
opacity: 0;
|
6116 |
+
-webkit-transform: translateX(5px);
|
6117 |
+
-ms-transform: translateX(5px);
|
6118 |
+
transform: translateX(5px);
|
6119 |
+
-webkit-transition: all 0.5s ease-in-out;
|
6120 |
+
transition: all 0.5s ease-in-out;
|
6121 |
+
}
|
6122 |
+
|
6123 |
+
.premium-button-style3-after i,
|
6124 |
+
.premium-button-style3-after svg {
|
6125 |
+
opacity: 0;
|
6126 |
+
-webkit-transform: translateX(5px);
|
6127 |
+
-ms-transform: translateX(5px);
|
6128 |
+
transform: translateX(5px);
|
6129 |
+
-webkit-transition: all 0.5s ease-in-out;
|
6130 |
+
transition: all 0.5s ease-in-out;
|
6131 |
+
-webkit-transform: translateX(-5px);
|
6132 |
+
-ms-transform: translateX(-5px);
|
6133 |
+
transform: translateX(-5px);
|
6134 |
+
}
|
6135 |
+
|
6136 |
+
.premium-button-style3-after:hover i,
|
6137 |
+
.premium-button-style3-after:hover svg {
|
6138 |
+
opacity: 1;
|
6139 |
+
}
|
6140 |
+
|
6141 |
+
.premium-button-style3-before:hover i,
|
6142 |
+
.premium-button-style3-before:hover svg {
|
6143 |
+
opacity: 1;
|
6144 |
+
}
|
6145 |
+
|
6146 |
+
.premium-button-text-icon-wrapper {
|
6147 |
+
-js-display: flex;
|
6148 |
+
display: -webkit-box;
|
6149 |
+
display: -webkit-flex;
|
6150 |
+
display: -moz-box;
|
6151 |
+
display: -ms-flexbox;
|
6152 |
+
display: flex;
|
6153 |
+
-webkit-box-pack: center;
|
6154 |
+
-webkit-justify-content: center;
|
6155 |
+
-moz-box-pack: center;
|
6156 |
+
-ms-flex-pack: center;
|
6157 |
+
justify-content: center;
|
6158 |
+
-webkit-box-align: center;
|
6159 |
+
-webkit-align-items: center;
|
6160 |
+
-moz-box-align: center;
|
6161 |
+
-ms-flex-align: center;
|
6162 |
+
align-items: center;
|
6163 |
+
-webkit-transition: all 0.2s ease-in-out;
|
6164 |
+
transition: all 0.2s ease-in-out;
|
6165 |
+
}
|
6166 |
+
|
6167 |
+
.premium-button-text-icon-wrapper span,
|
6168 |
+
.premium-button-text-icon-wrapper i,
|
6169 |
+
.premium-button-text-icon-wrapper svg {
|
6170 |
+
-webkit-transition: all 0.2s ease-in-out;
|
6171 |
+
transition: all 0.2s ease-in-out;
|
6172 |
+
}
|
6173 |
+
|
6174 |
+
.premium-button-style4-icon-wrapper {
|
6175 |
+
position: absolute;
|
6176 |
+
z-index: 2;
|
6177 |
+
width: 100%;
|
6178 |
+
text-align: center;
|
6179 |
+
-js-display: flex;
|
6180 |
+
display: -webkit-box;
|
6181 |
+
display: -webkit-flex;
|
6182 |
+
display: -moz-box;
|
6183 |
+
display: -ms-flexbox;
|
6184 |
+
display: flex;
|
6185 |
+
-webkit-box-align: center;
|
6186 |
+
-webkit-align-items: center;
|
6187 |
+
-moz-box-align: center;
|
6188 |
+
-ms-flex-align: center;
|
6189 |
+
align-items: center;
|
6190 |
+
-webkit-box-pack: center;
|
6191 |
+
-webkit-justify-content: center;
|
6192 |
+
-moz-box-pack: center;
|
6193 |
+
-ms-flex-pack: center;
|
6194 |
+
justify-content: center;
|
6195 |
+
height: 100%;
|
6196 |
+
opacity: 0;
|
6197 |
+
-webkit-transition: all 0.3s ease-in-out;
|
6198 |
+
transition: all 0.3s ease-in-out;
|
6199 |
+
}
|
6200 |
+
|
6201 |
+
.premium-button-style4-icon-wrapper.top {
|
6202 |
+
bottom: -100%;
|
6203 |
+
right: 0;
|
6204 |
+
}
|
6205 |
+
|
6206 |
+
.premium-button-style4-icon-wrapper.bottom {
|
6207 |
+
top: -100%;
|
6208 |
+
right: 0;
|
6209 |
+
}
|
6210 |
+
|
6211 |
+
.premium-button-style4-icon-wrapper.left {
|
6212 |
+
top: 0;
|
6213 |
+
right: -100%;
|
6214 |
+
}
|
6215 |
+
|
6216 |
+
.premium-button-style4-icon-wrapper.right {
|
6217 |
+
top: 0;
|
6218 |
+
left: -100%;
|
6219 |
+
}
|
6220 |
+
|
6221 |
+
.premium-button-style4-bottom:hover .premium-button-style4-icon-wrapper {
|
6222 |
+
top: 0;
|
6223 |
+
opacity: 1;
|
6224 |
+
}
|
6225 |
+
|
6226 |
+
.premium-button-style4-top:hover .premium-button-style4-icon-wrapper {
|
6227 |
+
bottom: 0;
|
6228 |
+
opacity: 1;
|
6229 |
+
}
|
6230 |
+
|
6231 |
+
.premium-button-style4-left:hover .premium-button-style4-icon-wrapper {
|
6232 |
+
right: 0;
|
6233 |
+
opacity: 1;
|
6234 |
+
}
|
6235 |
+
|
6236 |
+
.premium-button-style4-right:hover .premium-button-style4-icon-wrapper {
|
6237 |
+
left: 0;
|
6238 |
+
opacity: 1;
|
6239 |
+
}
|
6240 |
+
|
6241 |
+
.premium-button-style4-bottom:hover .premium-button-text-icon-wrapper {
|
6242 |
+
-webkit-transform: translateY(100%);
|
6243 |
+
-ms-transform: translateY(100%);
|
6244 |
+
transform: translateY(100%);
|
6245 |
+
opacity: 0;
|
6246 |
+
}
|
6247 |
+
|
6248 |
+
.premium-button-style4-top:hover .premium-button-text-icon-wrapper {
|
6249 |
+
-webkit-transform: translateY(-100%);
|
6250 |
+
-ms-transform: translateY(-100%);
|
6251 |
+
transform: translateY(-100%);
|
6252 |
+
opacity: 0;
|
6253 |
+
}
|
6254 |
+
|
6255 |
+
.premium-button-style4-left:hover .premium-button-text-icon-wrapper {
|
6256 |
+
-webkit-transform: translateX(-100%);
|
6257 |
+
-ms-transform: translateX(-100%);
|
6258 |
+
transform: translateX(-100%);
|
6259 |
+
opacity: 0;
|
6260 |
+
}
|
6261 |
+
|
6262 |
+
.premium-button-style4-right:hover .premium-button-text-icon-wrapper {
|
6263 |
+
-webkit-transform: translateX(100%);
|
6264 |
+
-ms-transform: translateX(100%);
|
6265 |
+
transform: translateX(100%);
|
6266 |
+
opacity: 0;
|
6267 |
+
}
|
6268 |
+
|
6269 |
+
.premium-button-style6:before {
|
6270 |
+
content: "";
|
6271 |
+
position: absolute;
|
6272 |
+
right: 50%;
|
6273 |
+
top: 50%;
|
6274 |
+
width: 100px;
|
6275 |
+
height: 100px;
|
6276 |
+
-webkit-border-radius: 100%;
|
6277 |
+
border-radius: 100%;
|
6278 |
+
-webkit-transform: translate(50%, -50%) scale(0);
|
6279 |
+
-ms-transform: translate(50%, -50%) scale(0);
|
6280 |
+
transform: translate(50%, -50%) scale(0);
|
6281 |
+
-webkit-transition: all 0.3s ease-in-out;
|
6282 |
+
transition: all 0.3s ease-in-out;
|
6283 |
+
}
|
6284 |
+
|
6285 |
+
.premium-button-style6:hover:before {
|
6286 |
+
-webkit-transform: translate(50%, -50%) scale(3);
|
6287 |
+
-ms-transform: translate(50%, -50%) scale(3);
|
6288 |
+
transform: translate(50%, -50%) scale(3);
|
6289 |
+
}
|
6290 |
+
|
6291 |
+
.premium-button-style6 .premium-button-text-icon-wrapper {
|
6292 |
+
position: relative;
|
6293 |
+
z-index: 1;
|
6294 |
+
}
|
6295 |
+
|
6296 |
+
.premium-mouse-detect-yes .premium-button-style6 .premium-button-style6-bg {
|
6297 |
+
position: absolute;
|
6298 |
+
z-index: 0;
|
6299 |
+
top: 0;
|
6300 |
+
right: 0;
|
6301 |
+
width: 0px;
|
6302 |
+
height: 0px;
|
6303 |
+
-webkit-border-radius: 50%;
|
6304 |
+
border-radius: 50%;
|
6305 |
+
display: block;
|
6306 |
+
-webkit-transform: translate(50%, -50%);
|
6307 |
+
-ms-transform: translate(50%, -50%);
|
6308 |
+
transform: translate(50%, -50%);
|
6309 |
+
-webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
|
6310 |
+
transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
|
6311 |
+
}
|
6312 |
+
|
6313 |
+
.premium-mouse-detect-yes .premium-button-style6:hover .premium-button-style6-bg {
|
6314 |
+
width: 225%;
|
6315 |
+
height: 560px;
|
6316 |
+
}
|
6317 |
+
|
6318 |
+
.premium-mouse-detect-yes .premium-button-style6:before {
|
6319 |
+
width: 0;
|
6320 |
+
height: 0;
|
6321 |
+
}
|
6322 |
+
|
6323 |
+
.premium-button-style7-right .premium-button-text-icon-wrapper:before,
|
6324 |
+
.premium-button-style7-left .premium-button-text-icon-wrapper:before {
|
6325 |
+
-webkit-transition: width 0.3s ease-out 0.15s;
|
6326 |
+
transition: width 0.3s ease-out 0.15s;
|
6327 |
+
}
|
6328 |
+
|
6329 |
+
.premium-button-style7-right .premium-button-text-icon-wrapper:after,
|
6330 |
+
.premium-button-style7-left .premium-button-text-icon-wrapper:after {
|
6331 |
+
-webkit-transition: width 0.3s ease-out 0s;
|
6332 |
+
transition: width 0.3s ease-out 0s;
|
6333 |
+
}
|
6334 |
+
|
6335 |
+
.premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
|
6336 |
+
.premium-button-style7-top .premium-button-text-icon-wrapper:before {
|
6337 |
+
-webkit-transition: height 0.3s ease-out 0.15s;
|
6338 |
+
transition: height 0.3s ease-out 0.15s;
|
6339 |
+
}
|
6340 |
+
|
6341 |
+
.premium-button-style7-bottom .premium-button-text-icon-wrapper:after,
|
6342 |
+
.premium-button-style7-top .premium-button-text-icon-wrapper:after {
|
6343 |
+
-webkit-transition: height 0.3s ease-out 0s;
|
6344 |
+
transition: height 0.3s ease-out 0s;
|
6345 |
+
}
|
6346 |
+
|
6347 |
+
.premium-button[class*="style7"]:hover .premium-button-text-icon-wrapper:before {
|
6348 |
+
-webkit-transition-delay: 0s;
|
6349 |
+
transition-delay: 0s;
|
6350 |
+
}
|
6351 |
+
|
6352 |
+
.premium-button[class*="style7"]:hover .premium-button-text-icon-wrapper:after {
|
6353 |
+
-webkit-transition-delay: 0.15s;
|
6354 |
+
transition-delay: 0.15s;
|
6355 |
+
}
|
6356 |
+
|
6357 |
+
.premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
|
6358 |
+
.premium-button-style7-bottom .premium-button-text-icon-wrapper:after {
|
6359 |
+
content: "";
|
6360 |
+
position: absolute;
|
6361 |
+
left: 0;
|
6362 |
+
top: 0;
|
6363 |
+
right: 0;
|
6364 |
+
height: 0;
|
6365 |
+
z-index: -1;
|
6366 |
+
}
|
6367 |
+
|
6368 |
+
.premium-button-style7-top .premium-button-text-icon-wrapper:after,
|
6369 |
+
.premium-button-style7-top .premium-button-text-icon-wrapper:before {
|
6370 |
+
content: "";
|
6371 |
+
position: absolute;
|
6372 |
+
left: 0;
|
6373 |
+
bottom: 0;
|
6374 |
+
right: 0;
|
6375 |
+
height: 0;
|
6376 |
+
z-index: -1;
|
6377 |
+
}
|
6378 |
+
|
6379 |
+
.premium-button-style7-right .premium-button-text-icon-wrapper:after,
|
6380 |
+
.premium-button-style7-right .premium-button-text-icon-wrapper:before {
|
6381 |
+
content: "";
|
6382 |
+
position: absolute;
|
6383 |
+
right: 0;
|
6384 |
+
top: 0;
|
6385 |
+
bottom: 0;
|
6386 |
+
width: 0;
|
6387 |
+
z-index: -1;
|
6388 |
+
}
|
6389 |
+
|
6390 |
+
.premium-button-style7-left .premium-button-text-icon-wrapper:after,
|
6391 |
+
.premium-button-style7-left .premium-button-text-icon-wrapper:before {
|
6392 |
+
content: "";
|
6393 |
+
position: absolute;
|
6394 |
+
left: 0;
|
6395 |
+
top: 0;
|
6396 |
+
bottom: 0;
|
6397 |
+
width: 0;
|
6398 |
+
z-index: -1;
|
6399 |
+
}
|
6400 |
+
|
6401 |
+
.premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:after,
|
6402 |
+
.premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:before {
|
6403 |
+
height: 100%;
|
6404 |
+
top: 0;
|
6405 |
+
}
|
6406 |
+
|
6407 |
+
.premium-button-style7-top:hover .premium-button-text-icon-wrapper:after,
|
6408 |
+
.premium-button-style7-top:hover .premium-button-text-icon-wrapper:before {
|
6409 |
+
height: 100%;
|
6410 |
+
bottom: 0;
|
6411 |
+
}
|
6412 |
+
|
6413 |
+
.premium-button-style7-left:hover .premium-button-text-icon-wrapper:after,
|
6414 |
+
.premium-button-style7-left:hover .premium-button-text-icon-wrapper:before {
|
6415 |
+
width: 100%;
|
6416 |
+
left: 0;
|
6417 |
+
}
|
6418 |
+
|
6419 |
+
.premium-button-style7-right:hover .premium-button-text-icon-wrapper:after,
|
6420 |
+
.premium-button-style7-right:hover .premium-button-text-icon-wrapper:before {
|
6421 |
+
width: 100%;
|
6422 |
+
right: 0;
|
6423 |
+
}
|
6424 |
+
|
6425 |
+
/**************** Premium Contact Form7 **********/
|
6426 |
+
/*************************************************/
|
6427 |
+
.premium-contact-form-anim-yes .wpcf7-span::after {
|
6428 |
+
display: block;
|
6429 |
+
height: 2px;
|
6430 |
+
content: "";
|
6431 |
+
top: -2px;
|
6432 |
+
position: relative;
|
6433 |
+
width: 0px;
|
6434 |
+
-webkit-transition: all ease-in-out 0.3s;
|
6435 |
+
transition: all ease-in-out 0.3s;
|
6436 |
+
}
|
6437 |
+
|
6438 |
+
.premium-contact-form-anim-yes .wpcf7-span.is-focused::after {
|
6439 |
+
width: 100%;
|
6440 |
+
}
|
6441 |
+
|
6442 |
+
/**************** Premium Image Button ***********/
|
6443 |
+
/*************************************************/
|
6444 |
+
.premium-image-button {
|
6445 |
+
display: inline-block;
|
6446 |
+
position: relative;
|
6447 |
+
overflow: hidden;
|
6448 |
+
background: #6ec1e4;
|
6449 |
+
cursor: pointer;
|
6450 |
+
-webkit-transition: all 0.2s ease-in-out !important;
|
6451 |
+
transition: all 0.2s ease-in-out !important;
|
6452 |
+
}
|
6453 |
+
|
6454 |
+
/*Default background for slide styles*/
|
6455 |
+
.premium-image-button:hover,
|
6456 |
+
.premium-image-button-style4-icon-wrapper,
|
6457 |
+
.premium-image-button-style1-top:before,
|
6458 |
+
.premium-image-button-style1-bottom:before,
|
6459 |
+
.premium-image-button-style1-left:before,
|
6460 |
+
.premium-image-button-style1-right:before {
|
6461 |
+
background-color: #54595f;
|
6462 |
+
}
|
6463 |
+
|
6464 |
+
.premium-image-button.premium-image-button-sm {
|
6465 |
+
padding: 12px 24px;
|
6466 |
+
font-size: 14px;
|
6467 |
+
line-height: 1;
|
6468 |
+
}
|
6469 |
+
|
6470 |
+
.premium-image-button.premium-image-button-md {
|
6471 |
+
padding: 14px 26px;
|
6472 |
+
font-size: 16px;
|
6473 |
+
line-height: 1.2;
|
6474 |
+
}
|
6475 |
+
|
6476 |
+
.premium-image-button.premium-image-button-lg {
|
6477 |
+
padding: 16px 28px;
|
6478 |
+
font-size: 18px;
|
6479 |
+
line-height: 1.3333;
|
6480 |
+
}
|
6481 |
+
|
6482 |
+
.premium-image-button.premium-image-button-block {
|
6483 |
+
font-size: 15px;
|
6484 |
+
line-height: 1;
|
6485 |
+
padding: 12px 24px;
|
6486 |
+
width: 100%;
|
6487 |
+
text-align: center;
|
6488 |
+
}
|
6489 |
+
|
6490 |
+
.premium-image-button-text-icon-wrapper {
|
6491 |
+
display: -webkit-box;
|
6492 |
+
display: -webkit-flex;
|
6493 |
+
display: -ms-flexbox;
|
6494 |
+
-js-display: flex;
|
6495 |
+
display: -moz-box;
|
6496 |
+
display: flex;
|
6497 |
+
-webkit-box-pack: center;
|
6498 |
+
-webkit-justify-content: center;
|
6499 |
+
-moz-box-pack: center;
|
6500 |
+
-ms-flex-pack: center;
|
6501 |
+
justify-content: center;
|
6502 |
+
-webkit-box-align: center;
|
6503 |
+
-webkit-align-items: center;
|
6504 |
+
-moz-box-align: center;
|
6505 |
+
-ms-flex-align: center;
|
6506 |
+
align-items: center;
|
6507 |
+
position: relative;
|
6508 |
+
z-index: 3;
|
6509 |
+
}
|
6510 |
+
|
6511 |
+
.premium-image-button-text-icon-wrapper span,
|
6512 |
+
.premium-image-button-text-icon-wrapper,
|
6513 |
+
.premium-image-button-text-icon-wrapper i,
|
6514 |
+
.premium-image-button-text-icon-wrapper svg {
|
6515 |
+
-webkit-transition: all 0.2s ease-in-out;
|
6516 |
+
transition: all 0.2s ease-in-out;
|
6517 |
+
}
|
6518 |
+
|
6519 |
+
.premium-image-button-style1-bottom:before,
|
6520 |
+
.premium-image-button-style1-top:before,
|
6521 |
+
.premium-image-button-style1-left:before,
|
6522 |
+
.premium-image-button-style1-right:before {
|
6523 |
+
-webkit-transition: all 0.2s ease-in-out;
|
6524 |
+
transition: all 0.2s ease-in-out;
|
6525 |
+
}
|
6526 |
+
|
6527 |
+
.premium-image-button-style1-bottom:before {
|
6528 |
+
content: "";
|
6529 |
+
position: absolute;
|
6530 |
+
width: 100%;
|
6531 |
+
height: 0;
|
6532 |
+
top: 0;
|
6533 |
+
right: 0;
|
6534 |
+
}
|
6535 |
+
|
6536 |
+
.premium-image-button-style1-top:before {
|
6537 |
+
content: "";
|
6538 |
+
position: absolute;
|
6539 |
+
width: 100%;
|
6540 |
+
height: 0;
|
6541 |
+
bottom: 0;
|
6542 |
+
right: 0;
|
6543 |
+
}
|
6544 |
+
|
6545 |
+
.premium-image-button-style1-right:before {
|
6546 |
+
content: "";
|
6547 |
+
position: absolute;
|
6548 |
+
width: 0;
|
6549 |
+
height: 100%;
|
6550 |
+
bottom: 0;
|
6551 |
+
right: 0;
|
6552 |
+
}
|
6553 |
+
|
6554 |
+
.premium-image-button-style1-left:before {
|
6555 |
+
content: "";
|
6556 |
+
position: absolute;
|
6557 |
+
width: 0;
|
6558 |
+
height: 100%;
|
6559 |
+
top: 0;
|
6560 |
+
left: 0;
|
6561 |
+
}
|
6562 |
+
|
6563 |
+
.premium-image-button-style1-bottom:hover:before {
|
6564 |
+
height: 100%;
|
6565 |
+
}
|
6566 |
+
|
6567 |
+
.premium-image-button-style1-top:hover:before {
|
6568 |
+
height: 100%;
|
6569 |
+
}
|
6570 |
+
|
6571 |
+
.premium-image-button-style1-right:hover:before {
|
6572 |
+
width: 100%;
|
6573 |
+
}
|
6574 |
+
|
6575 |
+
.premium-image-button-style1-left:hover:before {
|
6576 |
+
width: 100%;
|
6577 |
+
}
|
6578 |
+
|
6579 |
+
.premium-image-button-diagonal-top,
|
6580 |
+
.premium-image-button-diagonal-bottom,
|
6581 |
+
.premium-image-button-diagonal-left,
|
6582 |
+
.premium-image-button-diagonal-right {
|
6583 |
+
z-index: 10;
|
6584 |
+
}
|
6585 |
+
|
6586 |
+
.premium-image-button-diagonal-top:before,
|
6587 |
+
.premium-image-button-diagonal-bottom:before,
|
6588 |
+
.premium-image-button-diagonal-left:before,
|
6589 |
+
.premium-image-button-diagonal-right:before {
|
6590 |
+
position: absolute;
|
6591 |
+
top: 0px;
|
6592 |
+
right: 0px;
|
6593 |
+
width: 100%;
|
6594 |
+
height: 100%;
|
6595 |
+
content: "";
|
6596 |
+
z-index: 1;
|
6597 |
+
background: rgba(255, 255, 255, 0.2);
|
6598 |
+
-webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
|
6599 |
+
-ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
|
6600 |
+
transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
|
6601 |
+
-webkit-transition: all 0.8s ease-out;
|
6602 |
+
transition: all 0.8s ease-out;
|
6603 |
+
}
|
6604 |
+
|
6605 |
+
.premium-image-button-diagonal-right:hover:before,
|
6606 |
+
.premium-image-button-diagonal-left:before {
|
6607 |
+
-webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
|
6608 |
+
-ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
|
6609 |
+
transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
|
6610 |
+
}
|
6611 |
+
|
6612 |
+
.premium-image-button-diagonal-left:hover:before,
|
6613 |
+
.premium-image-button-diagonal-right:before {
|
6614 |
+
-webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
|
6615 |
+
-ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
|
6616 |
+
transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
|
6617 |
+
}
|
6618 |
+
|
6619 |
+
.premium-image-button-diagonal-top:hover:before,
|
6620 |
+
.premium-image-button-diagonal-bottom:before {
|
6621 |
+
-webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
|
6622 |
+
-ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
|
6623 |
+
transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
|
6624 |
+
}
|
6625 |
+
|
6626 |
+
.premium-image-button-diagonal-bottom:hover:before,
|
6627 |
+
.premium-image-button-diagonal-top:before {
|
6628 |
+
-webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
|
6629 |
+
-ms-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
|
6630 |
+
transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
|
6631 |
+
}
|
6632 |
+
|
6633 |
+
.premium-image-button-style4-icon-wrapper {
|
6634 |
+
position: absolute;
|
6635 |
+
z-index: 2;
|
6636 |
+
width: 100%;
|
6637 |
+
text-align: center;
|
6638 |
+
display: -webkit-box;
|
6639 |
+
display: -webkit-flex;
|
6640 |
+
display: -ms-flexbox;
|
6641 |
+
-js-display: flex;
|
6642 |
+
display: -moz-box;
|
6643 |
+
display: flex;
|
6644 |
+
-webkit-box-align: center;
|
6645 |
+
-webkit-align-items: center;
|
6646 |
+
-moz-box-align: center;
|
6647 |
+
-ms-flex-align: center;
|
6648 |
+
align-items: center;
|
6649 |
+
-webkit-box-pack: center;
|
6650 |
+
-webkit-justify-content: center;
|
6651 |
+
-moz-box-pack: center;
|
6652 |
+
-ms-flex-pack: center;
|
6653 |
+
justify-content: center;
|
6654 |
+
height: 100%;
|
6655 |
+
opacity: 0;
|
6656 |
+
-webkit-transition: all 0.3s ease-in-out;
|
6657 |
+
transition: all 0.3s ease-in-out;
|
6658 |
+
}
|
6659 |
+
|
6660 |
+
.premium-image-button-style4-icon-wrapper.top {
|
6661 |
+
bottom: -100%;
|
6662 |
+
right: 0;
|
6663 |
+
}
|
6664 |
+
|
6665 |
+
.premium-image-button-style4-icon-wrapper.bottom {
|
6666 |
+
top: -100%;
|
6667 |
+
right: 0;
|
6668 |
+
}
|
6669 |
+
|
6670 |
+
.premium-image-button-style4-icon-wrapper.left {
|
6671 |
+
top: 0;
|
6672 |
+
right: -100%;
|
6673 |
+
}
|
6674 |
+
|
6675 |
+
.premium-image-button-style4-icon-wrapper.right {
|
6676 |
+
top: 0;
|
6677 |
+
left: -100%;
|
6678 |
+
}
|
6679 |
+
|
6680 |
+
.premium-image-button-style4-bottom:hover .premium-image-button-style4-icon-wrapper {
|
6681 |
+
top: 0;
|
6682 |
+
opacity: 1;
|
6683 |
+
}
|
6684 |
+
|
6685 |
+
.premium-image-button-style4-top:hover .premium-image-button-style4-icon-wrapper {
|
6686 |
+
bottom: 0;
|
6687 |
+
opacity: 1;
|
6688 |
+
}
|
6689 |
+
|
6690 |
+
.premium-image-button-style4-left:hover .premium-image-button-style4-icon-wrapper {
|
6691 |
+
right: 0;
|
6692 |
+
opacity: 1;
|
6693 |
+
}
|
6694 |
+
|
6695 |
+
.premium-image-button-style4-right:hover .premium-image-button-style4-icon-wrapper {
|
6696 |
+
left: 0;
|
6697 |
+
opacity: 1;
|
6698 |
+
}
|
6699 |
+
|
6700 |
+
.premium-image-button-style4-bottom:hover .premium-image-button-text-icon-wrapper {
|
6701 |
+
-webkit-transform: translateY(100%);
|
6702 |
+
-ms-transform: translateY(100%);
|
6703 |
+
transform: translateY(100%);
|
6704 |
+
opacity: 0;
|
6705 |
+
}
|
6706 |
+
|
6707 |
+
.premium-image-button-style4-top:hover .premium-image-button-text-icon-wrapper {
|
6708 |
+
-webkit-transform: translateY(-100%);
|
6709 |
+
-ms-transform: translateY(-100%);
|
6710 |
+
transform: translateY(-100%);
|
6711 |
+
opacity: 0;
|
6712 |
+
}
|
6713 |
+
|
6714 |
+
.premium-image-button-style4-left:hover .premium-image-button-text-icon-wrapper {
|
6715 |
+
-webkit-transform: translateX(-100%);
|
6716 |
+
-ms-transform: translateX(-100%);
|
6717 |
+
transform: translateX(-100%);
|
6718 |
+
opacity: 0;
|
6719 |
+
}
|
6720 |
+
|
6721 |
+
.premium-image-button-style4-right:hover .premium-image-button-text-icon-wrapper {
|
6722 |
+
-webkit-transform: translateX(100%);
|
6723 |
+
-ms-transform: translateX(100%);
|
6724 |
+
transform: translateX(100%);
|
6725 |
+
opacity: 0;
|
6726 |
+
}
|
6727 |
+
|
6728 |
+
.premium-image-button-overlap-effect-horizontal:before,
|
6729 |
+
.premium-image-button-overlap-effect-vertical:before {
|
6730 |
+
position: absolute;
|
6731 |
+
content: "";
|
6732 |
+
top: 0;
|
6733 |
+
right: 0;
|
6734 |
+
width: 100%;
|
6735 |
+
height: 100%;
|
6736 |
+
opacity: 0;
|
6737 |
+
-webkit-transition: all 1s ease-in-out;
|
6738 |
+
transition: all 1s ease-in-out;
|
6739 |
+
background: rgba(255, 255, 255, 0.2);
|
6740 |
+
-webkit-animation-name: premium-overlap-effect-done;
|
6741 |
+
animation-name: premium-overlap-effect-done;
|
6742 |
+
-webkit-animation-duration: 1s;
|
6743 |
+
animation-duration: 1s;
|
6744 |
+
}
|
6745 |
+
|
6746 |
+
.premium-image-button-overlap-effect-vertical:before {
|
6747 |
+
-webkit-animation-name: premium-overlap-ver-effect-done;
|
6748 |
+
animation-name: premium-overlap-ver-effect-done;
|
6749 |
+
-webkit-animation-duration: 1s;
|
6750 |
+
animation-duration: 1s;
|
6751 |
+
}
|
6752 |
+
|
6753 |
+
.premium-image-button-overlap-effect-horizontal:hover:before {
|
6754 |
+
-webkit-animation-name: premium-overlap-effect;
|
6755 |
+
animation-name: premium-overlap-effect;
|
6756 |
+
-webkit-animation-duration: 1s;
|
6757 |
+
animation-duration: 1s;
|
6758 |
+
}
|
6759 |
+
|
6760 |
+
.premium-image-button-overlap-effect-vertical:hover:before {
|
6761 |
+
-webkit-animation-name: premium-overlap-ver-effect;
|
6762 |
+
animation-name: premium-overlap-ver-effect;
|
6763 |
+
-webkit-animation-duration: 1s;
|
6764 |
+
animation-duration: 1s;
|
6765 |
+
}
|
6766 |
+
|
6767 |
+
@-webkit-keyframes premium-overlap-effect {
|
6768 |
+
0% {
|
6769 |
+
opacity: 0;
|
6770 |
+
-webkit-transform: rotateY(0deg);
|
6771 |
+
transform: rotateY(0deg);
|
6772 |
+
}
|
6773 |
+
|
6774 |
+
50% {
|
6775 |
+
opacity: 1;
|
6776 |
+
-webkit-transform: rotateY(180deg);
|
6777 |
+
transform: rotateY(180deg);
|
6778 |
+
}
|
6779 |
+
|
6780 |
+
100% {
|
6781 |
+
opacity: 0;
|
6782 |
+
-webkit-transform: rotateY(360deg);
|
6783 |
+
transform: rotateY(360deg);
|
6784 |
+
}
|
6785 |
+
}
|
6786 |
+
|
6787 |
+
@keyframes premium-overlap-effect {
|
6788 |
+
0% {
|
6789 |
+
opacity: 0;
|
6790 |
+
-webkit-transform: rotateY(0deg);
|
6791 |
+
transform: rotateY(0deg);
|
6792 |
+
}
|
6793 |
+
|
6794 |
+
50% {
|
6795 |
+
opacity: 1;
|
6796 |
+
-webkit-transform: rotateY(180deg);
|
6797 |
+
transform: rotateY(180deg);
|
6798 |
+
}
|
6799 |
+
|
6800 |
+
100% {
|
6801 |
+
opacity: 0;
|
6802 |
+
-webkit-transform: rotateY(360deg);
|
6803 |
+
transform: rotateY(360deg);
|
6804 |
+
}
|
6805 |
+
}
|
6806 |
+
|
6807 |
+
@-webkit-keyframes premium-overlap-effect-done {
|
6808 |
+
0% {
|
6809 |
+
opacity: 0;
|
6810 |
+
-webkit-transform: rotateY(0deg);
|
6811 |
+
transform: rotateY(0deg);
|
6812 |
+
}
|
6813 |
+
|
6814 |
+
50% {
|
6815 |
+
opacity: 1;
|
6816 |
+
-webkit-transform: rotateY(180deg);
|
6817 |
+
transform: rotateY(180deg);
|
6818 |
+
}
|
6819 |
+
|
6820 |
+
100% {
|
6821 |
+
opacity: 0;
|
6822 |
+
-webkit-transform: rotateY(360deg);
|
6823 |
+
transform: rotateY(360deg);
|
6824 |
+
}
|
6825 |
+
}
|
6826 |
+
|
6827 |
+
@keyframes premium-overlap-effect-done {
|
6828 |
+
0% {
|
6829 |
+
opacity: 0;
|
6830 |
+
-webkit-transform: rotateY(0deg);
|
6831 |
+
transform: rotateY(0deg);
|
6832 |
+
}
|
6833 |
+
|
6834 |
+
50% {
|
6835 |
+
opacity: 1;
|
6836 |
+
-webkit-transform: rotateY(180deg);
|
6837 |
+
transform: rotateY(180deg);
|
6838 |
+
}
|
6839 |
+
|
6840 |
+
100% {
|
6841 |
+
opacity: 0;
|
6842 |
+
-webkit-transform: rotateY(360deg);
|
6843 |
+
transform: rotateY(360deg);
|
6844 |
+
}
|
6845 |
+
}
|
6846 |
+
|
6847 |
+
@-webkit-keyframes premium-overlap-ver-effect {
|
6848 |
+
0% {
|
6849 |
+
opacity: 0;
|
6850 |
+
-webkit-transform: rotateX(0deg);
|
6851 |
+
transform: rotateX(0deg);
|
6852 |
+
}
|
6853 |
+
|
6854 |
+
50% {
|
6855 |
+
opacity: 1;
|
6856 |
+
-webkit-transform: rotateX(180deg);
|
6857 |
+
transform: rotateX(180deg);
|
6858 |
+
}
|
6859 |
+
|
6860 |
+
100% {
|
6861 |
+
opacity: 0;
|
6862 |
+
-webkit-transform: rotateX(360deg);
|
6863 |
+
transform: rotateX(360deg);
|
6864 |
+
}
|
6865 |
+
}
|
6866 |
+
|
6867 |
+
@keyframes premium-overlap-ver-effect {
|
6868 |
+
0% {
|
6869 |
+
opacity: 0;
|
6870 |
+
-webkit-transform: rotateX(0deg);
|
6871 |
+
transform: rotateX(0deg);
|
6872 |
+
}
|
6873 |
+
|
6874 |
+
50% {
|
6875 |
+
opacity: 1;
|
6876 |
+
-webkit-transform: rotateX(180deg);
|
6877 |
+
transform: rotateX(180deg);
|
6878 |
+
}
|
6879 |
+
|
6880 |
+
100% {
|
6881 |
+
opacity: 0;
|
6882 |
+
-webkit-transform: rotateX(360deg);
|
6883 |
+
transform: rotateX(360deg);
|
6884 |
+
}
|
6885 |
+
}
|
6886 |
+
|
6887 |
+
@-webkit-keyframes premium-overlap-ver-effect-done {
|
6888 |
+
0% {
|
6889 |
+
opacity: 0;
|
6890 |
+
-webkit-transform: rotateX(0deg);
|
6891 |
+
transform: rotateX(0deg);
|
6892 |
+
}
|
6893 |
+
|
6894 |
+
50% {
|
6895 |
+
opacity: 1;
|
6896 |
+
-webkit-transform: rotateX(180deg);
|
6897 |
+
transform: rotateX(180deg);
|
6898 |
+
}
|
6899 |
+
|
6900 |
+
100% {
|
6901 |
+
opacity: 0;
|
6902 |
+
-webkit-transform: rotateX(360deg);
|
6903 |
+
transform: rotateX(360deg);
|
6904 |
+
}
|
6905 |
+
}
|
6906 |
+
|
6907 |
+
@keyframes premium-overlap-ver-effect-done {
|
6908 |
+
0% {
|
6909 |
+
opacity: 0;
|
6910 |
+
-webkit-transform: rotateX(0deg);
|
6911 |
+
transform: rotateX(0deg);
|
6912 |
+
}
|
6913 |
+
|
6914 |
+
50% {
|
6915 |
+
opacity: 1;
|
6916 |
+
-webkit-transform: rotateX(180deg);
|
6917 |
+
transform: rotateX(180deg);
|
6918 |
+
}
|
6919 |
+
|
6920 |
+
100% {
|
6921 |
+
opacity: 0;
|
6922 |
+
-webkit-transform: rotateX(360deg);
|
6923 |
+
transform: rotateX(360deg);
|
6924 |
+
}
|
6925 |
+
}
|
6926 |
+
|
6927 |
+
/**************** Premium Grid *******************/
|
6928 |
+
/*************************************************/
|
6929 |
+
.premium-img-gallery-filter,
|
6930 |
+
.premium-blog-filter {
|
6931 |
+
display: -webkit-box;
|
6932 |
+
display: -webkit-flex;
|
6933 |
+
display: -ms-flexbox;
|
6934 |
+
-js-display: flex;
|
6935 |
+
display: -moz-box;
|
6936 |
+
display: flex;
|
6937 |
+
-webkit-box-align: center;
|
6938 |
+
-webkit-align-items: center;
|
6939 |
+
-moz-box-align: center;
|
6940 |
+
-ms-flex-align: center;
|
6941 |
+
align-items: center;
|
6942 |
+
-webkit-box-pack: center;
|
6943 |
+
-webkit-justify-content: center;
|
6944 |
+
-moz-box-pack: center;
|
6945 |
+
-ms-flex-pack: center;
|
6946 |
+
justify-content: center;
|
6947 |
+
}
|
6948 |
+
|
6949 |
+
.premium-img-gallery {
|
6950 |
+
clear: both;
|
6951 |
+
overflow: hidden;
|
6952 |
+
}
|
6953 |
+
|
6954 |
+
.premium-gallery-container .premium-gallery-item {
|
6955 |
+
padding: 10px;
|
6956 |
+
float: right;
|
6957 |
+
/* Google Chrome isotope issue */
|
6958 |
+
}
|
6959 |
+
|
6960 |
+
.premium-gallery-container .grid-sizer {
|
6961 |
+
width: 33.33%;
|
6962 |
+
}
|
6963 |
+
|
6964 |
+
.premium-img-gallery-filter .premium-gallery-cats-container li a.category,
|
6965 |
+
.premium-blog-filter .premium-blog-filters-container li a.category {
|
6966 |
+
outline: none;
|
6967 |
+
text-decoration: none;
|
6968 |
+
-webkit-border-radius: 75px;
|
6969 |
+
border-radius: 75px;
|
6970 |
+
margin: 15px 5px 20px;
|
6971 |
+
padding: 7px 20px;
|
6972 |
+
-webkit-transition: all 0.3s ease-in-out;
|
6973 |
+
transition: all 0.3s ease-in-out;
|
6974 |
+
}
|
6975 |
+
|
6976 |
+
.premium-img-gallery-filter .premium-gallery-cats-container li a.category span {
|
6977 |
+
-webkit-transition: all 0.3s ease-in-out;
|
6978 |
+
transition: all 0.3s ease-in-out;
|
6979 |
+
}
|
6980 |
+
|
6981 |
+
.pa-gallery-img {
|
6982 |
+
position: relative;
|
6983 |
+
}
|
6984 |
+
|
6985 |
+
.pa-gallery-img .pa-gallery-whole-link {
|
6986 |
+
position: absolute;
|
6987 |
+
top: 0;
|
6988 |
+
right: 0;
|
6989 |
+
width: 100%;
|
6990 |
+
height: 100%;
|
6991 |
+
}
|
6992 |
+
|
6993 |
+
.pa-gallery-img.style2 .pa-gallery-whole-link {
|
6994 |
+
z-index: 99;
|
6995 |
+
}
|
6996 |
+
|
6997 |
+
.pa-gallery-img-container {
|
6998 |
+
overflow: hidden;
|
6999 |
+
-webkit-backface-visibility: hidden;
|
7000 |
+
-moz-backface-visibility: hidden;
|
7001 |
+
-webkit-transform: translate3d(0, 0, 0);
|
7002 |
+
transform: translate3d(0, 0, 0);
|
7003 |
+
}
|
7004 |
+
|
7005 |
+
.pa-gallery-img-container img {
|
7006 |
+
display: block;
|
7007 |
+
width: 100%;
|
7008 |
+
-webkit-transition: all 0.3s ease-in-out;
|
7009 |
+
transition: all 0.3s ease-in-out;
|
7010 |
+
}
|
7011 |
+
|
7012 |
+
.premium-img-gallery.gray img {
|
7013 |
+
-webkit-filter: grayscale(100%);
|
7014 |
+
filter: grayscale(100%);
|
7015 |
+
}
|
7016 |
+
|
7017 |
+
.premium-img-gallery.zoomout img,
|
7018 |
+
.premium-img-gallery.scale img {
|
7019 |
+
-webkit-transform: scale(1.2);
|
7020 |
+
-ms-transform: scale(1.2);
|
7021 |
+
transform: scale(1.2);
|
7022 |
+
}
|
7023 |
+
|
7024 |
+
.premium-img-gallery.sepia img {
|
7025 |
+
-webkit-filter: sepia(30%);
|
7026 |
+
filter: sepia(30%);
|
7027 |
+
}
|
7028 |
+
|
7029 |
+
.premium-img-gallery.bright img {
|
7030 |
+
-webkit-filter: brightness(1);
|
7031 |
+
filter: brightness(1);
|
7032 |
+
}
|
7033 |
+
|
7034 |
+
.premium-img-gallery.trans img {
|
7035 |
+
-webkit-transform: translateX(15px) scale(1.1);
|
7036 |
+
-ms-transform: translateX(15px) scale(1.1);
|
7037 |
+
transform: translateX(15px) scale(1.1);
|
7038 |
+
}
|
7039 |
+
|
7040 |
+
.pa-gallery-img .pa-gallery-magnific-image,
|
7041 |
+
.pa-gallery-img .pa-gallery-img-link {
|
7042 |
+
outline: none;
|
7043 |
+
}
|
7044 |
+
|
7045 |
+
.pa-gallery-img .pa-gallery-magnific-image span,
|
7046 |
+
.pa-gallery-img .pa-gallery-img-link span {
|
7047 |
+
line-height: 1;
|
7048 |
+
display: inline-block;
|
7049 |
+
opacity: 0;
|
7050 |
+
margin: 0 5px;
|
7051 |
+
padding: 15px;
|
7052 |
+
-webkit-border-radius: 50%;
|
7053 |
+
border-radius: 50%;
|
7054 |
+
}
|
7055 |
+
|
7056 |
+
.pa-gallery-img.style2 .pa-gallery-magnific-image span,
|
7057 |
+
.pa-gallery-img.style2 .pa-gallery-img-link span {
|
7058 |
+
margin: 0 5px 20px;
|
7059 |
+
}
|
7060 |
+
|
7061 |
+
.pa-gallery-img:hover .pa-gallery-magnific-image span {
|
7062 |
+
-webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
|
7063 |
+
transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
|
7064 |
+
}
|
7065 |
+
|
7066 |
+
.pa-gallery-img:hover .pa-gallery-img-link span {
|
7067 |
+
-webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
|
7068 |
+
transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
|
7069 |
+
}
|
7070 |
+
|
7071 |
+
.pa-gallery-img:hover .pa-gallery-magnific-image span,
|
7072 |
+
.pa-gallery-img:hover .pa-gallery-img-link span,
|
7073 |
+
.premium-gallery-icon-show a.pa-gallery-video-icon span {
|
7074 |
+
opacity: 1;
|
7075 |
+
}
|
7076 |
+
|
7077 |
+
.premium-img-gallery-filter ul.premium-gallery-cats-container,
|
7078 |
+
.premium-blog-filter ul.premium-blog-filters-container {
|
7079 |
+
text-align: center;
|
7080 |
+
margin: 0;
|
7081 |
+
padding: 0;
|
7082 |
+
}
|
7083 |
+
|
7084 |
+
.premium-img-gallery-filter .premium-gallery-cats-container li,
|
7085 |
+
.premium-blog-filter .premium-blog-filters-container li {
|
7086 |
+
list-style: none;
|
7087 |
+
display: -webkit-inline-box;
|
7088 |
+
display: -webkit-inline-flex;
|
7089 |
+
display: -ms-inline-flexbox;
|
7090 |
+
-js-display: inline-flex;
|
7091 |
+
display: -moz-inline-box;
|
7092 |
+
display: inline-flex;
|
7093 |
+
}
|
7094 |
+
|
7095 |
+
.premium-img-gallery.zoomin .pa-gallery-img:hover img {
|
7096 |
+
-webkit-transform: scale(1.1);
|
7097 |
+
-ms-transform: scale(1.1);
|
7098 |
+
transform: scale(1.1);
|
7099 |
+
}
|
7100 |
+
|
7101 |
+
.premium-img-gallery.zoomout .pa-gallery-img:hover img {
|
7102 |
+
-webkit-transform: scale(1);
|
7103 |
+
-ms-transform: scale(1);
|
7104 |
+
transform: scale(1);
|
7105 |
+
}
|
7106 |
+
|
7107 |
+
.premium-img-gallery.scale .pa-gallery-img:hover img {
|
7108 |
+
-webkit-transform: scale(1.3) rotate(-5deg);
|
7109 |
+
-ms-transform: scale(1.3) rotate(-5deg);
|
7110 |
+
transform: scale(1.3) rotate(-5deg);
|
7111 |
+
}
|
7112 |
+
|
7113 |
+
.premium-img-gallery.gray .pa-gallery-img:hover img {
|
7114 |
+
-webkit-filter: grayscale(0%);
|
7115 |
+
filter: grayscale(0%);
|
7116 |
+
}
|
7117 |
+
|
7118 |
+
.premium-img-gallery.blur .pa-gallery-img:hover img {
|
7119 |
+
-webkit-filter: blur(3px);
|
7120 |
+
filter: blur(3px);
|
7121 |
+
}
|
7122 |
+
|
7123 |
+
.premium-img-gallery.sepia .pa-gallery-img:hover img {
|
7124 |
+
-webkit-filter: sepia(0%);
|
7125 |
+
filter: sepia(0%);
|
7126 |
+
}
|
7127 |
+
|
7128 |
+
.premium-img-gallery.trans .pa-gallery-img:hover img {
|
7129 |
+
-webkit-transform: translateX(0px) scale(1.1);
|
7130 |
+
-ms-transform: translateX(0px) scale(1.1);
|
7131 |
+
transform: translateX(0px) scale(1.1);
|
7132 |
+
}
|
7133 |
+
|
7134 |
+
.premium-img-gallery.bright .pa-gallery-img:hover img {
|
7135 |
+
-webkit-filter: brightness(1.2);
|
7136 |
+
filter: brightness(1.2);
|
7137 |
+
}
|
7138 |
+
|
7139 |
+
.pa-gallery-img .premium-gallery-caption {
|
7140 |
+
padding: 10px;
|
7141 |
+
}
|
7142 |
+
|
7143 |
+
.pa-gallery-img .premium-gallery-caption .premium-gallery-img-name {
|
7144 |
+
margin-bottom: 0;
|
7145 |
+
}
|
7146 |
+
|
7147 |
+
.pa-gallery-img.style1 {
|
7148 |
+
overflow: hidden;
|
7149 |
+
}
|
7150 |
+
|
7151 |
+
.pa-gallery-img:not(.style2) .pa-gallery-icons-wrapper {
|
7152 |
+
position: absolute;
|
7153 |
+
top: 0;
|
7154 |
+
right: 0;
|
7155 |
+
width: 100%;
|
7156 |
+
height: 100%;
|
7157 |
+
-webkit-transition: all 0.3s ease-in-out;
|
7158 |
+
transition: all 0.3s ease-in-out;
|
7159 |
+
}
|
7160 |
+
|
7161 |
+
.pa-gallery-img:not(.style2) .pa-gallery-icons-inner-container {
|
7162 |
+
position: absolute;
|
7163 |
+
top: 33.33%;
|
7164 |
+
width: 100%;
|
7165 |
+
text-align: center;
|
7166 |
+
-webkit-transform: translateY(-50%);
|
7167 |
+
-ms-transform: translateY(-50%);
|
7168 |
+
transform: translateY(-50%);
|
7169 |
+
z-index: 999;
|
7170 |
+
}
|
7171 |
+
|
7172 |
+
.pa-gallery-img.style1 .premium-gallery-caption {
|
7173 |
+
position: absolute;
|
7174 |
+
top: auto;
|
7175 |
+
left: 0;
|
7176 |
+
right: 0;
|
7177 |
+
width: 100%;
|
7178 |
+
-webkit-transition: all 500ms ease 0s;
|
7179 |
+
transition: all 500ms ease 0s;
|
7180 |
+
-webkit-transform: translate3d(0, 100%, 0);
|
7181 |
+
-ms-transform: translate3d(0, 100%, 0);
|
7182 |
+
transform: translate3d(0, 100%, 0);
|
7183 |
+
}
|
7184 |
+
|
7185 |
+
.pa-gallery-img.default .premium-gallery-caption {
|
7186 |
+
position: absolute;
|
7187 |
+
top: auto;
|
7188 |
+
left: 0;
|
7189 |
+
right: 0;
|
7190 |
+
width: 100%;
|
7191 |
+
bottom: 0;
|
7192 |
+
}
|
7193 |
+
|
7194 |
+
.pa-gallery-img.style1:hover .premium-gallery-caption {
|
7195 |
+
-webkit-transform: translate3d(0, 0, 0);
|
7196 |
+
-ms-transform: translate3d(0, 0, 0);
|
7197 |
+
transform: translate3d(0, 0, 0);
|
7198 |
+
bottom: -1px !important;
|
7199 |
+
}
|
7200 |
+
|
7201 |
+
.pa-gallery-img.style2 .pa-gallery-icons-caption-container {
|
7202 |
+
position: absolute;
|
7203 |
+
top: 0;
|
7204 |
+
right: 0;
|
7205 |
+
width: 100%;
|
7206 |
+
height: 100%;
|
7207 |
+
opacity: 0;
|
7208 |
+
-webkit-backface-visibility: hidden;
|
7209 |
+
backface-visibility: hidden;
|
7210 |
+
-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
|
7211 |
+
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
|
7212 |
+
transition: opacity 0.3s, -webkit-transform 0.3s;
|
7213 |
+
transition: transform 0.3s, opacity 0.3s;
|
7214 |
+
transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
|
7215 |
+
z-index: 1;
|
7216 |
+
background-color: rgba(108, 191, 226, 0.68);
|
7217 |
+
display: -webkit-box;
|
7218 |
+
display: -webkit-flex;
|
7219 |
+
display: -ms-flexbox;
|
7220 |
+
-js-display: flex;
|
7221 |
+
display: -moz-box;
|
7222 |
+
display: flex;
|
7223 |
+
text-align: center;
|
7224 |
+
-webkit-box-align: center;
|
7225 |
+
-webkit-align-items: center;
|
7226 |
+
-moz-box-align: center;
|
7227 |
+
-ms-flex-align: center;
|
7228 |
+
align-items: center;
|
7229 |
+
}
|
7230 |
+
|
7231 |
+
.pa-gallery-img.style2 .pa-gallery-icons-caption-cell {
|
7232 |
+
width: 100%;
|
7233 |
+
}
|
7234 |
+
|
7235 |
+
.pa-gallery-img.style2:hover .pa-gallery-icons-caption-container {
|
7236 |
+
opacity: 1;
|
7237 |
+
-webkit-transform: translate(-15px, 15px);
|
7238 |
+
-ms-transform: translate(-15px, 15px);
|
7239 |
+
transform: translate(-15px, 15px);
|
7240 |
+
}
|
7241 |
+
|
7242 |
+
.premium-clearfix {
|
7243 |
+
clear: both;
|
7244 |
+
}
|
7245 |
+
|
7246 |
+
.premium-gallery-container .pa-gallery-item {
|
7247 |
+
padding: 10px;
|
7248 |
+
}
|
7249 |
+
|
7250 |
+
/**
|
7251 |
+
* Metro Layout
|
7252 |
+
*/
|
7253 |
+
.premium-img-gallery-metro .premium-gallery-item {
|
7254 |
+
overflow: hidden;
|
7255 |
+
}
|
7256 |
+
|
7257 |
+
.premium-img-gallery-metro .pa-gallery-img {
|
7258 |
+
height: 100%;
|
7259 |
+
}
|
7260 |
+
|
7261 |
+
.premium-img-gallery-metro .pa-gallery-img-container {
|
7262 |
+
height: 100%;
|
7263 |
+
}
|
7264 |
+
|
7265 |
+
.premium-img-gallery-metro .pa-gallery-img-container img {
|
7266 |
+
min-height: 100%;
|
7267 |
+
width: 100%;
|
7268 |
+
-o-object-fit: fill;
|
7269 |
+
object-fit: fill;
|
7270 |
+
}
|
7271 |
+
|
7272 |
+
.premium-img-gallery .premium-gallery-item-hidden {
|
7273 |
+
visibility: hidden;
|
7274 |
+
width: 0 !important;
|
7275 |
+
height: 0 !important;
|
7276 |
+
margin: 0 !important;
|
7277 |
+
padding: 0 !important;
|
7278 |
+
}
|
7279 |
+
|
7280 |
+
.premium-gallery-load-more .premium-gallery-load-more-btn {
|
7281 |
+
-webkit-box-shadow: none;
|
7282 |
+
box-shadow: none;
|
7283 |
+
text-shadow: none;
|
7284 |
+
border: none;
|
7285 |
+
outline: none;
|
7286 |
+
-webkit-box-align: center;
|
7287 |
+
-ms-flex-align: center;
|
7288 |
+
-webkit-align-items: center;
|
7289 |
+
-moz-box-align: center;
|
7290 |
+
align-items: center;
|
7291 |
+
vertical-align: bottom;
|
7292 |
+
cursor: pointer;
|
7293 |
+
line-height: 1;
|
7294 |
+
font-style: normal;
|
7295 |
+
font-weight: normal;
|
7296 |
+
background-image: none;
|
7297 |
+
color: #fff;
|
7298 |
+
-webkit-transition: all 0.3s ease-in-out;
|
7299 |
+
transition: all 0.3s ease-in-out;
|
7300 |
+
}
|
7301 |
+
|
7302 |
+
.premium-gallery-load-more-btn {
|
7303 |
+
display: -webkit-inline-box;
|
7304 |
+
display: -webkit-inline-flex;
|
7305 |
+
display: -ms-inline-flexbox;
|
7306 |
+
-js-display: inline-flex;
|
7307 |
+
display: -moz-inline-box;
|
7308 |
+
display: inline-flex;
|
7309 |
+
-webkit-box-align: center;
|
7310 |
+
-webkit-align-items: center;
|
7311 |
+
-moz-box-align: center;
|
7312 |
+
-ms-flex-align: center;
|
7313 |
+
align-items: center;
|
7314 |
+
}
|
7315 |
+
|
7316 |
+
.premium-loader {
|
7317 |
+
border: 3px solid #f3f3f3;
|
7318 |
+
border-top-width: 3px;
|
7319 |
+
border-top-style: solid;
|
7320 |
+
border-top-color: rgb(243, 243, 243);
|
7321 |
+
-webkit-border-radius: 50%;
|
7322 |
+
border-radius: 50%;
|
7323 |
+
border-top: 3px solid;
|
7324 |
+
border-top-color: #bbb;
|
7325 |
+
width: 30px;
|
7326 |
+
height: 30px;
|
7327 |
+
-webkit-animation: spin 2s linear infinite;
|
7328 |
+
animation: spin 2s linear infinite;
|
7329 |
+
margin: 0 auto;
|
7330 |
+
}
|
7331 |
+
|
7332 |
+
.premium-gallery-load-more-btn div {
|
7333 |
+
margin-right: 3px;
|
7334 |
+
}
|
7335 |
+
|
7336 |
+
.premium-gallery-load-more-btn .premium-loader {
|
7337 |
+
display: inline-block;
|
7338 |
+
width: 20px;
|
7339 |
+
height: 20px;
|
7340 |
+
}
|
7341 |
+
|
7342 |
+
/** * Video */
|
7343 |
+
.pa-gallery-img .pa-gallery-lightbox-wrap {
|
7344 |
+
display: inline-block;
|
7345 |
+
}
|
7346 |
+
|
7347 |
+
.premium-img-gallery-no-lightbox .premium-gallery-video-item .pa-gallery-img,
|
7348 |
+
.pa-gallery-img .pa-gallery-video-icon {
|
7349 |
+
cursor: pointer;
|
7350 |
+
}
|
7351 |
+
|
7352 |
+
.pa-gallery-img-container iframe,
|
7353 |
+
.pa-gallery-img-container video {
|
7354 |
+
position: absolute;
|
7355 |
+
visibility: hidden;
|
7356 |
+
top: 0;
|
7357 |
+
right: 0;
|
7358 |
+
max-width: 100%;
|
7359 |
+
width: 100%;
|
7360 |
+
height: 100%;
|
7361 |
+
margin: 0;
|
7362 |
+
line-height: 1;
|
7363 |
+
border: none;
|
7364 |
+
}
|
7365 |
+
|
7366 |
+
.pa-gallery-img-container video {
|
7367 |
+
-o-object-fit: contain;
|
7368 |
+
object-fit: contain;
|
7369 |
+
}
|
7370 |
+
|
7371 |
+
.pa-gallery-icons-inner-container svg,
|
7372 |
+
.pa-gallery-icons-caption-cell svg {
|
7373 |
+
width: 14px;
|
7374 |
+
height: 14px;
|
7375 |
+
}
|
7376 |
+
|
7377 |
+
.premium-gallery-gradient-layer {
|
7378 |
+
position: absolute;
|
7379 |
+
bottom: 40px;
|
7380 |
+
width: 100%;
|
7381 |
+
height: 20px;
|
7382 |
+
background: -webkit-gradient(linear, left bottom, left top, from(#17181f), to(rgba(255, 255, 255, 0)));
|
7383 |
+
background: -webkit-linear-gradient(bottom, #17181f 0%, rgba(255, 255, 255, 0) 100%);
|
7384 |
+
background: linear-gradient(to top, #17181f 0%, rgba(255, 255, 255, 0) 100%);
|
7385 |
+
}
|
7386 |
+
|
7387 |
+
@-webkit-keyframes spin {
|
7388 |
+
0% {
|
7389 |
+
-webkit-transform: rotate(0deg);
|
7390 |
+
}
|
7391 |
+
|
7392 |
+
100% {
|
7393 |
+
-webkit-transform: rotate(-360deg);
|
7394 |
+
}
|
7395 |
+
}
|
7396 |
+
|
7397 |
+
@keyframes spin {
|
7398 |
+
0% {
|
7399 |
+
-webkit-transform: rotate(0deg);
|
7400 |
+
transform: rotate(0deg);
|
7401 |
+
}
|
7402 |
+
|
7403 |
+
100% {
|
7404 |
+
-webkit-transform: rotate(-360deg);
|
7405 |
+
transform: rotate(-360deg);
|
7406 |
+
}
|
7407 |
+
}
|
7408 |
+
|
7409 |
+
/************ Premium Vertical Scroll ************/
|
7410 |
+
/*************************************************/
|
7411 |
+
.premium-vscroll-inner {
|
7412 |
+
position: relative;
|
7413 |
+
/* overflow: hidden;
|
7414 |
+
*/
|
7415 |
+
min-height: 100%;
|
7416 |
+
}
|
7417 |
+
|
7418 |
+
.premium-vscroll-inner .premium-vscroll-dots {
|
7419 |
+
position: fixed;
|
7420 |
+
z-index: 100;
|
7421 |
+
opacity: 1;
|
7422 |
+
margin-top: -32px;
|
7423 |
+
-webkit-transition: all 0.3s ease-in-out;
|
7424 |
+
transition: all 0.3s ease-in-out;
|
7425 |
+
}
|
7426 |
+
|
7427 |
+
.premium-vscroll-wrap .premium-vscroll-nav-menu {
|
7428 |
+
opacity: 1;
|
7429 |
+
-webkit-transition: all 0.3s ease-in-out;
|
7430 |
+
transition: all 0.3s ease-in-out;
|
7431 |
+
}
|
7432 |
+
|
7433 |
+
.premium-vscroll-inner .premium-vscroll-dots,
|
7434 |
+
.premium-vscroll-wrap .premium-vscroll-dots-hide {
|
7435 |
+
opacity: 0;
|
7436 |
+
visibility: hidden;
|
7437 |
+
}
|
7438 |
+
|
7439 |
+
.premium-vscroll-nav-dots-yes .premium-vscroll-inner .premium-vscroll-dots {
|
7440 |
+
opacity: 1;
|
7441 |
+
visibility: visible;
|
7442 |
+
}
|
7443 |
+
|
7444 |
+
.premium-vscroll-dots.middle {
|
7445 |
+
top: 50%;
|
7446 |
+
}
|
7447 |
+
|
7448 |
+
.premium-vscroll-dots.top {
|
7449 |
+
top: 40px;
|
7450 |
+
}
|
7451 |
+
|
7452 |
+
.premium-vscroll-dots.bottom {
|
7453 |
+
bottom: 30px;
|
7454 |
+
}
|
7455 |
+
|
7456 |
+
.premium-vscroll-dots.right {
|
7457 |
+
left: 17px;
|
7458 |
+
}
|
7459 |
+
|
7460 |
+
.premium-vscroll-dots.left {
|
7461 |
+
right: 17px;
|
7462 |
+
}
|
7463 |
+
|
7464 |
+
.premium-vscroll-inner ul.premium-vscroll-dots-list,
|
7465 |
+
.premium-vscroll-wrap .premium-vscroll-nav-menu {
|
7466 |
+
margin: 0 !important;
|
7467 |
+
padding: 0;
|
7468 |
+
}
|
7469 |
+
|
7470 |
+
.premium-vscroll-inner ul.premium-vscroll-dots-list li {
|
7471 |
+
width: 14px;
|
7472 |
+
height: 13px;
|
7473 |
+
margin: 7px;
|
7474 |
+
position: relative;
|
7475 |
+
display: -webkit-box;
|
7476 |
+
display: -webkit-flex;
|
7477 |
+
display: -ms-flexbox;
|
7478 |
+
-js-display: flex;
|
7479 |
+
display: -moz-box;
|
7480 |
+
display: flex;
|
7481 |
+
-webkit-box-pack: center;
|
7482 |
+
-ms-flex-pack: center;
|
7483 |
+
-webkit-justify-content: center;
|
7484 |
+
-moz-box-pack: center;
|
7485 |
+
justify-content: center;
|
7486 |
+
-webkit-box-align: center;
|
7487 |
+
-ms-flex-align: center;
|
7488 |
+
-webkit-align-items: center;
|
7489 |
+
-moz-box-align: center;
|
7490 |
+
align-items: center;
|
7491 |
+
overflow: visible;
|
7492 |
+
}
|
7493 |
+
|
7494 |
+
.premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link {
|
7495 |
+
display: block;
|
7496 |
+
position: relative;
|
7497 |
+
z-index: 1;
|
7498 |
+
width: 100%;
|
7499 |
+
height: 100%;
|
7500 |
+
cursor: pointer;
|
7501 |
+
text-decoration: none;
|
7502 |
+
}
|
7503 |
+
|
7504 |
+
.premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link span {
|
7505 |
+
top: 2px;
|
7506 |
+
right: 2.5px;
|
7507 |
+
width: 8px;
|
7508 |
+
height: 8px;
|
7509 |
+
border: 1px solid #000;
|
7510 |
+
-webkit-border-radius: 50%;
|
7511 |
+
border-radius: 50%;
|
7512 |
+
position: absolute;
|
7513 |
+
z-index: 1;
|
7514 |
+
-webkit-transition: all 0.3s ease-in-out;
|
7515 |
+
transition: all 0.3s ease-in-out;
|
7516 |
+
}
|
7517 |
+
|
7518 |
+
.premium-vscroll-inner .premium-vscroll-dot-item.active .premium-vscroll-nav-link span {
|
7519 |
+
-webkit-transform: scale(1.6);
|
7520 |
+
-ms-transform: scale(1.6);
|
7521 |
+
transform: scale(1.6);
|
7522 |
+
}
|
7523 |
+
|
7524 |
+
.premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-tooltip {
|
7525 |
+
position: absolute;
|
7526 |
+
color: #fff;
|
7527 |
+
font-size: 14px;
|
7528 |
+
font-family: arial, helvetica, sans-serif;
|
7529 |
+
white-space: nowrap;
|
7530 |
+
max-width: 220px;
|
7531 |
+
padding-right: 0.4em;
|
7532 |
+
padding-left: 0.4em;
|
7533 |
+
}
|
7534 |
+
|
7535 |
+
.premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip {
|
7536 |
+
left: 27px;
|
7537 |
+
}
|
7538 |
+
|
7539 |
+
/* * Lines */
|
7540 |
+
.premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item {
|
7541 |
+
width: 4px;
|
7542 |
+
height: 30px;
|
7543 |
+
}
|
7544 |
+
|
7545 |
+
.premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item span {
|
7546 |
+
width: 100%;
|
7547 |
+
height: 100%;
|
7548 |
+
-webkit-border-radius: 0;
|
7549 |
+
border-radius: 0;
|
7550 |
+
}
|
7551 |
+
|
7552 |
+
.premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item.active span {
|
7553 |
+
-webkit-transform: scale(1);
|
7554 |
+
-ms-transform: scale(1);
|
7555 |
+
transform: scale(1);
|
7556 |
+
}
|
7557 |
+
|
7558 |
+
@media (max-width: 768px) {
|
7559 |
+
.premium-vscroll-dots.right {
|
7560 |
+
left: 7px;
|
7561 |
+
}
|
7562 |
+
|
7563 |
+
.premium-vscroll-dots.left {
|
7564 |
+
right: 7px;
|
7565 |
+
}
|
7566 |
+
}
|
7567 |
+
|
7568 |
+
.premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip::after {
|
7569 |
+
position: absolute;
|
7570 |
+
top: 50%;
|
7571 |
+
content: "";
|
7572 |
+
right: -webkit-calc(100% - 1px);
|
7573 |
+
right: calc(100% - 1px);
|
7574 |
+
width: 10px;
|
7575 |
+
height: 0;
|
7576 |
+
border-top: 6px solid transparent;
|
7577 |
+
border-bottom: 6px solid transparent;
|
7578 |
+
border-right: 6px solid;
|
7579 |
+
-webkit-transform: translateY(-50%);
|
7580 |
+
-ms-transform: translateY(-50%);
|
7581 |
+
transform: translateY(-50%);
|
7582 |
+
}
|
7583 |
+
|
7584 |
+
.premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip::after {
|
7585 |
+
position: absolute;
|
7586 |
+
top: 50%;
|
7587 |
+
content: "";
|
7588 |
+
left: -webkit-calc(100% - 1px);
|
7589 |
+
left: calc(100% - 1px);
|
7590 |
+
width: 10px;
|
7591 |
+
height: 0;
|
7592 |
+
border-top: 6px solid transparent;
|
7593 |
+
border-bottom: 6px solid transparent;
|
7594 |
+
border-left: 6px solid;
|
7595 |
+
-webkit-transform: translateY(-50%);
|
7596 |
+
-ms-transform: translateY(-50%);
|
7597 |
+
transform: translateY(-50%);
|
7598 |
+
}
|
7599 |
+
|
7600 |
+
.premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip {
|
7601 |
+
right: 27px;
|
7602 |
+
}
|
7603 |
+
|
7604 |
+
.premium-vscroll-nav-menu {
|
7605 |
+
position: fixed;
|
7606 |
+
top: 20px;
|
7607 |
+
height: 40px;
|
7608 |
+
z-index: 100;
|
7609 |
+
padding: 0;
|
7610 |
+
margin: 0;
|
7611 |
+
}
|
7612 |
+
|
7613 |
+
.premium-vscroll-nav-menu.left {
|
7614 |
+
right: 0;
|
7615 |
+
}
|
7616 |
+
|
7617 |
+
.premium-vscroll-nav-menu.right {
|
7618 |
+
left: 0;
|
7619 |
+
}
|
7620 |
+
|
7621 |
+
.premium-vscroll-nav-menu .premium-vscroll-nav-item {
|
7622 |
+
display: inline-block;
|
7623 |
+
margin: 10px;
|
7624 |
+
color: #000;
|
7625 |
+
background: #fff;
|
7626 |
+
background: rgba(255, 255, 255, 0.3);
|
7627 |
+
}
|
7628 |
+
|
7629 |
+
.premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link {
|
7630 |
+
padding: 9px 18px;
|
7631 |
+
display: block;
|
7632 |
+
cursor: pointer;
|
7633 |
+
}
|
7634 |
+
|
7635 |
+
.premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link,
|
7636 |
+
.premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:hover {
|
7637 |
+
color: #000;
|
7638 |
+
}
|
7639 |
+
|
7640 |
+
.premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:focus,
|
7641 |
+
.multiscroll-nav li a:focus {
|
7642 |
+
outline: none;
|
7643 |
+
}
|
7644 |
+
|
7645 |
+
.premium-vscroll-temp .slimScrollBar {
|
7646 |
+
visibility: hidden;
|
7647 |
+
}
|
7648 |
+
|
7649 |
+
/************ Premium Image Scroll ***************/
|
7650 |
+
/*************************************************/
|
7651 |
+
.premium-image-scroll-section,
|
7652 |
+
.premium-image-scroll-container {
|
7653 |
+
-webkit-transition: all 0.3s ease-in-out;
|
7654 |
+
transition: all 0.3s ease-in-out;
|
7655 |
+
}
|
7656 |
+
|
7657 |
+
.premium-image-scroll-section {
|
7658 |
+
position: relative;
|
7659 |
+
overflow: hidden;
|
7660 |
+
width: 100%;
|
7661 |
+
-webkit-mask-image: -webkit-radial-gradient(white, black);
|
7662 |
+
}
|
7663 |
+
|
7664 |
+
.premium-image-scroll-container {
|
7665 |
+
width: 100%;
|
7666 |
+
}
|
7667 |
+
|
7668 |
+
.premium-image-scroll-container .premium-image-scroll-mask-media {
|
7669 |
+
-webkit-mask-repeat: no-repeat;
|
7670 |
+
mask-repeat: no-repeat;
|
7671 |
+
-webkit-mask-position: center;
|
7672 |
+
mask-position: center;
|
7673 |
+
}
|
7674 |
+
|
7675 |
+
.premium-container-scroll {
|
7676 |
+
overflow: auto;
|
7677 |
+
}
|
7678 |
+
|
7679 |
+
.premium-image-scroll-container .premium-image-scroll-horizontal {
|
7680 |
+
position: relative;
|
7681 |
+
width: 100%;
|
7682 |
+
height: 100%;
|
7683 |
+
}
|
7684 |
+
|
7685 |
+
.premium-image-scroll-container .premium-image-scroll-horizontal img {
|
7686 |
+
max-width: none;
|
7687 |
+
height: 100%;
|
7688 |
+
}
|
7689 |
+
|
7690 |
+
.premium-image-scroll-container .premium-image-scroll-vertical img {
|
7691 |
+
width: 100%;
|
7692 |
+
max-width: 100%;
|
7693 |
+
height: auto;
|
7694 |
+
}
|
7695 |
+
|
7696 |
+
.premium-image-scroll-ver {
|
7697 |
+
position: relative;
|
7698 |
+
}
|
7699 |
+
|
7700 |
+
.premium-image-scroll-container .premium-image-scroll-overlay {
|
7701 |
+
background: rgba(2, 2, 2, 0.3);
|
7702 |
+
}
|
7703 |
+
|
7704 |
+
.premium-image-scroll-container .premium-image-scroll-link,
|
7705 |
+
.premium-image-scroll-container .premium-image-scroll-overlay {
|
7706 |
+
position: absolute;
|
7707 |
+
top: 0;
|
7708 |
+
bottom: 0;
|
7709 |
+
right: 0;
|
7710 |
+
left: 0;
|
7711 |
+
z-index: 4;
|
7712 |
+
}
|
7713 |
+
|
7714 |
+
.premium-image-scroll-content {
|
7715 |
+
display: inline-block;
|
7716 |
+
position: absolute;
|
7717 |
+
height: auto;
|
7718 |
+
top: 50%;
|
7719 |
+
right: 50%;
|
7720 |
+
text-align: center;
|
7721 |
+
z-index: 5;
|
7722 |
+
-webkit-transform: translate(50%, -50%);
|
7723 |
+
-ms-transform: translate(50%, -50%);
|
7724 |
+
transform: translate(50%, -50%);
|
7725 |
+
}
|
7726 |
+
|
7727 |
+
.premium-container-scroll-instant .premium-image-scroll-image {
|
7728 |
+
-webkit-transition: all 0s ease-in-out !important;
|
7729 |
+
transition: all 0s ease-in-out !important;
|
7730 |
+
}
|
7731 |
+
|
7732 |
+
.premium-image-scroll-container img {
|
7733 |
+
-webkit-transition: -webkit-transform 3s ease-in-out;
|
7734 |
+
transition: -webkit-transform 3s ease-in-out;
|
7735 |
+
transition: transform 3s ease-in-out;
|
7736 |
+
transition: transform 3s ease-in-out, -webkit-transform 3s ease-in-out;
|
7737 |
+
}
|
7738 |
+
|
7739 |
+
.premium-image-scroll-container .premium-image-scroll-overlay,
|
7740 |
+
.premium-image-scroll-container .premium-image-scroll-content {
|
7741 |
+
-webkit-transition: all 0.3s ease-in-out;
|
7742 |
+
transition: all 0.3s ease-in-out;
|
7743 |
+
opacity: 1;
|
7744 |
+
}
|
7745 |
+
|
7746 |
+
.premium-image-scroll-container:hover .premium-image-scroll-overlay {
|
7747 |
+
opacity: 0;
|
7748 |
+
}
|
7749 |
+
|
7750 |
+
.premium-image-scroll-container:hover .premium-image-scroll-content {
|
7751 |
+
opacity: 0;
|
7752 |
+
visibility: hidden;
|
7753 |
+
}
|
7754 |
+
|
7755 |
+
.premium-image-scroll-content .premium-image-scroll-icon {
|
7756 |
+
display: inline-block;
|
7757 |
+
font-family: "pa-elements" !important;
|
7758 |
+
speak: none;
|
7759 |
+
font-style: normal;
|
7760 |
+
font-weight: normal;
|
7761 |
+
font-variant: normal;
|
7762 |
+
text-transform: none;
|
7763 |
+
line-height: 1;
|
7764 |
+
-webkit-font-smoothing: antialiased;
|
7765 |
+
-moz-osx-font-smoothing: grayscale;
|
7766 |
+
-webkit-animation-duration: 0.5s;
|
7767 |
+
animation-duration: 0.5s;
|
7768 |
+
-webkit-animation-iteration-count: infinite;
|
7769 |
+
animation-iteration-count: infinite;
|
7770 |
+
-webkit-animation-direction: alternate;
|
7771 |
+
animation-direction: alternate;
|
7772 |
+
-webkit-animation-timing-function: ease-in-out;
|
7773 |
+
animation-timing-function: ease-in-out;
|
7774 |
+
}
|
7775 |
+
|
7776 |
+
.pa-horizontal-mouse-scroll:before {
|
7777 |
+
content: "\e917";
|
7778 |
+
}
|
7779 |
+
|
7780 |
+
.pa-vertical-mouse-scroll:before {
|
7781 |
+
content: "\e918";
|
7782 |
+
}
|
7783 |
+
|
7784 |
+
.pa-horizontal-mouse-scroll {
|
7785 |
+
-webkit-animation-name: pa-scroll-horizontal;
|
7786 |
+
animation-name: pa-scroll-horizontal;
|
7787 |
+
}
|
7788 |
+
|
7789 |
+
.pa-vertical-mouse-scroll {
|
7790 |
+
-webkit-animation-name: pa-scroll-vertical;
|
7791 |
+
animation-name: pa-scroll-vertical;
|
7792 |
+
}
|
7793 |
+
|
7794 |
+
@-webkit-keyframes pa-scroll-vertical {
|
7795 |
+
0% {
|
7796 |
+
-webkit-transform: translateY(0px);
|
7797 |
+
transform: translateY(0px);
|
7798 |
+
}
|
7799 |
+
|
7800 |
+
100% {
|
7801 |
+
-webkit-transform: translateY(5px);
|
7802 |
+
transform: translateY(5px);
|
7803 |
+
}
|
7804 |
+
}
|
7805 |
+
|
7806 |
+
@keyframes pa-scroll-vertical {
|
7807 |
+
0% {
|
7808 |
+
-webkit-transform: translateY(0px);
|
7809 |
+
transform: translateY(0px);
|
7810 |
+
}
|
7811 |
+
|
7812 |
+
100% {
|
7813 |
+
-webkit-transform: translateY(5px);
|
7814 |
+
transform: translateY(5px);
|
7815 |
+
}
|
7816 |
+
}
|
7817 |
+
|
7818 |
+
@-webkit-keyframes pa-scroll-horizontal {
|
7819 |
+
0% {
|
7820 |
+
-webkit-transform: translateX(0px);
|
7821 |
+
transform: translateX(0px);
|
7822 |
+
}
|
7823 |
+
|
7824 |
+
100% {
|
7825 |
+
-webkit-transform: translateX(-5px);
|
7826 |
+
transform: translateX(-5px);
|
7827 |
+
}
|
7828 |
+
}
|
7829 |
+
|
7830 |
+
@keyframes pa-scroll-horizontal {
|
7831 |
+
0% {
|
7832 |
+
-webkit-transform: translateX(0px);
|
7833 |
+
transform: translateX(0px);
|
7834 |
+
}
|
7835 |
+
|
7836 |
+
100% {
|
7837 |
+
-webkit-transform: translateX(-5px);
|
7838 |
+
transform: translateX(-5px);
|
7839 |
+
}
|
7840 |
+
}
|
7841 |
+
|
7842 |
+
/********* Premium Lottie Animations **********/
|
7843 |
+
/**********************************************/
|
7844 |
+
.premium-lottie-wrap .premium-lottie-animation {
|
7845 |
+
position: relative;
|
7846 |
+
-js-display: inline-flex;
|
7847 |
+
display: -webkit-inline-box;
|
7848 |
+
display: -webkit-inline-flex;
|
7849 |
+
display: -moz-inline-box;
|
7850 |
+
display: -ms-inline-flexbox;
|
7851 |
+
display: inline-flex;
|
7852 |
+
-webkit-transition: all 0.3s ease-in-out;
|
7853 |
+
transition: all 0.3s ease-in-out;
|
7854 |
+
}
|
7855 |
+
|
7856 |
+
.premium-lottie-wrap .premium-lottie-animation a {
|
7857 |
+
position: absolute;
|
7858 |
+
left: 0;
|
7859 |
+
top: 0;
|
7860 |
+
width: 100%;
|
7861 |
+
height: 100%;
|
7862 |
+
}
|
7863 |
+
|
7864 |
+
/**************** Premium Bullet List *****************/
|
7865 |
+
/******************************************************/
|
7866 |
+
.premium-icon-list-box {
|
7867 |
+
-js-display: flex;
|
7868 |
+
display: -webkit-box;
|
7869 |
+
display: -webkit-flex;
|
7870 |
+
display: -moz-box;
|
7871 |
+
display: -ms-flexbox;
|
7872 |
+
display: flex;
|
7873 |
+
-webkit-flex-wrap: wrap;
|
7874 |
+
-ms-flex-wrap: wrap;
|
7875 |
+
flex-wrap: wrap;
|
7876 |
+
-webkit-box-orient: vertical;
|
7877 |
+
-webkit-box-direction: normal;
|
7878 |
+
-webkit-flex-direction: column;
|
7879 |
+
-moz-box-orient: vertical;
|
7880 |
+
-moz-box-direction: normal;
|
7881 |
+
-ms-flex-direction: column;
|
7882 |
+
flex-direction: column;
|
7883 |
+
}
|
7884 |
+
|
7885 |
+
.premium-icon-list-box .premium-icon-list-content-grow-lc {
|
7886 |
+
-webkit-transform-origin: right center;
|
7887 |
+
-ms-transform-origin: right center;
|
7888 |
+
transform-origin: right center;
|
7889 |
+
}
|
7890 |
+
|
7891 |
+
.premium-icon-list-box .premium-icon-list-content-grow-rc {
|
7892 |
+
-webkit-transform-origin: left center;
|
7893 |
+
-ms-transform-origin: left center;
|
7894 |
+
transform-origin: left center;
|
7895 |
+
}
|
7896 |
+
|
7897 |
+
.premium-icon-list-box .premium-icon-list-content-grow-cc {
|
7898 |
+
-webkit-transform-origin: center center;
|
7899 |
+
-ms-transform-origin: center center;
|
7900 |
+
transform-origin: center center;
|
7901 |
+
}
|
7902 |
+
|
7903 |
+
.premium-icon-list-content {
|
7904 |
+
-js-display: flex;
|
7905 |
+
display: -webkit-box;
|
7906 |
+
display: -webkit-flex;
|
7907 |
+
display: -moz-box;
|
7908 |
+
display: -ms-flexbox;
|
7909 |
+
display: flex;
|
7910 |
+
-webkit-transition: all 0.3s ease-in-out;
|
7911 |
+
transition: all 0.3s ease-in-out;
|
7912 |
+
width: auto;
|
7913 |
+
position: relative;
|
7914 |
+
}
|
7915 |
+
|
7916 |
+
.premium-icon-list-content .premium-icon-list-text span,
|
7917 |
+
.premium-icon-list-content .premium-icon-list-wrapper {
|
7918 |
+
display: inline-block;
|
7919 |
+
-webkit-align-self: center;
|
7920 |
+
-ms-flex-item-align: center;
|
7921 |
+
align-self: center;
|
7922 |
+
-webkit-transition: all 0.3s ease-in-out;
|
7923 |
+
transition: all 0.3s ease-in-out;
|
7924 |
+
}
|
7925 |
+
|
7926 |
+
.premium-icon-list-content .premium-icon-list-text span {
|
7927 |
+
margin: 0 5px;
|
7928 |
+
}
|
7929 |
+
|
7930 |
+
.premium-icon-list-content .premium-icon-list-icon-text p {
|
7931 |
+
font-size: 18px;
|
7932 |
+
background-color: #eee;
|
7933 |
+
padding: 1px 5px;
|
7934 |
+
-webkit-border-radius: 2px;
|
7935 |
+
border-radius: 2px;
|
7936 |
+
}
|
7937 |
+
|
7938 |
+
.premium-icon-list-content .premium-icon-list-text span,
|
7939 |
+
.premium-icon-list-content .premium-icon-list-icon-text p,
|
7940 |
+
.premium-icon-list-content .premium-icon-list-wrapper img,
|
7941 |
+
.premium-icon-list-content .premium-icon-list-wrapper svg,
|
7942 |
+
.premium-icon-list-content .premium-icon-list-wrapper i {
|
7943 |
+
-webkit-transition: all 0.3s ease-in-out;
|
7944 |
+
transition: all 0.3s ease-in-out;
|
7945 |
+
}
|
7946 |
+
|
7947 |
+
.premium-icon-list-content .premium-icon-list-wrapper {
|
7948 |
+
position: relative;
|
7949 |
+
line-height: 0;
|
7950 |
+
}
|
7951 |
+
|
7952 |
+
.premium-icon-list-content .premium-icon-list-wrapper img,
|
7953 |
+
.premium-icon-list-content .premium-icon-list-wrapper .premium-lottie-animation svg {
|
7954 |
+
width: 30px !important;
|
7955 |
+
height: 30px !important;
|
7956 |
+
position: relative;
|
7957 |
+
z-index: 500;
|
7958 |
+
}
|
7959 |
+
|
7960 |
+
.premium-icon-list-content .premium-icon-list-wrapper i,
|
7961 |
+
.premium-icon-list-content .premium-icon-list-wrapper .premium-icon-list-icon-text {
|
7962 |
+
position: relative;
|
7963 |
+
z-index: 500;
|
7964 |
+
}
|
7965 |
+
|
7966 |
+
.premium-icon-list-content .premium-icon-list-link {
|
7967 |
+
position: absolute;
|
7968 |
+
top: 0;
|
7969 |
+
right: 0;
|
7970 |
+
width: 100%;
|
7971 |
+
height: 100%;
|
7972 |
+
z-index: 1000;
|
7973 |
+
}
|
7974 |
+
|
7975 |
+
.premium-icon-list-content:not(:last-of-type) .premium-icon-list-connector {
|
7976 |
+
width: 100%;
|
7977 |
+
height: 100%;
|
7978 |
+
position: absolute;
|
7979 |
+
top: 0.5em;
|
7980 |
+
z-index: 100;
|
7981 |
+
-js-display: flex;
|
7982 |
+
display: -webkit-box;
|
7983 |
+
display: -webkit-flex;
|
7984 |
+
display: -moz-box;
|
7985 |
+
display: -ms-flexbox;
|
7986 |
+
display: flex;
|
7987 |
+
-webkit-box-pack: center;
|
7988 |
+
-webkit-justify-content: center;
|
7989 |
+
-moz-box-pack: center;
|
7990 |
+
-ms-flex-pack: center;
|
7991 |
+
justify-content: center;
|
7992 |
+
}
|
7993 |
+
|
7994 |
+
.premium-icon-list-content:not(:last-of-type) .premium-icon-list-connector .premium-icon-connector-content:after {
|
7995 |
+
content: "";
|
7996 |
+
border-left-width: 1px;
|
7997 |
+
border-left-style: solid;
|
7998 |
+
border-color: #333333;
|
7999 |
+
display: block;
|
8000 |
+
height: 100%;
|
8001 |
+
}
|
8002 |
+
|
8003 |
+
li.premium-icon-list-content.premium-icon-list-content-inline {
|
8004 |
+
-webkit-align-self: center;
|
8005 |
+
-ms-flex-item-align: center;
|
8006 |
+
align-self: center;
|
8007 |
+
z-index: 2;
|
8008 |
+
}
|
8009 |
+
|
8010 |
+
li.premium-icon-list-content.premium-icon-list-content-inline:not(:first-child) {
|
8011 |
+
margin: 0 3px;
|
8012 |
+
}
|
8013 |
+
|
8014 |
+
li.premium-icon-list-content.premium-icon-list-content-inline:first-child {
|
8015 |
+
margin: 0 0 0 3px;
|
8016 |
+
}
|
8017 |
+
|
8018 |
+
.premium-icon-list-divider:not(:last-child) {
|
8019 |
+
width: 100%;
|
8020 |
+
-webkit-box-flex: 0;
|
8021 |
+
-webkit-flex: 0 0 100%;
|
8022 |
+
-moz-box-flex: 0;
|
8023 |
+
-ms-flex: 0 0 100%;
|
8024 |
+
flex: 0 0 100%;
|
8025 |
+
overflow: hidden;
|
8026 |
+
}
|
8027 |
+
|
8028 |
+
.premium-icon-list-divider:not(:last-child):after {
|
8029 |
+
content: "";
|
8030 |
+
display: block;
|
8031 |
+
border-top-style: solid;
|
8032 |
+
border-top-width: 1px;
|
8033 |
+
}
|
8034 |
+
|
8035 |
+
.premium-icon-list-divider-inline:not(:last-child) {
|
8036 |
+
float: left;
|
8037 |
+
display: inline-block;
|
8038 |
+
position: relative;
|
8039 |
+
height: 100%;
|
8040 |
+
overflow: hidden;
|
8041 |
+
-webkit-align-self: center;
|
8042 |
+
-ms-flex-item-align: center;
|
8043 |
+
align-self: center;
|
8044 |
+
margin: 0 3px;
|
8045 |
+
}
|
8046 |
+
|
8047 |
+
.premium-icon-list-divider-inline:not(:last-child):after {
|
8048 |
+
content: "";
|
8049 |
+
display: block;
|
8050 |
+
border-right-width: 1px;
|
8051 |
+
height: 33px;
|
8052 |
+
border-right-style: solid;
|
8053 |
+
}
|
8054 |
+
|
8055 |
+
.premium-icon-list-icon-text {
|
8056 |
+
line-height: 1.5;
|
8057 |
+
}
|
8058 |
+
|
8059 |
+
.premium-icon-list-icon-text p,
|
8060 |
+
ul.premium-icon-list-box,
|
8061 |
+
li.premium-icon-list-content {
|
8062 |
+
margin: 0;
|
8063 |
+
}
|
8064 |
+
|
8065 |
+
.premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-wrapper i,
|
8066 |
+
.premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-text span,
|
8067 |
+
.premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-icon-text p {
|
8068 |
+
color: transparent !important;
|
8069 |
+
text-shadow: 0 0 3px #aaa;
|
8070 |
+
}
|
8071 |
+
|
8072 |
+
.premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-connector-content,
|
8073 |
+
.premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-wrapper .premium-lottie-animation svg,
|
8074 |
+
.premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-wrapper img,
|
8075 |
+
.premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-badge {
|
8076 |
+
-webkit-filter: blur(3px);
|
8077 |
+
filter: blur(3px);
|
8078 |
+
}
|
8079 |
+
|
8080 |
+
.premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-wrapper i,
|
8081 |
+
.premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-text span,
|
8082 |
+
.premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-icon-text p {
|
8083 |
+
color: #aaa !important;
|
8084 |
+
text-shadow: 0 0px 0 transparent;
|
8085 |
+
}
|
8086 |
+
|
8087 |
+
.premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-connector-content,
|
8088 |
+
.premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-wrapper .premium-lottie-animation svg,
|
8089 |
+
.premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-wrapper img,
|
8090 |
+
.premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-badge {
|
8091 |
+
-webkit-filter: none;
|
8092 |
+
filter: none;
|
8093 |
+
}
|
8094 |
+
|
8095 |
+
.premium-icon-list-content .premium-icon-list-badge {
|
8096 |
+
font-size: 11px;
|
8097 |
+
top: auto;
|
8098 |
+
min-width: -webkit-max-content;
|
8099 |
+
min-width: -moz-max-content;
|
8100 |
+
min-width: max-content;
|
8101 |
+
height: -webkit-fit-content;
|
8102 |
+
height: -moz-fit-content;
|
8103 |
+
height: fit-content;
|
8104 |
+
}
|
8105 |
+
|
8106 |
+
.premium-icon-list-content .premium-icon-list-icon-text p {
|
8107 |
+
font-size: 13px;
|
8108 |
+
}
|
8109 |
+
|
8110 |
+
.premium-icon-list-gradient-effect[data-text] {
|
8111 |
+
display: inline-block;
|
8112 |
+
position: relative;
|
8113 |
+
text-decoration: none;
|
8114 |
+
}
|
8115 |
+
|
8116 |
+
.premium-icon-list-gradient-effect[data-text]::before {
|
8117 |
+
content: attr(data-text);
|
8118 |
+
position: absolute;
|
8119 |
+
z-index: 1;
|
8120 |
+
overflow: hidden;
|
8121 |
+
-webkit-clip-path: polygon(100% 100%, 100% 100%, 50% 50%);
|
8122 |
+
clip-path: polygon(100% 100%, 100% 100%, 50% 50%);
|
8123 |
+
-webkit-background-clip: text;
|
8124 |
+
background-clip: text;
|
8125 |
+
-webkit-text-fill-color: transparent;
|
8126 |
+
-webkit-transition: all 0.4s ease;
|
8127 |
+
transition: all 0.4s ease;
|
8128 |
+
}
|
8129 |
+
|
8130 |
+
.premium-icon-list-content:hover .premium-icon-list-gradient-effect[data-text]::before,
|
8131 |
+
.premium-icon-list-content:focus .premium-icon-list-gradient-effect[data-text]::before {
|
8132 |
+
-webkit-animation: rtlgradient 1s forwards;
|
8133 |
+
animation: rtlgradient 1s forwards;
|
8134 |
+
}
|
8135 |
+
|
8136 |
+
@-webkit-keyframes rtlgradient {
|
8137 |
+
0% {
|
8138 |
+
-webkit-clip-path: circle(0% at 150% 50%);
|
8139 |
+
clip-path: circle(0% at 150% 50%);
|
8140 |
+
}
|
8141 |
+
|
8142 |
+
100% {
|
8143 |
+
-webkit-clip-path: circle(100% at 50% 50%);
|
8144 |
+
clip-path: circle(100% at 50% 50%);
|
8145 |
+
}
|
8146 |
+
}
|
8147 |
+
|
8148 |
+
@keyframes rtlgradient {
|
8149 |
+
0% {
|
8150 |
+
-webkit-clip-path: circle(0% at 150% 50%);
|
8151 |
+
clip-path: circle(0% at 150% 50%);
|
8152 |
+
}
|
8153 |
+
|
8154 |
+
100% {
|
8155 |
+
-webkit-clip-path: circle(100% at 50% 50%);
|
8156 |
+
clip-path: circle(100% at 50% 50%);
|
8157 |
+
}
|
8158 |
+
}
|
8159 |
+
|
8160 |
+
ul[data-list-animation*="animated-"] .premium-icon-list-divider,
|
8161 |
+
ul[data-list-animation*="animated-"] .premium-icon-list-content,
|
8162 |
+
ul[data-list-animation*="animated-"] .premium-icon-list-divider-inline {
|
8163 |
+
opacity: 0;
|
8164 |
+
}
|
8165 |
+
|
8166 |
+
.premium-icon-list-content-grow-effect:hover {
|
8167 |
+
-webkit-transform: scale(1.07);
|
8168 |
+
-ms-transform: scale(1.07);
|
8169 |
+
transform: scale(1.07);
|
8170 |
}
|
assets/frontend/css/premium-addons.css
CHANGED
@@ -1,6690 +1,6690 @@
|
|
1 |
-
@font-face {
|
2 |
-
font-family: "pa-elements";
|
3 |
-
src: url("../../editor/fonts/pa-elements.eot?p2y7wv");
|
4 |
-
src: url("../../editor/fonts/pa-elements.eot?p2y7wv#iefix") format("embedded-opentype"), url("../../editor/fonts/pa-elements.ttf?p2y7wv") format("truetype"), url("../../editor/fonts/pa-elements.woff?p2y7wv") format("woff"), url("../../editor/fonts/pa-elements.svg?p2y7wv#pa-elements") format("svg");
|
5 |
-
font-weight: normal;
|
6 |
-
font-style: normal; }
|
7 |
-
|
8 |
-
/**************** Premium Banner ****************/
|
9 |
-
/************************************************/
|
10 |
-
.premium-banner {
|
11 |
-
overflow: hidden; }
|
12 |
-
|
13 |
-
.premium-banner-ib {
|
14 |
-
display: block;
|
15 |
-
position: relative;
|
16 |
-
z-index: 1;
|
17 |
-
overflow: hidden;
|
18 |
-
margin: 0;
|
19 |
-
text-align: center;
|
20 |
-
-webkit-box-sizing: border-box;
|
21 |
-
-moz-box-sizing: border-box;
|
22 |
-
box-sizing: border-box; }
|
23 |
-
.premium-banner-ib img {
|
24 |
-
display: block;
|
25 |
-
position: relative; }
|
26 |
-
|
27 |
-
.premium-banner-img-wrap {
|
28 |
-
-js-display: flex;
|
29 |
-
display: -webkit-box;
|
30 |
-
display: -webkit-flex;
|
31 |
-
display: -moz-box;
|
32 |
-
display: -ms-flexbox;
|
33 |
-
display: flex;
|
34 |
-
height: 100%; }
|
35 |
-
.premium-banner-img-wrap .premium-banner-ib-img {
|
36 |
-
-webkit-flex-shrink: 0;
|
37 |
-
-ms-flex-negative: 0;
|
38 |
-
flex-shrink: 0; }
|
39 |
-
|
40 |
-
.premium-banner-ib-desc .premium-banner-read-more {
|
41 |
-
z-index: 100; }
|
42 |
-
|
43 |
-
.elementor-widget-premium-addon-banner .premium-banner-ib-title {
|
44 |
-
background: transparent; }
|
45 |
-
|
46 |
-
.premium-banner-ib *,
|
47 |
-
.premium-banner-ib .premium-banner-ib-desc {
|
48 |
-
-webkit-box-sizing: border-box;
|
49 |
-
-moz-box-sizing: border-box;
|
50 |
-
box-sizing: border-box; }
|
51 |
-
|
52 |
-
.premium-banner-ib img {
|
53 |
-
min-width: 100%;
|
54 |
-
max-width: 100%;
|
55 |
-
-webkit-transition: opacity 0.35s;
|
56 |
-
transition: opacity 0.35s; }
|
57 |
-
|
58 |
-
.premium-banner-ib .premium-banner-ib-desc {
|
59 |
-
padding: 15px;
|
60 |
-
-webkit-backface-visibility: hidden;
|
61 |
-
backface-visibility: hidden;
|
62 |
-
-webkit-box-sizing: border-box;
|
63 |
-
-moz-box-sizing: border-box;
|
64 |
-
box-sizing: border-box;
|
65 |
-
position: absolute;
|
66 |
-
top: 0;
|
67 |
-
left: 0;
|
68 |
-
width: 100%;
|
69 |
-
height: 100%; }
|
70 |
-
|
71 |
-
.premium-banner-ib .premium-banner-ib-link {
|
72 |
-
position: absolute;
|
73 |
-
top: 0;
|
74 |
-
left: 0;
|
75 |
-
width: 100%;
|
76 |
-
height: 100%;
|
77 |
-
z-index: 1000;
|
78 |
-
text-indent: 200%;
|
79 |
-
white-space: nowrap;
|
80 |
-
font-size: 0;
|
81 |
-
opacity: 0; }
|
82 |
-
|
83 |
-
.premium-banner-ib a.premium-banner-ib-link {
|
84 |
-
display: block;
|
85 |
-
background: 0 0; }
|
86 |
-
|
87 |
-
.premium-banner-animation1 img {
|
88 |
-
width: -webkit-calc(100% + 50px) !important;
|
89 |
-
width: calc(100% + 50px) !important;
|
90 |
-
max-width: -webkit-calc(100% + 50px) !important;
|
91 |
-
max-width: calc(100% + 50px) !important;
|
92 |
-
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
93 |
-
transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
94 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s;
|
95 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
96 |
-
-webkit-transform: translate3d(-40px, 0, 0);
|
97 |
-
transform: translate3d(-40px, 0, 0); }
|
98 |
-
|
99 |
-
.premium-banner-animation2 .premium-banner-ib-title {
|
100 |
-
padding: 15px; }
|
101 |
-
|
102 |
-
.premium-banner-animation1 .premium-banner-ib-desc {
|
103 |
-
top: auto;
|
104 |
-
bottom: 0;
|
105 |
-
min-height: 25%;
|
106 |
-
height: auto;
|
107 |
-
max-height: 100%;
|
108 |
-
text-align: left; }
|
109 |
-
|
110 |
-
.premium-banner-animation1 .premium-banner-ib-content,
|
111 |
-
.premium-banner-animation1 .premium-banner-ib-title,
|
112 |
-
.premium-banner-animation1 .premium-banner-read-more {
|
113 |
-
-webkit-transform: translate3d(0, 40px, 0);
|
114 |
-
transform: translate3d(0, 40px, 0);
|
115 |
-
-webkit-transition-delay: 0.05s;
|
116 |
-
transition-delay: 0.05s;
|
117 |
-
-webkit-transition-duration: 0.35s;
|
118 |
-
transition-duration: 0.35s; }
|
119 |
-
|
120 |
-
.premium-banner-animation1 .premium-banner-ib-title {
|
121 |
-
-webkit-transition: -webkit-transform 0.35s;
|
122 |
-
transition: -webkit-transform 0.35s;
|
123 |
-
transition: transform 0.35s;
|
124 |
-
transition: transform 0.35s, -webkit-transform 0.35s; }
|
125 |
-
|
126 |
-
.premium-banner-animation1 .premium-banner-ib-content,
|
127 |
-
.premium-banner-animation1 .premium-banner-read-more {
|
128 |
-
margin-top: 10px;
|
129 |
-
opacity: 0;
|
130 |
-
-webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
|
131 |
-
transition: opacity 0.2s, -webkit-transform 0.35s;
|
132 |
-
transition: opacity 0.2s, transform 0.35s;
|
133 |
-
transition: opacity 0.2s, transform 0.35s, -webkit-transform 0.35s; }
|
134 |
-
|
135 |
-
.premium-banner-animation1:hover .premium-banner-ib-content,
|
136 |
-
.premium-banner-animation1.active .premium-banner-ib-content,
|
137 |
-
.premium-banner-animation1:hover .premium-banner-read-more,
|
138 |
-
.premium-banner-animation1.active .premium-banner-read-more {
|
139 |
-
opacity: 1;
|
140 |
-
-webkit-transition-delay: 0.05s;
|
141 |
-
transition-delay: 0.05s;
|
142 |
-
-webkit-transition-duration: 0.35s;
|
143 |
-
transition-duration: 0.35s; }
|
144 |
-
|
145 |
-
.premium-banner-animation1:hover .premium-banner-ib-content,
|
146 |
-
.premium-banner-animation1.active .premium-banner-ib-content,
|
147 |
-
.premium-banner-animation1:hover .premium-banner-read-more,
|
148 |
-
.premium-banner-animation1.active .premium-banner-read-more,
|
149 |
-
.premium-banner-animation1:hover .premium-banner-ib-title,
|
150 |
-
.premium-banner-animation1.active .premium-banner-ib-title,
|
151 |
-
.premium-banner-animation1:hover img,
|
152 |
-
.premium-banner-animation1.active img {
|
153 |
-
-webkit-transform: translate3d(0, 0, 0);
|
154 |
-
transform: translate3d(0, 0, 0);
|
155 |
-
-webkit-transition-delay: 0.05s;
|
156 |
-
transition-delay: 0.05s;
|
157 |
-
-webkit-transition-duration: 0.35s;
|
158 |
-
transition-duration: 0.35s; }
|
159 |
-
|
160 |
-
.premium-banner-animation1.zoomout img,
|
161 |
-
.premium-banner-animation1.scale img {
|
162 |
-
-webkit-transform: translate3d(-40px, 0, 0) scale(1.1);
|
163 |
-
transform: translate3d(-40px, 0, 0) scale(1.1); }
|
164 |
-
|
165 |
-
.premium-banner-ib.sepia img {
|
166 |
-
-webkit-filter: sepia(30%);
|
167 |
-
filter: sepia(30%); }
|
168 |
-
|
169 |
-
.premium-banner-ib.bright img {
|
170 |
-
-webkit-filter: brightness(1);
|
171 |
-
filter: brightness(1); }
|
172 |
-
|
173 |
-
.premium-banner-ib.sepia:hover img {
|
174 |
-
-webkit-filter: sepia(0%);
|
175 |
-
filter: sepia(0%); }
|
176 |
-
|
177 |
-
.premium-banner-ib.bright:hover img {
|
178 |
-
-webkit-filter: brightness(1.2);
|
179 |
-
filter: brightness(1.2); }
|
180 |
-
|
181 |
-
.premium-banner-animation1.premium-banner-min-height img,
|
182 |
-
.premium-banner-animation2.premium-banner-min-height img,
|
183 |
-
.premium-banner-animation4.premium-banner-min-height img,
|
184 |
-
.premium-banner-animation5.premium-banner-min-height img,
|
185 |
-
.premium-banner-animation6.premium-banner-min-height img,
|
186 |
-
.premium-banner-animation13.premium-banner-min-height img {
|
187 |
-
height: auto; }
|
188 |
-
|
189 |
-
.premium-banner-animation2 img {
|
190 |
-
width: 100%; }
|
191 |
-
|
192 |
-
.premium-banner-animation2 .premium-banner-ib-desc::before {
|
193 |
-
position: absolute;
|
194 |
-
content: "";
|
195 |
-
top: 0;
|
196 |
-
left: 0;
|
197 |
-
width: 100%;
|
198 |
-
height: 100%;
|
199 |
-
opacity: 0;
|
200 |
-
-webkit-transform: translate3d(0, 50%, 0);
|
201 |
-
transform: translate3d(0, 50%, 0); }
|
202 |
-
|
203 |
-
.premium-banner-animation2 .premium-banner-ib-title {
|
204 |
-
position: absolute;
|
205 |
-
top: 50%;
|
206 |
-
left: 0;
|
207 |
-
width: 100%;
|
208 |
-
-webkit-transition: color 0.35s, -webkit-transform 0.35s;
|
209 |
-
transition: color 0.35s, -webkit-transform 0.35s;
|
210 |
-
transition: transform 0.35s, color 0.35s;
|
211 |
-
transition: transform 0.35s, color 0.35s, -webkit-transform 0.35s;
|
212 |
-
-webkit-transform: translate3d(0, -50%, 0);
|
213 |
-
transform: translate3d(0, -50%, 0); }
|
214 |
-
|
215 |
-
.premium-banner-animation2 .premium-banner-ib-content,
|
216 |
-
.premium-banner-animation2 .premium-banner-read-more,
|
217 |
-
.premium-banner-animation2 .premium-banner-ib-desc::before {
|
218 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
219 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
220 |
-
transition: opacity 0.35s, transform 0.35s;
|
221 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
|
222 |
-
|
223 |
-
.premium-banner-animation2 .premium-banner-ib-content,
|
224 |
-
.premium-banner-animation2 .premium-banner-read-more {
|
225 |
-
position: absolute;
|
226 |
-
bottom: 0;
|
227 |
-
left: 0;
|
228 |
-
padding: 15px;
|
229 |
-
width: 100%;
|
230 |
-
max-height: 50%;
|
231 |
-
opacity: 0;
|
232 |
-
-webkit-transform: translate3d(0, 10px, 0);
|
233 |
-
transform: translate3d(0, 10px, 0); }
|
234 |
-
|
235 |
-
.premium-banner-animation2:hover .premium-banner-ib-title,
|
236 |
-
.premium-banner-animation2.active .premium-banner-ib-title {
|
237 |
-
-webkit-transform: translate3d(0, -40px, 0);
|
238 |
-
transform: translate3d(0, -40px, 0); }
|
239 |
-
|
240 |
-
.premium-banner-animation2:hover .premium-banner-read-more,
|
241 |
-
.premium-banner-animation2.active .premium-banner-read-more,
|
242 |
-
.premium-banner-animation2:hover .premium-banner-ib-desc::before,
|
243 |
-
.premium-banner-animation2.active .premium-banner-ib-desc::before {
|
244 |
-
opacity: 1;
|
245 |
-
-webkit-transform: translate3d(0, 0, 0);
|
246 |
-
transform: translate3d(0, 0, 0); }
|
247 |
-
|
248 |
-
.premium-banner-animation2:hover .premium-banner-ib-content,
|
249 |
-
.premium-banner-animation2.active .premium-banner-ib-content {
|
250 |
-
opacity: 1;
|
251 |
-
-webkit-transform: translate3d(0, -30px, 0);
|
252 |
-
transform: translate3d(0, -30px, 0); }
|
253 |
-
|
254 |
-
.premium-banner-animation3 .premium-banner-ib-title {
|
255 |
-
position: absolute;
|
256 |
-
bottom: 0;
|
257 |
-
left: 0;
|
258 |
-
padding: 15px;
|
259 |
-
width: 100%;
|
260 |
-
text-align: left;
|
261 |
-
-webkit-transform: translate3d(0, -30px, 0);
|
262 |
-
transform: translate3d(0, -30px, 0); }
|
263 |
-
|
264 |
-
.premium-banner-animation3 .premium-banner-ib-desc::before,
|
265 |
-
.premium-banner-animation3 .premium-banner-ib-title {
|
266 |
-
-webkit-transition: -webkit-transform 0.35s;
|
267 |
-
transition: -webkit-transform 0.35s;
|
268 |
-
transition: transform 0.35s;
|
269 |
-
transition: transform 0.35s, -webkit-transform 0.35s; }
|
270 |
-
|
271 |
-
.premium-banner-animation3:hover .premium-banner-ib-desc::before,
|
272 |
-
.premium-banner-animation3.active .premium-banner-ib-desc::before,
|
273 |
-
.premium-banner-animation3:hover .premium-banner-ib-title,
|
274 |
-
.premium-banner-animation3.active .premium-banner-ib-title {
|
275 |
-
opacity: 1;
|
276 |
-
-webkit-transform: translate3d(0, 0, 0);
|
277 |
-
transform: translate3d(0, 0, 0); }
|
278 |
-
|
279 |
-
.premium-banner-animation3 .premium-banner-ib-content {
|
280 |
-
max-height: -webkit-calc(100% - 60px - 1.5em);
|
281 |
-
max-height: calc(100% - 60px - 1.5em);
|
282 |
-
overflow: hidden; }
|
283 |
-
|
284 |
-
.premium-banner-animation4 img {
|
285 |
-
width: -webkit-calc(100% + 40px) !important;
|
286 |
-
width: calc(100% + 40px) !important;
|
287 |
-
max-width: -webkit-calc(100% + 40px) !important;
|
288 |
-
max-width: calc(100% + 40px) !important; }
|
289 |
-
|
290 |
-
.premium-banner-animation4 .premium-banner-ib-desc {
|
291 |
-
padding: 30px; }
|
292 |
-
.premium-banner-animation4 .premium-banner-ib-desc::after {
|
293 |
-
position: absolute;
|
294 |
-
content: "";
|
295 |
-
opacity: 0; }
|
296 |
-
.premium-banner-animation4 .premium-banner-ib-desc::before {
|
297 |
-
position: absolute;
|
298 |
-
content: "";
|
299 |
-
opacity: 0;
|
300 |
-
top: 50px;
|
301 |
-
right: 30px;
|
302 |
-
bottom: 50px;
|
303 |
-
left: 30px;
|
304 |
-
border-top: 1px solid #fff;
|
305 |
-
border-bottom: 1px solid #fff;
|
306 |
-
-webkit-transform: scale(0, 1);
|
307 |
-
-ms-transform: scale(0, 1);
|
308 |
-
transform: scale(0, 1);
|
309 |
-
-webkit-transform-origin: 0 0;
|
310 |
-
-ms-transform-origin: 0 0;
|
311 |
-
transform-origin: 0 0; }
|
312 |
-
.premium-banner-animation4 .premium-banner-ib-desc::after {
|
313 |
-
top: 30px;
|
314 |
-
right: 50px;
|
315 |
-
bottom: 30px;
|
316 |
-
left: 50px;
|
317 |
-
border-right: 1px solid #fff;
|
318 |
-
border-left: 1px solid #fff;
|
319 |
-
-webkit-transform: scale(1, 0);
|
320 |
-
-ms-transform: scale(1, 0);
|
321 |
-
transform: scale(1, 0);
|
322 |
-
-webkit-transform-origin: 100% 0;
|
323 |
-
-ms-transform-origin: 100% 0;
|
324 |
-
transform-origin: 100% 0; }
|
325 |
-
|
326 |
-
.premium-banner-animation4 .premium-banner-ib-title {
|
327 |
-
padding: 50px 30px 0 30px;
|
328 |
-
-webkit-transition: -webkit-transform 0.35s;
|
329 |
-
transition: -webkit-transform 0.35s;
|
330 |
-
transition: transform 0.35s;
|
331 |
-
transition: transform 0.35s, -webkit-transform 0.35s; }
|
332 |
-
|
333 |
-
.premium-banner-animation4 .premium-banner-ib-content,
|
334 |
-
.premium-banner-animation4 .premium-banner-read-more {
|
335 |
-
padding: 10px 30px;
|
336 |
-
opacity: 0;
|
337 |
-
overflow: hidden;
|
338 |
-
-webkit-transform: translate3d(0, -10px, 0);
|
339 |
-
transform: translate3d(0, -10px, 0); }
|
340 |
-
|
341 |
-
.premium-banner-animation4 .premium-banner-ib-title,
|
342 |
-
.premium-banner-animation4 img {
|
343 |
-
-webkit-transform: translate3d(-30px, 0, 0);
|
344 |
-
transform: translate3d(-30px, 0, 0); }
|
345 |
-
|
346 |
-
.premium-banner-animation4.zoomout img,
|
347 |
-
.premium-banner-animation4.scale img {
|
348 |
-
-webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
|
349 |
-
transform: translate3d(-30px, 0, 0) scale(1.1); }
|
350 |
-
|
351 |
-
.premium-banner-animation4 .premium-banner-ib-content,
|
352 |
-
.premium-banner-animation4 .premium-banner-read-more {
|
353 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
354 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
355 |
-
transition: opacity 0.35s, transform 0.35s;
|
356 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
|
357 |
-
|
358 |
-
.premium-banner-animation4 .premium-banner-ib-desc::after, .premium-banner-animation4 .premium-banner-ib-desc::before {
|
359 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
360 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
361 |
-
transition: opacity 0.35s, transform 0.35s;
|
362 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
|
363 |
-
|
364 |
-
.premium-banner-animation4 img {
|
365 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
366 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
367 |
-
transition: opacity 0.35s, transform 0.35s;
|
368 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
|
369 |
-
|
370 |
-
.premium-banner-animation4:hover .premium-banner-ib-desc::after,
|
371 |
-
.premium-banner-animation4.active .premium-banner-ib-desc::after,
|
372 |
-
.premium-banner-animation4:hover .premium-banner-ib-desc::before,
|
373 |
-
.premium-banner-animation4.active .premium-banner-ib-desc::before {
|
374 |
-
opacity: 1;
|
375 |
-
-webkit-transform: scale(1);
|
376 |
-
-ms-transform: scale(1);
|
377 |
-
transform: scale(1); }
|
378 |
-
|
379 |
-
.premium-banner-animation4:hover .premium-banner-ib-content,
|
380 |
-
.premium-banner-animation4.active .premium-banner-ib-content,
|
381 |
-
.premium-banner-animation4:hover .premium-banner-read-more,
|
382 |
-
.premium-banner-animation4.active .premium-banner-read-more,
|
383 |
-
.premium-banner-animation4:hover .premium-banner-ib-title,
|
384 |
-
.premium-banner-animation4.active .premium-banner-ib-title {
|
385 |
-
opacity: 1;
|
386 |
-
-webkit-transform: translate3d(0, 0, 0);
|
387 |
-
transform: translate3d(0, 0, 0); }
|
388 |
-
|
389 |
-
.premium-banner-animation4:hover .premium-banner-ib-content,
|
390 |
-
.premium-banner-animation4:hover .premium-banner-ib-desc::after,
|
391 |
-
.premium-banner-animation4:hover .premium-banner-ib-title,
|
392 |
-
.premium-banner-animation4:hover img {
|
393 |
-
-webkit-transition-delay: 0.15s;
|
394 |
-
transition-delay: 0.15s; }
|
395 |
-
|
396 |
-
.premium-banner-animation5 .premium-banner-ib-desc {
|
397 |
-
top: auto;
|
398 |
-
bottom: 0;
|
399 |
-
padding: 15px;
|
400 |
-
height: auto;
|
401 |
-
background: #f2f2f2;
|
402 |
-
color: #3c4a50;
|
403 |
-
-webkit-transition: -webkit-transform 0.35s;
|
404 |
-
transition: -webkit-transform 0.35s;
|
405 |
-
transition: transform 0.35s;
|
406 |
-
transition: transform 0.35s, -webkit-transform 0.35s;
|
407 |
-
-webkit-transform: translate3d(0, 100%, 0);
|
408 |
-
transform: translate3d(0, 100%, 0); }
|
409 |
-
|
410 |
-
.premium-banner-animation5 .premium-banner-ib-content {
|
411 |
-
position: absolute;
|
412 |
-
top: auto;
|
413 |
-
bottom: 100%;
|
414 |
-
left: 0;
|
415 |
-
width: 100%;
|
416 |
-
padding: 15px;
|
417 |
-
opacity: 0;
|
418 |
-
-webkit-transition: opacity 0.35s;
|
419 |
-
transition: opacity 0.35s; }
|
420 |
-
|
421 |
-
.premium-banner-animation5 .premium-banner-ib-title,
|
422 |
-
.premium-banner-animation5 .premium-banner-read-more {
|
423 |
-
-webkit-transition: -webkit-transform 0.35s;
|
424 |
-
transition: -webkit-transform 0.35s;
|
425 |
-
transition: transform 0.35s;
|
426 |
-
transition: transform 0.35s, -webkit-transform 0.35s;
|
427 |
-
-webkit-transform: translate3d(0, 200%, 0);
|
428 |
-
transform: translate3d(0, 200%, 0);
|
429 |
-
text-align: center; }
|
430 |
-
|
431 |
-
.premium-banner-animation5 .premium-banner-ib-title {
|
432 |
-
margin: 10px 0; }
|
433 |
-
|
434 |
-
.premium-banner-animation5:hover .premium-banner-ib-content,
|
435 |
-
.premium-banner-animation5.active .premium-banner-ib-content,
|
436 |
-
.premium-banner-animation5:hover .premium-banner-ib-content *,
|
437 |
-
.premium-banner-animation5.active .premium-banner-ib-content * {
|
438 |
-
opacity: 1 !important;
|
439 |
-
z-index: 99 !important;
|
440 |
-
-webkit-backface-visibility: hidden !important;
|
441 |
-
backface-visibility: hidden !important; }
|
442 |
-
|
443 |
-
.premium-banner-animation5:hover .premium-banner-ib-desc,
|
444 |
-
.premium-banner-animation5.active .premium-banner-ib-desc,
|
445 |
-
.premium-banner-animation5:hover .premium-banner-ib-title,
|
446 |
-
.premium-banner-animation5.active .premium-banner-ib-title,
|
447 |
-
.premium-banner-animation5:hover .premium-banner-read-more,
|
448 |
-
.premium-banner-animation5.active .premium-banner-read-more {
|
449 |
-
-webkit-transform: translateY(0);
|
450 |
-
-ms-transform: translateY(0);
|
451 |
-
transform: translateY(0); }
|
452 |
-
|
453 |
-
.premium-banner-animation5:hover .premium-banner-ib-title {
|
454 |
-
-webkit-transition-delay: 0.05s;
|
455 |
-
transition-delay: 0.05s; }
|
456 |
-
|
457 |
-
.premium-banner-animation5 img {
|
458 |
-
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
459 |
-
transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
460 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s;
|
461 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
|
462 |
-
|
463 |
-
.premium-banner-animation2 img,
|
464 |
-
.premium-banner-animation4 img,
|
465 |
-
.premium-banner-animation6 img {
|
466 |
-
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
467 |
-
transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
468 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s;
|
469 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
|
470 |
-
|
471 |
-
.premium-banner-animation5.zoomout img,
|
472 |
-
.premium-banner-animation5.scale img {
|
473 |
-
-webkit-transform: scale(1.1);
|
474 |
-
-ms-transform: scale(1.1);
|
475 |
-
transform: scale(1.1); }
|
476 |
-
|
477 |
-
.premium-banner-animation2.zoomout img,
|
478 |
-
.premium-banner-animation2.scale img {
|
479 |
-
-webkit-transform: scale(1.1);
|
480 |
-
-ms-transform: scale(1.1);
|
481 |
-
transform: scale(1.1); }
|
482 |
-
|
483 |
-
.premium-banner-animation6.zoomout img,
|
484 |
-
.premium-banner-animation6.scale img {
|
485 |
-
-webkit-transform: scale(1.1);
|
486 |
-
-ms-transform: scale(1.1);
|
487 |
-
transform: scale(1.1); }
|
488 |
-
|
489 |
-
.premium-banner-animation5.zoomin:hover img,
|
490 |
-
.premium-banner-animation2.zoomin:hover img,
|
491 |
-
.premium-banner-animation6.zoomin:hover img {
|
492 |
-
-webkit-transform: scale(1.1);
|
493 |
-
-ms-transform: scale(1.1);
|
494 |
-
transform: scale(1.1); }
|
495 |
-
|
496 |
-
.premium-banner-animation5.zoomout:hover img,
|
497 |
-
.premium-banner-animation2.zoomout:hover img,
|
498 |
-
.premium-banner-animation6.zoomout:hover img {
|
499 |
-
-webkit-transform: scale(1);
|
500 |
-
-ms-transform: scale(1);
|
501 |
-
transform: scale(1); }
|
502 |
-
|
503 |
-
.premium-banner-animation5.scale:hover img,
|
504 |
-
.premium-banner-animation2.scale:hover img,
|
505 |
-
.premium-banner-animation6.scale:hover img {
|
506 |
-
-webkit-transform: scale(1.2) rotate(5deg);
|
507 |
-
-ms-transform: scale(1.2) rotate(5deg);
|
508 |
-
transform: scale(1.2) rotate(5deg); }
|
509 |
-
|
510 |
-
.premium-banner-animation5.grayscale:hover img,
|
511 |
-
.premium-banner-animation2.grayscale:hover img,
|
512 |
-
.premium-banner-animation6.grayscale:hover img {
|
513 |
-
-webkit-filter: grayscale(100%);
|
514 |
-
filter: grayscale(100%); }
|
515 |
-
|
516 |
-
.premium-banner-animation5.blur:hover img,
|
517 |
-
.premium-banner-animation2.blur:hover img {
|
518 |
-
-webkit-filter: blur(3px);
|
519 |
-
filter: blur(3px); }
|
520 |
-
|
521 |
-
.premium-banner-animation6.blur:hover img {
|
522 |
-
-webkit-filter: blur(3px);
|
523 |
-
filter: blur(3px); }
|
524 |
-
|
525 |
-
.premium-banner-animation6 .premium-banner-ib-desc {
|
526 |
-
padding: 45px; }
|
527 |
-
.premium-banner-animation6 .premium-banner-ib-desc::before {
|
528 |
-
position: absolute;
|
529 |
-
content: "";
|
530 |
-
top: 30px;
|
531 |
-
right: 30px;
|
532 |
-
bottom: 30px;
|
533 |
-
left: 30px;
|
534 |
-
border: 1px solid #fff; }
|
535 |
-
|
536 |
-
.premium-banner-animation6 .premium-banner-ib-title {
|
537 |
-
margin: 20px 0 10px;
|
538 |
-
-webkit-transition: -webkit-transform 0.35s;
|
539 |
-
transition: -webkit-transform 0.35s;
|
540 |
-
transition: transform 0.35s;
|
541 |
-
transition: transform 0.35s, -webkit-transform 0.35s;
|
542 |
-
-webkit-transform: translate3d(0, 100%, 0);
|
543 |
-
transform: translate3d(0, 100%, 0); }
|
544 |
-
|
545 |
-
.premium-banner-animation6 .premium-banner-ib-content,
|
546 |
-
.premium-banner-animation6 .premium-banner-read-more,
|
547 |
-
.premium-banner-animation6 .premium-banner-ib-desc::before {
|
548 |
-
opacity: 0;
|
549 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
550 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
551 |
-
transition: opacity 0.35s, transform 0.35s;
|
552 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
553 |
-
-webkit-transform: scale(0);
|
554 |
-
-ms-transform: scale(0);
|
555 |
-
transform: scale(0); }
|
556 |
-
|
557 |
-
.premium-banner-animation6 .premium-banner-read-more {
|
558 |
-
margin-top: 10px; }
|
559 |
-
|
560 |
-
.premium-banner-animation6:hover .premium-banner-ib-title,
|
561 |
-
.premium-banner-animation6.active .premium-banner-ib-title {
|
562 |
-
-webkit-transform: translate3d(0, 0, 0);
|
563 |
-
transform: translate3d(0, 0, 0); }
|
564 |
-
|
565 |
-
.premium-banner-animation6:hover .premium-banner-ib-content,
|
566 |
-
.premium-banner-animation6.active .premium-banner-ib-content,
|
567 |
-
.premium-banner-animation6:hover .premium-banner-read-more,
|
568 |
-
.premium-banner-animation6.active .premium-banner-read-more,
|
569 |
-
.premium-banner-animation6:hover .premium-banner-ib-desc::before,
|
570 |
-
.premium-banner-animation6.active .premium-banner-ib-desc::before {
|
571 |
-
opacity: 1;
|
572 |
-
-webkit-transform: scale(1);
|
573 |
-
-ms-transform: scale(1);
|
574 |
-
transform: scale(1); }
|
575 |
-
|
576 |
-
.premium-banner-animation12 .premium-banner-ib-desc::after {
|
577 |
-
position: absolute;
|
578 |
-
content: "";
|
579 |
-
right: 30px;
|
580 |
-
bottom: 30px;
|
581 |
-
left: 30px;
|
582 |
-
height: -webkit-calc(50% - 30px);
|
583 |
-
height: calc(50% - 30px);
|
584 |
-
border: 7px solid #fff;
|
585 |
-
-webkit-transition: -webkit-transform 0.35s;
|
586 |
-
transition: -webkit-transform 0.35s;
|
587 |
-
transition: transform 0.35s;
|
588 |
-
transition: transform 0.35s, -webkit-transform 0.35s;
|
589 |
-
-webkit-transform: translate3d(0, -100%, 0);
|
590 |
-
transform: translate3d(0, -100%, 0); }
|
591 |
-
|
592 |
-
.premium-banner-animation12:hover .premium-banner-ib-desc::after,
|
593 |
-
.premium-banner-animation12.active .premium-banner-ib-desc::after {
|
594 |
-
-webkit-transform: translate3d(0, 0, 0);
|
595 |
-
transform: translate3d(0, 0, 0); }
|
596 |
-
|
597 |
-
.premium-banner-animation12 .premium-banner-ib-desc {
|
598 |
-
padding: 45px;
|
599 |
-
text-align: left; }
|
600 |
-
|
601 |
-
.premium-banner-animation12 .premium-banner-ib-content {
|
602 |
-
position: absolute;
|
603 |
-
right: 60px;
|
604 |
-
bottom: 60px;
|
605 |
-
left: 60px;
|
606 |
-
opacity: 0;
|
607 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
608 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
609 |
-
transition: opacity 0.35s, transform 0.35s;
|
610 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
611 |
-
-webkit-transform: translate3d(0, -100px, 0);
|
612 |
-
transform: translate3d(0, -100px, 0); }
|
613 |
-
|
614 |
-
.premium-banner-animation12:hover .premium-banner-ib-content,
|
615 |
-
.premium-banner-animation12.active .premium-banner-ib-content {
|
616 |
-
opacity: 1;
|
617 |
-
-webkit-transform: translate3d(0, 0, 0);
|
618 |
-
transform: translate3d(0, 0, 0); }
|
619 |
-
|
620 |
-
.premium-banner-animation13 img {
|
621 |
-
width: -webkit-calc(100% + 20px) !important;
|
622 |
-
width: calc(100% + 20px) !important;
|
623 |
-
max-width: -webkit-calc(100% + 20px) !important;
|
624 |
-
max-width: calc(100% + 20px) !important;
|
625 |
-
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
626 |
-
transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
627 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s;
|
628 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
629 |
-
-webkit-transform: translate3d(-10px, 0, 0);
|
630 |
-
transform: translate3d(-10px, 0, 0);
|
631 |
-
-webkit-backface-visibility: hidden;
|
632 |
-
backface-visibility: hidden; }
|
633 |
-
|
634 |
-
.premium-banner-animation13.zoomout img,
|
635 |
-
.premium-banner-animation13.scale img {
|
636 |
-
-webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
|
637 |
-
transform: translate3d(-10px, 0, 0) scale(1.1); }
|
638 |
-
|
639 |
-
.premium-banner-animation13.none:hover img {
|
640 |
-
-webkit-transform: translate3d(0, 0, 0);
|
641 |
-
transform: translate3d(0, 0, 0); }
|
642 |
-
|
643 |
-
.premium-banner-animation1.none:hover img,
|
644 |
-
.premium-banner-animation4.none:hover img {
|
645 |
-
-webkit-transform: translate3d(0, 0, 0);
|
646 |
-
transform: translate3d(0, 0, 0); }
|
647 |
-
|
648 |
-
.premium-banner-animation13.zoomin:hover img,
|
649 |
-
.premium-banner-animation1.zoomin:hover img,
|
650 |
-
.premium-banner-animation4.zoomin:hover img,
|
651 |
-
.premium-banner-animation8.zoomin:hover img,
|
652 |
-
.premium-banner-animation7.zoomin:hover img,
|
653 |
-
.premium-banner-animation9.zoomin:hover img,
|
654 |
-
.premium-banner-animation10.zoomin:hover img,
|
655 |
-
.premium-banner-animation11.zoomin:hover img {
|
656 |
-
-webkit-transform: translate3d(0, 0, 0) scale(1.1);
|
657 |
-
transform: translate3d(0, 0, 0) scale(1.1); }
|
658 |
-
|
659 |
-
.premium-banner-animation13.zoomout:hover img,
|
660 |
-
.premium-banner-animation1.zoomout:hover img,
|
661 |
-
.premium-banner-animation4.zoomout:hover img,
|
662 |
-
.premium-banner-animation8.zoomout:hover img,
|
663 |
-
.premium-banner-animation7.zoomout:hover img,
|
664 |
-
.premium-banner-animation9.zoomout:hover img,
|
665 |
-
.premium-banner-animation10.zoomout:hover img,
|
666 |
-
.premium-banner-animation11.zoomout:hover img {
|
667 |
-
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
668 |
-
transform: translate3d(0, 0, 0) scale(1); }
|
669 |
-
|
670 |
-
.premium-banner-animation13.scale:hover img,
|
671 |
-
.premium-banner-animation1.scale:hover img,
|
672 |
-
.premium-banner-animation4.scale:hover img,
|
673 |
-
.premium-banner-animation8.scale:hover img,
|
674 |
-
.premium-banner-animation7.scale:hover img,
|
675 |
-
.premium-banner-animation9.scale:hover img,
|
676 |
-
.premium-banner-animation10.scale:hover img,
|
677 |
-
.premium-banner-animation11.scale:hover img {
|
678 |
-
-webkit-transform: translate3d(0, 0, 0) scale(1.2) rotate(5deg);
|
679 |
-
transform: translate3d(0, 0, 0) scale(1.2) rotate(5deg); }
|
680 |
-
|
681 |
-
.premium-banner-animation13.grayscale:hover img,
|
682 |
-
.premium-banner-animation1.grayscale:hover img,
|
683 |
-
.premium-banner-animation4.grayscale:hover img,
|
684 |
-
.premium-banner-animation8.grayscale:hover img,
|
685 |
-
.premium-banner-animation7.grayscale:hover img,
|
686 |
-
.premium-banner-animation9.grayscale:hover img,
|
687 |
-
.premium-banner-animation10.grayscale:hover img,
|
688 |
-
.premium-banner-animation11.grayscale:hover img {
|
689 |
-
-webkit-transform: translate3d(0, 0, 0);
|
690 |
-
transform: translate3d(0, 0, 0);
|
691 |
-
-webkit-filter: grayscale(100%);
|
692 |
-
filter: grayscale(100%); }
|
693 |
-
|
694 |
-
.premium-banner-animation13.blur:hover img,
|
695 |
-
.premium-banner-animation1.blur:hover img,
|
696 |
-
.premium-banner-animation4.blur:hover,
|
697 |
-
.premium-banner-animation8.blur:hover img,
|
698 |
-
.premium-banner-animation7.blur:hover img,
|
699 |
-
.premium-banner-animation9.blur:hover img,
|
700 |
-
.premium-banner-animation10.blur:hover img,
|
701 |
-
.premium-banner-animation11.blur:hover img {
|
702 |
-
-webkit-transform: translate3d(0, 0, 0);
|
703 |
-
transform: translate3d(0, 0, 0);
|
704 |
-
-webkit-filter: blur(3px);
|
705 |
-
filter: blur(3px); }
|
706 |
-
|
707 |
-
.premium-banner-animation13 .premium-banner-ib-desc {
|
708 |
-
text-align: left; }
|
709 |
-
|
710 |
-
.premium-banner-animation13 .premium-banner-ib-title {
|
711 |
-
position: relative;
|
712 |
-
overflow: hidden;
|
713 |
-
padding: 5px 0 10px; }
|
714 |
-
.premium-banner-animation13 .premium-banner-ib-title::after {
|
715 |
-
position: absolute;
|
716 |
-
content: "";
|
717 |
-
bottom: 0;
|
718 |
-
left: 0;
|
719 |
-
width: 100%;
|
720 |
-
height: 2px;
|
721 |
-
background: #fff;
|
722 |
-
-webkit-transition: -webkit-transform 0.35s;
|
723 |
-
transition: -webkit-transform 0.35s;
|
724 |
-
transition: transform 0.35s;
|
725 |
-
transition: transform 0.35s, -webkit-transform 0.35s;
|
726 |
-
-webkit-transform: translate3d(-101%, 0, 0);
|
727 |
-
transform: translate3d(-101%, 0, 0); }
|
728 |
-
|
729 |
-
.premium-banner-animation13:hover .premium-banner-ib-title::after,
|
730 |
-
.premium-banner-animation13.active .premium-banner-ib-title::after {
|
731 |
-
-webkit-transform: translate3d(0, 0, 0);
|
732 |
-
transform: translate3d(0, 0, 0); }
|
733 |
-
|
734 |
-
.premium-banner-animation13 .premium-banner-ib-content,
|
735 |
-
.premium-banner-animation13 .premium-banner-read-more {
|
736 |
-
padding: 15px 0;
|
737 |
-
opacity: 0;
|
738 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
739 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
740 |
-
transition: opacity 0.35s, transform 0.35s;
|
741 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
742 |
-
-webkit-transform: translate3d(100%, 0, 0);
|
743 |
-
transform: translate3d(100%, 0, 0); }
|
744 |
-
|
745 |
-
.premium-banner-animation13:hover .premium-banner-ib-content,
|
746 |
-
.premium-banner-animation13.active .premium-banner-ib-content,
|
747 |
-
.premium-banner-animation13:hover .premium-banner-read-more,
|
748 |
-
.premium-banner-animation13.active .premium-banner-read-more {
|
749 |
-
opacity: 1;
|
750 |
-
-webkit-transform: translate3d(0, 0, 0);
|
751 |
-
transform: translate3d(0, 0, 0); }
|
752 |
-
|
753 |
-
.premium-banner-ib.premium-banner-animation5 .premium-banner-toggle-size {
|
754 |
-
left: 50%;
|
755 |
-
width: auto !important;
|
756 |
-
height: 100%;
|
757 |
-
max-width: none;
|
758 |
-
-webkit-transform: translateX(-50%);
|
759 |
-
-ms-transform: translateX(-50%);
|
760 |
-
transform: translateX(-50%); }
|
761 |
-
|
762 |
-
.premium-banner-ib img {
|
763 |
-
border: none;
|
764 |
-
padding: 0;
|
765 |
-
margin: 0; }
|
766 |
-
|
767 |
-
.premium-banner-animation7 img {
|
768 |
-
width: -webkit-calc(100% + 40px) !important;
|
769 |
-
width: calc(100% + 40px) !important;
|
770 |
-
max-width: -webkit-calc(100% + 40px) !important;
|
771 |
-
max-width: calc(100% + 40px) !important;
|
772 |
-
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
773 |
-
transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
774 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s;
|
775 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
|
776 |
-
|
777 |
-
.premium-banner-animation7 .premium-banner-brlr {
|
778 |
-
width: 7px; }
|
779 |
-
|
780 |
-
.premium-banner-animation7 .premium-banner-brtb {
|
781 |
-
height: 7px; }
|
782 |
-
|
783 |
-
.premium-banner-animation7 .premium-banner-br {
|
784 |
-
position: absolute;
|
785 |
-
z-index: 1;
|
786 |
-
background-color: white;
|
787 |
-
-webkit-transition: all 0.3s ease-in-out;
|
788 |
-
transition: all 0.3s ease-in-out;
|
789 |
-
-webkit-transition-delay: 0.2s;
|
790 |
-
transition-delay: 0.2s; }
|
791 |
-
|
792 |
-
.premium-banner-animation7 .premium-banner-bleft {
|
793 |
-
left: 30px;
|
794 |
-
top: -webkit-calc(100% - 150px);
|
795 |
-
top: calc(100% - 150px);
|
796 |
-
height: 0; }
|
797 |
-
|
798 |
-
.premium-banner-animation7 .premium-banner-bright {
|
799 |
-
right: 30px;
|
800 |
-
bottom: -webkit-calc(100% - 150px);
|
801 |
-
bottom: calc(100% - 150px);
|
802 |
-
height: 0; }
|
803 |
-
|
804 |
-
.premium-banner-animation7 .premium-banner-bottom {
|
805 |
-
right: -webkit-calc(100% - 150px);
|
806 |
-
right: calc(100% - 150px);
|
807 |
-
bottom: 30px;
|
808 |
-
width: 0; }
|
809 |
-
|
810 |
-
.premium-banner-animation7 .premium-banner-btop {
|
811 |
-
left: -webkit-calc(100% - 150px);
|
812 |
-
left: calc(100% - 150px);
|
813 |
-
top: 30px;
|
814 |
-
width: 0; }
|
815 |
-
|
816 |
-
.premium-banner-animation7 .premium-banner-ib-desc {
|
817 |
-
padding: 70px;
|
818 |
-
display: table; }
|
819 |
-
.premium-banner-animation7 .premium-banner-ib-desc .premium-banner-desc-centered {
|
820 |
-
display: table-cell;
|
821 |
-
vertical-align: middle; }
|
822 |
-
|
823 |
-
.premium-banner-animation7 .premium-banner-ib-title {
|
824 |
-
margin-top: 0; }
|
825 |
-
|
826 |
-
.premium-banner-animation7 .premium-banner-ib-title,
|
827 |
-
.premium-banner-animation7 img {
|
828 |
-
-webkit-transform: translate3d(-30px, 0, 0);
|
829 |
-
transform: translate3d(-30px, 0, 0); }
|
830 |
-
|
831 |
-
.premium-banner-animation7.zoomout img,
|
832 |
-
.premium-banner-animation7.scale img {
|
833 |
-
-webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
|
834 |
-
transform: translate3d(-30px, 0, 0) scale(1.1); }
|
835 |
-
|
836 |
-
.premium-banner-animation7 .premium-banner-ib-content,
|
837 |
-
.premium-banner-animation7 .premium-banner-read-more {
|
838 |
-
margin-top: 10px; }
|
839 |
-
|
840 |
-
.premium-banner-animation7 .premium-banner-ib-desc::after, .premium-banner-animation7 .premium-banner-ib-desc::before {
|
841 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
842 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
843 |
-
transition: opacity 0.35s, transform 0.35s;
|
844 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
|
845 |
-
|
846 |
-
.premium-banner-animation7 .premium-banner-ib-title,
|
847 |
-
.premium-banner-animation7 .premium-banner-ib-content,
|
848 |
-
.premium-banner-animation7 .premium-banner-read-more {
|
849 |
-
opacity: 0;
|
850 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
851 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
852 |
-
transition: opacity 0.35s, transform 0.35s;
|
853 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
|
854 |
-
|
855 |
-
.premium-banner-animation7:hover .premium-banner-ib-content,
|
856 |
-
.premium-banner-animation7.active .premium-banner-ib-content,
|
857 |
-
.premium-banner-animation7:hover .premium-banner-read-more,
|
858 |
-
.premium-banner-animation7.active .premium-banner-read-more,
|
859 |
-
.premium-banner-animation7:hover .premium-banner-ib-title,
|
860 |
-
.premium-banner-animation7.active .premium-banner-ib-title {
|
861 |
-
opacity: 1;
|
862 |
-
-webkit-transform: translate3d(0, 0, 0);
|
863 |
-
transform: translate3d(0, 0, 0); }
|
864 |
-
|
865 |
-
.premium-banner-animation7:hover .premium-banner-bleft, .premium-banner-animation7.active .premium-banner-bleft {
|
866 |
-
top: 30px;
|
867 |
-
height: 70px; }
|
868 |
-
|
869 |
-
.premium-banner-animation7:hover .premium-banner-bright, .premium-banner-animation7.active .premium-banner-bright {
|
870 |
-
bottom: 30px;
|
871 |
-
height: 70px; }
|
872 |
-
|
873 |
-
.premium-banner-animation7:hover .premium-banner-bottom, .premium-banner-animation7.active .premium-banner-bottom {
|
874 |
-
right: 30px;
|
875 |
-
width: 70px; }
|
876 |
-
|
877 |
-
.premium-banner-animation7:hover .premium-banner-btop, .premium-banner-animation7.active .premium-banner-btop {
|
878 |
-
left: 30px;
|
879 |
-
width: 70px; }
|
880 |
-
|
881 |
-
.premium-banner-animation7:hover .premium-banner-ib-content,
|
882 |
-
.premium-banner-animation7:hover .premium-banner-read-more,
|
883 |
-
.premium-banner-animation7:hover .premium-banner-ib-title,
|
884 |
-
.premium-banner-animation7:hover img {
|
885 |
-
-webkit-transition-delay: 0.15s;
|
886 |
-
transition-delay: 0.15s; }
|
887 |
-
|
888 |
-
.premium-banner-animation8 img {
|
889 |
-
width: -webkit-calc(100% + 40px) !important;
|
890 |
-
width: calc(100% + 40px) !important;
|
891 |
-
max-width: -webkit-calc(100% + 40px) !important;
|
892 |
-
max-width: calc(100% + 40px) !important;
|
893 |
-
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
894 |
-
transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
895 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s;
|
896 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
|
897 |
-
|
898 |
-
.premium-banner-animation8 .premium-banner-brlr {
|
899 |
-
width: 7px; }
|
900 |
-
|
901 |
-
.premium-banner-animation8 .premium-banner-brtb {
|
902 |
-
height: 7px; }
|
903 |
-
|
904 |
-
.premium-banner-animation8 .premium-banner-br {
|
905 |
-
position: absolute;
|
906 |
-
z-index: 1;
|
907 |
-
background-color: white;
|
908 |
-
-webkit-transition: all 0.3s ease-in-out;
|
909 |
-
transition: all 0.3s ease-in-out;
|
910 |
-
-webkit-transition-delay: 0.2s;
|
911 |
-
transition-delay: 0.2s; }
|
912 |
-
|
913 |
-
.premium-banner-animation8 .premium-banner-bleft {
|
914 |
-
left: 30px;
|
915 |
-
top: 50%;
|
916 |
-
-webkit-transform: translateY(-50%);
|
917 |
-
-ms-transform: translateY(-50%);
|
918 |
-
transform: translateY(-50%);
|
919 |
-
height: 0; }
|
920 |
-
|
921 |
-
.premium-banner-animation8 .premium-banner-bright {
|
922 |
-
right: 30px;
|
923 |
-
top: 50%;
|
924 |
-
-webkit-transform: translateY(-50%);
|
925 |
-
-ms-transform: translateY(-50%);
|
926 |
-
transform: translateY(-50%);
|
927 |
-
height: 0; }
|
928 |
-
|
929 |
-
.premium-banner-animation8 .premium-banner-bottom {
|
930 |
-
left: 50%;
|
931 |
-
-webkit-transform: translateX(-50%);
|
932 |
-
-ms-transform: translateX(-50%);
|
933 |
-
transform: translateX(-50%);
|
934 |
-
bottom: 30px;
|
935 |
-
width: 0; }
|
936 |
-
|
937 |
-
.premium-banner-animation8 .premium-banner-btop {
|
938 |
-
left: 50%;
|
939 |
-
-webkit-transform: translateX(-50%);
|
940 |
-
-ms-transform: translateX(-50%);
|
941 |
-
transform: translateX(-50%);
|
942 |
-
top: 30px;
|
943 |
-
width: 0; }
|
944 |
-
|
945 |
-
.premium-banner-animation8 .premium-banner-ib-desc {
|
946 |
-
padding: 70px;
|
947 |
-
display: table; }
|
948 |
-
.premium-banner-animation8 .premium-banner-ib-desc .premium-banner-desc-centered {
|
949 |
-
display: table-cell;
|
950 |
-
vertical-align: middle; }
|
951 |
-
|
952 |
-
.premium-banner-animation8 .premium-banner-ib-title {
|
953 |
-
margin-top: 0; }
|
954 |
-
|
955 |
-
.premium-banner-animation8 .premium-banner-ib-title,
|
956 |
-
.premium-banner-animation8 img {
|
957 |
-
-webkit-transform: translate3d(-30px, 0, 0);
|
958 |
-
transform: translate3d(-30px, 0, 0); }
|
959 |
-
|
960 |
-
.premium-banner-animation8.zoomout img,
|
961 |
-
.premium-banner-animation8.scale img {
|
962 |
-
-webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
|
963 |
-
transform: translate3d(-30px, 0, 0) scale(1.1); }
|
964 |
-
|
965 |
-
.premium-banner-animation8 .premium-banner-ib-content,
|
966 |
-
.premium-banner-animation8 .premium-banner-read-more {
|
967 |
-
margin-top: 10px; }
|
968 |
-
|
969 |
-
.premium-banner-animation8 .premium-banner-ib-desc::after, .premium-banner-animation8 .premium-banner-ib-desc::before {
|
970 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
971 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
972 |
-
transition: opacity 0.35s, transform 0.35s;
|
973 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
|
974 |
-
|
975 |
-
.premium-banner-animation8 .premium-banner-ib-title,
|
976 |
-
.premium-banner-animation8 .premium-banner-ib-content,
|
977 |
-
.premium-banner-animation8 .premium-banner-read-more {
|
978 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
979 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
980 |
-
transition: opacity 0.35s, transform 0.35s;
|
981 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
982 |
-
opacity: 0; }
|
983 |
-
|
984 |
-
.premium-banner-animation8:hover .premium-banner-ib-content,
|
985 |
-
.premium-banner-animation8.active .premium-banner-ib-content,
|
986 |
-
.premium-banner-animation8:hover .premium-banner-read-more,
|
987 |
-
.premium-banner-animation8.active .premium-banner-read-more,
|
988 |
-
.premium-banner-animation8:hover .premium-banner-ib-title,
|
989 |
-
.premium-banner-animation8.active .premium-banner-ib-title {
|
990 |
-
opacity: 1;
|
991 |
-
-webkit-transform: translate3d(0, 0, 0);
|
992 |
-
transform: translate3d(0, 0, 0); }
|
993 |
-
|
994 |
-
.premium-banner-animation8:hover .premium-banner-bleft, .premium-banner-animation8.active .premium-banner-bleft {
|
995 |
-
height: -webkit-calc(100% - 61px);
|
996 |
-
height: calc(100% - 61px); }
|
997 |
-
|
998 |
-
.premium-banner-animation8:hover .premium-banner-bright, .premium-banner-animation8.active .premium-banner-bright {
|
999 |
-
height: -webkit-calc(100% - 61px);
|
1000 |
-
height: calc(100% - 61px); }
|
1001 |
-
|
1002 |
-
.premium-banner-animation8:hover .premium-banner-bottom, .premium-banner-animation8.active .premium-banner-bottom {
|
1003 |
-
width: -webkit-calc(100% - 61px);
|
1004 |
-
width: calc(100% - 61px); }
|
1005 |
-
|
1006 |
-
.premium-banner-animation8:hover .premium-banner-btop, .premium-banner-animation8.active .premium-banner-btop {
|
1007 |
-
width: -webkit-calc(100% - 61px);
|
1008 |
-
width: calc(100% - 61px); }
|
1009 |
-
|
1010 |
-
.premium-banner-animation8:hover .premium-banner-ib-content,
|
1011 |
-
.premium-banner-animation8:hover .premium-banner-ib-title,
|
1012 |
-
.premium-banner-animation8:hover .premium-banner-read-more,
|
1013 |
-
.premium-banner-animation8:hover img {
|
1014 |
-
-webkit-transition-delay: 0.15s;
|
1015 |
-
transition-delay: 0.15s; }
|
1016 |
-
|
1017 |
-
.premium-banner-animation9 img {
|
1018 |
-
width: -webkit-calc(100% + 20px) !important;
|
1019 |
-
width: calc(100% + 20px) !important;
|
1020 |
-
max-width: -webkit-calc(100% + 20px) !important;
|
1021 |
-
max-width: calc(100% + 20px) !important;
|
1022 |
-
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
1023 |
-
transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
1024 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s;
|
1025 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
1026 |
-
-webkit-transform: scale(1.2);
|
1027 |
-
-ms-transform: scale(1.2);
|
1028 |
-
transform: scale(1.2); }
|
1029 |
-
|
1030 |
-
.premium-banner-animation9 .premium-banner-ib-desc {
|
1031 |
-
width: 100%;
|
1032 |
-
height: 100%; }
|
1033 |
-
.premium-banner-animation9 .premium-banner-ib-desc::before {
|
1034 |
-
position: absolute;
|
1035 |
-
top: 50%;
|
1036 |
-
left: 50%;
|
1037 |
-
width: 80%;
|
1038 |
-
height: 1px;
|
1039 |
-
background: #fff;
|
1040 |
-
content: "";
|
1041 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
1042 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
1043 |
-
transition: opacity 0.35s, transform 0.35s;
|
1044 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
1045 |
-
-webkit-transform: translate3d(-50%, -50%, 0);
|
1046 |
-
transform: translate3d(-50%, -50%, 0); }
|
1047 |
-
.premium-banner-animation9 .premium-banner-ib-desc::after {
|
1048 |
-
position: absolute;
|
1049 |
-
top: 50%;
|
1050 |
-
left: 50%;
|
1051 |
-
width: 80%;
|
1052 |
-
height: 1px;
|
1053 |
-
background: #fff;
|
1054 |
-
content: "";
|
1055 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
1056 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
1057 |
-
transition: opacity 0.35s, transform 0.35s;
|
1058 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
1059 |
-
-webkit-transform: translate3d(-50%, -50%, 0);
|
1060 |
-
transform: translate3d(-50%, -50%, 0); }
|
1061 |
-
|
1062 |
-
.premium-banner-animation9 .premium-banner-ib-title {
|
1063 |
-
position: absolute;
|
1064 |
-
top: 50%;
|
1065 |
-
left: 0;
|
1066 |
-
width: 100%;
|
1067 |
-
-webkit-transition: -webkit-transform 0.35s;
|
1068 |
-
transition: -webkit-transform 0.35s;
|
1069 |
-
transition: transform 0.35s;
|
1070 |
-
transition: transform 0.35s, -webkit-transform 0.35s;
|
1071 |
-
-webkit-transform: translate3d(0, -70px, 0);
|
1072 |
-
transform: translate3d(0, -70px, 0);
|
1073 |
-
margin-top: 0;
|
1074 |
-
padding: 0 10%; }
|
1075 |
-
|
1076 |
-
.premium-banner-animation9:hover .premium-banner-ib-title,
|
1077 |
-
.premium-banner-animation9.active .premium-banner-ib-title {
|
1078 |
-
-webkit-transform: translate3d(0, -80px, 0);
|
1079 |
-
transform: translate3d(0, -80px, 0); }
|
1080 |
-
|
1081 |
-
.premium-banner-animation9 .premium-banner-ib-content,
|
1082 |
-
.premium-banner-animation9 .premium-banner-read-more {
|
1083 |
-
position: absolute;
|
1084 |
-
top: 50%;
|
1085 |
-
left: 0;
|
1086 |
-
width: 100%;
|
1087 |
-
-webkit-transition: -webkit-transform 0.35s;
|
1088 |
-
transition: -webkit-transform 0.35s;
|
1089 |
-
transition: transform 0.35s;
|
1090 |
-
transition: transform 0.35s, -webkit-transform 0.35s;
|
1091 |
-
padding: 0 10%;
|
1092 |
-
-webkit-transform: translate3d(0, 35px, 0);
|
1093 |
-
transform: translate3d(0, 35px, 0); }
|
1094 |
-
|
1095 |
-
.premium-banner-animation9 .premium-banner-read-more {
|
1096 |
-
top: 75%; }
|
1097 |
-
|
1098 |
-
.premium-banner-animation9:hover .premium-banner-ib-content,
|
1099 |
-
.premium-banner-animation9.active .premium-banner-ib-content,
|
1100 |
-
.premium-banner-animation9:hover .premium-banner-read-more,
|
1101 |
-
.premium-banner-animation9.active .premium-banner-read-more {
|
1102 |
-
-webkit-transform: translate3d(0, 45px, 0);
|
1103 |
-
transform: translate3d(0, 45px, 0); }
|
1104 |
-
|
1105 |
-
.premium-banner-animation9:hover .premium-banner-ib-desc::before,
|
1106 |
-
.premium-banner-animation9.active .premium-banner-ib-desc::before {
|
1107 |
-
opacity: 0.5;
|
1108 |
-
-webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
|
1109 |
-
transform: translate3d(-50%, -50%, 0) rotate(45deg); }
|
1110 |
-
|
1111 |
-
.premium-banner-animation9:hover .premium-banner-ib-desc::after,
|
1112 |
-
.premium-banner-animation9.active .premium-banner-ib-desc::after {
|
1113 |
-
opacity: 0.5;
|
1114 |
-
-webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
|
1115 |
-
transform: translate3d(-50%, -50%, 0) rotate(-45deg); }
|
1116 |
-
|
1117 |
-
.premium-banner-animation9:hover img {
|
1118 |
-
-webkit-transform: scale(1);
|
1119 |
-
-ms-transform: scale(1);
|
1120 |
-
transform: scale(1); }
|
1121 |
-
|
1122 |
-
.premium-banner-animation10 img {
|
1123 |
-
width: -webkit-calc(100% + 20px) !important;
|
1124 |
-
width: calc(100% + 20px) !important;
|
1125 |
-
max-width: -webkit-calc(100% + 20px) !important;
|
1126 |
-
max-width: calc(100% + 20px) !important;
|
1127 |
-
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
1128 |
-
transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
1129 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s;
|
1130 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
|
1131 |
-
|
1132 |
-
.premium-banner-animation10 .premium-banner-ib-title {
|
1133 |
-
position: relative;
|
1134 |
-
overflow: hidden;
|
1135 |
-
padding: 5px 0 15px;
|
1136 |
-
-webkit-transition: -webkit-transform 0.35s;
|
1137 |
-
transition: -webkit-transform 0.35s;
|
1138 |
-
transition: transform 0.35s;
|
1139 |
-
transition: transform 0.35s, -webkit-transform 0.35s;
|
1140 |
-
-webkit-transform: translate3d(0, 20px, 0);
|
1141 |
-
transform: translate3d(0, 20px, 0);
|
1142 |
-
margin-bottom: 0; }
|
1143 |
-
.premium-banner-animation10 .premium-banner-ib-title::after {
|
1144 |
-
position: absolute;
|
1145 |
-
content: "";
|
1146 |
-
bottom: 0;
|
1147 |
-
left: 0;
|
1148 |
-
width: 100%;
|
1149 |
-
height: 3px;
|
1150 |
-
background: #fff;
|
1151 |
-
opacity: 0;
|
1152 |
-
-webkit-transform: translate3d(0, 100%, 0);
|
1153 |
-
transform: translate3d(0, 100%, 0);
|
1154 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
1155 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
1156 |
-
transition: opacity 0.35s, transform 0.35s;
|
1157 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
|
1158 |
-
|
1159 |
-
.premium-banner-animation10:hover .premium-banner-ib-title,
|
1160 |
-
.premium-banner-animation10.active .premium-banner-ib-title {
|
1161 |
-
-webkit-transform: translate3d(0, 0, 0);
|
1162 |
-
transform: translate3d(0, 0, 0); }
|
1163 |
-
|
1164 |
-
.premium-banner-animation10:hover .premium-banner-ib-title::after,
|
1165 |
-
.premium-banner-animation10.active .premium-banner-ib-title::after {
|
1166 |
-
opacity: 1;
|
1167 |
-
-webkit-transform: translate3d(0, 0, 0);
|
1168 |
-
transform: translate3d(0, 0, 0); }
|
1169 |
-
|
1170 |
-
.premium-banner-animation10.zoomout img,
|
1171 |
-
.premium-banner-animation10.scale img {
|
1172 |
-
-webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
|
1173 |
-
transform: translate3d(-10px, 0, 0) scale(1.1); }
|
1174 |
-
|
1175 |
-
.premium-banner-animation10 .premium-banner-ib-content,
|
1176 |
-
.premium-banner-animation10 .premium-banner-read-more {
|
1177 |
-
padding-top: 15px;
|
1178 |
-
opacity: 0;
|
1179 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
1180 |
-
transition: opacity 0.35s, -webkit-transform 0.35s;
|
1181 |
-
transition: opacity 0.35s, transform 0.35s;
|
1182 |
-
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
1183 |
-
-webkit-transform: translate3d(0, 100%, 0);
|
1184 |
-
transform: translate3d(0, 100%, 0); }
|
1185 |
-
|
1186 |
-
.premium-banner-animation10 .premium-banner-read-more {
|
1187 |
-
padding: 0; }
|
1188 |
-
|
1189 |
-
.premium-banner-animation10:hover .premium-banner-ib-content,
|
1190 |
-
.premium-banner-animation10.active .premium-banner-ib-content,
|
1191 |
-
.premium-banner-animation10:hover .premium-banner-read-more,
|
1192 |
-
.premium-banner-animation10.active .premium-banner-read-more {
|
1193 |
-
opacity: 1;
|
1194 |
-
-webkit-transform: translate3d(0, 0, 0);
|
1195 |
-
transform: translate3d(0, 0, 0); }
|
1196 |
-
|
1197 |
-
.premium-banner-animation11 {
|
1198 |
-
-webkit-transition: -webkit-transform 1s ease-out;
|
1199 |
-
transition: -webkit-transform 1s ease-out;
|
1200 |
-
transition: transform 1s ease-out;
|
1201 |
-
transition: transform 1s ease-out, -webkit-transform 1s ease-out;
|
1202 |
-
-webkit-transition-delay: 0.125s;
|
1203 |
-
transition-delay: 0.125s; }
|
1204 |
-
.premium-banner-animation11 .premium-banner-ib-desc {
|
1205 |
-
position: absolute;
|
1206 |
-
z-index: 5;
|
1207 |
-
-webkit-transform: translate3d(-30px, 0, 0);
|
1208 |
-
transform: translate3d(-30px, 0, 0);
|
1209 |
-
opacity: 0;
|
1210 |
-
top: auto;
|
1211 |
-
bottom: 0;
|
1212 |
-
min-height: 25%;
|
1213 |
-
height: auto;
|
1214 |
-
max-height: 100%;
|
1215 |
-
text-align: left;
|
1216 |
-
padding: 30px;
|
1217 |
-
-webkit-transition: all 0.6s ease-out;
|
1218 |
-
transition: all 0.6s ease-out; }
|
1219 |
-
.premium-banner-animation11 img {
|
1220 |
-
width: 100%;
|
1221 |
-
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
1222 |
-
transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
1223 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s;
|
1224 |
-
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
|
1225 |
-
.premium-banner-animation11 .premium-banner-ib-title {
|
1226 |
-
margin-bottom: 10px; }
|
1227 |
-
.premium-banner-animation11 .premium-banner-gradient {
|
1228 |
-
position: absolute;
|
1229 |
-
left: 0;
|
1230 |
-
top: 0;
|
1231 |
-
right: 0;
|
1232 |
-
bottom: 0; }
|
1233 |
-
.premium-banner-animation11 .premium-banner-gradient:after,
|
1234 |
-
.premium-banner-animation11 .premium-banner-gradient:before {
|
1235 |
-
position: absolute;
|
1236 |
-
content: "";
|
1237 |
-
left: 0;
|
1238 |
-
top: 0;
|
1239 |
-
right: 0;
|
1240 |
-
bottom: 0;
|
1241 |
-
-webkit-transform: translate3d(-100%, 0, 0);
|
1242 |
-
transform: translate3d(-100%, 0, 0);
|
1243 |
-
background-image: -webkit-linear-gradient(40deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
|
1244 |
-
background-image: linear-gradient(50deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
|
1245 |
-
z-index: 2; }
|
1246 |
-
.premium-banner-animation11 .premium-banner-gradient:before {
|
1247 |
-
mix-blend-mode: color; }
|
1248 |
-
.premium-banner-animation11 .premium-banner-gradient:after {
|
1249 |
-
mix-blend-mode: multiply; }
|
1250 |
-
.premium-banner-animation11:hover .premium-banner-ib-desc,
|
1251 |
-
.premium-banner-animation11.active .premium-banner-ib-desc {
|
1252 |
-
opacity: 1;
|
1253 |
-
-webkit-transform: translate3d(0, 0, 0);
|
1254 |
-
transform: translate3d(0, 0, 0); }
|
1255 |
-
.premium-banner-animation11:hover .premium-banner-gradient:after,
|
1256 |
-
.premium-banner-animation11:hover .premium-banner-gradient:before,
|
1257 |
-
.premium-banner-animation11.active .premium-banner-gradient:after,
|
1258 |
-
.premium-banner-animation11.active .premium-banner-gradient:before {
|
1259 |
-
-webkit-transform: translate3d(0, 0, 0);
|
1260 |
-
transform: translate3d(0, 0, 0); }
|
1261 |
-
.premium-banner-animation11.zoomout img,
|
1262 |
-
.premium-banner-animation11.scale img {
|
1263 |
-
-webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
|
1264 |
-
transform: translate3d(-10px, 0, 0) scale(1.1); }
|
1265 |
-
|
1266 |
-
/**************** Premium CountDown *************/
|
1267 |
-
/************************************************/
|
1268 |
-
.premium-countdown {
|
1269 |
-
-js-display: flex;
|
1270 |
-
display: -webkit-box;
|
1271 |
-
display: -webkit-flex;
|
1272 |
-
display: -moz-box;
|
1273 |
-
display: -ms-flexbox;
|
1274 |
-
display: flex;
|
1275 |
-
text-align: center; }
|
1276 |
-
|
1277 |
-
.countdown-row {
|
1278 |
-
display: block;
|
1279 |
-
text-align: center; }
|
1280 |
-
|
1281 |
-
.countdown .countdown-section {
|
1282 |
-
display: inline-block;
|
1283 |
-
max-width: 100%;
|
1284 |
-
margin-bottom: 15px;
|
1285 |
-
-js-display: inline-flex;
|
1286 |
-
display: -webkit-inline-box;
|
1287 |
-
display: -webkit-inline-flex;
|
1288 |
-
display: -moz-inline-box;
|
1289 |
-
display: -ms-inline-flexbox;
|
1290 |
-
display: inline-flex;
|
1291 |
-
-webkit-box-align: center;
|
1292 |
-
-webkit-align-items: center;
|
1293 |
-
-moz-box-align: center;
|
1294 |
-
-ms-flex-align: center;
|
1295 |
-
align-items: center; }
|
1296 |
-
.countdown .countdown-section:last-child {
|
1297 |
-
margin-right: 0; }
|
1298 |
-
|
1299 |
-
.countdown span.countdown-amount {
|
1300 |
-
font-size: 70px;
|
1301 |
-
line-height: 1;
|
1302 |
-
padding: 40px; }
|
1303 |
-
|
1304 |
-
.countdown .pre_time-mid {
|
1305 |
-
display: block; }
|
1306 |
-
|
1307 |
-
.premium-countdown-separator-yes .countdown_separator {
|
1308 |
-
display: block;
|
1309 |
-
margin: 0 50px;
|
1310 |
-
font-size: 30px; }
|
1311 |
-
|
1312 |
-
.premium-countdown-separator-yes .countdown-row .countdown-section:last-child .countdown_separator,
|
1313 |
-
.premium-countdown-separator-yes .premium-countdown-block:last-child .countdown_separator {
|
1314 |
-
display: none; }
|
1315 |
-
|
1316 |
-
/**
|
1317 |
-
* Digit and unit styles
|
1318 |
-
*/
|
1319 |
-
.side .countdown-section .countdown-period {
|
1320 |
-
vertical-align: bottom; }
|
1321 |
-
|
1322 |
-
.countdown .countdown-section .countdown-period {
|
1323 |
-
font-size: 17px;
|
1324 |
-
line-height: 3em; }
|
1325 |
-
|
1326 |
-
.side .countdown-section .countdown-amount,
|
1327 |
-
.side .countdown-section .countdown-period {
|
1328 |
-
display: inline-block; }
|
1329 |
-
|
1330 |
-
.side .countdown-section .countdown-amount {
|
1331 |
-
margin-right: 5px; }
|
1332 |
-
|
1333 |
-
.down .countdown-section .countdown-amount,
|
1334 |
-
.down .countdown-section .countdown-period {
|
1335 |
-
display: block; }
|
1336 |
-
|
1337 |
-
/**
|
1338 |
-
* Flip Layout
|
1339 |
-
*/
|
1340 |
-
.premium-countdown-flip .premium-countdown-block {
|
1341 |
-
text-align: center;
|
1342 |
-
-js-display: inline-flex;
|
1343 |
-
display: -webkit-inline-box;
|
1344 |
-
display: -webkit-inline-flex;
|
1345 |
-
display: -moz-inline-box;
|
1346 |
-
display: -ms-inline-flexbox;
|
1347 |
-
display: inline-flex;
|
1348 |
-
-webkit-box-align: center;
|
1349 |
-
-webkit-align-items: center;
|
1350 |
-
-moz-box-align: center;
|
1351 |
-
-ms-flex-align: center;
|
1352 |
-
align-items: center; }
|
1353 |
-
.premium-countdown-flip .premium-countdown-block:last-child {
|
1354 |
-
margin-right: 0; }
|
1355 |
-
|
1356 |
-
.premium-countdown-flip .premium-countdown-label {
|
1357 |
-
overflow: hidden;
|
1358 |
-
color: #1a1a1a;
|
1359 |
-
text-transform: uppercase; }
|
1360 |
-
|
1361 |
-
.premium-countdown-flip .premium-countdown-figure {
|
1362 |
-
position: relative;
|
1363 |
-
height: 110px;
|
1364 |
-
width: 100px;
|
1365 |
-
line-height: 107px;
|
1366 |
-
background-color: #fff;
|
1367 |
-
-webkit-border-radius: 10px;
|
1368 |
-
border-radius: 10px;
|
1369 |
-
-webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
|
1370 |
-
box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08); }
|
1371 |
-
.premium-countdown-flip .premium-countdown-figure:last-child {
|
1372 |
-
margin-right: 0; }
|
1373 |
-
.premium-countdown-flip .premium-countdown-figure > span {
|
1374 |
-
position: absolute;
|
1375 |
-
left: 0;
|
1376 |
-
right: 0;
|
1377 |
-
margin: auto;
|
1378 |
-
font-weight: 700; }
|
1379 |
-
.premium-countdown-flip .premium-countdown-figure .top {
|
1380 |
-
z-index: 3;
|
1381 |
-
-webkit-transform-origin: 50% 100%;
|
1382 |
-
-ms-transform-origin: 50% 100%;
|
1383 |
-
transform-origin: 50% 100%;
|
1384 |
-
-webkit-transform: perspective(200px);
|
1385 |
-
transform: perspective(200px);
|
1386 |
-
-webkit-backface-visibility: hidden;
|
1387 |
-
backface-visibility: hidden; }
|
1388 |
-
.premium-countdown-flip .premium-countdown-figure .bottom {
|
1389 |
-
z-index: 1; }
|
1390 |
-
.premium-countdown-flip .premium-countdown-figure .bottom::before {
|
1391 |
-
content: "";
|
1392 |
-
position: absolute;
|
1393 |
-
display: block;
|
1394 |
-
top: 0;
|
1395 |
-
left: 0;
|
1396 |
-
width: 100%;
|
1397 |
-
height: 50%;
|
1398 |
-
background-color: rgba(0, 0, 0, 0.02); }
|
1399 |
-
.premium-countdown-flip .premium-countdown-figure .top-back {
|
1400 |
-
-webkit-backface-visibility: hidden;
|
1401 |
-
backface-visibility: hidden;
|
1402 |
-
z-index: 4;
|
1403 |
-
bottom: 0;
|
1404 |
-
-webkit-transform-origin: 50% 0;
|
1405 |
-
-ms-transform-origin: 50% 0;
|
1406 |
-
transform-origin: 50% 0;
|
1407 |
-
-webkit-transform: perspective(200px) rotateX(180deg);
|
1408 |
-
transform: perspective(200px) rotateX(180deg); }
|
1409 |
-
.premium-countdown-flip .premium-countdown-figure .top-back span {
|
1410 |
-
position: absolute;
|
1411 |
-
top: -100%;
|
1412 |
-
left: 0;
|
1413 |
-
right: 0;
|
1414 |
-
margin: auto; }
|
1415 |
-
.premium-countdown-flip .premium-countdown-figure .bottom-back {
|
1416 |
-
z-index: 2;
|
1417 |
-
top: 0; }
|
1418 |
-
.premium-countdown-flip .premium-countdown-figure .bottom-back span {
|
1419 |
-
position: absolute;
|
1420 |
-
top: 0;
|
1421 |
-
left: 0;
|
1422 |
-
right: 0;
|
1423 |
-
margin: auto; }
|
1424 |
-
.premium-countdown-flip .premium-countdown-figure .top,
|
1425 |
-
.premium-countdown-flip .premium-countdown-figure .bottom-back,
|
1426 |
-
.premium-countdown-flip .premium-countdown-figure .top-back {
|
1427 |
-
height: 50%;
|
1428 |
-
overflow: hidden;
|
1429 |
-
background-color: #f7f7f7;
|
1430 |
-
-webkit-border-top-left-radius: 10px;
|
1431 |
-
border-top-left-radius: 10px;
|
1432 |
-
-webkit-border-top-right-radius: 10px;
|
1433 |
-
border-top-right-radius: 10px; }
|
1434 |
-
.premium-countdown-flip .premium-countdown-figure .top-back {
|
1435 |
-
-webkit-border-bottom-left-radius: 10px;
|
1436 |
-
border-bottom-left-radius: 10px;
|
1437 |
-
-webkit-border-bottom-right-radius: 10px;
|
1438 |
-
border-bottom-right-radius: 10px; }
|
1439 |
-
.premium-countdown-flip .premium-countdown-figure .top::after,
|
1440 |
-
.premium-countdown-flip .premium-countdown-figure .bottom-back::after {
|
1441 |
-
content: "";
|
1442 |
-
position: absolute;
|
1443 |
-
z-index: -1;
|
1444 |
-
left: 0;
|
1445 |
-
bottom: 0;
|
1446 |
-
width: 100%;
|
1447 |
-
height: 100%;
|
1448 |
-
border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
|
1449 |
-
|
1450 |
-
.side .premium-countdown-figure,
|
1451 |
-
.side .premium-countdown-label {
|
1452 |
-
display: inline-block; }
|
1453 |
-
|
1454 |
-
.side .premium-countdown-figure {
|
1455 |
-
margin-right: 5px; }
|
1456 |
-
|
1457 |
-
.down .premium-countdown-figure,
|
1458 |
-
.down .premium-countdown-label {
|
1459 |
-
display: block; }
|
1460 |
-
|
1461 |
-
.down .premium-countdown-label {
|
1462 |
-
width: 100%; }
|
1463 |
-
|
1464 |
-
/**************** Premium Carousel ****************/
|
1465 |
-
/**************************************************/
|
1466 |
-
.premium-carousel-wrapper a.carousel-arrow, .premium-carousel-wrapper a.ver-carousel-arrow {
|
1467 |
-
-js-display: flex;
|
1468 |
-
display: -webkit-box;
|
1469 |
-
display: -webkit-flex;
|
1470 |
-
display: -moz-box;
|
1471 |
-
display: -ms-flexbox;
|
1472 |
-
display: flex;
|
1473 |
-
-webkit-box-align: center;
|
1474 |
-
-webkit-align-items: center;
|
1475 |
-
-moz-box-align: center;
|
1476 |
-
-ms-flex-align: center;
|
1477 |
-
align-items: center;
|
1478 |
-
-webkit-box-pack: center;
|
1479 |
-
-webkit-justify-content: center;
|
1480 |
-
-moz-box-pack: center;
|
1481 |
-
-ms-flex-pack: center;
|
1482 |
-
justify-content: center;
|
1483 |
-
width: 2em;
|
1484 |
-
height: 2em;
|
1485 |
-
line-height: 0;
|
1486 |
-
text-align: center;
|
1487 |
-
position: absolute;
|
1488 |
-
z-index: 99;
|
1489 |
-
cursor: pointer;
|
1490 |
-
-webkit-transition: all 0.3s ease-in-out;
|
1491 |
-
transition: all 0.3s ease-in-out;
|
1492 |
-
-webkit-appearance: inherit;
|
1493 |
-
border: none;
|
1494 |
-
-webkit-box-shadow: none;
|
1495 |
-
box-shadow: none; }
|
1496 |
-
|
1497 |
-
.premium-tabs-nav-list a.carousel-arrow,
|
1498 |
-
.premium-fb-rev-container a.carousel-arrow,
|
1499 |
-
.premium-blog-wrap a.carousel-arrow,
|
1500 |
-
.premium-hscroll-wrap a.carousel-arrow,
|
1501 |
-
.premium-twitter-feed-wrapper a.carousel-arrow,
|
1502 |
-
.premium-facebook-feed-wrapper a.carousel-arrow,
|
1503 |
-
.premium-instafeed-container a.carousel-arrow,
|
1504 |
-
.premium-persons-container a.carousel-arrow {
|
1505 |
-
-js-display: flex;
|
1506 |
-
display: -webkit-box;
|
1507 |
-
display: -webkit-flex;
|
1508 |
-
display: -moz-box;
|
1509 |
-
display: -ms-flexbox;
|
1510 |
-
display: flex;
|
1511 |
-
-webkit-box-align: center;
|
1512 |
-
-webkit-align-items: center;
|
1513 |
-
-moz-box-align: center;
|
1514 |
-
-ms-flex-align: center;
|
1515 |
-
align-items: center;
|
1516 |
-
-webkit-box-pack: center;
|
1517 |
-
-webkit-justify-content: center;
|
1518 |
-
-moz-box-pack: center;
|
1519 |
-
-ms-flex-pack: center;
|
1520 |
-
justify-content: center;
|
1521 |
-
width: 2em;
|
1522 |
-
height: 2em;
|
1523 |
-
line-height: 0;
|
1524 |
-
text-align: center;
|
1525 |
-
position: absolute;
|
1526 |
-
z-index: 99;
|
1527 |
-
cursor: pointer;
|
1528 |
-
-webkit-transition: all 0.3s ease-in-out;
|
1529 |
-
transition: all 0.3s ease-in-out;
|
1530 |
-
-webkit-appearance: inherit;
|
1531 |
-
border: none;
|
1532 |
-
-webkit-box-shadow: none;
|
1533 |
-
box-shadow: none; }
|
1534 |
-
|
1535 |
-
div[class^="premium-"] .slick-arrow i {
|
1536 |
-
display: block; }
|
1537 |
-
|
1538 |
-
.ver-carousel-arrow.carousel-next i {
|
1539 |
-
margin-bottom: -3px; }
|
1540 |
-
|
1541 |
-
.premium-carousel-wrapper a.slick-arrow:hover {
|
1542 |
-
-webkit-box-shadow: none !important;
|
1543 |
-
box-shadow: none !important; }
|
1544 |
-
|
1545 |
-
.premium-carousel-wrapper .premium-carousel-content-hidden {
|
1546 |
-
visibility: hidden; }
|
1547 |
-
|
1548 |
-
.premium-carousel-wrapper a.carousel-arrow {
|
1549 |
-
top: 50%; }
|
1550 |
-
|
1551 |
-
.premium-tabs-nav-list a.carousel-arrow,
|
1552 |
-
.premium-fb-rev-container a.carousel-arrow,
|
1553 |
-
.premium-blog-wrap a.carousel-arrow,
|
1554 |
-
.premium-hscroll-wrap a.carousel-arrow,
|
1555 |
-
.premium-twitter-feed-wrapper a.carousel-arrow,
|
1556 |
-
.premium-facebook-feed-wrapper a.carousel-arrow,
|
1557 |
-
.premium-instafeed-container a.carousel-arrow,
|
1558 |
-
.premium-persons-container a.carousel-arrow {
|
1559 |
-
top: 50%;
|
1560 |
-
-webkit-transform: translateY(-50%);
|
1561 |
-
-ms-transform: translateY(-50%);
|
1562 |
-
transform: translateY(-50%); }
|
1563 |
-
|
1564 |
-
.premium-carousel-wrapper a.ver-carousel-arrow {
|
1565 |
-
left: 50%;
|
1566 |
-
-webkit-transform: translateX(-50%);
|
1567 |
-
-ms-transform: translateX(-50%);
|
1568 |
-
transform: translateX(-50%); }
|
1569 |
-
|
1570 |
-
a.carousel-arrow.carousel-next {
|
1571 |
-
right: -20px; }
|
1572 |
-
|
1573 |
-
a.carousel-arrow.carousel-prev {
|
1574 |
-
left: -20px; }
|
1575 |
-
|
1576 |
-
a.ver-carousel-arrow.carousel-next {
|
1577 |
-
bottom: -56px; }
|
1578 |
-
|
1579 |
-
a.ver-carousel-arrow.carousel-prev {
|
1580 |
-
top: -45px; }
|
1581 |
-
|
1582 |
-
a.circle-bg {
|
1583 |
-
-webkit-border-radius: 100%;
|
1584 |
-
border-radius: 100%; }
|
1585 |
-
|
1586 |
-
a.circle-border {
|
1587 |
-
-webkit-border-radius: 100%;
|
1588 |
-
border-radius: 100%;
|
1589 |
-
border: solid black; }
|
1590 |
-
|
1591 |
-
a.square-border {
|
1592 |
-
border: solid black; }
|
1593 |
-
|
1594 |
-
.premium-carousel-dots-below ul.slick-dots,
|
1595 |
-
.premium-blog-wrap ul.slick-dots,
|
1596 |
-
.premium-fb-rev-reviews ul.slick-dots {
|
1597 |
-
position: relative;
|
1598 |
-
bottom: 0;
|
1599 |
-
list-style: none;
|
1600 |
-
text-align: center;
|
1601 |
-
margin: 0;
|
1602 |
-
padding: 0; }
|
1603 |
-
|
1604 |
-
.premium-carousel-dots-above ul.slick-dots {
|
1605 |
-
position: absolute;
|
1606 |
-
-js-display: flex;
|
1607 |
-
display: -webkit-box;
|
1608 |
-
display: -webkit-flex;
|
1609 |
-
display: -moz-box;
|
1610 |
-
display: -ms-flexbox;
|
1611 |
-
display: flex;
|
1612 |
-
width: auto;
|
1613 |
-
top: 50%;
|
1614 |
-
bottom: auto;
|
1615 |
-
-webkit-transform: translateY(-50%);
|
1616 |
-
-ms-transform: translateY(-50%);
|
1617 |
-
transform: translateY(-50%);
|
1618 |
-
-webkit-box-orient: vertical;
|
1619 |
-
-webkit-box-direction: normal;
|
1620 |
-
-webkit-flex-direction: column;
|
1621 |
-
-moz-box-orient: vertical;
|
1622 |
-
-moz-box-direction: normal;
|
1623 |
-
-ms-flex-direction: column;
|
1624 |
-
flex-direction: column; }
|
1625 |
-
|
1626 |
-
ul.slick-dots li {
|
1627 |
-
font-size: 10px;
|
1628 |
-
-js-display: inline-flex;
|
1629 |
-
display: -webkit-inline-box;
|
1630 |
-
display: -webkit-inline-flex;
|
1631 |
-
display: -moz-inline-box;
|
1632 |
-
display: -ms-inline-flexbox;
|
1633 |
-
display: inline-flex;
|
1634 |
-
-webkit-box-pack: center;
|
1635 |
-
-webkit-justify-content: center;
|
1636 |
-
-moz-box-pack: center;
|
1637 |
-
-ms-flex-pack: center;
|
1638 |
-
justify-content: center;
|
1639 |
-
-webkit-box-align: center;
|
1640 |
-
-webkit-align-items: center;
|
1641 |
-
-moz-box-align: center;
|
1642 |
-
-ms-flex-align: center;
|
1643 |
-
align-items: center;
|
1644 |
-
margin: 5px;
|
1645 |
-
width: 20px;
|
1646 |
-
height: 20px;
|
1647 |
-
cursor: pointer; }
|
1648 |
-
|
1649 |
-
/*
|
1650 |
-
* Custom Navigation Dot
|
1651 |
-
*/
|
1652 |
-
.premium-carousel-wrapper .premium-carousel-nav-dot,
|
1653 |
-
.premium-carousel-wrapper .premium-carousel-nav-arrow-prev,
|
1654 |
-
.premium-carousel-wrapper .premium-carousel-nav-arrow-next {
|
1655 |
-
display: none; }
|
1656 |
-
|
1657 |
-
.premium-carousel-wrapper ul.slick-dots svg {
|
1658 |
-
width: 20px;
|
1659 |
-
height: 20px; }
|
1660 |
-
|
1661 |
-
/* Ripple Out */
|
1662 |
-
@-webkit-keyframes hvr-ripple-out {
|
1663 |
-
0% {
|
1664 |
-
-webkit-transform: scale(1);
|
1665 |
-
transform: scale(1);
|
1666 |
-
opacity: 1; }
|
1667 |
-
100% {
|
1668 |
-
-webkit-transform: scale(1.5);
|
1669 |
-
transform: scale(1.5);
|
1670 |
-
opacity: 0; } }
|
1671 |
-
@keyframes hvr-ripple-out {
|
1672 |
-
0% {
|
1673 |
-
-webkit-transform: scale(1);
|
1674 |
-
transform: scale(1);
|
1675 |
-
opacity: 1; }
|
1676 |
-
100% {
|
1677 |
-
-webkit-transform: scale(1.5);
|
1678 |
-
transform: scale(1.5);
|
1679 |
-
opacity: 0; } }
|
1680 |
-
|
1681 |
-
.premium-carousel-ripple-yes .premium-carousel-wrapper {
|
1682 |
-
padding-bottom: 1px; }
|
1683 |
-
|
1684 |
-
.premium-carousel-ripple-yes ul.slick-dots li {
|
1685 |
-
position: relative; }
|
1686 |
-
.premium-carousel-ripple-yes ul.slick-dots li i {
|
1687 |
-
position: relative;
|
1688 |
-
z-index: 1; }
|
1689 |
-
.premium-carousel-ripple-yes ul.slick-dots li:hover:before {
|
1690 |
-
content: "";
|
1691 |
-
position: absolute;
|
1692 |
-
-webkit-transform: scale(1);
|
1693 |
-
-ms-transform: scale(1);
|
1694 |
-
transform: scale(1);
|
1695 |
-
top: 0;
|
1696 |
-
right: 0;
|
1697 |
-
bottom: 0;
|
1698 |
-
left: 0;
|
1699 |
-
-webkit-border-radius: 50%;
|
1700 |
-
border-radius: 50%;
|
1701 |
-
pointer-events: none;
|
1702 |
-
background-color: rgba(0, 0, 0, 0.15); }
|
1703 |
-
.premium-carousel-ripple-yes ul.slick-dots li.slick-active:hover:before {
|
1704 |
-
background-color: rgba(0, 0, 0, 0.3); }
|
1705 |
-
.premium-carousel-ripple-yes ul.slick-dots li:hover:before {
|
1706 |
-
-webkit-animation: hvr-ripple-out 1.3s infinite;
|
1707 |
-
animation: hvr-ripple-out 1.3s infinite; }
|
1708 |
-
|
1709 |
-
.premium-carousel-wrapper.premium-carousel-scale .slick-slide {
|
1710 |
-
-webkit-transform: scale(1.25, 1.25);
|
1711 |
-
-ms-transform: scale(1.25, 1.25);
|
1712 |
-
transform: scale(1.25, 1.25);
|
1713 |
-
-webkit-transition: all 0.3s ease-in-out !important;
|
1714 |
-
transition: all 0.3s ease-in-out !important; }
|
1715 |
-
|
1716 |
-
.premium-carousel-wrapper.premium-carousel-scale div.slick-active {
|
1717 |
-
-webkit-transform: scale(1, 1);
|
1718 |
-
-ms-transform: scale(1, 1);
|
1719 |
-
transform: scale(1, 1); }
|
1720 |
-
|
1721 |
-
[dir="rtl"] .premium-carousel-inner .slick-slide {
|
1722 |
-
float: right; }
|
1723 |
-
|
1724 |
-
/**************** Premium Counter ***************/
|
1725 |
-
/************************************************/
|
1726 |
-
.premium-counter-area {
|
1727 |
-
padding: 10px 0;
|
1728 |
-
-js-display: flex;
|
1729 |
-
display: -webkit-box;
|
1730 |
-
display: -webkit-flex;
|
1731 |
-
display: -moz-box;
|
1732 |
-
display: -ms-flexbox;
|
1733 |
-
display: flex;
|
1734 |
-
-webkit-box-pack: center;
|
1735 |
-
-webkit-justify-content: center;
|
1736 |
-
-moz-box-pack: center;
|
1737 |
-
-ms-flex-pack: center;
|
1738 |
-
justify-content: center;
|
1739 |
-
-webkit-box-align: center;
|
1740 |
-
-webkit-align-items: center;
|
1741 |
-
-moz-box-align: center;
|
1742 |
-
-ms-flex-align: center;
|
1743 |
-
align-items: center; }
|
1744 |
-
.premium-counter-area.top {
|
1745 |
-
-webkit-box-orient: vertical;
|
1746 |
-
-webkit-box-direction: normal;
|
1747 |
-
-webkit-flex-direction: column;
|
1748 |
-
-moz-box-orient: vertical;
|
1749 |
-
-moz-box-direction: normal;
|
1750 |
-
-ms-flex-direction: column;
|
1751 |
-
flex-direction: column; }
|
1752 |
-
.premium-counter-area.right {
|
1753 |
-
-webkit-box-orient: horizontal;
|
1754 |
-
-webkit-box-direction: reverse;
|
1755 |
-
-webkit-flex-direction: row-reverse;
|
1756 |
-
-moz-box-orient: horizontal;
|
1757 |
-
-moz-box-direction: reverse;
|
1758 |
-
-ms-flex-direction: row-reverse;
|
1759 |
-
flex-direction: row-reverse; }
|
1760 |
-
.premium-counter-area.right .premium-counter-icon {
|
1761 |
-
padding-left: 20px; }
|
1762 |
-
.premium-counter-area.left .premium-counter-icon {
|
1763 |
-
padding-right: 20px; }
|
1764 |
-
.premium-counter-area .premium-counter-icon .icon i.fa:before {
|
1765 |
-
vertical-align: text-top; }
|
1766 |
-
.premium-counter-area .premium-counter-icon span.icon {
|
1767 |
-
text-align: center;
|
1768 |
-
display: inline-block;
|
1769 |
-
vertical-align: middle; }
|
1770 |
-
.premium-counter-area .premium-counter-icon .circle {
|
1771 |
-
-webkit-border-radius: 100%;
|
1772 |
-
border-radius: 100%; }
|
1773 |
-
.premium-counter-area .premium-counter-icon img,
|
1774 |
-
.premium-counter-area .premium-counter-icon svg {
|
1775 |
-
width: 80px; }
|
1776 |
-
.premium-counter-area .premium-counter-icon .premium-counter-animation svg {
|
1777 |
-
height: 80px; }
|
1778 |
-
.premium-counter-area .premium-counter-title {
|
1779 |
-
padding: 0;
|
1780 |
-
margin: 0; }
|
1781 |
-
.premium-counter-area .premium-counter-value-wrap {
|
1782 |
-
-js-display: flex;
|
1783 |
-
display: -webkit-box;
|
1784 |
-
display: -webkit-flex;
|
1785 |
-
display: -moz-box;
|
1786 |
-
display: -ms-flexbox;
|
1787 |
-
display: flex;
|
1788 |
-
-webkit-box-align: center;
|
1789 |
-
-webkit-align-items: center;
|
1790 |
-
-moz-box-align: center;
|
1791 |
-
-ms-flex-align: center;
|
1792 |
-
align-items: center; }
|
1793 |
-
|
1794 |
-
.premium-init-wrapper.right {
|
1795 |
-
text-align: right; }
|
1796 |
-
|
1797 |
-
span.icon.flex-width {
|
1798 |
-
width: auto !important;
|
1799 |
-
height: auto !important; }
|
1800 |
-
|
1801 |
-
.premium-counter-area .premium-counter-init {
|
1802 |
-
font-size: 35px; }
|
1803 |
-
|
1804 |
-
/**************** Premium Image Separator ****************/
|
1805 |
-
/*********************************************************/
|
1806 |
-
.premium-image-separator-container {
|
1807 |
-
position: absolute;
|
1808 |
-
width: 100%;
|
1809 |
-
z-index: 2;
|
1810 |
-
top: auto;
|
1811 |
-
-webkit-transition: all 0.3s ease-in-out;
|
1812 |
-
transition: all 0.3s ease-in-out; }
|
1813 |
-
.premium-image-separator-container svg,
|
1814 |
-
.premium-image-separator-container img {
|
1815 |
-
display: inline-block !important;
|
1816 |
-
-webkit-mask-repeat: no-repeat;
|
1817 |
-
mask-repeat: no-repeat;
|
1818 |
-
-webkit-mask-position: center;
|
1819 |
-
mask-position: center; }
|
1820 |
-
.premium-image-separator-container .premium-image-separator-link {
|
1821 |
-
position: absolute;
|
1822 |
-
z-index: 9999;
|
1823 |
-
top: 0;
|
1824 |
-
left: 0;
|
1825 |
-
width: 100%;
|
1826 |
-
height: 100%;
|
1827 |
-
text-decoration: none; }
|
1828 |
-
.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 {
|
1829 |
-
-webkit-box-shadow: none !important;
|
1830 |
-
box-shadow: none !important;
|
1831 |
-
outline: none !important;
|
1832 |
-
border: none !important;
|
1833 |
-
text-decoration: none !important; }
|
1834 |
-
.premium-image-separator-container i {
|
1835 |
-
padding: 0.1em;
|
1836 |
-
-webkit-transition: all 0.3s ease-in-out;
|
1837 |
-
transition: all 0.3s ease-in-out; }
|
1838 |
-
|
1839 |
-
/**************** Premium Modal Box ****************/
|
1840 |
-
/***************************************************/
|
1841 |
-
.premium-modal-trigger-btn,
|
1842 |
-
.premium-modal-box-modal-lower-close {
|
1843 |
-
display: inline-block;
|
1844 |
-
padding: 6px 12px;
|
1845 |
-
margin-bottom: 0;
|
1846 |
-
font-size: 14px;
|
1847 |
-
font-weight: normal;
|
1848 |
-
line-height: 1.42857143;
|
1849 |
-
text-align: center;
|
1850 |
-
white-space: nowrap;
|
1851 |
-
vertical-align: middle;
|
1852 |
-
-ms-touch-action: manipulation;
|
1853 |
-
touch-action: manipulation;
|
1854 |
-
cursor: pointer;
|
1855 |
-
-webkit-user-select: none;
|
1856 |
-
-moz-user-select: none;
|
1857 |
-
-ms-user-select: none;
|
1858 |
-
user-select: none;
|
1859 |
-
background-image: none;
|
1860 |
-
border: 1px solid transparent; }
|
1861 |
-
|
1862 |
-
.premium-modal-trigger-btn i {
|
1863 |
-
-webkit-transition: all 0.3s ease-in-out;
|
1864 |
-
transition: all 0.3s ease-in-out; }
|
1865 |
-
|
1866 |
-
.premium-btn-md {
|
1867 |
-
padding: 8px 14px;
|
1868 |
-
font-size: 16px;
|
1869 |
-
line-height: 1.2; }
|
1870 |
-
|
1871 |
-
.premium-btn-lg {
|
1872 |
-
padding: 10px 16px;
|
1873 |
-
font-size: 18px;
|
1874 |
-
line-height: 1.3333333; }
|
1875 |
-
|
1876 |
-
.premium-btn-block {
|
1877 |
-
display: block;
|
1878 |
-
width: 100%; }
|
1879 |
-
|
1880 |
-
.premium-modal-box-modal-close {
|
1881 |
-
float: right;
|
1882 |
-
font-size: 21px;
|
1883 |
-
font-weight: bold;
|
1884 |
-
line-height: 1;
|
1885 |
-
color: #000; }
|
1886 |
-
.premium-modal-box-modal-close:hover, .premium-modal-box-modal-close:focus {
|
1887 |
-
color: #000;
|
1888 |
-
text-decoration: none;
|
1889 |
-
cursor: pointer; }
|
1890 |
-
|
1891 |
-
button.premium-modal-box-modal-close {
|
1892 |
-
-webkit-appearance: none;
|
1893 |
-
padding: 0;
|
1894 |
-
cursor: pointer;
|
1895 |
-
background: transparent;
|
1896 |
-
border: 0; }
|
1897 |
-
|
1898 |
-
.premium-modal-box-modal {
|
1899 |
-
position: fixed;
|
1900 |
-
top: 0;
|
1901 |
-
right: 0;
|
1902 |
-
bottom: 0;
|
1903 |
-
left: 0;
|
1904 |
-
z-index: 1050;
|
1905 |
-
display: none;
|
1906 |
-
-webkit-overflow-scrolling: touch;
|
1907 |
-
outline: 0;
|
1908 |
-
padding: 0 !important;
|
1909 |
-
background: rgba(0, 0, 0, 0.5);
|
1910 |
-
-webkit-box-align: center;
|
1911 |
-
-webkit-align-items: center;
|
1912 |
-
-moz-box-align: center;
|
1913 |
-
-ms-flex-align: center;
|
1914 |
-
align-items: center;
|
1915 |
-
-webkit-box-pack: center;
|
1916 |
-
-webkit-justify-content: center;
|
1917 |
-
-moz-box-pack: center;
|
1918 |
-
-ms-flex-pack: center;
|
1919 |
-
justify-content: center; }
|
1920 |
-
.premium-modal-box-modal .premium-modal-box-modal-dialog {
|
1921 |
-
position: absolute;
|
1922 |
-
max-height: -webkit-calc(100vh - 150px);
|
1923 |
-
max-height: calc(100vh - 150px);
|
1924 |
-
-js-display: flex;
|
1925 |
-
display: -webkit-box;
|
1926 |
-
display: -webkit-flex;
|
1927 |
-
display: -moz-box;
|
1928 |
-
display: -ms-flexbox;
|
1929 |
-
display: flex;
|
1930 |
-
-webkit-box-orient: vertical;
|
1931 |
-
-webkit-box-direction: normal;
|
1932 |
-
-webkit-flex-direction: column;
|
1933 |
-
-moz-box-orient: vertical;
|
1934 |
-
-moz-box-direction: normal;
|
1935 |
-
-ms-flex-direction: column;
|
1936 |
-
flex-direction: column;
|
1937 |
-
opacity: 0; }
|
1938 |
-
|
1939 |
-
.premium-modal-box-modal-content {
|
1940 |
-
background-color: #fff;
|
1941 |
-
background-clip: padding-box;
|
1942 |
-
border: 1px solid rgba(0, 0, 0, 0.2);
|
1943 |
-
-webkit-border-radius: 6px;
|
1944 |
-
border-radius: 6px;
|
1945 |
-
outline: 0; }
|
1946 |
-
|
1947 |
-
.premium-modal-backdrop.premium-in {
|
1948 |
-
filter: alpha(opacity=50);
|
1949 |
-
opacity: 0.5 !important; }
|
1950 |
-
|
1951 |
-
.premium-in {
|
1952 |
-
opacity: 1; }
|
1953 |
-
|
1954 |
-
.premium-modal-backdrop {
|
1955 |
-
position: fixed;
|
1956 |
-
top: 0;
|
1957 |
-
right: 0;
|
1958 |
-
bottom: 0;
|
1959 |
-
left: 0;
|
1960 |
-
z-index: 1040;
|
1961 |
-
background-color: #000; }
|
1962 |
-
|
1963 |
-
.premium-in {
|
1964 |
-
-js-display: flex !important;
|
1965 |
-
display: -webkit-box !important;
|
1966 |
-
display: -webkit-flex !important;
|
1967 |
-
display: -moz-box !important;
|
1968 |
-
display: -ms-flexbox !important;
|
1969 |
-
display: flex !important; }
|
1970 |
-
|
1971 |
-
.premium-modal-box-modal-header {
|
1972 |
-
-js-display: flex;
|
1973 |
-
display: -webkit-box;
|
1974 |
-
display: -webkit-flex;
|
1975 |
-
display: -moz-box;
|
1976 |
-
display: -ms-flexbox;
|
1977 |
-
display: flex;
|
1978 |
-
-webkit-box-pack: justify;
|
1979 |
-
-webkit-justify-content: space-between;
|
1980 |
-
-moz-box-pack: justify;
|
1981 |
-
-ms-flex-pack: justify;
|
1982 |
-
justify-content: space-between;
|
1983 |
-
-webkit-box-align: center;
|
1984 |
-
-webkit-align-items: center;
|
1985 |
-
-moz-box-align: center;
|
1986 |
-
-ms-flex-align: center;
|
1987 |
-
align-items: center;
|
1988 |
-
padding: 5px 15px;
|
1989 |
-
border-bottom: 1px solid #e5e5e5; }
|
1990 |
-
.premium-modal-box-modal-header .premium-modal-box-modal-close {
|
1991 |
-
margin-top: -2px; }
|
1992 |
-
.premium-modal-box-modal-header .premium-modal-box-modal-title {
|
1993 |
-
-js-display: flex;
|
1994 |
-
display: -webkit-box;
|
1995 |
-
display: -webkit-flex;
|
1996 |
-
display: -moz-box;
|
1997 |
-
display: -ms-flexbox;
|
1998 |
-
display: flex;
|
1999 |
-
-webkit-box-align: center;
|
2000 |
-
-webkit-align-items: center;
|
2001 |
-
-moz-box-align: center;
|
2002 |
-
-ms-flex-align: center;
|
2003 |
-
align-items: center;
|
2004 |
-
margin: 0;
|
2005 |
-
padding: 0; }
|
2006 |
-
.premium-modal-box-modal-header .premium-modal-box-modal-title svg {
|
2007 |
-
width: 50px;
|
2008 |
-
height: 60px; }
|
2009 |
-
|
2010 |
-
.premium-modal-box-modal-body {
|
2011 |
-
position: relative;
|
2012 |
-
padding: 15px;
|
2013 |
-
overflow: hidden; }
|
2014 |
-
|
2015 |
-
.premium-modal-box-modal-footer {
|
2016 |
-
padding: 15px;
|
2017 |
-
text-align: right;
|
2018 |
-
border-top: 1px solid #e5e5e5; }
|
2019 |
-
|
2020 |
-
.premium-modal-scrollbar-measure {
|
2021 |
-
position: absolute;
|
2022 |
-
top: -9999px;
|
2023 |
-
width: 50px;
|
2024 |
-
height: 50px;
|
2025 |
-
overflow: scroll; }
|
2026 |
-
|
2027 |
-
.premium-modal-trigger-text {
|
2028 |
-
background: none !important;
|
2029 |
-
display: inline-block; }
|
2030 |
-
|
2031 |
-
.premium-modal-box-container {
|
2032 |
-
width: 100% !important; }
|
2033 |
-
|
2034 |
-
/*Open Modal Button Style*/
|
2035 |
-
.premium-modal-trigger-container .premium-modal-trigger-btn {
|
2036 |
-
border: none;
|
2037 |
-
-webkit-transition: all 0.3s ease-in-out;
|
2038 |
-
transition: all 0.3s ease-in-out; }
|
2039 |
-
|
2040 |
-
.premium-modal-trigger-container .premium-modal-trigger-img,
|
2041 |
-
.premium-modal-trigger-container .premium-modal-trigger-text,
|
2042 |
-
.premium-modal-trigger-container .premium-modal-trigger-animation {
|
2043 |
-
cursor: pointer; }
|
2044 |
-
|
2045 |
-
.premium-modal-trigger-container .premium-modal-trigger-animation {
|
2046 |
-
display: inline-block;
|
2047 |
-
width: 200px;
|
2048 |
-
height: 200px;
|
2049 |
-
-webkit-transition: all 0.3s ease-in-out;
|
2050 |
-
transition: all 0.3s ease-in-out; }
|
2051 |
-
|
2052 |
-
/*Image on Modal Header Style*/
|
2053 |
-
.premium-modal-box-modal-header img {
|
2054 |
-
width: 48px;
|
2055 |
-
padding-right: 5px; }
|
2056 |
-
|
2057 |
-
.premium-modal-box-modal-header i,
|
2058 |
-
.premium-modal-box-modal-header svg {
|
2059 |
-
padding-right: 6px; }
|
2060 |
-
|
2061 |
-
.premium-modal-box-modal-close {
|
2062 |
-
position: relative;
|
2063 |
-
z-index: 99; }
|
2064 |
-
|
2065 |
-
.premium-modal-trigger-img,
|
2066 |
-
.premium-modal-trigger-text,
|
2067 |
-
.premium-modal-box-close-button-container,
|
2068 |
-
.premium-modal-box-modal-close,
|
2069 |
-
.premium-modal-box-modal-lower-close {
|
2070 |
-
-webkit-transition: all 0.3s ease-in-out;
|
2071 |
-
transition: all 0.3s ease-in-out; }
|
2072 |
-
|
2073 |
-
@media (min-width: 768px) {
|
2074 |
-
.premium-modal-box-modal-dialog {
|
2075 |
-
width: 700px;
|
2076 |
-
max-height: 600px;
|
2077 |
-
overflow: auto; } }
|
2078 |
-
|
2079 |
-
@media (max-width: 767px) {
|
2080 |
-
.premium-modal-box-modal-dialog {
|
2081 |
-
width: 100%;
|
2082 |
-
max-height: 500px;
|
2083 |
-
overflow: auto; } }
|
2084 |
-
|
2085 |
-
.premium-modal-box-container[data-modal-animation*="animated-"] {
|
2086 |
-
opacity: 0; }
|
2087 |
-
|
2088 |
-
/**************** Premium Progress Bar ****************/
|
2089 |
-
/******************************************************/
|
2090 |
-
.premium-progressbar-container {
|
2091 |
-
position: relative; }
|
2092 |
-
|
2093 |
-
.premium-progressbar-bar-wrap {
|
2094 |
-
position: relative;
|
2095 |
-
text-align: left;
|
2096 |
-
overflow: hidden;
|
2097 |
-
height: 25px;
|
2098 |
-
margin-bottom: 50px;
|
2099 |
-
background-color: #f5f5f5;
|
2100 |
-
-webkit-border-radius: 4px;
|
2101 |
-
border-radius: 4px;
|
2102 |
-
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
2103 |
-
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }
|
2104 |
-
.premium-progressbar-bar-wrap.premium-progressbar-dots {
|
2105 |
-
background-color: transparent;
|
2106 |
-
width: 100%;
|
2107 |
-
-js-display: flex;
|
2108 |
-
display: -webkit-box;
|
2109 |
-
display: -webkit-flex;
|
2110 |
-
display: -moz-box;
|
2111 |
-
display: -ms-flexbox;
|
2112 |
-
display: flex;
|
2113 |
-
height: auto;
|
2114 |
-
-webkit-box-shadow: none;
|
2115 |
-
box-shadow: none; }
|
2116 |
-
.premium-progressbar-bar-wrap .progress-segment {
|
2117 |
-
position: relative;
|
2118 |
-
width: 25px;
|
2119 |
-
height: 25px;
|
2120 |
-
-webkit-border-radius: 50%;
|
2121 |
-
border-radius: 50%;
|
2122 |
-
overflow: hidden;
|
2123 |
-
background-color: #f5f5f5; }
|
2124 |
-
.premium-progressbar-bar-wrap .progress-segment.filled {
|
2125 |
-
background: #6ec1e4; }
|
2126 |
-
.premium-progressbar-bar-wrap .progress-segment:not(:first-child):not(:last-child) {
|
2127 |
-
margin: 0 4px; }
|
2128 |
-
.premium-progressbar-bar-wrap .progress-segment:first-child {
|
2129 |
-
margin-right: 4px; }
|
2130 |
-
.premium-progressbar-bar-wrap .progress-segment:last-child {
|
2131 |
-
margin-left: 4px; }
|
2132 |
-
.premium-progressbar-bar-wrap .progress-segment .segment-inner {
|
2133 |
-
position: absolute;
|
2134 |
-
top: 0;
|
2135 |
-
left: 0;
|
2136 |
-
height: 100%;
|
2137 |
-
background-color: #6ec1e4; }
|
2138 |
-
|
2139 |
-
.premium-progressbar-bar {
|
2140 |
-
float: left;
|
2141 |
-
width: 0%;
|
2142 |
-
height: 100%;
|
2143 |
-
font-size: 12px;
|
2144 |
-
line-height: 20px;
|
2145 |
-
background: #6ec1e4;
|
2146 |
-
text-align: center;
|
2147 |
-
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
2148 |
-
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); }
|
2149 |
-
|
2150 |
-
.premium-progressbar-striped .premium-progressbar-bar {
|
2151 |
-
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);
|
2152 |
-
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);
|
2153 |
-
-webkit-background-size: 40px 40px;
|
2154 |
-
background-size: 40px 40px; }
|
2155 |
-
|
2156 |
-
.premium-progressbar-active .premium-progressbar-bar {
|
2157 |
-
-webkit-animation: progress-bar-stripes 2s linear infinite;
|
2158 |
-
animation: progress-bar-stripes 2s linear infinite; }
|
2159 |
-
|
2160 |
-
.premium-progressbar-gradient .premium-progressbar-bar {
|
2161 |
-
-webkit-background-size: 400% 400% !important;
|
2162 |
-
background-size: 400% 400% !important;
|
2163 |
-
-webkit-animation: progress-bar-gradient 10s ease-in-out infinite;
|
2164 |
-
animation: progress-bar-gradient 10s ease-in-out infinite; }
|
2165 |
-
|
2166 |
-
.premium-progressbar-bar {
|
2167 |
-
position: absolute;
|
2168 |
-
overflow: hidden;
|
2169 |
-
line-height: 20px; }
|
2170 |
-
|
2171 |
-
.premium-progressbar-container .clearfix {
|
2172 |
-
clear: both; }
|
2173 |
-
|
2174 |
-
.premium-progressbar-bar {
|
2175 |
-
-webkit-transition: width 0s ease-in-out !important;
|
2176 |
-
transition: width 0s ease-in-out !important; }
|
2177 |
-
|
2178 |
-
.premium-progressbar-container p:first-of-type {
|
2179 |
-
margin: 0;
|
2180 |
-
float: left; }
|
2181 |
-
|
2182 |
-
.premium-progressbar-container p:nth-of-type(2) {
|
2183 |
-
margin: 0;
|
2184 |
-
float: right; }
|
2185 |
-
|
2186 |
-
.premium-progressbar-name {
|
2187 |
-
left: 50%;
|
2188 |
-
top: 0;
|
2189 |
-
right: 0;
|
2190 |
-
-webkit-transform: translateX(-12.5px);
|
2191 |
-
-ms-transform: translateX(-12.5px);
|
2192 |
-
transform: translateX(-12.5px);
|
2193 |
-
z-index: 1; }
|
2194 |
-
|
2195 |
-
.premium-progressbar-multiple-label {
|
2196 |
-
position: relative;
|
2197 |
-
float: left;
|
2198 |
-
width: 0;
|
2199 |
-
left: 50%; }
|
2200 |
-
|
2201 |
-
.premium-progressbar-center-label {
|
2202 |
-
position: relative;
|
2203 |
-
white-space: nowrap; }
|
2204 |
-
|
2205 |
-
.premium-progressbar-arrow {
|
2206 |
-
height: 15px;
|
2207 |
-
left: 50%;
|
2208 |
-
display: inline-block;
|
2209 |
-
border-left: 7px solid transparent;
|
2210 |
-
border-right: 7px solid transparent;
|
2211 |
-
border-top: 11px solid;
|
2212 |
-
-webkit-transform: translateX(-50%);
|
2213 |
-
-ms-transform: translateX(-50%);
|
2214 |
-
transform: translateX(-50%); }
|
2215 |
-
|
2216 |
-
.premium-progressbar-pin {
|
2217 |
-
border-left: 1px solid;
|
2218 |
-
height: 12px;
|
2219 |
-
left: 50%;
|
2220 |
-
display: inline-block; }
|
2221 |
-
|
2222 |
-
/**
|
2223 |
-
* Circle Progress Bar
|
2224 |
-
*/
|
2225 |
-
.premium-progressbar-circle-wrap {
|
2226 |
-
width: 200px;
|
2227 |
-
height: 200px;
|
2228 |
-
position: relative;
|
2229 |
-
margin: 0 auto; }
|
2230 |
-
.premium-progressbar-circle-wrap .premium-progressbar-circle {
|
2231 |
-
position: absolute;
|
2232 |
-
top: 0;
|
2233 |
-
left: 0;
|
2234 |
-
width: 100%;
|
2235 |
-
height: 100%;
|
2236 |
-
-webkit-clip-path: inset(0 0 0 50%);
|
2237 |
-
clip-path: inset(0 0 0 50%); }
|
2238 |
-
.premium-progressbar-circle-wrap .premium-progressbar-circle div {
|
2239 |
-
position: absolute;
|
2240 |
-
left: 0;
|
2241 |
-
top: 0;
|
2242 |
-
height: 100%;
|
2243 |
-
width: 100%;
|
2244 |
-
border-width: 6px;
|
2245 |
-
border-style: solid;
|
2246 |
-
border-color: #54595f;
|
2247 |
-
-webkit-border-radius: 50%;
|
2248 |
-
border-radius: 50%;
|
2249 |
-
-webkit-clip-path: inset(0 50% 0 0);
|
2250 |
-
clip-path: inset(0 50% 0 0); }
|
2251 |
-
.premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-left {
|
2252 |
-
-webkit-transform: rotate(0);
|
2253 |
-
-ms-transform: rotate(0);
|
2254 |
-
transform: rotate(0); }
|
2255 |
-
.premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-right {
|
2256 |
-
-webkit-transform: rotate(180deg);
|
2257 |
-
-ms-transform: rotate(180deg);
|
2258 |
-
transform: rotate(180deg);
|
2259 |
-
visibility: hidden; }
|
2260 |
-
.premium-progressbar-circle-wrap .premium-progressbar-circle-base {
|
2261 |
-
width: 100%;
|
2262 |
-
height: 100%;
|
2263 |
-
border: 6px solid #eee;
|
2264 |
-
-webkit-border-radius: 50%;
|
2265 |
-
border-radius: 50%; }
|
2266 |
-
.premium-progressbar-circle-wrap .premium-progressbar-circle-content {
|
2267 |
-
position: absolute;
|
2268 |
-
top: 0;
|
2269 |
-
left: 0;
|
2270 |
-
width: 100%;
|
2271 |
-
height: 100%;
|
2272 |
-
-js-display: flex;
|
2273 |
-
display: -webkit-box;
|
2274 |
-
display: -webkit-flex;
|
2275 |
-
display: -moz-box;
|
2276 |
-
display: -ms-flexbox;
|
2277 |
-
display: flex;
|
2278 |
-
-webkit-box-orient: vertical;
|
2279 |
-
-webkit-box-direction: normal;
|
2280 |
-
-webkit-flex-direction: column;
|
2281 |
-
-moz-box-orient: vertical;
|
2282 |
-
-moz-box-direction: normal;
|
2283 |
-
-ms-flex-direction: column;
|
2284 |
-
flex-direction: column;
|
2285 |
-
-webkit-box-pack: center;
|
2286 |
-
-webkit-justify-content: center;
|
2287 |
-
-moz-box-pack: center;
|
2288 |
-
-ms-flex-pack: center;
|
2289 |
-
justify-content: center;
|
2290 |
-
-webkit-box-align: center;
|
2291 |
-
-webkit-align-items: center;
|
2292 |
-
-moz-box-align: center;
|
2293 |
-
-ms-flex-align: center;
|
2294 |
-
align-items: center; }
|
2295 |
-
.premium-progressbar-circle-wrap .premium-lottie-animation {
|
2296 |
-
line-height: 1; }
|
2297 |
-
|
2298 |
-
@-webkit-keyframes progress-bar-stripes {
|
2299 |
-
from {
|
2300 |
-
background-position: 0 0; }
|
2301 |
-
to {
|
2302 |
-
background-position: 40px 0; } }
|
2303 |
-
|
2304 |
-
@keyframes progress-bar-stripes {
|
2305 |
-
from {
|
2306 |
-
background-position: 0 0; }
|
2307 |
-
to {
|
2308 |
-
background-position: 40px 0; } }
|
2309 |
-
|
2310 |
-
@-webkit-keyframes progress-bar-gradient {
|
2311 |
-
0% {
|
2312 |
-
background-position: 0% 50%; }
|
2313 |
-
50% {
|
2314 |
-
background-position: 100% 50%; }
|
2315 |
-
100% {
|
2316 |
-
background-position: 0% 50%; } }
|
2317 |
-
|
2318 |
-
@keyframes progress-bar-gradient {
|
2319 |
-
0% {
|
2320 |
-
background-position: 0% 50%; }
|
2321 |
-
50% {
|
2322 |
-
background-position: 100% 50%; }
|
2323 |
-
100% {
|
2324 |
-
background-position: 0% 50%; } }
|
2325 |
-
|
2326 |
-
/**************** Premium Testimonials ****************/
|
2327 |
-
/******************************************************/
|
2328 |
-
.premium-testimonial-box {
|
2329 |
-
width: 100%;
|
2330 |
-
background: transparent;
|
2331 |
-
-webkit-transition: all 0.3s ease-in-out;
|
2332 |
-
transition: all 0.3s ease-in-out; }
|
2333 |
-
.premium-testimonial-box .premium-testimonial-author-info {
|
2334 |
-
-js-display: flex;
|
2335 |
-
display: -webkit-box;
|
2336 |
-
display: -webkit-flex;
|
2337 |
-
display: -moz-box;
|
2338 |
-
display: -ms-flexbox;
|
2339 |
-
display: flex;
|
2340 |
-
-webkit-box-pack: center;
|
2341 |
-
-webkit-justify-content: center;
|
2342 |
-
-moz-box-pack: center;
|
2343 |
-
-ms-flex-pack: center;
|
2344 |
-
justify-content: center;
|
2345 |
-
-webkit-box-align: center;
|
2346 |
-
-webkit-align-items: center;
|
2347 |
-
-moz-box-align: center;
|
2348 |
-
-ms-flex-align: center;
|
2349 |
-
align-items: center; }
|
2350 |
-
.premium-testimonial-box .premium-testimonial-person-name,
|
2351 |
-
.premium-testimonial-box .premium-testimonial-company-name {
|
2352 |
-
font-weight: 600;
|
2353 |
-
margin: 0; }
|
2354 |
-
|
2355 |
-
.premium-testimonial-container {
|
2356 |
-
position: relative; }
|
2357 |
-
|
2358 |
-
.premium-testimonial-img-wrapper {
|
2359 |
-
margin-left: auto;
|
2360 |
-
margin-right: auto;
|
2361 |
-
overflow: hidden;
|
2362 |
-
border-style: solid !important; }
|
2363 |
-
.premium-testimonial-img-wrapper.circle {
|
2364 |
-
-webkit-border-radius: 50%;
|
2365 |
-
border-radius: 50%; }
|
2366 |
-
.premium-testimonial-img-wrapper.rounded {
|
2367 |
-
-webkit-border-radius: 15px;
|
2368 |
-
border-radius: 15px; }
|
2369 |
-
.premium-testimonial-img-wrapper img {
|
2370 |
-
-o-object-fit: cover;
|
2371 |
-
object-fit: cover;
|
2372 |
-
width: 100%;
|
2373 |
-
height: 100% !important; }
|
2374 |
-
|
2375 |
-
.premium-testimonial-content-wrapper {
|
2376 |
-
position: relative;
|
2377 |
-
-js-display: flex;
|
2378 |
-
display: -webkit-box;
|
2379 |
-
display: -webkit-flex;
|
2380 |
-
display: -moz-box;
|
2381 |
-
display: -ms-flexbox;
|
2382 |
-
display: flex;
|
2383 |
-
-webkit-box-orient: vertical;
|
2384 |
-
-webkit-box-direction: normal;
|
2385 |
-
-webkit-flex-direction: column;
|
2386 |
-
-moz-box-orient: vertical;
|
2387 |
-
-moz-box-direction: normal;
|
2388 |
-
-ms-flex-direction: column;
|
2389 |
-
flex-direction: column;
|
2390 |
-
z-index: 2;
|
2391 |
-
width: 100%;
|
2392 |
-
padding: 20px;
|
2393 |
-
text-align: center; }
|
2394 |
-
|
2395 |
-
.premium-testimonial-clear-float {
|
2396 |
-
clear: both; }
|
2397 |
-
|
2398 |
-
.premium-testimonial-upper-quote,
|
2399 |
-
.premium-testimonial-lower-quote {
|
2400 |
-
position: absolute;
|
2401 |
-
z-index: 1; }
|
2402 |
-
|
2403 |
-
/**************** Premium Dual Heading *****************/
|
2404 |
-
/*******************************************************/
|
2405 |
-
.premium-dual-header-container .premium-dual-header-first-header,
|
2406 |
-
.premium-dual-header-container .premium-dual-header-second-header {
|
2407 |
-
position: relative;
|
2408 |
-
padding: 0;
|
2409 |
-
margin: 0;
|
2410 |
-
display: inline-block;
|
2411 |
-
-webkit-transform: translate(0, 0);
|
2412 |
-
-ms-transform: translate(0, 0);
|
2413 |
-
transform: translate(0, 0); }
|
2414 |
-
|
2415 |
-
.premium-dual-header-first-clip .premium-dual-header-first-span,
|
2416 |
-
.premium-dual-header-second-clip {
|
2417 |
-
-webkit-text-fill-color: transparent;
|
2418 |
-
-webkit-background-clip: text;
|
2419 |
-
background-clip: text; }
|
2420 |
-
|
2421 |
-
.premium-dual-header-first-clip.stroke .premium-dual-header-first-span,
|
2422 |
-
.premium-dual-header-second-clip.stroke {
|
2423 |
-
-webkit-text-stroke-color: transparent;
|
2424 |
-
-webkit-text-fill-color: #fafafa;
|
2425 |
-
-webkit-text-stroke-width: 2px; }
|
2426 |
-
|
2427 |
-
@media (max-width: 500px) {
|
2428 |
-
.premium-dual-header-container .premium-dual-header-first-header,
|
2429 |
-
.premium-dual-header-container .premium-dual-header-second-header {
|
2430 |
-
display: block;
|
2431 |
-
word-wrap: break-word; }
|
2432 |
-
.premium-dual-header-first-container,
|
2433 |
-
.premium-dual-header-second-container {
|
2434 |
-
margin: 0; } }
|
2435 |
-
|
2436 |
-
@media (min-width: 501px) {
|
2437 |
-
.premium-dual-header-first-container {
|
2438 |
-
margin-right: 5px; } }
|
2439 |
-
|
2440 |
-
.premium-dual-header-first-header.gradient .premium-dual-header-first-span,
|
2441 |
-
.premium-dual-header-second-header.gradient {
|
2442 |
-
-webkit-background-size: 300% 300% !important;
|
2443 |
-
background-size: 300% 300% !important;
|
2444 |
-
-webkit-animation: Gradient 10s ease-in-out infinite;
|
2445 |
-
animation: Gradient 10s ease-in-out infinite; }
|
2446 |
-
|
2447 |
-
@-webkit-keyframes Gradient {
|
2448 |
-
0% {
|
2449 |
-
background-position: 0% 50%; }
|
2450 |
-
50% {
|
2451 |
-
background-position: 100% 50%; }
|
2452 |
-
100% {
|
2453 |
-
background-position: 0% 50%; } }
|
2454 |
-
|
2455 |
-
@keyframes Gradient {
|
2456 |
-
0% {
|
2457 |
-
background-position: 0% 50%; }
|
2458 |
-
50% {
|
2459 |
-
background-position: 100% 50%; }
|
2460 |
-
100% {
|
2461 |
-
background-position: 0% 50%; } }
|
2462 |
-
|
2463 |
-
.premium-mask-yes.premium-header-inline .premium-dual-header-first-span,
|
2464 |
-
.premium-mask-yes.premium-header-inline .premium-dual-header-first-span {
|
2465 |
-
display: inline-block !important; }
|
2466 |
-
|
2467 |
-
/**************** Premium Title ****************/
|
2468 |
-
/***********************************************/
|
2469 |
-
.premium-title-container {
|
2470 |
-
position: relative;
|
2471 |
-
width: 100%;
|
2472 |
-
clear: both; }
|
2473 |
-
.premium-title-container .premium-title-header {
|
2474 |
-
position: relative;
|
2475 |
-
margin: 0;
|
2476 |
-
padding: 10px; }
|
2477 |
-
.premium-title-container .premium-title-header:not(.premium-title-style7) {
|
2478 |
-
-webkit-box-align: center;
|
2479 |
-
-webkit-align-items: center;
|
2480 |
-
-moz-box-align: center;
|
2481 |
-
-ms-flex-align: center;
|
2482 |
-
align-items: center; }
|
2483 |
-
.premium-title-container .premium-title-header svg {
|
2484 |
-
width: 40px;
|
2485 |
-
height: 40px; }
|
2486 |
-
.premium-title-container .premium-title-header img {
|
2487 |
-
width: 40px;
|
2488 |
-
height: 40px;
|
2489 |
-
-o-object-fit: cover;
|
2490 |
-
object-fit: cover; }
|
2491 |
-
.premium-title-container .premium-title-header a {
|
2492 |
-
position: absolute;
|
2493 |
-
top: 0;
|
2494 |
-
left: 0;
|
2495 |
-
width: 100%;
|
2496 |
-
height: 100%; }
|
2497 |
-
.premium-title-container .premium-lottie-animation {
|
2498 |
-
-js-display: flex;
|
2499 |
-
display: -webkit-box;
|
2500 |
-
display: -webkit-flex;
|
2501 |
-
display: -moz-box;
|
2502 |
-
display: -ms-flexbox;
|
2503 |
-
display: flex; }
|
2504 |
-
|
2505 |
-
.premium-title-icon-row .premium-title-icon {
|
2506 |
-
margin-right: 10px; }
|
2507 |
-
|
2508 |
-
.premium-title-icon-row-reverse .premium-title-icon {
|
2509 |
-
margin-left: 10px; }
|
2510 |
-
|
2511 |
-
.premium-title-style3,
|
2512 |
-
.premium-title-style4 {
|
2513 |
-
-js-display: flex;
|
2514 |
-
display: -webkit-box;
|
2515 |
-
display: -webkit-flex;
|
2516 |
-
display: -moz-box;
|
2517 |
-
display: -ms-flexbox;
|
2518 |
-
display: flex; }
|
2519 |
-
|
2520 |
-
.premium-title-style1,
|
2521 |
-
.premium-title-style2,
|
2522 |
-
.premium-title-style5,
|
2523 |
-
.premium-title-style6,
|
2524 |
-
.premium-title-style8,
|
2525 |
-
.premium-title-style9 {
|
2526 |
-
-js-display: inline-flex;
|
2527 |
-
display: -webkit-inline-box;
|
2528 |
-
display: -webkit-inline-flex;
|
2529 |
-
display: -moz-inline-box;
|
2530 |
-
display: -ms-inline-flexbox;
|
2531 |
-
display: inline-flex; }
|
2532 |
-
|
2533 |
-
.premium-title-style7 {
|
2534 |
-
-js-display: inline-flex;
|
2535 |
-
display: -webkit-inline-box;
|
2536 |
-
display: -webkit-inline-flex;
|
2537 |
-
display: -moz-inline-box;
|
2538 |
-
display: -ms-inline-flexbox;
|
2539 |
-
display: inline-flex;
|
2540 |
-
-webkit-box-orient: vertical;
|
2541 |
-
-webkit-box-direction: normal;
|
2542 |
-
-webkit-flex-direction: column;
|
2543 |
-
-moz-box-orient: vertical;
|
2544 |
-
-moz-box-direction: normal;
|
2545 |
-
-ms-flex-direction: column;
|
2546 |
-
flex-direction: column; }
|
2547 |
-
.premium-title-style7 .premium-title-style7-inner {
|
2548 |
-
-js-display: flex;
|
2549 |
-
display: -webkit-box;
|
2550 |
-
display: -webkit-flex;
|
2551 |
-
display: -moz-box;
|
2552 |
-
display: -ms-flexbox;
|
2553 |
-
display: flex;
|
2554 |
-
-webkit-box-align: center;
|
2555 |
-
-webkit-align-items: center;
|
2556 |
-
-moz-box-align: center;
|
2557 |
-
-ms-flex-align: center;
|
2558 |
-
align-items: center; }
|
2559 |
-
|
2560 |
-
.premium-title-style1 {
|
2561 |
-
border-left: 3px solid #6ec1e4; }
|
2562 |
-
|
2563 |
-
.premium-title-container.style2, .premium-title-container.style4, .premium-title-container.style5, .premium-title-container.style6 {
|
2564 |
-
border-bottom: 3px solid #6ec1e4; }
|
2565 |
-
|
2566 |
-
/*Style 6 Header*/
|
2567 |
-
.premium-title-style6:before {
|
2568 |
-
position: absolute;
|
2569 |
-
left: 50%;
|
2570 |
-
bottom: 0;
|
2571 |
-
margin-left: -2px;
|
2572 |
-
content: "";
|
2573 |
-
border: 3px solid transparent; }
|
2574 |
-
|
2575 |
-
/*Style 6 Trinagle*/
|
2576 |
-
.premium-title-style7-stripe-wrap {
|
2577 |
-
-js-display: flex;
|
2578 |
-
display: -webkit-box;
|
2579 |
-
display: -webkit-flex;
|
2580 |
-
display: -moz-box;
|
2581 |
-
display: -ms-flexbox;
|
2582 |
-
display: flex; }
|
2583 |
-
|
2584 |
-
.premium-title-style7:before {
|
2585 |
-
display: none; }
|
2586 |
-
|
2587 |
-
.premium-title-style8 .premium-title-text[data-animation="shiny"] {
|
2588 |
-
-webkit-background-size: 125px 125px !important;
|
2589 |
-
background-size: 125px !important;
|
2590 |
-
color: rgba(255, 255, 255, 0);
|
2591 |
-
-webkit-background-clip: text !important;
|
2592 |
-
background-clip: text !important;
|
2593 |
-
-webkit-animation-name: pa-shinny-text !important;
|
2594 |
-
animation-name: pa-shinny-text !important;
|
2595 |
-
-webkit-animation-duration: var(--animation-speed) !important;
|
2596 |
-
animation-duration: var(--animation-speed) !important;
|
2597 |
-
-webkit-animation-iteration-count: infinite !important;
|
2598 |
-
animation-iteration-count: infinite !important;
|
2599 |
-
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; }
|
2600 |
-
|
2601 |
-
@-webkit-keyframes pa-shinny-text {
|
2602 |
-
0% {
|
2603 |
-
background-position: 0%; }
|
2604 |
-
100% {
|
2605 |
-
background-position: 200%; } }
|
2606 |
-
|
2607 |
-
@keyframes pa-shinny-text {
|
2608 |
-
0% {
|
2609 |
-
background-position: 0%; }
|
2610 |
-
100% {
|
2611 |
-
background-position: 200%; } }
|
2612 |
-
|
2613 |
-
.premium-title-style9[data-animation-blur="process"] .premium-title-style9-letter {
|
2614 |
-
-webkit-animation: pa-blur-shadow 2s 1 alternate;
|
2615 |
-
animation: pa-blur-shadow 2s 1 alternate; }
|
2616 |
-
|
2617 |
-
@-webkit-keyframes pa-blur-shadow {
|
2618 |
-
from {
|
2619 |
-
text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
|
2620 |
-
color: transparent; }
|
2621 |
-
to {
|
2622 |
-
text-shadow: 0; } }
|
2623 |
-
|
2624 |
-
@keyframes pa-blur-shadow {
|
2625 |
-
from {
|
2626 |
-
text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
|
2627 |
-
color: transparent; }
|
2628 |
-
to {
|
2629 |
-
text-shadow: 0; } }
|
2630 |
-
|
2631 |
-
.premium-title-gradient-yes .premium-title-text,
|
2632 |
-
.premium-title-gradient-yes .premium-title-icon {
|
2633 |
-
-webkit-background-clip: text;
|
2634 |
-
-webkit-text-fill-color: transparent;
|
2635 |
-
background-image: -webkit-gradient(linear, left top, right top, from(#ffa648), color-stop(#f17cc1), to(#4da9fd));
|
2636 |
-
background-image: -webkit-linear-gradient(left, #ffa648, #f17cc1, #4da9fd);
|
2637 |
-
background-image: linear-gradient(to right, #ffa648, #f17cc1, #4da9fd);
|
2638 |
-
-webkit-animation: pa-text-gradient 8s infinite;
|
2639 |
-
animation: pa-text-gradient 8s infinite; }
|
2640 |
-
|
2641 |
-
@-webkit-keyframes pa-text-gradient {
|
2642 |
-
0%,
|
2643 |
-
100% {
|
2644 |
-
-webkit-filter: hue-rotate(0deg);
|
2645 |
-
filter: hue-rotate(0deg); }
|
2646 |
-
50% {
|
2647 |
-
-webkit-filter: hue-rotate(360deg);
|
2648 |
-
filter: hue-rotate(360deg); } }
|
2649 |
-
|
2650 |
-
@keyframes pa-text-gradient {
|
2651 |
-
0%,
|
2652 |
-
100% {
|
2653 |
-
-webkit-filter: hue-rotate(0deg);
|
2654 |
-
filter: hue-rotate(0deg); }
|
2655 |
-
50% {
|
2656 |
-
-webkit-filter: hue-rotate(360deg);
|
2657 |
-
filter: hue-rotate(360deg); } }
|
2658 |
-
|
2659 |
-
/*
|
2660 |
-
* Common Title/Dual Heading
|
2661 |
-
*/
|
2662 |
-
.premium-title-bg-text:before {
|
2663 |
-
position: absolute;
|
2664 |
-
content: attr(data-background);
|
2665 |
-
top: 0;
|
2666 |
-
left: 0;
|
2667 |
-
text-align: left; }
|
2668 |
-
|
2669 |
-
.premium-mask-yes .premium-dual-header-first-clip .premium-dual-header-first-span .premium-mask-span,
|
2670 |
-
.premium-mask-yes .premium-dual-header-second-clip .premium-mask-span {
|
2671 |
-
background: inherit; }
|
2672 |
-
|
2673 |
-
.premium-mask-yes .premium-mask-span {
|
2674 |
-
position: relative;
|
2675 |
-
overflow: hidden;
|
2676 |
-
-js-display: inline-flex !important;
|
2677 |
-
display: -webkit-inline-box !important;
|
2678 |
-
display: -webkit-inline-flex !important;
|
2679 |
-
display: -moz-inline-box !important;
|
2680 |
-
display: -ms-inline-flexbox !important;
|
2681 |
-
display: inline-flex !important; }
|
2682 |
-
.premium-mask-yes .premium-mask-span::after {
|
2683 |
-
content: "";
|
2684 |
-
position: absolute;
|
2685 |
-
top: 0;
|
2686 |
-
right: 0px;
|
2687 |
-
width: 100%;
|
2688 |
-
height: 100%;
|
2689 |
-
background-color: currentColor;
|
2690 |
-
-webkit-backface-visibility: visible;
|
2691 |
-
backface-visibility: visible; }
|
2692 |
-
|
2693 |
-
.premium-mask-active.premium-mask-tr .premium-mask-span::after {
|
2694 |
-
-webkit-animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
2695 |
-
animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
2696 |
-
-webkit-transform: translateX(-103%);
|
2697 |
-
-ms-transform: translateX(-103%);
|
2698 |
-
transform: translateX(-103%); }
|
2699 |
-
|
2700 |
-
.premium-mask-active.premium-mask-tl .premium-mask-span::after {
|
2701 |
-
-webkit-animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
2702 |
-
animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
2703 |
-
-webkit-transform: translateX(103%);
|
2704 |
-
-ms-transform: translateX(103%);
|
2705 |
-
transform: translateX(103%); }
|
2706 |
-
|
2707 |
-
.premium-mask-active.premium-mask-tb .premium-mask-span::after {
|
2708 |
-
-webkit-animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
2709 |
-
animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
2710 |
-
-webkit-transform: translateY(-103%);
|
2711 |
-
-ms-transform: translateY(-103%);
|
2712 |
-
transform: translateY(-103%); }
|
2713 |
-
|
2714 |
-
.premium-mask-active.premium-mask-tt .premium-mask-span::after {
|
2715 |
-
-webkit-animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
2716 |
-
animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
2717 |
-
-webkit-transform: translateY(103%);
|
2718 |
-
-ms-transform: translateY(103%);
|
2719 |
-
transform: translateY(103%); }
|
2720 |
-
|
2721 |
-
@-webkit-keyframes pa-mask-tr {
|
2722 |
-
0% {
|
2723 |
-
-webkit-transform: translateX(0%);
|
2724 |
-
transform: translateX(0%); }
|
2725 |
-
100% {
|
2726 |
-
-webkit-transform: translateX(103%);
|
2727 |
-
transform: translateX(103%); } }
|
2728 |
-
|
2729 |
-
@keyframes pa-mask-tr {
|
2730 |
-
0% {
|
2731 |
-
-webkit-transform: translateX(0%);
|
2732 |
-
transform: translateX(0%); }
|
2733 |
-
100% {
|
2734 |
-
-webkit-transform: translateX(103%);
|
2735 |
-
transform: translateX(103%); } }
|
2736 |
-
|
2737 |
-
@-webkit-keyframes pa-mask-tl {
|
2738 |
-
0% {
|
2739 |
-
-webkit-transform: translateX(0%);
|
2740 |
-
transform: translateX(0%); }
|
2741 |
-
100% {
|
2742 |
-
-webkit-transform: translateX(-103%);
|
2743 |
-
transform: translateX(-103%); } }
|
2744 |
-
|
2745 |
-
@keyframes pa-mask-tl {
|
2746 |
-
0% {
|
2747 |
-
-webkit-transform: translateX(0%);
|
2748 |
-
transform: translateX(0%); }
|
2749 |
-
100% {
|
2750 |
-
-webkit-transform: translateX(-103%);
|
2751 |
-
transform: translateX(-103%); } }
|
2752 |
-
|
2753 |
-
@-webkit-keyframes pa-mask-tb {
|
2754 |
-
0% {
|
2755 |
-
-webkit-transform: translateY(0%);
|
2756 |
-
transform: translateY(0%); }
|
2757 |
-
100% {
|
2758 |
-
-webkit-transform: translateY(103%);
|
2759 |
-
transform: translateY(103%); } }
|
2760 |
-
|
2761 |
-
@keyframes pa-mask-tb {
|
2762 |
-
0% {
|
2763 |
-
-webkit-transform: translateY(0%);
|
2764 |
-
transform: translateY(0%); }
|
2765 |
-
100% {
|
2766 |
-
-webkit-transform: translateY(103%);
|
2767 |
-
transform: translateY(103%); } }
|
2768 |
-
|
2769 |
-
@-webkit-keyframes pa-mask-tt {
|
2770 |
-
0% {
|
2771 |
-
-webkit-transform: translateY(0%);
|
2772 |
-
transform: translateY(0%); }
|
2773 |
-
100% {
|
2774 |
-
-webkit-transform: translateY(-103%);
|
2775 |
-
transform: translateY(-103%); } }
|
2776 |
-
|
2777 |
-
@keyframes pa-mask-tt {
|
2778 |
-
0% {
|
2779 |
-
-webkit-transform: translateY(0%);
|
2780 |
-
transform: translateY(0%); }
|
2781 |
-
100% {
|
2782 |
-
-webkit-transform: translateY(-103%);
|
2783 |
-
transform: translateY(-103%); } }
|
2784 |
-
|
2785 |
-
/**************** Premium Video Box ************/
|
2786 |
-
/***********************************************/
|
2787 |
-
.premium-video-box-transform {
|
2788 |
-
-webkit-transform: none !important;
|
2789 |
-
-ms-transform: none !important;
|
2790 |
-
transform: none !important; }
|
2791 |
-
|
2792 |
-
.premium-video-box-container {
|
2793 |
-
-js-display: flex;
|
2794 |
-
display: -webkit-box;
|
2795 |
-
display: -webkit-flex;
|
2796 |
-
display: -moz-box;
|
2797 |
-
display: -ms-flexbox;
|
2798 |
-
display: flex;
|
2799 |
-
-webkit-box-orient: vertical;
|
2800 |
-
-webkit-box-direction: normal;
|
2801 |
-
-webkit-flex-direction: column;
|
2802 |
-
-moz-box-orient: vertical;
|
2803 |
-
-moz-box-direction: normal;
|
2804 |
-
-ms-flex-direction: column;
|
2805 |
-
flex-direction: column; }
|
2806 |
-
|
2807 |
-
.premium-video-box-container > div {
|
2808 |
-
position: relative;
|
2809 |
-
overflow: hidden; }
|
2810 |
-
|
2811 |
-
.pa-aspect-ratio-11 .premium-video-box-container > div {
|
2812 |
-
padding-bottom: 100%; }
|
2813 |
-
|
2814 |
-
.pa-aspect-ratio-169 .premium-video-box-container > div {
|
2815 |
-
padding-bottom: 56.25%; }
|
2816 |
-
|
2817 |
-
.pa-aspect-ratio-43 .premium-video-box-container > div {
|
2818 |
-
padding-bottom: 75%; }
|
2819 |
-
|
2820 |
-
.pa-aspect-ratio-32 .premium-video-box-container > div {
|
2821 |
-
padding-bottom: 66.6666%; }
|
2822 |
-
|
2823 |
-
.pa-aspect-ratio-219 .premium-video-box-container > div {
|
2824 |
-
padding-bottom: 42.8571%; }
|
2825 |
-
|
2826 |
-
.pa-aspect-ratio-916 .premium-video-box-container > div {
|
2827 |
-
padding-bottom: 177.8%; }
|
2828 |
-
|
2829 |
-
.premium-video-box-image-container {
|
2830 |
-
position: absolute;
|
2831 |
-
top: 0;
|
2832 |
-
left: 0;
|
2833 |
-
bottom: 0;
|
2834 |
-
right: 0;
|
2835 |
-
width: 100%;
|
2836 |
-
height: 100%;
|
2837 |
-
-webkit-background-size: cover;
|
2838 |
-
background-size: cover;
|
2839 |
-
background-position: 50%;
|
2840 |
-
cursor: pointer;
|
2841 |
-
margin: auto;
|
2842 |
-
-webkit-transition: 0.2s all;
|
2843 |
-
transition: 0.2s all; }
|
2844 |
-
|
2845 |
-
.premium-video-box-play-icon-container {
|
2846 |
-
position: absolute;
|
2847 |
-
z-index: 2;
|
2848 |
-
cursor: pointer;
|
2849 |
-
-webkit-transform: translate(-50%, -50%);
|
2850 |
-
-ms-transform: translate(-50%, -50%);
|
2851 |
-
transform: translate(-50%, -50%);
|
2852 |
-
background: rgba(252, 252, 252, 0.35); }
|
2853 |
-
|
2854 |
-
.premium-video-box-description-container {
|
2855 |
-
position: absolute;
|
2856 |
-
z-index: 2;
|
2857 |
-
padding: 5px;
|
2858 |
-
text-align: center;
|
2859 |
-
cursor: pointer;
|
2860 |
-
-webkit-transform: translate(-50%, -50%);
|
2861 |
-
-ms-transform: translate(-50%, -50%);
|
2862 |
-
transform: translate(-50%, -50%); }
|
2863 |
-
|
2864 |
-
.premium-video-box-text {
|
2865 |
-
margin-bottom: 0 !important;
|
2866 |
-
-webkit-transition: all 0.3s ease-in-out;
|
2867 |
-
transition: all 0.3s ease-in-out; }
|
2868 |
-
|
2869 |
-
.premium-video-box-play-icon {
|
2870 |
-
padding: 15px;
|
2871 |
-
-webkit-transform: translateX(4%);
|
2872 |
-
-ms-transform: translateX(4%);
|
2873 |
-
transform: translateX(4%);
|
2874 |
-
-webkit-transition: all 0.3s ease-in-out;
|
2875 |
-
transition: all 0.3s ease-in-out; }
|
2876 |
-
|
2877 |
-
.premium-video-box-video-container {
|
2878 |
-
position: absolute;
|
2879 |
-
top: 0;
|
2880 |
-
left: 0;
|
2881 |
-
z-index: 2;
|
2882 |
-
width: 100%;
|
2883 |
-
height: 100%;
|
2884 |
-
-webkit-transition: opacity 0.8s ease-in-out;
|
2885 |
-
transition: opacity 0.8s ease-in-out;
|
2886 |
-
overflow: hidden;
|
2887 |
-
cursor: pointer; }
|
2888 |
-
|
2889 |
-
.premium-video-box-container[data-overlay="true"][data-type="self"] .premium-video-box-video-container {
|
2890 |
-
opacity: 0;
|
2891 |
-
visibility: hidden; }
|
2892 |
-
|
2893 |
-
.premium-video-box-video-container iframe {
|
2894 |
-
max-width: 100%;
|
2895 |
-
width: 100%;
|
2896 |
-
height: 100%;
|
2897 |
-
margin: 0;
|
2898 |
-
line-height: 1;
|
2899 |
-
border: none; }
|
2900 |
-
|
2901 |
-
.premium-video-box-video-container video {
|
2902 |
-
max-width: 100%;
|
2903 |
-
width: 100%;
|
2904 |
-
height: 100%;
|
2905 |
-
margin: 0;
|
2906 |
-
line-height: 1;
|
2907 |
-
border: none;
|
2908 |
-
background-color: #000;
|
2909 |
-
-o-object-fit: contain;
|
2910 |
-
object-fit: contain; }
|
2911 |
-
|
2912 |
-
.premium-video-box-container .premium-video-box-vimeo-wrap {
|
2913 |
-
-js-display: flex;
|
2914 |
-
display: -webkit-box;
|
2915 |
-
display: -webkit-flex;
|
2916 |
-
display: -moz-box;
|
2917 |
-
display: -ms-flexbox;
|
2918 |
-
display: flex;
|
2919 |
-
position: absolute;
|
2920 |
-
top: 0;
|
2921 |
-
left: 0;
|
2922 |
-
z-index: 3;
|
2923 |
-
margin: 10px;
|
2924 |
-
margin-right: 10px;
|
2925 |
-
-webkit-transition: opacity 0.2s ease-out;
|
2926 |
-
transition: opacity 0.2s ease-out;
|
2927 |
-
margin-right: 4.6em; }
|
2928 |
-
|
2929 |
-
.premium-video-box-vimeo-wrap .premium-video-box-vimeo-portrait {
|
2930 |
-
width: 60px;
|
2931 |
-
height: 60px;
|
2932 |
-
background: rgba(23, 35, 34, 0.75);
|
2933 |
-
margin-right: 1px;
|
2934 |
-
-webkit-box-flex: 1;
|
2935 |
-
-webkit-flex: 1 0 auto;
|
2936 |
-
-moz-box-flex: 1;
|
2937 |
-
-ms-flex: 1 0 auto;
|
2938 |
-
flex: 1 0 auto;
|
2939 |
-
padding: 0; }
|
2940 |
-
|
2941 |
-
.premium-video-box-vimeo-portrait img {
|
2942 |
-
width: 50px;
|
2943 |
-
height: 50px;
|
2944 |
-
margin: 5px;
|
2945 |
-
padding: 0;
|
2946 |
-
border: 0;
|
2947 |
-
-webkit-border-radius: 50%;
|
2948 |
-
border-radius: 50%; }
|
2949 |
-
|
2950 |
-
.premium-video-box-vimeo-wrap .premium-video-box-vimeo-headers {
|
2951 |
-
font-size: 10px; }
|
2952 |
-
|
2953 |
-
.premium-video-box-vimeo-wrap .premium-video-box-vimeo-title {
|
2954 |
-
max-width: 100%;
|
2955 |
-
font-size: 2em !important;
|
2956 |
-
font-weight: 700;
|
2957 |
-
margin: 0;
|
2958 |
-
padding: 0.1em 0.2em;
|
2959 |
-
background: rgba(23, 35, 34, 0.75);
|
2960 |
-
display: inline-block;
|
2961 |
-
text-transform: none;
|
2962 |
-
line-height: normal;
|
2963 |
-
letter-spacing: normal; }
|
2964 |
-
|
2965 |
-
.premium-video-box-vimeo-wrap .premium-video-box-vimeo-byline {
|
2966 |
-
font-size: 1.2em !important;
|
2967 |
-
font-weight: 400;
|
2968 |
-
color: #fff;
|
2969 |
-
margin-top: 0.1em;
|
2970 |
-
padding: 0.2em 0.5em;
|
2971 |
-
background: rgba(23, 35, 34, 0.75);
|
2972 |
-
text-transform: none;
|
2973 |
-
line-height: normal;
|
2974 |
-
letter-spacing: normal; }
|
2975 |
-
|
2976 |
-
.premium-video-box-playlist-container {
|
2977 |
-
-js-display: flex;
|
2978 |
-
display: -webkit-box;
|
2979 |
-
display: -webkit-flex;
|
2980 |
-
display: -moz-box;
|
2981 |
-
display: -ms-flexbox;
|
2982 |
-
display: flex;
|
2983 |
-
-webkit-flex-wrap: wrap;
|
2984 |
-
-ms-flex-wrap: wrap;
|
2985 |
-
flex-wrap: wrap; }
|
2986 |
-
.premium-video-box-playlist-container .premium-video-box-container {
|
2987 |
-
height: 100%;
|
2988 |
-
overflow: hidden; }
|
2989 |
-
|
2990 |
-
.premium-video-box-container:hover .premium-video-box-image-container.zoomin {
|
2991 |
-
-webkit-transform: scale(1.1);
|
2992 |
-
-ms-transform: scale(1.1);
|
2993 |
-
transform: scale(1.1); }
|
2994 |
-
|
2995 |
-
.premium-video-box-container:hover .premium-video-box-image-container.zoomout {
|
2996 |
-
-webkit-transform: scale(1);
|
2997 |
-
-ms-transform: scale(1);
|
2998 |
-
transform: scale(1); }
|
2999 |
-
|
3000 |
-
.premium-video-box-container:hover .premium-video-box-image-container.scale {
|
3001 |
-
-webkit-transform: scale(1.3) rotate(5deg);
|
3002 |
-
-ms-transform: scale(1.3) rotate(5deg);
|
3003 |
-
transform: scale(1.3) rotate(5deg); }
|
3004 |
-
|
3005 |
-
.premium-video-box-container:hover .premium-video-box-image-container.gray {
|
3006 |
-
-webkit-filter: grayscale(0%);
|
3007 |
-
filter: grayscale(0%); }
|
3008 |
-
|
3009 |
-
.premium-video-box-container:hover .premium-video-box-image-container.blur {
|
3010 |
-
-webkit-filter: blur(3px);
|
3011 |
-
filter: blur(3px); }
|
3012 |
-
|
3013 |
-
.premium-video-box-container:hover .premium-video-box-image-container.sepia {
|
3014 |
-
-webkit-filter: sepia(0%);
|
3015 |
-
filter: sepia(0%); }
|
3016 |
-
|
3017 |
-
.premium-video-box-container:hover .premium-video-box-image-container.trans {
|
3018 |
-
-webkit-transform: translateX(0px) scale(1.1);
|
3019 |
-
-ms-transform: translateX(0px) scale(1.1);
|
3020 |
-
transform: translateX(0px) scale(1.1); }
|
3021 |
-
|
3022 |
-
.premium-video-box-container:hover .premium-video-box-image-container.bright {
|
3023 |
-
-webkit-filter: brightness(1.2);
|
3024 |
-
filter: brightness(1.2); }
|
3025 |
-
|
3026 |
-
.premium-video-box-image-container.gray {
|
3027 |
-
-webkit-filter: grayscale(100%);
|
3028 |
-
filter: grayscale(100%); }
|
3029 |
-
|
3030 |
-
.premium-video-box-image-container.zoomout, .premium-video-box-image-container.scale {
|
3031 |
-
-webkit-transform: scale(1.2);
|
3032 |
-
-ms-transform: scale(1.2);
|
3033 |
-
transform: scale(1.2); }
|
3034 |
-
|
3035 |
-
.premium-video-box-image-container.sepia {
|
3036 |
-
-webkit-filter: sepia(30%);
|
3037 |
-
filter: sepia(30%); }
|
3038 |
-
|
3039 |
-
.premium-video-box-image-container.bright {
|
3040 |
-
-webkit-filter: brightness(1);
|
3041 |
-
filter: brightness(1); }
|
3042 |
-
|
3043 |
-
.premium-video-box-image-container.trans {
|
3044 |
-
-webkit-transform: translateX(-15px) scale(1.1);
|
3045 |
-
-ms-transform: translateX(-15px) scale(1.1);
|
3046 |
-
transform: translateX(-15px) scale(1.1); }
|
3047 |
-
|
3048 |
-
.premium-video-box-mask-media {
|
3049 |
-
-webkit-mask-repeat: no-repeat;
|
3050 |
-
mask-repeat: no-repeat; }
|
3051 |
-
|
3052 |
-
/* Sticky Video Option */
|
3053 |
-
.premium-video-box-container.premium-video-box-sticky-apply {
|
3054 |
-
z-index: 99;
|
3055 |
-
overflow: unset; }
|
3056 |
-
.premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
|
3057 |
-
position: fixed !important;
|
3058 |
-
z-index: 99999;
|
3059 |
-
height: 225px;
|
3060 |
-
width: 400px;
|
3061 |
-
background: #fff; }
|
3062 |
-
.premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-vimeo-wrap,
|
3063 |
-
.premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-container:before {
|
3064 |
-
visibility: hidden; }
|
3065 |
-
.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 {
|
3066 |
-
-webkit-box-shadow: unset;
|
3067 |
-
box-shadow: unset; }
|
3068 |
-
|
3069 |
-
.premium-video-box-sticky-close,
|
3070 |
-
.premium-video-box-sticky-infobar {
|
3071 |
-
display: none; }
|
3072 |
-
|
3073 |
-
.premium-video-box-sticky-apply .premium-video-box-sticky-close {
|
3074 |
-
position: absolute;
|
3075 |
-
padding: 5px;
|
3076 |
-
cursor: pointer;
|
3077 |
-
z-index: 99999;
|
3078 |
-
height: 14px;
|
3079 |
-
width: 14px;
|
3080 |
-
-webkit-box-sizing: content-box;
|
3081 |
-
-moz-box-sizing: content-box;
|
3082 |
-
box-sizing: content-box;
|
3083 |
-
-webkit-border-radius: 100%;
|
3084 |
-
border-radius: 100%;
|
3085 |
-
-js-display: flex;
|
3086 |
-
display: -webkit-box;
|
3087 |
-
display: -webkit-flex;
|
3088 |
-
display: -moz-box;
|
3089 |
-
display: -ms-flexbox;
|
3090 |
-
display: flex;
|
3091 |
-
-webkit-box-pack: center;
|
3092 |
-
-webkit-justify-content: center;
|
3093 |
-
-moz-box-pack: center;
|
3094 |
-
-ms-flex-pack: center;
|
3095 |
-
justify-content: center;
|
3096 |
-
-webkit-box-align: center;
|
3097 |
-
-webkit-align-items: center;
|
3098 |
-
-moz-box-align: center;
|
3099 |
-
-ms-flex-align: center;
|
3100 |
-
align-items: center; }
|
3101 |
-
|
3102 |
-
.premium-video-box-sticky-apply .premium-video-box-play-icon-container {
|
3103 |
-
-js-display: flex;
|
3104 |
-
display: -webkit-box;
|
3105 |
-
display: -webkit-flex;
|
3106 |
-
display: -moz-box;
|
3107 |
-
display: -ms-flexbox;
|
3108 |
-
display: flex; }
|
3109 |
-
|
3110 |
-
.premium-video-box-sticky-apply .premium-video-box-play-icon {
|
3111 |
-
-webkit-transition: none;
|
3112 |
-
transition: none; }
|
3113 |
-
|
3114 |
-
.premium-video-box-sticky-apply .premium-video-box-sticky-infobar {
|
3115 |
-
display: block;
|
3116 |
-
position: relative;
|
3117 |
-
top: 100%;
|
3118 |
-
width: 100%;
|
3119 |
-
padding: 5px;
|
3120 |
-
text-align: center;
|
3121 |
-
z-index: 9999;
|
3122 |
-
margin-top: -1px; }
|
3123 |
-
|
3124 |
-
.premium-video-box-sticky-apply .premium-video-box-inner-wrap.ui-draggable {
|
3125 |
-
cursor: move; }
|
3126 |
-
|
3127 |
-
.premium-video-sticky-top-left
|
3128 |
-
.premium-video-box-container.premium-video-box-sticky-apply
|
3129 |
-
.premium-video-box-inner-wrap {
|
3130 |
-
right: auto;
|
3131 |
-
left: 20px;
|
3132 |
-
top: 20px; }
|
3133 |
-
|
3134 |
-
.premium-video-sticky-bottom-left
|
3135 |
-
.premium-video-box-container.premium-video-box-sticky-apply
|
3136 |
-
.premium-video-box-inner-wrap {
|
3137 |
-
right: auto;
|
3138 |
-
left: 20px;
|
3139 |
-
bottom: 20px; }
|
3140 |
-
|
3141 |
-
.premium-video-sticky-top-right
|
3142 |
-
.premium-video-box-container.premium-video-box-sticky-apply
|
3143 |
-
.premium-video-box-inner-wrap {
|
3144 |
-
left: auto;
|
3145 |
-
right: 20px;
|
3146 |
-
top: 20px; }
|
3147 |
-
|
3148 |
-
.premium-video-sticky-bottom-right
|
3149 |
-
.premium-video-box-container.premium-video-box-sticky-apply
|
3150 |
-
.premium-video-box-inner-wrap {
|
3151 |
-
left: auto;
|
3152 |
-
right: 20px;
|
3153 |
-
bottom: 20px; }
|
3154 |
-
|
3155 |
-
.premium-video-sticky-center-left
|
3156 |
-
.premium-video-box-container.premium-video-box-sticky-apply
|
3157 |
-
.premium-video-box-inner-wrap {
|
3158 |
-
right: auto;
|
3159 |
-
left: 20px;
|
3160 |
-
top: 50%;
|
3161 |
-
-webkit-transform: translateY(-50%);
|
3162 |
-
-ms-transform: translateY(-50%);
|
3163 |
-
transform: translateY(-50%); }
|
3164 |
-
|
3165 |
-
.premium-video-sticky-center-right
|
3166 |
-
.premium-video-box-container.premium-video-box-sticky-apply
|
3167 |
-
.premium-video-box-inner-wrap {
|
3168 |
-
left: auto;
|
3169 |
-
right: 20px;
|
3170 |
-
top: 50%;
|
3171 |
-
-webkit-transform: translateY(-50%);
|
3172 |
-
-ms-transform: translateY(-50%);
|
3173 |
-
transform: translateY(-50%); }
|
3174 |
-
|
3175 |
-
.premium-video-sticky-bottom-right
|
3176 |
-
.premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply
|
3177 |
-
.premium-video-box-inner-wrap,
|
3178 |
-
.premium-video-sticky-bottom-left
|
3179 |
-
.premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply
|
3180 |
-
.premium-video-box-inner-wrap {
|
3181 |
-
bottom: 55px; }
|
3182 |
-
|
3183 |
-
.premium-video-sticky-top-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
|
3184 |
-
.premium-video-sticky-bottom-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
|
3185 |
-
.premium-video-sticky-center-left .premium-video-box-sticky-apply .premium-video-box-sticky-close {
|
3186 |
-
top: -10px;
|
3187 |
-
right: -10px; }
|
3188 |
-
|
3189 |
-
.premium-video-sticky-top-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
|
3190 |
-
.premium-video-sticky-bottom-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
|
3191 |
-
.premium-video-sticky-center-right .premium-video-box-sticky-apply .premium-video-box-sticky-close {
|
3192 |
-
top: -10px;
|
3193 |
-
left: -10px; }
|
3194 |
-
|
3195 |
-
.premium-video-box-filter-sticky {
|
3196 |
-
-webkit-filter: none !important;
|
3197 |
-
filter: none !important; }
|
3198 |
-
|
3199 |
-
/**************** Premium Blog *****************/
|
3200 |
-
/***********************************************/
|
3201 |
-
.premium-blog-thumb-effect-wrapper {
|
3202 |
-
position: relative;
|
3203 |
-
overflow: hidden; }
|
3204 |
-
|
3205 |
-
.premium-blog-effect-container:not(.premium-blog-bordered-effect) .premium-blog-post-link {
|
3206 |
-
position: absolute;
|
3207 |
-
top: 0;
|
3208 |
-
left: 0;
|
3209 |
-
width: 100%;
|
3210 |
-
height: 100%;
|
3211 |
-
z-index: 2;
|
3212 |
-
padding: 20px; }
|
3213 |
-
|
3214 |
-
.premium-blog-bordered-effect .premium-blog-post-link {
|
3215 |
-
display: block;
|
3216 |
-
height: 100%;
|
3217 |
-
position: relative; }
|
3218 |
-
|
3219 |
-
/*Thumbnail Img*/
|
3220 |
-
.premium-blog-thumbnail-container {
|
3221 |
-
overflow: hidden; }
|
3222 |
-
.premium-blog-thumbnail-container img,
|
3223 |
-
.premium-blog-thumbnail-container .below-entry-meta {
|
3224 |
-
width: 100%;
|
3225 |
-
height: 100%;
|
3226 |
-
margin: 0 !important;
|
3227 |
-
-webkit-transition: all 0.4s ease-in-out;
|
3228 |
-
transition: all 0.4s ease-in-out; }
|
3229 |
-
|
3230 |
-
.premium-blog-thumb-effect-wrapper .premium-blog-zoomout-effect img,
|
3231 |
-
.premium-blog-thumb-effect-wrapper .premium-blog-scale-effect img {
|
3232 |
-
-webkit-transform: scale(1.2);
|
3233 |
-
-ms-transform: scale(1.2);
|
3234 |
-
transform: scale(1.2); }
|
3235 |
-
|
3236 |
-
.premium-blog-thumb-effect-wrapper .premium-blog-sepia-effect img {
|
3237 |
-
-webkit-filter: sepia(30%);
|
3238 |
-
filter: sepia(30%); }
|
3239 |
-
|
3240 |
-
.premium-blog-thumb-effect-wrapper .premium-blog-bright-effect img {
|
3241 |
-
-webkit-filter: brightness(1);
|
3242 |
-
filter: brightness(1); }
|
3243 |
-
|
3244 |
-
.premium-blog-thumb-effect-wrapper .premium-blog-trans-effect img {
|
3245 |
-
-webkit-transform: translateX(-15px) scale(1.1);
|
3246 |
-
-ms-transform: translateX(-15px) scale(1.1);
|
3247 |
-
transform: translateX(-15px) scale(1.1); }
|
3248 |
-
|
3249 |
-
.premium-blog-post-outer-container:hover .premium-blog-zoomin-effect img {
|
3250 |
-
-webkit-transform: scale(1.2);
|
3251 |
-
-ms-transform: scale(1.2);
|
3252 |
-
transform: scale(1.2); }
|
3253 |
-
|
3254 |
-
.premium-blog-post-outer-container:hover .premium-blog-zoomout-effect img {
|
3255 |
-
-webkit-transform: scale(1.1);
|
3256 |
-
-ms-transform: scale(1.1);
|
3257 |
-
transform: scale(1.1); }
|
3258 |
-
|
3259 |
-
.premium-blog-post-outer-container:hover .premium-blog-scale-effect img {
|
3260 |
-
-webkit-transform: scale(1.3) rotate(5deg);
|
3261 |
-
-ms-transform: scale(1.3) rotate(5deg);
|
3262 |
-
transform: scale(1.3) rotate(5deg); }
|
3263 |
-
|
3264 |
-
.premium-blog-post-outer-container:hover .premium-blog-gray-effect img {
|
3265 |
-
-webkit-filter: grayscale(100%);
|
3266 |
-
filter: grayscale(100%); }
|
3267 |
-
|
3268 |
-
.premium-blog-post-outer-container:hover .premium-blog-blur-effect img {
|
3269 |
-
-webkit-filter: blur(3px);
|
3270 |
-
filter: blur(3px); }
|
3271 |
-
|
3272 |
-
.premium-blog-post-outer-container:hover .premium-blog-sepia-effect img {
|
3273 |
-
-webkit-filter: sepia(0%);
|
3274 |
-
filter: sepia(0%); }
|
3275 |
-
|
3276 |
-
.premium-blog-post-outer-container:hover .premium-blog-bright-effect img {
|
3277 |
-
-webkit-filter: brightness(1.2);
|
3278 |
-
filter: brightness(1.2); }
|
3279 |
-
|
3280 |
-
.premium-blog-post-outer-container:hover .premium-blog-trans-effect img {
|
3281 |
-
-webkit-transform: translateX(0px) scale(1.1);
|
3282 |
-
-ms-transform: translateX(0px) scale(1.1);
|
3283 |
-
transform: translateX(0px) scale(1.1); }
|
3284 |
-
|
3285 |
-
.premium-blog-post-container {
|
3286 |
-
overflow: hidden; }
|
3287 |
-
.premium-blog-post-container .premium-blog-inner-container {
|
3288 |
-
-js-display: flex;
|
3289 |
-
display: -webkit-box;
|
3290 |
-
display: -webkit-flex;
|
3291 |
-
display: -moz-box;
|
3292 |
-
display: -ms-flexbox;
|
3293 |
-
display: flex; }
|
3294 |
-
.premium-blog-post-container .premium-blog-post-content {
|
3295 |
-
line-height: 1.5em;
|
3296 |
-
color: #777;
|
3297 |
-
font-size: 14px;
|
3298 |
-
margin-bottom: 10px; }
|
3299 |
-
.premium-blog-post-container ul.post-categories a:hover, .premium-blog-post-container ul.post-categories a:focus,
|
3300 |
-
.premium-blog-post-container .premium-blog-post-link:hover,
|
3301 |
-
.premium-blog-post-container .premium-blog-post-link:focus {
|
3302 |
-
-webkit-box-shadow: none !important;
|
3303 |
-
box-shadow: none !important;
|
3304 |
-
outline: none !important; }
|
3305 |
-
.premium-blog-post-container .premium-blog-entry-title {
|
3306 |
-
font-size: 18px;
|
3307 |
-
margin-bottom: 5px; }
|
3308 |
-
.premium-blog-post-container.premium-blog-skin-modern .premium-blog-content-wrapper {
|
3309 |
-
position: relative;
|
3310 |
-
z-index: 3;
|
3311 |
-
top: -50px; }
|
3312 |
-
.premium-blog-post-container .premium-blog-content-wrapper {
|
3313 |
-
background-color: #f5f5f5;
|
3314 |
-
padding: 30px; }
|
3315 |
-
.premium-blog-post-container .premium-blog-content-wrapper.empty-thumb {
|
3316 |
-
top: 0; }
|
3317 |
-
.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 {
|
3318 |
-
position: absolute;
|
3319 |
-
content: "";
|
3320 |
-
z-index: 1;
|
3321 |
-
top: 50%;
|
3322 |
-
left: 50%;
|
3323 |
-
opacity: 0;
|
3324 |
-
-webkit-transform: translate(-50%, -50%);
|
3325 |
-
-ms-transform: translate(-50%, -50%);
|
3326 |
-
transform: translate(-50%, -50%);
|
3327 |
-
-webkit-transition: all 0.4s linear 0s;
|
3328 |
-
transition: all 0.4s linear 0s;
|
3329 |
-
height: 1px;
|
3330 |
-
width: 100%;
|
3331 |
-
background-color: #fff; }
|
3332 |
-
.premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before {
|
3333 |
-
width: 1px;
|
3334 |
-
height: 100%; }
|
3335 |
-
.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 {
|
3336 |
-
width: 20px;
|
3337 |
-
opacity: 1; }
|
3338 |
-
.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 {
|
3339 |
-
height: 20px;
|
3340 |
-
opacity: 1; }
|
3341 |
-
.premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-content-wrapper {
|
3342 |
-
margin: 0px 10px 20px;
|
3343 |
-
clear: both; }
|
3344 |
-
.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 {
|
3345 |
-
position: absolute;
|
3346 |
-
top: 0;
|
3347 |
-
left: 0;
|
3348 |
-
width: 100%;
|
3349 |
-
height: 100%;
|
3350 |
-
-webkit-transition: all 0.3s ease-in-out;
|
3351 |
-
transition: all 0.3s ease-in-out;
|
3352 |
-
opacity: 0; }
|
3353 |
-
.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 {
|
3354 |
-
-js-display: flex;
|
3355 |
-
display: -webkit-box;
|
3356 |
-
display: -webkit-flex;
|
3357 |
-
display: -moz-box;
|
3358 |
-
display: -ms-flexbox;
|
3359 |
-
display: flex;
|
3360 |
-
-webkit-box-pack: center;
|
3361 |
-
-webkit-justify-content: center;
|
3362 |
-
-moz-box-pack: center;
|
3363 |
-
-ms-flex-pack: center;
|
3364 |
-
justify-content: center;
|
3365 |
-
-webkit-box-align: center;
|
3366 |
-
-webkit-align-items: center;
|
3367 |
-
-moz-box-align: center;
|
3368 |
-
-ms-flex-align: center;
|
3369 |
-
align-items: center;
|
3370 |
-
width: 100%;
|
3371 |
-
height: 100%; }
|
3372 |
-
.premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay span,
|
3373 |
-
.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,
|
3374 |
-
.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,
|
3375 |
-
.premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay i {
|
3376 |
-
-webkit-transition: all 0.3s ease-in-out;
|
3377 |
-
transition: all 0.3s ease-in-out; }
|
3378 |
-
.premium-blog-post-container.premium-blog-skin-side {
|
3379 |
-
-js-display: flex;
|
3380 |
-
display: -webkit-box;
|
3381 |
-
display: -webkit-flex;
|
3382 |
-
display: -moz-box;
|
3383 |
-
display: -ms-flexbox;
|
3384 |
-
display: flex; }
|
3385 |
-
.premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-container {
|
3386 |
-
height: 100%; }
|
3387 |
-
.premium-blog-post-container.premium-blog-skin-side .premium-blog-content-wrapper {
|
3388 |
-
-webkit-box-flex: 1;
|
3389 |
-
-webkit-flex: 1;
|
3390 |
-
-moz-box-flex: 1;
|
3391 |
-
-ms-flex: 1;
|
3392 |
-
flex: 1; }
|
3393 |
-
.premium-blog-post-container.premium-blog-skin-banner {
|
3394 |
-
position: relative; }
|
3395 |
-
.premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper {
|
3396 |
-
position: absolute;
|
3397 |
-
width: 100%;
|
3398 |
-
bottom: 0;
|
3399 |
-
-js-display: flex;
|
3400 |
-
display: -webkit-box;
|
3401 |
-
display: -webkit-flex;
|
3402 |
-
display: -moz-box;
|
3403 |
-
display: -ms-flexbox;
|
3404 |
-
display: flex;
|
3405 |
-
-webkit-box-orient: vertical;
|
3406 |
-
-webkit-box-direction: normal;
|
3407 |
-
-webkit-flex-direction: column;
|
3408 |
-
-moz-box-orient: vertical;
|
3409 |
-
-moz-box-direction: normal;
|
3410 |
-
-ms-flex-direction: column;
|
3411 |
-
flex-direction: column;
|
3412 |
-
background-color: transparent;
|
3413 |
-
z-index: 3; }
|
3414 |
-
.premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper-inner {
|
3415 |
-
-webkit-transition: -webkit-transform 0.3s ease-in-out;
|
3416 |
-
transition: -webkit-transform 0.3s ease-in-out;
|
3417 |
-
transition: transform 0.3s ease-in-out;
|
3418 |
-
transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; }
|
3419 |
-
.premium-blog-post-container.premium-blog-skin-banner:hover .premium-blog-content-wrapper-inner {
|
3420 |
-
-webkit-transform: translateY(-5px);
|
3421 |
-
-ms-transform: translateY(-5px);
|
3422 |
-
transform: translateY(-5px); }
|
3423 |
-
.premium-blog-post-container .premium-blog-cats-container ul.post-categories {
|
3424 |
-
margin: 0;
|
3425 |
-
padding: 0;
|
3426 |
-
list-style: none;
|
3427 |
-
-js-display: flex;
|
3428 |
-
display: -webkit-box;
|
3429 |
-
display: -webkit-flex;
|
3430 |
-
display: -moz-box;
|
3431 |
-
display: -ms-flexbox;
|
3432 |
-
display: flex; }
|
3433 |
-
.premium-blog-post-container .premium-blog-cats-container a {
|
3434 |
-
display: block;
|
3435 |
-
font-size: 12px;
|
3436 |
-
color: #fff;
|
3437 |
-
background-color: #777;
|
3438 |
-
margin: 0 3px 10px 0;
|
3439 |
-
padding: 5px;
|
3440 |
-
-webkit-transition: all 0.3s ease-in-out;
|
3441 |
-
transition: all 0.3s ease-in-out; }
|
3442 |
-
|
3443 |
-
/*
|
3444 |
-
* Diagonal Effect
|
3445 |
-
*/
|
3446 |
-
.premium-blog-diagonal-container {
|
3447 |
-
position: absolute;
|
3448 |
-
top: 0;
|
3449 |
-
left: 0;
|
3450 |
-
width: 100%;
|
3451 |
-
height: 100%; }
|
3452 |
-
|
3453 |
-
.premium-blog-diagonal-effect:before {
|
3454 |
-
position: absolute;
|
3455 |
-
top: 0px;
|
3456 |
-
left: 0px;
|
3457 |
-
width: 100%;
|
3458 |
-
height: 100%;
|
3459 |
-
content: " ";
|
3460 |
-
z-index: 1;
|
3461 |
-
background: rgba(255, 255, 255, 0.2);
|
3462 |
-
-webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
|
3463 |
-
transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
|
3464 |
-
-webkit-transition: all 0.3s linear 0s;
|
3465 |
-
transition: all 0.3s linear 0s; }
|
3466 |
-
|
3467 |
-
.premium-blog-thumb-effect-wrapper:hover .premium-blog-diagonal-effect:before {
|
3468 |
-
-webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
|
3469 |
-
transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0); }
|
3470 |
-
|
3471 |
-
/*
|
3472 |
-
* Framed Effect
|
3473 |
-
*/
|
3474 |
-
.premium-blog-framed-effect {
|
3475 |
-
position: absolute;
|
3476 |
-
width: -webkit-calc(100% - 30px);
|
3477 |
-
width: calc(100% - 30px);
|
3478 |
-
height: -webkit-calc(100% - 30px);
|
3479 |
-
height: calc(100% - 30px);
|
3480 |
-
top: 15px;
|
3481 |
-
left: 15px;
|
3482 |
-
opacity: 0;
|
3483 |
-
-webkit-transform: scale(0.3);
|
3484 |
-
-ms-transform: scale(0.3);
|
3485 |
-
transform: scale(0.3);
|
3486 |
-
-webkit-transition: all 0.3s linear 0s;
|
3487 |
-
transition: all 0.3s linear 0s; }
|
3488 |
-
|
3489 |
-
.premium-blog-thumb-effect-wrapper:hover .premium-blog-framed-effect {
|
3490 |
-
opacity: 0.99;
|
3491 |
-
-webkit-transform: scale(1);
|
3492 |
-
-ms-transform: scale(1);
|
3493 |
-
transform: scale(1); }
|
3494 |
-
|
3495 |
-
/*
|
3496 |
-
* Bordered Effect
|
3497 |
-
*/
|
3498 |
-
.premium-blog-bordered-effect {
|
3499 |
-
position: absolute;
|
3500 |
-
top: 0;
|
3501 |
-
left: 0;
|
3502 |
-
width: 100%;
|
3503 |
-
height: 100%;
|
3504 |
-
opacity: 0;
|
3505 |
-
padding: 15px;
|
3506 |
-
-webkit-transition: all 0.3s linear 0s;
|
3507 |
-
transition: all 0.3s linear 0s; }
|
3508 |
-
.premium-blog-bordered-effect .premium-blog-post-link:before, .premium-blog-bordered-effect .premium-blog-post-link:after {
|
3509 |
-
content: "";
|
3510 |
-
display: block;
|
3511 |
-
position: absolute;
|
3512 |
-
top: 0;
|
3513 |
-
left: 0;
|
3514 |
-
width: 100%;
|
3515 |
-
height: 100%;
|
3516 |
-
-webkit-transition: all 0.5s linear 0s;
|
3517 |
-
transition: all 0.5s linear 0s;
|
3518 |
-
-webkit-transition-delay: 0s;
|
3519 |
-
transition-delay: 0s;
|
3520 |
-
border-color: rgba(255, 255, 255, 0.45); }
|
3521 |
-
.premium-blog-bordered-effect .premium-blog-post-link:before {
|
3522 |
-
border-right: 2px solid;
|
3523 |
-
border-left: 2px solid;
|
3524 |
-
-webkit-transform: scale(1, 0);
|
3525 |
-
-ms-transform: scale(1, 0);
|
3526 |
-
transform: scale(1, 0);
|
3527 |
-
-webkit-transform-origin: 100% 0;
|
3528 |
-
-ms-transform-origin: 100% 0;
|
3529 |
-
transform-origin: 100% 0; }
|
3530 |
-
.premium-blog-bordered-effect .premium-blog-post-link:after {
|
3531 |
-
border-top: 2px solid;
|
3532 |
-
border-bottom: 2px solid;
|
3533 |
-
-webkit-transform: scale(0, 1);
|
3534 |
-
-ms-transform: scale(0, 1);
|
3535 |
-
transform: scale(0, 1);
|
3536 |
-
-webkit-transform-origin: 0 0;
|
3537 |
-
-ms-transform-origin: 0 0;
|
3538 |
-
transform-origin: 0 0; }
|
3539 |
-
|
3540 |
-
.premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect {
|
3541 |
-
opacity: 0.99; }
|
3542 |
-
.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 {
|
3543 |
-
-webkit-transition-delay: 0.15s;
|
3544 |
-
transition-delay: 0.15s;
|
3545 |
-
opacity: 1;
|
3546 |
-
-webkit-transform: scale(1);
|
3547 |
-
-ms-transform: scale(1);
|
3548 |
-
transform: scale(1); }
|
3549 |
-
|
3550 |
-
/*
|
3551 |
-
* Squares Effect
|
3552 |
-
*/
|
3553 |
-
.premium-blog-squares-effect,
|
3554 |
-
.premium-blog-squares-square-container {
|
3555 |
-
position: absolute;
|
3556 |
-
top: 0;
|
3557 |
-
left: 0;
|
3558 |
-
width: 100%;
|
3559 |
-
height: 100%; }
|
3560 |
-
|
3561 |
-
.premium-blog-squares-effect:before, .premium-blog-squares-effect:after {
|
3562 |
-
position: absolute;
|
3563 |
-
content: "";
|
3564 |
-
top: 0;
|
3565 |
-
left: 0;
|
3566 |
-
width: 50%;
|
3567 |
-
height: 50%;
|
3568 |
-
-webkit-transform: translate(-100%, -100%);
|
3569 |
-
-ms-transform: translate(-100%, -100%);
|
3570 |
-
transform: translate(-100%, -100%);
|
3571 |
-
opacity: 0.7;
|
3572 |
-
-webkit-transition: all 0.3s linear 0s;
|
3573 |
-
transition: all 0.3s linear 0s; }
|
3574 |
-
|
3575 |
-
.premium-blog-squares-square-container:before, .premium-blog-squares-square-container:after {
|
3576 |
-
position: absolute;
|
3577 |
-
content: "";
|
3578 |
-
top: 0;
|
3579 |
-
left: 0;
|
3580 |
-
width: 50%;
|
3581 |
-
height: 50%;
|
3582 |
-
-webkit-transform: translate(-100%, -100%);
|
3583 |
-
-ms-transform: translate(-100%, -100%);
|
3584 |
-
transform: translate(-100%, -100%);
|
3585 |
-
opacity: 0.7;
|
3586 |
-
-webkit-transition: all 0.3s linear 0s;
|
3587 |
-
transition: all 0.3s linear 0s; }
|
3588 |
-
|
3589 |
-
.premium-blog-squares-square-container:before, .premium-blog-squares-square-container:after {
|
3590 |
-
opacity: 0.8; }
|
3591 |
-
|
3592 |
-
.premium-blog-squares-effect:after {
|
3593 |
-
-webkit-transform: translate(200%, 200%);
|
3594 |
-
-ms-transform: translate(200%, 200%);
|
3595 |
-
transform: translate(200%, 200%); }
|
3596 |
-
|
3597 |
-
.premium-blog-squares-square-container:before {
|
3598 |
-
-webkit-transform: translate(-100%, 200%);
|
3599 |
-
-ms-transform: translate(-100%, 200%);
|
3600 |
-
transform: translate(-100%, 200%); }
|
3601 |
-
|
3602 |
-
.premium-blog-squares-square-container:after {
|
3603 |
-
-webkit-transform: translate(200%, -100%);
|
3604 |
-
-ms-transform: translate(200%, -100%);
|
3605 |
-
transform: translate(200%, -100%); }
|
3606 |
-
|
3607 |
-
.premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:before {
|
3608 |
-
-webkit-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
|
3609 |
-
-ms-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
|
3610 |
-
transform: translate(0, 0%) scaleY(1.003) scaleX(1.003); }
|
3611 |
-
|
3612 |
-
.premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:after {
|
3613 |
-
-webkit-transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003);
|
3614 |
-
-ms-transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003);
|
3615 |
-
transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003); }
|
3616 |
-
|
3617 |
-
.premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:before {
|
3618 |
-
-webkit-transform: translate(0, 100%);
|
3619 |
-
-ms-transform: translate(0, 100%);
|
3620 |
-
transform: translate(0, 100%); }
|
3621 |
-
|
3622 |
-
.premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:after {
|
3623 |
-
-webkit-transform: translate(100%, 0%);
|
3624 |
-
-ms-transform: translate(100%, 0%);
|
3625 |
-
transform: translate(100%, 0%); }
|
3626 |
-
|
3627 |
-
.premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay {
|
3628 |
-
opacity: 1; }
|
3629 |
-
.premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay a {
|
3630 |
-
opacity: 1;
|
3631 |
-
-webkit-transform: scale(1);
|
3632 |
-
-ms-transform: scale(1);
|
3633 |
-
transform: scale(1); }
|
3634 |
-
|
3635 |
-
.premium-blog-clear-fix {
|
3636 |
-
clear: both; }
|
3637 |
-
|
3638 |
-
.premium-blog-masked .premium-blog-thumbnail-container {
|
3639 |
-
position: relative;
|
3640 |
-
overflow: visible; }
|
3641 |
-
.premium-blog-masked .premium-blog-thumbnail-container svg {
|
3642 |
-
position: absolute;
|
3643 |
-
height: 100px;
|
3644 |
-
width: 100%;
|
3645 |
-
bottom: -5px;
|
3646 |
-
left: 0;
|
3647 |
-
fill: #f5f5f5;
|
3648 |
-
z-index: 99; }
|
3649 |
-
.premium-blog-masked .premium-blog-thumbnail-container svg.premium-blog-shape-divider-svg {
|
3650 |
-
-webkit-transform: rotate(180deg);
|
3651 |
-
-ms-transform: rotate(180deg);
|
3652 |
-
transform: rotate(180deg); }
|
3653 |
-
|
3654 |
-
.premium-blog-masked .premium-blog-author-thumbnail,
|
3655 |
-
.premium-blog-masked .premium-blog-skin-banner .premium-blog-content-wrapper {
|
3656 |
-
z-index: 999 !important; }
|
3657 |
-
|
3658 |
-
.premium-blog-format-link {
|
3659 |
-
padding: 5px;
|
3660 |
-
line-height: 0; }
|
3661 |
-
|
3662 |
-
.premium-blog-entry-meta {
|
3663 |
-
line-height: 1.3em;
|
3664 |
-
font-size: 12px;
|
3665 |
-
margin-bottom: 13px;
|
3666 |
-
color: #adadad; }
|
3667 |
-
.premium-blog-entry-meta i {
|
3668 |
-
margin-right: 3px;
|
3669 |
-
-webkit-transition: all 0.3s ease-in-out;
|
3670 |
-
transition: all 0.3s ease-in-out; }
|
3671 |
-
|
3672 |
-
.premium-blog-meta-data {
|
3673 |
-
display: inline-block; }
|
3674 |
-
.premium-blog-meta-data .premium-blog-meta-separator {
|
3675 |
-
margin: 0 5px; }
|
3676 |
-
.premium-blog-meta-data a,
|
3677 |
-
.premium-blog-meta-data span {
|
3678 |
-
color: inherit;
|
3679 |
-
-webkit-transition: all 0.3s ease-in-out;
|
3680 |
-
transition: all 0.3s ease-in-out; }
|
3681 |
-
|
3682 |
-
.premium-blog-author-thumbnail {
|
3683 |
-
position: relative;
|
3684 |
-
padding: 0 30px;
|
3685 |
-
width: 100%;
|
3686 |
-
top: -10px;
|
3687 |
-
height: 0;
|
3688 |
-
pointer-events: none; }
|
3689 |
-
.premium-blog-author-thumbnail img {
|
3690 |
-
-webkit-border-radius: 50%;
|
3691 |
-
border-radius: 50%;
|
3692 |
-
width: 60px;
|
3693 |
-
pointer-events: all;
|
3694 |
-
-webkit-transform: translateY(-50%);
|
3695 |
-
-ms-transform: translateY(-50%);
|
3696 |
-
transform: translateY(-50%); }
|
3697 |
-
|
3698 |
-
.premium-blog-entry-title a,
|
3699 |
-
.premium-blog-post-tags-container a,
|
3700 |
-
.premium-blog-post-content .premium-blog-excerpt-link {
|
3701 |
-
-webkit-transition: all 0.3s ease-in-out;
|
3702 |
-
transition: all 0.3s ease-in-out; }
|
3703 |
-
|
3704 |
-
.premium-blog-excerpt-link-wrap a.premium-blog-excerpt-link {
|
3705 |
-
background-color: transparent;
|
3706 |
-
color: #54595f;
|
3707 |
-
padding: 0; }
|
3708 |
-
|
3709 |
-
.premium-blog-cta-full-yes .premium-blog-excerpt-link {
|
3710 |
-
width: 100%; }
|
3711 |
-
|
3712 |
-
.premium-blog-post-tags-container {
|
3713 |
-
margin-top: 8px;
|
3714 |
-
-js-display: flex;
|
3715 |
-
display: -webkit-box;
|
3716 |
-
display: -webkit-flex;
|
3717 |
-
display: -moz-box;
|
3718 |
-
display: -ms-flexbox;
|
3719 |
-
display: flex;
|
3720 |
-
-webkit-box-align: center;
|
3721 |
-
-webkit-align-items: center;
|
3722 |
-
-moz-box-align: center;
|
3723 |
-
-ms-flex-align: center;
|
3724 |
-
align-items: center;
|
3725 |
-
-webkit-flex-wrap: wrap;
|
3726 |
-
-ms-flex-wrap: wrap;
|
3727 |
-
flex-wrap: wrap; }
|
3728 |
-
.premium-blog-post-tags-container a {
|
3729 |
-
color: inherit;
|
3730 |
-
margin-left: 5px; }
|
3731 |
-
|
3732 |
-
/*Tags align*/
|
3733 |
-
.premium-blog-align-left .post-categories,
|
3734 |
-
.premium-blog-align-left .premium-blog-inner-container,
|
3735 |
-
.premium-blog-align-left .premium-blog-post-tags-container {
|
3736 |
-
-webkit-box-pack: start;
|
3737 |
-
-webkit-justify-content: flex-start;
|
3738 |
-
-moz-box-pack: start;
|
3739 |
-
-ms-flex-pack: start;
|
3740 |
-
justify-content: flex-start; }
|
3741 |
-
|
3742 |
-
.premium-blog-align-center .post-categories,
|
3743 |
-
.premium-blog-align-center .premium-blog-inner-container,
|
3744 |
-
.premium-blog-align-center .premium-blog-post-tags-container {
|
3745 |
-
-webkit-box-pack: center;
|
3746 |
-
-webkit-justify-content: center;
|
3747 |
-
-moz-box-pack: center;
|
3748 |
-
-ms-flex-pack: center;
|
3749 |
-
justify-content: center; }
|
3750 |
-
|
3751 |
-
.premium-blog-align-right .post-categories,
|
3752 |
-
.premium-blog-align-right .premium-blog-inner-container,
|
3753 |
-
.premium-blog-align-right .premium-blog-post-tags-container {
|
3754 |
-
-webkit-box-pack: end;
|
3755 |
-
-webkit-justify-content: flex-end;
|
3756 |
-
-moz-box-pack: end;
|
3757 |
-
-ms-flex-pack: end;
|
3758 |
-
justify-content: flex-end; }
|
3759 |
-
|
3760 |
-
/* Pagination */
|
3761 |
-
.premium-blog-pagination-container {
|
3762 |
-
text-align: right; }
|
3763 |
-
.premium-blog-pagination-container span {
|
3764 |
-
cursor: default; }
|
3765 |
-
.premium-blog-pagination-container .page-numbers {
|
3766 |
-
display: inline-block;
|
3767 |
-
color: #000;
|
3768 |
-
line-height: 1;
|
3769 |
-
font-size: 1em;
|
3770 |
-
font-weight: 400;
|
3771 |
-
text-decoration: none;
|
3772 |
-
padding: 0.75em;
|
3773 |
-
margin: 0 0.4em 0.4em 0;
|
3774 |
-
-webkit-transition: all 0.2s ease-in-out;
|
3775 |
-
transition: all 0.2s ease-in-out; }
|
3776 |
-
|
3777 |
-
.premium-blog-wrap .premium-loading-feed {
|
3778 |
-
display: block;
|
3779 |
-
position: absolute;
|
3780 |
-
width: 100%;
|
3781 |
-
height: 100%;
|
3782 |
-
top: 0px;
|
3783 |
-
left: 0px;
|
3784 |
-
bottom: 0px;
|
3785 |
-
right: 0px;
|
3786 |
-
background: rgba(255, 255, 255, 0.2);
|
3787 |
-
-js-display: flex;
|
3788 |
-
display: -webkit-box;
|
3789 |
-
display: -webkit-flex;
|
3790 |
-
display: -moz-box;
|
3791 |
-
display: -ms-flexbox;
|
3792 |
-
display: flex;
|
3793 |
-
-webkit-box-align: center;
|
3794 |
-
-webkit-align-items: center;
|
3795 |
-
-moz-box-align: center;
|
3796 |
-
-ms-flex-align: center;
|
3797 |
-
align-items: center;
|
3798 |
-
z-index: 99; }
|
3799 |
-
|
3800 |
-
.premium-blog-wrap {
|
3801 |
-
-js-display: flex;
|
3802 |
-
display: -webkit-box;
|
3803 |
-
display: -webkit-flex;
|
3804 |
-
display: -moz-box;
|
3805 |
-
display: -ms-flexbox;
|
3806 |
-
display: flex;
|
3807 |
-
-webkit-flex-wrap: wrap;
|
3808 |
-
-ms-flex-wrap: wrap;
|
3809 |
-
flex-wrap: wrap; }
|
3810 |
-
.premium-blog-wrap ul.slick-dots {
|
3811 |
-
width: 100%; }
|
3812 |
-
|
3813 |
-
/*
|
3814 |
-
* List Layout
|
3815 |
-
*/
|
3816 |
-
.premium-blog-list .premium-blog-post-outer-container {
|
3817 |
-
width: 100%; }
|
3818 |
-
|
3819 |
-
/**
|
3820 |
-
* Even Layout
|
3821 |
-
*/
|
3822 |
-
.premium-blog-even .premium-blog-post-container {
|
3823 |
-
height: 100%; }
|
3824 |
-
|
3825 |
-
.premium-blog-even .slick-track {
|
3826 |
-
-js-display: flex;
|
3827 |
-
display: -webkit-box;
|
3828 |
-
display: -webkit-flex;
|
3829 |
-
display: -moz-box;
|
3830 |
-
display: -ms-flexbox;
|
3831 |
-
display: flex; }
|
3832 |
-
|
3833 |
-
.premium-blog-even .slick-slide {
|
3834 |
-
height: inherit !important; }
|
3835 |
-
|
3836 |
-
/**
|
3837 |
-
* Responsive Style
|
3838 |
-
*/
|
3839 |
-
@media (max-width: 768px) {
|
3840 |
-
.premium-blog-content-wrapper {
|
3841 |
-
top: 0;
|
3842 |
-
margin: 0;
|
3843 |
-
padding: 15px; }
|
3844 |
-
.premium-blog-skin-side {
|
3845 |
-
-webkit-box-orient: vertical;
|
3846 |
-
-webkit-box-direction: normal;
|
3847 |
-
-webkit-flex-direction: column;
|
3848 |
-
-moz-box-orient: vertical;
|
3849 |
-
-moz-box-direction: normal;
|
3850 |
-
-ms-flex-direction: column;
|
3851 |
-
flex-direction: column; } }
|
3852 |
-
|
3853 |
-
/************ Premium Team Members ************/
|
3854 |
-
/**********************************************/
|
3855 |
-
.premium-person-container {
|
3856 |
-
position: relative; }
|
3857 |
-
|
3858 |
-
.premium-person-image-container {
|
3859 |
-
position: relative;
|
3860 |
-
text-align: center; }
|
3861 |
-
.premium-person-image-container .premium-person-image-wrap {
|
3862 |
-
overflow: hidden; }
|
3863 |
-
|
3864 |
-
.premium-person-zoomout-effect .premium-person-image-container img,
|
3865 |
-
.premium-person-scale-effect .premium-person-image-container img {
|
3866 |
-
-webkit-transform: scale(1.2);
|
3867 |
-
-ms-transform: scale(1.2);
|
3868 |
-
transform: scale(1.2); }
|
3869 |
-
|
3870 |
-
.premium-person-sepia-effect .premium-person-image-container img {
|
3871 |
-
-webkit-filter: sepia(30%);
|
3872 |
-
filter: sepia(30%); }
|
3873 |
-
|
3874 |
-
.premium-person-bright-effect .premium-person-image-container img {
|
3875 |
-
-webkit-filter: brightness(1);
|
3876 |
-
filter: brightness(1); }
|
3877 |
-
|
3878 |
-
.premium-person-trans-effect .premium-person-image-container img {
|
3879 |
-
-webkit-transform: translateX(-15px) scale(1.1);
|
3880 |
-
-ms-transform: translateX(-15px) scale(1.1);
|
3881 |
-
transform: translateX(-15px) scale(1.1); }
|
3882 |
-
|
3883 |
-
.premium-person-zoomin-effect:hover .premium-person-image-container img {
|
3884 |
-
-webkit-transform: scale(1.2);
|
3885 |
-
-ms-transform: scale(1.2);
|
3886 |
-
transform: scale(1.2); }
|
3887 |
-
|
3888 |
-
.premium-person-zoomout-effect:hover .premium-person-image-container img {
|
3889 |
-
-webkit-transform: scale(1.1);
|
3890 |
-
-ms-transform: scale(1.1);
|
3891 |
-
transform: scale(1.1); }
|
3892 |
-
|
3893 |
-
.premium-person-scale-effect:hover .premium-person-image-container img {
|
3894 |
-
-webkit-transform: scale(1.3) rotate(5deg);
|
3895 |
-
-ms-transform: scale(1.3) rotate(5deg);
|
3896 |
-
transform: scale(1.3) rotate(5deg); }
|
3897 |
-
|
3898 |
-
.premium-person-grayscale-effect:hover .premium-person-image-container img {
|
3899 |
-
-webkit-filter: grayscale(100%);
|
3900 |
-
filter: grayscale(100%); }
|
3901 |
-
|
3902 |
-
.premium-person-blur-effect:hover .premium-person-image-container img {
|
3903 |
-
-webkit-filter: blur(3px);
|
3904 |
-
filter: blur(3px); }
|
3905 |
-
|
3906 |
-
.premium-person-sepia-effect:hover .premium-person-image-container img {
|
3907 |
-
-webkit-filter: sepia(0%);
|
3908 |
-
filter: sepia(0%); }
|
3909 |
-
|
3910 |
-
.premium-person-bright-effect:hover .premium-person-image-container img {
|
3911 |
-
-webkit-filter: brightness(1.2);
|
3912 |
-
filter: brightness(1.2); }
|
3913 |
-
|
3914 |
-
.premium-person-trans-effect:hover .premium-person-image-container img {
|
3915 |
-
-webkit-transform: translateX(0px) scale(1.1);
|
3916 |
-
-ms-transform: translateX(0px) scale(1.1);
|
3917 |
-
transform: translateX(0px) scale(1.1); }
|
3918 |
-
|
3919 |
-
.premium-person-container .premium-person-image-container img {
|
3920 |
-
width: 100%;
|
3921 |
-
height: 100%;
|
3922 |
-
-o-object-fit: cover;
|
3923 |
-
object-fit: cover;
|
3924 |
-
-webkit-transition: all 0.5s ease-in-out;
|
3925 |
-
transition: all 0.5s ease-in-out; }
|
3926 |
-
|
3927 |
-
.premium-person-style2 .premium-person-social {
|
3928 |
-
position: absolute;
|
3929 |
-
top: 0;
|
3930 |
-
left: 0;
|
3931 |
-
width: 100%;
|
3932 |
-
height: 100%;
|
3933 |
-
z-index: 2;
|
3934 |
-
-js-display: flex;
|
3935 |
-
display: -webkit-box;
|
3936 |
-
display: -webkit-flex;
|
3937 |
-
display: -moz-box;
|
3938 |
-
display: -ms-flexbox;
|
3939 |
-
display: flex;
|
3940 |
-
-webkit-box-pack: center;
|
3941 |
-
-webkit-justify-content: center;
|
3942 |
-
-moz-box-pack: center;
|
3943 |
-
-ms-flex-pack: center;
|
3944 |
-
justify-content: center;
|
3945 |
-
-webkit-box-align: center;
|
3946 |
-
-webkit-align-items: center;
|
3947 |
-
-moz-box-align: center;
|
3948 |
-
-ms-flex-align: center;
|
3949 |
-
align-items: center;
|
3950 |
-
-webkit-box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
|
3951 |
-
box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
|
3952 |
-
-webkit-transition: all 0.5s linear 0s;
|
3953 |
-
transition: all 0.5s linear 0s;
|
3954 |
-
opacity: 0; }
|
3955 |
-
|
3956 |
-
.premium-person-style2 .premium-person-image-container:hover .premium-person-social {
|
3957 |
-
opacity: 1; }
|
3958 |
-
|
3959 |
-
.premium-person-list-item a {
|
3960 |
-
display: inline-block; }
|
3961 |
-
|
3962 |
-
.premium-person-style2 .premium-person-list-item a {
|
3963 |
-
opacity: 0;
|
3964 |
-
-webkit-transform: scale(0);
|
3965 |
-
-ms-transform: scale(0);
|
3966 |
-
transform: scale(0);
|
3967 |
-
-webkit-transition: all 0.5s ease-in-out 0s;
|
3968 |
-
transition: all 0.5s ease-in-out 0s; }
|
3969 |
-
|
3970 |
-
.premium-person-style2 .premium-person-image-container:hover .premium-person-list-item a {
|
3971 |
-
opacity: 1;
|
3972 |
-
-webkit-transform: scale(1);
|
3973 |
-
-ms-transform: scale(1);
|
3974 |
-
transform: scale(1); }
|
3975 |
-
|
3976 |
-
.premium-person-info-container {
|
3977 |
-
padding: 30px 15px; }
|
3978 |
-
|
3979 |
-
.premium-person-name {
|
3980 |
-
margin: 0 0 5px;
|
3981 |
-
font-weight: 700; }
|
3982 |
-
|
3983 |
-
.premium-person-title {
|
3984 |
-
margin: 0 0 20px;
|
3985 |
-
padding: 0; }
|
3986 |
-
|
3987 |
-
.premium-person-content {
|
3988 |
-
margin: 0 0 30px; }
|
3989 |
-
|
3990 |
-
/*Override Theme List Margin*/
|
3991 |
-
ul.premium-person-social-list {
|
3992 |
-
margin: 0px !important;
|
3993 |
-
padding: 0; }
|
3994 |
-
|
3995 |
-
.premium-person-social-list .premium-person-list-item {
|
3996 |
-
display: inline;
|
3997 |
-
list-style: none; }
|
3998 |
-
|
3999 |
-
.premium-person-social-list li {
|
4000 |
-
position: relative;
|
4001 |
-
bottom: 0px;
|
4002 |
-
-webkit-transition: all 0.2s ease-in-out;
|
4003 |
-
transition: all 0.2s ease-in-out; }
|
4004 |
-
.premium-person-social-list li i {
|
4005 |
-
position: relative;
|
4006 |
-
bottom: 0px;
|
4007 |
-
-webkit-transition: all 0.2s ease-in-out;
|
4008 |
-
transition: all 0.2s ease-in-out; }
|
4009 |
-
|
4010 |
-
.premium-person-defaults-yes li.premium-person-facebook:hover a {
|
4011 |
-
background-color: #3b5998 !important; }
|
4012 |
-
|
4013 |
-
.premium-person-defaults-yes li.premium-person-twitter:hover a {
|
4014 |
-
background-color: #55acee !important; }
|
4015 |
-
|
4016 |
-
.premium-person-defaults-yes li.premium-person-linkedin:hover a {
|
4017 |
-
background-color: #0077b5 !important; }
|
4018 |
-
|
4019 |
-
.premium-person-defaults-yes li.premium-person-google:hover a {
|
4020 |
-
background-color: #dc4e41 !important; }
|
4021 |
-
|
4022 |
-
.premium-person-defaults-yes li.premium-person-youtube:hover a {
|
4023 |
-
background-color: #b31217 !important; }
|
4024 |
-
|
4025 |
-
.premium-person-defaults-yes li.premium-person-instagram:hover a {
|
4026 |
-
background-color: #e4405f !important; }
|
4027 |
-
|
4028 |
-
.premium-person-defaults-yes li.premium-person-skype:hover a {
|
4029 |
-
background-color: #00aff0 !important; }
|
4030 |
-
|
4031 |
-
.premium-person-defaults-yes li.premium-person-pinterest:hover a {
|
4032 |
-
background-color: #bd081c !important; }
|
4033 |
-
|
4034 |
-
.premium-person-defaults-yes li.premium-person-dribbble:hover a {
|
4035 |
-
background-color: #ea4c89 !important; }
|
4036 |
-
|
4037 |
-
.premium-person-defaults-yes li.premium-person-mail:hover a {
|
4038 |
-
background-color: #b23121 !important; }
|
4039 |
-
|
4040 |
-
.premium-person-defaults-yes li.premium-person-behance:hover a {
|
4041 |
-
background-color: #1769ff !important; }
|
4042 |
-
|
4043 |
-
.premium-person-defaults-yes li.premium-person-whatsapp:hover a {
|
4044 |
-
background-color: #25d366 !important; }
|
4045 |
-
|
4046 |
-
.premium-person-defaults-yes li.premium-person-telegram:hover a {
|
4047 |
-
background-color: #0088cc !important; }
|
4048 |
-
|
4049 |
-
.premium-person-defaults-yes li.premium-person-site:hover a {
|
4050 |
-
background-color: #0055a5 !important; }
|
4051 |
-
|
4052 |
-
.premium-person-social-list li:hover a {
|
4053 |
-
-webkit-box-shadow: none;
|
4054 |
-
box-shadow: none; }
|
4055 |
-
|
4056 |
-
.premium-person-social-list li a:focus {
|
4057 |
-
-webkit-box-shadow: none;
|
4058 |
-
box-shadow: none;
|
4059 |
-
outline: none; }
|
4060 |
-
|
4061 |
-
.premium-person-social-list li i {
|
4062 |
-
font-size: 18px; }
|
4063 |
-
|
4064 |
-
.elementor-widget-premium-addon-person .elementor-widget-container {
|
4065 |
-
-js-display: flex;
|
4066 |
-
display: -webkit-box;
|
4067 |
-
display: -webkit-flex;
|
4068 |
-
display: -moz-box;
|
4069 |
-
display: -ms-flexbox;
|
4070 |
-
display: flex;
|
4071 |
-
-webkit-box-pack: center;
|
4072 |
-
-webkit-justify-content: center;
|
4073 |
-
-moz-box-pack: center;
|
4074 |
-
-ms-flex-pack: center;
|
4075 |
-
justify-content: center; }
|
4076 |
-
|
4077 |
-
.premium-persons-container.multiple-persons {
|
4078 |
-
-js-display: flex;
|
4079 |
-
display: -webkit-box;
|
4080 |
-
display: -webkit-flex;
|
4081 |
-
display: -moz-box;
|
4082 |
-
display: -ms-flexbox;
|
4083 |
-
display: flex;
|
4084 |
-
-webkit-flex-wrap: wrap;
|
4085 |
-
-ms-flex-wrap: wrap;
|
4086 |
-
flex-wrap: wrap;
|
4087 |
-
width: 100%; }
|
4088 |
-
|
4089 |
-
.premium-person-style1 .premium-person-container {
|
4090 |
-
overflow: hidden; }
|
4091 |
-
.premium-person-style1 .premium-person-container .premium-person-info {
|
4092 |
-
position: absolute;
|
4093 |
-
top: auto;
|
4094 |
-
right: 0;
|
4095 |
-
left: 0;
|
4096 |
-
-webkit-transition: all 500ms ease 0s;
|
4097 |
-
transition: all 500ms ease 0s;
|
4098 |
-
-webkit-transform: translate3d(0, 100%, 0);
|
4099 |
-
transform: translate3d(0, 100%, 0); }
|
4100 |
-
.premium-person-style1 .premium-person-container:hover .premium-person-info {
|
4101 |
-
-webkit-transform: translate3d(0, 0, 0);
|
4102 |
-
transform: translate3d(0, 0, 0);
|
4103 |
-
bottom: -1px !important; }
|
4104 |
-
|
4105 |
-
.premium-person-style1 .premium-person-social-list li:hover {
|
4106 |
-
bottom: 5px; }
|
4107 |
-
|
4108 |
-
.premium-person-style1.multiple-persons:not([data-persons-equal="yes"]) {
|
4109 |
-
-webkit-box-align: start;
|
4110 |
-
-webkit-align-items: flex-start;
|
4111 |
-
-moz-box-align: start;
|
4112 |
-
-ms-flex-align: start;
|
4113 |
-
align-items: flex-start; }
|
4114 |
-
|
4115 |
-
.premium-person-style1 .slick-track {
|
4116 |
-
-js-display: flex;
|
4117 |
-
display: -webkit-box;
|
4118 |
-
display: -webkit-flex;
|
4119 |
-
display: -moz-box;
|
4120 |
-
display: -ms-flexbox;
|
4121 |
-
display: flex; }
|
4122 |
-
|
4123 |
-
.premium-person-style1 .slick-slide {
|
4124 |
-
height: inherit !important; }
|
4125 |
-
|
4126 |
-
.premium-person-style1.multiple-persons[data-persons-equal="yes"] .premium-person-image-container,
|
4127 |
-
.premium-person-style1.multiple-persons[data-persons-equal="yes"] .premium-person-image-wrap {
|
4128 |
-
height: 100%; }
|
4129 |
-
|
4130 |
-
.premium-person-style3 .premium-person-info-container {
|
4131 |
-
position: absolute;
|
4132 |
-
top: 0;
|
4133 |
-
left: 0;
|
4134 |
-
width: 100%;
|
4135 |
-
height: 100%;
|
4136 |
-
-js-display: flex;
|
4137 |
-
display: -webkit-box;
|
4138 |
-
display: -webkit-flex;
|
4139 |
-
display: -moz-box;
|
4140 |
-
display: -ms-flexbox;
|
4141 |
-
display: flex;
|
4142 |
-
-webkit-box-orient: vertical;
|
4143 |
-
-webkit-box-direction: normal;
|
4144 |
-
-webkit-flex-direction: column;
|
4145 |
-
-moz-box-orient: vertical;
|
4146 |
-
-moz-box-direction: normal;
|
4147 |
-
-ms-flex-direction: column;
|
4148 |
-
flex-direction: column;
|
4149 |
-
-webkit-box-pack: justify;
|
4150 |
-
-webkit-justify-content: space-between;
|
4151 |
-
-moz-box-pack: justify;
|
4152 |
-
-ms-flex-pack: justify;
|
4153 |
-
justify-content: space-between; }
|
4154 |
-
|
4155 |
-
.premium-person-style3 .premium-person-title-desc-wrap {
|
4156 |
-
-js-display: flex;
|
4157 |
-
display: -webkit-box;
|
4158 |
-
display: -webkit-flex;
|
4159 |
-
display: -moz-box;
|
4160 |
-
display: -ms-flexbox;
|
4161 |
-
display: flex;
|
4162 |
-
-webkit-box-orient: horizontal;
|
4163 |
-
-webkit-box-direction: reverse;
|
4164 |
-
-webkit-flex-direction: row-reverse;
|
4165 |
-
-moz-box-orient: horizontal;
|
4166 |
-
-moz-box-direction: reverse;
|
4167 |
-
-ms-flex-direction: row-reverse;
|
4168 |
-
flex-direction: row-reverse;
|
4169 |
-
-webkit-box-pack: justify;
|
4170 |
-
-webkit-justify-content: space-between;
|
4171 |
-
-moz-box-pack: justify;
|
4172 |
-
-ms-flex-pack: justify;
|
4173 |
-
justify-content: space-between;
|
4174 |
-
-webkit-box-align: start;
|
4175 |
-
-webkit-align-items: flex-start;
|
4176 |
-
-moz-box-align: start;
|
4177 |
-
-ms-flex-align: start;
|
4178 |
-
align-items: flex-start; }
|
4179 |
-
|
4180 |
-
.premium-person-style3 .premium-person-name-icons-wrap {
|
4181 |
-
-js-display: flex;
|
4182 |
-
display: -webkit-box;
|
4183 |
-
display: -webkit-flex;
|
4184 |
-
display: -moz-box;
|
4185 |
-
display: -ms-flexbox;
|
4186 |
-
display: flex;
|
4187 |
-
-webkit-box-pack: justify;
|
4188 |
-
-webkit-justify-content: space-between;
|
4189 |
-
-moz-box-pack: justify;
|
4190 |
-
-ms-flex-pack: justify;
|
4191 |
-
justify-content: space-between;
|
4192 |
-
-webkit-box-align: end;
|
4193 |
-
-webkit-align-items: flex-end;
|
4194 |
-
-moz-box-align: end;
|
4195 |
-
-ms-flex-align: end;
|
4196 |
-
align-items: flex-end; }
|
4197 |
-
|
4198 |
-
.premium-person-style3 .premium-person-title {
|
4199 |
-
opacity: 0;
|
4200 |
-
-webkit-transition: all 0.3s ease;
|
4201 |
-
transition: all 0.3s ease;
|
4202 |
-
width: 0; }
|
4203 |
-
.premium-person-style3 .premium-person-title span {
|
4204 |
-
display: inline-block; }
|
4205 |
-
|
4206 |
-
.premium-person-style3 .premium-person-name {
|
4207 |
-
padding-left: 10px; }
|
4208 |
-
|
4209 |
-
.premium-person-style3 .premium-person-social-list {
|
4210 |
-
-js-display: flex;
|
4211 |
-
display: -webkit-box;
|
4212 |
-
display: -webkit-flex;
|
4213 |
-
display: -moz-box;
|
4214 |
-
display: -ms-flexbox;
|
4215 |
-
display: flex;
|
4216 |
-
-webkit-box-orient: vertical;
|
4217 |
-
-webkit-box-direction: normal;
|
4218 |
-
-webkit-flex-direction: column;
|
4219 |
-
-moz-box-orient: vertical;
|
4220 |
-
-moz-box-direction: normal;
|
4221 |
-
-ms-flex-direction: column;
|
4222 |
-
flex-direction: column;
|
4223 |
-
-webkit-transform: translateY(20px);
|
4224 |
-
-ms-transform: translateY(20px);
|
4225 |
-
transform: translateY(20px);
|
4226 |
-
opacity: 0;
|
4227 |
-
-webkit-transition: all 0.3s ease;
|
4228 |
-
transition: all 0.3s ease; }
|
4229 |
-
|
4230 |
-
.premium-person-style3 .premium-person-list-item {
|
4231 |
-
line-height: 0; }
|
4232 |
-
.premium-person-style3 .premium-person-list-item a {
|
4233 |
-
padding: 5px 10px 0 0;
|
4234 |
-
margin: 5px 0; }
|
4235 |
-
|
4236 |
-
.premium-person-style3 .premium-person-container:hover .premium-person-title {
|
4237 |
-
opacity: 1; }
|
4238 |
-
|
4239 |
-
.premium-person-style3 .premium-person-container:hover .premium-person-social-list {
|
4240 |
-
opacity: 1;
|
4241 |
-
-webkit-transform: translateY(0);
|
4242 |
-
-ms-transform: translateY(0);
|
4243 |
-
transform: translateY(0); }
|
4244 |
-
|
4245 |
-
.premium-persons-title-cw .premium-person-title {
|
4246 |
-
-webkit-transform: translateX(15px) rotate(90deg);
|
4247 |
-
-ms-transform: translateX(15px) rotate(90deg);
|
4248 |
-
transform: translateX(15px) rotate(90deg);
|
4249 |
-
-webkit-transform-origin: top;
|
4250 |
-
-ms-transform-origin: top;
|
4251 |
-
transform-origin: top; }
|
4252 |
-
|
4253 |
-
.premium-persons-title-cw .premium-person-container:hover .premium-person-title {
|
4254 |
-
-webkit-transform: translateX(0) rotate(90deg);
|
4255 |
-
-ms-transform: translateX(0) rotate(90deg);
|
4256 |
-
transform: translateX(0) rotate(90deg); }
|
4257 |
-
|
4258 |
-
.premium-persons-title-ccw .premium-person-title {
|
4259 |
-
width: auto;
|
4260 |
-
margin-right: 20px;
|
4261 |
-
-webkit-transform: translateX(15px) rotate(-90deg);
|
4262 |
-
-ms-transform: translateX(15px) rotate(-90deg);
|
4263 |
-
transform: translateX(15px) rotate(-90deg);
|
4264 |
-
-webkit-transform-origin: center right;
|
4265 |
-
-ms-transform-origin: center right;
|
4266 |
-
transform-origin: center right; }
|
4267 |
-
|
4268 |
-
.premium-persons-title-ccw .premium-person-container:hover .premium-person-title {
|
4269 |
-
-webkit-transform: translateX(0) rotate(-90deg);
|
4270 |
-
-ms-transform: translateX(0) rotate(-90deg);
|
4271 |
-
transform: translateX(0) rotate(-90deg); }
|
4272 |
-
|
4273 |
-
/**************** Premium Fancy Text *******************/
|
4274 |
-
/*******************************************************/
|
4275 |
-
.premium-suffix-text,
|
4276 |
-
.premium-fancy-text,
|
4277 |
-
.premium-prefix-text {
|
4278 |
-
font-size: 40px; }
|
4279 |
-
|
4280 |
-
.premium-fancy-text-wrapper .premium-fancy-list-items {
|
4281 |
-
list-style: none; }
|
4282 |
-
|
4283 |
-
.premium-fancy-text-wrapper .premium-fancy-text-span-align {
|
4284 |
-
vertical-align: top; }
|
4285 |
-
|
4286 |
-
.premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-text-items-wrapper {
|
4287 |
-
margin: 0;
|
4288 |
-
padding: 0;
|
4289 |
-
border: none;
|
4290 |
-
position: relative; }
|
4291 |
-
|
4292 |
-
.premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-list-items {
|
4293 |
-
position: absolute;
|
4294 |
-
top: 0;
|
4295 |
-
left: 0;
|
4296 |
-
display: inline-block; }
|
4297 |
-
|
4298 |
-
.premium-fancy-text-wrapper.zoomout .premium-fancy-item-hidden {
|
4299 |
-
opacity: 0;
|
4300 |
-
-webkit-animation: pa-zoom-out 0.8s;
|
4301 |
-
animation: pa-zoom-out 0.8s; }
|
4302 |
-
|
4303 |
-
.premium-fancy-text-wrapper.zoomout .premium-fancy-item-visible {
|
4304 |
-
position: relative !important;
|
4305 |
-
-webkit-animation: pa-zoom-in 0.8s;
|
4306 |
-
animation: pa-zoom-in 0.8s; }
|
4307 |
-
|
4308 |
-
.premium-fancy-text-wrapper.zoomout .premium-fancy-text-items-wrapper {
|
4309 |
-
-webkit-perspective: 300px;
|
4310 |
-
perspective: 300px; }
|
4311 |
-
|
4312 |
-
.premium-fancy-text-wrapper.rotate .premium-fancy-list-items {
|
4313 |
-
-webkit-transform-origin: 50% 100%;
|
4314 |
-
-ms-transform-origin: 50% 100%;
|
4315 |
-
transform-origin: 50% 100%; }
|
4316 |
-
|
4317 |
-
.premium-fancy-text-wrapper.rotate .premium-fancy-item-hidden {
|
4318 |
-
opacity: 0;
|
4319 |
-
-webkit-transform: rotateX(180deg);
|
4320 |
-
transform: rotateX(180deg);
|
4321 |
-
-webkit-animation: pa-rotate-out 1.2s;
|
4322 |
-
animation: pa-rotate-out 1.2s; }
|
4323 |
-
|
4324 |
-
.premium-fancy-text-wrapper.rotate .premium-fancy-item-visible {
|
4325 |
-
position: relative !important;
|
4326 |
-
-webkit-transform: rotateX(0deg);
|
4327 |
-
transform: rotateX(0deg);
|
4328 |
-
-webkit-animation: pa-rotate-in 1.2s;
|
4329 |
-
animation: pa-rotate-in 1.2s; }
|
4330 |
-
|
4331 |
-
.premium-fancy-text-wrapper.custom .premium-fancy-item-hidden {
|
4332 |
-
opacity: 0; }
|
4333 |
-
|
4334 |
-
.premium-fancy-text-wrapper.custom .premium-fancy-item-visible {
|
4335 |
-
position: relative !important; }
|
4336 |
-
|
4337 |
-
.premium-fancy-text-wrapper.auto-fade .premium-fancy-text {
|
4338 |
-
display: inline-block;
|
4339 |
-
width: 200px;
|
4340 |
-
font-weight: 400; }
|
4341 |
-
|
4342 |
-
.premium-fancy-text-wrapper.auto-fade .premium-fancy-svg-text {
|
4343 |
-
position: relative;
|
4344 |
-
vertical-align: sub; }
|
4345 |
-
|
4346 |
-
.premium-fancy-text-wrapper.auto-fade g > text {
|
4347 |
-
text-anchor: start;
|
4348 |
-
shape-rendering: crispEdges;
|
4349 |
-
opacity: 0;
|
4350 |
-
font-size: 300px;
|
4351 |
-
-webkit-animation-name: pa-auto-fade;
|
4352 |
-
animation-name: pa-auto-fade;
|
4353 |
-
-moz-animation-name: pa-auto-fade;
|
4354 |
-
-webkit-animation-duration: 9s;
|
4355 |
-
animation-duration: 9s;
|
4356 |
-
-webkit-animation-timing-function: linear;
|
4357 |
-
animation-timing-function: linear;
|
4358 |
-
-webkit-animation-iteration-count: infinite;
|
4359 |
-
animation-iteration-count: infinite; }
|
4360 |
-
|
4361 |
-
.premium-fancy-text-wrapper.auto-fade g > text:nth-child(1) {
|
4362 |
-
-webkit-animation-delay: 0s;
|
4363 |
-
animation-delay: 0s; }
|
4364 |
-
|
4365 |
-
.premium-fancy-text-wrapper.auto-fade g > text:nth-child(2) {
|
4366 |
-
-webkit-animation-delay: 3s;
|
4367 |
-
animation-delay: 3s; }
|
4368 |
-
|
4369 |
-
.premium-fancy-text-wrapper.auto-fade g > text:nth-child(3) {
|
4370 |
-
-webkit-animation-delay: 6s;
|
4371 |
-
animation-delay: 6s; }
|
4372 |
-
|
4373 |
-
@-webkit-keyframes pa-auto-fade {
|
4374 |
-
0% {
|
4375 |
-
opacity: 0; }
|
4376 |
-
20% {
|
4377 |
-
opacity: 1; }
|
4378 |
-
35% {
|
4379 |
-
opacity: 0; }
|
4380 |
-
100% {
|
4381 |
-
opacity: 0; } }
|
4382 |
-
|
4383 |
-
@keyframes pa-auto-fade {
|
4384 |
-
0% {
|
4385 |
-
opacity: 0; }
|
4386 |
-
20% {
|
4387 |
-
opacity: 1; }
|
4388 |
-
35% {
|
4389 |
-
opacity: 0; }
|
4390 |
-
100% {
|
4391 |
-
opacity: 0; } }
|
4392 |
-
|
4393 |
-
@-webkit-keyframes pa-zoom-in {
|
4394 |
-
0% {
|
4395 |
-
opacity: 0;
|
4396 |
-
-webkit-transform: translateZ(100px);
|
4397 |
-
transform: translateZ(100px); }
|
4398 |
-
100% {
|
4399 |
-
opacity: 1;
|
4400 |
-
-webkit-transform: translateZ(0);
|
4401 |
-
transform: translateZ(0); } }
|
4402 |
-
|
4403 |
-
@keyframes pa-zoom-in {
|
4404 |
-
0% {
|
4405 |
-
opacity: 0;
|
4406 |
-
-webkit-transform: translateZ(100px);
|
4407 |
-
transform: translateZ(100px); }
|
4408 |
-
100% {
|
4409 |
-
opacity: 1;
|
4410 |
-
-webkit-transform: translateZ(0);
|
4411 |
-
transform: translateZ(0); } }
|
4412 |
-
|
4413 |
-
@-webkit-keyframes pa-zoom-out {
|
4414 |
-
0% {
|
4415 |
-
opacity: 1;
|
4416 |
-
-webkit-transform: translateZ(0);
|
4417 |
-
transform: translateZ(0); }
|
4418 |
-
100% {
|
4419 |
-
opacity: 0;
|
4420 |
-
-webkit-transform: translateZ(-100px);
|
4421 |
-
transform: translateZ(-100px); } }
|
4422 |
-
|
4423 |
-
@keyframes pa-zoom-out {
|
4424 |
-
0% {
|
4425 |
-
opacity: 1;
|
4426 |
-
-webkit-transform: translateZ(0);
|
4427 |
-
transform: translateZ(0); }
|
4428 |
-
100% {
|
4429 |
-
opacity: 0;
|
4430 |
-
-webkit-transform: translateZ(-100px);
|
4431 |
-
transform: translateZ(-100px); } }
|
4432 |
-
|
4433 |
-
@-webkit-keyframes pa-rotate-in {
|
4434 |
-
0% {
|
4435 |
-
opacity: 0;
|
4436 |
-
-webkit-transform: rotateX(180deg);
|
4437 |
-
transform: rotateX(180deg); }
|
4438 |
-
35% {
|
4439 |
-
opacity: 0;
|
4440 |
-
-webkit-transform: rotateX(120deg);
|
4441 |
-
transform: rotateX(120deg); }
|
4442 |
-
65% {
|
4443 |
-
opacity: 0; }
|
4444 |
-
100% {
|
4445 |
-
opacity: 1;
|
4446 |
-
-webkit-transform: rotateX(360deg);
|
4447 |
-
transform: rotateX(360deg); } }
|
4448 |
-
|
4449 |
-
@keyframes pa-rotate-in {
|
4450 |
-
0% {
|
4451 |
-
opacity: 0;
|
4452 |
-
-webkit-transform: rotateX(180deg);
|
4453 |
-
transform: rotateX(180deg); }
|
4454 |
-
35% {
|
4455 |
-
opacity: 0;
|
4456 |
-
-webkit-transform: rotateX(120deg);
|
4457 |
-
transform: rotateX(120deg); }
|
4458 |
-
65% {
|
4459 |
-
opacity: 0; }
|
4460 |
-
100% {
|
4461 |
-
opacity: 1;
|
4462 |
-
-webkit-transform: rotateX(360deg);
|
4463 |
-
transform: rotateX(360deg); } }
|
4464 |
-
|
4465 |
-
@-webkit-keyframes pa-rotate-out {
|
4466 |
-
0% {
|
4467 |
-
opacity: 1;
|
4468 |
-
-webkit-transform: rotateX(0deg);
|
4469 |
-
transform: rotateX(0deg); }
|
4470 |
-
35% {
|
4471 |
-
opacity: 1;
|
4472 |
-
-webkit-transform: rotateX(-40deg);
|
4473 |
-
transform: rotateX(-40deg); }
|
4474 |
-
65% {
|
4475 |
-
opacity: 0; }
|
4476 |
-
100% {
|
4477 |
-
opacity: 0;
|
4478 |
-
-webkit-transform: rotateX(180deg);
|
4479 |
-
transform: rotateX(180deg); } }
|
4480 |
-
|
4481 |
-
@keyframes pa-rotate-out {
|
4482 |
-
0% {
|
4483 |
-
opacity: 1;
|
4484 |
-
-webkit-transform: rotateX(0deg);
|
4485 |
-
transform: rotateX(0deg); }
|
4486 |
-
35% {
|
4487 |
-
opacity: 1;
|
4488 |
-
-webkit-transform: rotateX(-40deg);
|
4489 |
-
transform: rotateX(-40deg); }
|
4490 |
-
65% {
|
4491 |
-
opacity: 0; }
|
4492 |
-
100% {
|
4493 |
-
opacity: 0;
|
4494 |
-
-webkit-transform: rotateX(180deg);
|
4495 |
-
transform: rotateX(180deg); } }
|
4496 |
-
|
4497 |
-
/**************** Premium Pricing Table ****************/
|
4498 |
-
/*******************************************************/
|
4499 |
-
.premium-pricing-table-container {
|
4500 |
-
position: relative;
|
4501 |
-
overflow: hidden;
|
4502 |
-
text-align: center;
|
4503 |
-
-webkit-transition: all 0.3s ease-in-out;
|
4504 |
-
transition: all 0.3s ease-in-out; }
|
4505 |
-
|
4506 |
-
.premium-pricing-icon-container {
|
4507 |
-
-js-display: flex;
|
4508 |
-
display: -webkit-box;
|
4509 |
-
display: -webkit-flex;
|
4510 |
-
display: -moz-box;
|
4511 |
-
display: -ms-flexbox;
|
4512 |
-
display: flex;
|
4513 |
-
-webkit-box-pack: center;
|
4514 |
-
-webkit-justify-content: center;
|
4515 |
-
-moz-box-pack: center;
|
4516 |
-
-ms-flex-pack: center;
|
4517 |
-
justify-content: center;
|
4518 |
-
line-height: 0; }
|
4519 |
-
.premium-pricing-icon-container .premium-pricing-icon {
|
4520 |
-
display: inline-block; }
|
4521 |
-
.premium-pricing-icon-container .premium-pricing-image {
|
4522 |
-
overflow: hidden; }
|
4523 |
-
.premium-pricing-icon-container .premium-pricing-image img {
|
4524 |
-
width: 25px;
|
4525 |
-
height: 25px;
|
4526 |
-
-o-object-fit: cover;
|
4527 |
-
object-fit: cover; }
|
4528 |
-
|
4529 |
-
.premium-badge-left {
|
4530 |
-
position: absolute;
|
4531 |
-
top: 0; }
|
4532 |
-
|
4533 |
-
.premium-badge-right {
|
4534 |
-
position: absolute;
|
4535 |
-
top: 0;
|
4536 |
-
right: 0; }
|
4537 |
-
|
4538 |
-
.premium-badge-left {
|
4539 |
-
left: 0; }
|
4540 |
-
|
4541 |
-
.premium-badge-triangle.premium-badge-left .corner {
|
4542 |
-
width: 0;
|
4543 |
-
height: 0;
|
4544 |
-
border-top: 150px solid;
|
4545 |
-
border-bottom: 150px solid transparent;
|
4546 |
-
border-right: 150px solid transparent; }
|
4547 |
-
|
4548 |
-
.premium-badge-triangle.premium-badge-right .corner {
|
4549 |
-
width: 0;
|
4550 |
-
height: 0;
|
4551 |
-
border-bottom: 150px solid transparent;
|
4552 |
-
border-right: 150px solid;
|
4553 |
-
border-left: 150px solid transparent; }
|
4554 |
-
|
4555 |
-
.premium-badge-triangle span {
|
4556 |
-
position: absolute;
|
4557 |
-
top: 35px;
|
4558 |
-
width: 100px;
|
4559 |
-
text-align: center;
|
4560 |
-
-webkit-transform: rotate(-45deg);
|
4561 |
-
-ms-transform: rotate(-45deg);
|
4562 |
-
transform: rotate(-45deg);
|
4563 |
-
display: block;
|
4564 |
-
text-transform: uppercase; }
|
4565 |
-
|
4566 |
-
.premium-badge-triangle.premium-badge-right span {
|
4567 |
-
-webkit-transform: rotate(45deg);
|
4568 |
-
-ms-transform: rotate(45deg);
|
4569 |
-
transform: rotate(45deg);
|
4570 |
-
right: 0; }
|
4571 |
-
|
4572 |
-
.premium-badge-circle {
|
4573 |
-
min-width: 4em;
|
4574 |
-
min-height: 4em;
|
4575 |
-
line-height: 4em;
|
4576 |
-
text-align: center;
|
4577 |
-
-webkit-border-radius: 100%;
|
4578 |
-
border-radius: 100%;
|
4579 |
-
position: absolute;
|
4580 |
-
z-index: 1; }
|
4581 |
-
|
4582 |
-
.premium-badge-stripe {
|
4583 |
-
position: absolute;
|
4584 |
-
-webkit-transform: rotate(90deg);
|
4585 |
-
-ms-transform: rotate(90deg);
|
4586 |
-
transform: rotate(90deg);
|
4587 |
-
width: 15em;
|
4588 |
-
overflow: hidden;
|
4589 |
-
height: 15em; }
|
4590 |
-
.premium-badge-stripe.premium-badge-left {
|
4591 |
-
-webkit-transform: rotate(0);
|
4592 |
-
-ms-transform: rotate(0);
|
4593 |
-
transform: rotate(0); }
|
4594 |
-
.premium-badge-stripe .corner {
|
4595 |
-
text-align: center;
|
4596 |
-
left: 0;
|
4597 |
-
width: 150%;
|
4598 |
-
-webkit-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
|
4599 |
-
-ms-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
|
4600 |
-
transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
|
4601 |
-
margin-top: 35px;
|
4602 |
-
font-size: 13px;
|
4603 |
-
line-height: 2;
|
4604 |
-
font-weight: 800;
|
4605 |
-
text-transform: uppercase; }
|
4606 |
-
|
4607 |
-
.premium-badge-flag .corner {
|
4608 |
-
text-align: center;
|
4609 |
-
-webkit-border-radius: 4px 4px 0 4px;
|
4610 |
-
border-radius: 4px 4px 0 4px;
|
4611 |
-
padding: 3px 15px;
|
4612 |
-
position: absolute;
|
4613 |
-
top: 10%;
|
4614 |
-
right: -8px; }
|
4615 |
-
.premium-badge-flag .corner::before, .premium-badge-flag .corner::after {
|
4616 |
-
content: "";
|
4617 |
-
display: block;
|
4618 |
-
position: absolute;
|
4619 |
-
width: 0;
|
4620 |
-
height: 0;
|
4621 |
-
top: 100%;
|
4622 |
-
right: 0;
|
4623 |
-
border-bottom: 8px solid transparent; }
|
4624 |
-
|
4625 |
-
.elementor-widget-premium-addon-pricing-table .elementor-widget-container {
|
4626 |
-
overflow: visible !important; }
|
4627 |
-
|
4628 |
-
.premium-badge-flag .corner::after {
|
4629 |
-
border-left: 8px solid rgba(0, 0, 0, 0.2); }
|
4630 |
-
|
4631 |
-
.premium-pricing-price-currency {
|
4632 |
-
position: relative; }
|
4633 |
-
|
4634 |
-
.premium-pricing-button-container {
|
4635 |
-
display: block; }
|
4636 |
-
|
4637 |
-
.premium-pricing-list {
|
4638 |
-
-js-display: flex;
|
4639 |
-
display: -webkit-box;
|
4640 |
-
display: -webkit-flex;
|
4641 |
-
display: -moz-box;
|
4642 |
-
display: -ms-flexbox;
|
4643 |
-
display: flex;
|
4644 |
-
-webkit-box-orient: vertical;
|
4645 |
-
-webkit-box-direction: normal;
|
4646 |
-
-webkit-flex-direction: column;
|
4647 |
-
-moz-box-orient: vertical;
|
4648 |
-
-moz-box-direction: normal;
|
4649 |
-
-ms-flex-direction: column;
|
4650 |
-
flex-direction: column;
|
4651 |
-
list-style-type: none;
|
4652 |
-
margin: 0; }
|
4653 |
-
.premium-pricing-list .premium-pricing-list-item {
|
4654 |
-
-js-display: flex;
|
4655 |
-
display: -webkit-box;
|
4656 |
-
display: -webkit-flex;
|
4657 |
-
display: -moz-box;
|
4658 |
-
display: -ms-flexbox;
|
4659 |
-
display: flex;
|
4660 |
-
-webkit-box-align: center;
|
4661 |
-
-webkit-align-items: center;
|
4662 |
-
-moz-box-align: center;
|
4663 |
-
-ms-flex-align: center;
|
4664 |
-
align-items: center; }
|
4665 |
-
.premium-pricing-list .premium-pricing-list-item svg {
|
4666 |
-
width: 50px;
|
4667 |
-
height: 50px; }
|
4668 |
-
.premium-pricing-list .premium-pricing-list-item img {
|
4669 |
-
width: 30px;
|
4670 |
-
height: 30px;
|
4671 |
-
-o-object-fit: cover;
|
4672 |
-
object-fit: cover; }
|
4673 |
-
.premium-pricing-list .premium-pricing-list-span {
|
4674 |
-
position: relative; }
|
4675 |
-
.premium-pricing-list .list-item-tooltip {
|
4676 |
-
border-bottom: 1px dotted; }
|
4677 |
-
.premium-pricing-list .premium-pricing-list-tooltip {
|
4678 |
-
position: absolute;
|
4679 |
-
top: -webkit-calc(100% + 1px);
|
4680 |
-
top: calc(100% + 1px);
|
4681 |
-
left: 0;
|
4682 |
-
visibility: hidden;
|
4683 |
-
padding: 15px 20px;
|
4684 |
-
-webkit-border-radius: 5px;
|
4685 |
-
border-radius: 5px;
|
4686 |
-
min-width: 200px;
|
4687 |
-
overflow: hidden;
|
4688 |
-
text-align: left;
|
4689 |
-
font-size: 0.8rem;
|
4690 |
-
color: #fff;
|
4691 |
-
background-color: #aaa; }
|
4692 |
-
|
4693 |
-
.premium-pricing-features-left .premium-pricing-list-span {
|
4694 |
-
text-align: left; }
|
4695 |
-
|
4696 |
-
.premium-pricing-features-center .premium-pricing-list-span {
|
4697 |
-
text-align: center; }
|
4698 |
-
|
4699 |
-
.premium-pricing-features-right .premium-pricing-list-span {
|
4700 |
-
text-align: right; }
|
4701 |
-
|
4702 |
-
.premium-pricing-list-span:hover .premium-pricing-list-tooltip {
|
4703 |
-
z-index: 99;
|
4704 |
-
visibility: visible;
|
4705 |
-
opacity: 1; }
|
4706 |
-
|
4707 |
-
.premium-pricing-slashed-price-value {
|
4708 |
-
display: inline-block;
|
4709 |
-
font-size: 20px;
|
4710 |
-
font-weight: 400;
|
4711 |
-
margin-right: 5px; }
|
4712 |
-
|
4713 |
-
.premium-pricing-price-value {
|
4714 |
-
font-size: 70px; }
|
4715 |
-
|
4716 |
-
.premium-pricing-description-container li {
|
4717 |
-
list-style-position: inside;
|
4718 |
-
text-indent: -40px; }
|
4719 |
-
|
4720 |
-
@-moz-document url-prefix() {
|
4721 |
-
.premium-pricing-description-container li {
|
4722 |
-
text-indent: 0px; } }
|
4723 |
-
|
4724 |
-
.premium-pricing-price-button {
|
4725 |
-
display: block;
|
4726 |
-
padding: 6px 12px;
|
4727 |
-
line-height: 1.42857143;
|
4728 |
-
text-align: center;
|
4729 |
-
color: #fff;
|
4730 |
-
background: #6ec1e4;
|
4731 |
-
margin-bottom: 0;
|
4732 |
-
-webkit-transition: all 0.3s ease-in-out;
|
4733 |
-
transition: all 0.3s ease-in-out; }
|
4734 |
-
|
4735 |
-
/**************** Premium Google Maps ******************/
|
4736 |
-
/*******************************************************/
|
4737 |
-
.premium-maps-info-container {
|
4738 |
-
margin-top: 10px;
|
4739 |
-
margin-bottom: 10px; }
|
4740 |
-
|
4741 |
-
.premium-maps-info-title,
|
4742 |
-
.premium-maps-info-desc {
|
4743 |
-
margin: 0;
|
4744 |
-
padding: 0; }
|
4745 |
-
|
4746 |
-
.premium-maps-container .gm-style-iw {
|
4747 |
-
text-align: center; }
|
4748 |
-
|
4749 |
-
.premium-maps-container .gm-style img {
|
4750 |
-
max-width: none !important; }
|
4751 |
-
|
4752 |
-
/**************** Premium Button ***********************/
|
4753 |
-
/*******************************************************/
|
4754 |
-
.premium-button {
|
4755 |
-
display: inline-block;
|
4756 |
-
position: relative;
|
4757 |
-
overflow: hidden;
|
4758 |
-
cursor: pointer;
|
4759 |
-
-webkit-transition: all 0.2s ease-in-out !important;
|
4760 |
-
transition: all 0.2s ease-in-out !important; }
|
4761 |
-
|
4762 |
-
.premium-button-sm {
|
4763 |
-
padding: 12px 24px;
|
4764 |
-
font-size: 14px;
|
4765 |
-
line-height: 1; }
|
4766 |
-
|
4767 |
-
.premium-button .premium-lottie-animation,
|
4768 |
-
.premium-image-button .premium-lottie-animation {
|
4769 |
-
-js-display: flex;
|
4770 |
-
display: -webkit-box;
|
4771 |
-
display: -webkit-flex;
|
4772 |
-
display: -moz-box;
|
4773 |
-
display: -ms-flexbox;
|
4774 |
-
display: flex; }
|
4775 |
-
.premium-button .premium-lottie-animation svg,
|
4776 |
-
.premium-image-button .premium-lottie-animation svg {
|
4777 |
-
width: 50px;
|
4778 |
-
height: 50px; }
|
4779 |
-
|
4780 |
-
.premium-button-md {
|
4781 |
-
padding: 14px 26px;
|
4782 |
-
font-size: 16px;
|
4783 |
-
line-height: 1.2; }
|
4784 |
-
|
4785 |
-
.premium-button-lg {
|
4786 |
-
padding: 16px 28px;
|
4787 |
-
font-size: 18px;
|
4788 |
-
line-height: 1.3333; }
|
4789 |
-
|
4790 |
-
.premium-button-block {
|
4791 |
-
font-size: 15px;
|
4792 |
-
line-height: 1;
|
4793 |
-
padding: 12px 24px;
|
4794 |
-
width: 100%;
|
4795 |
-
text-align: center; }
|
4796 |
-
|
4797 |
-
.premium-button-text {
|
4798 |
-
display: inline-block;
|
4799 |
-
width: 100%; }
|
4800 |
-
|
4801 |
-
.premium-button-style1,
|
4802 |
-
.premium-button-style2,
|
4803 |
-
.premium-button-style5,
|
4804 |
-
.premium-button-style7 {
|
4805 |
-
display: inline-block;
|
4806 |
-
vertical-align: middle;
|
4807 |
-
-webkit-transform: perspective(1px) translateZ(0);
|
4808 |
-
transform: perspective(1px) translateZ(0);
|
4809 |
-
-webkit-box-shadow: 0 0 1px transparent;
|
4810 |
-
box-shadow: 0 0 1px transparent;
|
4811 |
-
position: relative;
|
4812 |
-
-webkit-transition-property: color;
|
4813 |
-
transition-property: color;
|
4814 |
-
-webkit-transition-duration: 0.15s;
|
4815 |
-
transition-duration: 0.15s; }
|
4816 |
-
|
4817 |
-
.premium-button-style1:before,
|
4818 |
-
.premium-button-style2:before,
|
4819 |
-
.premium-button-style5:before {
|
4820 |
-
content: "";
|
4821 |
-
position: absolute;
|
4822 |
-
z-index: -1;
|
4823 |
-
top: 0;
|
4824 |
-
left: 0;
|
4825 |
-
right: 0;
|
4826 |
-
bottom: 0;
|
4827 |
-
-webkit-transform: scaleY(0);
|
4828 |
-
-ms-transform: scaleY(0);
|
4829 |
-
transform: scaleY(0);
|
4830 |
-
-webkit-transform-origin: 50% 0;
|
4831 |
-
-ms-transform-origin: 50% 0;
|
4832 |
-
transform-origin: 50% 0;
|
4833 |
-
-webkit-transition-property: -webkit-transform;
|
4834 |
-
transition-property: -webkit-transform;
|
4835 |
-
transition-property: transform;
|
4836 |
-
transition-property: transform, -webkit-transform;
|
4837 |
-
-webkit-transition-duration: 0.15s;
|
4838 |
-
transition-duration: 0.15s;
|
4839 |
-
-webkit-transition-timing-function: ease-out;
|
4840 |
-
transition-timing-function: ease-out; }
|
4841 |
-
|
4842 |
-
.premium-button-style5-radialin:before,
|
4843 |
-
.premium-button-style5-radialout:before {
|
4844 |
-
-webkit-transform-origin: 50%;
|
4845 |
-
-ms-transform-origin: 50%;
|
4846 |
-
transform-origin: 50%;
|
4847 |
-
-webkit-border-radius: 100%;
|
4848 |
-
border-radius: 100%;
|
4849 |
-
-webkit-transform: scale(0);
|
4850 |
-
-ms-transform: scale(0);
|
4851 |
-
transform: scale(0); }
|
4852 |
-
|
4853 |
-
.premium-button-style5-radialin:before {
|
4854 |
-
-webkit-transform: scale(2);
|
4855 |
-
-ms-transform: scale(2);
|
4856 |
-
transform: scale(2); }
|
4857 |
-
|
4858 |
-
.premium-button-style5-rectin:before {
|
4859 |
-
-webkit-transform-origin: 50%;
|
4860 |
-
-ms-transform-origin: 50%;
|
4861 |
-
transform-origin: 50%;
|
4862 |
-
-webkit-transform: scale(1);
|
4863 |
-
-ms-transform: scale(1);
|
4864 |
-
transform: scale(1); }
|
4865 |
-
|
4866 |
-
.premium-button-style5-rectout:before {
|
4867 |
-
-webkit-transform-origin: 50%;
|
4868 |
-
-ms-transform-origin: 50%;
|
4869 |
-
transform-origin: 50%;
|
4870 |
-
-webkit-transform: scale(0);
|
4871 |
-
-ms-transform: scale(0);
|
4872 |
-
transform: scale(0); }
|
4873 |
-
|
4874 |
-
.premium-button-style5-rectout:hover:before {
|
4875 |
-
-webkit-transform: scale(1);
|
4876 |
-
-ms-transform: scale(1);
|
4877 |
-
transform: scale(1); }
|
4878 |
-
|
4879 |
-
.premium-button-style5-rectin:hover:before {
|
4880 |
-
-webkit-transform: scale(0);
|
4881 |
-
-ms-transform: scale(0);
|
4882 |
-
transform: scale(0); }
|
4883 |
-
|
4884 |
-
.premium-button-style5-radialout:hover:before {
|
4885 |
-
-webkit-transform: scale(2);
|
4886 |
-
-ms-transform: scale(2);
|
4887 |
-
transform: scale(2); }
|
4888 |
-
|
4889 |
-
.premium-button-style5-radialin:hover:before {
|
4890 |
-
-webkit-transform: scale(0);
|
4891 |
-
-ms-transform: scale(0);
|
4892 |
-
transform: scale(0); }
|
4893 |
-
|
4894 |
-
.premium-button-style1-top:before {
|
4895 |
-
-webkit-transform-origin: 50% 100%;
|
4896 |
-
-ms-transform-origin: 50% 100%;
|
4897 |
-
transform-origin: 50% 100%; }
|
4898 |
-
|
4899 |
-
.premium-button-style1-right:before {
|
4900 |
-
-webkit-transform: scaleX(0);
|
4901 |
-
-ms-transform: scaleX(0);
|
4902 |
-
transform: scaleX(0);
|
4903 |
-
-webkit-transform-origin: 0% 50%;
|
4904 |
-
-ms-transform-origin: 0% 50%;
|
4905 |
-
transform-origin: 0% 50%; }
|
4906 |
-
|
4907 |
-
.premium-button-style1-left:before {
|
4908 |
-
-webkit-transform: scaleX(0);
|
4909 |
-
-ms-transform: scaleX(0);
|
4910 |
-
transform: scaleX(0);
|
4911 |
-
-webkit-transform-origin: 100% 50%;
|
4912 |
-
-ms-transform-origin: 100% 50%;
|
4913 |
-
transform-origin: 100% 50%; }
|
4914 |
-
|
4915 |
-
.premium-button-style2-shutouthor:before,
|
4916 |
-
.premium-button-style2-scshutoutver:before {
|
4917 |
-
-webkit-transform: scaleY(0);
|
4918 |
-
-ms-transform: scaleY(0);
|
4919 |
-
transform: scaleY(0);
|
4920 |
-
-webkit-transform-origin: 100% 50%;
|
4921 |
-
-ms-transform-origin: 100% 50%;
|
4922 |
-
transform-origin: 100% 50%; }
|
4923 |
-
|
4924 |
-
.premium-button-style2-shutoutver:before,
|
4925 |
-
.premium-button-style2-scshutouthor:before {
|
4926 |
-
-webkit-transform: scaleX(0);
|
4927 |
-
-ms-transform: scaleX(0);
|
4928 |
-
transform: scaleX(0);
|
4929 |
-
-webkit-transform-origin: 50% 50%;
|
4930 |
-
-ms-transform-origin: 50% 50%;
|
4931 |
-
transform-origin: 50% 50%; }
|
4932 |
-
|
4933 |
-
.premium-button-style2-shutinhor:before {
|
4934 |
-
-webkit-transform: scaleX(1);
|
4935 |
-
-ms-transform: scaleX(1);
|
4936 |
-
transform: scaleX(1);
|
4937 |
-
-webkit-transform-origin: 50%;
|
4938 |
-
-ms-transform-origin: 50%;
|
4939 |
-
transform-origin: 50%; }
|
4940 |
-
|
4941 |
-
.premium-button-style2-shutinver:before {
|
4942 |
-
-webkit-transform: scaleY(1);
|
4943 |
-
-ms-transform: scaleY(1);
|
4944 |
-
transform: scaleY(1);
|
4945 |
-
-webkit-transform-origin: 50%;
|
4946 |
-
-ms-transform-origin: 50%;
|
4947 |
-
transform-origin: 50%; }
|
4948 |
-
|
4949 |
-
.premium-button-style1-bottom:hover:before,
|
4950 |
-
.premium-button-style1-top:hover:before {
|
4951 |
-
-webkit-transform: scaleY(1);
|
4952 |
-
-ms-transform: scaleY(1);
|
4953 |
-
transform: scaleY(1); }
|
4954 |
-
|
4955 |
-
.premium-button-style1-left:hover:before,
|
4956 |
-
.premium-button-style1-right:hover:before,
|
4957 |
-
.premium-button-style2-shutouthor:hover:before,
|
4958 |
-
.premium-button-style2-shutoutver:hover:before {
|
4959 |
-
-webkit-transform: scaleX(1);
|
4960 |
-
-ms-transform: scaleX(1);
|
4961 |
-
transform: scaleX(1); }
|
4962 |
-
|
4963 |
-
.premium-button-style2-shutinhor:hover:before {
|
4964 |
-
-webkit-transform: scaleX(0);
|
4965 |
-
-ms-transform: scaleX(0);
|
4966 |
-
transform: scaleX(0); }
|
4967 |
-
|
4968 |
-
.premium-button-style2-shutinver:hover:before {
|
4969 |
-
-webkit-transform: scaleY(0);
|
4970 |
-
-ms-transform: scaleY(0);
|
4971 |
-
transform: scaleY(0); }
|
4972 |
-
|
4973 |
-
.premium-button-style2-scshutouthor:hover:before {
|
4974 |
-
-webkit-transform: scaleX(0.9);
|
4975 |
-
-ms-transform: scaleX(0.9);
|
4976 |
-
transform: scaleX(0.9); }
|
4977 |
-
|
4978 |
-
.premium-button-style2-scshutoutver:hover:before {
|
4979 |
-
-webkit-transform: scaleY(0.8);
|
4980 |
-
-ms-transform: scaleY(0.8);
|
4981 |
-
transform: scaleY(0.8); }
|
4982 |
-
|
4983 |
-
/*Diagonal*/
|
4984 |
-
.premium-button-style2-dshutinhor:before {
|
4985 |
-
top: 50%;
|
4986 |
-
left: 50%;
|
4987 |
-
width: 120%;
|
4988 |
-
height: 0%;
|
4989 |
-
-webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
|
4990 |
-
-ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
|
4991 |
-
transform: translateX(-50%) translateY(-50%) rotate(-45deg);
|
4992 |
-
-webkit-transform-origin: 50%;
|
4993 |
-
-ms-transform-origin: 50%;
|
4994 |
-
transform-origin: 50%;
|
4995 |
-
-webkit-transition-property: all;
|
4996 |
-
transition-property: all; }
|
4997 |
-
|
4998 |
-
.premium-button-style2-dshutinver:before {
|
4999 |
-
top: 50%;
|
5000 |
-
left: 50%;
|
5001 |
-
width: 120%;
|
5002 |
-
height: 0%;
|
5003 |
-
-webkit-transform-origin: 50%;
|
5004 |
-
-ms-transform-origin: 50%;
|
5005 |
-
transform-origin: 50%;
|
5006 |
-
-webkit-transition-property: all;
|
5007 |
-
transition-property: all;
|
5008 |
-
-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
5009 |
-
-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
5010 |
-
transform: translateX(-50%) translateY(-50%) rotate(45deg); }
|
5011 |
-
|
5012 |
-
.premium-button-style2-dshutinhor:hover:before,
|
5013 |
-
.premium-button-style2-dshutinver:hover:before {
|
5014 |
-
height: 220%; }
|
5015 |
-
|
5016 |
-
.premium-button-style3-before i,
|
5017 |
-
.premium-button-style3-before svg {
|
5018 |
-
opacity: 0;
|
5019 |
-
-webkit-transform: translateX(-5px);
|
5020 |
-
-ms-transform: translateX(-5px);
|
5021 |
-
transform: translateX(-5px);
|
5022 |
-
-webkit-transition: all 0.5s ease-in-out;
|
5023 |
-
transition: all 0.5s ease-in-out; }
|
5024 |
-
|
5025 |
-
.premium-button-style3-after i,
|
5026 |
-
.premium-button-style3-after svg {
|
5027 |
-
opacity: 0;
|
5028 |
-
-webkit-transform: translateX(-5px);
|
5029 |
-
-ms-transform: translateX(-5px);
|
5030 |
-
transform: translateX(-5px);
|
5031 |
-
-webkit-transition: all 0.5s ease-in-out;
|
5032 |
-
transition: all 0.5s ease-in-out;
|
5033 |
-
-webkit-transform: translateX(5px);
|
5034 |
-
-ms-transform: translateX(5px);
|
5035 |
-
transform: translateX(5px); }
|
5036 |
-
|
5037 |
-
.premium-button-style3-after:hover i,
|
5038 |
-
.premium-button-style3-after:hover svg {
|
5039 |
-
opacity: 1; }
|
5040 |
-
|
5041 |
-
.premium-button-style3-before:hover i,
|
5042 |
-
.premium-button-style3-before:hover svg {
|
5043 |
-
opacity: 1; }
|
5044 |
-
|
5045 |
-
.premium-button-text-icon-wrapper {
|
5046 |
-
-js-display: flex;
|
5047 |
-
display: -webkit-box;
|
5048 |
-
display: -webkit-flex;
|
5049 |
-
display: -moz-box;
|
5050 |
-
display: -ms-flexbox;
|
5051 |
-
display: flex;
|
5052 |
-
-webkit-box-pack: center;
|
5053 |
-
-webkit-justify-content: center;
|
5054 |
-
-moz-box-pack: center;
|
5055 |
-
-ms-flex-pack: center;
|
5056 |
-
justify-content: center;
|
5057 |
-
-webkit-box-align: center;
|
5058 |
-
-webkit-align-items: center;
|
5059 |
-
-moz-box-align: center;
|
5060 |
-
-ms-flex-align: center;
|
5061 |
-
align-items: center;
|
5062 |
-
-webkit-transition: all 0.2s ease-in-out;
|
5063 |
-
transition: all 0.2s ease-in-out; }
|
5064 |
-
.premium-button-text-icon-wrapper span,
|
5065 |
-
.premium-button-text-icon-wrapper i,
|
5066 |
-
.premium-button-text-icon-wrapper svg {
|
5067 |
-
-webkit-transition: all 0.2s ease-in-out;
|
5068 |
-
transition: all 0.2s ease-in-out; }
|
5069 |
-
|
5070 |
-
.premium-button-style4-icon-wrapper {
|
5071 |
-
position: absolute;
|
5072 |
-
z-index: 2;
|
5073 |
-
width: 100%;
|
5074 |
-
text-align: center;
|
5075 |
-
-js-display: flex;
|
5076 |
-
display: -webkit-box;
|
5077 |
-
display: -webkit-flex;
|
5078 |
-
display: -moz-box;
|
5079 |
-
display: -ms-flexbox;
|
5080 |
-
display: flex;
|
5081 |
-
-webkit-box-align: center;
|
5082 |
-
-webkit-align-items: center;
|
5083 |
-
-moz-box-align: center;
|
5084 |
-
-ms-flex-align: center;
|
5085 |
-
align-items: center;
|
5086 |
-
-webkit-box-pack: center;
|
5087 |
-
-webkit-justify-content: center;
|
5088 |
-
-moz-box-pack: center;
|
5089 |
-
-ms-flex-pack: center;
|
5090 |
-
justify-content: center;
|
5091 |
-
height: 100%;
|
5092 |
-
opacity: 0;
|
5093 |
-
-webkit-transition: all 0.3s ease-in-out;
|
5094 |
-
transition: all 0.3s ease-in-out; }
|
5095 |
-
.premium-button-style4-icon-wrapper.top {
|
5096 |
-
bottom: -100%;
|
5097 |
-
left: 0; }
|
5098 |
-
.premium-button-style4-icon-wrapper.bottom {
|
5099 |
-
top: -100%;
|
5100 |
-
left: 0; }
|
5101 |
-
.premium-button-style4-icon-wrapper.left {
|
5102 |
-
top: 0;
|
5103 |
-
left: -100%; }
|
5104 |
-
.premium-button-style4-icon-wrapper.right {
|
5105 |
-
top: 0;
|
5106 |
-
right: -100%; }
|
5107 |
-
|
5108 |
-
.premium-button-style4-bottom:hover .premium-button-style4-icon-wrapper {
|
5109 |
-
top: 0;
|
5110 |
-
opacity: 1; }
|
5111 |
-
|
5112 |
-
.premium-button-style4-top:hover .premium-button-style4-icon-wrapper {
|
5113 |
-
bottom: 0;
|
5114 |
-
opacity: 1; }
|
5115 |
-
|
5116 |
-
.premium-button-style4-left:hover .premium-button-style4-icon-wrapper {
|
5117 |
-
left: 0;
|
5118 |
-
opacity: 1; }
|
5119 |
-
|
5120 |
-
.premium-button-style4-right:hover .premium-button-style4-icon-wrapper {
|
5121 |
-
right: 0;
|
5122 |
-
opacity: 1; }
|
5123 |
-
|
5124 |
-
.premium-button-style4-bottom:hover .premium-button-text-icon-wrapper {
|
5125 |
-
-webkit-transform: translateY(100%);
|
5126 |
-
-ms-transform: translateY(100%);
|
5127 |
-
transform: translateY(100%);
|
5128 |
-
opacity: 0; }
|
5129 |
-
|
5130 |
-
.premium-button-style4-top:hover .premium-button-text-icon-wrapper {
|
5131 |
-
-webkit-transform: translateY(-100%);
|
5132 |
-
-ms-transform: translateY(-100%);
|
5133 |
-
transform: translateY(-100%);
|
5134 |
-
opacity: 0; }
|
5135 |
-
|
5136 |
-
.premium-button-style4-left:hover .premium-button-text-icon-wrapper {
|
5137 |
-
-webkit-transform: translateX(100%);
|
5138 |
-
-ms-transform: translateX(100%);
|
5139 |
-
transform: translateX(100%);
|
5140 |
-
opacity: 0; }
|
5141 |
-
|
5142 |
-
.premium-button-style4-right:hover .premium-button-text-icon-wrapper {
|
5143 |
-
-webkit-transform: translateX(-100%);
|
5144 |
-
-ms-transform: translateX(-100%);
|
5145 |
-
transform: translateX(-100%);
|
5146 |
-
opacity: 0; }
|
5147 |
-
|
5148 |
-
.premium-button-style6:before {
|
5149 |
-
content: "";
|
5150 |
-
position: absolute;
|
5151 |
-
left: 50%;
|
5152 |
-
top: 50%;
|
5153 |
-
width: 100px;
|
5154 |
-
height: 100px;
|
5155 |
-
-webkit-border-radius: 100%;
|
5156 |
-
border-radius: 100%;
|
5157 |
-
-webkit-transform: translate(-50%, -50%) scale(0);
|
5158 |
-
-ms-transform: translate(-50%, -50%) scale(0);
|
5159 |
-
transform: translate(-50%, -50%) scale(0);
|
5160 |
-
-webkit-transition: all 0.3s ease-in-out;
|
5161 |
-
transition: all 0.3s ease-in-out; }
|
5162 |
-
|
5163 |
-
.premium-button-style6:hover:before {
|
5164 |
-
-webkit-transform: translate(-50%, -50%) scale(3);
|
5165 |
-
-ms-transform: translate(-50%, -50%) scale(3);
|
5166 |
-
transform: translate(-50%, -50%) scale(3); }
|
5167 |
-
|
5168 |
-
.premium-button-style6 .premium-button-text-icon-wrapper {
|
5169 |
-
position: relative;
|
5170 |
-
z-index: 1; }
|
5171 |
-
|
5172 |
-
.premium-mouse-detect-yes .premium-button-style6 .premium-button-style6-bg {
|
5173 |
-
position: absolute;
|
5174 |
-
z-index: 0;
|
5175 |
-
top: 0;
|
5176 |
-
left: 0;
|
5177 |
-
width: 0px;
|
5178 |
-
height: 0px;
|
5179 |
-
-webkit-border-radius: 50%;
|
5180 |
-
border-radius: 50%;
|
5181 |
-
display: block;
|
5182 |
-
-webkit-transform: translate(-50%, -50%);
|
5183 |
-
-ms-transform: translate(-50%, -50%);
|
5184 |
-
transform: translate(-50%, -50%);
|
5185 |
-
-webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
|
5186 |
-
transition: width 0.4s ease-in-out, height 0.4s ease-in-out; }
|
5187 |
-
|
5188 |
-
.premium-mouse-detect-yes .premium-button-style6:hover .premium-button-style6-bg {
|
5189 |
-
width: 225%;
|
5190 |
-
height: 560px; }
|
5191 |
-
|
5192 |
-
.premium-mouse-detect-yes .premium-button-style6:before {
|
5193 |
-
width: 0;
|
5194 |
-
height: 0; }
|
5195 |
-
|
5196 |
-
.premium-button-style7-right .premium-button-text-icon-wrapper:before,
|
5197 |
-
.premium-button-style7-left .premium-button-text-icon-wrapper:before {
|
5198 |
-
-webkit-transition: width 0.3s ease-out 0.15s;
|
5199 |
-
transition: width 0.3s ease-out 0.15s; }
|
5200 |
-
|
5201 |
-
.premium-button-style7-right .premium-button-text-icon-wrapper:after,
|
5202 |
-
.premium-button-style7-left .premium-button-text-icon-wrapper:after {
|
5203 |
-
-webkit-transition: width 0.3s ease-out 0s;
|
5204 |
-
transition: width 0.3s ease-out 0s; }
|
5205 |
-
|
5206 |
-
.premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
|
5207 |
-
.premium-button-style7-top .premium-button-text-icon-wrapper:before {
|
5208 |
-
-webkit-transition: height 0.3s ease-out 0.15s;
|
5209 |
-
transition: height 0.3s ease-out 0.15s; }
|
5210 |
-
|
5211 |
-
.premium-button-style7-bottom .premium-button-text-icon-wrapper:after,
|
5212 |
-
.premium-button-style7-top .premium-button-text-icon-wrapper:after {
|
5213 |
-
-webkit-transition: height 0.3s ease-out 0s;
|
5214 |
-
transition: height 0.3s ease-out 0s; }
|
5215 |
-
|
5216 |
-
.premium-button-style7:hover .premium-button-text-icon-wrapper:before {
|
5217 |
-
-webkit-transition-delay: 0s;
|
5218 |
-
transition-delay: 0s; }
|
5219 |
-
|
5220 |
-
.premium-button-style7:hover .premium-button-text-icon-wrapper:after {
|
5221 |
-
-webkit-transition-delay: 0.15s;
|
5222 |
-
transition-delay: 0.15s; }
|
5223 |
-
|
5224 |
-
.premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
|
5225 |
-
.premium-button-style7-bottom .premium-button-text-icon-wrapper:after {
|
5226 |
-
content: "";
|
5227 |
-
position: absolute;
|
5228 |
-
right: 0;
|
5229 |
-
top: 0;
|
5230 |
-
left: 0;
|
5231 |
-
height: 0;
|
5232 |
-
z-index: -1; }
|
5233 |
-
|
5234 |
-
.premium-button-style7-top .premium-button-text-icon-wrapper:after,
|
5235 |
-
.premium-button-style7-top .premium-button-text-icon-wrapper:before {
|
5236 |
-
content: "";
|
5237 |
-
position: absolute;
|
5238 |
-
right: 0;
|
5239 |
-
bottom: 0;
|
5240 |
-
left: 0;
|
5241 |
-
height: 0;
|
5242 |
-
z-index: -1; }
|
5243 |
-
|
5244 |
-
.premium-button-style7-right .premium-button-text-icon-wrapper:after,
|
5245 |
-
.premium-button-style7-right .premium-button-text-icon-wrapper:before {
|
5246 |
-
content: "";
|
5247 |
-
position: absolute;
|
5248 |
-
right: 0;
|
5249 |
-
top: 0;
|
5250 |
-
bottom: 0;
|
5251 |
-
width: 0;
|
5252 |
-
z-index: -1; }
|
5253 |
-
|
5254 |
-
.premium-button-style7-left .premium-button-text-icon-wrapper:after,
|
5255 |
-
.premium-button-style7-left .premium-button-text-icon-wrapper:before {
|
5256 |
-
content: "";
|
5257 |
-
position: absolute;
|
5258 |
-
left: 0;
|
5259 |
-
top: 0;
|
5260 |
-
bottom: 0;
|
5261 |
-
width: 0;
|
5262 |
-
z-index: -1; }
|
5263 |
-
|
5264 |
-
.premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:after,
|
5265 |
-
.premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:before {
|
5266 |
-
height: 100%;
|
5267 |
-
top: 0; }
|
5268 |
-
|
5269 |
-
.premium-button-style7-top:hover .premium-button-text-icon-wrapper:after,
|
5270 |
-
.premium-button-style7-top:hover .premium-button-text-icon-wrapper:before {
|
5271 |
-
height: 100%;
|
5272 |
-
bottom: 0; }
|
5273 |
-
|
5274 |
-
.premium-button-style7-left:hover .premium-button-text-icon-wrapper:after,
|
5275 |
-
.premium-button-style7-left:hover .premium-button-text-icon-wrapper:before {
|
5276 |
-
width: 100%;
|
5277 |
-
left: 0; }
|
5278 |
-
|
5279 |
-
.premium-button-style7-right:hover .premium-button-text-icon-wrapper:after,
|
5280 |
-
.premium-button-style7-right:hover .premium-button-text-icon-wrapper:before {
|
5281 |
-
width: 100%;
|
5282 |
-
right: 0; }
|
5283 |
-
|
5284 |
-
/**************** Premium Contact Form7 **********/
|
5285 |
-
/*************************************************/
|
5286 |
-
.premium-contact-form-anim-yes .wpcf7-span::after {
|
5287 |
-
display: block;
|
5288 |
-
height: 2px;
|
5289 |
-
content: "";
|
5290 |
-
top: -2px;
|
5291 |
-
position: relative;
|
5292 |
-
width: 0px;
|
5293 |
-
-webkit-transition: all ease-in-out 0.3s;
|
5294 |
-
transition: all ease-in-out 0.3s; }
|
5295 |
-
|
5296 |
-
.premium-contact-form-anim-yes .wpcf7-span.is-focused::after {
|
5297 |
-
width: 100%; }
|
5298 |
-
|
5299 |
-
/**************** Premium Image Button ***********/
|
5300 |
-
/*************************************************/
|
5301 |
-
.premium-image-button {
|
5302 |
-
display: inline-block;
|
5303 |
-
position: relative;
|
5304 |
-
overflow: hidden;
|
5305 |
-
background: #6ec1e4;
|
5306 |
-
cursor: pointer;
|
5307 |
-
-webkit-transition: all 0.2s ease-in-out !important;
|
5308 |
-
transition: all 0.2s ease-in-out !important; }
|
5309 |
-
.premium-image-button:hover {
|
5310 |
-
background-color: #54595f; }
|
5311 |
-
|
5312 |
-
/*Default background for slide styles*/
|
5313 |
-
.premium-image-button-style4-icon-wrapper,
|
5314 |
-
.premium-image-button-style1:before {
|
5315 |
-
background-color: #54595f; }
|
5316 |
-
|
5317 |
-
.premium-image-button.premium-image-button-sm {
|
5318 |
-
padding: 12px 24px;
|
5319 |
-
font-size: 14px;
|
5320 |
-
line-height: 1; }
|
5321 |
-
|
5322 |
-
.premium-image-button.premium-image-button-md {
|
5323 |
-
padding: 14px 26px;
|
5324 |
-
font-size: 16px;
|
5325 |
-
line-height: 1.2; }
|
5326 |
-
|
5327 |
-
.premium-image-button.premium-image-button-lg {
|
5328 |
-
padding: 16px 28px;
|
5329 |
-
font-size: 18px;
|
5330 |
-
line-height: 1.3333; }
|
5331 |
-
|
5332 |
-
.premium-image-button.premium-image-button-block {
|
5333 |
-
font-size: 15px;
|
5334 |
-
line-height: 1;
|
5335 |
-
padding: 12px 24px;
|
5336 |
-
width: 100%;
|
5337 |
-
text-align: center; }
|
5338 |
-
|
5339 |
-
.premium-image-button-text-icon-wrapper {
|
5340 |
-
-js-display: flex;
|
5341 |
-
display: -webkit-box;
|
5342 |
-
display: -webkit-flex;
|
5343 |
-
display: -moz-box;
|
5344 |
-
display: -ms-flexbox;
|
5345 |
-
display: flex;
|
5346 |
-
-webkit-box-pack: center;
|
5347 |
-
-webkit-justify-content: center;
|
5348 |
-
-moz-box-pack: center;
|
5349 |
-
-ms-flex-pack: center;
|
5350 |
-
justify-content: center;
|
5351 |
-
-webkit-box-align: center;
|
5352 |
-
-webkit-align-items: center;
|
5353 |
-
-moz-box-align: center;
|
5354 |
-
-ms-flex-align: center;
|
5355 |
-
align-items: center;
|
5356 |
-
position: relative;
|
5357 |
-
z-index: 3;
|
5358 |
-
-webkit-transition: all 0.2s ease-in-out;
|
5359 |
-
transition: all 0.2s ease-in-out; }
|
5360 |
-
.premium-image-button-text-icon-wrapper span,
|
5361 |
-
.premium-image-button-text-icon-wrapper i,
|
5362 |
-
.premium-image-button-text-icon-wrapper svg {
|
5363 |
-
-webkit-transition: all 0.2s ease-in-out;
|
5364 |
-
transition: all 0.2s ease-in-out; }
|
5365 |
-
|
5366 |
-
.premium-image-button-style1:before {
|
5367 |
-
position: absolute;
|
5368 |
-
content: "";
|
5369 |
-
-webkit-transition: all 0.2s ease-in-out;
|
5370 |
-
transition: all 0.2s ease-in-out; }
|
5371 |
-
|
5372 |
-
.premium-image-button-style1-bottom:before {
|
5373 |
-
width: 100%;
|
5374 |
-
height: 0;
|
5375 |
-
top: 0;
|
5376 |
-
left: 0; }
|
5377 |
-
|
5378 |
-
.premium-image-button-style1-top:before {
|
5379 |
-
width: 100%;
|
5380 |
-
height: 0;
|
5381 |
-
bottom: 0;
|
5382 |
-
left: 0; }
|
5383 |
-
|
5384 |
-
.premium-image-button-style1-right:before {
|
5385 |
-
width: 0;
|
5386 |
-
height: 100%;
|
5387 |
-
bottom: 0;
|
5388 |
-
left: 0; }
|
5389 |
-
|
5390 |
-
.premium-image-button-style1-left:before {
|
5391 |
-
width: 0;
|
5392 |
-
height: 100%;
|
5393 |
-
top: 0;
|
5394 |
-
right: 0; }
|
5395 |
-
|
5396 |
-
.premium-image-button-style1-bottom:hover:before,
|
5397 |
-
.premium-image-button-style1-top:hover:before {
|
5398 |
-
height: 100%; }
|
5399 |
-
|
5400 |
-
.premium-image-button-style1-right:hover:before,
|
5401 |
-
.premium-image-button-style1-left:hover:before {
|
5402 |
-
width: 100%; }
|
5403 |
-
|
5404 |
-
.premium-image-button-style3 {
|
5405 |
-
z-index: 10; }
|
5406 |
-
.premium-image-button-style3:before {
|
5407 |
-
position: absolute;
|
5408 |
-
top: 0px;
|
5409 |
-
left: 0px;
|
5410 |
-
width: 100%;
|
5411 |
-
height: 100%;
|
5412 |
-
content: "";
|
5413 |
-
z-index: 1;
|
5414 |
-
background: rgba(255, 255, 255, 0.2);
|
5415 |
-
-webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
|
5416 |
-
transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
|
5417 |
-
-webkit-transition: all 0.8s ease-out;
|
5418 |
-
transition: all 0.8s ease-out; }
|
5419 |
-
|
5420 |
-
.premium-image-button-diagonal-right:before {
|
5421 |
-
-webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
|
5422 |
-
transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0); }
|
5423 |
-
|
5424 |
-
.premium-image-button-diagonal-right:hover:before {
|
5425 |
-
-webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
|
5426 |
-
transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0); }
|
5427 |
-
|
5428 |
-
.premium-image-button-diagonal-left:before {
|
5429 |
-
-webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
|
5430 |
-
transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0); }
|
5431 |
-
|
5432 |
-
.premium-image-button-diagonal-left:hover:before {
|
5433 |
-
-webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
|
5434 |
-
transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0); }
|
5435 |
-
|
5436 |
-
.premium-image-button-diagonal-bottom:before {
|
5437 |
-
-webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
|
5438 |
-
transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0); }
|
5439 |
-
|
5440 |
-
.premium-image-button-diagonal-bottom:hover:before {
|
5441 |
-
-webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
|
5442 |
-
transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0); }
|
5443 |
-
|
5444 |
-
.premium-image-button-diagonal-top:before {
|
5445 |
-
-webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
|
5446 |
-
transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0); }
|
5447 |
-
|
5448 |
-
.premium-image-button-diagonal-top:hover:before {
|
5449 |
-
-webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
|
5450 |
-
transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0); }
|
5451 |
-
|
5452 |
-
.premium-image-button-style4-icon-wrapper {
|
5453 |
-
position: absolute;
|
5454 |
-
z-index: 2;
|
5455 |
-
width: 100%;
|
5456 |
-
text-align: center;
|
5457 |
-
-js-display: flex;
|
5458 |
-
display: -webkit-box;
|
5459 |
-
display: -webkit-flex;
|
5460 |
-
display: -moz-box;
|
5461 |
-
display: -ms-flexbox;
|
5462 |
-
display: flex;
|
5463 |
-
-webkit-box-align: center;
|
5464 |
-
-webkit-align-items: center;
|
5465 |
-
-moz-box-align: center;
|
5466 |
-
-ms-flex-align: center;
|
5467 |
-
align-items: center;
|
5468 |
-
-webkit-box-pack: center;
|
5469 |
-
-webkit-justify-content: center;
|
5470 |
-
-moz-box-pack: center;
|
5471 |
-
-ms-flex-pack: center;
|
5472 |
-
justify-content: center;
|
5473 |
-
height: 100%;
|
5474 |
-
opacity: 0;
|
5475 |
-
-webkit-transition: all 0.3s ease-in-out;
|
5476 |
-
transition: all 0.3s ease-in-out; }
|
5477 |
-
.premium-image-button-style4-icon-wrapper.top {
|
5478 |
-
bottom: -100%;
|
5479 |
-
left: 0; }
|
5480 |
-
.premium-image-button-style4-icon-wrapper.bottom {
|
5481 |
-
top: -100%;
|
5482 |
-
left: 0; }
|
5483 |
-
.premium-image-button-style4-icon-wrapper.left {
|
5484 |
-
top: 0;
|
5485 |
-
left: -100%; }
|
5486 |
-
.premium-image-button-style4-icon-wrapper.right {
|
5487 |
-
top: 0;
|
5488 |
-
right: -100%; }
|
5489 |
-
|
5490 |
-
.premium-image-button-style4-bottom:hover .premium-image-button-style4-icon-wrapper {
|
5491 |
-
top: 0;
|
5492 |
-
opacity: 1; }
|
5493 |
-
|
5494 |
-
.premium-image-button-style4-bottom:hover .premium-image-button-text-icon-wrapper {
|
5495 |
-
-webkit-transform: translateY(100%);
|
5496 |
-
-ms-transform: translateY(100%);
|
5497 |
-
transform: translateY(100%);
|
5498 |
-
opacity: 0; }
|
5499 |
-
|
5500 |
-
.premium-image-button-style4-top:hover .premium-image-button-style4-icon-wrapper {
|
5501 |
-
bottom: 0;
|
5502 |
-
opacity: 1; }
|
5503 |
-
|
5504 |
-
.premium-image-button-style4-top:hover .premium-image-button-text-icon-wrapper {
|
5505 |
-
-webkit-transform: translateY(-100%);
|
5506 |
-
-ms-transform: translateY(-100%);
|
5507 |
-
transform: translateY(-100%);
|
5508 |
-
opacity: 0; }
|
5509 |
-
|
5510 |
-
.premium-image-button-style4-left:hover .premium-image-button-style4-icon-wrapper {
|
5511 |
-
left: 0;
|
5512 |
-
opacity: 1; }
|
5513 |
-
|
5514 |
-
.premium-image-button-style4-left:hover .premium-image-button-text-icon-wrapper {
|
5515 |
-
-webkit-transform: translateX(100%);
|
5516 |
-
-ms-transform: translateX(100%);
|
5517 |
-
transform: translateX(100%);
|
5518 |
-
opacity: 0; }
|
5519 |
-
|
5520 |
-
.premium-image-button-style4-right:hover .premium-image-button-style4-icon-wrapper {
|
5521 |
-
right: 0;
|
5522 |
-
opacity: 1; }
|
5523 |
-
|
5524 |
-
.premium-image-button-style4-right:hover .premium-image-button-text-icon-wrapper {
|
5525 |
-
-webkit-transform: translateX(-100%);
|
5526 |
-
-ms-transform: translateX(-100%);
|
5527 |
-
transform: translateX(-100%);
|
5528 |
-
opacity: 0; }
|
5529 |
-
|
5530 |
-
.premium-image-button-style5:before {
|
5531 |
-
position: absolute;
|
5532 |
-
content: "";
|
5533 |
-
top: 0;
|
5534 |
-
left: 0;
|
5535 |
-
width: 100%;
|
5536 |
-
height: 100%;
|
5537 |
-
opacity: 0;
|
5538 |
-
-webkit-transition: all 1s ease-in-out;
|
5539 |
-
transition: all 1s ease-in-out;
|
5540 |
-
background: rgba(255, 255, 255, 0.2);
|
5541 |
-
-webkit-animation-name: premium-overlap-effect-done;
|
5542 |
-
animation-name: premium-overlap-effect-done;
|
5543 |
-
-webkit-animation-duration: 1s;
|
5544 |
-
animation-duration: 1s; }
|
5545 |
-
|
5546 |
-
.premium-image-button-overlap-effect-vertical:before {
|
5547 |
-
-webkit-animation-name: premium-overlap-ver-effect-done;
|
5548 |
-
animation-name: premium-overlap-ver-effect-done; }
|
5549 |
-
|
5550 |
-
.premium-image-button-overlap-effect-horizontal:hover:before {
|
5551 |
-
-webkit-animation-name: premium-overlap-effect;
|
5552 |
-
animation-name: premium-overlap-effect; }
|
5553 |
-
|
5554 |
-
.premium-image-button-overlap-effect-vertical:hover:before {
|
5555 |
-
-webkit-animation-name: premium-overlap-ver-effect;
|
5556 |
-
animation-name: premium-overlap-ver-effect; }
|
5557 |
-
|
5558 |
-
@-webkit-keyframes premium-overlap-effect {
|
5559 |
-
0% {
|
5560 |
-
opacity: 0;
|
5561 |
-
-webkit-transform: rotateY(0deg);
|
5562 |
-
transform: rotateY(0deg); }
|
5563 |
-
50% {
|
5564 |
-
opacity: 1;
|
5565 |
-
-webkit-transform: rotateY(180deg);
|
5566 |
-
transform: rotateY(180deg); }
|
5567 |
-
100% {
|
5568 |
-
opacity: 0;
|
5569 |
-
-webkit-transform: rotateY(360deg);
|
5570 |
-
transform: rotateY(360deg); } }
|
5571 |
-
|
5572 |
-
@keyframes premium-overlap-effect {
|
5573 |
-
0% {
|
5574 |
-
opacity: 0;
|
5575 |
-
-webkit-transform: rotateY(0deg);
|
5576 |
-
transform: rotateY(0deg); }
|
5577 |
-
50% {
|
5578 |
-
opacity: 1;
|
5579 |
-
-webkit-transform: rotateY(180deg);
|
5580 |
-
transform: rotateY(180deg); }
|
5581 |
-
100% {
|
5582 |
-
opacity: 0;
|
5583 |
-
-webkit-transform: rotateY(360deg);
|
5584 |
-
transform: rotateY(360deg); } }
|
5585 |
-
|
5586 |
-
@-webkit-keyframes premium-overlap-effect-done {
|
5587 |
-
0% {
|
5588 |
-
opacity: 0;
|
5589 |
-
-webkit-transform: rotateY(0deg);
|
5590 |
-
transform: rotateY(0deg); }
|
5591 |
-
50% {
|
5592 |
-
opacity: 1;
|
5593 |
-
-webkit-transform: rotateY(180deg);
|
5594 |
-
transform: rotateY(180deg); }
|
5595 |
-
100% {
|
5596 |
-
opacity: 0;
|
5597 |
-
-webkit-transform: rotateY(360deg);
|
5598 |
-
transform: rotateY(360deg); } }
|
5599 |
-
|
5600 |
-
@keyframes premium-overlap-effect-done {
|
5601 |
-
0% {
|
5602 |
-
opacity: 0;
|
5603 |
-
-webkit-transform: rotateY(0deg);
|
5604 |
-
transform: rotateY(0deg); }
|
5605 |
-
50% {
|
5606 |
-
opacity: 1;
|
5607 |
-
-webkit-transform: rotateY(180deg);
|
5608 |
-
transform: rotateY(180deg); }
|
5609 |
-
100% {
|
5610 |
-
opacity: 0;
|
5611 |
-
-webkit-transform: rotateY(360deg);
|
5612 |
-
transform: rotateY(360deg); } }
|
5613 |
-
|
5614 |
-
@-webkit-keyframes premium-overlap-ver-effect {
|
5615 |
-
0% {
|
5616 |
-
opacity: 0;
|
5617 |
-
-webkit-transform: rotateX(0deg);
|
5618 |
-
transform: rotateX(0deg); }
|
5619 |
-
50% {
|
5620 |
-
opacity: 1;
|
5621 |
-
-webkit-transform: rotateX(180deg);
|
5622 |
-
transform: rotateX(180deg); }
|
5623 |
-
100% {
|
5624 |
-
opacity: 0;
|
5625 |
-
-webkit-transform: rotateX(360deg);
|
5626 |
-
transform: rotateX(360deg); } }
|
5627 |
-
|
5628 |
-
@keyframes premium-overlap-ver-effect {
|
5629 |
-
0% {
|
5630 |
-
opacity: 0;
|
5631 |
-
-webkit-transform: rotateX(0deg);
|
5632 |
-
transform: rotateX(0deg); }
|
5633 |
-
50% {
|
5634 |
-
opacity: 1;
|
5635 |
-
-webkit-transform: rotateX(180deg);
|
5636 |
-
transform: rotateX(180deg); }
|
5637 |
-
100% {
|
5638 |
-
opacity: 0;
|
5639 |
-
-webkit-transform: rotateX(360deg);
|
5640 |
-
transform: rotateX(360deg); } }
|
5641 |
-
|
5642 |
-
@-webkit-keyframes premium-overlap-ver-effect-done {
|
5643 |
-
0% {
|
5644 |
-
opacity: 0;
|
5645 |
-
-webkit-transform: rotateX(0deg);
|
5646 |
-
transform: rotateX(0deg); }
|
5647 |
-
50% {
|
5648 |
-
opacity: 1;
|
5649 |
-
-webkit-transform: rotateX(180deg);
|
5650 |
-
transform: rotateX(180deg); }
|
5651 |
-
100% {
|
5652 |
-
opacity: 0;
|
5653 |
-
-webkit-transform: rotateX(360deg);
|
5654 |
-
transform: rotateX(360deg); } }
|
5655 |
-
|
5656 |
-
@keyframes premium-overlap-ver-effect-done {
|
5657 |
-
0% {
|
5658 |
-
opacity: 0;
|
5659 |
-
-webkit-transform: rotateX(0deg);
|
5660 |
-
transform: rotateX(0deg); }
|
5661 |
-
50% {
|
5662 |
-
opacity: 1;
|
5663 |
-
-webkit-transform: rotateX(180deg);
|
5664 |
-
transform: rotateX(180deg); }
|
5665 |
-
100% {
|
5666 |
-
opacity: 0;
|
5667 |
-
-webkit-transform: rotateX(360deg);
|
5668 |
-
transform: rotateX(360deg); } }
|
5669 |
-
|
5670 |
-
/**************** Premium Grid /****************/
|
5671 |
-
/***********************************************/
|
5672 |
-
.premium-img-gallery-filter,
|
5673 |
-
.premium-blog-filter {
|
5674 |
-
-js-display: flex;
|
5675 |
-
display: -webkit-box;
|
5676 |
-
display: -webkit-flex;
|
5677 |
-
display: -moz-box;
|
5678 |
-
display: -ms-flexbox;
|
5679 |
-
display: flex;
|
5680 |
-
-webkit-box-align: center;
|
5681 |
-
-webkit-align-items: center;
|
5682 |
-
-moz-box-align: center;
|
5683 |
-
-ms-flex-align: center;
|
5684 |
-
align-items: center;
|
5685 |
-
-webkit-box-pack: center;
|
5686 |
-
-webkit-justify-content: center;
|
5687 |
-
-moz-box-pack: center;
|
5688 |
-
-ms-flex-pack: center;
|
5689 |
-
justify-content: center; }
|
5690 |
-
|
5691 |
-
.premium-img-gallery {
|
5692 |
-
clear: both;
|
5693 |
-
overflow: hidden; }
|
5694 |
-
|
5695 |
-
.premium-gallery-container .premium-gallery-item {
|
5696 |
-
padding: 10px;
|
5697 |
-
float: left; }
|
5698 |
-
|
5699 |
-
.premium-gallery-container .grid-sizer {
|
5700 |
-
width: 33.33%; }
|
5701 |
-
|
5702 |
-
.premium-gallery-container .pa-gallery-item {
|
5703 |
-
padding: 10px; }
|
5704 |
-
|
5705 |
-
.premium-img-gallery-filter .premium-gallery-cats-container li a.category,
|
5706 |
-
.premium-blog-filter .premium-blog-filters-container li a.category {
|
5707 |
-
outline: none;
|
5708 |
-
text-decoration: none;
|
5709 |
-
-webkit-border-radius: 75px;
|
5710 |
-
border-radius: 75px;
|
5711 |
-
margin: 15px 5px 20px;
|
5712 |
-
padding: 7px 20px;
|
5713 |
-
-webkit-transition: all 0.3s ease-in-out;
|
5714 |
-
transition: all 0.3s ease-in-out; }
|
5715 |
-
|
5716 |
-
.premium-img-gallery-filter .premium-gallery-cats-container li a.category span {
|
5717 |
-
-webkit-transition: all 0.3s ease-in-out;
|
5718 |
-
transition: all 0.3s ease-in-out; }
|
5719 |
-
|
5720 |
-
.pa-gallery-img {
|
5721 |
-
position: relative; }
|
5722 |
-
.pa-gallery-img .pa-gallery-whole-link {
|
5723 |
-
position: absolute;
|
5724 |
-
top: 0;
|
5725 |
-
left: 0;
|
5726 |
-
width: 100%;
|
5727 |
-
height: 100%; }
|
5728 |
-
.pa-gallery-img.style2 .pa-gallery-whole-link {
|
5729 |
-
z-index: 99; }
|
5730 |
-
|
5731 |
-
.pa-gallery-img-container {
|
5732 |
-
overflow: hidden;
|
5733 |
-
-webkit-backface-visibility: hidden;
|
5734 |
-
backface-visibility: hidden;
|
5735 |
-
-webkit-transform: translate3d(0, 0, 0);
|
5736 |
-
transform: translate3d(0, 0, 0); }
|
5737 |
-
.pa-gallery-img-container img {
|
5738 |
-
display: block;
|
5739 |
-
width: 100%;
|
5740 |
-
-webkit-transition: all 0.3s ease-in-out;
|
5741 |
-
transition: all 0.3s ease-in-out; }
|
5742 |
-
|
5743 |
-
.premium-img-gallery.gray img {
|
5744 |
-
-webkit-filter: grayscale(100%);
|
5745 |
-
filter: grayscale(100%); }
|
5746 |
-
|
5747 |
-
.premium-img-gallery.zoomout img,
|
5748 |
-
.premium-img-gallery.scale img {
|
5749 |
-
-webkit-transform: scale(1.2);
|
5750 |
-
-ms-transform: scale(1.2);
|
5751 |
-
transform: scale(1.2); }
|
5752 |
-
|
5753 |
-
.premium-img-gallery.sepia img {
|
5754 |
-
-webkit-filter: sepia(30%);
|
5755 |
-
filter: sepia(30%); }
|
5756 |
-
|
5757 |
-
.premium-img-gallery.bright img {
|
5758 |
-
-webkit-filter: brightness(1);
|
5759 |
-
filter: brightness(1); }
|
5760 |
-
|
5761 |
-
.premium-img-gallery.trans img {
|
5762 |
-
-webkit-transform: translateX(-15px) scale(1.1);
|
5763 |
-
-ms-transform: translateX(-15px) scale(1.1);
|
5764 |
-
transform: translateX(-15px) scale(1.1); }
|
5765 |
-
|
5766 |
-
.pa-gallery-img .pa-gallery-magnific-image,
|
5767 |
-
.pa-gallery-img .pa-gallery-img-link {
|
5768 |
-
outline: none; }
|
5769 |
-
|
5770 |
-
.pa-gallery-img .pa-gallery-magnific-image span,
|
5771 |
-
.pa-gallery-img .pa-gallery-img-link span {
|
5772 |
-
line-height: 1;
|
5773 |
-
display: inline-block;
|
5774 |
-
opacity: 0;
|
5775 |
-
margin: 0 5px;
|
5776 |
-
padding: 15px;
|
5777 |
-
-webkit-border-radius: 50%;
|
5778 |
-
border-radius: 50%; }
|
5779 |
-
|
5780 |
-
.pa-gallery-img.style2 .pa-gallery-magnific-image span,
|
5781 |
-
.pa-gallery-img.style2 .pa-gallery-img-link span {
|
5782 |
-
margin: 0 5px 20px; }
|
5783 |
-
|
5784 |
-
.pa-gallery-img:hover .pa-gallery-magnific-image span {
|
5785 |
-
-webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
|
5786 |
-
transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s; }
|
5787 |
-
|
5788 |
-
.pa-gallery-img:hover .pa-gallery-img-link span {
|
5789 |
-
-webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
|
5790 |
-
transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s; }
|
5791 |
-
|
5792 |
-
.pa-gallery-img:hover .pa-gallery-magnific-image span,
|
5793 |
-
.pa-gallery-img:hover .pa-gallery-img-link span {
|
5794 |
-
opacity: 1; }
|
5795 |
-
|
5796 |
-
.premium-gallery-icon-show a.pa-gallery-video-icon span {
|
5797 |
-
opacity: 1; }
|
5798 |
-
|
5799 |
-
.premium-img-gallery-filter ul.premium-gallery-cats-container,
|
5800 |
-
.premium-blog-filter ul.premium-blog-filters-container {
|
5801 |
-
text-align: center;
|
5802 |
-
margin: 0;
|
5803 |
-
padding: 0; }
|
5804 |
-
|
5805 |
-
.premium-img-gallery-filter .premium-gallery-cats-container li,
|
5806 |
-
.premium-blog-filter .premium-blog-filters-container li {
|
5807 |
-
list-style: none;
|
5808 |
-
-js-display: inline-flex;
|
5809 |
-
display: -webkit-inline-box;
|
5810 |
-
display: -webkit-inline-flex;
|
5811 |
-
display: -moz-inline-box;
|
5812 |
-
display: -ms-inline-flexbox;
|
5813 |
-
display: inline-flex; }
|
5814 |
-
|
5815 |
-
.premium-img-gallery.zoomin .pa-gallery-img:hover img {
|
5816 |
-
-webkit-transform: scale(1.1);
|
5817 |
-
-ms-transform: scale(1.1);
|
5818 |
-
transform: scale(1.1); }
|
5819 |
-
|
5820 |
-
.premium-img-gallery.zoomout .pa-gallery-img:hover img {
|
5821 |
-
-webkit-transform: scale(1);
|
5822 |
-
-ms-transform: scale(1);
|
5823 |
-
transform: scale(1); }
|
5824 |
-
|
5825 |
-
.premium-img-gallery.scale .pa-gallery-img:hover img {
|
5826 |
-
-webkit-transform: scale(1.3) rotate(5deg);
|
5827 |
-
-ms-transform: scale(1.3) rotate(5deg);
|
5828 |
-
transform: scale(1.3) rotate(5deg); }
|
5829 |
-
|
5830 |
-
.premium-img-gallery.gray .pa-gallery-img:hover img {
|
5831 |
-
-webkit-filter: grayscale(0%);
|
5832 |
-
filter: grayscale(0%); }
|
5833 |
-
|
5834 |
-
.premium-img-gallery.blur .pa-gallery-img:hover img {
|
5835 |
-
-webkit-filter: blur(3px);
|
5836 |
-
filter: blur(3px); }
|
5837 |
-
|
5838 |
-
.premium-img-gallery.sepia .pa-gallery-img:hover img {
|
5839 |
-
-webkit-filter: sepia(0%);
|
5840 |
-
filter: sepia(0%); }
|
5841 |
-
|
5842 |
-
.premium-img-gallery.trans .pa-gallery-img:hover img {
|
5843 |
-
-webkit-transform: translateX(0px) scale(1.1);
|
5844 |
-
-ms-transform: translateX(0px) scale(1.1);
|
5845 |
-
transform: translateX(0px) scale(1.1); }
|
5846 |
-
|
5847 |
-
.premium-img-gallery.bright .pa-gallery-img:hover img {
|
5848 |
-
-webkit-filter: brightness(1.2);
|
5849 |
-
filter: brightness(1.2); }
|
5850 |
-
|
5851 |
-
.pa-gallery-img .premium-gallery-caption {
|
5852 |
-
padding: 10px; }
|
5853 |
-
.pa-gallery-img .premium-gallery-caption .premium-gallery-img-name {
|
5854 |
-
margin-bottom: 0; }
|
5855 |
-
|
5856 |
-
.pa-gallery-img.style1 {
|
5857 |
-
overflow: hidden; }
|
5858 |
-
|
5859 |
-
.pa-gallery-img:not(.style2) .pa-gallery-icons-wrapper {
|
5860 |
-
position: absolute;
|
5861 |
-
top: 0;
|
5862 |
-
left: 0;
|
5863 |
-
width: 100%;
|
5864 |
-
height: 100%;
|
5865 |
-
-webkit-transition: all 0.3s ease-in-out;
|
5866 |
-
transition: all 0.3s ease-in-out; }
|
5867 |
-
|
5868 |
-
.pa-gallery-img:not(.style2) .pa-gallery-icons-inner-container {
|
5869 |
-
position: absolute;
|
5870 |
-
top: 33.33%;
|
5871 |
-
width: 100%;
|
5872 |
-
text-align: center;
|
5873 |
-
-webkit-transform: translateY(-50%);
|
5874 |
-
-ms-transform: translateY(-50%);
|
5875 |
-
transform: translateY(-50%);
|
5876 |
-
z-index: 999; }
|
5877 |
-
|
5878 |
-
.pa-gallery-img.style1 .premium-gallery-caption {
|
5879 |
-
position: absolute;
|
5880 |
-
top: auto;
|
5881 |
-
right: 0;
|
5882 |
-
bottom: -1px;
|
5883 |
-
left: 0;
|
5884 |
-
width: 100%;
|
5885 |
-
-webkit-transition: all 500ms ease 0s;
|
5886 |
-
transition: all 500ms ease 0s;
|
5887 |
-
-webkit-transform: translate3d(0, 100%, 0);
|
5888 |
-
transform: translate3d(0, 100%, 0); }
|
5889 |
-
|
5890 |
-
.pa-gallery-img.style1:hover .premium-gallery-caption {
|
5891 |
-
-webkit-transform: translate3d(0, 0, 0);
|
5892 |
-
transform: translate3d(0, 0, 0);
|
5893 |
-
bottom: -1px !important; }
|
5894 |
-
|
5895 |
-
.pa-gallery-img.default .premium-gallery-caption {
|
5896 |
-
position: absolute;
|
5897 |
-
top: auto;
|
5898 |
-
right: 0;
|
5899 |
-
left: 0;
|
5900 |
-
width: 100%;
|
5901 |
-
bottom: 0; }
|
5902 |
-
|
5903 |
-
.pa-gallery-img.style2 .pa-gallery-icons-caption-container {
|
5904 |
-
position: absolute;
|
5905 |
-
top: 0;
|
5906 |
-
left: 0;
|
5907 |
-
width: 100%;
|
5908 |
-
height: 100%;
|
5909 |
-
opacity: 0;
|
5910 |
-
-webkit-backface-visibility: hidden;
|
5911 |
-
backface-visibility: hidden;
|
5912 |
-
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
|
5913 |
-
transition: opacity 0.3s, -webkit-transform 0.3s;
|
5914 |
-
transition: transform 0.3s, opacity 0.3s;
|
5915 |
-
transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
|
5916 |
-
z-index: 1;
|
5917 |
-
background-color: rgba(108, 191, 226, 0.68);
|
5918 |
-
-js-display: flex;
|
5919 |
-
display: -webkit-box;
|
5920 |
-
display: -webkit-flex;
|
5921 |
-
display: -moz-box;
|
5922 |
-
display: -ms-flexbox;
|
5923 |
-
display: flex;
|
5924 |
-
text-align: center;
|
5925 |
-
-webkit-box-align: center;
|
5926 |
-
-webkit-align-items: center;
|
5927 |
-
-moz-box-align: center;
|
5928 |
-
-ms-flex-align: center;
|
5929 |
-
align-items: center; }
|
5930 |
-
|
5931 |
-
.pa-gallery-img.style2 .pa-gallery-icons-caption-cell {
|
5932 |
-
width: 100%; }
|
5933 |
-
|
5934 |
-
.pa-gallery-img.style2:hover .pa-gallery-icons-caption-container {
|
5935 |
-
opacity: 1;
|
5936 |
-
-webkit-transform: translate(15px, 15px);
|
5937 |
-
-ms-transform: translate(15px, 15px);
|
5938 |
-
transform: translate(15px, 15px); }
|
5939 |
-
|
5940 |
-
.premium-clearfix {
|
5941 |
-
clear: both; }
|
5942 |
-
|
5943 |
-
/**
|
5944 |
-
* Metro Layout
|
5945 |
-
*/
|
5946 |
-
.premium-img-gallery-metro .premium-gallery-item {
|
5947 |
-
overflow: hidden; }
|
5948 |
-
|
5949 |
-
.premium-img-gallery-metro .pa-gallery-img {
|
5950 |
-
height: 100%; }
|
5951 |
-
|
5952 |
-
.premium-img-gallery-metro .pa-gallery-img-container {
|
5953 |
-
height: 100%; }
|
5954 |
-
.premium-img-gallery-metro .pa-gallery-img-container img {
|
5955 |
-
min-height: 100%;
|
5956 |
-
width: 100%;
|
5957 |
-
-o-object-fit: fill;
|
5958 |
-
object-fit: fill; }
|
5959 |
-
|
5960 |
-
.premium-img-gallery .premium-gallery-item-hidden {
|
5961 |
-
visibility: hidden;
|
5962 |
-
width: 0 !important;
|
5963 |
-
height: 0 !important;
|
5964 |
-
margin: 0 !important;
|
5965 |
-
padding: 0 !important; }
|
5966 |
-
|
5967 |
-
.premium-gallery-load-more {
|
5968 |
-
position: relative; }
|
5969 |
-
.premium-gallery-load-more .premium-gallery-load-more-btn {
|
5970 |
-
-webkit-box-shadow: none;
|
5971 |
-
box-shadow: none;
|
5972 |
-
text-shadow: none;
|
5973 |
-
border: none;
|
5974 |
-
outline: none;
|
5975 |
-
-webkit-box-align: center;
|
5976 |
-
-webkit-align-items: center;
|
5977 |
-
-moz-box-align: center;
|
5978 |
-
-ms-flex-align: center;
|
5979 |
-
align-items: center;
|
5980 |
-
vertical-align: bottom;
|
5981 |
-
cursor: pointer;
|
5982 |
-
line-height: 1;
|
5983 |
-
font-style: normal;
|
5984 |
-
font-weight: normal;
|
5985 |
-
background-image: none;
|
5986 |
-
color: #fff;
|
5987 |
-
-webkit-transition: all 0.3s ease-in-out;
|
5988 |
-
transition: all 0.3s ease-in-out; }
|
5989 |
-
|
5990 |
-
.premium-gallery-load-more-btn {
|
5991 |
-
-js-display: inline-flex;
|
5992 |
-
display: -webkit-inline-box;
|
5993 |
-
display: -webkit-inline-flex;
|
5994 |
-
display: -moz-inline-box;
|
5995 |
-
display: -ms-inline-flexbox;
|
5996 |
-
display: inline-flex;
|
5997 |
-
-webkit-box-align: center;
|
5998 |
-
-webkit-align-items: center;
|
5999 |
-
-moz-box-align: center;
|
6000 |
-
-ms-flex-align: center;
|
6001 |
-
align-items: center; }
|
6002 |
-
|
6003 |
-
.premium-loader {
|
6004 |
-
border: 3px solid #f3f3f3;
|
6005 |
-
border-top-width: 3px;
|
6006 |
-
border-top-style: solid;
|
6007 |
-
border-top-color: #f3f3f3;
|
6008 |
-
-webkit-border-radius: 50%;
|
6009 |
-
border-radius: 50%;
|
6010 |
-
border-top: 3px solid;
|
6011 |
-
border-top-color: #bbb;
|
6012 |
-
width: 30px;
|
6013 |
-
height: 30px;
|
6014 |
-
-webkit-animation: spin 2s linear infinite;
|
6015 |
-
animation: spin 2s linear infinite;
|
6016 |
-
margin: 0 auto; }
|
6017 |
-
|
6018 |
-
.premium-gallery-load-more-btn div {
|
6019 |
-
margin-left: 3px; }
|
6020 |
-
|
6021 |
-
.premium-gallery-load-more-btn .premium-loader {
|
6022 |
-
display: inline-block;
|
6023 |
-
width: 20px;
|
6024 |
-
height: 20px; }
|
6025 |
-
|
6026 |
-
.pa-gallery-img .pa-gallery-lightbox-wrap {
|
6027 |
-
display: inline-block; }
|
6028 |
-
|
6029 |
-
.premium-img-gallery-no-lightbox .premium-gallery-video-item .pa-gallery-img,
|
6030 |
-
.pa-gallery-img .pa-gallery-video-icon {
|
6031 |
-
cursor: pointer; }
|
6032 |
-
|
6033 |
-
.pa-gallery-img-container iframe {
|
6034 |
-
position: absolute;
|
6035 |
-
visibility: hidden;
|
6036 |
-
top: 0;
|
6037 |
-
left: 0;
|
6038 |
-
max-width: 100%;
|
6039 |
-
width: 100%;
|
6040 |
-
height: 100%;
|
6041 |
-
margin: 0;
|
6042 |
-
line-height: 1;
|
6043 |
-
border: none; }
|
6044 |
-
|
6045 |
-
.pa-gallery-img-container video {
|
6046 |
-
position: absolute;
|
6047 |
-
visibility: hidden;
|
6048 |
-
top: 0;
|
6049 |
-
left: 0;
|
6050 |
-
max-width: 100%;
|
6051 |
-
width: 100%;
|
6052 |
-
height: 100%;
|
6053 |
-
margin: 0;
|
6054 |
-
line-height: 1;
|
6055 |
-
border: none;
|
6056 |
-
-o-object-fit: contain;
|
6057 |
-
object-fit: contain; }
|
6058 |
-
|
6059 |
-
.pa-gallery-icons-inner-container svg,
|
6060 |
-
.pa-gallery-icons-caption-cell svg {
|
6061 |
-
width: 14px;
|
6062 |
-
height: 14px; }
|
6063 |
-
|
6064 |
-
.premium-gallery-gradient-layer {
|
6065 |
-
position: absolute;
|
6066 |
-
bottom: 40px;
|
6067 |
-
width: 100%;
|
6068 |
-
height: 20px;
|
6069 |
-
background: -webkit-gradient(linear, left bottom, left top, from(#17181f), to(rgba(255, 255, 255, 0)));
|
6070 |
-
background: -webkit-linear-gradient(bottom, #17181f 0%, rgba(255, 255, 255, 0) 100%);
|
6071 |
-
background: linear-gradient(to top, #17181f 0%, rgba(255, 255, 255, 0) 100%); }
|
6072 |
-
|
6073 |
-
@-webkit-keyframes spin {
|
6074 |
-
0% {
|
6075 |
-
-webkit-transform: rotate(0deg);
|
6076 |
-
transform: rotate(0deg); }
|
6077 |
-
100% {
|
6078 |
-
-webkit-transform: rotate(360deg);
|
6079 |
-
transform: rotate(360deg); } }
|
6080 |
-
|
6081 |
-
@keyframes spin {
|
6082 |
-
0% {
|
6083 |
-
-webkit-transform: rotate(0deg);
|
6084 |
-
transform: rotate(0deg); }
|
6085 |
-
100% {
|
6086 |
-
-webkit-transform: rotate(360deg);
|
6087 |
-
transform: rotate(360deg); } }
|
6088 |
-
|
6089 |
-
/************ Premium Vertical Scroll ************/
|
6090 |
-
/*************************************************/
|
6091 |
-
.premium-vscroll-inner {
|
6092 |
-
position: relative;
|
6093 |
-
min-height: 100%; }
|
6094 |
-
.premium-vscroll-inner .premium-vscroll-dots {
|
6095 |
-
position: fixed;
|
6096 |
-
z-index: 100;
|
6097 |
-
opacity: 1;
|
6098 |
-
margin-top: -32px;
|
6099 |
-
-webkit-transition: all 0.3s ease-in-out;
|
6100 |
-
transition: all 0.3s ease-in-out; }
|
6101 |
-
|
6102 |
-
.premium-vscroll-wrap .premium-vscroll-nav-menu {
|
6103 |
-
opacity: 1;
|
6104 |
-
-webkit-transition: all 0.3s ease-in-out;
|
6105 |
-
transition: all 0.3s ease-in-out; }
|
6106 |
-
|
6107 |
-
.premium-vscroll-inner .premium-vscroll-dots,
|
6108 |
-
.premium-vscroll-wrap .premium-vscroll-dots-hide {
|
6109 |
-
opacity: 0;
|
6110 |
-
visibility: hidden; }
|
6111 |
-
|
6112 |
-
.premium-vscroll-nav-dots-yes .premium-vscroll-inner .premium-vscroll-dots:not(.premium-vscroll-dots-hide) {
|
6113 |
-
opacity: 1;
|
6114 |
-
visibility: visible; }
|
6115 |
-
|
6116 |
-
.premium-vscroll-dots.middle {
|
6117 |
-
top: 50%; }
|
6118 |
-
|
6119 |
-
.premium-vscroll-dots.top {
|
6120 |
-
top: 40px; }
|
6121 |
-
|
6122 |
-
.premium-vscroll-dots.bottom {
|
6123 |
-
bottom: 30px; }
|
6124 |
-
|
6125 |
-
.premium-vscroll-dots.right {
|
6126 |
-
right: 17px; }
|
6127 |
-
|
6128 |
-
.premium-vscroll-dots.left {
|
6129 |
-
left: 17px; }
|
6130 |
-
|
6131 |
-
.premium-vscroll-inner ul.premium-vscroll-dots-list,
|
6132 |
-
.premium-vscroll-wrap .premium-vscroll-nav-menu {
|
6133 |
-
margin: 0 !important;
|
6134 |
-
padding: 0; }
|
6135 |
-
|
6136 |
-
.premium-vscroll-inner ul.premium-vscroll-dots-list li {
|
6137 |
-
width: 14px;
|
6138 |
-
height: 13px;
|
6139 |
-
margin: 7px;
|
6140 |
-
position: relative;
|
6141 |
-
-js-display: flex;
|
6142 |
-
display: -webkit-box;
|
6143 |
-
display: -webkit-flex;
|
6144 |
-
display: -moz-box;
|
6145 |
-
display: -ms-flexbox;
|
6146 |
-
display: flex;
|
6147 |
-
-webkit-box-pack: center;
|
6148 |
-
-webkit-justify-content: center;
|
6149 |
-
-moz-box-pack: center;
|
6150 |
-
-ms-flex-pack: center;
|
6151 |
-
justify-content: center;
|
6152 |
-
-webkit-box-align: center;
|
6153 |
-
-webkit-align-items: center;
|
6154 |
-
-moz-box-align: center;
|
6155 |
-
-ms-flex-align: center;
|
6156 |
-
align-items: center;
|
6157 |
-
overflow: visible; }
|
6158 |
-
|
6159 |
-
.premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link {
|
6160 |
-
display: block;
|
6161 |
-
position: relative;
|
6162 |
-
z-index: 1;
|
6163 |
-
width: 100%;
|
6164 |
-
height: 100%;
|
6165 |
-
cursor: pointer;
|
6166 |
-
text-decoration: none; }
|
6167 |
-
.premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link span {
|
6168 |
-
top: 2px;
|
6169 |
-
left: 2.5px;
|
6170 |
-
width: 8px;
|
6171 |
-
height: 8px;
|
6172 |
-
border: 1px solid #000;
|
6173 |
-
-webkit-border-radius: 50%;
|
6174 |
-
border-radius: 50%;
|
6175 |
-
position: absolute;
|
6176 |
-
z-index: 1;
|
6177 |
-
-webkit-transition: all 0.3s ease-in-out;
|
6178 |
-
transition: all 0.3s ease-in-out; }
|
6179 |
-
|
6180 |
-
.premium-vscroll-inner .premium-vscroll-dot-item.active .premium-vscroll-nav-link span {
|
6181 |
-
-webkit-transform: scale(1.6);
|
6182 |
-
-ms-transform: scale(1.6);
|
6183 |
-
transform: scale(1.6); }
|
6184 |
-
|
6185 |
-
.premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-tooltip {
|
6186 |
-
position: absolute;
|
6187 |
-
color: #fff;
|
6188 |
-
font-size: 14px;
|
6189 |
-
font-family: arial, helvetica, sans-serif;
|
6190 |
-
white-space: nowrap;
|
6191 |
-
max-width: 220px;
|
6192 |
-
padding-left: 0.4em;
|
6193 |
-
padding-right: 0.4em; }
|
6194 |
-
|
6195 |
-
.premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip {
|
6196 |
-
right: 27px; }
|
6197 |
-
|
6198 |
-
.premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item {
|
6199 |
-
width: 4px;
|
6200 |
-
height: 30px; }
|
6201 |
-
.premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item span {
|
6202 |
-
width: 100%;
|
6203 |
-
height: 100%;
|
6204 |
-
-webkit-border-radius: 0;
|
6205 |
-
border-radius: 0; }
|
6206 |
-
.premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item.active span {
|
6207 |
-
-webkit-transform: scale(1);
|
6208 |
-
-ms-transform: scale(1);
|
6209 |
-
transform: scale(1); }
|
6210 |
-
|
6211 |
-
.premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip::after {
|
6212 |
-
position: absolute;
|
6213 |
-
top: 50%;
|
6214 |
-
content: "";
|
6215 |
-
left: -webkit-calc(100% - 1px);
|
6216 |
-
left: calc(100% - 1px);
|
6217 |
-
width: 10px;
|
6218 |
-
height: 0;
|
6219 |
-
border-top: 6px solid transparent;
|
6220 |
-
border-bottom: 6px solid transparent;
|
6221 |
-
border-left: 6px solid;
|
6222 |
-
-webkit-transform: translateY(-50%);
|
6223 |
-
-ms-transform: translateY(-50%);
|
6224 |
-
transform: translateY(-50%); }
|
6225 |
-
|
6226 |
-
.premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip {
|
6227 |
-
left: 27px; }
|
6228 |
-
.premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip::after {
|
6229 |
-
position: absolute;
|
6230 |
-
top: 50%;
|
6231 |
-
content: "";
|
6232 |
-
right: -webkit-calc(100% - 1px);
|
6233 |
-
right: calc(100% - 1px);
|
6234 |
-
width: 10px;
|
6235 |
-
height: 0;
|
6236 |
-
border-top: 6px solid transparent;
|
6237 |
-
border-bottom: 6px solid transparent;
|
6238 |
-
border-right: 6px solid;
|
6239 |
-
-webkit-transform: translateY(-50%);
|
6240 |
-
-ms-transform: translateY(-50%);
|
6241 |
-
transform: translateY(-50%); }
|
6242 |
-
|
6243 |
-
/* * Lines */
|
6244 |
-
@media (max-width: 768px) {
|
6245 |
-
.premium-vscroll-dots.right {
|
6246 |
-
right: 7px; }
|
6247 |
-
.premium-vscroll-dots.left {
|
6248 |
-
left: 7px; } }
|
6249 |
-
|
6250 |
-
.premium-vscroll-nav-menu {
|
6251 |
-
position: fixed;
|
6252 |
-
top: 20px;
|
6253 |
-
height: 40px;
|
6254 |
-
z-index: 100;
|
6255 |
-
padding: 0;
|
6256 |
-
margin: 0; }
|
6257 |
-
.premium-vscroll-nav-menu.left {
|
6258 |
-
left: 0; }
|
6259 |
-
.premium-vscroll-nav-menu.right {
|
6260 |
-
right: 0; }
|
6261 |
-
.premium-vscroll-nav-menu .premium-vscroll-nav-item {
|
6262 |
-
display: inline-block;
|
6263 |
-
margin: 10px;
|
6264 |
-
color: #000;
|
6265 |
-
background: #fff;
|
6266 |
-
background: rgba(255, 255, 255, 0.3); }
|
6267 |
-
.premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link {
|
6268 |
-
padding: 9px 18px;
|
6269 |
-
display: block;
|
6270 |
-
cursor: pointer;
|
6271 |
-
color: #000; }
|
6272 |
-
.premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:hover {
|
6273 |
-
color: #000; }
|
6274 |
-
.premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:focus {
|
6275 |
-
outline: none; }
|
6276 |
-
|
6277 |
-
.multiscroll-nav li a:focus {
|
6278 |
-
outline: none; }
|
6279 |
-
|
6280 |
-
.premium-vscroll-temp .slimScrollBar {
|
6281 |
-
visibility: hidden; }
|
6282 |
-
|
6283 |
-
/************ Premium Image Scroll ************/
|
6284 |
-
/**********************************************/
|
6285 |
-
.premium-image-scroll-section,
|
6286 |
-
.premium-image-scroll-container {
|
6287 |
-
-webkit-transition: all 0.3s ease-in-out;
|
6288 |
-
transition: all 0.3s ease-in-out; }
|
6289 |
-
|
6290 |
-
.premium-image-scroll-section {
|
6291 |
-
position: relative;
|
6292 |
-
overflow: hidden;
|
6293 |
-
width: 100%;
|
6294 |
-
-webkit-mask-image: -webkit-radial-gradient(white, black); }
|
6295 |
-
|
6296 |
-
.premium-image-scroll-container {
|
6297 |
-
width: 100%; }
|
6298 |
-
.premium-image-scroll-container .premium-image-scroll-mask-media {
|
6299 |
-
-webkit-mask-repeat: no-repeat;
|
6300 |
-
mask-repeat: no-repeat;
|
6301 |
-
-webkit-mask-position: center;
|
6302 |
-
mask-position: center; }
|
6303 |
-
|
6304 |
-
.premium-container-scroll {
|
6305 |
-
overflow: auto; }
|
6306 |
-
|
6307 |
-
.premium-image-scroll-container .premium-image-scroll-horizontal {
|
6308 |
-
position: relative;
|
6309 |
-
width: 100%;
|
6310 |
-
height: 100%; }
|
6311 |
-
.premium-image-scroll-container .premium-image-scroll-horizontal img {
|
6312 |
-
max-width: none;
|
6313 |
-
height: 100%; }
|
6314 |
-
|
6315 |
-
.premium-image-scroll-container .premium-image-scroll-vertical img {
|
6316 |
-
width: 100%;
|
6317 |
-
max-width: 100%;
|
6318 |
-
height: auto; }
|
6319 |
-
|
6320 |
-
.premium-image-scroll-ver {
|
6321 |
-
position: relative; }
|
6322 |
-
|
6323 |
-
.premium-image-scroll-container .premium-image-scroll-overlay {
|
6324 |
-
background: rgba(2, 2, 2, 0.3); }
|
6325 |
-
|
6326 |
-
.premium-image-scroll-container .premium-image-scroll-link,
|
6327 |
-
.premium-image-scroll-container .premium-image-scroll-overlay {
|
6328 |
-
position: absolute;
|
6329 |
-
top: 0;
|
6330 |
-
bottom: 0;
|
6331 |
-
left: 0;
|
6332 |
-
right: 0;
|
6333 |
-
z-index: 4; }
|
6334 |
-
|
6335 |
-
.premium-image-scroll-content {
|
6336 |
-
display: inline-block;
|
6337 |
-
position: absolute;
|
6338 |
-
height: auto;
|
6339 |
-
top: 50%;
|
6340 |
-
left: 50%;
|
6341 |
-
text-align: center;
|
6342 |
-
z-index: 5;
|
6343 |
-
-webkit-transform: translate(-50%, -50%);
|
6344 |
-
-ms-transform: translate(-50%, -50%);
|
6345 |
-
transform: translate(-50%, -50%); }
|
6346 |
-
|
6347 |
-
.premium-container-scroll-instant .premium-image-scroll-image {
|
6348 |
-
-webkit-transition: all 0s ease-in-out !important;
|
6349 |
-
transition: all 0s ease-in-out !important; }
|
6350 |
-
|
6351 |
-
.premium-image-scroll-container img {
|
6352 |
-
-webkit-transition: -webkit-transform 3s ease-in-out;
|
6353 |
-
transition: -webkit-transform 3s ease-in-out;
|
6354 |
-
transition: transform 3s ease-in-out;
|
6355 |
-
transition: transform 3s ease-in-out, -webkit-transform 3s ease-in-out; }
|
6356 |
-
|
6357 |
-
.premium-image-scroll-container .premium-image-scroll-overlay,
|
6358 |
-
.premium-image-scroll-container .premium-image-scroll-content {
|
6359 |
-
-webkit-transition: all 0.3s ease-in-out;
|
6360 |
-
transition: all 0.3s ease-in-out;
|
6361 |
-
opacity: 1; }
|
6362 |
-
|
6363 |
-
.premium-image-scroll-container:hover .premium-image-scroll-overlay {
|
6364 |
-
opacity: 0; }
|
6365 |
-
|
6366 |
-
.premium-image-scroll-container:hover .premium-image-scroll-content {
|
6367 |
-
opacity: 0;
|
6368 |
-
visibility: hidden; }
|
6369 |
-
|
6370 |
-
.premium-image-scroll-content .premium-image-scroll-icon {
|
6371 |
-
display: inline-block;
|
6372 |
-
font-family: "pa-elements" !important;
|
6373 |
-
speak: none;
|
6374 |
-
font-style: normal;
|
6375 |
-
font-weight: normal;
|
6376 |
-
font-variant: normal;
|
6377 |
-
text-transform: none;
|
6378 |
-
line-height: 1;
|
6379 |
-
-webkit-font-smoothing: antialiased;
|
6380 |
-
-moz-osx-font-smoothing: grayscale;
|
6381 |
-
-webkit-animation-duration: 0.5s;
|
6382 |
-
animation-duration: 0.5s;
|
6383 |
-
-webkit-animation-iteration-count: infinite;
|
6384 |
-
animation-iteration-count: infinite;
|
6385 |
-
-webkit-animation-direction: alternate;
|
6386 |
-
animation-direction: alternate;
|
6387 |
-
-webkit-animation-timing-function: ease-in-out;
|
6388 |
-
animation-timing-function: ease-in-out; }
|
6389 |
-
|
6390 |
-
.pa-horizontal-mouse-scroll:before {
|
6391 |
-
content: "\e917"; }
|
6392 |
-
|
6393 |
-
.pa-vertical-mouse-scroll:before {
|
6394 |
-
content: "\e918"; }
|
6395 |
-
|
6396 |
-
.pa-horizontal-mouse-scroll {
|
6397 |
-
-webkit-animation-name: pa-scroll-horizontal;
|
6398 |
-
animation-name: pa-scroll-horizontal; }
|
6399 |
-
|
6400 |
-
.pa-vertical-mouse-scroll {
|
6401 |
-
-webkit-animation-name: pa-scroll-vertical;
|
6402 |
-
animation-name: pa-scroll-vertical; }
|
6403 |
-
|
6404 |
-
@-webkit-keyframes pa-scroll-vertical {
|
6405 |
-
0% {
|
6406 |
-
-webkit-transform: translateY(0px);
|
6407 |
-
transform: translateY(0px); }
|
6408 |
-
100% {
|
6409 |
-
-webkit-transform: translateY(5px);
|
6410 |
-
transform: translateY(5px); } }
|
6411 |
-
|
6412 |
-
@keyframes pa-scroll-vertical {
|
6413 |
-
0% {
|
6414 |
-
-webkit-transform: translateY(0px);
|
6415 |
-
transform: translateY(0px); }
|
6416 |
-
100% {
|
6417 |
-
-webkit-transform: translateY(5px);
|
6418 |
-
transform: translateY(5px); } }
|
6419 |
-
|
6420 |
-
@-webkit-keyframes pa-scroll-horizontal {
|
6421 |
-
0% {
|
6422 |
-
-webkit-transform: translateX(0px);
|
6423 |
-
transform: translateX(0px); }
|
6424 |
-
100% {
|
6425 |
-
-webkit-transform: translateX(5px);
|
6426 |
-
transform: translateX(5px); } }
|
6427 |
-
|
6428 |
-
@keyframes pa-scroll-horizontal {
|
6429 |
-
0% {
|
6430 |
-
-webkit-transform: translateX(0px);
|
6431 |
-
transform: translateX(0px); }
|
6432 |
-
100% {
|
6433 |
-
-webkit-transform: translateX(5px);
|
6434 |
-
transform: translateX(5px); } }
|
6435 |
-
|
6436 |
-
/********* Premium Lottie Animations *********/
|
6437 |
-
/*********************************************/
|
6438 |
-
.premium-lottie-wrap .premium-lottie-animation {
|
6439 |
-
position: relative;
|
6440 |
-
-js-display: inline-flex;
|
6441 |
-
display: -webkit-inline-box;
|
6442 |
-
display: -webkit-inline-flex;
|
6443 |
-
display: -moz-inline-box;
|
6444 |
-
display: -ms-inline-flexbox;
|
6445 |
-
display: inline-flex;
|
6446 |
-
-webkit-transition: all 0.3s ease-in-out;
|
6447 |
-
transition: all 0.3s ease-in-out; }
|
6448 |
-
.premium-lottie-wrap .premium-lottie-animation a {
|
6449 |
-
position: absolute;
|
6450 |
-
left: 0;
|
6451 |
-
top: 0;
|
6452 |
-
width: 100%;
|
6453 |
-
height: 100%; }
|
6454 |
-
|
6455 |
-
/**************** Premium Bullet List ****************/
|
6456 |
-
/*****************************************************/
|
6457 |
-
.premium-icon-list-box {
|
6458 |
-
-js-display: flex;
|
6459 |
-
display: -webkit-box;
|
6460 |
-
display: -webkit-flex;
|
6461 |
-
display: -moz-box;
|
6462 |
-
display: -ms-flexbox;
|
6463 |
-
display: flex;
|
6464 |
-
-webkit-flex-wrap: wrap;
|
6465 |
-
-ms-flex-wrap: wrap;
|
6466 |
-
flex-wrap: wrap;
|
6467 |
-
-webkit-box-orient: vertical;
|
6468 |
-
-webkit-box-direction: normal;
|
6469 |
-
-webkit-flex-direction: column;
|
6470 |
-
-moz-box-orient: vertical;
|
6471 |
-
-moz-box-direction: normal;
|
6472 |
-
-ms-flex-direction: column;
|
6473 |
-
flex-direction: column; }
|
6474 |
-
.premium-icon-list-box .premium-icon-list-content-grow-lc {
|
6475 |
-
-webkit-transform-origin: left center;
|
6476 |
-
-ms-transform-origin: left center;
|
6477 |
-
transform-origin: left center; }
|
6478 |
-
.premium-icon-list-box .premium-icon-list-content-grow-rc {
|
6479 |
-
-webkit-transform-origin: right center;
|
6480 |
-
-ms-transform-origin: right center;
|
6481 |
-
transform-origin: right center; }
|
6482 |
-
.premium-icon-list-box .premium-icon-list-content-grow-cc {
|
6483 |
-
-webkit-transform-origin: center center;
|
6484 |
-
-ms-transform-origin: center center;
|
6485 |
-
transform-origin: center center; }
|
6486 |
-
|
6487 |
-
.premium-icon-list-content {
|
6488 |
-
-js-display: flex;
|
6489 |
-
display: -webkit-box;
|
6490 |
-
display: -webkit-flex;
|
6491 |
-
display: -moz-box;
|
6492 |
-
display: -ms-flexbox;
|
6493 |
-
display: flex;
|
6494 |
-
-webkit-transition: all 0.3s ease-in-out;
|
6495 |
-
transition: all 0.3s ease-in-out;
|
6496 |
-
width: auto;
|
6497 |
-
position: relative; }
|
6498 |
-
.premium-icon-list-content .premium-icon-list-text span,
|
6499 |
-
.premium-icon-list-content .premium-icon-list-wrapper {
|
6500 |
-
display: inline-block;
|
6501 |
-
-webkit-align-self: center;
|
6502 |
-
-ms-flex-item-align: center;
|
6503 |
-
align-self: center;
|
6504 |
-
-webkit-transition: all 0.3s ease-in-out;
|
6505 |
-
transition: all 0.3s ease-in-out; }
|
6506 |
-
.premium-icon-list-content .premium-icon-list-text span {
|
6507 |
-
margin: 0 5px; }
|
6508 |
-
.premium-icon-list-content .premium-icon-list-icon-text p {
|
6509 |
-
font-size: 18px;
|
6510 |
-
background-color: #eee;
|
6511 |
-
padding: 1px 5px;
|
6512 |
-
-webkit-border-radius: 2px;
|
6513 |
-
border-radius: 2px; }
|
6514 |
-
.premium-icon-list-content .premium-icon-list-text span,
|
6515 |
-
.premium-icon-list-content .premium-icon-list-icon-text p,
|
6516 |
-
.premium-icon-list-content .premium-icon-list-wrapper img,
|
6517 |
-
.premium-icon-list-content .premium-icon-list-wrapper svg,
|
6518 |
-
.premium-icon-list-content .premium-icon-list-wrapper i {
|
6519 |
-
-webkit-transition: all 0.3s ease-in-out;
|
6520 |
-
transition: all 0.3s ease-in-out; }
|
6521 |
-
.premium-icon-list-content .premium-icon-list-wrapper {
|
6522 |
-
position: relative;
|
6523 |
-
line-height: 0; }
|
6524 |
-
.premium-icon-list-content .premium-icon-list-wrapper img,
|
6525 |
-
.premium-icon-list-content .premium-icon-list-wrapper .premium-lottie-animation svg {
|
6526 |
-
width: 30px !important;
|
6527 |
-
height: 30px !important;
|
6528 |
-
position: relative;
|
6529 |
-
z-index: 500; }
|
6530 |
-
.premium-icon-list-content .premium-icon-list-wrapper i,
|
6531 |
-
.premium-icon-list-content .premium-icon-list-wrapper .premium-icon-list-icon-text {
|
6532 |
-
position: relative;
|
6533 |
-
z-index: 500; }
|
6534 |
-
.premium-icon-list-content .premium-icon-list-link {
|
6535 |
-
position: absolute;
|
6536 |
-
top: 0;
|
6537 |
-
left: 0;
|
6538 |
-
width: 100%;
|
6539 |
-
height: 100%;
|
6540 |
-
z-index: 1000; }
|
6541 |
-
|
6542 |
-
.premium-icon-list-content:not(:last-of-type) .premium-icon-list-connector {
|
6543 |
-
width: 100%;
|
6544 |
-
height: 100%;
|
6545 |
-
position: absolute;
|
6546 |
-
top: 0.5em;
|
6547 |
-
z-index: 100;
|
6548 |
-
-js-display: flex;
|
6549 |
-
display: -webkit-box;
|
6550 |
-
display: -webkit-flex;
|
6551 |
-
display: -moz-box;
|
6552 |
-
display: -ms-flexbox;
|
6553 |
-
display: flex;
|
6554 |
-
-webkit-box-pack: center;
|
6555 |
-
-webkit-justify-content: center;
|
6556 |
-
-moz-box-pack: center;
|
6557 |
-
-ms-flex-pack: center;
|
6558 |
-
justify-content: center; }
|
6559 |
-
.premium-icon-list-content:not(:last-of-type) .premium-icon-list-connector .premium-icon-connector-content:after {
|
6560 |
-
content: "";
|
6561 |
-
border-right-width: 1px;
|
6562 |
-
border-right-style: solid;
|
6563 |
-
border-color: #333333;
|
6564 |
-
display: block;
|
6565 |
-
height: 100%; }
|
6566 |
-
|
6567 |
-
li.premium-icon-list-content.premium-icon-list-content-inline {
|
6568 |
-
-webkit-align-self: center;
|
6569 |
-
-ms-flex-item-align: center;
|
6570 |
-
align-self: center;
|
6571 |
-
z-index: 2; }
|
6572 |
-
|
6573 |
-
li.premium-icon-list-content.premium-icon-list-content-inline:not(:first-child) {
|
6574 |
-
margin: 0 3px; }
|
6575 |
-
|
6576 |
-
li.premium-icon-list-content.premium-icon-list-content-inline:first-child {
|
6577 |
-
margin: 0 3px 0 0; }
|
6578 |
-
|
6579 |
-
.premium-icon-list-divider:not(:last-child) {
|
6580 |
-
width: 100%;
|
6581 |
-
-webkit-box-flex: 0;
|
6582 |
-
-webkit-flex: 0 0 100%;
|
6583 |
-
-moz-box-flex: 0;
|
6584 |
-
-ms-flex: 0 0 100%;
|
6585 |
-
flex: 0 0 100%;
|
6586 |
-
overflow: hidden; }
|
6587 |
-
|
6588 |
-
.premium-icon-list-divider:not(:last-child):after {
|
6589 |
-
content: "";
|
6590 |
-
display: block;
|
6591 |
-
border-top-style: solid;
|
6592 |
-
border-top-width: 1px; }
|
6593 |
-
|
6594 |
-
.premium-icon-list-divider-inline:not(:last-child) {
|
6595 |
-
float: right;
|
6596 |
-
display: inline-block;
|
6597 |
-
position: relative;
|
6598 |
-
height: 100%;
|
6599 |
-
overflow: hidden;
|
6600 |
-
-webkit-align-self: center;
|
6601 |
-
-ms-flex-item-align: center;
|
6602 |
-
align-self: center;
|
6603 |
-
margin: 0 3px; }
|
6604 |
-
|
6605 |
-
.premium-icon-list-divider-inline:not(:last-child):after {
|
6606 |
-
content: "";
|
6607 |
-
display: block;
|
6608 |
-
border-left-width: 1px;
|
6609 |
-
height: 33px;
|
6610 |
-
border-left-style: solid; }
|
6611 |
-
|
6612 |
-
.premium-icon-list-icon-text {
|
6613 |
-
line-height: 1.5; }
|
6614 |
-
|
6615 |
-
.premium-icon-list-icon-text p,
|
6616 |
-
ul.premium-icon-list-box,
|
6617 |
-
li.premium-icon-list-content {
|
6618 |
-
margin: 0; }
|
6619 |
-
|
6620 |
-
.premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-wrapper i,
|
6621 |
-
.premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-text span,
|
6622 |
-
.premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-icon-text p {
|
6623 |
-
color: transparent !important;
|
6624 |
-
text-shadow: 0 0 3px #aaa; }
|
6625 |
-
|
6626 |
-
.premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-connector-content,
|
6627 |
-
.premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-wrapper .premium-lottie-animation svg,
|
6628 |
-
.premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-wrapper img,
|
6629 |
-
.premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-badge {
|
6630 |
-
-webkit-filter: blur(3px);
|
6631 |
-
filter: blur(3px); }
|
6632 |
-
|
6633 |
-
.premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-wrapper i,
|
6634 |
-
.premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-text span,
|
6635 |
-
.premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-icon-text p {
|
6636 |
-
color: #aaa !important;
|
6637 |
-
text-shadow: 0 0px 0 transparent; }
|
6638 |
-
|
6639 |
-
.premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-connector-content,
|
6640 |
-
.premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-wrapper .premium-lottie-animation svg,
|
6641 |
-
.premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-wrapper img,
|
6642 |
-
.premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-badge {
|
6643 |
-
-webkit-filter: none;
|
6644 |
-
filter: none; }
|
6645 |
-
|
6646 |
-
.premium-icon-list-content .premium-icon-list-badge {
|
6647 |
-
font-size: 11px;
|
6648 |
-
top: auto;
|
6649 |
-
min-width: -webkit-max-content;
|
6650 |
-
min-width: -moz-max-content;
|
6651 |
-
min-width: max-content;
|
6652 |
-
height: -webkit-fit-content;
|
6653 |
-
height: -moz-fit-content;
|
6654 |
-
height: fit-content; }
|
6655 |
-
|
6656 |
-
.premium-icon-list-content .premium-icon-list-icon-text p {
|
6657 |
-
font-size: 13px; }
|
6658 |
-
|
6659 |
-
.premium-icon-list-gradient-effect[data-text] {
|
6660 |
-
display: inline-block;
|
6661 |
-
position: relative;
|
6662 |
-
text-decoration: none; }
|
6663 |
-
|
6664 |
-
.premium-icon-list-gradient-effect[data-text]::before {
|
6665 |
-
content: attr(data-text);
|
6666 |
-
position: absolute;
|
6667 |
-
z-index: 1;
|
6668 |
-
overflow: hidden;
|
6669 |
-
-webkit-clip-path: polygon(0 0, 1px 0, 1px 100%, 0 100%);
|
6670 |
-
clip-path: polygon(0 0, 1px 0, 1px 100%, 0 100%);
|
6671 |
-
-webkit-background-clip: text;
|
6672 |
-
background-clip: text;
|
6673 |
-
-webkit-text-fill-color: transparent;
|
6674 |
-
-webkit-transition: all 0.4s ease;
|
6675 |
-
transition: all 0.4s ease; }
|
6676 |
-
|
6677 |
-
.premium-icon-list-content:hover .premium-icon-list-gradient-effect[data-text]::before,
|
6678 |
-
.premium-icon-list-content:focus .premium-icon-list-gradient-effect[data-text]::before {
|
6679 |
-
-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
|
6680 |
-
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
|
6681 |
-
|
6682 |
-
ul[data-list-animation*="animated-"] .premium-icon-list-divider,
|
6683 |
-
ul[data-list-animation*="animated-"] .premium-icon-list-content,
|
6684 |
-
ul[data-list-animation*="animated-"] .premium-icon-list-divider-inline {
|
6685 |
-
opacity: 0; }
|
6686 |
-
|
6687 |
-
.premium-icon-list-content-grow-effect:hover {
|
6688 |
-
-webkit-transform: scale(1.07);
|
6689 |
-
-ms-transform: scale(1.07);
|
6690 |
-
transform: scale(1.07); }
|
1 |
+
@font-face {
|
2 |
+
font-family: "pa-elements";
|
3 |
+
src: url("../../editor/fonts/pa-elements.eot?p2y7wv");
|
4 |
+
src: url("../../editor/fonts/pa-elements.eot?p2y7wv#iefix") format("embedded-opentype"), url("../../editor/fonts/pa-elements.ttf?p2y7wv") format("truetype"), url("../../editor/fonts/pa-elements.woff?p2y7wv") format("woff"), url("../../editor/fonts/pa-elements.svg?p2y7wv#pa-elements") format("svg");
|
5 |
+
font-weight: normal;
|
6 |
+
font-style: normal; }
|
7 |
+
|
8 |
+
/**************** Premium Banner ****************/
|
9 |
+
/************************************************/
|
10 |
+
.premium-banner {
|
11 |
+
overflow: hidden; }
|
12 |
+
|
13 |
+
.premium-banner-ib {
|
14 |
+
display: block;
|
15 |
+
position: relative;
|
16 |
+
z-index: 1;
|
17 |
+
overflow: hidden;
|
18 |
+
margin: 0;
|
19 |
+
text-align: center;
|
20 |
+
-webkit-box-sizing: border-box;
|
21 |
+
-moz-box-sizing: border-box;
|
22 |
+
box-sizing: border-box; }
|
23 |
+
.premium-banner-ib img {
|
24 |
+
display: block;
|
25 |
+
position: relative; }
|
26 |
+
|
27 |
+
.premium-banner-img-wrap {
|
28 |
+
-js-display: flex;
|
29 |
+
display: -webkit-box;
|
30 |
+
display: -webkit-flex;
|
31 |
+
display: -moz-box;
|
32 |
+
display: -ms-flexbox;
|
33 |
+
display: flex;
|
34 |
+
height: 100%; }
|
35 |
+
.premium-banner-img-wrap .premium-banner-ib-img {
|
36 |
+
-webkit-flex-shrink: 0;
|
37 |
+
-ms-flex-negative: 0;
|
38 |
+
flex-shrink: 0; }
|
39 |
+
|
40 |
+
.premium-banner-ib-desc .premium-banner-read-more {
|
41 |
+
z-index: 100; }
|
42 |
+
|
43 |
+
.elementor-widget-premium-addon-banner .premium-banner-ib-title {
|
44 |
+
background: transparent; }
|
45 |
+
|
46 |
+
.premium-banner-ib *,
|
47 |
+
.premium-banner-ib .premium-banner-ib-desc {
|
48 |
+
-webkit-box-sizing: border-box;
|
49 |
+
-moz-box-sizing: border-box;
|
50 |
+
box-sizing: border-box; }
|
51 |
+
|
52 |
+
.premium-banner-ib img {
|
53 |
+
min-width: 100%;
|
54 |
+
max-width: 100%;
|
55 |
+
-webkit-transition: opacity 0.35s;
|
56 |
+
transition: opacity 0.35s; }
|
57 |
+
|
58 |
+
.premium-banner-ib .premium-banner-ib-desc {
|
59 |
+
padding: 15px;
|
60 |
+
-webkit-backface-visibility: hidden;
|
61 |
+
backface-visibility: hidden;
|
62 |
+
-webkit-box-sizing: border-box;
|
63 |
+
-moz-box-sizing: border-box;
|
64 |
+
box-sizing: border-box;
|
65 |
+
position: absolute;
|
66 |
+
top: 0;
|
67 |
+
left: 0;
|
68 |
+
width: 100%;
|
69 |
+
height: 100%; }
|
70 |
+
|
71 |
+
.premium-banner-ib .premium-banner-ib-link {
|
72 |
+
position: absolute;
|
73 |
+
top: 0;
|
74 |
+
left: 0;
|
75 |
+
width: 100%;
|
76 |
+
height: 100%;
|
77 |
+
z-index: 1000;
|
78 |
+
text-indent: 200%;
|
79 |
+
white-space: nowrap;
|
80 |
+
font-size: 0;
|
81 |
+
opacity: 0; }
|
82 |
+
|
83 |
+
.premium-banner-ib a.premium-banner-ib-link {
|
84 |
+
display: block;
|
85 |
+
background: 0 0; }
|
86 |
+
|
87 |
+
.premium-banner-animation1 img {
|
88 |
+
width: -webkit-calc(100% + 50px) !important;
|
89 |
+
width: calc(100% + 50px) !important;
|
90 |
+
max-width: -webkit-calc(100% + 50px) !important;
|
91 |
+
max-width: calc(100% + 50px) !important;
|
92 |
+
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
93 |
+
transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
94 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s;
|
95 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
96 |
+
-webkit-transform: translate3d(-40px, 0, 0);
|
97 |
+
transform: translate3d(-40px, 0, 0); }
|
98 |
+
|
99 |
+
.premium-banner-animation2 .premium-banner-ib-title {
|
100 |
+
padding: 15px; }
|
101 |
+
|
102 |
+
.premium-banner-animation1 .premium-banner-ib-desc {
|
103 |
+
top: auto;
|
104 |
+
bottom: 0;
|
105 |
+
min-height: 25%;
|
106 |
+
height: auto;
|
107 |
+
max-height: 100%;
|
108 |
+
text-align: left; }
|
109 |
+
|
110 |
+
.premium-banner-animation1 .premium-banner-ib-content,
|
111 |
+
.premium-banner-animation1 .premium-banner-ib-title,
|
112 |
+
.premium-banner-animation1 .premium-banner-read-more {
|
113 |
+
-webkit-transform: translate3d(0, 40px, 0);
|
114 |
+
transform: translate3d(0, 40px, 0);
|
115 |
+
-webkit-transition-delay: 0.05s;
|
116 |
+
transition-delay: 0.05s;
|
117 |
+
-webkit-transition-duration: 0.35s;
|
118 |
+
transition-duration: 0.35s; }
|
119 |
+
|
120 |
+
.premium-banner-animation1 .premium-banner-ib-title {
|
121 |
+
-webkit-transition: -webkit-transform 0.35s;
|
122 |
+
transition: -webkit-transform 0.35s;
|
123 |
+
transition: transform 0.35s;
|
124 |
+
transition: transform 0.35s, -webkit-transform 0.35s; }
|
125 |
+
|
126 |
+
.premium-banner-animation1 .premium-banner-ib-content,
|
127 |
+
.premium-banner-animation1 .premium-banner-read-more {
|
128 |
+
margin-top: 10px;
|
129 |
+
opacity: 0;
|
130 |
+
-webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
|
131 |
+
transition: opacity 0.2s, -webkit-transform 0.35s;
|
132 |
+
transition: opacity 0.2s, transform 0.35s;
|
133 |
+
transition: opacity 0.2s, transform 0.35s, -webkit-transform 0.35s; }
|
134 |
+
|
135 |
+
.premium-banner-animation1:hover .premium-banner-ib-content,
|
136 |
+
.premium-banner-animation1.active .premium-banner-ib-content,
|
137 |
+
.premium-banner-animation1:hover .premium-banner-read-more,
|
138 |
+
.premium-banner-animation1.active .premium-banner-read-more {
|
139 |
+
opacity: 1;
|
140 |
+
-webkit-transition-delay: 0.05s;
|
141 |
+
transition-delay: 0.05s;
|
142 |
+
-webkit-transition-duration: 0.35s;
|
143 |
+
transition-duration: 0.35s; }
|
144 |
+
|
145 |
+
.premium-banner-animation1:hover .premium-banner-ib-content,
|
146 |
+
.premium-banner-animation1.active .premium-banner-ib-content,
|
147 |
+
.premium-banner-animation1:hover .premium-banner-read-more,
|
148 |
+
.premium-banner-animation1.active .premium-banner-read-more,
|
149 |
+
.premium-banner-animation1:hover .premium-banner-ib-title,
|
150 |
+
.premium-banner-animation1.active .premium-banner-ib-title,
|
151 |
+
.premium-banner-animation1:hover img,
|
152 |
+
.premium-banner-animation1.active img {
|
153 |
+
-webkit-transform: translate3d(0, 0, 0);
|
154 |
+
transform: translate3d(0, 0, 0);
|
155 |
+
-webkit-transition-delay: 0.05s;
|
156 |
+
transition-delay: 0.05s;
|
157 |
+
-webkit-transition-duration: 0.35s;
|
158 |
+
transition-duration: 0.35s; }
|
159 |
+
|
160 |
+
.premium-banner-animation1.zoomout img,
|
161 |
+
.premium-banner-animation1.scale img {
|
162 |
+
-webkit-transform: translate3d(-40px, 0, 0) scale(1.1);
|
163 |
+
transform: translate3d(-40px, 0, 0) scale(1.1); }
|
164 |
+
|
165 |
+
.premium-banner-ib.sepia img {
|
166 |
+
-webkit-filter: sepia(30%);
|
167 |
+
filter: sepia(30%); }
|
168 |
+
|
169 |
+
.premium-banner-ib.bright img {
|
170 |
+
-webkit-filter: brightness(1);
|
171 |
+
filter: brightness(1); }
|
172 |
+
|
173 |
+
.premium-banner-ib.sepia:hover img {
|
174 |
+
-webkit-filter: sepia(0%);
|
175 |
+
filter: sepia(0%); }
|
176 |
+
|
177 |
+
.premium-banner-ib.bright:hover img {
|
178 |
+
-webkit-filter: brightness(1.2);
|
179 |
+
filter: brightness(1.2); }
|
180 |
+
|
181 |
+
.premium-banner-animation1.premium-banner-min-height img,
|
182 |
+
.premium-banner-animation2.premium-banner-min-height img,
|
183 |
+
.premium-banner-animation4.premium-banner-min-height img,
|
184 |
+
.premium-banner-animation5.premium-banner-min-height img,
|
185 |
+
.premium-banner-animation6.premium-banner-min-height img,
|
186 |
+
.premium-banner-animation13.premium-banner-min-height img {
|
187 |
+
height: auto; }
|
188 |
+
|
189 |
+
.premium-banner-animation2 img {
|
190 |
+
width: 100%; }
|
191 |
+
|
192 |
+
.premium-banner-animation2 .premium-banner-ib-desc::before {
|
193 |
+
position: absolute;
|
194 |
+
content: "";
|
195 |
+
top: 0;
|
196 |
+
left: 0;
|
197 |
+
width: 100%;
|
198 |
+
height: 100%;
|
199 |
+
opacity: 0;
|
200 |
+
-webkit-transform: translate3d(0, 50%, 0);
|
201 |
+
transform: translate3d(0, 50%, 0); }
|
202 |
+
|
203 |
+
.premium-banner-animation2 .premium-banner-ib-title {
|
204 |
+
position: absolute;
|
205 |
+
top: 50%;
|
206 |
+
left: 0;
|
207 |
+
width: 100%;
|
208 |
+
-webkit-transition: color 0.35s, -webkit-transform 0.35s;
|
209 |
+
transition: color 0.35s, -webkit-transform 0.35s;
|
210 |
+
transition: transform 0.35s, color 0.35s;
|
211 |
+
transition: transform 0.35s, color 0.35s, -webkit-transform 0.35s;
|
212 |
+
-webkit-transform: translate3d(0, -50%, 0);
|
213 |
+
transform: translate3d(0, -50%, 0); }
|
214 |
+
|
215 |
+
.premium-banner-animation2 .premium-banner-ib-content,
|
216 |
+
.premium-banner-animation2 .premium-banner-read-more,
|
217 |
+
.premium-banner-animation2 .premium-banner-ib-desc::before {
|
218 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
219 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
220 |
+
transition: opacity 0.35s, transform 0.35s;
|
221 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
|
222 |
+
|
223 |
+
.premium-banner-animation2 .premium-banner-ib-content,
|
224 |
+
.premium-banner-animation2 .premium-banner-read-more {
|
225 |
+
position: absolute;
|
226 |
+
bottom: 0;
|
227 |
+
left: 0;
|
228 |
+
padding: 15px;
|
229 |
+
width: 100%;
|
230 |
+
max-height: 50%;
|
231 |
+
opacity: 0;
|
232 |
+
-webkit-transform: translate3d(0, 10px, 0);
|
233 |
+
transform: translate3d(0, 10px, 0); }
|
234 |
+
|
235 |
+
.premium-banner-animation2:hover .premium-banner-ib-title,
|
236 |
+
.premium-banner-animation2.active .premium-banner-ib-title {
|
237 |
+
-webkit-transform: translate3d(0, -40px, 0);
|
238 |
+
transform: translate3d(0, -40px, 0); }
|
239 |
+
|
240 |
+
.premium-banner-animation2:hover .premium-banner-read-more,
|
241 |
+
.premium-banner-animation2.active .premium-banner-read-more,
|
242 |
+
.premium-banner-animation2:hover .premium-banner-ib-desc::before,
|
243 |
+
.premium-banner-animation2.active .premium-banner-ib-desc::before {
|
244 |
+
opacity: 1;
|
245 |
+
-webkit-transform: translate3d(0, 0, 0);
|
246 |
+
transform: translate3d(0, 0, 0); }
|
247 |
+
|
248 |
+
.premium-banner-animation2:hover .premium-banner-ib-content,
|
249 |
+
.premium-banner-animation2.active .premium-banner-ib-content {
|
250 |
+
opacity: 1;
|
251 |
+
-webkit-transform: translate3d(0, -30px, 0);
|
252 |
+
transform: translate3d(0, -30px, 0); }
|
253 |
+
|
254 |
+
.premium-banner-animation3 .premium-banner-ib-title {
|
255 |
+
position: absolute;
|
256 |
+
bottom: 0;
|
257 |
+
left: 0;
|
258 |
+
padding: 15px;
|
259 |
+
width: 100%;
|
260 |
+
text-align: left;
|
261 |
+
-webkit-transform: translate3d(0, -30px, 0);
|
262 |
+
transform: translate3d(0, -30px, 0); }
|
263 |
+
|
264 |
+
.premium-banner-animation3 .premium-banner-ib-desc::before,
|
265 |
+
.premium-banner-animation3 .premium-banner-ib-title {
|
266 |
+
-webkit-transition: -webkit-transform 0.35s;
|
267 |
+
transition: -webkit-transform 0.35s;
|
268 |
+
transition: transform 0.35s;
|
269 |
+
transition: transform 0.35s, -webkit-transform 0.35s; }
|
270 |
+
|
271 |
+
.premium-banner-animation3:hover .premium-banner-ib-desc::before,
|
272 |
+
.premium-banner-animation3.active .premium-banner-ib-desc::before,
|
273 |
+
.premium-banner-animation3:hover .premium-banner-ib-title,
|
274 |
+
.premium-banner-animation3.active .premium-banner-ib-title {
|
275 |
+
opacity: 1;
|
276 |
+
-webkit-transform: translate3d(0, 0, 0);
|
277 |
+
transform: translate3d(0, 0, 0); }
|
278 |
+
|
279 |
+
.premium-banner-animation3 .premium-banner-ib-content {
|
280 |
+
max-height: -webkit-calc(100% - 60px - 1.5em);
|
281 |
+
max-height: calc(100% - 60px - 1.5em);
|
282 |
+
overflow: hidden; }
|
283 |
+
|
284 |
+
.premium-banner-animation4 img {
|
285 |
+
width: -webkit-calc(100% + 40px) !important;
|
286 |
+
width: calc(100% + 40px) !important;
|
287 |
+
max-width: -webkit-calc(100% + 40px) !important;
|
288 |
+
max-width: calc(100% + 40px) !important; }
|
289 |
+
|
290 |
+
.premium-banner-animation4 .premium-banner-ib-desc {
|
291 |
+
padding: 30px; }
|
292 |
+
.premium-banner-animation4 .premium-banner-ib-desc::after {
|
293 |
+
position: absolute;
|
294 |
+
content: "";
|
295 |
+
opacity: 0; }
|
296 |
+
.premium-banner-animation4 .premium-banner-ib-desc::before {
|
297 |
+
position: absolute;
|
298 |
+
content: "";
|
299 |
+
opacity: 0;
|
300 |
+
top: 50px;
|
301 |
+
right: 30px;
|
302 |
+
bottom: 50px;
|
303 |
+
left: 30px;
|
304 |
+
border-top: 1px solid #fff;
|
305 |
+
border-bottom: 1px solid #fff;
|
306 |
+
-webkit-transform: scale(0, 1);
|
307 |
+
-ms-transform: scale(0, 1);
|
308 |
+
transform: scale(0, 1);
|
309 |
+
-webkit-transform-origin: 0 0;
|
310 |
+
-ms-transform-origin: 0 0;
|
311 |
+
transform-origin: 0 0; }
|
312 |
+
.premium-banner-animation4 .premium-banner-ib-desc::after {
|
313 |
+
top: 30px;
|
314 |
+
right: 50px;
|
315 |
+
bottom: 30px;
|
316 |
+
left: 50px;
|
317 |
+
border-right: 1px solid #fff;
|
318 |
+
border-left: 1px solid #fff;
|
319 |
+
-webkit-transform: scale(1, 0);
|
320 |
+
-ms-transform: scale(1, 0);
|
321 |
+
transform: scale(1, 0);
|
322 |
+
-webkit-transform-origin: 100% 0;
|
323 |
+
-ms-transform-origin: 100% 0;
|
324 |
+
transform-origin: 100% 0; }
|
325 |
+
|
326 |
+
.premium-banner-animation4 .premium-banner-ib-title {
|
327 |
+
padding: 50px 30px 0 30px;
|
328 |
+
-webkit-transition: -webkit-transform 0.35s;
|
329 |
+
transition: -webkit-transform 0.35s;
|
330 |
+
transition: transform 0.35s;
|
331 |
+
transition: transform 0.35s, -webkit-transform 0.35s; }
|
332 |
+
|
333 |
+
.premium-banner-animation4 .premium-banner-ib-content,
|
334 |
+
.premium-banner-animation4 .premium-banner-read-more {
|
335 |
+
padding: 10px 30px;
|
336 |
+
opacity: 0;
|
337 |
+
overflow: hidden;
|
338 |
+
-webkit-transform: translate3d(0, -10px, 0);
|
339 |
+
transform: translate3d(0, -10px, 0); }
|
340 |
+
|
341 |
+
.premium-banner-animation4 .premium-banner-ib-title,
|
342 |
+
.premium-banner-animation4 img {
|
343 |
+
-webkit-transform: translate3d(-30px, 0, 0);
|
344 |
+
transform: translate3d(-30px, 0, 0); }
|
345 |
+
|
346 |
+
.premium-banner-animation4.zoomout img,
|
347 |
+
.premium-banner-animation4.scale img {
|
348 |
+
-webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
|
349 |
+
transform: translate3d(-30px, 0, 0) scale(1.1); }
|
350 |
+
|
351 |
+
.premium-banner-animation4 .premium-banner-ib-content,
|
352 |
+
.premium-banner-animation4 .premium-banner-read-more {
|
353 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
354 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
355 |
+
transition: opacity 0.35s, transform 0.35s;
|
356 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
|
357 |
+
|
358 |
+
.premium-banner-animation4 .premium-banner-ib-desc::after, .premium-banner-animation4 .premium-banner-ib-desc::before {
|
359 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
360 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
361 |
+
transition: opacity 0.35s, transform 0.35s;
|
362 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
|
363 |
+
|
364 |
+
.premium-banner-animation4 img {
|
365 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
366 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
367 |
+
transition: opacity 0.35s, transform 0.35s;
|
368 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
|
369 |
+
|
370 |
+
.premium-banner-animation4:hover .premium-banner-ib-desc::after,
|
371 |
+
.premium-banner-animation4.active .premium-banner-ib-desc::after,
|
372 |
+
.premium-banner-animation4:hover .premium-banner-ib-desc::before,
|
373 |
+
.premium-banner-animation4.active .premium-banner-ib-desc::before {
|
374 |
+
opacity: 1;
|
375 |
+
-webkit-transform: scale(1);
|
376 |
+
-ms-transform: scale(1);
|
377 |
+
transform: scale(1); }
|
378 |
+
|
379 |
+
.premium-banner-animation4:hover .premium-banner-ib-content,
|
380 |
+
.premium-banner-animation4.active .premium-banner-ib-content,
|
381 |
+
.premium-banner-animation4:hover .premium-banner-read-more,
|
382 |
+
.premium-banner-animation4.active .premium-banner-read-more,
|
383 |
+
.premium-banner-animation4:hover .premium-banner-ib-title,
|
384 |
+
.premium-banner-animation4.active .premium-banner-ib-title {
|
385 |
+
opacity: 1;
|
386 |
+
-webkit-transform: translate3d(0, 0, 0);
|
387 |
+
transform: translate3d(0, 0, 0); }
|
388 |
+
|
389 |
+
.premium-banner-animation4:hover .premium-banner-ib-content,
|
390 |
+
.premium-banner-animation4:hover .premium-banner-ib-desc::after,
|
391 |
+
.premium-banner-animation4:hover .premium-banner-ib-title,
|
392 |
+
.premium-banner-animation4:hover img {
|
393 |
+
-webkit-transition-delay: 0.15s;
|
394 |
+
transition-delay: 0.15s; }
|
395 |
+
|
396 |
+
.premium-banner-animation5 .premium-banner-ib-desc {
|
397 |
+
top: auto;
|
398 |
+
bottom: 0;
|
399 |
+
padding: 15px;
|
400 |
+
height: auto;
|
401 |
+
background: #f2f2f2;
|
402 |
+
color: #3c4a50;
|
403 |
+
-webkit-transition: -webkit-transform 0.35s;
|
404 |
+
transition: -webkit-transform 0.35s;
|
405 |
+
transition: transform 0.35s;
|
406 |
+
transition: transform 0.35s, -webkit-transform 0.35s;
|
407 |
+
-webkit-transform: translate3d(0, 100%, 0);
|
408 |
+
transform: translate3d(0, 100%, 0); }
|
409 |
+
|
410 |
+
.premium-banner-animation5 .premium-banner-ib-content {
|
411 |
+
position: absolute;
|
412 |
+
top: auto;
|
413 |
+
bottom: 100%;
|
414 |
+
left: 0;
|
415 |
+
width: 100%;
|
416 |
+
padding: 15px;
|
417 |
+
opacity: 0;
|
418 |
+
-webkit-transition: opacity 0.35s;
|
419 |
+
transition: opacity 0.35s; }
|
420 |
+
|
421 |
+
.premium-banner-animation5 .premium-banner-ib-title,
|
422 |
+
.premium-banner-animation5 .premium-banner-read-more {
|
423 |
+
-webkit-transition: -webkit-transform 0.35s;
|
424 |
+
transition: -webkit-transform 0.35s;
|
425 |
+
transition: transform 0.35s;
|
426 |
+
transition: transform 0.35s, -webkit-transform 0.35s;
|
427 |
+
-webkit-transform: translate3d(0, 200%, 0);
|
428 |
+
transform: translate3d(0, 200%, 0);
|
429 |
+
text-align: center; }
|
430 |
+
|
431 |
+
.premium-banner-animation5 .premium-banner-ib-title {
|
432 |
+
margin: 10px 0; }
|
433 |
+
|
434 |
+
.premium-banner-animation5:hover .premium-banner-ib-content,
|
435 |
+
.premium-banner-animation5.active .premium-banner-ib-content,
|
436 |
+
.premium-banner-animation5:hover .premium-banner-ib-content *,
|
437 |
+
.premium-banner-animation5.active .premium-banner-ib-content * {
|
438 |
+
opacity: 1 !important;
|
439 |
+
z-index: 99 !important;
|
440 |
+
-webkit-backface-visibility: hidden !important;
|
441 |
+
backface-visibility: hidden !important; }
|
442 |
+
|
443 |
+
.premium-banner-animation5:hover .premium-banner-ib-desc,
|
444 |
+
.premium-banner-animation5.active .premium-banner-ib-desc,
|
445 |
+
.premium-banner-animation5:hover .premium-banner-ib-title,
|
446 |
+
.premium-banner-animation5.active .premium-banner-ib-title,
|
447 |
+
.premium-banner-animation5:hover .premium-banner-read-more,
|
448 |
+
.premium-banner-animation5.active .premium-banner-read-more {
|
449 |
+
-webkit-transform: translateY(0);
|
450 |
+
-ms-transform: translateY(0);
|
451 |
+
transform: translateY(0); }
|
452 |
+
|
453 |
+
.premium-banner-animation5:hover .premium-banner-ib-title {
|
454 |
+
-webkit-transition-delay: 0.05s;
|
455 |
+
transition-delay: 0.05s; }
|
456 |
+
|
457 |
+
.premium-banner-animation5 img {
|
458 |
+
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
459 |
+
transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
460 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s;
|
461 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
|
462 |
+
|
463 |
+
.premium-banner-animation2 img,
|
464 |
+
.premium-banner-animation4 img,
|
465 |
+
.premium-banner-animation6 img {
|
466 |
+
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
467 |
+
transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
468 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s;
|
469 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
|
470 |
+
|
471 |
+
.premium-banner-animation5.zoomout img,
|
472 |
+
.premium-banner-animation5.scale img {
|
473 |
+
-webkit-transform: scale(1.1);
|
474 |
+
-ms-transform: scale(1.1);
|
475 |
+
transform: scale(1.1); }
|
476 |
+
|
477 |
+
.premium-banner-animation2.zoomout img,
|
478 |
+
.premium-banner-animation2.scale img {
|
479 |
+
-webkit-transform: scale(1.1);
|
480 |
+
-ms-transform: scale(1.1);
|
481 |
+
transform: scale(1.1); }
|
482 |
+
|
483 |
+
.premium-banner-animation6.zoomout img,
|
484 |
+
.premium-banner-animation6.scale img {
|
485 |
+
-webkit-transform: scale(1.1);
|
486 |
+
-ms-transform: scale(1.1);
|
487 |
+
transform: scale(1.1); }
|
488 |
+
|
489 |
+
.premium-banner-animation5.zoomin:hover img,
|
490 |
+
.premium-banner-animation2.zoomin:hover img,
|
491 |
+
.premium-banner-animation6.zoomin:hover img {
|
492 |
+
-webkit-transform: scale(1.1);
|
493 |
+
-ms-transform: scale(1.1);
|
494 |
+
transform: scale(1.1); }
|
495 |
+
|
496 |
+
.premium-banner-animation5.zoomout:hover img,
|
497 |
+
.premium-banner-animation2.zoomout:hover img,
|
498 |
+
.premium-banner-animation6.zoomout:hover img {
|
499 |
+
-webkit-transform: scale(1);
|
500 |
+
-ms-transform: scale(1);
|
501 |
+
transform: scale(1); }
|
502 |
+
|
503 |
+
.premium-banner-animation5.scale:hover img,
|
504 |
+
.premium-banner-animation2.scale:hover img,
|
505 |
+
.premium-banner-animation6.scale:hover img {
|
506 |
+
-webkit-transform: scale(1.2) rotate(5deg);
|
507 |
+
-ms-transform: scale(1.2) rotate(5deg);
|
508 |
+
transform: scale(1.2) rotate(5deg); }
|
509 |
+
|
510 |
+
.premium-banner-animation5.grayscale:hover img,
|
511 |
+
.premium-banner-animation2.grayscale:hover img,
|
512 |
+
.premium-banner-animation6.grayscale:hover img {
|
513 |
+
-webkit-filter: grayscale(100%);
|
514 |
+
filter: grayscale(100%); }
|
515 |
+
|
516 |
+
.premium-banner-animation5.blur:hover img,
|
517 |
+
.premium-banner-animation2.blur:hover img {
|
518 |
+
-webkit-filter: blur(3px);
|
519 |
+
filter: blur(3px); }
|
520 |
+
|
521 |
+
.premium-banner-animation6.blur:hover img {
|
522 |
+
-webkit-filter: blur(3px);
|
523 |
+
filter: blur(3px); }
|
524 |
+
|
525 |
+
.premium-banner-animation6 .premium-banner-ib-desc {
|
526 |
+
padding: 45px; }
|
527 |
+
.premium-banner-animation6 .premium-banner-ib-desc::before {
|
528 |
+
position: absolute;
|
529 |
+
content: "";
|
530 |
+
top: 30px;
|
531 |
+
right: 30px;
|
532 |
+
bottom: 30px;
|
533 |
+
left: 30px;
|
534 |
+
border: 1px solid #fff; }
|
535 |
+
|
536 |
+
.premium-banner-animation6 .premium-banner-ib-title {
|
537 |
+
margin: 20px 0 10px;
|
538 |
+
-webkit-transition: -webkit-transform 0.35s;
|
539 |
+
transition: -webkit-transform 0.35s;
|
540 |
+
transition: transform 0.35s;
|
541 |
+
transition: transform 0.35s, -webkit-transform 0.35s;
|
542 |
+
-webkit-transform: translate3d(0, 100%, 0);
|
543 |
+
transform: translate3d(0, 100%, 0); }
|
544 |
+
|
545 |
+
.premium-banner-animation6 .premium-banner-ib-content,
|
546 |
+
.premium-banner-animation6 .premium-banner-read-more,
|
547 |
+
.premium-banner-animation6 .premium-banner-ib-desc::before {
|
548 |
+
opacity: 0;
|
549 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
550 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
551 |
+
transition: opacity 0.35s, transform 0.35s;
|
552 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
553 |
+
-webkit-transform: scale(0);
|
554 |
+
-ms-transform: scale(0);
|
555 |
+
transform: scale(0); }
|
556 |
+
|
557 |
+
.premium-banner-animation6 .premium-banner-read-more {
|
558 |
+
margin-top: 10px; }
|
559 |
+
|
560 |
+
.premium-banner-animation6:hover .premium-banner-ib-title,
|
561 |
+
.premium-banner-animation6.active .premium-banner-ib-title {
|
562 |
+
-webkit-transform: translate3d(0, 0, 0);
|
563 |
+
transform: translate3d(0, 0, 0); }
|
564 |
+
|
565 |
+
.premium-banner-animation6:hover .premium-banner-ib-content,
|
566 |
+
.premium-banner-animation6.active .premium-banner-ib-content,
|
567 |
+
.premium-banner-animation6:hover .premium-banner-read-more,
|
568 |
+
.premium-banner-animation6.active .premium-banner-read-more,
|
569 |
+
.premium-banner-animation6:hover .premium-banner-ib-desc::before,
|
570 |
+
.premium-banner-animation6.active .premium-banner-ib-desc::before {
|
571 |
+
opacity: 1;
|
572 |
+
-webkit-transform: scale(1);
|
573 |
+
-ms-transform: scale(1);
|
574 |
+
transform: scale(1); }
|
575 |
+
|
576 |
+
.premium-banner-animation12 .premium-banner-ib-desc::after {
|
577 |
+
position: absolute;
|
578 |
+
content: "";
|
579 |
+
right: 30px;
|
580 |
+
bottom: 30px;
|
581 |
+
left: 30px;
|
582 |
+
height: -webkit-calc(50% - 30px);
|
583 |
+
height: calc(50% - 30px);
|
584 |
+
border: 7px solid #fff;
|
585 |
+
-webkit-transition: -webkit-transform 0.35s;
|
586 |
+
transition: -webkit-transform 0.35s;
|
587 |
+
transition: transform 0.35s;
|
588 |
+
transition: transform 0.35s, -webkit-transform 0.35s;
|
589 |
+
-webkit-transform: translate3d(0, -100%, 0);
|
590 |
+
transform: translate3d(0, -100%, 0); }
|
591 |
+
|
592 |
+
.premium-banner-animation12:hover .premium-banner-ib-desc::after,
|
593 |
+
.premium-banner-animation12.active .premium-banner-ib-desc::after {
|
594 |
+
-webkit-transform: translate3d(0, 0, 0);
|
595 |
+
transform: translate3d(0, 0, 0); }
|
596 |
+
|
597 |
+
.premium-banner-animation12 .premium-banner-ib-desc {
|
598 |
+
padding: 45px;
|
599 |
+
text-align: left; }
|
600 |
+
|
601 |
+
.premium-banner-animation12 .premium-banner-ib-content {
|
602 |
+
position: absolute;
|
603 |
+
right: 60px;
|
604 |
+
bottom: 60px;
|
605 |
+
left: 60px;
|
606 |
+
opacity: 0;
|
607 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
608 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
609 |
+
transition: opacity 0.35s, transform 0.35s;
|
610 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
611 |
+
-webkit-transform: translate3d(0, -100px, 0);
|
612 |
+
transform: translate3d(0, -100px, 0); }
|
613 |
+
|
614 |
+
.premium-banner-animation12:hover .premium-banner-ib-content,
|
615 |
+
.premium-banner-animation12.active .premium-banner-ib-content {
|
616 |
+
opacity: 1;
|
617 |
+
-webkit-transform: translate3d(0, 0, 0);
|
618 |
+
transform: translate3d(0, 0, 0); }
|
619 |
+
|
620 |
+
.premium-banner-animation13 img {
|
621 |
+
width: -webkit-calc(100% + 20px) !important;
|
622 |
+
width: calc(100% + 20px) !important;
|
623 |
+
max-width: -webkit-calc(100% + 20px) !important;
|
624 |
+
max-width: calc(100% + 20px) !important;
|
625 |
+
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
626 |
+
transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
627 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s;
|
628 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
629 |
+
-webkit-transform: translate3d(-10px, 0, 0);
|
630 |
+
transform: translate3d(-10px, 0, 0);
|
631 |
+
-webkit-backface-visibility: hidden;
|
632 |
+
backface-visibility: hidden; }
|
633 |
+
|
634 |
+
.premium-banner-animation13.zoomout img,
|
635 |
+
.premium-banner-animation13.scale img {
|
636 |
+
-webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
|
637 |
+
transform: translate3d(-10px, 0, 0) scale(1.1); }
|
638 |
+
|
639 |
+
.premium-banner-animation13.none:hover img {
|
640 |
+
-webkit-transform: translate3d(0, 0, 0);
|
641 |
+
transform: translate3d(0, 0, 0); }
|
642 |
+
|
643 |
+
.premium-banner-animation1.none:hover img,
|
644 |
+
.premium-banner-animation4.none:hover img {
|
645 |
+
-webkit-transform: translate3d(0, 0, 0);
|
646 |
+
transform: translate3d(0, 0, 0); }
|
647 |
+
|
648 |
+
.premium-banner-animation13.zoomin:hover img,
|
649 |
+
.premium-banner-animation1.zoomin:hover img,
|
650 |
+
.premium-banner-animation4.zoomin:hover img,
|
651 |
+
.premium-banner-animation8.zoomin:hover img,
|
652 |
+
.premium-banner-animation7.zoomin:hover img,
|
653 |
+
.premium-banner-animation9.zoomin:hover img,
|
654 |
+
.premium-banner-animation10.zoomin:hover img,
|
655 |
+
.premium-banner-animation11.zoomin:hover img {
|
656 |
+
-webkit-transform: translate3d(0, 0, 0) scale(1.1);
|
657 |
+
transform: translate3d(0, 0, 0) scale(1.1); }
|
658 |
+
|
659 |
+
.premium-banner-animation13.zoomout:hover img,
|
660 |
+
.premium-banner-animation1.zoomout:hover img,
|
661 |
+
.premium-banner-animation4.zoomout:hover img,
|
662 |
+
.premium-banner-animation8.zoomout:hover img,
|
663 |
+
.premium-banner-animation7.zoomout:hover img,
|
664 |
+
.premium-banner-animation9.zoomout:hover img,
|
665 |
+
.premium-banner-animation10.zoomout:hover img,
|
666 |
+
.premium-banner-animation11.zoomout:hover img {
|
667 |
+
-webkit-transform: translate3d(0, 0, 0) scale(1);
|
668 |
+
transform: translate3d(0, 0, 0) scale(1); }
|
669 |
+
|
670 |
+
.premium-banner-animation13.scale:hover img,
|
671 |
+
.premium-banner-animation1.scale:hover img,
|
672 |
+
.premium-banner-animation4.scale:hover img,
|
673 |
+
.premium-banner-animation8.scale:hover img,
|
674 |
+
.premium-banner-animation7.scale:hover img,
|
675 |
+
.premium-banner-animation9.scale:hover img,
|
676 |
+
.premium-banner-animation10.scale:hover img,
|
677 |
+
.premium-banner-animation11.scale:hover img {
|
678 |
+
-webkit-transform: translate3d(0, 0, 0) scale(1.2) rotate(5deg);
|
679 |
+
transform: translate3d(0, 0, 0) scale(1.2) rotate(5deg); }
|
680 |
+
|
681 |
+
.premium-banner-animation13.grayscale:hover img,
|
682 |
+
.premium-banner-animation1.grayscale:hover img,
|
683 |
+
.premium-banner-animation4.grayscale:hover img,
|
684 |
+
.premium-banner-animation8.grayscale:hover img,
|
685 |
+
.premium-banner-animation7.grayscale:hover img,
|
686 |
+
.premium-banner-animation9.grayscale:hover img,
|
687 |
+
.premium-banner-animation10.grayscale:hover img,
|
688 |
+
.premium-banner-animation11.grayscale:hover img {
|
689 |
+
-webkit-transform: translate3d(0, 0, 0);
|
690 |
+
transform: translate3d(0, 0, 0);
|
691 |
+
-webkit-filter: grayscale(100%);
|
692 |
+
filter: grayscale(100%); }
|
693 |
+
|
694 |
+
.premium-banner-animation13.blur:hover img,
|
695 |
+
.premium-banner-animation1.blur:hover img,
|
696 |
+
.premium-banner-animation4.blur:hover,
|
697 |
+
.premium-banner-animation8.blur:hover img,
|
698 |
+
.premium-banner-animation7.blur:hover img,
|
699 |
+
.premium-banner-animation9.blur:hover img,
|
700 |
+
.premium-banner-animation10.blur:hover img,
|
701 |
+
.premium-banner-animation11.blur:hover img {
|
702 |
+
-webkit-transform: translate3d(0, 0, 0);
|
703 |
+
transform: translate3d(0, 0, 0);
|
704 |
+
-webkit-filter: blur(3px);
|
705 |
+
filter: blur(3px); }
|
706 |
+
|
707 |
+
.premium-banner-animation13 .premium-banner-ib-desc {
|
708 |
+
text-align: left; }
|
709 |
+
|
710 |
+
.premium-banner-animation13 .premium-banner-ib-title {
|
711 |
+
position: relative;
|
712 |
+
overflow: hidden;
|
713 |
+
padding: 5px 0 10px; }
|
714 |
+
.premium-banner-animation13 .premium-banner-ib-title::after {
|
715 |
+
position: absolute;
|
716 |
+
content: "";
|
717 |
+
bottom: 0;
|
718 |
+
left: 0;
|
719 |
+
width: 100%;
|
720 |
+
height: 2px;
|
721 |
+
background: #fff;
|
722 |
+
-webkit-transition: -webkit-transform 0.35s;
|
723 |
+
transition: -webkit-transform 0.35s;
|
724 |
+
transition: transform 0.35s;
|
725 |
+
transition: transform 0.35s, -webkit-transform 0.35s;
|
726 |
+
-webkit-transform: translate3d(-101%, 0, 0);
|
727 |
+
transform: translate3d(-101%, 0, 0); }
|
728 |
+
|
729 |
+
.premium-banner-animation13:hover .premium-banner-ib-title::after,
|
730 |
+
.premium-banner-animation13.active .premium-banner-ib-title::after {
|
731 |
+
-webkit-transform: translate3d(0, 0, 0);
|
732 |
+
transform: translate3d(0, 0, 0); }
|
733 |
+
|
734 |
+
.premium-banner-animation13 .premium-banner-ib-content,
|
735 |
+
.premium-banner-animation13 .premium-banner-read-more {
|
736 |
+
padding: 15px 0;
|
737 |
+
opacity: 0;
|
738 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
739 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
740 |
+
transition: opacity 0.35s, transform 0.35s;
|
741 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
742 |
+
-webkit-transform: translate3d(100%, 0, 0);
|
743 |
+
transform: translate3d(100%, 0, 0); }
|
744 |
+
|
745 |
+
.premium-banner-animation13:hover .premium-banner-ib-content,
|
746 |
+
.premium-banner-animation13.active .premium-banner-ib-content,
|
747 |
+
.premium-banner-animation13:hover .premium-banner-read-more,
|
748 |
+
.premium-banner-animation13.active .premium-banner-read-more {
|
749 |
+
opacity: 1;
|
750 |
+
-webkit-transform: translate3d(0, 0, 0);
|
751 |
+
transform: translate3d(0, 0, 0); }
|
752 |
+
|
753 |
+
.premium-banner-ib.premium-banner-animation5 .premium-banner-toggle-size {
|
754 |
+
left: 50%;
|
755 |
+
width: auto !important;
|
756 |
+
height: 100%;
|
757 |
+
max-width: none;
|
758 |
+
-webkit-transform: translateX(-50%);
|
759 |
+
-ms-transform: translateX(-50%);
|
760 |
+
transform: translateX(-50%); }
|
761 |
+
|
762 |
+
.premium-banner-ib img {
|
763 |
+
border: none;
|
764 |
+
padding: 0;
|
765 |
+
margin: 0; }
|
766 |
+
|
767 |
+
.premium-banner-animation7 img {
|
768 |
+
width: -webkit-calc(100% + 40px) !important;
|
769 |
+
width: calc(100% + 40px) !important;
|
770 |
+
max-width: -webkit-calc(100% + 40px) !important;
|
771 |
+
max-width: calc(100% + 40px) !important;
|
772 |
+
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
773 |
+
transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
774 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s;
|
775 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
|
776 |
+
|
777 |
+
.premium-banner-animation7 .premium-banner-brlr {
|
778 |
+
width: 7px; }
|
779 |
+
|
780 |
+
.premium-banner-animation7 .premium-banner-brtb {
|
781 |
+
height: 7px; }
|
782 |
+
|
783 |
+
.premium-banner-animation7 .premium-banner-br {
|
784 |
+
position: absolute;
|
785 |
+
z-index: 1;
|
786 |
+
background-color: white;
|
787 |
+
-webkit-transition: all 0.3s ease-in-out;
|
788 |
+
transition: all 0.3s ease-in-out;
|
789 |
+
-webkit-transition-delay: 0.2s;
|
790 |
+
transition-delay: 0.2s; }
|
791 |
+
|
792 |
+
.premium-banner-animation7 .premium-banner-bleft {
|
793 |
+
left: 30px;
|
794 |
+
top: -webkit-calc(100% - 150px);
|
795 |
+
top: calc(100% - 150px);
|
796 |
+
height: 0; }
|
797 |
+
|
798 |
+
.premium-banner-animation7 .premium-banner-bright {
|
799 |
+
right: 30px;
|
800 |
+
bottom: -webkit-calc(100% - 150px);
|
801 |
+
bottom: calc(100% - 150px);
|
802 |
+
height: 0; }
|
803 |
+
|
804 |
+
.premium-banner-animation7 .premium-banner-bottom {
|
805 |
+
right: -webkit-calc(100% - 150px);
|
806 |
+
right: calc(100% - 150px);
|
807 |
+
bottom: 30px;
|
808 |
+
width: 0; }
|
809 |
+
|
810 |
+
.premium-banner-animation7 .premium-banner-btop {
|
811 |
+
left: -webkit-calc(100% - 150px);
|
812 |
+
left: calc(100% - 150px);
|
813 |
+
top: 30px;
|
814 |
+
width: 0; }
|
815 |
+
|
816 |
+
.premium-banner-animation7 .premium-banner-ib-desc {
|
817 |
+
padding: 70px;
|
818 |
+
display: table; }
|
819 |
+
.premium-banner-animation7 .premium-banner-ib-desc .premium-banner-desc-centered {
|
820 |
+
display: table-cell;
|
821 |
+
vertical-align: middle; }
|
822 |
+
|
823 |
+
.premium-banner-animation7 .premium-banner-ib-title {
|
824 |
+
margin-top: 0; }
|
825 |
+
|
826 |
+
.premium-banner-animation7 .premium-banner-ib-title,
|
827 |
+
.premium-banner-animation7 img {
|
828 |
+
-webkit-transform: translate3d(-30px, 0, 0);
|
829 |
+
transform: translate3d(-30px, 0, 0); }
|
830 |
+
|
831 |
+
.premium-banner-animation7.zoomout img,
|
832 |
+
.premium-banner-animation7.scale img {
|
833 |
+
-webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
|
834 |
+
transform: translate3d(-30px, 0, 0) scale(1.1); }
|
835 |
+
|
836 |
+
.premium-banner-animation7 .premium-banner-ib-content,
|
837 |
+
.premium-banner-animation7 .premium-banner-read-more {
|
838 |
+
margin-top: 10px; }
|
839 |
+
|
840 |
+
.premium-banner-animation7 .premium-banner-ib-desc::after, .premium-banner-animation7 .premium-banner-ib-desc::before {
|
841 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
842 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
843 |
+
transition: opacity 0.35s, transform 0.35s;
|
844 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
|
845 |
+
|
846 |
+
.premium-banner-animation7 .premium-banner-ib-title,
|
847 |
+
.premium-banner-animation7 .premium-banner-ib-content,
|
848 |
+
.premium-banner-animation7 .premium-banner-read-more {
|
849 |
+
opacity: 0;
|
850 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
851 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
852 |
+
transition: opacity 0.35s, transform 0.35s;
|
853 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
|
854 |
+
|
855 |
+
.premium-banner-animation7:hover .premium-banner-ib-content,
|
856 |
+
.premium-banner-animation7.active .premium-banner-ib-content,
|
857 |
+
.premium-banner-animation7:hover .premium-banner-read-more,
|
858 |
+
.premium-banner-animation7.active .premium-banner-read-more,
|
859 |
+
.premium-banner-animation7:hover .premium-banner-ib-title,
|
860 |
+
.premium-banner-animation7.active .premium-banner-ib-title {
|
861 |
+
opacity: 1;
|
862 |
+
-webkit-transform: translate3d(0, 0, 0);
|
863 |
+
transform: translate3d(0, 0, 0); }
|
864 |
+
|
865 |
+
.premium-banner-animation7:hover .premium-banner-bleft, .premium-banner-animation7.active .premium-banner-bleft {
|
866 |
+
top: 30px;
|
867 |
+
height: 70px; }
|
868 |
+
|
869 |
+
.premium-banner-animation7:hover .premium-banner-bright, .premium-banner-animation7.active .premium-banner-bright {
|
870 |
+
bottom: 30px;
|
871 |
+
height: 70px; }
|
872 |
+
|
873 |
+
.premium-banner-animation7:hover .premium-banner-bottom, .premium-banner-animation7.active .premium-banner-bottom {
|
874 |
+
right: 30px;
|
875 |
+
width: 70px; }
|
876 |
+
|
877 |
+
.premium-banner-animation7:hover .premium-banner-btop, .premium-banner-animation7.active .premium-banner-btop {
|
878 |
+
left: 30px;
|
879 |
+
width: 70px; }
|
880 |
+
|
881 |
+
.premium-banner-animation7:hover .premium-banner-ib-content,
|
882 |
+
.premium-banner-animation7:hover .premium-banner-read-more,
|
883 |
+
.premium-banner-animation7:hover .premium-banner-ib-title,
|
884 |
+
.premium-banner-animation7:hover img {
|
885 |
+
-webkit-transition-delay: 0.15s;
|
886 |
+
transition-delay: 0.15s; }
|
887 |
+
|
888 |
+
.premium-banner-animation8 img {
|
889 |
+
width: -webkit-calc(100% + 40px) !important;
|
890 |
+
width: calc(100% + 40px) !important;
|
891 |
+
max-width: -webkit-calc(100% + 40px) !important;
|
892 |
+
max-width: calc(100% + 40px) !important;
|
893 |
+
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
894 |
+
transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
895 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s;
|
896 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
|
897 |
+
|
898 |
+
.premium-banner-animation8 .premium-banner-brlr {
|
899 |
+
width: 7px; }
|
900 |
+
|
901 |
+
.premium-banner-animation8 .premium-banner-brtb {
|
902 |
+
height: 7px; }
|
903 |
+
|
904 |
+
.premium-banner-animation8 .premium-banner-br {
|
905 |
+
position: absolute;
|
906 |
+
z-index: 1;
|
907 |
+
background-color: white;
|
908 |
+
-webkit-transition: all 0.3s ease-in-out;
|
909 |
+
transition: all 0.3s ease-in-out;
|
910 |
+
-webkit-transition-delay: 0.2s;
|
911 |
+
transition-delay: 0.2s; }
|
912 |
+
|
913 |
+
.premium-banner-animation8 .premium-banner-bleft {
|
914 |
+
left: 30px;
|
915 |
+
top: 50%;
|
916 |
+
-webkit-transform: translateY(-50%);
|
917 |
+
-ms-transform: translateY(-50%);
|
918 |
+
transform: translateY(-50%);
|
919 |
+
height: 0; }
|
920 |
+
|
921 |
+
.premium-banner-animation8 .premium-banner-bright {
|
922 |
+
right: 30px;
|
923 |
+
top: 50%;
|
924 |
+
-webkit-transform: translateY(-50%);
|
925 |
+
-ms-transform: translateY(-50%);
|
926 |
+
transform: translateY(-50%);
|
927 |
+
height: 0; }
|
928 |
+
|
929 |
+
.premium-banner-animation8 .premium-banner-bottom {
|
930 |
+
left: 50%;
|
931 |
+
-webkit-transform: translateX(-50%);
|
932 |
+
-ms-transform: translateX(-50%);
|
933 |
+
transform: translateX(-50%);
|
934 |
+
bottom: 30px;
|
935 |
+
width: 0; }
|
936 |
+
|
937 |
+
.premium-banner-animation8 .premium-banner-btop {
|
938 |
+
left: 50%;
|
939 |
+
-webkit-transform: translateX(-50%);
|
940 |
+
-ms-transform: translateX(-50%);
|
941 |
+
transform: translateX(-50%);
|
942 |
+
top: 30px;
|
943 |
+
width: 0; }
|
944 |
+
|
945 |
+
.premium-banner-animation8 .premium-banner-ib-desc {
|
946 |
+
padding: 70px;
|
947 |
+
display: table; }
|
948 |
+
.premium-banner-animation8 .premium-banner-ib-desc .premium-banner-desc-centered {
|
949 |
+
display: table-cell;
|
950 |
+
vertical-align: middle; }
|
951 |
+
|
952 |
+
.premium-banner-animation8 .premium-banner-ib-title {
|
953 |
+
margin-top: 0; }
|
954 |
+
|
955 |
+
.premium-banner-animation8 .premium-banner-ib-title,
|
956 |
+
.premium-banner-animation8 img {
|
957 |
+
-webkit-transform: translate3d(-30px, 0, 0);
|
958 |
+
transform: translate3d(-30px, 0, 0); }
|
959 |
+
|
960 |
+
.premium-banner-animation8.zoomout img,
|
961 |
+
.premium-banner-animation8.scale img {
|
962 |
+
-webkit-transform: translate3d(-30px, 0, 0) scale(1.1);
|
963 |
+
transform: translate3d(-30px, 0, 0) scale(1.1); }
|
964 |
+
|
965 |
+
.premium-banner-animation8 .premium-banner-ib-content,
|
966 |
+
.premium-banner-animation8 .premium-banner-read-more {
|
967 |
+
margin-top: 10px; }
|
968 |
+
|
969 |
+
.premium-banner-animation8 .premium-banner-ib-desc::after, .premium-banner-animation8 .premium-banner-ib-desc::before {
|
970 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
971 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
972 |
+
transition: opacity 0.35s, transform 0.35s;
|
973 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
|
974 |
+
|
975 |
+
.premium-banner-animation8 .premium-banner-ib-title,
|
976 |
+
.premium-banner-animation8 .premium-banner-ib-content,
|
977 |
+
.premium-banner-animation8 .premium-banner-read-more {
|
978 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
979 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
980 |
+
transition: opacity 0.35s, transform 0.35s;
|
981 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
982 |
+
opacity: 0; }
|
983 |
+
|
984 |
+
.premium-banner-animation8:hover .premium-banner-ib-content,
|
985 |
+
.premium-banner-animation8.active .premium-banner-ib-content,
|
986 |
+
.premium-banner-animation8:hover .premium-banner-read-more,
|
987 |
+
.premium-banner-animation8.active .premium-banner-read-more,
|
988 |
+
.premium-banner-animation8:hover .premium-banner-ib-title,
|
989 |
+
.premium-banner-animation8.active .premium-banner-ib-title {
|
990 |
+
opacity: 1;
|
991 |
+
-webkit-transform: translate3d(0, 0, 0);
|
992 |
+
transform: translate3d(0, 0, 0); }
|
993 |
+
|
994 |
+
.premium-banner-animation8:hover .premium-banner-bleft, .premium-banner-animation8.active .premium-banner-bleft {
|
995 |
+
height: -webkit-calc(100% - 61px);
|
996 |
+
height: calc(100% - 61px); }
|
997 |
+
|
998 |
+
.premium-banner-animation8:hover .premium-banner-bright, .premium-banner-animation8.active .premium-banner-bright {
|
999 |
+
height: -webkit-calc(100% - 61px);
|
1000 |
+
height: calc(100% - 61px); }
|
1001 |
+
|
1002 |
+
.premium-banner-animation8:hover .premium-banner-bottom, .premium-banner-animation8.active .premium-banner-bottom {
|
1003 |
+
width: -webkit-calc(100% - 61px);
|
1004 |
+
width: calc(100% - 61px); }
|
1005 |
+
|
1006 |
+
.premium-banner-animation8:hover .premium-banner-btop, .premium-banner-animation8.active .premium-banner-btop {
|
1007 |
+
width: -webkit-calc(100% - 61px);
|
1008 |
+
width: calc(100% - 61px); }
|
1009 |
+
|
1010 |
+
.premium-banner-animation8:hover .premium-banner-ib-content,
|
1011 |
+
.premium-banner-animation8:hover .premium-banner-ib-title,
|
1012 |
+
.premium-banner-animation8:hover .premium-banner-read-more,
|
1013 |
+
.premium-banner-animation8:hover img {
|
1014 |
+
-webkit-transition-delay: 0.15s;
|
1015 |
+
transition-delay: 0.15s; }
|
1016 |
+
|
1017 |
+
.premium-banner-animation9 img {
|
1018 |
+
width: -webkit-calc(100% + 20px) !important;
|
1019 |
+
width: calc(100% + 20px) !important;
|
1020 |
+
max-width: -webkit-calc(100% + 20px) !important;
|
1021 |
+
max-width: calc(100% + 20px) !important;
|
1022 |
+
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
1023 |
+
transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
1024 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s;
|
1025 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
1026 |
+
-webkit-transform: scale(1.2);
|
1027 |
+
-ms-transform: scale(1.2);
|
1028 |
+
transform: scale(1.2); }
|
1029 |
+
|
1030 |
+
.premium-banner-animation9 .premium-banner-ib-desc {
|
1031 |
+
width: 100%;
|
1032 |
+
height: 100%; }
|
1033 |
+
.premium-banner-animation9 .premium-banner-ib-desc::before {
|
1034 |
+
position: absolute;
|
1035 |
+
top: 50%;
|
1036 |
+
left: 50%;
|
1037 |
+
width: 80%;
|
1038 |
+
height: 1px;
|
1039 |
+
background: #fff;
|
1040 |
+
content: "";
|
1041 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
1042 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
1043 |
+
transition: opacity 0.35s, transform 0.35s;
|
1044 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
1045 |
+
-webkit-transform: translate3d(-50%, -50%, 0);
|
1046 |
+
transform: translate3d(-50%, -50%, 0); }
|
1047 |
+
.premium-banner-animation9 .premium-banner-ib-desc::after {
|
1048 |
+
position: absolute;
|
1049 |
+
top: 50%;
|
1050 |
+
left: 50%;
|
1051 |
+
width: 80%;
|
1052 |
+
height: 1px;
|
1053 |
+
background: #fff;
|
1054 |
+
content: "";
|
1055 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
1056 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
1057 |
+
transition: opacity 0.35s, transform 0.35s;
|
1058 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
1059 |
+
-webkit-transform: translate3d(-50%, -50%, 0);
|
1060 |
+
transform: translate3d(-50%, -50%, 0); }
|
1061 |
+
|
1062 |
+
.premium-banner-animation9 .premium-banner-ib-title {
|
1063 |
+
position: absolute;
|
1064 |
+
top: 50%;
|
1065 |
+
left: 0;
|
1066 |
+
width: 100%;
|
1067 |
+
-webkit-transition: -webkit-transform 0.35s;
|
1068 |
+
transition: -webkit-transform 0.35s;
|
1069 |
+
transition: transform 0.35s;
|
1070 |
+
transition: transform 0.35s, -webkit-transform 0.35s;
|
1071 |
+
-webkit-transform: translate3d(0, -70px, 0);
|
1072 |
+
transform: translate3d(0, -70px, 0);
|
1073 |
+
margin-top: 0;
|
1074 |
+
padding: 0 10%; }
|
1075 |
+
|
1076 |
+
.premium-banner-animation9:hover .premium-banner-ib-title,
|
1077 |
+
.premium-banner-animation9.active .premium-banner-ib-title {
|
1078 |
+
-webkit-transform: translate3d(0, -80px, 0);
|
1079 |
+
transform: translate3d(0, -80px, 0); }
|
1080 |
+
|
1081 |
+
.premium-banner-animation9 .premium-banner-ib-content,
|
1082 |
+
.premium-banner-animation9 .premium-banner-read-more {
|
1083 |
+
position: absolute;
|
1084 |
+
top: 50%;
|
1085 |
+
left: 0;
|
1086 |
+
width: 100%;
|
1087 |
+
-webkit-transition: -webkit-transform 0.35s;
|
1088 |
+
transition: -webkit-transform 0.35s;
|
1089 |
+
transition: transform 0.35s;
|
1090 |
+
transition: transform 0.35s, -webkit-transform 0.35s;
|
1091 |
+
padding: 0 10%;
|
1092 |
+
-webkit-transform: translate3d(0, 35px, 0);
|
1093 |
+
transform: translate3d(0, 35px, 0); }
|
1094 |
+
|
1095 |
+
.premium-banner-animation9 .premium-banner-read-more {
|
1096 |
+
top: 75%; }
|
1097 |
+
|
1098 |
+
.premium-banner-animation9:hover .premium-banner-ib-content,
|
1099 |
+
.premium-banner-animation9.active .premium-banner-ib-content,
|
1100 |
+
.premium-banner-animation9:hover .premium-banner-read-more,
|
1101 |
+
.premium-banner-animation9.active .premium-banner-read-more {
|
1102 |
+
-webkit-transform: translate3d(0, 45px, 0);
|
1103 |
+
transform: translate3d(0, 45px, 0); }
|
1104 |
+
|
1105 |
+
.premium-banner-animation9:hover .premium-banner-ib-desc::before,
|
1106 |
+
.premium-banner-animation9.active .premium-banner-ib-desc::before {
|
1107 |
+
opacity: 0.5;
|
1108 |
+
-webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
|
1109 |
+
transform: translate3d(-50%, -50%, 0) rotate(45deg); }
|
1110 |
+
|
1111 |
+
.premium-banner-animation9:hover .premium-banner-ib-desc::after,
|
1112 |
+
.premium-banner-animation9.active .premium-banner-ib-desc::after {
|
1113 |
+
opacity: 0.5;
|
1114 |
+
-webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
|
1115 |
+
transform: translate3d(-50%, -50%, 0) rotate(-45deg); }
|
1116 |
+
|
1117 |
+
.premium-banner-animation9:hover img {
|
1118 |
+
-webkit-transform: scale(1);
|
1119 |
+
-ms-transform: scale(1);
|
1120 |
+
transform: scale(1); }
|
1121 |
+
|
1122 |
+
.premium-banner-animation10 img {
|
1123 |
+
width: -webkit-calc(100% + 20px) !important;
|
1124 |
+
width: calc(100% + 20px) !important;
|
1125 |
+
max-width: -webkit-calc(100% + 20px) !important;
|
1126 |
+
max-width: calc(100% + 20px) !important;
|
1127 |
+
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
1128 |
+
transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
1129 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s;
|
1130 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
|
1131 |
+
|
1132 |
+
.premium-banner-animation10 .premium-banner-ib-title {
|
1133 |
+
position: relative;
|
1134 |
+
overflow: hidden;
|
1135 |
+
padding: 5px 0 15px;
|
1136 |
+
-webkit-transition: -webkit-transform 0.35s;
|
1137 |
+
transition: -webkit-transform 0.35s;
|
1138 |
+
transition: transform 0.35s;
|
1139 |
+
transition: transform 0.35s, -webkit-transform 0.35s;
|
1140 |
+
-webkit-transform: translate3d(0, 20px, 0);
|
1141 |
+
transform: translate3d(0, 20px, 0);
|
1142 |
+
margin-bottom: 0; }
|
1143 |
+
.premium-banner-animation10 .premium-banner-ib-title::after {
|
1144 |
+
position: absolute;
|
1145 |
+
content: "";
|
1146 |
+
bottom: 0;
|
1147 |
+
left: 0;
|
1148 |
+
width: 100%;
|
1149 |
+
height: 3px;
|
1150 |
+
background: #fff;
|
1151 |
+
opacity: 0;
|
1152 |
+
-webkit-transform: translate3d(0, 100%, 0);
|
1153 |
+
transform: translate3d(0, 100%, 0);
|
1154 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
1155 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
1156 |
+
transition: opacity 0.35s, transform 0.35s;
|
1157 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s; }
|
1158 |
+
|
1159 |
+
.premium-banner-animation10:hover .premium-banner-ib-title,
|
1160 |
+
.premium-banner-animation10.active .premium-banner-ib-title {
|
1161 |
+
-webkit-transform: translate3d(0, 0, 0);
|
1162 |
+
transform: translate3d(0, 0, 0); }
|
1163 |
+
|
1164 |
+
.premium-banner-animation10:hover .premium-banner-ib-title::after,
|
1165 |
+
.premium-banner-animation10.active .premium-banner-ib-title::after {
|
1166 |
+
opacity: 1;
|
1167 |
+
-webkit-transform: translate3d(0, 0, 0);
|
1168 |
+
transform: translate3d(0, 0, 0); }
|
1169 |
+
|
1170 |
+
.premium-banner-animation10.zoomout img,
|
1171 |
+
.premium-banner-animation10.scale img {
|
1172 |
+
-webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
|
1173 |
+
transform: translate3d(-10px, 0, 0) scale(1.1); }
|
1174 |
+
|
1175 |
+
.premium-banner-animation10 .premium-banner-ib-content,
|
1176 |
+
.premium-banner-animation10 .premium-banner-read-more {
|
1177 |
+
padding-top: 15px;
|
1178 |
+
opacity: 0;
|
1179 |
+
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
1180 |
+
transition: opacity 0.35s, -webkit-transform 0.35s;
|
1181 |
+
transition: opacity 0.35s, transform 0.35s;
|
1182 |
+
transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
|
1183 |
+
-webkit-transform: translate3d(0, 100%, 0);
|
1184 |
+
transform: translate3d(0, 100%, 0); }
|
1185 |
+
|
1186 |
+
.premium-banner-animation10 .premium-banner-read-more {
|
1187 |
+
padding: 0; }
|
1188 |
+
|
1189 |
+
.premium-banner-animation10:hover .premium-banner-ib-content,
|
1190 |
+
.premium-banner-animation10.active .premium-banner-ib-content,
|
1191 |
+
.premium-banner-animation10:hover .premium-banner-read-more,
|
1192 |
+
.premium-banner-animation10.active .premium-banner-read-more {
|
1193 |
+
opacity: 1;
|
1194 |
+
-webkit-transform: translate3d(0, 0, 0);
|
1195 |
+
transform: translate3d(0, 0, 0); }
|
1196 |
+
|
1197 |
+
.premium-banner-animation11 {
|
1198 |
+
-webkit-transition: -webkit-transform 1s ease-out;
|
1199 |
+
transition: -webkit-transform 1s ease-out;
|
1200 |
+
transition: transform 1s ease-out;
|
1201 |
+
transition: transform 1s ease-out, -webkit-transform 1s ease-out;
|
1202 |
+
-webkit-transition-delay: 0.125s;
|
1203 |
+
transition-delay: 0.125s; }
|
1204 |
+
.premium-banner-animation11 .premium-banner-ib-desc {
|
1205 |
+
position: absolute;
|
1206 |
+
z-index: 5;
|
1207 |
+
-webkit-transform: translate3d(-30px, 0, 0);
|
1208 |
+
transform: translate3d(-30px, 0, 0);
|
1209 |
+
opacity: 0;
|
1210 |
+
top: auto;
|
1211 |
+
bottom: 0;
|
1212 |
+
min-height: 25%;
|
1213 |
+
height: auto;
|
1214 |
+
max-height: 100%;
|
1215 |
+
text-align: left;
|
1216 |
+
padding: 30px;
|
1217 |
+
-webkit-transition: all 0.6s ease-out;
|
1218 |
+
transition: all 0.6s ease-out; }
|
1219 |
+
.premium-banner-animation11 img {
|
1220 |
+
width: 100%;
|
1221 |
+
-webkit-transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
1222 |
+
transition: opacity 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s;
|
1223 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s;
|
1224 |
+
transition: opacity 0.35s, filter 0.35s, transform 0.35s, -webkit-filter 0.35s, -webkit-transform 0.35s; }
|
1225 |
+
.premium-banner-animation11 .premium-banner-ib-title {
|
1226 |
+
margin-bottom: 10px; }
|
1227 |
+
.premium-banner-animation11 .premium-banner-gradient {
|
1228 |
+
position: absolute;
|
1229 |
+
left: 0;
|
1230 |
+
top: 0;
|
1231 |
+
right: 0;
|
1232 |
+
bottom: 0; }
|
1233 |
+
.premium-banner-animation11 .premium-banner-gradient:after,
|
1234 |
+
.premium-banner-animation11 .premium-banner-gradient:before {
|
1235 |
+
position: absolute;
|
1236 |
+
content: "";
|
1237 |
+
left: 0;
|
1238 |
+
top: 0;
|
1239 |
+
right: 0;
|
1240 |
+
bottom: 0;
|
1241 |
+
-webkit-transform: translate3d(-100%, 0, 0);
|
1242 |
+
transform: translate3d(-100%, 0, 0);
|
1243 |
+
background-image: -webkit-linear-gradient(40deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
|
1244 |
+
background-image: linear-gradient(50deg, rgba(84, 89, 95, 0.5) 27.89%, #6ec1e4 72.11%);
|
1245 |
+
z-index: 2; }
|
1246 |
+
.premium-banner-animation11 .premium-banner-gradient:before {
|
1247 |
+
mix-blend-mode: color; }
|
1248 |
+
.premium-banner-animation11 .premium-banner-gradient:after {
|
1249 |
+
mix-blend-mode: multiply; }
|
1250 |
+
.premium-banner-animation11:hover .premium-banner-ib-desc,
|
1251 |
+
.premium-banner-animation11.active .premium-banner-ib-desc {
|
1252 |
+
opacity: 1;
|
1253 |
+
-webkit-transform: translate3d(0, 0, 0);
|
1254 |
+
transform: translate3d(0, 0, 0); }
|
1255 |
+
.premium-banner-animation11:hover .premium-banner-gradient:after,
|
1256 |
+
.premium-banner-animation11:hover .premium-banner-gradient:before,
|
1257 |
+
.premium-banner-animation11.active .premium-banner-gradient:after,
|
1258 |
+
.premium-banner-animation11.active .premium-banner-gradient:before {
|
1259 |
+
-webkit-transform: translate3d(0, 0, 0);
|
1260 |
+
transform: translate3d(0, 0, 0); }
|
1261 |
+
.premium-banner-animation11.zoomout img,
|
1262 |
+
.premium-banner-animation11.scale img {
|
1263 |
+
-webkit-transform: translate3d(-10px, 0, 0) scale(1.1);
|
1264 |
+
transform: translate3d(-10px, 0, 0) scale(1.1); }
|
1265 |
+
|
1266 |
+
/**************** Premium CountDown *************/
|
1267 |
+
/************************************************/
|
1268 |
+
.premium-countdown {
|
1269 |
+
-js-display: flex;
|
1270 |
+
display: -webkit-box;
|
1271 |
+
display: -webkit-flex;
|
1272 |
+
display: -moz-box;
|
1273 |
+
display: -ms-flexbox;
|
1274 |
+
display: flex;
|
1275 |
+
text-align: center; }
|
1276 |
+
|
1277 |
+
.countdown-row {
|
1278 |
+
display: block;
|
1279 |
+
text-align: center; }
|
1280 |
+
|
1281 |
+
.countdown .countdown-section {
|
1282 |
+
display: inline-block;
|
1283 |
+
max-width: 100%;
|
1284 |
+
margin-bottom: 15px;
|
1285 |
+
-js-display: inline-flex;
|
1286 |
+
display: -webkit-inline-box;
|
1287 |
+
display: -webkit-inline-flex;
|
1288 |
+
display: -moz-inline-box;
|
1289 |
+
display: -ms-inline-flexbox;
|
1290 |
+
display: inline-flex;
|
1291 |
+
-webkit-box-align: center;
|
1292 |
+
-webkit-align-items: center;
|
1293 |
+
-moz-box-align: center;
|
1294 |
+
-ms-flex-align: center;
|
1295 |
+
align-items: center; }
|
1296 |
+
.countdown .countdown-section:last-child {
|
1297 |
+
margin-right: 0; }
|
1298 |
+
|
1299 |
+
.countdown span.countdown-amount {
|
1300 |
+
font-size: 70px;
|
1301 |
+
line-height: 1;
|
1302 |
+
padding: 40px; }
|
1303 |
+
|
1304 |
+
.countdown .pre_time-mid {
|
1305 |
+
display: block; }
|
1306 |
+
|
1307 |
+
.premium-countdown-separator-yes .countdown_separator {
|
1308 |
+
display: block;
|
1309 |
+
margin: 0 50px;
|
1310 |
+
font-size: 30px; }
|
1311 |
+
|
1312 |
+
.premium-countdown-separator-yes .countdown-row .countdown-section:last-child .countdown_separator,
|
1313 |
+
.premium-countdown-separator-yes .premium-countdown-block:last-child .countdown_separator {
|
1314 |
+
display: none; }
|
1315 |
+
|
1316 |
+
/**
|
1317 |
+
* Digit and unit styles
|
1318 |
+
*/
|
1319 |
+
.side .countdown-section .countdown-period {
|
1320 |
+
vertical-align: bottom; }
|
1321 |
+
|
1322 |
+
.countdown .countdown-section .countdown-period {
|
1323 |
+
font-size: 17px;
|
1324 |
+
line-height: 3em; }
|
1325 |
+
|
1326 |
+
.side .countdown-section .countdown-amount,
|
1327 |
+
.side .countdown-section .countdown-period {
|
1328 |
+
display: inline-block; }
|
1329 |
+
|
1330 |
+
.side .countdown-section .countdown-amount {
|
1331 |
+
margin-right: 5px; }
|
1332 |
+
|
1333 |
+
.down .countdown-section .countdown-amount,
|
1334 |
+
.down .countdown-section .countdown-period {
|
1335 |
+
display: block; }
|
1336 |
+
|
1337 |
+
/**
|
1338 |
+
* Flip Layout
|
1339 |
+
*/
|
1340 |
+
.premium-countdown-flip .premium-countdown-block {
|
1341 |
+
text-align: center;
|
1342 |
+
-js-display: inline-flex;
|
1343 |
+
display: -webkit-inline-box;
|
1344 |
+
display: -webkit-inline-flex;
|
1345 |
+
display: -moz-inline-box;
|
1346 |
+
display: -ms-inline-flexbox;
|
1347 |
+
display: inline-flex;
|
1348 |
+
-webkit-box-align: center;
|
1349 |
+
-webkit-align-items: center;
|
1350 |
+
-moz-box-align: center;
|
1351 |
+
-ms-flex-align: center;
|
1352 |
+
align-items: center; }
|
1353 |
+
.premium-countdown-flip .premium-countdown-block:last-child {
|
1354 |
+
margin-right: 0; }
|
1355 |
+
|
1356 |
+
.premium-countdown-flip .premium-countdown-label {
|
1357 |
+
overflow: hidden;
|
1358 |
+
color: #1a1a1a;
|
1359 |
+
text-transform: uppercase; }
|
1360 |
+
|
1361 |
+
.premium-countdown-flip .premium-countdown-figure {
|
1362 |
+
position: relative;
|
1363 |
+
height: 110px;
|
1364 |
+
width: 100px;
|
1365 |
+
line-height: 107px;
|
1366 |
+
background-color: #fff;
|
1367 |
+
-webkit-border-radius: 10px;
|
1368 |
+
border-radius: 10px;
|
1369 |
+
-webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
|
1370 |
+
box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08); }
|
1371 |
+
.premium-countdown-flip .premium-countdown-figure:last-child {
|
1372 |
+
margin-right: 0; }
|
1373 |
+
.premium-countdown-flip .premium-countdown-figure > span {
|
1374 |
+
position: absolute;
|
1375 |
+
left: 0;
|
1376 |
+
right: 0;
|
1377 |
+
margin: auto;
|
1378 |
+
font-weight: 700; }
|
1379 |
+
.premium-countdown-flip .premium-countdown-figure .top {
|
1380 |
+
z-index: 3;
|
1381 |
+
-webkit-transform-origin: 50% 100%;
|
1382 |
+
-ms-transform-origin: 50% 100%;
|
1383 |
+
transform-origin: 50% 100%;
|
1384 |
+
-webkit-transform: perspective(200px);
|
1385 |
+
transform: perspective(200px);
|
1386 |
+
-webkit-backface-visibility: hidden;
|
1387 |
+
backface-visibility: hidden; }
|
1388 |
+
.premium-countdown-flip .premium-countdown-figure .bottom {
|
1389 |
+
z-index: 1; }
|
1390 |
+
.premium-countdown-flip .premium-countdown-figure .bottom::before {
|
1391 |
+
content: "";
|
1392 |
+
position: absolute;
|
1393 |
+
display: block;
|
1394 |
+
top: 0;
|
1395 |
+
left: 0;
|
1396 |
+
width: 100%;
|
1397 |
+
height: 50%;
|
1398 |
+
background-color: rgba(0, 0, 0, 0.02); }
|
1399 |
+
.premium-countdown-flip .premium-countdown-figure .top-back {
|
1400 |
+
-webkit-backface-visibility: hidden;
|
1401 |
+
backface-visibility: hidden;
|
1402 |
+
z-index: 4;
|
1403 |
+
bottom: 0;
|
1404 |
+
-webkit-transform-origin: 50% 0;
|
1405 |
+
-ms-transform-origin: 50% 0;
|
1406 |
+
transform-origin: 50% 0;
|
1407 |
+
-webkit-transform: perspective(200px) rotateX(180deg);
|
1408 |
+
transform: perspective(200px) rotateX(180deg); }
|
1409 |
+
.premium-countdown-flip .premium-countdown-figure .top-back span {
|
1410 |
+
position: absolute;
|
1411 |
+
top: -100%;
|
1412 |
+
left: 0;
|
1413 |
+
right: 0;
|
1414 |
+
margin: auto; }
|
1415 |
+
.premium-countdown-flip .premium-countdown-figure .bottom-back {
|
1416 |
+
z-index: 2;
|
1417 |
+
top: 0; }
|
1418 |
+
.premium-countdown-flip .premium-countdown-figure .bottom-back span {
|
1419 |
+
position: absolute;
|
1420 |
+
top: 0;
|
1421 |
+
left: 0;
|
1422 |
+
right: 0;
|
1423 |
+
margin: auto; }
|
1424 |
+
.premium-countdown-flip .premium-countdown-figure .top,
|
1425 |
+
.premium-countdown-flip .premium-countdown-figure .bottom-back,
|
1426 |
+
.premium-countdown-flip .premium-countdown-figure .top-back {
|
1427 |
+
height: 50%;
|
1428 |
+
overflow: hidden;
|
1429 |
+
background-color: #f7f7f7;
|
1430 |
+
-webkit-border-top-left-radius: 10px;
|
1431 |
+
border-top-left-radius: 10px;
|
1432 |
+
-webkit-border-top-right-radius: 10px;
|
1433 |
+
border-top-right-radius: 10px; }
|
1434 |
+
.premium-countdown-flip .premium-countdown-figure .top-back {
|
1435 |
+
-webkit-border-bottom-left-radius: 10px;
|
1436 |
+
border-bottom-left-radius: 10px;
|
1437 |
+
-webkit-border-bottom-right-radius: 10px;
|
1438 |
+
border-bottom-right-radius: 10px; }
|
1439 |
+
.premium-countdown-flip .premium-countdown-figure .top::after,
|
1440 |
+
.premium-countdown-flip .premium-countdown-figure .bottom-back::after {
|
1441 |
+
content: "";
|
1442 |
+
position: absolute;
|
1443 |
+
z-index: -1;
|
1444 |
+
left: 0;
|
1445 |
+
bottom: 0;
|
1446 |
+
width: 100%;
|
1447 |
+
height: 100%;
|
1448 |
+
border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
|
1449 |
+
|
1450 |
+
.side .premium-countdown-figure,
|
1451 |
+
.side .premium-countdown-label {
|
1452 |
+
display: inline-block; }
|
1453 |
+
|
1454 |
+
.side .premium-countdown-figure {
|
1455 |
+
margin-right: 5px; }
|
1456 |
+
|
1457 |
+
.down .premium-countdown-figure,
|
1458 |
+
.down .premium-countdown-label {
|
1459 |
+
display: block; }
|
1460 |
+
|
1461 |
+
.down .premium-countdown-label {
|
1462 |
+
width: 100%; }
|
1463 |
+
|
1464 |
+
/**************** Premium Carousel ****************/
|
1465 |
+
/**************************************************/
|
1466 |
+
.premium-carousel-wrapper a.carousel-arrow, .premium-carousel-wrapper a.ver-carousel-arrow {
|
1467 |
+
-js-display: flex;
|
1468 |
+
display: -webkit-box;
|
1469 |
+
display: -webkit-flex;
|
1470 |
+
display: -moz-box;
|
1471 |
+
display: -ms-flexbox;
|
1472 |
+
display: flex;
|
1473 |
+
-webkit-box-align: center;
|
1474 |
+
-webkit-align-items: center;
|
1475 |
+
-moz-box-align: center;
|
1476 |
+
-ms-flex-align: center;
|
1477 |
+
align-items: center;
|
1478 |
+
-webkit-box-pack: center;
|
1479 |
+
-webkit-justify-content: center;
|
1480 |
+
-moz-box-pack: center;
|
1481 |
+
-ms-flex-pack: center;
|
1482 |
+
justify-content: center;
|
1483 |
+
width: 2em;
|
1484 |
+
height: 2em;
|
1485 |
+
line-height: 0;
|
1486 |
+
text-align: center;
|
1487 |
+
position: absolute;
|
1488 |
+
z-index: 99;
|
1489 |
+
cursor: pointer;
|
1490 |
+
-webkit-transition: all 0.3s ease-in-out;
|
1491 |
+
transition: all 0.3s ease-in-out;
|
1492 |
+
-webkit-appearance: inherit;
|
1493 |
+
border: none;
|
1494 |
+
-webkit-box-shadow: none;
|
1495 |
+
box-shadow: none; }
|
1496 |
+
|
1497 |
+
.premium-tabs-nav-list a.carousel-arrow,
|
1498 |
+
.premium-fb-rev-container a.carousel-arrow,
|
1499 |
+
.premium-blog-wrap a.carousel-arrow,
|
1500 |
+
.premium-hscroll-wrap a.carousel-arrow,
|
1501 |
+
.premium-twitter-feed-wrapper a.carousel-arrow,
|
1502 |
+
.premium-facebook-feed-wrapper a.carousel-arrow,
|
1503 |
+
.premium-instafeed-container a.carousel-arrow,
|
1504 |
+
.premium-persons-container a.carousel-arrow {
|
1505 |
+
-js-display: flex;
|
1506 |
+
display: -webkit-box;
|
1507 |
+
display: -webkit-flex;
|
1508 |
+
display: -moz-box;
|
1509 |
+
display: -ms-flexbox;
|
1510 |
+
display: flex;
|
1511 |
+
-webkit-box-align: center;
|
1512 |
+
-webkit-align-items: center;
|
1513 |
+
-moz-box-align: center;
|
1514 |
+
-ms-flex-align: center;
|
1515 |
+
align-items: center;
|
1516 |
+
-webkit-box-pack: center;
|
1517 |
+
-webkit-justify-content: center;
|
1518 |
+
-moz-box-pack: center;
|
1519 |
+
-ms-flex-pack: center;
|
1520 |
+
justify-content: center;
|
1521 |
+
width: 2em;
|
1522 |
+
height: 2em;
|
1523 |
+
line-height: 0;
|
1524 |
+
text-align: center;
|
1525 |
+
position: absolute;
|
1526 |
+
z-index: 99;
|
1527 |
+
cursor: pointer;
|
1528 |
+
-webkit-transition: all 0.3s ease-in-out;
|
1529 |
+
transition: all 0.3s ease-in-out;
|
1530 |
+
-webkit-appearance: inherit;
|
1531 |
+
border: none;
|
1532 |
+
-webkit-box-shadow: none;
|
1533 |
+
box-shadow: none; }
|
1534 |
+
|
1535 |
+
div[class^="premium-"] .slick-arrow i {
|
1536 |
+
display: block; }
|
1537 |
+
|
1538 |
+
.ver-carousel-arrow.carousel-next i {
|
1539 |
+
margin-bottom: -3px; }
|
1540 |
+
|
1541 |
+
.premium-carousel-wrapper a.slick-arrow:hover {
|
1542 |
+
-webkit-box-shadow: none !important;
|
1543 |
+
box-shadow: none !important; }
|
1544 |
+
|
1545 |
+
.premium-carousel-wrapper .premium-carousel-content-hidden {
|
1546 |
+
visibility: hidden; }
|
1547 |
+
|
1548 |
+
.premium-carousel-wrapper a.carousel-arrow {
|
1549 |
+
top: 50%; }
|
1550 |
+
|
1551 |
+
.premium-tabs-nav-list a.carousel-arrow,
|
1552 |
+
.premium-fb-rev-container a.carousel-arrow,
|
1553 |
+
.premium-blog-wrap a.carousel-arrow,
|
1554 |
+
.premium-hscroll-wrap a.carousel-arrow,
|
1555 |
+
.premium-twitter-feed-wrapper a.carousel-arrow,
|
1556 |
+
.premium-facebook-feed-wrapper a.carousel-arrow,
|
1557 |
+
.premium-instafeed-container a.carousel-arrow,
|
1558 |
+
.premium-persons-container a.carousel-arrow {
|
1559 |
+
top: 50%;
|
1560 |
+
-webkit-transform: translateY(-50%);
|
1561 |
+
-ms-transform: translateY(-50%);
|
1562 |
+
transform: translateY(-50%); }
|
1563 |
+
|
1564 |
+
.premium-carousel-wrapper a.ver-carousel-arrow {
|
1565 |
+
left: 50%;
|
1566 |
+
-webkit-transform: translateX(-50%);
|
1567 |
+
-ms-transform: translateX(-50%);
|
1568 |
+
transform: translateX(-50%); }
|
1569 |
+
|
1570 |
+
a.carousel-arrow.carousel-next {
|
1571 |
+
right: -20px; }
|
1572 |
+
|
1573 |
+
a.carousel-arrow.carousel-prev {
|
1574 |
+
left: -20px; }
|
1575 |
+
|
1576 |
+
a.ver-carousel-arrow.carousel-next {
|
1577 |
+
bottom: -56px; }
|
1578 |
+
|
1579 |
+
a.ver-carousel-arrow.carousel-prev {
|
1580 |
+
top: -45px; }
|
1581 |
+
|
1582 |
+
a.circle-bg {
|
1583 |
+
-webkit-border-radius: 100%;
|
1584 |
+
border-radius: 100%; }
|
1585 |
+
|
1586 |
+
a.circle-border {
|
1587 |
+
-webkit-border-radius: 100%;
|
1588 |
+
border-radius: 100%;
|
1589 |
+
border: solid black; }
|
1590 |
+
|
1591 |
+
a.square-border {
|
1592 |
+
border: solid black; }
|
1593 |
+
|
1594 |
+
.premium-carousel-dots-below ul.slick-dots,
|
1595 |
+
.premium-blog-wrap ul.slick-dots,
|
1596 |
+
.premium-fb-rev-reviews ul.slick-dots {
|
1597 |
+
position: relative;
|
1598 |
+
bottom: 0;
|
1599 |
+
list-style: none;
|
1600 |
+
text-align: center;
|
1601 |
+
margin: 0;
|
1602 |
+
padding: 0; }
|
1603 |
+
|
1604 |
+
.premium-carousel-dots-above ul.slick-dots {
|
1605 |
+
position: absolute;
|
1606 |
+
-js-display: flex;
|
1607 |
+
display: -webkit-box;
|
1608 |
+
display: -webkit-flex;
|
1609 |
+
display: -moz-box;
|
1610 |
+
display: -ms-flexbox;
|
1611 |
+
display: flex;
|
1612 |
+
width: auto;
|
1613 |
+
top: 50%;
|
1614 |
+
bottom: auto;
|
1615 |
+
-webkit-transform: translateY(-50%);
|
1616 |
+
-ms-transform: translateY(-50%);
|
1617 |
+
transform: translateY(-50%);
|
1618 |
+
-webkit-box-orient: vertical;
|
1619 |
+
-webkit-box-direction: normal;
|
1620 |
+
-webkit-flex-direction: column;
|
1621 |
+
-moz-box-orient: vertical;
|
1622 |
+
-moz-box-direction: normal;
|
1623 |
+
-ms-flex-direction: column;
|
1624 |
+
flex-direction: column; }
|
1625 |
+
|
1626 |
+
ul.slick-dots li {
|
1627 |
+
font-size: 10px;
|
1628 |
+
-js-display: inline-flex;
|
1629 |
+
display: -webkit-inline-box;
|
1630 |
+
display: -webkit-inline-flex;
|
1631 |
+
display: -moz-inline-box;
|
1632 |
+
display: -ms-inline-flexbox;
|
1633 |
+
display: inline-flex;
|
1634 |
+
-webkit-box-pack: center;
|
1635 |
+
-webkit-justify-content: center;
|
1636 |
+
-moz-box-pack: center;
|
1637 |
+
-ms-flex-pack: center;
|
1638 |
+
justify-content: center;
|
1639 |
+
-webkit-box-align: center;
|
1640 |
+
-webkit-align-items: center;
|
1641 |
+
-moz-box-align: center;
|
1642 |
+
-ms-flex-align: center;
|
1643 |
+
align-items: center;
|
1644 |
+
margin: 5px;
|
1645 |
+
width: 20px;
|
1646 |
+
height: 20px;
|
1647 |
+
cursor: pointer; }
|
1648 |
+
|
1649 |
+
/*
|
1650 |
+
* Custom Navigation Dot
|
1651 |
+
*/
|
1652 |
+
.premium-carousel-wrapper .premium-carousel-nav-dot,
|
1653 |
+
.premium-carousel-wrapper .premium-carousel-nav-arrow-prev,
|
1654 |
+
.premium-carousel-wrapper .premium-carousel-nav-arrow-next {
|
1655 |
+
display: none; }
|
1656 |
+
|
1657 |
+
.premium-carousel-wrapper ul.slick-dots svg {
|
1658 |
+
width: 20px;
|
1659 |
+
height: 20px; }
|
1660 |
+
|
1661 |
+
/* Ripple Out */
|
1662 |
+
@-webkit-keyframes hvr-ripple-out {
|
1663 |
+
0% {
|
1664 |
+
-webkit-transform: scale(1);
|
1665 |
+
transform: scale(1);
|
1666 |
+
opacity: 1; }
|
1667 |
+
100% {
|
1668 |
+
-webkit-transform: scale(1.5);
|
1669 |
+
transform: scale(1.5);
|
1670 |
+
opacity: 0; } }
|
1671 |
+
@keyframes hvr-ripple-out {
|
1672 |
+
0% {
|
1673 |
+
-webkit-transform: scale(1);
|
1674 |
+
transform: scale(1);
|
1675 |
+
opacity: 1; }
|
1676 |
+
100% {
|
1677 |
+
-webkit-transform: scale(1.5);
|
1678 |
+
transform: scale(1.5);
|
1679 |
+
opacity: 0; } }
|
1680 |
+
|
1681 |
+
.premium-carousel-ripple-yes .premium-carousel-wrapper {
|
1682 |
+
padding-bottom: 1px; }
|
1683 |
+
|
1684 |
+
.premium-carousel-ripple-yes ul.slick-dots li {
|
1685 |
+
position: relative; }
|
1686 |
+
.premium-carousel-ripple-yes ul.slick-dots li i {
|
1687 |
+
position: relative;
|
1688 |
+
z-index: 1; }
|
1689 |
+
.premium-carousel-ripple-yes ul.slick-dots li:hover:before {
|
1690 |
+
content: "";
|
1691 |
+
position: absolute;
|
1692 |
+
-webkit-transform: scale(1);
|
1693 |
+
-ms-transform: scale(1);
|
1694 |
+
transform: scale(1);
|
1695 |
+
top: 0;
|
1696 |
+
right: 0;
|
1697 |
+
bottom: 0;
|
1698 |
+
left: 0;
|
1699 |
+
-webkit-border-radius: 50%;
|
1700 |
+
border-radius: 50%;
|
1701 |
+
pointer-events: none;
|
1702 |
+
background-color: rgba(0, 0, 0, 0.15); }
|
1703 |
+
.premium-carousel-ripple-yes ul.slick-dots li.slick-active:hover:before {
|
1704 |
+
background-color: rgba(0, 0, 0, 0.3); }
|
1705 |
+
.premium-carousel-ripple-yes ul.slick-dots li:hover:before {
|
1706 |
+
-webkit-animation: hvr-ripple-out 1.3s infinite;
|
1707 |
+
animation: hvr-ripple-out 1.3s infinite; }
|
1708 |
+
|
1709 |
+
.premium-carousel-wrapper.premium-carousel-scale .slick-slide {
|
1710 |
+
-webkit-transform: scale(1.25, 1.25);
|
1711 |
+
-ms-transform: scale(1.25, 1.25);
|
1712 |
+
transform: scale(1.25, 1.25);
|
1713 |
+
-webkit-transition: all 0.3s ease-in-out !important;
|
1714 |
+
transition: all 0.3s ease-in-out !important; }
|
1715 |
+
|
1716 |
+
.premium-carousel-wrapper.premium-carousel-scale div.slick-active {
|
1717 |
+
-webkit-transform: scale(1, 1);
|
1718 |
+
-ms-transform: scale(1, 1);
|
1719 |
+
transform: scale(1, 1); }
|
1720 |
+
|
1721 |
+
[dir="rtl"] .premium-carousel-inner .slick-slide {
|
1722 |
+
float: right; }
|
1723 |
+
|
1724 |
+
/**************** Premium Counter ***************/
|
1725 |
+
/************************************************/
|
1726 |
+
.premium-counter-area {
|
1727 |
+
padding: 10px 0;
|
1728 |
+
-js-display: flex;
|
1729 |
+
display: -webkit-box;
|
1730 |
+
display: -webkit-flex;
|
1731 |
+
display: -moz-box;
|
1732 |
+
display: -ms-flexbox;
|
1733 |
+
display: flex;
|
1734 |
+
-webkit-box-pack: center;
|
1735 |
+
-webkit-justify-content: center;
|
1736 |
+
-moz-box-pack: center;
|
1737 |
+
-ms-flex-pack: center;
|
1738 |
+
justify-content: center;
|
1739 |
+
-webkit-box-align: center;
|
1740 |
+
-webkit-align-items: center;
|
1741 |
+
-moz-box-align: center;
|
1742 |
+
-ms-flex-align: center;
|
1743 |
+
align-items: center; }
|
1744 |
+
.premium-counter-area.top {
|
1745 |
+
-webkit-box-orient: vertical;
|
1746 |
+
-webkit-box-direction: normal;
|
1747 |
+
-webkit-flex-direction: column;
|
1748 |
+
-moz-box-orient: vertical;
|
1749 |
+
-moz-box-direction: normal;
|
1750 |
+
-ms-flex-direction: column;
|
1751 |
+
flex-direction: column; }
|
1752 |
+
.premium-counter-area.right {
|
1753 |
+
-webkit-box-orient: horizontal;
|
1754 |
+
-webkit-box-direction: reverse;
|
1755 |
+
-webkit-flex-direction: row-reverse;
|
1756 |
+
-moz-box-orient: horizontal;
|
1757 |
+
-moz-box-direction: reverse;
|
1758 |
+
-ms-flex-direction: row-reverse;
|
1759 |
+
flex-direction: row-reverse; }
|
1760 |
+
.premium-counter-area.right .premium-counter-icon {
|
1761 |
+
padding-left: 20px; }
|
1762 |
+
.premium-counter-area.left .premium-counter-icon {
|
1763 |
+
padding-right: 20px; }
|
1764 |
+
.premium-counter-area .premium-counter-icon .icon i.fa:before {
|
1765 |
+
vertical-align: text-top; }
|
1766 |
+
.premium-counter-area .premium-counter-icon span.icon {
|
1767 |
+
text-align: center;
|
1768 |
+
display: inline-block;
|
1769 |
+
vertical-align: middle; }
|
1770 |
+
.premium-counter-area .premium-counter-icon .circle {
|
1771 |
+
-webkit-border-radius: 100%;
|
1772 |
+
border-radius: 100%; }
|
1773 |
+
.premium-counter-area .premium-counter-icon img,
|
1774 |
+
.premium-counter-area .premium-counter-icon svg {
|
1775 |
+
width: 80px; }
|
1776 |
+
.premium-counter-area .premium-counter-icon .premium-counter-animation svg {
|
1777 |
+
height: 80px; }
|
1778 |
+
.premium-counter-area .premium-counter-title {
|
1779 |
+
padding: 0;
|
1780 |
+
margin: 0; }
|
1781 |
+
.premium-counter-area .premium-counter-value-wrap {
|
1782 |
+
-js-display: flex;
|
1783 |
+
display: -webkit-box;
|
1784 |
+
display: -webkit-flex;
|
1785 |
+
display: -moz-box;
|
1786 |
+
display: -ms-flexbox;
|
1787 |
+
display: flex;
|
1788 |
+
-webkit-box-align: center;
|
1789 |
+
-webkit-align-items: center;
|
1790 |
+
-moz-box-align: center;
|
1791 |
+
-ms-flex-align: center;
|
1792 |
+
align-items: center; }
|
1793 |
+
|
1794 |
+
.premium-init-wrapper.right {
|
1795 |
+
text-align: right; }
|
1796 |
+
|
1797 |
+
span.icon.flex-width {
|
1798 |
+
width: auto !important;
|
1799 |
+
height: auto !important; }
|
1800 |
+
|
1801 |
+
.premium-counter-area .premium-counter-init {
|
1802 |
+
font-size: 35px; }
|
1803 |
+
|
1804 |
+
/**************** Premium Image Separator ****************/
|
1805 |
+
/*********************************************************/
|
1806 |
+
.premium-image-separator-container {
|
1807 |
+
position: absolute;
|
1808 |
+
width: 100%;
|
1809 |
+
z-index: 2;
|
1810 |
+
top: auto;
|
1811 |
+
-webkit-transition: all 0.3s ease-in-out;
|
1812 |
+
transition: all 0.3s ease-in-out; }
|
1813 |
+
.premium-image-separator-container svg,
|
1814 |
+
.premium-image-separator-container img {
|
1815 |
+
display: inline-block !important;
|
1816 |
+
-webkit-mask-repeat: no-repeat;
|
1817 |
+
mask-repeat: no-repeat;
|
1818 |
+
-webkit-mask-position: center;
|
1819 |
+
mask-position: center; }
|
1820 |
+
.premium-image-separator-container .premium-image-separator-link {
|
1821 |
+
position: absolute;
|
1822 |
+
z-index: 9999;
|
1823 |
+
top: 0;
|
1824 |
+
left: 0;
|
1825 |
+
width: 100%;
|
1826 |
+
height: 100%;
|
1827 |
+
text-decoration: none; }
|
1828 |
+
.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 {
|
1829 |
+
-webkit-box-shadow: none !important;
|
1830 |
+
box-shadow: none !important;
|
1831 |
+
outline: none !important;
|
1832 |
+
border: none !important;
|
1833 |
+
text-decoration: none !important; }
|
1834 |
+
.premium-image-separator-container i {
|
1835 |
+
padding: 0.1em;
|
1836 |
+
-webkit-transition: all 0.3s ease-in-out;
|
1837 |
+
transition: all 0.3s ease-in-out; }
|
1838 |
+
|
1839 |
+
/**************** Premium Modal Box ****************/
|
1840 |
+
/***************************************************/
|
1841 |
+
.premium-modal-trigger-btn,
|
1842 |
+
.premium-modal-box-modal-lower-close {
|
1843 |
+
display: inline-block;
|
1844 |
+
padding: 6px 12px;
|
1845 |
+
margin-bottom: 0;
|
1846 |
+
font-size: 14px;
|
1847 |
+
font-weight: normal;
|
1848 |
+
line-height: 1.42857143;
|
1849 |
+
text-align: center;
|
1850 |
+
white-space: nowrap;
|
1851 |
+
vertical-align: middle;
|
1852 |
+
-ms-touch-action: manipulation;
|
1853 |
+
touch-action: manipulation;
|
1854 |
+
cursor: pointer;
|
1855 |
+
-webkit-user-select: none;
|
1856 |
+
-moz-user-select: none;
|
1857 |
+
-ms-user-select: none;
|
1858 |
+
user-select: none;
|
1859 |
+
background-image: none;
|
1860 |
+
border: 1px solid transparent; }
|
1861 |
+
|
1862 |
+
.premium-modal-trigger-btn i {
|
1863 |
+
-webkit-transition: all 0.3s ease-in-out;
|
1864 |
+
transition: all 0.3s ease-in-out; }
|
1865 |
+
|
1866 |
+
.premium-btn-md {
|
1867 |
+
padding: 8px 14px;
|
1868 |
+
font-size: 16px;
|
1869 |
+
line-height: 1.2; }
|
1870 |
+
|
1871 |
+
.premium-btn-lg {
|
1872 |
+
padding: 10px 16px;
|
1873 |
+
font-size: 18px;
|
1874 |
+
line-height: 1.3333333; }
|
1875 |
+
|
1876 |
+
.premium-btn-block {
|
1877 |
+
display: block;
|
1878 |
+
width: 100%; }
|
1879 |
+
|
1880 |
+
.premium-modal-box-modal-close {
|
1881 |
+
float: right;
|
1882 |
+
font-size: 21px;
|
1883 |
+
font-weight: bold;
|
1884 |
+
line-height: 1;
|
1885 |
+
color: #000; }
|
1886 |
+
.premium-modal-box-modal-close:hover, .premium-modal-box-modal-close:focus {
|
1887 |
+
color: #000;
|
1888 |
+
text-decoration: none;
|
1889 |
+
cursor: pointer; }
|
1890 |
+
|
1891 |
+
button.premium-modal-box-modal-close {
|
1892 |
+
-webkit-appearance: none;
|
1893 |
+
padding: 0;
|
1894 |
+
cursor: pointer;
|
1895 |
+
background: transparent;
|
1896 |
+
border: 0; }
|
1897 |
+
|
1898 |
+
.premium-modal-box-modal {
|
1899 |
+
position: fixed;
|
1900 |
+
top: 0;
|
1901 |
+
right: 0;
|
1902 |
+
bottom: 0;
|
1903 |
+
left: 0;
|
1904 |
+
z-index: 1050;
|
1905 |
+
display: none;
|
1906 |
+
-webkit-overflow-scrolling: touch;
|
1907 |
+
outline: 0;
|
1908 |
+
padding: 0 !important;
|
1909 |
+
background: rgba(0, 0, 0, 0.5);
|
1910 |
+
-webkit-box-align: center;
|
1911 |
+
-webkit-align-items: center;
|
1912 |
+
-moz-box-align: center;
|
1913 |
+
-ms-flex-align: center;
|
1914 |
+
align-items: center;
|
1915 |
+
-webkit-box-pack: center;
|
1916 |
+
-webkit-justify-content: center;
|
1917 |
+
-moz-box-pack: center;
|
1918 |
+
-ms-flex-pack: center;
|
1919 |
+
justify-content: center; }
|
1920 |
+
.premium-modal-box-modal .premium-modal-box-modal-dialog {
|
1921 |
+
position: absolute;
|
1922 |
+
max-height: -webkit-calc(100vh - 150px);
|
1923 |
+
max-height: calc(100vh - 150px);
|
1924 |
+
-js-display: flex;
|
1925 |
+
display: -webkit-box;
|
1926 |
+
display: -webkit-flex;
|
1927 |
+
display: -moz-box;
|
1928 |
+
display: -ms-flexbox;
|
1929 |
+
display: flex;
|
1930 |
+
-webkit-box-orient: vertical;
|
1931 |
+
-webkit-box-direction: normal;
|
1932 |
+
-webkit-flex-direction: column;
|
1933 |
+
-moz-box-orient: vertical;
|
1934 |
+
-moz-box-direction: normal;
|
1935 |
+
-ms-flex-direction: column;
|
1936 |
+
flex-direction: column;
|
1937 |
+
opacity: 0; }
|
1938 |
+
|
1939 |
+
.premium-modal-box-modal-content {
|
1940 |
+
background-color: #fff;
|
1941 |
+
background-clip: padding-box;
|
1942 |
+
border: 1px solid rgba(0, 0, 0, 0.2);
|
1943 |
+
-webkit-border-radius: 6px;
|
1944 |
+
border-radius: 6px;
|
1945 |
+
outline: 0; }
|
1946 |
+
|
1947 |
+
.premium-modal-backdrop.premium-in {
|
1948 |
+
filter: alpha(opacity=50);
|
1949 |
+
opacity: 0.5 !important; }
|
1950 |
+
|
1951 |
+
.premium-in {
|
1952 |
+
opacity: 1; }
|
1953 |
+
|
1954 |
+
.premium-modal-backdrop {
|
1955 |
+
position: fixed;
|
1956 |
+
top: 0;
|
1957 |
+
right: 0;
|
1958 |
+
bottom: 0;
|
1959 |
+
left: 0;
|
1960 |
+
z-index: 1040;
|
1961 |
+
background-color: #000; }
|
1962 |
+
|
1963 |
+
.premium-in {
|
1964 |
+
-js-display: flex !important;
|
1965 |
+
display: -webkit-box !important;
|
1966 |
+
display: -webkit-flex !important;
|
1967 |
+
display: -moz-box !important;
|
1968 |
+
display: -ms-flexbox !important;
|
1969 |
+
display: flex !important; }
|
1970 |
+
|
1971 |
+
.premium-modal-box-modal-header {
|
1972 |
+
-js-display: flex;
|
1973 |
+
display: -webkit-box;
|
1974 |
+
display: -webkit-flex;
|
1975 |
+
display: -moz-box;
|
1976 |
+
display: -ms-flexbox;
|
1977 |
+
display: flex;
|
1978 |
+
-webkit-box-pack: justify;
|
1979 |
+
-webkit-justify-content: space-between;
|
1980 |
+
-moz-box-pack: justify;
|
1981 |
+
-ms-flex-pack: justify;
|
1982 |
+
justify-content: space-between;
|
1983 |
+
-webkit-box-align: center;
|
1984 |
+
-webkit-align-items: center;
|
1985 |
+
-moz-box-align: center;
|
1986 |
+
-ms-flex-align: center;
|
1987 |
+
align-items: center;
|
1988 |
+
padding: 5px 15px;
|
1989 |
+
border-bottom: 1px solid #e5e5e5; }
|
1990 |
+
.premium-modal-box-modal-header .premium-modal-box-modal-close {
|
1991 |
+
margin-top: -2px; }
|
1992 |
+
.premium-modal-box-modal-header .premium-modal-box-modal-title {
|
1993 |
+
-js-display: flex;
|
1994 |
+
display: -webkit-box;
|
1995 |
+
display: -webkit-flex;
|
1996 |
+
display: -moz-box;
|
1997 |
+
display: -ms-flexbox;
|
1998 |
+
display: flex;
|
1999 |
+
-webkit-box-align: center;
|
2000 |
+
-webkit-align-items: center;
|
2001 |
+
-moz-box-align: center;
|
2002 |
+
-ms-flex-align: center;
|
2003 |
+
align-items: center;
|
2004 |
+
margin: 0;
|
2005 |
+
padding: 0; }
|
2006 |
+
.premium-modal-box-modal-header .premium-modal-box-modal-title svg {
|
2007 |
+
width: 50px;
|
2008 |
+
height: 60px; }
|
2009 |
+
|
2010 |
+
.premium-modal-box-modal-body {
|
2011 |
+
position: relative;
|
2012 |
+
padding: 15px;
|
2013 |
+
overflow: hidden; }
|
2014 |
+
|
2015 |
+
.premium-modal-box-modal-footer {
|
2016 |
+
padding: 15px;
|
2017 |
+
text-align: right;
|
2018 |
+
border-top: 1px solid #e5e5e5; }
|
2019 |
+
|
2020 |
+
.premium-modal-scrollbar-measure {
|
2021 |
+
position: absolute;
|
2022 |
+
top: -9999px;
|
2023 |
+
width: 50px;
|
2024 |
+
height: 50px;
|
2025 |
+
overflow: scroll; }
|
2026 |
+
|
2027 |
+
.premium-modal-trigger-text {
|
2028 |
+
background: none !important;
|
2029 |
+
display: inline-block; }
|
2030 |
+
|
2031 |
+
.premium-modal-box-container {
|
2032 |
+
width: 100% !important; }
|
2033 |
+
|
2034 |
+
/*Open Modal Button Style*/
|
2035 |
+
.premium-modal-trigger-container .premium-modal-trigger-btn {
|
2036 |
+
border: none;
|
2037 |
+
-webkit-transition: all 0.3s ease-in-out;
|
2038 |
+
transition: all 0.3s ease-in-out; }
|
2039 |
+
|
2040 |
+
.premium-modal-trigger-container .premium-modal-trigger-img,
|
2041 |
+
.premium-modal-trigger-container .premium-modal-trigger-text,
|
2042 |
+
.premium-modal-trigger-container .premium-modal-trigger-animation {
|
2043 |
+
cursor: pointer; }
|
2044 |
+
|
2045 |
+
.premium-modal-trigger-container .premium-modal-trigger-animation {
|
2046 |
+
display: inline-block;
|
2047 |
+
width: 200px;
|
2048 |
+
height: 200px;
|
2049 |
+
-webkit-transition: all 0.3s ease-in-out;
|
2050 |
+
transition: all 0.3s ease-in-out; }
|
2051 |
+
|
2052 |
+
/*Image on Modal Header Style*/
|
2053 |
+
.premium-modal-box-modal-header img {
|
2054 |
+
width: 48px;
|
2055 |
+
padding-right: 5px; }
|
2056 |
+
|
2057 |
+
.premium-modal-box-modal-header i,
|
2058 |
+
.premium-modal-box-modal-header svg {
|
2059 |
+
padding-right: 6px; }
|
2060 |
+
|
2061 |
+
.premium-modal-box-modal-close {
|
2062 |
+
position: relative;
|
2063 |
+
z-index: 99; }
|
2064 |
+
|
2065 |
+
.premium-modal-trigger-img,
|
2066 |
+
.premium-modal-trigger-text,
|
2067 |
+
.premium-modal-box-close-button-container,
|
2068 |
+
.premium-modal-box-modal-close,
|
2069 |
+
.premium-modal-box-modal-lower-close {
|
2070 |
+
-webkit-transition: all 0.3s ease-in-out;
|
2071 |
+
transition: all 0.3s ease-in-out; }
|
2072 |
+
|
2073 |
+
@media (min-width: 768px) {
|
2074 |
+
.premium-modal-box-modal-dialog {
|
2075 |
+
width: 700px;
|
2076 |
+
max-height: 600px;
|
2077 |
+
overflow: auto; } }
|
2078 |
+
|
2079 |
+
@media (max-width: 767px) {
|
2080 |
+
.premium-modal-box-modal-dialog {
|
2081 |
+
width: 100%;
|
2082 |
+
max-height: 500px;
|
2083 |
+
overflow: auto; } }
|
2084 |
+
|
2085 |
+
.premium-modal-box-container[data-modal-animation*="animated-"] {
|
2086 |
+
opacity: 0; }
|
2087 |
+
|
2088 |
+
/**************** Premium Progress Bar ****************/
|
2089 |
+
/******************************************************/
|
2090 |
+
.premium-progressbar-container {
|
2091 |
+
position: relative; }
|
2092 |
+
|
2093 |
+
.premium-progressbar-bar-wrap {
|
2094 |
+
position: relative;
|
2095 |
+
text-align: left;
|
2096 |
+
overflow: hidden;
|
2097 |
+
height: 25px;
|
2098 |
+
margin-bottom: 50px;
|
2099 |
+
background-color: #f5f5f5;
|
2100 |
+
-webkit-border-radius: 4px;
|
2101 |
+
border-radius: 4px;
|
2102 |
+
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
|
2103 |
+
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }
|
2104 |
+
.premium-progressbar-bar-wrap.premium-progressbar-dots {
|
2105 |
+
background-color: transparent;
|
2106 |
+
width: 100%;
|
2107 |
+
-js-display: flex;
|
2108 |
+
display: -webkit-box;
|
2109 |
+
display: -webkit-flex;
|
2110 |
+
display: -moz-box;
|
2111 |
+
display: -ms-flexbox;
|
2112 |
+
display: flex;
|
2113 |
+
height: auto;
|
2114 |
+
-webkit-box-shadow: none;
|
2115 |
+
box-shadow: none; }
|
2116 |
+
.premium-progressbar-bar-wrap .progress-segment {
|
2117 |
+
position: relative;
|
2118 |
+
width: 25px;
|
2119 |
+
height: 25px;
|
2120 |
+
-webkit-border-radius: 50%;
|
2121 |
+
border-radius: 50%;
|
2122 |
+
overflow: hidden;
|
2123 |
+
background-color: #f5f5f5; }
|
2124 |
+
.premium-progressbar-bar-wrap .progress-segment.filled {
|
2125 |
+
background: #6ec1e4; }
|
2126 |
+
.premium-progressbar-bar-wrap .progress-segment:not(:first-child):not(:last-child) {
|
2127 |
+
margin: 0 4px; }
|
2128 |
+
.premium-progressbar-bar-wrap .progress-segment:first-child {
|
2129 |
+
margin-right: 4px; }
|
2130 |
+
.premium-progressbar-bar-wrap .progress-segment:last-child {
|
2131 |
+
margin-left: 4px; }
|
2132 |
+
.premium-progressbar-bar-wrap .progress-segment .segment-inner {
|
2133 |
+
position: absolute;
|
2134 |
+
top: 0;
|
2135 |
+
left: 0;
|
2136 |
+
height: 100%;
|
2137 |
+
background-color: #6ec1e4; }
|
2138 |
+
|
2139 |
+
.premium-progressbar-bar {
|
2140 |
+
float: left;
|
2141 |
+
width: 0%;
|
2142 |
+
height: 100%;
|
2143 |
+
font-size: 12px;
|
2144 |
+
line-height: 20px;
|
2145 |
+
background: #6ec1e4;
|
2146 |
+
text-align: center;
|
2147 |
+
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
|
2148 |
+
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); }
|
2149 |
+
|
2150 |
+
.premium-progressbar-striped .premium-progressbar-bar {
|
2151 |
+
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);
|
2152 |
+
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);
|
2153 |
+
-webkit-background-size: 40px 40px;
|
2154 |
+
background-size: 40px 40px; }
|
2155 |
+
|
2156 |
+
.premium-progressbar-active .premium-progressbar-bar {
|
2157 |
+
-webkit-animation: progress-bar-stripes 2s linear infinite;
|
2158 |
+
animation: progress-bar-stripes 2s linear infinite; }
|
2159 |
+
|
2160 |
+
.premium-progressbar-gradient .premium-progressbar-bar {
|
2161 |
+
-webkit-background-size: 400% 400% !important;
|
2162 |
+
background-size: 400% 400% !important;
|
2163 |
+
-webkit-animation: progress-bar-gradient 10s ease-in-out infinite;
|
2164 |
+
animation: progress-bar-gradient 10s ease-in-out infinite; }
|
2165 |
+
|
2166 |
+
.premium-progressbar-bar {
|
2167 |
+
position: absolute;
|
2168 |
+
overflow: hidden;
|
2169 |
+
line-height: 20px; }
|
2170 |
+
|
2171 |
+
.premium-progressbar-container .clearfix {
|
2172 |
+
clear: both; }
|
2173 |
+
|
2174 |
+
.premium-progressbar-bar {
|
2175 |
+
-webkit-transition: width 0s ease-in-out !important;
|
2176 |
+
transition: width 0s ease-in-out !important; }
|
2177 |
+
|
2178 |
+
.premium-progressbar-container p:first-of-type {
|
2179 |
+
margin: 0;
|
2180 |
+
float: left; }
|
2181 |
+
|
2182 |
+
.premium-progressbar-container p:nth-of-type(2) {
|
2183 |
+
margin: 0;
|
2184 |
+
float: right; }
|
2185 |
+
|
2186 |
+
.premium-progressbar-name {
|
2187 |
+
left: 50%;
|
2188 |
+
top: 0;
|
2189 |
+
right: 0;
|
2190 |
+
-webkit-transform: translateX(-12.5px);
|
2191 |
+
-ms-transform: translateX(-12.5px);
|
2192 |
+
transform: translateX(-12.5px);
|
2193 |
+
z-index: 1; }
|
2194 |
+
|
2195 |
+
.premium-progressbar-multiple-label {
|
2196 |
+
position: relative;
|
2197 |
+
float: left;
|
2198 |
+
width: 0;
|
2199 |
+
left: 50%; }
|
2200 |
+
|
2201 |
+
.premium-progressbar-center-label {
|
2202 |
+
position: relative;
|
2203 |
+
white-space: nowrap; }
|
2204 |
+
|
2205 |
+
.premium-progressbar-arrow {
|
2206 |
+
height: 15px;
|
2207 |
+
left: 50%;
|
2208 |
+
display: inline-block;
|
2209 |
+
border-left: 7px solid transparent;
|
2210 |
+
border-right: 7px solid transparent;
|
2211 |
+
border-top: 11px solid;
|
2212 |
+
-webkit-transform: translateX(-50%);
|
2213 |
+
-ms-transform: translateX(-50%);
|
2214 |
+
transform: translateX(-50%); }
|
2215 |
+
|
2216 |
+
.premium-progressbar-pin {
|
2217 |
+
border-left: 1px solid;
|
2218 |
+
height: 12px;
|
2219 |
+
left: 50%;
|
2220 |
+
display: inline-block; }
|
2221 |
+
|
2222 |
+
/**
|
2223 |
+
* Circle Progress Bar
|
2224 |
+
*/
|
2225 |
+
.premium-progressbar-circle-wrap {
|
2226 |
+
width: 200px;
|
2227 |
+
height: 200px;
|
2228 |
+
position: relative;
|
2229 |
+
margin: 0 auto; }
|
2230 |
+
.premium-progressbar-circle-wrap .premium-progressbar-circle {
|
2231 |
+
position: absolute;
|
2232 |
+
top: 0;
|
2233 |
+
left: 0;
|
2234 |
+
width: 100%;
|
2235 |
+
height: 100%;
|
2236 |
+
-webkit-clip-path: inset(0 0 0 50%);
|
2237 |
+
clip-path: inset(0 0 0 50%); }
|
2238 |
+
.premium-progressbar-circle-wrap .premium-progressbar-circle div {
|
2239 |
+
position: absolute;
|
2240 |
+
left: 0;
|
2241 |
+
top: 0;
|
2242 |
+
height: 100%;
|
2243 |
+
width: 100%;
|
2244 |
+
border-width: 6px;
|
2245 |
+
border-style: solid;
|
2246 |
+
border-color: #54595f;
|
2247 |
+
-webkit-border-radius: 50%;
|
2248 |
+
border-radius: 50%;
|
2249 |
+
-webkit-clip-path: inset(0 50% 0 0);
|
2250 |
+
clip-path: inset(0 50% 0 0); }
|
2251 |
+
.premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-left {
|
2252 |
+
-webkit-transform: rotate(0);
|
2253 |
+
-ms-transform: rotate(0);
|
2254 |
+
transform: rotate(0); }
|
2255 |
+
.premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-right {
|
2256 |
+
-webkit-transform: rotate(180deg);
|
2257 |
+
-ms-transform: rotate(180deg);
|
2258 |
+
transform: rotate(180deg);
|
2259 |
+
visibility: hidden; }
|
2260 |
+
.premium-progressbar-circle-wrap .premium-progressbar-circle-base {
|
2261 |
+
width: 100%;
|
2262 |
+
height: 100%;
|
2263 |
+
border: 6px solid #eee;
|
2264 |
+
-webkit-border-radius: 50%;
|
2265 |
+
border-radius: 50%; }
|
2266 |
+
.premium-progressbar-circle-wrap .premium-progressbar-circle-content {
|
2267 |
+
position: absolute;
|
2268 |
+
top: 0;
|
2269 |
+
left: 0;
|
2270 |
+
width: 100%;
|
2271 |
+
height: 100%;
|
2272 |
+
-js-display: flex;
|
2273 |
+
display: -webkit-box;
|
2274 |
+
display: -webkit-flex;
|
2275 |
+
display: -moz-box;
|
2276 |
+
display: -ms-flexbox;
|
2277 |
+
display: flex;
|
2278 |
+
-webkit-box-orient: vertical;
|
2279 |
+
-webkit-box-direction: normal;
|
2280 |
+
-webkit-flex-direction: column;
|
2281 |
+
-moz-box-orient: vertical;
|
2282 |
+
-moz-box-direction: normal;
|
2283 |
+
-ms-flex-direction: column;
|
2284 |
+
flex-direction: column;
|
2285 |
+
-webkit-box-pack: center;
|
2286 |
+
-webkit-justify-content: center;
|
2287 |
+
-moz-box-pack: center;
|
2288 |
+
-ms-flex-pack: center;
|
2289 |
+
justify-content: center;
|
2290 |
+
-webkit-box-align: center;
|
2291 |
+
-webkit-align-items: center;
|
2292 |
+
-moz-box-align: center;
|
2293 |
+
-ms-flex-align: center;
|
2294 |
+
align-items: center; }
|
2295 |
+
.premium-progressbar-circle-wrap .premium-lottie-animation {
|
2296 |
+
line-height: 1; }
|
2297 |
+
|
2298 |
+
@-webkit-keyframes progress-bar-stripes {
|
2299 |
+
from {
|
2300 |
+
background-position: 0 0; }
|
2301 |
+
to {
|
2302 |
+
background-position: 40px 0; } }
|
2303 |
+
|
2304 |
+
@keyframes progress-bar-stripes {
|
2305 |
+
from {
|
2306 |
+
background-position: 0 0; }
|
2307 |
+
to {
|
2308 |
+
background-position: 40px 0; } }
|
2309 |
+
|
2310 |
+
@-webkit-keyframes progress-bar-gradient {
|
2311 |
+
0% {
|
2312 |
+
background-position: 0% 50%; }
|
2313 |
+
50% {
|
2314 |
+
background-position: 100% 50%; }
|
2315 |
+
100% {
|
2316 |
+
background-position: 0% 50%; } }
|
2317 |
+
|
2318 |
+
@keyframes progress-bar-gradient {
|
2319 |
+
0% {
|
2320 |
+
background-position: 0% 50%; }
|
2321 |
+
50% {
|
2322 |
+
background-position: 100% 50%; }
|
2323 |
+
100% {
|
2324 |
+
background-position: 0% 50%; } }
|
2325 |
+
|
2326 |
+
/**************** Premium Testimonials ****************/
|
2327 |
+
/******************************************************/
|
2328 |
+
.premium-testimonial-box {
|
2329 |
+
width: 100%;
|
2330 |
+
background: transparent;
|
2331 |
+
-webkit-transition: all 0.3s ease-in-out;
|
2332 |
+
transition: all 0.3s ease-in-out; }
|
2333 |
+
.premium-testimonial-box .premium-testimonial-author-info {
|
2334 |
+
-js-display: flex;
|
2335 |
+
display: -webkit-box;
|
2336 |
+
display: -webkit-flex;
|
2337 |
+
display: -moz-box;
|
2338 |
+
display: -ms-flexbox;
|
2339 |
+
display: flex;
|
2340 |
+
-webkit-box-pack: center;
|
2341 |
+
-webkit-justify-content: center;
|
2342 |
+
-moz-box-pack: center;
|
2343 |
+
-ms-flex-pack: center;
|
2344 |
+
justify-content: center;
|
2345 |
+
-webkit-box-align: center;
|
2346 |
+
-webkit-align-items: center;
|
2347 |
+
-moz-box-align: center;
|
2348 |
+
-ms-flex-align: center;
|
2349 |
+
align-items: center; }
|
2350 |
+
.premium-testimonial-box .premium-testimonial-person-name,
|
2351 |
+
.premium-testimonial-box .premium-testimonial-company-name {
|
2352 |
+
font-weight: 600;
|
2353 |
+
margin: 0; }
|
2354 |
+
|
2355 |
+
.premium-testimonial-container {
|
2356 |
+
position: relative; }
|
2357 |
+
|
2358 |
+
.premium-testimonial-img-wrapper {
|
2359 |
+
margin-left: auto;
|
2360 |
+
margin-right: auto;
|
2361 |
+
overflow: hidden;
|
2362 |
+
border-style: solid !important; }
|
2363 |
+
.premium-testimonial-img-wrapper.circle {
|
2364 |
+
-webkit-border-radius: 50%;
|
2365 |
+
border-radius: 50%; }
|
2366 |
+
.premium-testimonial-img-wrapper.rounded {
|
2367 |
+
-webkit-border-radius: 15px;
|
2368 |
+
border-radius: 15px; }
|
2369 |
+
.premium-testimonial-img-wrapper img {
|
2370 |
+
-o-object-fit: cover;
|
2371 |
+
object-fit: cover;
|
2372 |
+
width: 100%;
|
2373 |
+
height: 100% !important; }
|
2374 |
+
|
2375 |
+
.premium-testimonial-content-wrapper {
|
2376 |
+
position: relative;
|
2377 |
+
-js-display: flex;
|
2378 |
+
display: -webkit-box;
|
2379 |
+
display: -webkit-flex;
|
2380 |
+
display: -moz-box;
|
2381 |
+
display: -ms-flexbox;
|
2382 |
+
display: flex;
|
2383 |
+
-webkit-box-orient: vertical;
|
2384 |
+
-webkit-box-direction: normal;
|
2385 |
+
-webkit-flex-direction: column;
|
2386 |
+
-moz-box-orient: vertical;
|
2387 |
+
-moz-box-direction: normal;
|
2388 |
+
-ms-flex-direction: column;
|
2389 |
+
flex-direction: column;
|
2390 |
+
z-index: 2;
|
2391 |
+
width: 100%;
|
2392 |
+
padding: 20px;
|
2393 |
+
text-align: center; }
|
2394 |
+
|
2395 |
+
.premium-testimonial-clear-float {
|
2396 |
+
clear: both; }
|
2397 |
+
|
2398 |
+
.premium-testimonial-upper-quote,
|
2399 |
+
.premium-testimonial-lower-quote {
|
2400 |
+
position: absolute;
|
2401 |
+
z-index: 1; }
|
2402 |
+
|
2403 |
+
/**************** Premium Dual Heading *****************/
|
2404 |
+
/*******************************************************/
|
2405 |
+
.premium-dual-header-container .premium-dual-header-first-header,
|
2406 |
+
.premium-dual-header-container .premium-dual-header-second-header {
|
2407 |
+
position: relative;
|
2408 |
+
padding: 0;
|
2409 |
+
margin: 0;
|
2410 |
+
display: inline-block;
|
2411 |
+
-webkit-transform: translate(0, 0);
|
2412 |
+
-ms-transform: translate(0, 0);
|
2413 |
+
transform: translate(0, 0); }
|
2414 |
+
|
2415 |
+
.premium-dual-header-first-clip .premium-dual-header-first-span,
|
2416 |
+
.premium-dual-header-second-clip {
|
2417 |
+
-webkit-text-fill-color: transparent;
|
2418 |
+
-webkit-background-clip: text;
|
2419 |
+
background-clip: text; }
|
2420 |
+
|
2421 |
+
.premium-dual-header-first-clip.stroke .premium-dual-header-first-span,
|
2422 |
+
.premium-dual-header-second-clip.stroke {
|
2423 |
+
-webkit-text-stroke-color: transparent;
|
2424 |
+
-webkit-text-fill-color: #fafafa;
|
2425 |
+
-webkit-text-stroke-width: 2px; }
|
2426 |
+
|
2427 |
+
@media (max-width: 500px) {
|
2428 |
+
.premium-dual-header-container .premium-dual-header-first-header,
|
2429 |
+
.premium-dual-header-container .premium-dual-header-second-header {
|
2430 |
+
display: block;
|
2431 |
+
word-wrap: break-word; }
|
2432 |
+
.premium-dual-header-first-container,
|
2433 |
+
.premium-dual-header-second-container {
|
2434 |
+
margin: 0; } }
|
2435 |
+
|
2436 |
+
@media (min-width: 501px) {
|
2437 |
+
.premium-dual-header-first-container {
|
2438 |
+
margin-right: 5px; } }
|
2439 |
+
|
2440 |
+
.premium-dual-header-first-header.gradient .premium-dual-header-first-span,
|
2441 |
+
.premium-dual-header-second-header.gradient {
|
2442 |
+
-webkit-background-size: 300% 300% !important;
|
2443 |
+
background-size: 300% 300% !important;
|
2444 |
+
-webkit-animation: Gradient 10s ease-in-out infinite;
|
2445 |
+
animation: Gradient 10s ease-in-out infinite; }
|
2446 |
+
|
2447 |
+
@-webkit-keyframes Gradient {
|
2448 |
+
0% {
|
2449 |
+
background-position: 0% 50%; }
|
2450 |
+
50% {
|
2451 |
+
background-position: 100% 50%; }
|
2452 |
+
100% {
|
2453 |
+
background-position: 0% 50%; } }
|
2454 |
+
|
2455 |
+
@keyframes Gradient {
|
2456 |
+
0% {
|
2457 |
+
background-position: 0% 50%; }
|
2458 |
+
50% {
|
2459 |
+
background-position: 100% 50%; }
|
2460 |
+
100% {
|
2461 |
+
background-position: 0% 50%; } }
|
2462 |
+
|
2463 |
+
.premium-mask-yes.premium-header-inline .premium-dual-header-first-span,
|
2464 |
+
.premium-mask-yes.premium-header-inline .premium-dual-header-first-span {
|
2465 |
+
display: inline-block !important; }
|
2466 |
+
|
2467 |
+
/**************** Premium Title ****************/
|
2468 |
+
/***********************************************/
|
2469 |
+
.premium-title-container {
|
2470 |
+
position: relative;
|
2471 |
+
width: 100%;
|
2472 |
+
clear: both; }
|
2473 |
+
.premium-title-container .premium-title-header {
|
2474 |
+
position: relative;
|
2475 |
+
margin: 0;
|
2476 |
+
padding: 10px; }
|
2477 |
+
.premium-title-container .premium-title-header:not(.premium-title-style7) {
|
2478 |
+
-webkit-box-align: center;
|
2479 |
+
-webkit-align-items: center;
|
2480 |
+
-moz-box-align: center;
|
2481 |
+
-ms-flex-align: center;
|
2482 |
+
align-items: center; }
|
2483 |
+
.premium-title-container .premium-title-header svg {
|
2484 |
+
width: 40px;
|
2485 |
+
height: 40px; }
|
2486 |
+
.premium-title-container .premium-title-header img {
|
2487 |
+
width: 40px;
|
2488 |
+
height: 40px;
|
2489 |
+
-o-object-fit: cover;
|
2490 |
+
object-fit: cover; }
|
2491 |
+
.premium-title-container .premium-title-header a {
|
2492 |
+
position: absolute;
|
2493 |
+
top: 0;
|
2494 |
+
left: 0;
|
2495 |
+
width: 100%;
|
2496 |
+
height: 100%; }
|
2497 |
+
.premium-title-container .premium-lottie-animation {
|
2498 |
+
-js-display: flex;
|
2499 |
+
display: -webkit-box;
|
2500 |
+
display: -webkit-flex;
|
2501 |
+
display: -moz-box;
|
2502 |
+
display: -ms-flexbox;
|
2503 |
+
display: flex; }
|
2504 |
+
|
2505 |
+
.premium-title-icon-row .premium-title-icon {
|
2506 |
+
margin-right: 10px; }
|
2507 |
+
|
2508 |
+
.premium-title-icon-row-reverse .premium-title-icon {
|
2509 |
+
margin-left: 10px; }
|
2510 |
+
|
2511 |
+
.premium-title-style3,
|
2512 |
+
.premium-title-style4 {
|
2513 |
+
-js-display: flex;
|
2514 |
+
display: -webkit-box;
|
2515 |
+
display: -webkit-flex;
|
2516 |
+
display: -moz-box;
|
2517 |
+
display: -ms-flexbox;
|
2518 |
+
display: flex; }
|
2519 |
+
|
2520 |
+
.premium-title-style1,
|
2521 |
+
.premium-title-style2,
|
2522 |
+
.premium-title-style5,
|
2523 |
+
.premium-title-style6,
|
2524 |
+
.premium-title-style8,
|
2525 |
+
.premium-title-style9 {
|
2526 |
+
-js-display: inline-flex;
|
2527 |
+
display: -webkit-inline-box;
|
2528 |
+
display: -webkit-inline-flex;
|
2529 |
+
display: -moz-inline-box;
|
2530 |
+
display: -ms-inline-flexbox;
|
2531 |
+
display: inline-flex; }
|
2532 |
+
|
2533 |
+
.premium-title-style7 {
|
2534 |
+
-js-display: inline-flex;
|
2535 |
+
display: -webkit-inline-box;
|
2536 |
+
display: -webkit-inline-flex;
|
2537 |
+
display: -moz-inline-box;
|
2538 |
+
display: -ms-inline-flexbox;
|
2539 |
+
display: inline-flex;
|
2540 |
+
-webkit-box-orient: vertical;
|
2541 |
+
-webkit-box-direction: normal;
|
2542 |
+
-webkit-flex-direction: column;
|
2543 |
+
-moz-box-orient: vertical;
|
2544 |
+
-moz-box-direction: normal;
|
2545 |
+
-ms-flex-direction: column;
|
2546 |
+
flex-direction: column; }
|
2547 |
+
.premium-title-style7 .premium-title-style7-inner {
|
2548 |
+
-js-display: flex;
|
2549 |
+
display: -webkit-box;
|
2550 |
+
display: -webkit-flex;
|
2551 |
+
display: -moz-box;
|
2552 |
+
display: -ms-flexbox;
|
2553 |
+
display: flex;
|
2554 |
+
-webkit-box-align: center;
|
2555 |
+
-webkit-align-items: center;
|
2556 |
+
-moz-box-align: center;
|
2557 |
+
-ms-flex-align: center;
|
2558 |
+
align-items: center; }
|
2559 |
+
|
2560 |
+
.premium-title-style1 {
|
2561 |
+
border-left: 3px solid #6ec1e4; }
|
2562 |
+
|
2563 |
+
.premium-title-container.style2, .premium-title-container.style4, .premium-title-container.style5, .premium-title-container.style6 {
|
2564 |
+
border-bottom: 3px solid #6ec1e4; }
|
2565 |
+
|
2566 |
+
/*Style 6 Header*/
|
2567 |
+
.premium-title-style6:before {
|
2568 |
+
position: absolute;
|
2569 |
+
left: 50%;
|
2570 |
+
bottom: 0;
|
2571 |
+
margin-left: -2px;
|
2572 |
+
content: "";
|
2573 |
+
border: 3px solid transparent; }
|
2574 |
+
|
2575 |
+
/*Style 6 Trinagle*/
|
2576 |
+
.premium-title-style7-stripe-wrap {
|
2577 |
+
-js-display: flex;
|
2578 |
+
display: -webkit-box;
|
2579 |
+
display: -webkit-flex;
|
2580 |
+
display: -moz-box;
|
2581 |
+
display: -ms-flexbox;
|
2582 |
+
display: flex; }
|
2583 |
+
|
2584 |
+
.premium-title-style7:before {
|
2585 |
+
display: none; }
|
2586 |
+
|
2587 |
+
.premium-title-style8 .premium-title-text[data-animation="shiny"] {
|
2588 |
+
-webkit-background-size: 125px 125px !important;
|
2589 |
+
background-size: 125px !important;
|
2590 |
+
color: rgba(255, 255, 255, 0);
|
2591 |
+
-webkit-background-clip: text !important;
|
2592 |
+
background-clip: text !important;
|
2593 |
+
-webkit-animation-name: pa-shinny-text !important;
|
2594 |
+
animation-name: pa-shinny-text !important;
|
2595 |
+
-webkit-animation-duration: var(--animation-speed) !important;
|
2596 |
+
animation-duration: var(--animation-speed) !important;
|
2597 |
+
-webkit-animation-iteration-count: infinite !important;
|
2598 |
+
animation-iteration-count: infinite !important;
|
2599 |
+
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; }
|
2600 |
+
|
2601 |
+
@-webkit-keyframes pa-shinny-text {
|
2602 |
+
0% {
|
2603 |
+
background-position: 0%; }
|
2604 |
+
100% {
|
2605 |
+
background-position: 200%; } }
|
2606 |
+
|
2607 |
+
@keyframes pa-shinny-text {
|
2608 |
+
0% {
|
2609 |
+
background-position: 0%; }
|
2610 |
+
100% {
|
2611 |
+
background-position: 200%; } }
|
2612 |
+
|
2613 |
+
.premium-title-style9[data-animation-blur="process"] .premium-title-style9-letter {
|
2614 |
+
-webkit-animation: pa-blur-shadow 2s 1 alternate;
|
2615 |
+
animation: pa-blur-shadow 2s 1 alternate; }
|
2616 |
+
|
2617 |
+
@-webkit-keyframes pa-blur-shadow {
|
2618 |
+
from {
|
2619 |
+
text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
|
2620 |
+
color: transparent; }
|
2621 |
+
to {
|
2622 |
+
text-shadow: 0; } }
|
2623 |
+
|
2624 |
+
@keyframes pa-blur-shadow {
|
2625 |
+
from {
|
2626 |
+
text-shadow: 0 0 var(--shadow-value) var(--shadow-color);
|
2627 |
+
color: transparent; }
|
2628 |
+
to {
|
2629 |
+
text-shadow: 0; } }
|
2630 |
+
|
2631 |
+
.premium-title-gradient-yes .premium-title-text,
|
2632 |
+
.premium-title-gradient-yes .premium-title-icon {
|
2633 |
+
-webkit-background-clip: text;
|
2634 |
+
-webkit-text-fill-color: transparent;
|
2635 |
+
background-image: -webkit-gradient(linear, left top, right top, from(#ffa648), color-stop(#f17cc1), to(#4da9fd));
|
2636 |
+
background-image: -webkit-linear-gradient(left, #ffa648, #f17cc1, #4da9fd);
|
2637 |
+
background-image: linear-gradient(to right, #ffa648, #f17cc1, #4da9fd);
|
2638 |
+
-webkit-animation: pa-text-gradient 8s infinite;
|
2639 |
+
animation: pa-text-gradient 8s infinite; }
|
2640 |
+
|
2641 |
+
@-webkit-keyframes pa-text-gradient {
|
2642 |
+
0%,
|
2643 |
+
100% {
|
2644 |
+
-webkit-filter: hue-rotate(0deg);
|
2645 |
+
filter: hue-rotate(0deg); }
|
2646 |
+
50% {
|
2647 |
+
-webkit-filter: hue-rotate(360deg);
|
2648 |
+
filter: hue-rotate(360deg); } }
|
2649 |
+
|
2650 |
+
@keyframes pa-text-gradient {
|
2651 |
+
0%,
|
2652 |
+
100% {
|
2653 |
+
-webkit-filter: hue-rotate(0deg);
|
2654 |
+
filter: hue-rotate(0deg); }
|
2655 |
+
50% {
|
2656 |
+
-webkit-filter: hue-rotate(360deg);
|
2657 |
+
filter: hue-rotate(360deg); } }
|
2658 |
+
|
2659 |
+
/*
|
2660 |
+
* Common Title/Dual Heading
|
2661 |
+
*/
|
2662 |
+
.premium-title-bg-text:before {
|
2663 |
+
position: absolute;
|
2664 |
+
content: attr(data-background);
|
2665 |
+
top: 0;
|
2666 |
+
left: 0;
|
2667 |
+
text-align: left; }
|
2668 |
+
|
2669 |
+
.premium-mask-yes .premium-dual-header-first-clip .premium-dual-header-first-span .premium-mask-span,
|
2670 |
+
.premium-mask-yes .premium-dual-header-second-clip .premium-mask-span {
|
2671 |
+
background: inherit; }
|
2672 |
+
|
2673 |
+
.premium-mask-yes .premium-mask-span {
|
2674 |
+
position: relative;
|
2675 |
+
overflow: hidden;
|
2676 |
+
-js-display: inline-flex !important;
|
2677 |
+
display: -webkit-inline-box !important;
|
2678 |
+
display: -webkit-inline-flex !important;
|
2679 |
+
display: -moz-inline-box !important;
|
2680 |
+
display: -ms-inline-flexbox !important;
|
2681 |
+
display: inline-flex !important; }
|
2682 |
+
.premium-mask-yes .premium-mask-span::after {
|
2683 |
+
content: "";
|
2684 |
+
position: absolute;
|
2685 |
+
top: 0;
|
2686 |
+
right: 0px;
|
2687 |
+
width: 100%;
|
2688 |
+
height: 100%;
|
2689 |
+
background-color: currentColor;
|
2690 |
+
-webkit-backface-visibility: visible;
|
2691 |
+
backface-visibility: visible; }
|
2692 |
+
|
2693 |
+
.premium-mask-active.premium-mask-tr .premium-mask-span::after {
|
2694 |
+
-webkit-animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
2695 |
+
animation: pa-mask-tr 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
2696 |
+
-webkit-transform: translateX(-103%);
|
2697 |
+
-ms-transform: translateX(-103%);
|
2698 |
+
transform: translateX(-103%); }
|
2699 |
+
|
2700 |
+
.premium-mask-active.premium-mask-tl .premium-mask-span::after {
|
2701 |
+
-webkit-animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
2702 |
+
animation: pa-mask-tl 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
2703 |
+
-webkit-transform: translateX(103%);
|
2704 |
+
-ms-transform: translateX(103%);
|
2705 |
+
transform: translateX(103%); }
|
2706 |
+
|
2707 |
+
.premium-mask-active.premium-mask-tb .premium-mask-span::after {
|
2708 |
+
-webkit-animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
2709 |
+
animation: pa-mask-tb 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
2710 |
+
-webkit-transform: translateY(-103%);
|
2711 |
+
-ms-transform: translateY(-103%);
|
2712 |
+
transform: translateY(-103%); }
|
2713 |
+
|
2714 |
+
.premium-mask-active.premium-mask-tt .premium-mask-span::after {
|
2715 |
+
-webkit-animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
2716 |
+
animation: pa-mask-tt 1.7s cubic-bezier(1, 0, 0.18, 1) forwards;
|
2717 |
+
-webkit-transform: translateY(103%);
|
2718 |
+
-ms-transform: translateY(103%);
|
2719 |
+
transform: translateY(103%); }
|
2720 |
+
|
2721 |
+
@-webkit-keyframes pa-mask-tr {
|
2722 |
+
0% {
|
2723 |
+
-webkit-transform: translateX(0%);
|
2724 |
+
transform: translateX(0%); }
|
2725 |
+
100% {
|
2726 |
+
-webkit-transform: translateX(103%);
|
2727 |
+
transform: translateX(103%); } }
|
2728 |
+
|
2729 |
+
@keyframes pa-mask-tr {
|
2730 |
+
0% {
|
2731 |
+
-webkit-transform: translateX(0%);
|
2732 |
+
transform: translateX(0%); }
|
2733 |
+
100% {
|
2734 |
+
-webkit-transform: translateX(103%);
|
2735 |
+
transform: translateX(103%); } }
|
2736 |
+
|
2737 |
+
@-webkit-keyframes pa-mask-tl {
|
2738 |
+
0% {
|
2739 |
+
-webkit-transform: translateX(0%);
|
2740 |
+
transform: translateX(0%); }
|
2741 |
+
100% {
|
2742 |
+
-webkit-transform: translateX(-103%);
|
2743 |
+
transform: translateX(-103%); } }
|
2744 |
+
|
2745 |
+
@keyframes pa-mask-tl {
|
2746 |
+
0% {
|
2747 |
+
-webkit-transform: translateX(0%);
|
2748 |
+
transform: translateX(0%); }
|
2749 |
+
100% {
|
2750 |
+
-webkit-transform: translateX(-103%);
|
2751 |
+
transform: translateX(-103%); } }
|
2752 |
+
|
2753 |
+
@-webkit-keyframes pa-mask-tb {
|
2754 |
+
0% {
|
2755 |
+
-webkit-transform: translateY(0%);
|
2756 |
+
transform: translateY(0%); }
|
2757 |
+
100% {
|
2758 |
+
-webkit-transform: translateY(103%);
|
2759 |
+
transform: translateY(103%); } }
|
2760 |
+
|
2761 |
+
@keyframes pa-mask-tb {
|
2762 |
+
0% {
|
2763 |
+
-webkit-transform: translateY(0%);
|
2764 |
+
transform: translateY(0%); }
|
2765 |
+
100% {
|
2766 |
+
-webkit-transform: translateY(103%);
|
2767 |
+
transform: translateY(103%); } }
|
2768 |
+
|
2769 |
+
@-webkit-keyframes pa-mask-tt {
|
2770 |
+
0% {
|
2771 |
+
-webkit-transform: translateY(0%);
|
2772 |
+
transform: translateY(0%); }
|
2773 |
+
100% {
|
2774 |
+
-webkit-transform: translateY(-103%);
|
2775 |
+
transform: translateY(-103%); } }
|
2776 |
+
|
2777 |
+
@keyframes pa-mask-tt {
|
2778 |
+
0% {
|
2779 |
+
-webkit-transform: translateY(0%);
|
2780 |
+
transform: translateY(0%); }
|
2781 |
+
100% {
|
2782 |
+
-webkit-transform: translateY(-103%);
|
2783 |
+
transform: translateY(-103%); } }
|
2784 |
+
|
2785 |
+
/**************** Premium Video Box ************/
|
2786 |
+
/***********************************************/
|
2787 |
+
.premium-video-box-transform {
|
2788 |
+
-webkit-transform: none !important;
|
2789 |
+
-ms-transform: none !important;
|
2790 |
+
transform: none !important; }
|
2791 |
+
|
2792 |
+
.premium-video-box-container {
|
2793 |
+
-js-display: flex;
|
2794 |
+
display: -webkit-box;
|
2795 |
+
display: -webkit-flex;
|
2796 |
+
display: -moz-box;
|
2797 |
+
display: -ms-flexbox;
|
2798 |
+
display: flex;
|
2799 |
+
-webkit-box-orient: vertical;
|
2800 |
+
-webkit-box-direction: normal;
|
2801 |
+
-webkit-flex-direction: column;
|
2802 |
+
-moz-box-orient: vertical;
|
2803 |
+
-moz-box-direction: normal;
|
2804 |
+
-ms-flex-direction: column;
|
2805 |
+
flex-direction: column; }
|
2806 |
+
|
2807 |
+
.premium-video-box-container > div {
|
2808 |
+
position: relative;
|
2809 |
+
overflow: hidden; }
|
2810 |
+
|
2811 |
+
.pa-aspect-ratio-11 .premium-video-box-container > div {
|
2812 |
+
padding-bottom: 100%; }
|
2813 |
+
|
2814 |
+
.pa-aspect-ratio-169 .premium-video-box-container > div {
|
2815 |
+
padding-bottom: 56.25%; }
|
2816 |
+
|
2817 |
+
.pa-aspect-ratio-43 .premium-video-box-container > div {
|
2818 |
+
padding-bottom: 75%; }
|
2819 |
+
|
2820 |
+
.pa-aspect-ratio-32 .premium-video-box-container > div {
|
2821 |
+
padding-bottom: 66.6666%; }
|
2822 |
+
|
2823 |
+
.pa-aspect-ratio-219 .premium-video-box-container > div {
|
2824 |
+
padding-bottom: 42.8571%; }
|
2825 |
+
|
2826 |
+
.pa-aspect-ratio-916 .premium-video-box-container > div {
|
2827 |
+
padding-bottom: 177.8%; }
|
2828 |
+
|
2829 |
+
.premium-video-box-image-container {
|
2830 |
+
position: absolute;
|
2831 |
+
top: 0;
|
2832 |
+
left: 0;
|
2833 |
+
bottom: 0;
|
2834 |
+
right: 0;
|
2835 |
+
width: 100%;
|
2836 |
+
height: 100%;
|
2837 |
+
-webkit-background-size: cover;
|
2838 |
+
background-size: cover;
|
2839 |
+
background-position: 50%;
|
2840 |
+
cursor: pointer;
|
2841 |
+
margin: auto;
|
2842 |
+
-webkit-transition: 0.2s all;
|
2843 |
+
transition: 0.2s all; }
|
2844 |
+
|
2845 |
+
.premium-video-box-play-icon-container {
|
2846 |
+
position: absolute;
|
2847 |
+
z-index: 2;
|
2848 |
+
cursor: pointer;
|
2849 |
+
-webkit-transform: translate(-50%, -50%);
|
2850 |
+
-ms-transform: translate(-50%, -50%);
|
2851 |
+
transform: translate(-50%, -50%);
|
2852 |
+
background: rgba(252, 252, 252, 0.35); }
|
2853 |
+
|
2854 |
+
.premium-video-box-description-container {
|
2855 |
+
position: absolute;
|
2856 |
+
z-index: 2;
|
2857 |
+
padding: 5px;
|
2858 |
+
text-align: center;
|
2859 |
+
cursor: pointer;
|
2860 |
+
-webkit-transform: translate(-50%, -50%);
|
2861 |
+
-ms-transform: translate(-50%, -50%);
|
2862 |
+
transform: translate(-50%, -50%); }
|
2863 |
+
|
2864 |
+
.premium-video-box-text {
|
2865 |
+
margin-bottom: 0 !important;
|
2866 |
+
-webkit-transition: all 0.3s ease-in-out;
|
2867 |
+
transition: all 0.3s ease-in-out; }
|
2868 |
+
|
2869 |
+
.premium-video-box-play-icon {
|
2870 |
+
padding: 15px;
|
2871 |
+
-webkit-transform: translateX(4%);
|
2872 |
+
-ms-transform: translateX(4%);
|
2873 |
+
transform: translateX(4%);
|
2874 |
+
-webkit-transition: all 0.3s ease-in-out;
|
2875 |
+
transition: all 0.3s ease-in-out; }
|
2876 |
+
|
2877 |
+
.premium-video-box-video-container {
|
2878 |
+
position: absolute;
|
2879 |
+
top: 0;
|
2880 |
+
left: 0;
|
2881 |
+
z-index: 2;
|
2882 |
+
width: 100%;
|
2883 |
+
height: 100%;
|
2884 |
+
-webkit-transition: opacity 0.8s ease-in-out;
|
2885 |
+
transition: opacity 0.8s ease-in-out;
|
2886 |
+
overflow: hidden;
|
2887 |
+
cursor: pointer; }
|
2888 |
+
|
2889 |
+
.premium-video-box-container[data-overlay="true"][data-type="self"] .premium-video-box-video-container {
|
2890 |
+
opacity: 0;
|
2891 |
+
visibility: hidden; }
|
2892 |
+
|
2893 |
+
.premium-video-box-video-container iframe {
|
2894 |
+
max-width: 100%;
|
2895 |
+
width: 100%;
|
2896 |
+
height: 100%;
|
2897 |
+
margin: 0;
|
2898 |
+
line-height: 1;
|
2899 |
+
border: none; }
|
2900 |
+
|
2901 |
+
.premium-video-box-video-container video {
|
2902 |
+
max-width: 100%;
|
2903 |
+
width: 100%;
|
2904 |
+
height: 100%;
|
2905 |
+
margin: 0;
|
2906 |
+
line-height: 1;
|
2907 |
+
border: none;
|
2908 |
+
background-color: #000;
|
2909 |
+
-o-object-fit: contain;
|
2910 |
+
object-fit: contain; }
|
2911 |
+
|
2912 |
+
.premium-video-box-container .premium-video-box-vimeo-wrap {
|
2913 |
+
-js-display: flex;
|
2914 |
+
display: -webkit-box;
|
2915 |
+
display: -webkit-flex;
|
2916 |
+
display: -moz-box;
|
2917 |
+
display: -ms-flexbox;
|
2918 |
+
display: flex;
|
2919 |
+
position: absolute;
|
2920 |
+
top: 0;
|
2921 |
+
left: 0;
|
2922 |
+
z-index: 3;
|
2923 |
+
margin: 10px;
|
2924 |
+
margin-right: 10px;
|
2925 |
+
-webkit-transition: opacity 0.2s ease-out;
|
2926 |
+
transition: opacity 0.2s ease-out;
|
2927 |
+
margin-right: 4.6em; }
|
2928 |
+
|
2929 |
+
.premium-video-box-vimeo-wrap .premium-video-box-vimeo-portrait {
|
2930 |
+
width: 60px;
|
2931 |
+
height: 60px;
|
2932 |
+
background: rgba(23, 35, 34, 0.75);
|
2933 |
+
margin-right: 1px;
|
2934 |
+
-webkit-box-flex: 1;
|
2935 |
+
-webkit-flex: 1 0 auto;
|
2936 |
+
-moz-box-flex: 1;
|
2937 |
+
-ms-flex: 1 0 auto;
|
2938 |
+
flex: 1 0 auto;
|
2939 |
+
padding: 0; }
|
2940 |
+
|
2941 |
+
.premium-video-box-vimeo-portrait img {
|
2942 |
+
width: 50px;
|
2943 |
+
height: 50px;
|
2944 |
+
margin: 5px;
|
2945 |
+
padding: 0;
|
2946 |
+
border: 0;
|
2947 |
+
-webkit-border-radius: 50%;
|
2948 |
+
border-radius: 50%; }
|
2949 |
+
|
2950 |
+
.premium-video-box-vimeo-wrap .premium-video-box-vimeo-headers {
|
2951 |
+
font-size: 10px; }
|
2952 |
+
|
2953 |
+
.premium-video-box-vimeo-wrap .premium-video-box-vimeo-title {
|
2954 |
+
max-width: 100%;
|
2955 |
+
font-size: 2em !important;
|
2956 |
+
font-weight: 700;
|
2957 |
+
margin: 0;
|
2958 |
+
padding: 0.1em 0.2em;
|
2959 |
+
background: rgba(23, 35, 34, 0.75);
|
2960 |
+
display: inline-block;
|
2961 |
+
text-transform: none;
|
2962 |
+
line-height: normal;
|
2963 |
+
letter-spacing: normal; }
|
2964 |
+
|
2965 |
+
.premium-video-box-vimeo-wrap .premium-video-box-vimeo-byline {
|
2966 |
+
font-size: 1.2em !important;
|
2967 |
+
font-weight: 400;
|
2968 |
+
color: #fff;
|
2969 |
+
margin-top: 0.1em;
|
2970 |
+
padding: 0.2em 0.5em;
|
2971 |
+
background: rgba(23, 35, 34, 0.75);
|
2972 |
+
text-transform: none;
|
2973 |
+
line-height: normal;
|
2974 |
+
letter-spacing: normal; }
|
2975 |
+
|
2976 |
+
.premium-video-box-playlist-container {
|
2977 |
+
-js-display: flex;
|
2978 |
+
display: -webkit-box;
|
2979 |
+
display: -webkit-flex;
|
2980 |
+
display: -moz-box;
|
2981 |
+
display: -ms-flexbox;
|
2982 |
+
display: flex;
|
2983 |
+
-webkit-flex-wrap: wrap;
|
2984 |
+
-ms-flex-wrap: wrap;
|
2985 |
+
flex-wrap: wrap; }
|
2986 |
+
.premium-video-box-playlist-container .premium-video-box-container {
|
2987 |
+
height: 100%;
|
2988 |
+
overflow: hidden; }
|
2989 |
+
|
2990 |
+
.premium-video-box-container:hover .premium-video-box-image-container.zoomin {
|
2991 |
+
-webkit-transform: scale(1.1);
|
2992 |
+
-ms-transform: scale(1.1);
|
2993 |
+
transform: scale(1.1); }
|
2994 |
+
|
2995 |
+
.premium-video-box-container:hover .premium-video-box-image-container.zoomout {
|
2996 |
+
-webkit-transform: scale(1);
|
2997 |
+
-ms-transform: scale(1);
|
2998 |
+
transform: scale(1); }
|
2999 |
+
|
3000 |
+
.premium-video-box-container:hover .premium-video-box-image-container.scale {
|
3001 |
+
-webkit-transform: scale(1.3) rotate(5deg);
|
3002 |
+
-ms-transform: scale(1.3) rotate(5deg);
|
3003 |
+
transform: scale(1.3) rotate(5deg); }
|
3004 |
+
|
3005 |
+
.premium-video-box-container:hover .premium-video-box-image-container.gray {
|
3006 |
+
-webkit-filter: grayscale(0%);
|
3007 |
+
filter: grayscale(0%); }
|
3008 |
+
|
3009 |
+
.premium-video-box-container:hover .premium-video-box-image-container.blur {
|
3010 |
+
-webkit-filter: blur(3px);
|
3011 |
+
filter: blur(3px); }
|
3012 |
+
|
3013 |
+
.premium-video-box-container:hover .premium-video-box-image-container.sepia {
|
3014 |
+
-webkit-filter: sepia(0%);
|
3015 |
+
filter: sepia(0%); }
|
3016 |
+
|
3017 |
+
.premium-video-box-container:hover .premium-video-box-image-container.trans {
|
3018 |
+
-webkit-transform: translateX(0px) scale(1.1);
|
3019 |
+
-ms-transform: translateX(0px) scale(1.1);
|
3020 |
+
transform: translateX(0px) scale(1.1); }
|
3021 |
+
|
3022 |
+
.premium-video-box-container:hover .premium-video-box-image-container.bright {
|
3023 |
+
-webkit-filter: brightness(1.2);
|
3024 |
+
filter: brightness(1.2); }
|
3025 |
+
|
3026 |
+
.premium-video-box-image-container.gray {
|
3027 |
+
-webkit-filter: grayscale(100%);
|
3028 |
+
filter: grayscale(100%); }
|
3029 |
+
|
3030 |
+
.premium-video-box-image-container.zoomout, .premium-video-box-image-container.scale {
|
3031 |
+
-webkit-transform: scale(1.2);
|
3032 |
+
-ms-transform: scale(1.2);
|
3033 |
+
transform: scale(1.2); }
|
3034 |
+
|
3035 |
+
.premium-video-box-image-container.sepia {
|
3036 |
+
-webkit-filter: sepia(30%);
|
3037 |
+
filter: sepia(30%); }
|
3038 |
+
|
3039 |
+
.premium-video-box-image-container.bright {
|
3040 |
+
-webkit-filter: brightness(1);
|
3041 |
+
filter: brightness(1); }
|
3042 |
+
|
3043 |
+
.premium-video-box-image-container.trans {
|
3044 |
+
-webkit-transform: translateX(-15px) scale(1.1);
|
3045 |
+
-ms-transform: translateX(-15px) scale(1.1);
|
3046 |
+
transform: translateX(-15px) scale(1.1); }
|
3047 |
+
|
3048 |
+
.premium-video-box-mask-media {
|
3049 |
+
-webkit-mask-repeat: no-repeat;
|
3050 |
+
mask-repeat: no-repeat; }
|
3051 |
+
|
3052 |
+
/* Sticky Video Option */
|
3053 |
+
.premium-video-box-container.premium-video-box-sticky-apply {
|
3054 |
+
z-index: 99;
|
3055 |
+
overflow: unset; }
|
3056 |
+
.premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-inner-wrap {
|
3057 |
+
position: fixed !important;
|
3058 |
+
z-index: 99999;
|
3059 |
+
height: 225px;
|
3060 |
+
width: 400px;
|
3061 |
+
background: #fff; }
|
3062 |
+
.premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-vimeo-wrap,
|
3063 |
+
.premium-video-box-container.premium-video-box-sticky-apply .premium-video-box-container:before {
|
3064 |
+
visibility: hidden; }
|
3065 |
+
.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 {
|
3066 |
+
-webkit-box-shadow: unset;
|
3067 |
+
box-shadow: unset; }
|
3068 |
+
|
3069 |
+
.premium-video-box-sticky-close,
|
3070 |
+
.premium-video-box-sticky-infobar {
|
3071 |
+
display: none; }
|
3072 |
+
|
3073 |
+
.premium-video-box-sticky-apply .premium-video-box-sticky-close {
|
3074 |
+
position: absolute;
|
3075 |
+
padding: 5px;
|
3076 |
+
cursor: pointer;
|
3077 |
+
z-index: 99999;
|
3078 |
+
height: 14px;
|
3079 |
+
width: 14px;
|
3080 |
+
-webkit-box-sizing: content-box;
|
3081 |
+
-moz-box-sizing: content-box;
|
3082 |
+
box-sizing: content-box;
|
3083 |
+
-webkit-border-radius: 100%;
|
3084 |
+
border-radius: 100%;
|
3085 |
+
-js-display: flex;
|
3086 |
+
display: -webkit-box;
|
3087 |
+
display: -webkit-flex;
|
3088 |
+
display: -moz-box;
|
3089 |
+
display: -ms-flexbox;
|
3090 |
+
display: flex;
|
3091 |
+
-webkit-box-pack: center;
|
3092 |
+
-webkit-justify-content: center;
|
3093 |
+
-moz-box-pack: center;
|
3094 |
+
-ms-flex-pack: center;
|
3095 |
+
justify-content: center;
|
3096 |
+
-webkit-box-align: center;
|
3097 |
+
-webkit-align-items: center;
|
3098 |
+
-moz-box-align: center;
|
3099 |
+
-ms-flex-align: center;
|
3100 |
+
align-items: center; }
|
3101 |
+
|
3102 |
+
.premium-video-box-sticky-apply .premium-video-box-play-icon-container {
|
3103 |
+
-js-display: flex;
|
3104 |
+
display: -webkit-box;
|
3105 |
+
display: -webkit-flex;
|
3106 |
+
display: -moz-box;
|
3107 |
+
display: -ms-flexbox;
|
3108 |
+
display: flex; }
|
3109 |
+
|
3110 |
+
.premium-video-box-sticky-apply .premium-video-box-play-icon {
|
3111 |
+
-webkit-transition: none;
|
3112 |
+
transition: none; }
|
3113 |
+
|
3114 |
+
.premium-video-box-sticky-apply .premium-video-box-sticky-infobar {
|
3115 |
+
display: block;
|
3116 |
+
position: relative;
|
3117 |
+
top: 100%;
|
3118 |
+
width: 100%;
|
3119 |
+
padding: 5px;
|
3120 |
+
text-align: center;
|
3121 |
+
z-index: 9999;
|
3122 |
+
margin-top: -1px; }
|
3123 |
+
|
3124 |
+
.premium-video-box-sticky-apply .premium-video-box-inner-wrap.ui-draggable {
|
3125 |
+
cursor: move; }
|
3126 |
+
|
3127 |
+
.premium-video-sticky-top-left
|
3128 |
+
.premium-video-box-container.premium-video-box-sticky-apply
|
3129 |
+
.premium-video-box-inner-wrap {
|
3130 |
+
right: auto;
|
3131 |
+
left: 20px;
|
3132 |
+
top: 20px; }
|
3133 |
+
|
3134 |
+
.premium-video-sticky-bottom-left
|
3135 |
+
.premium-video-box-container.premium-video-box-sticky-apply
|
3136 |
+
.premium-video-box-inner-wrap {
|
3137 |
+
right: auto;
|
3138 |
+
left: 20px;
|
3139 |
+
bottom: 20px; }
|
3140 |
+
|
3141 |
+
.premium-video-sticky-top-right
|
3142 |
+
.premium-video-box-container.premium-video-box-sticky-apply
|
3143 |
+
.premium-video-box-inner-wrap {
|
3144 |
+
left: auto;
|
3145 |
+
right: 20px;
|
3146 |
+
top: 20px; }
|
3147 |
+
|
3148 |
+
.premium-video-sticky-bottom-right
|
3149 |
+
.premium-video-box-container.premium-video-box-sticky-apply
|
3150 |
+
.premium-video-box-inner-wrap {
|
3151 |
+
left: auto;
|
3152 |
+
right: 20px;
|
3153 |
+
bottom: 20px; }
|
3154 |
+
|
3155 |
+
.premium-video-sticky-center-left
|
3156 |
+
.premium-video-box-container.premium-video-box-sticky-apply
|
3157 |
+
.premium-video-box-inner-wrap {
|
3158 |
+
right: auto;
|
3159 |
+
left: 20px;
|
3160 |
+
top: 50%;
|
3161 |
+
-webkit-transform: translateY(-50%);
|
3162 |
+
-ms-transform: translateY(-50%);
|
3163 |
+
transform: translateY(-50%); }
|
3164 |
+
|
3165 |
+
.premium-video-sticky-center-right
|
3166 |
+
.premium-video-box-container.premium-video-box-sticky-apply
|
3167 |
+
.premium-video-box-inner-wrap {
|
3168 |
+
left: auto;
|
3169 |
+
right: 20px;
|
3170 |
+
top: 50%;
|
3171 |
+
-webkit-transform: translateY(-50%);
|
3172 |
+
-ms-transform: translateY(-50%);
|
3173 |
+
transform: translateY(-50%); }
|
3174 |
+
|
3175 |
+
.premium-video-sticky-bottom-right
|
3176 |
+
.premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply
|
3177 |
+
.premium-video-box-inner-wrap,
|
3178 |
+
.premium-video-sticky-bottom-left
|
3179 |
+
.premium-video-box-sticky-infobar-wrap.premium-video-box-sticky-apply
|
3180 |
+
.premium-video-box-inner-wrap {
|
3181 |
+
bottom: 55px; }
|
3182 |
+
|
3183 |
+
.premium-video-sticky-top-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
|
3184 |
+
.premium-video-sticky-bottom-left .premium-video-box-sticky-apply .premium-video-box-sticky-close,
|
3185 |
+
.premium-video-sticky-center-left .premium-video-box-sticky-apply .premium-video-box-sticky-close {
|
3186 |
+
top: -10px;
|
3187 |
+
right: -10px; }
|
3188 |
+
|
3189 |
+
.premium-video-sticky-top-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
|
3190 |
+
.premium-video-sticky-bottom-right .premium-video-box-sticky-apply .premium-video-box-sticky-close,
|
3191 |
+
.premium-video-sticky-center-right .premium-video-box-sticky-apply .premium-video-box-sticky-close {
|
3192 |
+
top: -10px;
|
3193 |
+
left: -10px; }
|
3194 |
+
|
3195 |
+
.premium-video-box-filter-sticky {
|
3196 |
+
-webkit-filter: none !important;
|
3197 |
+
filter: none !important; }
|
3198 |
+
|
3199 |
+
/**************** Premium Blog *****************/
|
3200 |
+
/***********************************************/
|
3201 |
+
.premium-blog-thumb-effect-wrapper {
|
3202 |
+
position: relative;
|
3203 |
+
overflow: hidden; }
|
3204 |
+
|
3205 |
+
.premium-blog-effect-container:not(.premium-blog-bordered-effect) .premium-blog-post-link {
|
3206 |
+
position: absolute;
|
3207 |
+
top: 0;
|
3208 |
+
left: 0;
|
3209 |
+
width: 100%;
|
3210 |
+
height: 100%;
|
3211 |
+
z-index: 2;
|
3212 |
+
padding: 20px; }
|
3213 |
+
|
3214 |
+
.premium-blog-bordered-effect .premium-blog-post-link {
|
3215 |
+
display: block;
|
3216 |
+
height: 100%;
|
3217 |
+
position: relative; }
|
3218 |
+
|
3219 |
+
/*Thumbnail Img*/
|
3220 |
+
.premium-blog-thumbnail-container {
|
3221 |
+
overflow: hidden; }
|
3222 |
+
.premium-blog-thumbnail-container img,
|
3223 |
+
.premium-blog-thumbnail-container .below-entry-meta {
|
3224 |
+
width: 100%;
|
3225 |
+
height: 100%;
|
3226 |
+
margin: 0 !important;
|
3227 |
+
-webkit-transition: all 0.4s ease-in-out;
|
3228 |
+
transition: all 0.4s ease-in-out; }
|
3229 |
+
|
3230 |
+
.premium-blog-thumb-effect-wrapper .premium-blog-zoomout-effect img,
|
3231 |
+
.premium-blog-thumb-effect-wrapper .premium-blog-scale-effect img {
|
3232 |
+
-webkit-transform: scale(1.2);
|
3233 |
+
-ms-transform: scale(1.2);
|
3234 |
+
transform: scale(1.2); }
|
3235 |
+
|
3236 |
+
.premium-blog-thumb-effect-wrapper .premium-blog-sepia-effect img {
|
3237 |
+
-webkit-filter: sepia(30%);
|
3238 |
+
filter: sepia(30%); }
|
3239 |
+
|
3240 |
+
.premium-blog-thumb-effect-wrapper .premium-blog-bright-effect img {
|
3241 |
+
-webkit-filter: brightness(1);
|
3242 |
+
filter: brightness(1); }
|
3243 |
+
|
3244 |
+
.premium-blog-thumb-effect-wrapper .premium-blog-trans-effect img {
|
3245 |
+
-webkit-transform: translateX(-15px) scale(1.1);
|
3246 |
+
-ms-transform: translateX(-15px) scale(1.1);
|
3247 |
+
transform: translateX(-15px) scale(1.1); }
|
3248 |
+
|
3249 |
+
.premium-blog-post-outer-container:hover .premium-blog-zoomin-effect img {
|
3250 |
+
-webkit-transform: scale(1.2);
|
3251 |
+
-ms-transform: scale(1.2);
|
3252 |
+
transform: scale(1.2); }
|
3253 |
+
|
3254 |
+
.premium-blog-post-outer-container:hover .premium-blog-zoomout-effect img {
|
3255 |
+
-webkit-transform: scale(1.1);
|
3256 |
+
-ms-transform: scale(1.1);
|
3257 |
+
transform: scale(1.1); }
|
3258 |
+
|
3259 |
+
.premium-blog-post-outer-container:hover .premium-blog-scale-effect img {
|
3260 |
+
-webkit-transform: scale(1.3) rotate(5deg);
|
3261 |
+
-ms-transform: scale(1.3) rotate(5deg);
|
3262 |
+
transform: scale(1.3) rotate(5deg); }
|
3263 |
+
|
3264 |
+
.premium-blog-post-outer-container:hover .premium-blog-gray-effect img {
|
3265 |
+
-webkit-filter: grayscale(100%);
|
3266 |
+
filter: grayscale(100%); }
|
3267 |
+
|
3268 |
+
.premium-blog-post-outer-container:hover .premium-blog-blur-effect img {
|
3269 |
+
-webkit-filter: blur(3px);
|
3270 |
+
filter: blur(3px); }
|
3271 |
+
|
3272 |
+
.premium-blog-post-outer-container:hover .premium-blog-sepia-effect img {
|
3273 |
+
-webkit-filter: sepia(0%);
|
3274 |
+
filter: sepia(0%); }
|
3275 |
+
|
3276 |
+
.premium-blog-post-outer-container:hover .premium-blog-bright-effect img {
|
3277 |
+
-webkit-filter: brightness(1.2);
|
3278 |
+
filter: brightness(1.2); }
|
3279 |
+
|
3280 |
+
.premium-blog-post-outer-container:hover .premium-blog-trans-effect img {
|
3281 |
+
-webkit-transform: translateX(0px) scale(1.1);
|
3282 |
+
-ms-transform: translateX(0px) scale(1.1);
|
3283 |
+
transform: translateX(0px) scale(1.1); }
|
3284 |
+
|
3285 |
+
.premium-blog-post-container {
|
3286 |
+
overflow: hidden; }
|
3287 |
+
.premium-blog-post-container .premium-blog-inner-container {
|
3288 |
+
-js-display: flex;
|
3289 |
+
display: -webkit-box;
|
3290 |
+
display: -webkit-flex;
|
3291 |
+
display: -moz-box;
|
3292 |
+
display: -ms-flexbox;
|
3293 |
+
display: flex; }
|
3294 |
+
.premium-blog-post-container .premium-blog-post-content {
|
3295 |
+
line-height: 1.5em;
|
3296 |
+
color: #777;
|
3297 |
+
font-size: 14px;
|
3298 |
+
margin-bottom: 10px; }
|
3299 |
+
.premium-blog-post-container ul.post-categories a:hover, .premium-blog-post-container ul.post-categories a:focus,
|
3300 |
+
.premium-blog-post-container .premium-blog-post-link:hover,
|
3301 |
+
.premium-blog-post-container .premium-blog-post-link:focus {
|
3302 |
+
-webkit-box-shadow: none !important;
|
3303 |
+
box-shadow: none !important;
|
3304 |
+
outline: none !important; }
|
3305 |
+
.premium-blog-post-container .premium-blog-entry-title {
|
3306 |
+
font-size: 18px;
|
3307 |
+
margin-bottom: 5px; }
|
3308 |
+
.premium-blog-post-container.premium-blog-skin-modern .premium-blog-content-wrapper {
|
3309 |
+
position: relative;
|
3310 |
+
z-index: 3;
|
3311 |
+
top: -50px; }
|
3312 |
+
.premium-blog-post-container .premium-blog-content-wrapper {
|
3313 |
+
background-color: #f5f5f5;
|
3314 |
+
padding: 30px; }
|
3315 |
+
.premium-blog-post-container .premium-blog-content-wrapper.empty-thumb {
|
3316 |
+
top: 0; }
|
3317 |
+
.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 {
|
3318 |
+
position: absolute;
|
3319 |
+
content: "";
|
3320 |
+
z-index: 1;
|
3321 |
+
top: 50%;
|
3322 |
+
left: 50%;
|
3323 |
+
opacity: 0;
|
3324 |
+
-webkit-transform: translate(-50%, -50%);
|
3325 |
+
-ms-transform: translate(-50%, -50%);
|
3326 |
+
transform: translate(-50%, -50%);
|
3327 |
+
-webkit-transition: all 0.4s linear 0s;
|
3328 |
+
transition: all 0.4s linear 0s;
|
3329 |
+
height: 1px;
|
3330 |
+
width: 100%;
|
3331 |
+
background-color: #fff; }
|
3332 |
+
.premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-thumbnail-container:before {
|
3333 |
+
width: 1px;
|
3334 |
+
height: 100%; }
|
3335 |
+
.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 {
|
3336 |
+
width: 20px;
|
3337 |
+
opacity: 1; }
|
3338 |
+
.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 {
|
3339 |
+
height: 20px;
|
3340 |
+
opacity: 1; }
|
3341 |
+
.premium-blog-post-container:not(.premium-blog-skin-classic):not(.premium-blog-skin-side):not(.premium-blog-skin-banner) .premium-blog-content-wrapper {
|
3342 |
+
margin: 0px 10px 20px;
|
3343 |
+
clear: both; }
|
3344 |
+
.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 {
|
3345 |
+
position: absolute;
|
3346 |
+
top: 0;
|
3347 |
+
left: 0;
|
3348 |
+
width: 100%;
|
3349 |
+
height: 100%;
|
3350 |
+
-webkit-transition: all 0.3s ease-in-out;
|
3351 |
+
transition: all 0.3s ease-in-out;
|
3352 |
+
opacity: 0; }
|
3353 |
+
.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 {
|
3354 |
+
-js-display: flex;
|
3355 |
+
display: -webkit-box;
|
3356 |
+
display: -webkit-flex;
|
3357 |
+
display: -moz-box;
|
3358 |
+
display: -ms-flexbox;
|
3359 |
+
display: flex;
|
3360 |
+
-webkit-box-pack: center;
|
3361 |
+
-webkit-justify-content: center;
|
3362 |
+
-moz-box-pack: center;
|
3363 |
+
-ms-flex-pack: center;
|
3364 |
+
justify-content: center;
|
3365 |
+
-webkit-box-align: center;
|
3366 |
+
-webkit-align-items: center;
|
3367 |
+
-moz-box-align: center;
|
3368 |
+
-ms-flex-align: center;
|
3369 |
+
align-items: center;
|
3370 |
+
width: 100%;
|
3371 |
+
height: 100%; }
|
3372 |
+
.premium-blog-post-container.premium-blog-skin-classic .premium-blog-thumbnail-overlay span,
|
3373 |
+
.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,
|
3374 |
+
.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,
|
3375 |
+
.premium-blog-post-container.premium-blog-skin-banner .premium-blog-thumbnail-overlay i {
|
3376 |
+
-webkit-transition: all 0.3s ease-in-out;
|
3377 |
+
transition: all 0.3s ease-in-out; }
|
3378 |
+
.premium-blog-post-container.premium-blog-skin-side {
|
3379 |
+
-js-display: flex;
|
3380 |
+
display: -webkit-box;
|
3381 |
+
display: -webkit-flex;
|
3382 |
+
display: -moz-box;
|
3383 |
+
display: -ms-flexbox;
|
3384 |
+
display: flex; }
|
3385 |
+
.premium-blog-post-container.premium-blog-skin-side .premium-blog-thumbnail-container {
|
3386 |
+
height: 100%; }
|
3387 |
+
.premium-blog-post-container.premium-blog-skin-side .premium-blog-content-wrapper {
|
3388 |
+
-webkit-box-flex: 1;
|
3389 |
+
-webkit-flex: 1;
|
3390 |
+
-moz-box-flex: 1;
|
3391 |
+
-ms-flex: 1;
|
3392 |
+
flex: 1; }
|
3393 |
+
.premium-blog-post-container.premium-blog-skin-banner {
|
3394 |
+
position: relative; }
|
3395 |
+
.premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper {
|
3396 |
+
position: absolute;
|
3397 |
+
width: 100%;
|
3398 |
+
bottom: 0;
|
3399 |
+
-js-display: flex;
|
3400 |
+
display: -webkit-box;
|
3401 |
+
display: -webkit-flex;
|
3402 |
+
display: -moz-box;
|
3403 |
+
display: -ms-flexbox;
|
3404 |
+
display: flex;
|
3405 |
+
-webkit-box-orient: vertical;
|
3406 |
+
-webkit-box-direction: normal;
|
3407 |
+
-webkit-flex-direction: column;
|
3408 |
+
-moz-box-orient: vertical;
|
3409 |
+
-moz-box-direction: normal;
|
3410 |
+
-ms-flex-direction: column;
|
3411 |
+
flex-direction: column;
|
3412 |
+
background-color: transparent;
|
3413 |
+
z-index: 3; }
|
3414 |
+
.premium-blog-post-container.premium-blog-skin-banner .premium-blog-content-wrapper-inner {
|
3415 |
+
-webkit-transition: -webkit-transform 0.3s ease-in-out;
|
3416 |
+
transition: -webkit-transform 0.3s ease-in-out;
|
3417 |
+
transition: transform 0.3s ease-in-out;
|
3418 |
+
transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out; }
|
3419 |
+
.premium-blog-post-container.premium-blog-skin-banner:hover .premium-blog-content-wrapper-inner {
|
3420 |
+
-webkit-transform: translateY(-5px);
|
3421 |
+
-ms-transform: translateY(-5px);
|
3422 |
+
transform: translateY(-5px); }
|
3423 |
+
.premium-blog-post-container .premium-blog-cats-container ul.post-categories {
|
3424 |
+
margin: 0;
|
3425 |
+
padding: 0;
|
3426 |
+
list-style: none;
|
3427 |
+
-js-display: flex;
|
3428 |
+
display: -webkit-box;
|
3429 |
+
display: -webkit-flex;
|
3430 |
+
display: -moz-box;
|
3431 |
+
display: -ms-flexbox;
|
3432 |
+
display: flex; }
|
3433 |
+
.premium-blog-post-container .premium-blog-cats-container a {
|
3434 |
+
display: block;
|
3435 |
+
font-size: 12px;
|
3436 |
+
color: #fff;
|
3437 |
+
background-color: #777;
|
3438 |
+
margin: 0 3px 10px 0;
|
3439 |
+
padding: 5px;
|
3440 |
+
-webkit-transition: all 0.3s ease-in-out;
|
3441 |
+
transition: all 0.3s ease-in-out; }
|
3442 |
+
|
3443 |
+
/*
|
3444 |
+
* Diagonal Effect
|
3445 |
+
*/
|
3446 |
+
.premium-blog-diagonal-container {
|
3447 |
+
position: absolute;
|
3448 |
+
top: 0;
|
3449 |
+
left: 0;
|
3450 |
+
width: 100%;
|
3451 |
+
height: 100%; }
|
3452 |
+
|
3453 |
+
.premium-blog-diagonal-effect:before {
|
3454 |
+
position: absolute;
|
3455 |
+
top: 0px;
|
3456 |
+
left: 0px;
|
3457 |
+
width: 100%;
|
3458 |
+
height: 100%;
|
3459 |
+
content: " ";
|
3460 |
+
z-index: 1;
|
3461 |
+
background: rgba(255, 255, 255, 0.2);
|
3462 |
+
-webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
|
3463 |
+
transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
|
3464 |
+
-webkit-transition: all 0.3s linear 0s;
|
3465 |
+
transition: all 0.3s linear 0s; }
|
3466 |
+
|
3467 |
+
.premium-blog-thumb-effect-wrapper:hover .premium-blog-diagonal-effect:before {
|
3468 |
+
-webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
|
3469 |
+
transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0); }
|
3470 |
+
|
3471 |
+
/*
|
3472 |
+
* Framed Effect
|
3473 |
+
*/
|
3474 |
+
.premium-blog-framed-effect {
|
3475 |
+
position: absolute;
|
3476 |
+
width: -webkit-calc(100% - 30px);
|
3477 |
+
width: calc(100% - 30px);
|
3478 |
+
height: -webkit-calc(100% - 30px);
|
3479 |
+
height: calc(100% - 30px);
|
3480 |
+
top: 15px;
|
3481 |
+
left: 15px;
|
3482 |
+
opacity: 0;
|
3483 |
+
-webkit-transform: scale(0.3);
|
3484 |
+
-ms-transform: scale(0.3);
|
3485 |
+
transform: scale(0.3);
|
3486 |
+
-webkit-transition: all 0.3s linear 0s;
|
3487 |
+
transition: all 0.3s linear 0s; }
|
3488 |
+
|
3489 |
+
.premium-blog-thumb-effect-wrapper:hover .premium-blog-framed-effect {
|
3490 |
+
opacity: 0.99;
|
3491 |
+
-webkit-transform: scale(1);
|
3492 |
+
-ms-transform: scale(1);
|
3493 |
+
transform: scale(1); }
|
3494 |
+
|
3495 |
+
/*
|
3496 |
+
* Bordered Effect
|
3497 |
+
*/
|
3498 |
+
.premium-blog-bordered-effect {
|
3499 |
+
position: absolute;
|
3500 |
+
top: 0;
|
3501 |
+
left: 0;
|
3502 |
+
width: 100%;
|
3503 |
+
height: 100%;
|
3504 |
+
opacity: 0;
|
3505 |
+
padding: 15px;
|
3506 |
+
-webkit-transition: all 0.3s linear 0s;
|
3507 |
+
transition: all 0.3s linear 0s; }
|
3508 |
+
.premium-blog-bordered-effect .premium-blog-post-link:before, .premium-blog-bordered-effect .premium-blog-post-link:after {
|
3509 |
+
content: "";
|
3510 |
+
display: block;
|
3511 |
+
position: absolute;
|
3512 |
+
top: 0;
|
3513 |
+
left: 0;
|
3514 |
+
width: 100%;
|
3515 |
+
height: 100%;
|
3516 |
+
-webkit-transition: all 0.5s linear 0s;
|
3517 |
+
transition: all 0.5s linear 0s;
|
3518 |
+
-webkit-transition-delay: 0s;
|
3519 |
+
transition-delay: 0s;
|
3520 |
+
border-color: rgba(255, 255, 255, 0.45); }
|
3521 |
+
.premium-blog-bordered-effect .premium-blog-post-link:before {
|
3522 |
+
border-right: 2px solid;
|
3523 |
+
border-left: 2px solid;
|
3524 |
+
-webkit-transform: scale(1, 0);
|
3525 |
+
-ms-transform: scale(1, 0);
|
3526 |
+
transform: scale(1, 0);
|
3527 |
+
-webkit-transform-origin: 100% 0;
|
3528 |
+
-ms-transform-origin: 100% 0;
|
3529 |
+
transform-origin: 100% 0; }
|
3530 |
+
.premium-blog-bordered-effect .premium-blog-post-link:after {
|
3531 |
+
border-top: 2px solid;
|
3532 |
+
border-bottom: 2px solid;
|
3533 |
+
-webkit-transform: scale(0, 1);
|
3534 |
+
-ms-transform: scale(0, 1);
|
3535 |
+
transform: scale(0, 1);
|
3536 |
+
-webkit-transform-origin: 0 0;
|
3537 |
+
-ms-transform-origin: 0 0;
|
3538 |
+
transform-origin: 0 0; }
|
3539 |
+
|
3540 |
+
.premium-blog-thumb-effect-wrapper:hover .premium-blog-bordered-effect {
|
3541 |
+
opacity: 0.99; }
|
3542 |
+
.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 {
|
3543 |
+
-webkit-transition-delay: 0.15s;
|
3544 |
+
transition-delay: 0.15s;
|
3545 |
+
opacity: 1;
|
3546 |
+
-webkit-transform: scale(1);
|
3547 |
+
-ms-transform: scale(1);
|
3548 |
+
transform: scale(1); }
|
3549 |
+
|
3550 |
+
/*
|
3551 |
+
* Squares Effect
|
3552 |
+
*/
|
3553 |
+
.premium-blog-squares-effect,
|
3554 |
+
.premium-blog-squares-square-container {
|
3555 |
+
position: absolute;
|
3556 |
+
top: 0;
|
3557 |
+
left: 0;
|
3558 |
+
width: 100%;
|
3559 |
+
height: 100%; }
|
3560 |
+
|
3561 |
+
.premium-blog-squares-effect:before, .premium-blog-squares-effect:after {
|
3562 |
+
position: absolute;
|
3563 |
+
content: "";
|
3564 |
+
top: 0;
|
3565 |
+
left: 0;
|
3566 |
+
width: 50%;
|
3567 |
+
height: 50%;
|
3568 |
+
-webkit-transform: translate(-100%, -100%);
|
3569 |
+
-ms-transform: translate(-100%, -100%);
|
3570 |
+
transform: translate(-100%, -100%);
|
3571 |
+
opacity: 0.7;
|
3572 |
+
-webkit-transition: all 0.3s linear 0s;
|
3573 |
+
transition: all 0.3s linear 0s; }
|
3574 |
+
|
3575 |
+
.premium-blog-squares-square-container:before, .premium-blog-squares-square-container:after {
|
3576 |
+
position: absolute;
|
3577 |
+
content: "";
|
3578 |
+
top: 0;
|
3579 |
+
left: 0;
|
3580 |
+
width: 50%;
|
3581 |
+
height: 50%;
|
3582 |
+
-webkit-transform: translate(-100%, -100%);
|
3583 |
+
-ms-transform: translate(-100%, -100%);
|
3584 |
+
transform: translate(-100%, -100%);
|
3585 |
+
opacity: 0.7;
|
3586 |
+
-webkit-transition: all 0.3s linear 0s;
|
3587 |
+
transition: all 0.3s linear 0s; }
|
3588 |
+
|
3589 |
+
.premium-blog-squares-square-container:before, .premium-blog-squares-square-container:after {
|
3590 |
+
opacity: 0.8; }
|
3591 |
+
|
3592 |
+
.premium-blog-squares-effect:after {
|
3593 |
+
-webkit-transform: translate(200%, 200%);
|
3594 |
+
-ms-transform: translate(200%, 200%);
|
3595 |
+
transform: translate(200%, 200%); }
|
3596 |
+
|
3597 |
+
.premium-blog-squares-square-container:before {
|
3598 |
+
-webkit-transform: translate(-100%, 200%);
|
3599 |
+
-ms-transform: translate(-100%, 200%);
|
3600 |
+
transform: translate(-100%, 200%); }
|
3601 |
+
|
3602 |
+
.premium-blog-squares-square-container:after {
|
3603 |
+
-webkit-transform: translate(200%, -100%);
|
3604 |
+
-ms-transform: translate(200%, -100%);
|
3605 |
+
transform: translate(200%, -100%); }
|
3606 |
+
|
3607 |
+
.premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:before {
|
3608 |
+
-webkit-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
|
3609 |
+
-ms-transform: translate(0, 0%) scaleY(1.003) scaleX(1.003);
|
3610 |
+
transform: translate(0, 0%) scaleY(1.003) scaleX(1.003); }
|
3611 |
+
|
3612 |
+
.premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-effect:after {
|
3613 |
+
-webkit-transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003);
|
3614 |
+
-ms-transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003);
|
3615 |
+
transform: translate(100%, 100%) scaleY(1.003) scaleX(1.003); }
|
3616 |
+
|
3617 |
+
.premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:before {
|
3618 |
+
-webkit-transform: translate(0, 100%);
|
3619 |
+
-ms-transform: translate(0, 100%);
|
3620 |
+
transform: translate(0, 100%); }
|
3621 |
+
|
3622 |
+
.premium-blog-thumb-effect-wrapper:hover .premium-blog-squares-square-container:after {
|
3623 |
+
-webkit-transform: translate(100%, 0%);
|
3624 |
+
-ms-transform: translate(100%, 0%);
|
3625 |
+
transform: translate(100%, 0%); }
|
3626 |
+
|
3627 |
+
.premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay {
|
3628 |
+
opacity: 1; }
|
3629 |
+
.premium-blog-thumb-effect-wrapper:hover .premium-blog-thumbnail-overlay a {
|
3630 |
+
opacity: 1;
|
3631 |
+
-webkit-transform: scale(1);
|
3632 |
+
-ms-transform: scale(1);
|
3633 |
+
transform: scale(1); }
|
3634 |
+
|
3635 |
+
.premium-blog-clear-fix {
|
3636 |
+
clear: both; }
|
3637 |
+
|
3638 |
+
.premium-blog-masked .premium-blog-thumbnail-container {
|
3639 |
+
position: relative;
|
3640 |
+
overflow: visible; }
|
3641 |
+
.premium-blog-masked .premium-blog-thumbnail-container svg {
|
3642 |
+
position: absolute;
|
3643 |
+
height: 100px;
|
3644 |
+
width: 100%;
|
3645 |
+
bottom: -5px;
|
3646 |
+
left: 0;
|
3647 |
+
fill: #f5f5f5;
|
3648 |
+
z-index: 99; }
|
3649 |
+
.premium-blog-masked .premium-blog-thumbnail-container svg.premium-blog-shape-divider-svg {
|
3650 |
+
-webkit-transform: rotate(180deg);
|
3651 |
+
-ms-transform: rotate(180deg);
|
3652 |
+
transform: rotate(180deg); }
|
3653 |
+
|
3654 |
+
.premium-blog-masked .premium-blog-author-thumbnail,
|
3655 |
+
.premium-blog-masked .premium-blog-skin-banner .premium-blog-content-wrapper {
|
3656 |
+
z-index: 999 !important; }
|
3657 |
+
|
3658 |
+
.premium-blog-format-link {
|
3659 |
+
padding: 5px;
|
3660 |
+
line-height: 0; }
|
3661 |
+
|
3662 |
+
.premium-blog-entry-meta {
|
3663 |
+
line-height: 1.3em;
|
3664 |
+
font-size: 12px;
|
3665 |
+
margin-bottom: 13px;
|
3666 |
+
color: #adadad; }
|
3667 |
+
.premium-blog-entry-meta i {
|
3668 |
+
margin-right: 3px;
|
3669 |
+
-webkit-transition: all 0.3s ease-in-out;
|
3670 |
+
transition: all 0.3s ease-in-out; }
|
3671 |
+
|
3672 |
+
.premium-blog-meta-data {
|
3673 |
+
display: inline-block; }
|
3674 |
+
.premium-blog-meta-data .premium-blog-meta-separator {
|
3675 |
+
margin: 0 5px; }
|
3676 |
+
.premium-blog-meta-data a,
|
3677 |
+
.premium-blog-meta-data span {
|
3678 |
+
color: inherit;
|
3679 |
+
-webkit-transition: all 0.3s ease-in-out;
|
3680 |
+
transition: all 0.3s ease-in-out; }
|
3681 |
+
|
3682 |
+
.premium-blog-author-thumbnail {
|
3683 |
+
position: relative;
|
3684 |
+
padding: 0 30px;
|
3685 |
+
width: 100%;
|
3686 |
+
top: -10px;
|
3687 |
+
height: 0;
|
3688 |
+
pointer-events: none; }
|
3689 |
+
.premium-blog-author-thumbnail img {
|
3690 |
+
-webkit-border-radius: 50%;
|
3691 |
+
border-radius: 50%;
|
3692 |
+
width: 60px;
|
3693 |
+
pointer-events: all;
|
3694 |
+
-webkit-transform: translateY(-50%);
|
3695 |
+
-ms-transform: translateY(-50%);
|
3696 |
+
transform: translateY(-50%); }
|
3697 |
+
|
3698 |
+
.premium-blog-entry-title a,
|
3699 |
+
.premium-blog-post-tags-container a,
|
3700 |
+
.premium-blog-post-content .premium-blog-excerpt-link {
|
3701 |
+
-webkit-transition: all 0.3s ease-in-out;
|
3702 |
+
transition: all 0.3s ease-in-out; }
|
3703 |
+
|
3704 |
+
.premium-blog-excerpt-link-wrap a.premium-blog-excerpt-link {
|
3705 |
+
background-color: transparent;
|
3706 |
+
color: #54595f;
|
3707 |
+
padding: 0; }
|
3708 |
+
|
3709 |
+
.premium-blog-cta-full-yes .premium-blog-excerpt-link {
|
3710 |
+
width: 100%; }
|
3711 |
+
|
3712 |
+
.premium-blog-post-tags-container {
|
3713 |
+
margin-top: 8px;
|
3714 |
+
-js-display: flex;
|
3715 |
+
display: -webkit-box;
|
3716 |
+
display: -webkit-flex;
|
3717 |
+
display: -moz-box;
|
3718 |
+
display: -ms-flexbox;
|
3719 |
+
display: flex;
|
3720 |
+
-webkit-box-align: center;
|
3721 |
+
-webkit-align-items: center;
|
3722 |
+
-moz-box-align: center;
|
3723 |
+
-ms-flex-align: center;
|
3724 |
+
align-items: center;
|
3725 |
+
-webkit-flex-wrap: wrap;
|
3726 |
+
-ms-flex-wrap: wrap;
|
3727 |
+
flex-wrap: wrap; }
|
3728 |
+
.premium-blog-post-tags-container a {
|
3729 |
+
color: inherit;
|
3730 |
+
margin-left: 5px; }
|
3731 |
+
|
3732 |
+
/*Tags align*/
|
3733 |
+
.premium-blog-align-left .post-categories,
|
3734 |
+
.premium-blog-align-left .premium-blog-inner-container,
|
3735 |
+
.premium-blog-align-left .premium-blog-post-tags-container {
|
3736 |
+
-webkit-box-pack: start;
|
3737 |
+
-webkit-justify-content: flex-start;
|
3738 |
+
-moz-box-pack: start;
|
3739 |
+
-ms-flex-pack: start;
|
3740 |
+
justify-content: flex-start; }
|
3741 |
+
|
3742 |
+
.premium-blog-align-center .post-categories,
|
3743 |
+
.premium-blog-align-center .premium-blog-inner-container,
|
3744 |
+
.premium-blog-align-center .premium-blog-post-tags-container {
|
3745 |
+
-webkit-box-pack: center;
|
3746 |
+
-webkit-justify-content: center;
|
3747 |
+
-moz-box-pack: center;
|
3748 |
+
-ms-flex-pack: center;
|
3749 |
+
justify-content: center; }
|
3750 |
+
|
3751 |
+
.premium-blog-align-right .post-categories,
|
3752 |
+
.premium-blog-align-right .premium-blog-inner-container,
|
3753 |
+
.premium-blog-align-right .premium-blog-post-tags-container {
|
3754 |
+
-webkit-box-pack: end;
|
3755 |
+
-webkit-justify-content: flex-end;
|
3756 |
+
-moz-box-pack: end;
|
3757 |
+
-ms-flex-pack: end;
|
3758 |
+
justify-content: flex-end; }
|
3759 |
+
|
3760 |
+
/* Pagination */
|
3761 |
+
.premium-blog-pagination-container {
|
3762 |
+
text-align: right; }
|
3763 |
+
.premium-blog-pagination-container span {
|
3764 |
+
cursor: default; }
|
3765 |
+
.premium-blog-pagination-container .page-numbers {
|
3766 |
+
display: inline-block;
|
3767 |
+
color: #000;
|
3768 |
+
line-height: 1;
|
3769 |
+
font-size: 1em;
|
3770 |
+
font-weight: 400;
|
3771 |
+
text-decoration: none;
|
3772 |
+
padding: 0.75em;
|
3773 |
+
margin: 0 0.4em 0.4em 0;
|
3774 |
+
-webkit-transition: all 0.2s ease-in-out;
|
3775 |
+
transition: all 0.2s ease-in-out; }
|
3776 |
+
|
3777 |
+
.premium-blog-wrap .premium-loading-feed {
|
3778 |
+
display: block;
|
3779 |
+
position: absolute;
|
3780 |
+
width: 100%;
|
3781 |
+
height: 100%;
|
3782 |
+
top: 0px;
|
3783 |
+
left: 0px;
|
3784 |
+
bottom: 0px;
|
3785 |
+
right: 0px;
|
3786 |
+
background: rgba(255, 255, 255, 0.2);
|
3787 |
+
-js-display: flex;
|
3788 |
+
display: -webkit-box;
|
3789 |
+
display: -webkit-flex;
|
3790 |
+
display: -moz-box;
|
3791 |
+
display: -ms-flexbox;
|
3792 |
+
display: flex;
|
3793 |
+
-webkit-box-align: center;
|
3794 |
+
-webkit-align-items: center;
|
3795 |
+
-moz-box-align: center;
|
3796 |
+
-ms-flex-align: center;
|
3797 |
+
align-items: center;
|
3798 |
+
z-index: 99; }
|
3799 |
+
|
3800 |
+
.premium-blog-wrap {
|
3801 |
+
-js-display: flex;
|
3802 |
+
display: -webkit-box;
|
3803 |
+
display: -webkit-flex;
|
3804 |
+
display: -moz-box;
|
3805 |
+
display: -ms-flexbox;
|
3806 |
+
display: flex;
|
3807 |
+
-webkit-flex-wrap: wrap;
|
3808 |
+
-ms-flex-wrap: wrap;
|
3809 |
+
flex-wrap: wrap; }
|
3810 |
+
.premium-blog-wrap ul.slick-dots {
|
3811 |
+
width: 100%; }
|
3812 |
+
|
3813 |
+
/*
|
3814 |
+
* List Layout
|
3815 |
+
*/
|
3816 |
+
.premium-blog-list .premium-blog-post-outer-container {
|
3817 |
+
width: 100%; }
|
3818 |
+
|
3819 |
+
/**
|
3820 |
+
* Even Layout
|
3821 |
+
*/
|
3822 |
+
.premium-blog-even .premium-blog-post-container {
|
3823 |
+
height: 100%; }
|
3824 |
+
|
3825 |
+
.premium-blog-even .slick-track {
|
3826 |
+
-js-display: flex;
|
3827 |
+
display: -webkit-box;
|
3828 |
+
display: -webkit-flex;
|
3829 |
+
display: -moz-box;
|
3830 |
+
display: -ms-flexbox;
|
3831 |
+
display: flex; }
|
3832 |
+
|
3833 |
+
.premium-blog-even .slick-slide {
|
3834 |
+
height: inherit !important; }
|
3835 |
+
|
3836 |
+
/**
|
3837 |
+
* Responsive Style
|
3838 |
+
*/
|
3839 |
+
@media (max-width: 768px) {
|
3840 |
+
.premium-blog-content-wrapper {
|
3841 |
+
top: 0;
|
3842 |
+
margin: 0;
|
3843 |
+
padding: 15px; }
|
3844 |
+
.premium-blog-skin-side {
|
3845 |
+
-webkit-box-orient: vertical;
|
3846 |
+
-webkit-box-direction: normal;
|
3847 |
+
-webkit-flex-direction: column;
|
3848 |
+
-moz-box-orient: vertical;
|
3849 |
+
-moz-box-direction: normal;
|
3850 |
+
-ms-flex-direction: column;
|
3851 |
+
flex-direction: column; } }
|
3852 |
+
|
3853 |
+
/************ Premium Team Members ************/
|
3854 |
+
/**********************************************/
|
3855 |
+
.premium-person-container {
|
3856 |
+
position: relative; }
|
3857 |
+
|
3858 |
+
.premium-person-image-container {
|
3859 |
+
position: relative;
|
3860 |
+
text-align: center; }
|
3861 |
+
.premium-person-image-container .premium-person-image-wrap {
|
3862 |
+
overflow: hidden; }
|
3863 |
+
|
3864 |
+
.premium-person-zoomout-effect .premium-person-image-container img,
|
3865 |
+
.premium-person-scale-effect .premium-person-image-container img {
|
3866 |
+
-webkit-transform: scale(1.2);
|
3867 |
+
-ms-transform: scale(1.2);
|
3868 |
+
transform: scale(1.2); }
|
3869 |
+
|
3870 |
+
.premium-person-sepia-effect .premium-person-image-container img {
|
3871 |
+
-webkit-filter: sepia(30%);
|
3872 |
+
filter: sepia(30%); }
|
3873 |
+
|
3874 |
+
.premium-person-bright-effect .premium-person-image-container img {
|
3875 |
+
-webkit-filter: brightness(1);
|
3876 |
+
filter: brightness(1); }
|
3877 |
+
|
3878 |
+
.premium-person-trans-effect .premium-person-image-container img {
|
3879 |
+
-webkit-transform: translateX(-15px) scale(1.1);
|
3880 |
+
-ms-transform: translateX(-15px) scale(1.1);
|
3881 |
+
transform: translateX(-15px) scale(1.1); }
|
3882 |
+
|
3883 |
+
.premium-person-zoomin-effect:hover .premium-person-image-container img {
|
3884 |
+
-webkit-transform: scale(1.2);
|
3885 |
+
-ms-transform: scale(1.2);
|
3886 |
+
transform: scale(1.2); }
|
3887 |
+
|
3888 |
+
.premium-person-zoomout-effect:hover .premium-person-image-container img {
|
3889 |
+
-webkit-transform: scale(1.1);
|
3890 |
+
-ms-transform: scale(1.1);
|
3891 |
+
transform: scale(1.1); }
|
3892 |
+
|
3893 |
+
.premium-person-scale-effect:hover .premium-person-image-container img {
|
3894 |
+
-webkit-transform: scale(1.3) rotate(5deg);
|
3895 |
+
-ms-transform: scale(1.3) rotate(5deg);
|
3896 |
+
transform: scale(1.3) rotate(5deg); }
|
3897 |
+
|
3898 |
+
.premium-person-grayscale-effect:hover .premium-person-image-container img {
|
3899 |
+
-webkit-filter: grayscale(100%);
|
3900 |
+
filter: grayscale(100%); }
|
3901 |
+
|
3902 |
+
.premium-person-blur-effect:hover .premium-person-image-container img {
|
3903 |
+
-webkit-filter: blur(3px);
|
3904 |
+
filter: blur(3px); }
|
3905 |
+
|
3906 |
+
.premium-person-sepia-effect:hover .premium-person-image-container img {
|
3907 |
+
-webkit-filter: sepia(0%);
|
3908 |
+
filter: sepia(0%); }
|
3909 |
+
|
3910 |
+
.premium-person-bright-effect:hover .premium-person-image-container img {
|
3911 |
+
-webkit-filter: brightness(1.2);
|
3912 |
+
filter: brightness(1.2); }
|
3913 |
+
|
3914 |
+
.premium-person-trans-effect:hover .premium-person-image-container img {
|
3915 |
+
-webkit-transform: translateX(0px) scale(1.1);
|
3916 |
+
-ms-transform: translateX(0px) scale(1.1);
|
3917 |
+
transform: translateX(0px) scale(1.1); }
|
3918 |
+
|
3919 |
+
.premium-person-container .premium-person-image-container img {
|
3920 |
+
width: 100%;
|
3921 |
+
height: 100%;
|
3922 |
+
-o-object-fit: cover;
|
3923 |
+
object-fit: cover;
|
3924 |
+
-webkit-transition: all 0.5s ease-in-out;
|
3925 |
+
transition: all 0.5s ease-in-out; }
|
3926 |
+
|
3927 |
+
.premium-person-style2 .premium-person-social {
|
3928 |
+
position: absolute;
|
3929 |
+
top: 0;
|
3930 |
+
left: 0;
|
3931 |
+
width: 100%;
|
3932 |
+
height: 100%;
|
3933 |
+
z-index: 2;
|
3934 |
+
-js-display: flex;
|
3935 |
+
display: -webkit-box;
|
3936 |
+
display: -webkit-flex;
|
3937 |
+
display: -moz-box;
|
3938 |
+
display: -ms-flexbox;
|
3939 |
+
display: flex;
|
3940 |
+
-webkit-box-pack: center;
|
3941 |
+
-webkit-justify-content: center;
|
3942 |
+
-moz-box-pack: center;
|
3943 |
+
-ms-flex-pack: center;
|
3944 |
+
justify-content: center;
|
3945 |
+
-webkit-box-align: center;
|
3946 |
+
-webkit-align-items: center;
|
3947 |
+
-moz-box-align: center;
|
3948 |
+
-ms-flex-align: center;
|
3949 |
+
align-items: center;
|
3950 |
+
-webkit-box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
|
3951 |
+
box-shadow: inset 0 0 120px 0 rgba(0, 0, 0, 0.5);
|
3952 |
+
-webkit-transition: all 0.5s linear 0s;
|
3953 |
+
transition: all 0.5s linear 0s;
|
3954 |
+
opacity: 0; }
|
3955 |
+
|
3956 |
+
.premium-person-style2 .premium-person-image-container:hover .premium-person-social {
|
3957 |
+
opacity: 1; }
|
3958 |
+
|
3959 |
+
.premium-person-list-item a {
|
3960 |
+
display: inline-block; }
|
3961 |
+
|
3962 |
+
.premium-person-style2 .premium-person-list-item a {
|
3963 |
+
opacity: 0;
|
3964 |
+
-webkit-transform: scale(0);
|
3965 |
+
-ms-transform: scale(0);
|
3966 |
+
transform: scale(0);
|
3967 |
+
-webkit-transition: all 0.5s ease-in-out 0s;
|
3968 |
+
transition: all 0.5s ease-in-out 0s; }
|
3969 |
+
|
3970 |
+
.premium-person-style2 .premium-person-image-container:hover .premium-person-list-item a {
|
3971 |
+
opacity: 1;
|
3972 |
+
-webkit-transform: scale(1);
|
3973 |
+
-ms-transform: scale(1);
|
3974 |
+
transform: scale(1); }
|
3975 |
+
|
3976 |
+
.premium-person-info-container {
|
3977 |
+
padding: 30px 15px; }
|
3978 |
+
|
3979 |
+
.premium-person-name {
|
3980 |
+
margin: 0 0 5px;
|
3981 |
+
font-weight: 700; }
|
3982 |
+
|
3983 |
+
.premium-person-title {
|
3984 |
+
margin: 0 0 20px;
|
3985 |
+
padding: 0; }
|
3986 |
+
|
3987 |
+
.premium-person-content {
|
3988 |
+
margin: 0 0 30px; }
|
3989 |
+
|
3990 |
+
/*Override Theme List Margin*/
|
3991 |
+
ul.premium-person-social-list {
|
3992 |
+
margin: 0px !important;
|
3993 |
+
padding: 0; }
|
3994 |
+
|
3995 |
+
.premium-person-social-list .premium-person-list-item {
|
3996 |
+
display: inline;
|
3997 |
+
list-style: none; }
|
3998 |
+
|
3999 |
+
.premium-person-social-list li {
|
4000 |
+
position: relative;
|
4001 |
+
bottom: 0px;
|
4002 |
+
-webkit-transition: all 0.2s ease-in-out;
|
4003 |
+
transition: all 0.2s ease-in-out; }
|
4004 |
+
.premium-person-social-list li i {
|
4005 |
+
position: relative;
|
4006 |
+
bottom: 0px;
|
4007 |
+
-webkit-transition: all 0.2s ease-in-out;
|
4008 |
+
transition: all 0.2s ease-in-out; }
|
4009 |
+
|
4010 |
+
.premium-person-defaults-yes li.premium-person-facebook:hover a {
|
4011 |
+
background-color: #3b5998 !important; }
|
4012 |
+
|
4013 |
+
.premium-person-defaults-yes li.premium-person-twitter:hover a {
|
4014 |
+
background-color: #55acee !important; }
|
4015 |
+
|
4016 |
+
.premium-person-defaults-yes li.premium-person-linkedin:hover a {
|
4017 |
+
background-color: #0077b5 !important; }
|
4018 |
+
|
4019 |
+
.premium-person-defaults-yes li.premium-person-google:hover a {
|
4020 |
+
background-color: #dc4e41 !important; }
|
4021 |
+
|
4022 |
+
.premium-person-defaults-yes li.premium-person-youtube:hover a {
|
4023 |
+
background-color: #b31217 !important; }
|
4024 |
+
|
4025 |
+
.premium-person-defaults-yes li.premium-person-instagram:hover a {
|
4026 |
+
background-color: #e4405f !important; }
|
4027 |
+
|
4028 |
+
.premium-person-defaults-yes li.premium-person-skype:hover a {
|
4029 |
+
background-color: #00aff0 !important; }
|
4030 |
+
|
4031 |
+
.premium-person-defaults-yes li.premium-person-pinterest:hover a {
|
4032 |
+
background-color: #bd081c !important; }
|
4033 |
+
|
4034 |
+
.premium-person-defaults-yes li.premium-person-dribbble:hover a {
|
4035 |
+
background-color: #ea4c89 !important; }
|
4036 |
+
|
4037 |
+
.premium-person-defaults-yes li.premium-person-mail:hover a {
|
4038 |
+
background-color: #b23121 !important; }
|
4039 |
+
|
4040 |
+
.premium-person-defaults-yes li.premium-person-behance:hover a {
|
4041 |
+
background-color: #1769ff !important; }
|
4042 |
+
|
4043 |
+
.premium-person-defaults-yes li.premium-person-whatsapp:hover a {
|
4044 |
+
background-color: #25d366 !important; }
|
4045 |
+
|
4046 |
+
.premium-person-defaults-yes li.premium-person-telegram:hover a {
|
4047 |
+
background-color: #0088cc !important; }
|
4048 |
+
|
4049 |
+
.premium-person-defaults-yes li.premium-person-site:hover a {
|
4050 |
+
background-color: #0055a5 !important; }
|
4051 |
+
|
4052 |
+
.premium-person-social-list li:hover a {
|
4053 |
+
-webkit-box-shadow: none;
|
4054 |
+
box-shadow: none; }
|
4055 |
+
|
4056 |
+
.premium-person-social-list li a:focus {
|
4057 |
+
-webkit-box-shadow: none;
|
4058 |
+
box-shadow: none;
|
4059 |
+
outline: none; }
|
4060 |
+
|
4061 |
+
.premium-person-social-list li i {
|
4062 |
+
font-size: 18px; }
|
4063 |
+
|
4064 |
+
.elementor-widget-premium-addon-person .elementor-widget-container {
|
4065 |
+
-js-display: flex;
|
4066 |
+
display: -webkit-box;
|
4067 |
+
display: -webkit-flex;
|
4068 |
+
display: -moz-box;
|
4069 |
+
display: -ms-flexbox;
|
4070 |
+
display: flex;
|
4071 |
+
-webkit-box-pack: center;
|
4072 |
+
-webkit-justify-content: center;
|
4073 |
+
-moz-box-pack: center;
|
4074 |
+
-ms-flex-pack: center;
|
4075 |
+
justify-content: center; }
|
4076 |
+
|
4077 |
+
.premium-persons-container.multiple-persons {
|
4078 |
+
-js-display: flex;
|
4079 |
+
display: -webkit-box;
|
4080 |
+
display: -webkit-flex;
|
4081 |
+
display: -moz-box;
|
4082 |
+
display: -ms-flexbox;
|
4083 |
+
display: flex;
|
4084 |
+
-webkit-flex-wrap: wrap;
|
4085 |
+
-ms-flex-wrap: wrap;
|
4086 |
+
flex-wrap: wrap;
|
4087 |
+
width: 100%; }
|
4088 |
+
|
4089 |
+
.premium-person-style1 .premium-person-container {
|
4090 |
+
overflow: hidden; }
|
4091 |
+
.premium-person-style1 .premium-person-container .premium-person-info {
|
4092 |
+
position: absolute;
|
4093 |
+
top: auto;
|
4094 |
+
right: 0;
|
4095 |
+
left: 0;
|
4096 |
+
-webkit-transition: all 500ms ease 0s;
|
4097 |
+
transition: all 500ms ease 0s;
|
4098 |
+
-webkit-transform: translate3d(0, 100%, 0);
|
4099 |
+
transform: translate3d(0, 100%, 0); }
|
4100 |
+
.premium-person-style1 .premium-person-container:hover .premium-person-info {
|
4101 |
+
-webkit-transform: translate3d(0, 0, 0);
|
4102 |
+
transform: translate3d(0, 0, 0);
|
4103 |
+
bottom: -1px !important; }
|
4104 |
+
|
4105 |
+
.premium-person-style1 .premium-person-social-list li:hover {
|
4106 |
+
bottom: 5px; }
|
4107 |
+
|
4108 |
+
.premium-person-style1.multiple-persons:not([data-persons-equal="yes"]) {
|
4109 |
+
-webkit-box-align: start;
|
4110 |
+
-webkit-align-items: flex-start;
|
4111 |
+
-moz-box-align: start;
|
4112 |
+
-ms-flex-align: start;
|
4113 |
+
align-items: flex-start; }
|
4114 |
+
|
4115 |
+
.premium-person-style1 .slick-track {
|
4116 |
+
-js-display: flex;
|
4117 |
+
display: -webkit-box;
|
4118 |
+
display: -webkit-flex;
|
4119 |
+
display: -moz-box;
|
4120 |
+
display: -ms-flexbox;
|
4121 |
+
display: flex; }
|
4122 |
+
|
4123 |
+
.premium-person-style1 .slick-slide {
|
4124 |
+
height: inherit !important; }
|
4125 |
+
|
4126 |
+
.premium-person-style1.multiple-persons[data-persons-equal="yes"] .premium-person-image-container,
|
4127 |
+
.premium-person-style1.multiple-persons[data-persons-equal="yes"] .premium-person-image-wrap {
|
4128 |
+
height: 100%; }
|
4129 |
+
|
4130 |
+
.premium-person-style3 .premium-person-info-container {
|
4131 |
+
position: absolute;
|
4132 |
+
top: 0;
|
4133 |
+
left: 0;
|
4134 |
+
width: 100%;
|
4135 |
+
height: 100%;
|
4136 |
+
-js-display: flex;
|
4137 |
+
display: -webkit-box;
|
4138 |
+
display: -webkit-flex;
|
4139 |
+
display: -moz-box;
|
4140 |
+
display: -ms-flexbox;
|
4141 |
+
display: flex;
|
4142 |
+
-webkit-box-orient: vertical;
|
4143 |
+
-webkit-box-direction: normal;
|
4144 |
+
-webkit-flex-direction: column;
|
4145 |
+
-moz-box-orient: vertical;
|
4146 |
+
-moz-box-direction: normal;
|
4147 |
+
-ms-flex-direction: column;
|
4148 |
+
flex-direction: column;
|
4149 |
+
-webkit-box-pack: justify;
|
4150 |
+
-webkit-justify-content: space-between;
|
4151 |
+
-moz-box-pack: justify;
|
4152 |
+
-ms-flex-pack: justify;
|
4153 |
+
justify-content: space-between; }
|
4154 |
+
|
4155 |
+
.premium-person-style3 .premium-person-title-desc-wrap {
|
4156 |
+
-js-display: flex;
|
4157 |
+
display: -webkit-box;
|
4158 |
+
display: -webkit-flex;
|
4159 |
+
display: -moz-box;
|
4160 |
+
display: -ms-flexbox;
|
4161 |
+
display: flex;
|
4162 |
+
-webkit-box-orient: horizontal;
|
4163 |
+
-webkit-box-direction: reverse;
|
4164 |
+
-webkit-flex-direction: row-reverse;
|
4165 |
+
-moz-box-orient: horizontal;
|
4166 |
+
-moz-box-direction: reverse;
|
4167 |
+
-ms-flex-direction: row-reverse;
|
4168 |
+
flex-direction: row-reverse;
|
4169 |
+
-webkit-box-pack: justify;
|
4170 |
+
-webkit-justify-content: space-between;
|
4171 |
+
-moz-box-pack: justify;
|
4172 |
+
-ms-flex-pack: justify;
|
4173 |
+
justify-content: space-between;
|
4174 |
+
-webkit-box-align: start;
|
4175 |
+
-webkit-align-items: flex-start;
|
4176 |
+
-moz-box-align: start;
|
4177 |
+
-ms-flex-align: start;
|
4178 |
+
align-items: flex-start; }
|
4179 |
+
|
4180 |
+
.premium-person-style3 .premium-person-name-icons-wrap {
|
4181 |
+
-js-display: flex;
|
4182 |
+
display: -webkit-box;
|
4183 |
+
display: -webkit-flex;
|
4184 |
+
display: -moz-box;
|
4185 |
+
display: -ms-flexbox;
|
4186 |
+
display: flex;
|
4187 |
+
-webkit-box-pack: justify;
|
4188 |
+
-webkit-justify-content: space-between;
|
4189 |
+
-moz-box-pack: justify;
|
4190 |
+
-ms-flex-pack: justify;
|
4191 |
+
justify-content: space-between;
|
4192 |
+
-webkit-box-align: end;
|
4193 |
+
-webkit-align-items: flex-end;
|
4194 |
+
-moz-box-align: end;
|
4195 |
+
-ms-flex-align: end;
|
4196 |
+
align-items: flex-end; }
|
4197 |
+
|
4198 |
+
.premium-person-style3 .premium-person-title {
|
4199 |
+
opacity: 0;
|
4200 |
+
-webkit-transition: all 0.3s ease;
|
4201 |
+
transition: all 0.3s ease;
|
4202 |
+
width: 0; }
|
4203 |
+
.premium-person-style3 .premium-person-title span {
|
4204 |
+
display: inline-block; }
|
4205 |
+
|
4206 |
+
.premium-person-style3 .premium-person-name {
|
4207 |
+
padding-left: 10px; }
|
4208 |
+
|
4209 |
+
.premium-person-style3 .premium-person-social-list {
|
4210 |
+
-js-display: flex;
|
4211 |
+
display: -webkit-box;
|
4212 |
+
display: -webkit-flex;
|
4213 |
+
display: -moz-box;
|
4214 |
+
display: -ms-flexbox;
|
4215 |
+
display: flex;
|
4216 |
+
-webkit-box-orient: vertical;
|
4217 |
+
-webkit-box-direction: normal;
|
4218 |
+
-webkit-flex-direction: column;
|
4219 |
+
-moz-box-orient: vertical;
|
4220 |
+
-moz-box-direction: normal;
|
4221 |
+
-ms-flex-direction: column;
|
4222 |
+
flex-direction: column;
|
4223 |
+
-webkit-transform: translateY(20px);
|
4224 |
+
-ms-transform: translateY(20px);
|
4225 |
+
transform: translateY(20px);
|
4226 |
+
opacity: 0;
|
4227 |
+
-webkit-transition: all 0.3s ease;
|
4228 |
+
transition: all 0.3s ease; }
|
4229 |
+
|
4230 |
+
.premium-person-style3 .premium-person-list-item {
|
4231 |
+
line-height: 0; }
|
4232 |
+
.premium-person-style3 .premium-person-list-item a {
|
4233 |
+
padding: 5px 10px 0 0;
|
4234 |
+
margin: 5px 0; }
|
4235 |
+
|
4236 |
+
.premium-person-style3 .premium-person-container:hover .premium-person-title {
|
4237 |
+
opacity: 1; }
|
4238 |
+
|
4239 |
+
.premium-person-style3 .premium-person-container:hover .premium-person-social-list {
|
4240 |
+
opacity: 1;
|
4241 |
+
-webkit-transform: translateY(0);
|
4242 |
+
-ms-transform: translateY(0);
|
4243 |
+
transform: translateY(0); }
|
4244 |
+
|
4245 |
+
.premium-persons-title-cw .premium-person-title {
|
4246 |
+
-webkit-transform: translateX(15px) rotate(90deg);
|
4247 |
+
-ms-transform: translateX(15px) rotate(90deg);
|
4248 |
+
transform: translateX(15px) rotate(90deg);
|
4249 |
+
-webkit-transform-origin: top;
|
4250 |
+
-ms-transform-origin: top;
|
4251 |
+
transform-origin: top; }
|
4252 |
+
|
4253 |
+
.premium-persons-title-cw .premium-person-container:hover .premium-person-title {
|
4254 |
+
-webkit-transform: translateX(0) rotate(90deg);
|
4255 |
+
-ms-transform: translateX(0) rotate(90deg);
|
4256 |
+
transform: translateX(0) rotate(90deg); }
|
4257 |
+
|
4258 |
+
.premium-persons-title-ccw .premium-person-title {
|
4259 |
+
width: auto;
|
4260 |
+
margin-right: 20px;
|
4261 |
+
-webkit-transform: translateX(15px) rotate(-90deg);
|
4262 |
+
-ms-transform: translateX(15px) rotate(-90deg);
|
4263 |
+
transform: translateX(15px) rotate(-90deg);
|
4264 |
+
-webkit-transform-origin: center right;
|
4265 |
+
-ms-transform-origin: center right;
|
4266 |
+
transform-origin: center right; }
|
4267 |
+
|
4268 |
+
.premium-persons-title-ccw .premium-person-container:hover .premium-person-title {
|
4269 |
+
-webkit-transform: translateX(0) rotate(-90deg);
|
4270 |
+
-ms-transform: translateX(0) rotate(-90deg);
|
4271 |
+
transform: translateX(0) rotate(-90deg); }
|
4272 |
+
|
4273 |
+
/**************** Premium Fancy Text *******************/
|
4274 |
+
/*******************************************************/
|
4275 |
+
.premium-suffix-text,
|
4276 |
+
.premium-fancy-text,
|
4277 |
+
.premium-prefix-text {
|
4278 |
+
font-size: 40px; }
|
4279 |
+
|
4280 |
+
.premium-fancy-text-wrapper .premium-fancy-list-items {
|
4281 |
+
list-style: none; }
|
4282 |
+
|
4283 |
+
.premium-fancy-text-wrapper .premium-fancy-text-span-align {
|
4284 |
+
vertical-align: top; }
|
4285 |
+
|
4286 |
+
.premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-text-items-wrapper {
|
4287 |
+
margin: 0;
|
4288 |
+
padding: 0;
|
4289 |
+
border: none;
|
4290 |
+
position: relative; }
|
4291 |
+
|
4292 |
+
.premium-fancy-text-wrapper:not(.typing):not(.slide) .premium-fancy-list-items {
|
4293 |
+
position: absolute;
|
4294 |
+
top: 0;
|
4295 |
+
left: 0;
|
4296 |
+
display: inline-block; }
|
4297 |
+
|
4298 |
+
.premium-fancy-text-wrapper.zoomout .premium-fancy-item-hidden {
|
4299 |
+
opacity: 0;
|
4300 |
+
-webkit-animation: pa-zoom-out 0.8s;
|
4301 |
+
animation: pa-zoom-out 0.8s; }
|
4302 |
+
|
4303 |
+
.premium-fancy-text-wrapper.zoomout .premium-fancy-item-visible {
|
4304 |
+
position: relative !important;
|
4305 |
+
-webkit-animation: pa-zoom-in 0.8s;
|
4306 |
+
animation: pa-zoom-in 0.8s; }
|
4307 |
+
|
4308 |
+
.premium-fancy-text-wrapper.zoomout .premium-fancy-text-items-wrapper {
|
4309 |
+
-webkit-perspective: 300px;
|
4310 |
+
perspective: 300px; }
|
4311 |
+
|
4312 |
+
.premium-fancy-text-wrapper.rotate .premium-fancy-list-items {
|
4313 |
+
-webkit-transform-origin: 50% 100%;
|
4314 |
+
-ms-transform-origin: 50% 100%;
|
4315 |
+
transform-origin: 50% 100%; }
|
4316 |
+
|
4317 |
+
.premium-fancy-text-wrapper.rotate .premium-fancy-item-hidden {
|
4318 |
+
opacity: 0;
|
4319 |
+
-webkit-transform: rotateX(180deg);
|
4320 |
+
transform: rotateX(180deg);
|
4321 |
+
-webkit-animation: pa-rotate-out 1.2s;
|
4322 |
+
animation: pa-rotate-out 1.2s; }
|
4323 |
+
|
4324 |
+
.premium-fancy-text-wrapper.rotate .premium-fancy-item-visible {
|
4325 |
+
position: relative !important;
|
4326 |
+
-webkit-transform: rotateX(0deg);
|
4327 |
+
transform: rotateX(0deg);
|
4328 |
+
-webkit-animation: pa-rotate-in 1.2s;
|
4329 |
+
animation: pa-rotate-in 1.2s; }
|
4330 |
+
|
4331 |
+
.premium-fancy-text-wrapper.custom .premium-fancy-item-hidden {
|
4332 |
+
opacity: 0; }
|
4333 |
+
|
4334 |
+
.premium-fancy-text-wrapper.custom .premium-fancy-item-visible {
|
4335 |
+
position: relative !important; }
|
4336 |
+
|
4337 |
+
.premium-fancy-text-wrapper.auto-fade .premium-fancy-text {
|
4338 |
+
display: inline-block;
|
4339 |
+
width: 200px;
|
4340 |
+
font-weight: 400; }
|
4341 |
+
|
4342 |
+
.premium-fancy-text-wrapper.auto-fade .premium-fancy-svg-text {
|
4343 |
+
position: relative;
|
4344 |
+
vertical-align: sub; }
|
4345 |
+
|
4346 |
+
.premium-fancy-text-wrapper.auto-fade g > text {
|
4347 |
+
text-anchor: start;
|
4348 |
+
shape-rendering: crispEdges;
|
4349 |
+
opacity: 0;
|
4350 |
+
font-size: 300px;
|
4351 |
+
-webkit-animation-name: pa-auto-fade;
|
4352 |
+
animation-name: pa-auto-fade;
|
4353 |
+
-moz-animation-name: pa-auto-fade;
|
4354 |
+
-webkit-animation-duration: 9s;
|
4355 |
+
animation-duration: 9s;
|
4356 |
+
-webkit-animation-timing-function: linear;
|
4357 |
+
animation-timing-function: linear;
|
4358 |
+
-webkit-animation-iteration-count: infinite;
|
4359 |
+
animation-iteration-count: infinite; }
|
4360 |
+
|
4361 |
+
.premium-fancy-text-wrapper.auto-fade g > text:nth-child(1) {
|
4362 |
+
-webkit-animation-delay: 0s;
|
4363 |
+
animation-delay: 0s; }
|
4364 |
+
|
4365 |
+
.premium-fancy-text-wrapper.auto-fade g > text:nth-child(2) {
|
4366 |
+
-webkit-animation-delay: 3s;
|
4367 |
+
animation-delay: 3s; }
|
4368 |
+
|
4369 |
+
.premium-fancy-text-wrapper.auto-fade g > text:nth-child(3) {
|
4370 |
+
-webkit-animation-delay: 6s;
|
4371 |
+
animation-delay: 6s; }
|
4372 |
+
|
4373 |
+
@-webkit-keyframes pa-auto-fade {
|
4374 |
+
0% {
|
4375 |
+
opacity: 0; }
|
4376 |
+
20% {
|
4377 |
+
opacity: 1; }
|
4378 |
+
35% {
|
4379 |
+
opacity: 0; }
|
4380 |
+
100% {
|
4381 |
+
opacity: 0; } }
|
4382 |
+
|
4383 |
+
@keyframes pa-auto-fade {
|
4384 |
+
0% {
|
4385 |
+
opacity: 0; }
|
4386 |
+
20% {
|
4387 |
+
opacity: 1; }
|
4388 |
+
35% {
|
4389 |
+
opacity: 0; }
|
4390 |
+
100% {
|
4391 |
+
opacity: 0; } }
|
4392 |
+
|
4393 |
+
@-webkit-keyframes pa-zoom-in {
|
4394 |
+
0% {
|
4395 |
+
opacity: 0;
|
4396 |
+
-webkit-transform: translateZ(100px);
|
4397 |
+
transform: translateZ(100px); }
|
4398 |
+
100% {
|
4399 |
+
opacity: 1;
|
4400 |
+
-webkit-transform: translateZ(0);
|
4401 |
+
transform: translateZ(0); } }
|
4402 |
+
|
4403 |
+
@keyframes pa-zoom-in {
|
4404 |
+
0% {
|
4405 |
+
opacity: 0;
|
4406 |
+
-webkit-transform: translateZ(100px);
|
4407 |
+
transform: translateZ(100px); }
|
4408 |
+
100% {
|
4409 |
+
opacity: 1;
|
4410 |
+
-webkit-transform: translateZ(0);
|
4411 |
+
transform: translateZ(0); } }
|
4412 |
+
|
4413 |
+
@-webkit-keyframes pa-zoom-out {
|
4414 |
+
0% {
|
4415 |
+
opacity: 1;
|
4416 |
+
-webkit-transform: translateZ(0);
|
4417 |
+
transform: translateZ(0); }
|
4418 |
+
100% {
|
4419 |
+
opacity: 0;
|
4420 |
+
-webkit-transform: translateZ(-100px);
|
4421 |
+
transform: translateZ(-100px); } }
|
4422 |
+
|
4423 |
+
@keyframes pa-zoom-out {
|
4424 |
+
0% {
|
4425 |
+
opacity: 1;
|
4426 |
+
-webkit-transform: translateZ(0);
|
4427 |
+
transform: translateZ(0); }
|
4428 |
+
100% {
|
4429 |
+
opacity: 0;
|
4430 |
+
-webkit-transform: translateZ(-100px);
|
4431 |
+
transform: translateZ(-100px); } }
|
4432 |
+
|
4433 |
+
@-webkit-keyframes pa-rotate-in {
|
4434 |
+
0% {
|
4435 |
+
opacity: 0;
|
4436 |
+
-webkit-transform: rotateX(180deg);
|
4437 |
+
transform: rotateX(180deg); }
|
4438 |
+
35% {
|
4439 |
+
opacity: 0;
|
4440 |
+
-webkit-transform: rotateX(120deg);
|
4441 |
+
transform: rotateX(120deg); }
|
4442 |
+
65% {
|
4443 |
+
opacity: 0; }
|
4444 |
+
100% {
|
4445 |
+
opacity: 1;
|
4446 |
+
-webkit-transform: rotateX(360deg);
|
4447 |
+
transform: rotateX(360deg); } }
|
4448 |
+
|
4449 |
+
@keyframes pa-rotate-in {
|
4450 |
+
0% {
|
4451 |
+
opacity: 0;
|
4452 |
+
-webkit-transform: rotateX(180deg);
|
4453 |
+
transform: rotateX(180deg); }
|
4454 |
+
35% {
|
4455 |
+
opacity: 0;
|
4456 |
+
-webkit-transform: rotateX(120deg);
|
4457 |
+
transform: rotateX(120deg); }
|
4458 |
+
65% {
|
4459 |
+
opacity: 0; }
|
4460 |
+
100% {
|
4461 |
+
opacity: 1;
|
4462 |
+
-webkit-transform: rotateX(360deg);
|
4463 |
+
transform: rotateX(360deg); } }
|
4464 |
+
|
4465 |
+
@-webkit-keyframes pa-rotate-out {
|
4466 |
+
0% {
|
4467 |
+
opacity: 1;
|
4468 |
+
-webkit-transform: rotateX(0deg);
|
4469 |
+
transform: rotateX(0deg); }
|
4470 |
+
35% {
|
4471 |
+
opacity: 1;
|
4472 |
+
-webkit-transform: rotateX(-40deg);
|
4473 |
+
transform: rotateX(-40deg); }
|
4474 |
+
65% {
|
4475 |
+
opacity: 0; }
|
4476 |
+
100% {
|
4477 |
+
opacity: 0;
|
4478 |
+
-webkit-transform: rotateX(180deg);
|
4479 |
+
transform: rotateX(180deg); } }
|
4480 |
+
|
4481 |
+
@keyframes pa-rotate-out {
|
4482 |
+
0% {
|
4483 |
+
opacity: 1;
|
4484 |
+
-webkit-transform: rotateX(0deg);
|
4485 |
+
transform: rotateX(0deg); }
|
4486 |
+
35% {
|
4487 |
+
opacity: 1;
|
4488 |
+
-webkit-transform: rotateX(-40deg);
|
4489 |
+
transform: rotateX(-40deg); }
|
4490 |
+
65% {
|
4491 |
+
opacity: 0; }
|
4492 |
+
100% {
|
4493 |
+
opacity: 0;
|
4494 |
+
-webkit-transform: rotateX(180deg);
|
4495 |
+
transform: rotateX(180deg); } }
|
4496 |
+
|
4497 |
+
/**************** Premium Pricing Table ****************/
|
4498 |
+
/*******************************************************/
|
4499 |
+
.premium-pricing-table-container {
|
4500 |
+
position: relative;
|
4501 |
+
overflow: hidden;
|
4502 |
+
text-align: center;
|
4503 |
+
-webkit-transition: all 0.3s ease-in-out;
|
4504 |
+
transition: all 0.3s ease-in-out; }
|
4505 |
+
|
4506 |
+
.premium-pricing-icon-container {
|
4507 |
+
-js-display: flex;
|
4508 |
+
display: -webkit-box;
|
4509 |
+
display: -webkit-flex;
|
4510 |
+
display: -moz-box;
|
4511 |
+
display: -ms-flexbox;
|
4512 |
+
display: flex;
|
4513 |
+
-webkit-box-pack: center;
|
4514 |
+
-webkit-justify-content: center;
|
4515 |
+
-moz-box-pack: center;
|
4516 |
+
-ms-flex-pack: center;
|
4517 |
+
justify-content: center;
|
4518 |
+
line-height: 0; }
|
4519 |
+
.premium-pricing-icon-container .premium-pricing-icon {
|
4520 |
+
display: inline-block; }
|
4521 |
+
.premium-pricing-icon-container .premium-pricing-image {
|
4522 |
+
overflow: hidden; }
|
4523 |
+
.premium-pricing-icon-container .premium-pricing-image img {
|
4524 |
+
width: 25px;
|
4525 |
+
height: 25px;
|
4526 |
+
-o-object-fit: cover;
|
4527 |
+
object-fit: cover; }
|
4528 |
+
|
4529 |
+
.premium-badge-left {
|
4530 |
+
position: absolute;
|
4531 |
+
top: 0; }
|
4532 |
+
|
4533 |
+
.premium-badge-right {
|
4534 |
+
position: absolute;
|
4535 |
+
top: 0;
|
4536 |
+
right: 0; }
|
4537 |
+
|
4538 |
+
.premium-badge-left {
|
4539 |
+
left: 0; }
|
4540 |
+
|
4541 |
+
.premium-badge-triangle.premium-badge-left .corner {
|
4542 |
+
width: 0;
|
4543 |
+
height: 0;
|
4544 |
+
border-top: 150px solid;
|
4545 |
+
border-bottom: 150px solid transparent;
|
4546 |
+
border-right: 150px solid transparent; }
|
4547 |
+
|
4548 |
+
.premium-badge-triangle.premium-badge-right .corner {
|
4549 |
+
width: 0;
|
4550 |
+
height: 0;
|
4551 |
+
border-bottom: 150px solid transparent;
|
4552 |
+
border-right: 150px solid;
|
4553 |
+
border-left: 150px solid transparent; }
|
4554 |
+
|
4555 |
+
.premium-badge-triangle span {
|
4556 |
+
position: absolute;
|
4557 |
+
top: 35px;
|
4558 |
+
width: 100px;
|
4559 |
+
text-align: center;
|
4560 |
+
-webkit-transform: rotate(-45deg);
|
4561 |
+
-ms-transform: rotate(-45deg);
|
4562 |
+
transform: rotate(-45deg);
|
4563 |
+
display: block;
|
4564 |
+
text-transform: uppercase; }
|
4565 |
+
|
4566 |
+
.premium-badge-triangle.premium-badge-right span {
|
4567 |
+
-webkit-transform: rotate(45deg);
|
4568 |
+
-ms-transform: rotate(45deg);
|
4569 |
+
transform: rotate(45deg);
|
4570 |
+
right: 0; }
|
4571 |
+
|
4572 |
+
.premium-badge-circle {
|
4573 |
+
min-width: 4em;
|
4574 |
+
min-height: 4em;
|
4575 |
+
line-height: 4em;
|
4576 |
+
text-align: center;
|
4577 |
+
-webkit-border-radius: 100%;
|
4578 |
+
border-radius: 100%;
|
4579 |
+
position: absolute;
|
4580 |
+
z-index: 1; }
|
4581 |
+
|
4582 |
+
.premium-badge-stripe {
|
4583 |
+
position: absolute;
|
4584 |
+
-webkit-transform: rotate(90deg);
|
4585 |
+
-ms-transform: rotate(90deg);
|
4586 |
+
transform: rotate(90deg);
|
4587 |
+
width: 15em;
|
4588 |
+
overflow: hidden;
|
4589 |
+
height: 15em; }
|
4590 |
+
.premium-badge-stripe.premium-badge-left {
|
4591 |
+
-webkit-transform: rotate(0);
|
4592 |
+
-ms-transform: rotate(0);
|
4593 |
+
transform: rotate(0); }
|
4594 |
+
.premium-badge-stripe .corner {
|
4595 |
+
text-align: center;
|
4596 |
+
left: 0;
|
4597 |
+
width: 150%;
|
4598 |
+
-webkit-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
|
4599 |
+
-ms-transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
|
4600 |
+
transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
|
4601 |
+
margin-top: 35px;
|
4602 |
+
font-size: 13px;
|
4603 |
+
line-height: 2;
|
4604 |
+
font-weight: 800;
|
4605 |
+
text-transform: uppercase; }
|
4606 |
+
|
4607 |
+
.premium-badge-flag .corner {
|
4608 |
+
text-align: center;
|
4609 |
+
-webkit-border-radius: 4px 4px 0 4px;
|
4610 |
+
border-radius: 4px 4px 0 4px;
|
4611 |
+
padding: 3px 15px;
|
4612 |
+
position: absolute;
|
4613 |
+
top: 10%;
|
4614 |
+
right: -8px; }
|
4615 |
+
.premium-badge-flag .corner::before, .premium-badge-flag .corner::after {
|
4616 |
+
content: "";
|
4617 |
+
display: block;
|
4618 |
+
position: absolute;
|
4619 |
+
width: 0;
|
4620 |
+
height: 0;
|
4621 |
+
top: 100%;
|
4622 |
+
right: 0;
|
4623 |
+
border-bottom: 8px solid transparent; }
|
4624 |
+
|
4625 |
+
.elementor-widget-premium-addon-pricing-table .elementor-widget-container {
|
4626 |
+
overflow: visible !important; }
|
4627 |
+
|
4628 |
+
.premium-badge-flag .corner::after {
|
4629 |
+
border-left: 8px solid rgba(0, 0, 0, 0.2); }
|
4630 |
+
|
4631 |
+
.premium-pricing-price-currency {
|
4632 |
+
position: relative; }
|
4633 |
+
|
4634 |
+
.premium-pricing-button-container {
|
4635 |
+
display: block; }
|
4636 |
+
|
4637 |
+
.premium-pricing-list {
|
4638 |
+
-js-display: flex;
|
4639 |
+
display: -webkit-box;
|
4640 |
+
display: -webkit-flex;
|
4641 |
+
display: -moz-box;
|
4642 |
+
display: -ms-flexbox;
|
4643 |
+
display: flex;
|
4644 |
+
-webkit-box-orient: vertical;
|
4645 |
+
-webkit-box-direction: normal;
|
4646 |
+
-webkit-flex-direction: column;
|
4647 |
+
-moz-box-orient: vertical;
|
4648 |
+
-moz-box-direction: normal;
|
4649 |
+
-ms-flex-direction: column;
|
4650 |
+
flex-direction: column;
|
4651 |
+
list-style-type: none;
|
4652 |
+
margin: 0; }
|
4653 |
+
.premium-pricing-list .premium-pricing-list-item {
|
4654 |
+
-js-display: flex;
|
4655 |
+
display: -webkit-box;
|
4656 |
+
display: -webkit-flex;
|
4657 |
+
display: -moz-box;
|
4658 |
+
display: -ms-flexbox;
|
4659 |
+
display: flex;
|
4660 |
+
-webkit-box-align: center;
|
4661 |
+
-webkit-align-items: center;
|
4662 |
+
-moz-box-align: center;
|
4663 |
+
-ms-flex-align: center;
|
4664 |
+
align-items: center; }
|
4665 |
+
.premium-pricing-list .premium-pricing-list-item svg {
|
4666 |
+
width: 50px;
|
4667 |
+
height: 50px; }
|
4668 |
+
.premium-pricing-list .premium-pricing-list-item img {
|
4669 |
+
width: 30px;
|
4670 |
+
height: 30px;
|
4671 |
+
-o-object-fit: cover;
|
4672 |
+
object-fit: cover; }
|
4673 |
+
.premium-pricing-list .premium-pricing-list-span {
|
4674 |
+
position: relative; }
|
4675 |
+
.premium-pricing-list .list-item-tooltip {
|
4676 |
+
border-bottom: 1px dotted; }
|
4677 |
+
.premium-pricing-list .premium-pricing-list-tooltip {
|
4678 |
+
position: absolute;
|
4679 |
+
top: -webkit-calc(100% + 1px);
|
4680 |
+
top: calc(100% + 1px);
|
4681 |
+
left: 0;
|
4682 |
+
visibility: hidden;
|
4683 |
+
padding: 15px 20px;
|
4684 |
+
-webkit-border-radius: 5px;
|
4685 |
+
border-radius: 5px;
|
4686 |
+
min-width: 200px;
|
4687 |
+
overflow: hidden;
|
4688 |
+
text-align: left;
|
4689 |
+
font-size: 0.8rem;
|
4690 |
+
color: #fff;
|
4691 |
+
background-color: #aaa; }
|
4692 |
+
|
4693 |
+
.premium-pricing-features-left .premium-pricing-list-span {
|
4694 |
+
text-align: left; }
|
4695 |
+
|
4696 |
+
.premium-pricing-features-center .premium-pricing-list-span {
|
4697 |
+
text-align: center; }
|
4698 |
+
|
4699 |
+
.premium-pricing-features-right .premium-pricing-list-span {
|
4700 |
+
text-align: right; }
|
4701 |
+
|
4702 |
+
.premium-pricing-list-span:hover .premium-pricing-list-tooltip {
|
4703 |
+
z-index: 99;
|
4704 |
+
visibility: visible;
|
4705 |
+
opacity: 1; }
|
4706 |
+
|
4707 |
+
.premium-pricing-slashed-price-value {
|
4708 |
+
display: inline-block;
|
4709 |
+
font-size: 20px;
|
4710 |
+
font-weight: 400;
|
4711 |
+
margin-right: 5px; }
|
4712 |
+
|
4713 |
+
.premium-pricing-price-value {
|
4714 |
+
font-size: 70px; }
|
4715 |
+
|
4716 |
+
.premium-pricing-description-container li {
|
4717 |
+
list-style-position: inside;
|
4718 |
+
text-indent: -40px; }
|
4719 |
+
|
4720 |
+
@-moz-document url-prefix() {
|
4721 |
+
.premium-pricing-description-container li {
|
4722 |
+
text-indent: 0px; } }
|
4723 |
+
|
4724 |
+
.premium-pricing-price-button {
|
4725 |
+
display: block;
|
4726 |
+
padding: 6px 12px;
|
4727 |
+
line-height: 1.42857143;
|
4728 |
+
text-align: center;
|
4729 |
+
color: #fff;
|
4730 |
+
background: #6ec1e4;
|
4731 |
+
margin-bottom: 0;
|
4732 |
+
-webkit-transition: all 0.3s ease-in-out;
|
4733 |
+
transition: all 0.3s ease-in-out; }
|
4734 |
+
|
4735 |
+
/**************** Premium Google Maps ******************/
|
4736 |
+
/*******************************************************/
|
4737 |
+
.premium-maps-info-container {
|
4738 |
+
margin-top: 10px;
|
4739 |
+
margin-bottom: 10px; }
|
4740 |
+
|
4741 |
+
.premium-maps-info-title,
|
4742 |
+
.premium-maps-info-desc {
|
4743 |
+
margin: 0;
|
4744 |
+
padding: 0; }
|
4745 |
+
|
4746 |
+
.premium-maps-container .gm-style-iw {
|
4747 |
+
text-align: center; }
|
4748 |
+
|
4749 |
+
.premium-maps-container .gm-style img {
|
4750 |
+
max-width: none !important; }
|
4751 |
+
|
4752 |
+
/**************** Premium Button ***********************/
|
4753 |
+
/*******************************************************/
|
4754 |
+
.premium-button {
|
4755 |
+
display: inline-block;
|
4756 |
+
position: relative;
|
4757 |
+
overflow: hidden;
|
4758 |
+
cursor: pointer;
|
4759 |
+
-webkit-transition: all 0.2s ease-in-out !important;
|
4760 |
+
transition: all 0.2s ease-in-out !important; }
|
4761 |
+
|
4762 |
+
.premium-button-sm {
|
4763 |
+
padding: 12px 24px;
|
4764 |
+
font-size: 14px;
|
4765 |
+
line-height: 1; }
|
4766 |
+
|
4767 |
+
.premium-button .premium-lottie-animation,
|
4768 |
+
.premium-image-button .premium-lottie-animation {
|
4769 |
+
-js-display: flex;
|
4770 |
+
display: -webkit-box;
|
4771 |
+
display: -webkit-flex;
|
4772 |
+
display: -moz-box;
|
4773 |
+
display: -ms-flexbox;
|
4774 |
+
display: flex; }
|
4775 |
+
.premium-button .premium-lottie-animation svg,
|
4776 |
+
.premium-image-button .premium-lottie-animation svg {
|
4777 |
+
width: 50px;
|
4778 |
+
height: 50px; }
|
4779 |
+
|
4780 |
+
.premium-button-md {
|
4781 |
+
padding: 14px 26px;
|
4782 |
+
font-size: 16px;
|
4783 |
+
line-height: 1.2; }
|
4784 |
+
|
4785 |
+
.premium-button-lg {
|
4786 |
+
padding: 16px 28px;
|
4787 |
+
font-size: 18px;
|
4788 |
+
line-height: 1.3333; }
|
4789 |
+
|
4790 |
+
.premium-button-block {
|
4791 |
+
font-size: 15px;
|
4792 |
+
line-height: 1;
|
4793 |
+
padding: 12px 24px;
|
4794 |
+
width: 100%;
|
4795 |
+
text-align: center; }
|
4796 |
+
|
4797 |
+
.premium-button-text {
|
4798 |
+
display: inline-block;
|
4799 |
+
width: 100%; }
|
4800 |
+
|
4801 |
+
.premium-button-style1,
|
4802 |
+
.premium-button-style2,
|
4803 |
+
.premium-button-style5,
|
4804 |
+
.premium-button-style7 {
|
4805 |
+
display: inline-block;
|
4806 |
+
vertical-align: middle;
|
4807 |
+
-webkit-transform: perspective(1px) translateZ(0);
|
4808 |
+
transform: perspective(1px) translateZ(0);
|
4809 |
+
-webkit-box-shadow: 0 0 1px transparent;
|
4810 |
+
box-shadow: 0 0 1px transparent;
|
4811 |
+
position: relative;
|
4812 |
+
-webkit-transition-property: color;
|
4813 |
+
transition-property: color;
|
4814 |
+
-webkit-transition-duration: 0.15s;
|
4815 |
+
transition-duration: 0.15s; }
|
4816 |
+
|
4817 |
+
.premium-button-style1:before,
|
4818 |
+
.premium-button-style2:before,
|
4819 |
+
.premium-button-style5:before {
|
4820 |
+
content: "";
|
4821 |
+
position: absolute;
|
4822 |
+
z-index: -1;
|
4823 |
+
top: 0;
|
4824 |
+
left: 0;
|
4825 |
+
right: 0;
|
4826 |
+
bottom: 0;
|
4827 |
+
-webkit-transform: scaleY(0);
|
4828 |
+
-ms-transform: scaleY(0);
|
4829 |
+
transform: scaleY(0);
|
4830 |
+
-webkit-transform-origin: 50% 0;
|
4831 |
+
-ms-transform-origin: 50% 0;
|
4832 |
+
transform-origin: 50% 0;
|
4833 |
+
-webkit-transition-property: -webkit-transform;
|
4834 |
+
transition-property: -webkit-transform;
|
4835 |
+
transition-property: transform;
|
4836 |
+
transition-property: transform, -webkit-transform;
|
4837 |
+
-webkit-transition-duration: 0.15s;
|
4838 |
+
transition-duration: 0.15s;
|
4839 |
+
-webkit-transition-timing-function: ease-out;
|
4840 |
+
transition-timing-function: ease-out; }
|
4841 |
+
|
4842 |
+
.premium-button-style5-radialin:before,
|
4843 |
+
.premium-button-style5-radialout:before {
|
4844 |
+
-webkit-transform-origin: 50%;
|
4845 |
+
-ms-transform-origin: 50%;
|
4846 |
+
transform-origin: 50%;
|
4847 |
+
-webkit-border-radius: 100%;
|
4848 |
+
border-radius: 100%;
|
4849 |
+
-webkit-transform: scale(0);
|
4850 |
+
-ms-transform: scale(0);
|
4851 |
+
transform: scale(0); }
|
4852 |
+
|
4853 |
+
.premium-button-style5-radialin:before {
|
4854 |
+
-webkit-transform: scale(2);
|
4855 |
+
-ms-transform: scale(2);
|
4856 |
+
transform: scale(2); }
|
4857 |
+
|
4858 |
+
.premium-button-style5-rectin:before {
|
4859 |
+
-webkit-transform-origin: 50%;
|
4860 |
+
-ms-transform-origin: 50%;
|
4861 |
+
transform-origin: 50%;
|
4862 |
+
-webkit-transform: scale(1);
|
4863 |
+
-ms-transform: scale(1);
|
4864 |
+
transform: scale(1); }
|
4865 |
+
|
4866 |
+
.premium-button-style5-rectout:before {
|
4867 |
+
-webkit-transform-origin: 50%;
|
4868 |
+
-ms-transform-origin: 50%;
|
4869 |
+
transform-origin: 50%;
|
4870 |
+
-webkit-transform: scale(0);
|
4871 |
+
-ms-transform: scale(0);
|
4872 |
+
transform: scale(0); }
|
4873 |
+
|
4874 |
+
.premium-button-style5-rectout:hover:before {
|
4875 |
+
-webkit-transform: scale(1);
|
4876 |
+
-ms-transform: scale(1);
|
4877 |
+
transform: scale(1); }
|
4878 |
+
|
4879 |
+
.premium-button-style5-rectin:hover:before {
|
4880 |
+
-webkit-transform: scale(0);
|
4881 |
+
-ms-transform: scale(0);
|
4882 |
+
transform: scale(0); }
|
4883 |
+
|
4884 |
+
.premium-button-style5-radialout:hover:before {
|
4885 |
+
-webkit-transform: scale(2);
|
4886 |
+
-ms-transform: scale(2);
|
4887 |
+
transform: scale(2); }
|
4888 |
+
|
4889 |
+
.premium-button-style5-radialin:hover:before {
|
4890 |
+
-webkit-transform: scale(0);
|
4891 |
+
-ms-transform: scale(0);
|
4892 |
+
transform: scale(0); }
|
4893 |
+
|
4894 |
+
.premium-button-style1-top:before {
|
4895 |
+
-webkit-transform-origin: 50% 100%;
|
4896 |
+
-ms-transform-origin: 50% 100%;
|
4897 |
+
transform-origin: 50% 100%; }
|
4898 |
+
|
4899 |
+
.premium-button-style1-right:before {
|
4900 |
+
-webkit-transform: scaleX(0);
|
4901 |
+
-ms-transform: scaleX(0);
|
4902 |
+
transform: scaleX(0);
|
4903 |
+
-webkit-transform-origin: 0% 50%;
|
4904 |
+
-ms-transform-origin: 0% 50%;
|
4905 |
+
transform-origin: 0% 50%; }
|
4906 |
+
|
4907 |
+
.premium-button-style1-left:before {
|
4908 |
+
-webkit-transform: scaleX(0);
|
4909 |
+
-ms-transform: scaleX(0);
|
4910 |
+
transform: scaleX(0);
|
4911 |
+
-webkit-transform-origin: 100% 50%;
|
4912 |
+
-ms-transform-origin: 100% 50%;
|
4913 |
+
transform-origin: 100% 50%; }
|
4914 |
+
|
4915 |
+
.premium-button-style2-shutouthor:before,
|
4916 |
+
.premium-button-style2-scshutoutver:before {
|
4917 |
+
-webkit-transform: scaleY(0);
|
4918 |
+
-ms-transform: scaleY(0);
|
4919 |
+
transform: scaleY(0);
|
4920 |
+
-webkit-transform-origin: 100% 50%;
|
4921 |
+
-ms-transform-origin: 100% 50%;
|
4922 |
+
transform-origin: 100% 50%; }
|
4923 |
+
|
4924 |
+
.premium-button-style2-shutoutver:before,
|
4925 |
+
.premium-button-style2-scshutouthor:before {
|
4926 |
+
-webkit-transform: scaleX(0);
|
4927 |
+
-ms-transform: scaleX(0);
|
4928 |
+
transform: scaleX(0);
|
4929 |
+
-webkit-transform-origin: 50% 50%;
|
4930 |
+
-ms-transform-origin: 50% 50%;
|
4931 |
+
transform-origin: 50% 50%; }
|
4932 |
+
|
4933 |
+
.premium-button-style2-shutinhor:before {
|
4934 |
+
-webkit-transform: scaleX(1);
|
4935 |
+
-ms-transform: scaleX(1);
|
4936 |
+
transform: scaleX(1);
|
4937 |
+
-webkit-transform-origin: 50%;
|
4938 |
+
-ms-transform-origin: 50%;
|
4939 |
+
transform-origin: 50%; }
|
4940 |
+
|
4941 |
+
.premium-button-style2-shutinver:before {
|
4942 |
+
-webkit-transform: scaleY(1);
|
4943 |
+
-ms-transform: scaleY(1);
|
4944 |
+
transform: scaleY(1);
|
4945 |
+
-webkit-transform-origin: 50%;
|
4946 |
+
-ms-transform-origin: 50%;
|
4947 |
+
transform-origin: 50%; }
|
4948 |
+
|
4949 |
+
.premium-button-style1-bottom:hover:before,
|
4950 |
+
.premium-button-style1-top:hover:before {
|
4951 |
+
-webkit-transform: scaleY(1);
|
4952 |
+
-ms-transform: scaleY(1);
|
4953 |
+
transform: scaleY(1); }
|
4954 |
+
|
4955 |
+
.premium-button-style1-left:hover:before,
|
4956 |
+
.premium-button-style1-right:hover:before,
|
4957 |
+
.premium-button-style2-shutouthor:hover:before,
|
4958 |
+
.premium-button-style2-shutoutver:hover:before {
|
4959 |
+
-webkit-transform: scaleX(1);
|
4960 |
+
-ms-transform: scaleX(1);
|
4961 |
+
transform: scaleX(1); }
|
4962 |
+
|
4963 |
+
.premium-button-style2-shutinhor:hover:before {
|
4964 |
+
-webkit-transform: scaleX(0);
|
4965 |
+
-ms-transform: scaleX(0);
|
4966 |
+
transform: scaleX(0); }
|
4967 |
+
|
4968 |
+
.premium-button-style2-shutinver:hover:before {
|
4969 |
+
-webkit-transform: scaleY(0);
|
4970 |
+
-ms-transform: scaleY(0);
|
4971 |
+
transform: scaleY(0); }
|
4972 |
+
|
4973 |
+
.premium-button-style2-scshutouthor:hover:before {
|
4974 |
+
-webkit-transform: scaleX(0.9);
|
4975 |
+
-ms-transform: scaleX(0.9);
|
4976 |
+
transform: scaleX(0.9); }
|
4977 |
+
|
4978 |
+
.premium-button-style2-scshutoutver:hover:before {
|
4979 |
+
-webkit-transform: scaleY(0.8);
|
4980 |
+
-ms-transform: scaleY(0.8);
|
4981 |
+
transform: scaleY(0.8); }
|
4982 |
+
|
4983 |
+
/*Diagonal*/
|
4984 |
+
.premium-button-style2-dshutinhor:before {
|
4985 |
+
top: 50%;
|
4986 |
+
left: 50%;
|
4987 |
+
width: 120%;
|
4988 |
+
height: 0%;
|
4989 |
+
-webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
|
4990 |
+
-ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
|
4991 |
+
transform: translateX(-50%) translateY(-50%) rotate(-45deg);
|
4992 |
+
-webkit-transform-origin: 50%;
|
4993 |
+
-ms-transform-origin: 50%;
|
4994 |
+
transform-origin: 50%;
|
4995 |
+
-webkit-transition-property: all;
|
4996 |
+
transition-property: all; }
|
4997 |
+
|
4998 |
+
.premium-button-style2-dshutinver:before {
|
4999 |
+
top: 50%;
|
5000 |
+
left: 50%;
|
5001 |
+
width: 120%;
|
5002 |
+
height: 0%;
|
5003 |
+
-webkit-transform-origin: 50%;
|
5004 |
+
-ms-transform-origin: 50%;
|
5005 |
+
transform-origin: 50%;
|
5006 |
+
-webkit-transition-property: all;
|
5007 |
+
transition-property: all;
|
5008 |
+
-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
5009 |
+
-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
5010 |
+
transform: translateX(-50%) translateY(-50%) rotate(45deg); }
|
5011 |
+
|
5012 |
+
.premium-button-style2-dshutinhor:hover:before,
|
5013 |
+
.premium-button-style2-dshutinver:hover:before {
|
5014 |
+
height: 220%; }
|
5015 |
+
|
5016 |
+
.premium-button-style3-before i,
|
5017 |
+
.premium-button-style3-before svg {
|
5018 |
+
opacity: 0;
|
5019 |
+
-webkit-transform: translateX(-5px);
|
5020 |
+
-ms-transform: translateX(-5px);
|
5021 |
+
transform: translateX(-5px);
|
5022 |
+
-webkit-transition: all 0.5s ease-in-out;
|
5023 |
+
transition: all 0.5s ease-in-out; }
|
5024 |
+
|
5025 |
+
.premium-button-style3-after i,
|
5026 |
+
.premium-button-style3-after svg {
|
5027 |
+
opacity: 0;
|
5028 |
+
-webkit-transform: translateX(-5px);
|
5029 |
+
-ms-transform: translateX(-5px);
|
5030 |
+
transform: translateX(-5px);
|
5031 |
+
-webkit-transition: all 0.5s ease-in-out;
|
5032 |
+
transition: all 0.5s ease-in-out;
|
5033 |
+
-webkit-transform: translateX(5px);
|
5034 |
+
-ms-transform: translateX(5px);
|
5035 |
+
transform: translateX(5px); }
|
5036 |
+
|
5037 |
+
.premium-button-style3-after:hover i,
|
5038 |
+
.premium-button-style3-after:hover svg {
|
5039 |
+
opacity: 1; }
|
5040 |
+
|
5041 |
+
.premium-button-style3-before:hover i,
|
5042 |
+
.premium-button-style3-before:hover svg {
|
5043 |
+
opacity: 1; }
|
5044 |
+
|
5045 |
+
.premium-button-text-icon-wrapper {
|
5046 |
+
-js-display: flex;
|
5047 |
+
display: -webkit-box;
|
5048 |
+
display: -webkit-flex;
|
5049 |
+
display: -moz-box;
|
5050 |
+
display: -ms-flexbox;
|
5051 |
+
display: flex;
|
5052 |
+
-webkit-box-pack: center;
|
5053 |
+
-webkit-justify-content: center;
|
5054 |
+
-moz-box-pack: center;
|
5055 |
+
-ms-flex-pack: center;
|
5056 |
+
justify-content: center;
|
5057 |
+
-webkit-box-align: center;
|
5058 |
+
-webkit-align-items: center;
|
5059 |
+
-moz-box-align: center;
|
5060 |
+
-ms-flex-align: center;
|
5061 |
+
align-items: center;
|
5062 |
+
-webkit-transition: all 0.2s ease-in-out;
|
5063 |
+
transition: all 0.2s ease-in-out; }
|
5064 |
+
.premium-button-text-icon-wrapper span,
|
5065 |
+
.premium-button-text-icon-wrapper i,
|
5066 |
+
.premium-button-text-icon-wrapper svg {
|
5067 |
+
-webkit-transition: all 0.2s ease-in-out;
|
5068 |
+
transition: all 0.2s ease-in-out; }
|
5069 |
+
|
5070 |
+
.premium-button-style4-icon-wrapper {
|
5071 |
+
position: absolute;
|
5072 |
+
z-index: 2;
|
5073 |
+
width: 100%;
|
5074 |
+
text-align: center;
|
5075 |
+
-js-display: flex;
|
5076 |
+
display: -webkit-box;
|
5077 |
+
display: -webkit-flex;
|
5078 |
+
display: -moz-box;
|
5079 |
+
display: -ms-flexbox;
|
5080 |
+
display: flex;
|
5081 |
+
-webkit-box-align: center;
|
5082 |
+
-webkit-align-items: center;
|
5083 |
+
-moz-box-align: center;
|
5084 |
+
-ms-flex-align: center;
|
5085 |
+
align-items: center;
|
5086 |
+
-webkit-box-pack: center;
|
5087 |
+
-webkit-justify-content: center;
|
5088 |
+
-moz-box-pack: center;
|
5089 |
+
-ms-flex-pack: center;
|
5090 |
+
justify-content: center;
|
5091 |
+
height: 100%;
|
5092 |
+
opacity: 0;
|
5093 |
+
-webkit-transition: all 0.3s ease-in-out;
|
5094 |
+
transition: all 0.3s ease-in-out; }
|
5095 |
+
.premium-button-style4-icon-wrapper.top {
|
5096 |
+
bottom: -100%;
|
5097 |
+
left: 0; }
|
5098 |
+
.premium-button-style4-icon-wrapper.bottom {
|
5099 |
+
top: -100%;
|
5100 |
+
left: 0; }
|
5101 |
+
.premium-button-style4-icon-wrapper.left {
|
5102 |
+
top: 0;
|
5103 |
+
left: -100%; }
|
5104 |
+
.premium-button-style4-icon-wrapper.right {
|
5105 |
+
top: 0;
|
5106 |
+
right: -100%; }
|
5107 |
+
|
5108 |
+
.premium-button-style4-bottom:hover .premium-button-style4-icon-wrapper {
|
5109 |
+
top: 0;
|
5110 |
+
opacity: 1; }
|
5111 |
+
|
5112 |
+
.premium-button-style4-top:hover .premium-button-style4-icon-wrapper {
|
5113 |
+
bottom: 0;
|
5114 |
+
opacity: 1; }
|
5115 |
+
|
5116 |
+
.premium-button-style4-left:hover .premium-button-style4-icon-wrapper {
|
5117 |
+
left: 0;
|
5118 |
+
opacity: 1; }
|
5119 |
+
|
5120 |
+
.premium-button-style4-right:hover .premium-button-style4-icon-wrapper {
|
5121 |
+
right: 0;
|
5122 |
+
opacity: 1; }
|
5123 |
+
|
5124 |
+
.premium-button-style4-bottom:hover .premium-button-text-icon-wrapper {
|
5125 |
+
-webkit-transform: translateY(100%);
|
5126 |
+
-ms-transform: translateY(100%);
|
5127 |
+
transform: translateY(100%);
|
5128 |
+
opacity: 0; }
|
5129 |
+
|
5130 |
+
.premium-button-style4-top:hover .premium-button-text-icon-wrapper {
|
5131 |
+
-webkit-transform: translateY(-100%);
|
5132 |
+
-ms-transform: translateY(-100%);
|
5133 |
+
transform: translateY(-100%);
|
5134 |
+
opacity: 0; }
|
5135 |
+
|
5136 |
+
.premium-button-style4-left:hover .premium-button-text-icon-wrapper {
|
5137 |
+
-webkit-transform: translateX(100%);
|
5138 |
+
-ms-transform: translateX(100%);
|
5139 |
+
transform: translateX(100%);
|
5140 |
+
opacity: 0; }
|
5141 |
+
|
5142 |
+
.premium-button-style4-right:hover .premium-button-text-icon-wrapper {
|
5143 |
+
-webkit-transform: translateX(-100%);
|
5144 |
+
-ms-transform: translateX(-100%);
|
5145 |
+
transform: translateX(-100%);
|
5146 |
+
opacity: 0; }
|
5147 |
+
|
5148 |
+
.premium-button-style6:before {
|
5149 |
+
content: "";
|
5150 |
+
position: absolute;
|
5151 |
+
left: 50%;
|
5152 |
+
top: 50%;
|
5153 |
+
width: 100px;
|
5154 |
+
height: 100px;
|
5155 |
+
-webkit-border-radius: 100%;
|
5156 |
+
border-radius: 100%;
|
5157 |
+
-webkit-transform: translate(-50%, -50%) scale(0);
|
5158 |
+
-ms-transform: translate(-50%, -50%) scale(0);
|
5159 |
+
transform: translate(-50%, -50%) scale(0);
|
5160 |
+
-webkit-transition: all 0.3s ease-in-out;
|
5161 |
+
transition: all 0.3s ease-in-out; }
|
5162 |
+
|
5163 |
+
.premium-button-style6:hover:before {
|
5164 |
+
-webkit-transform: translate(-50%, -50%) scale(3);
|
5165 |
+
-ms-transform: translate(-50%, -50%) scale(3);
|
5166 |
+
transform: translate(-50%, -50%) scale(3); }
|
5167 |
+
|
5168 |
+
.premium-button-style6 .premium-button-text-icon-wrapper {
|
5169 |
+
position: relative;
|
5170 |
+
z-index: 1; }
|
5171 |
+
|
5172 |
+
.premium-mouse-detect-yes .premium-button-style6 .premium-button-style6-bg {
|
5173 |
+
position: absolute;
|
5174 |
+
z-index: 0;
|
5175 |
+
top: 0;
|
5176 |
+
left: 0;
|
5177 |
+
width: 0px;
|
5178 |
+
height: 0px;
|
5179 |
+
-webkit-border-radius: 50%;
|
5180 |
+
border-radius: 50%;
|
5181 |
+
display: block;
|
5182 |
+
-webkit-transform: translate(-50%, -50%);
|
5183 |
+
-ms-transform: translate(-50%, -50%);
|
5184 |
+
transform: translate(-50%, -50%);
|
5185 |
+
-webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
|
5186 |
+
transition: width 0.4s ease-in-out, height 0.4s ease-in-out; }
|
5187 |
+
|
5188 |
+
.premium-mouse-detect-yes .premium-button-style6:hover .premium-button-style6-bg {
|
5189 |
+
width: 225%;
|
5190 |
+
height: 560px; }
|
5191 |
+
|
5192 |
+
.premium-mouse-detect-yes .premium-button-style6:before {
|
5193 |
+
width: 0;
|
5194 |
+
height: 0; }
|
5195 |
+
|
5196 |
+
.premium-button-style7-right .premium-button-text-icon-wrapper:before,
|
5197 |
+
.premium-button-style7-left .premium-button-text-icon-wrapper:before {
|
5198 |
+
-webkit-transition: width 0.3s ease-out 0.15s;
|
5199 |
+
transition: width 0.3s ease-out 0.15s; }
|
5200 |
+
|
5201 |
+
.premium-button-style7-right .premium-button-text-icon-wrapper:after,
|
5202 |
+
.premium-button-style7-left .premium-button-text-icon-wrapper:after {
|
5203 |
+
-webkit-transition: width 0.3s ease-out 0s;
|
5204 |
+
transition: width 0.3s ease-out 0s; }
|
5205 |
+
|
5206 |
+
.premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
|
5207 |
+
.premium-button-style7-top .premium-button-text-icon-wrapper:before {
|
5208 |
+
-webkit-transition: height 0.3s ease-out 0.15s;
|
5209 |
+
transition: height 0.3s ease-out 0.15s; }
|
5210 |
+
|
5211 |
+
.premium-button-style7-bottom .premium-button-text-icon-wrapper:after,
|
5212 |
+
.premium-button-style7-top .premium-button-text-icon-wrapper:after {
|
5213 |
+
-webkit-transition: height 0.3s ease-out 0s;
|
5214 |
+
transition: height 0.3s ease-out 0s; }
|
5215 |
+
|
5216 |
+
.premium-button-style7:hover .premium-button-text-icon-wrapper:before {
|
5217 |
+
-webkit-transition-delay: 0s;
|
5218 |
+
transition-delay: 0s; }
|
5219 |
+
|
5220 |
+
.premium-button-style7:hover .premium-button-text-icon-wrapper:after {
|
5221 |
+
-webkit-transition-delay: 0.15s;
|
5222 |
+
transition-delay: 0.15s; }
|
5223 |
+
|
5224 |
+
.premium-button-style7-bottom .premium-button-text-icon-wrapper:before,
|
5225 |
+
.premium-button-style7-bottom .premium-button-text-icon-wrapper:after {
|
5226 |
+
content: "";
|
5227 |
+
position: absolute;
|
5228 |
+
right: 0;
|
5229 |
+
top: 0;
|
5230 |
+
left: 0;
|
5231 |
+
height: 0;
|
5232 |
+
z-index: -1; }
|
5233 |
+
|
5234 |
+
.premium-button-style7-top .premium-button-text-icon-wrapper:after,
|
5235 |
+
.premium-button-style7-top .premium-button-text-icon-wrapper:before {
|
5236 |
+
content: "";
|
5237 |
+
position: absolute;
|
5238 |
+
right: 0;
|
5239 |
+
bottom: 0;
|
5240 |
+
left: 0;
|
5241 |
+
height: 0;
|
5242 |
+
z-index: -1; }
|
5243 |
+
|
5244 |
+
.premium-button-style7-right .premium-button-text-icon-wrapper:after,
|
5245 |
+
.premium-button-style7-right .premium-button-text-icon-wrapper:before {
|
5246 |
+
content: "";
|
5247 |
+
position: absolute;
|
5248 |
+
right: 0;
|
5249 |
+
top: 0;
|
5250 |
+
bottom: 0;
|
5251 |
+
width: 0;
|
5252 |
+
z-index: -1; }
|
5253 |
+
|
5254 |
+
.premium-button-style7-left .premium-button-text-icon-wrapper:after,
|
5255 |
+
.premium-button-style7-left .premium-button-text-icon-wrapper:before {
|
5256 |
+
content: "";
|
5257 |
+
position: absolute;
|
5258 |
+
left: 0;
|
5259 |
+
top: 0;
|
5260 |
+
bottom: 0;
|
5261 |
+
width: 0;
|
5262 |
+
z-index: -1; }
|
5263 |
+
|
5264 |
+
.premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:after,
|
5265 |
+
.premium-button-style7-bottom:hover .premium-button-text-icon-wrapper:before {
|
5266 |
+
height: 100%;
|
5267 |
+
top: 0; }
|
5268 |
+
|
5269 |
+
.premium-button-style7-top:hover .premium-button-text-icon-wrapper:after,
|
5270 |
+
.premium-button-style7-top:hover .premium-button-text-icon-wrapper:before {
|
5271 |
+
height: 100%;
|
5272 |
+
bottom: 0; }
|
5273 |
+
|
5274 |
+
.premium-button-style7-left:hover .premium-button-text-icon-wrapper:after,
|
5275 |
+
.premium-button-style7-left:hover .premium-button-text-icon-wrapper:before {
|
5276 |
+
width: 100%;
|
5277 |
+
left: 0; }
|
5278 |
+
|
5279 |
+
.premium-button-style7-right:hover .premium-button-text-icon-wrapper:after,
|
5280 |
+
.premium-button-style7-right:hover .premium-button-text-icon-wrapper:before {
|
5281 |
+
width: 100%;
|
5282 |
+
right: 0; }
|
5283 |
+
|
5284 |
+
/**************** Premium Contact Form7 **********/
|
5285 |
+
/*************************************************/
|
5286 |
+
.premium-contact-form-anim-yes .wpcf7-span::after {
|
5287 |
+
display: block;
|
5288 |
+
height: 2px;
|
5289 |
+
content: "";
|
5290 |
+
top: -2px;
|
5291 |
+
position: relative;
|
5292 |
+
width: 0px;
|
5293 |
+
-webkit-transition: all ease-in-out 0.3s;
|
5294 |
+
transition: all ease-in-out 0.3s; }
|
5295 |
+
|
5296 |
+
.premium-contact-form-anim-yes .wpcf7-span.is-focused::after {
|
5297 |
+
width: 100%; }
|
5298 |
+
|
5299 |
+
/**************** Premium Image Button ***********/
|
5300 |
+
/*************************************************/
|
5301 |
+
.premium-image-button {
|
5302 |
+
display: inline-block;
|
5303 |
+
position: relative;
|
5304 |
+
overflow: hidden;
|
5305 |
+
background: #6ec1e4;
|
5306 |
+
cursor: pointer;
|
5307 |
+
-webkit-transition: all 0.2s ease-in-out !important;
|
5308 |
+
transition: all 0.2s ease-in-out !important; }
|
5309 |
+
.premium-image-button:hover {
|
5310 |
+
background-color: #54595f; }
|
5311 |
+
|
5312 |
+
/*Default background for slide styles*/
|
5313 |
+
.premium-image-button-style4-icon-wrapper,
|
5314 |
+
.premium-image-button-style1:before {
|
5315 |
+
background-color: #54595f; }
|
5316 |
+
|
5317 |
+
.premium-image-button.premium-image-button-sm {
|
5318 |
+
padding: 12px 24px;
|
5319 |
+
font-size: 14px;
|
5320 |
+
line-height: 1; }
|
5321 |
+
|
5322 |
+
.premium-image-button.premium-image-button-md {
|
5323 |
+
padding: 14px 26px;
|
5324 |
+
font-size: 16px;
|
5325 |
+
line-height: 1.2; }
|
5326 |
+
|
5327 |
+
.premium-image-button.premium-image-button-lg {
|
5328 |
+
padding: 16px 28px;
|
5329 |
+
font-size: 18px;
|
5330 |
+
line-height: 1.3333; }
|
5331 |
+
|
5332 |
+
.premium-image-button.premium-image-button-block {
|
5333 |
+
font-size: 15px;
|
5334 |
+
line-height: 1;
|
5335 |
+
padding: 12px 24px;
|
5336 |
+
width: 100%;
|
5337 |
+
text-align: center; }
|
5338 |
+
|
5339 |
+
.premium-image-button-text-icon-wrapper {
|
5340 |
+
-js-display: flex;
|
5341 |
+
display: -webkit-box;
|
5342 |
+
display: -webkit-flex;
|
5343 |
+
display: -moz-box;
|
5344 |
+
display: -ms-flexbox;
|
5345 |
+
display: flex;
|
5346 |
+
-webkit-box-pack: center;
|
5347 |
+
-webkit-justify-content: center;
|
5348 |
+
-moz-box-pack: center;
|
5349 |
+
-ms-flex-pack: center;
|
5350 |
+
justify-content: center;
|
5351 |
+
-webkit-box-align: center;
|
5352 |
+
-webkit-align-items: center;
|
5353 |
+
-moz-box-align: center;
|
5354 |
+
-ms-flex-align: center;
|
5355 |
+
align-items: center;
|
5356 |
+
position: relative;
|
5357 |
+
z-index: 3;
|
5358 |
+
-webkit-transition: all 0.2s ease-in-out;
|
5359 |
+
transition: all 0.2s ease-in-out; }
|
5360 |
+
.premium-image-button-text-icon-wrapper span,
|
5361 |
+
.premium-image-button-text-icon-wrapper i,
|
5362 |
+
.premium-image-button-text-icon-wrapper svg {
|
5363 |
+
-webkit-transition: all 0.2s ease-in-out;
|
5364 |
+
transition: all 0.2s ease-in-out; }
|
5365 |
+
|
5366 |
+
.premium-image-button-style1:before {
|
5367 |
+
position: absolute;
|
5368 |
+
content: "";
|
5369 |
+
-webkit-transition: all 0.2s ease-in-out;
|
5370 |
+
transition: all 0.2s ease-in-out; }
|
5371 |
+
|
5372 |
+
.premium-image-button-style1-bottom:before {
|
5373 |
+
width: 100%;
|
5374 |
+
height: 0;
|
5375 |
+
top: 0;
|
5376 |
+
left: 0; }
|
5377 |
+
|
5378 |
+
.premium-image-button-style1-top:before {
|
5379 |
+
width: 100%;
|
5380 |
+
height: 0;
|
5381 |
+
bottom: 0;
|
5382 |
+
left: 0; }
|
5383 |
+
|
5384 |
+
.premium-image-button-style1-right:before {
|
5385 |
+
width: 0;
|
5386 |
+
height: 100%;
|
5387 |
+
bottom: 0;
|
5388 |
+
left: 0; }
|
5389 |
+
|
5390 |
+
.premium-image-button-style1-left:before {
|
5391 |
+
width: 0;
|
5392 |
+
height: 100%;
|
5393 |
+
top: 0;
|
5394 |
+
right: 0; }
|
5395 |
+
|
5396 |
+
.premium-image-button-style1-bottom:hover:before,
|
5397 |
+
.premium-image-button-style1-top:hover:before {
|
5398 |
+
height: 100%; }
|
5399 |
+
|
5400 |
+
.premium-image-button-style1-right:hover:before,
|
5401 |
+
.premium-image-button-style1-left:hover:before {
|
5402 |
+
width: 100%; }
|
5403 |
+
|
5404 |
+
.premium-image-button-style3 {
|
5405 |
+
z-index: 10; }
|
5406 |
+
.premium-image-button-style3:before {
|
5407 |
+
position: absolute;
|
5408 |
+
top: 0px;
|
5409 |
+
left: 0px;
|
5410 |
+
width: 100%;
|
5411 |
+
height: 100%;
|
5412 |
+
content: "";
|
5413 |
+
z-index: 1;
|
5414 |
+
background: rgba(255, 255, 255, 0.2);
|
5415 |
+
-webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
|
5416 |
+
transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
|
5417 |
+
-webkit-transition: all 0.8s ease-out;
|
5418 |
+
transition: all 0.8s ease-out; }
|
5419 |
+
|
5420 |
+
.premium-image-button-diagonal-right:before {
|
5421 |
+
-webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
|
5422 |
+
transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0); }
|
5423 |
+
|
5424 |
+
.premium-image-button-diagonal-right:hover:before {
|
5425 |
+
-webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
|
5426 |
+
transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0); }
|
5427 |
+
|
5428 |
+
.premium-image-button-diagonal-left:before {
|
5429 |
+
-webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0);
|
5430 |
+
transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, -150%, 0); }
|
5431 |
+
|
5432 |
+
.premium-image-button-diagonal-left:hover:before {
|
5433 |
+
-webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0);
|
5434 |
+
transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, -45deg) translate3d(0, 150%, 0); }
|
5435 |
+
|
5436 |
+
.premium-image-button-diagonal-bottom:before {
|
5437 |
+
-webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
|
5438 |
+
transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0); }
|
5439 |
+
|
5440 |
+
.premium-image-button-diagonal-bottom:hover:before {
|
5441 |
+
-webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
|
5442 |
+
transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0); }
|
5443 |
+
|
5444 |
+
.premium-image-button-diagonal-top:before {
|
5445 |
+
-webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0);
|
5446 |
+
transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 150%, 0); }
|
5447 |
+
|
5448 |
+
.premium-image-button-diagonal-top:hover:before {
|
5449 |
+
-webkit-transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0);
|
5450 |
+
transform: scale3d(14, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -150%, 0); }
|
5451 |
+
|
5452 |
+
.premium-image-button-style4-icon-wrapper {
|
5453 |
+
position: absolute;
|
5454 |
+
z-index: 2;
|
5455 |
+
width: 100%;
|
5456 |
+
text-align: center;
|
5457 |
+
-js-display: flex;
|
5458 |
+
display: -webkit-box;
|
5459 |
+
display: -webkit-flex;
|
5460 |
+
display: -moz-box;
|
5461 |
+
display: -ms-flexbox;
|
5462 |
+
display: flex;
|
5463 |
+
-webkit-box-align: center;
|
5464 |
+
-webkit-align-items: center;
|
5465 |
+
-moz-box-align: center;
|
5466 |
+
-ms-flex-align: center;
|
5467 |
+
align-items: center;
|
5468 |
+
-webkit-box-pack: center;
|
5469 |
+
-webkit-justify-content: center;
|
5470 |
+
-moz-box-pack: center;
|
5471 |
+
-ms-flex-pack: center;
|
5472 |
+
justify-content: center;
|
5473 |
+
height: 100%;
|
5474 |
+
opacity: 0;
|
5475 |
+
-webkit-transition: all 0.3s ease-in-out;
|
5476 |
+
transition: all 0.3s ease-in-out; }
|
5477 |
+
.premium-image-button-style4-icon-wrapper.top {
|
5478 |
+
bottom: -100%;
|
5479 |
+
left: 0; }
|
5480 |
+
.premium-image-button-style4-icon-wrapper.bottom {
|
5481 |
+
top: -100%;
|
5482 |
+
left: 0; }
|
5483 |
+
.premium-image-button-style4-icon-wrapper.left {
|
5484 |
+
top: 0;
|
5485 |
+
left: -100%; }
|
5486 |
+
.premium-image-button-style4-icon-wrapper.right {
|
5487 |
+
top: 0;
|
5488 |
+
right: -100%; }
|
5489 |
+
|
5490 |
+
.premium-image-button-style4-bottom:hover .premium-image-button-style4-icon-wrapper {
|
5491 |
+
top: 0;
|
5492 |
+
opacity: 1; }
|
5493 |
+
|
5494 |
+
.premium-image-button-style4-bottom:hover .premium-image-button-text-icon-wrapper {
|
5495 |
+
-webkit-transform: translateY(100%);
|
5496 |
+
-ms-transform: translateY(100%);
|
5497 |
+
transform: translateY(100%);
|
5498 |
+
opacity: 0; }
|
5499 |
+
|
5500 |
+
.premium-image-button-style4-top:hover .premium-image-button-style4-icon-wrapper {
|
5501 |
+
bottom: 0;
|
5502 |
+
opacity: 1; }
|
5503 |
+
|
5504 |
+
.premium-image-button-style4-top:hover .premium-image-button-text-icon-wrapper {
|
5505 |
+
-webkit-transform: translateY(-100%);
|
5506 |
+
-ms-transform: translateY(-100%);
|
5507 |
+
transform: translateY(-100%);
|
5508 |
+
opacity: 0; }
|
5509 |
+
|
5510 |
+
.premium-image-button-style4-left:hover .premium-image-button-style4-icon-wrapper {
|
5511 |
+
left: 0;
|
5512 |
+
opacity: 1; }
|
5513 |
+
|
5514 |
+
.premium-image-button-style4-left:hover .premium-image-button-text-icon-wrapper {
|
5515 |
+
-webkit-transform: translateX(100%);
|
5516 |
+
-ms-transform: translateX(100%);
|
5517 |
+
transform: translateX(100%);
|
5518 |
+
opacity: 0; }
|
5519 |
+
|
5520 |
+
.premium-image-button-style4-right:hover .premium-image-button-style4-icon-wrapper {
|
5521 |
+
right: 0;
|
5522 |
+
opacity: 1; }
|
5523 |
+
|
5524 |
+
.premium-image-button-style4-right:hover .premium-image-button-text-icon-wrapper {
|
5525 |
+
-webkit-transform: translateX(-100%);
|
5526 |
+
-ms-transform: translateX(-100%);
|
5527 |
+
transform: translateX(-100%);
|
5528 |
+
opacity: 0; }
|
5529 |
+
|
5530 |
+
.premium-image-button-style5:before {
|
5531 |
+
position: absolute;
|
5532 |
+
content: "";
|
5533 |
+
top: 0;
|
5534 |
+
left: 0;
|
5535 |
+
width: 100%;
|
5536 |
+
height: 100%;
|
5537 |
+
opacity: 0;
|
5538 |
+
-webkit-transition: all 1s ease-in-out;
|
5539 |
+
transition: all 1s ease-in-out;
|
5540 |
+
background: rgba(255, 255, 255, 0.2);
|
5541 |
+
-webkit-animation-name: premium-overlap-effect-done;
|
5542 |
+
animation-name: premium-overlap-effect-done;
|
5543 |
+
-webkit-animation-duration: 1s;
|
5544 |
+
animation-duration: 1s; }
|
5545 |
+
|
5546 |
+
.premium-image-button-overlap-effect-vertical:before {
|
5547 |
+
-webkit-animation-name: premium-overlap-ver-effect-done;
|
5548 |
+
animation-name: premium-overlap-ver-effect-done; }
|
5549 |
+
|
5550 |
+
.premium-image-button-overlap-effect-horizontal:hover:before {
|
5551 |
+
-webkit-animation-name: premium-overlap-effect;
|
5552 |
+
animation-name: premium-overlap-effect; }
|
5553 |
+
|
5554 |
+
.premium-image-button-overlap-effect-vertical:hover:before {
|
5555 |
+
-webkit-animation-name: premium-overlap-ver-effect;
|
5556 |
+
animation-name: premium-overlap-ver-effect; }
|
5557 |
+
|
5558 |
+
@-webkit-keyframes premium-overlap-effect {
|
5559 |
+
0% {
|
5560 |
+
opacity: 0;
|
5561 |
+
-webkit-transform: rotateY(0deg);
|
5562 |
+
transform: rotateY(0deg); }
|
5563 |
+
50% {
|
5564 |
+
opacity: 1;
|
5565 |
+
-webkit-transform: rotateY(180deg);
|
5566 |
+
transform: rotateY(180deg); }
|
5567 |
+
100% {
|
5568 |
+
opacity: 0;
|
5569 |
+
-webkit-transform: rotateY(360deg);
|
5570 |
+
transform: rotateY(360deg); } }
|
5571 |
+
|
5572 |
+
@keyframes premium-overlap-effect {
|
5573 |
+
0% {
|
5574 |
+
opacity: 0;
|
5575 |
+
-webkit-transform: rotateY(0deg);
|
5576 |
+
transform: rotateY(0deg); }
|
5577 |
+
50% {
|
5578 |
+
opacity: 1;
|
5579 |
+
-webkit-transform: rotateY(180deg);
|
5580 |
+
transform: rotateY(180deg); }
|
5581 |
+
100% {
|
5582 |
+
opacity: 0;
|
5583 |
+
-webkit-transform: rotateY(360deg);
|
5584 |
+
transform: rotateY(360deg); } }
|
5585 |
+
|
5586 |
+
@-webkit-keyframes premium-overlap-effect-done {
|
5587 |
+
0% {
|
5588 |
+
opacity: 0;
|
5589 |
+
-webkit-transform: rotateY(0deg);
|
5590 |
+
transform: rotateY(0deg); }
|
5591 |
+
50% {
|
5592 |
+
opacity: 1;
|
5593 |
+
-webkit-transform: rotateY(180deg);
|
5594 |
+
transform: rotateY(180deg); }
|
5595 |
+
100% {
|
5596 |
+
opacity: 0;
|
5597 |
+
-webkit-transform: rotateY(360deg);
|
5598 |
+
transform: rotateY(360deg); } }
|
5599 |
+
|
5600 |
+
@keyframes premium-overlap-effect-done {
|
5601 |
+
0% {
|
5602 |
+
opacity: 0;
|
5603 |
+
-webkit-transform: rotateY(0deg);
|
5604 |
+
transform: rotateY(0deg); }
|
5605 |
+
50% {
|
5606 |
+
opacity: 1;
|
5607 |
+
-webkit-transform: rotateY(180deg);
|
5608 |
+
transform: rotateY(180deg); }
|
5609 |
+
100% {
|
5610 |
+
opacity: 0;
|
5611 |
+
-webkit-transform: rotateY(360deg);
|
5612 |
+
transform: rotateY(360deg); } }
|
5613 |
+
|
5614 |
+
@-webkit-keyframes premium-overlap-ver-effect {
|
5615 |
+
0% {
|
5616 |
+
opacity: 0;
|
5617 |
+
-webkit-transform: rotateX(0deg);
|
5618 |
+
transform: rotateX(0deg); }
|
5619 |
+
50% {
|
5620 |
+
opacity: 1;
|
5621 |
+
-webkit-transform: rotateX(180deg);
|
5622 |
+
transform: rotateX(180deg); }
|
5623 |
+
100% {
|
5624 |
+
opacity: 0;
|
5625 |
+
-webkit-transform: rotateX(360deg);
|
5626 |
+
transform: rotateX(360deg); } }
|
5627 |
+
|
5628 |
+
@keyframes premium-overlap-ver-effect {
|
5629 |
+
0% {
|
5630 |
+
opacity: 0;
|
5631 |
+
-webkit-transform: rotateX(0deg);
|
5632 |
+
transform: rotateX(0deg); }
|
5633 |
+
50% {
|
5634 |
+
opacity: 1;
|
5635 |
+
-webkit-transform: rotateX(180deg);
|
5636 |
+
transform: rotateX(180deg); }
|
5637 |
+
100% {
|
5638 |
+
opacity: 0;
|
5639 |
+
-webkit-transform: rotateX(360deg);
|
5640 |
+
transform: rotateX(360deg); } }
|
5641 |
+
|
5642 |
+
@-webkit-keyframes premium-overlap-ver-effect-done {
|
5643 |
+
0% {
|
5644 |
+
opacity: 0;
|
5645 |
+
-webkit-transform: rotateX(0deg);
|
5646 |
+
transform: rotateX(0deg); }
|
5647 |
+
50% {
|
5648 |
+
opacity: 1;
|
5649 |
+
-webkit-transform: rotateX(180deg);
|
5650 |
+
transform: rotateX(180deg); }
|
5651 |
+
100% {
|
5652 |
+
opacity: 0;
|
5653 |
+
-webkit-transform: rotateX(360deg);
|
5654 |
+
transform: rotateX(360deg); } }
|
5655 |
+
|
5656 |
+
@keyframes premium-overlap-ver-effect-done {
|
5657 |
+
0% {
|
5658 |
+
opacity: 0;
|
5659 |
+
-webkit-transform: rotateX(0deg);
|
5660 |
+
transform: rotateX(0deg); }
|
5661 |
+
50% {
|
5662 |
+
opacity: 1;
|
5663 |
+
-webkit-transform: rotateX(180deg);
|
5664 |
+
transform: rotateX(180deg); }
|
5665 |
+
100% {
|
5666 |
+
opacity: 0;
|
5667 |
+
-webkit-transform: rotateX(360deg);
|
5668 |
+
transform: rotateX(360deg); } }
|
5669 |
+
|
5670 |
+
/**************** Premium Grid /****************/
|
5671 |
+
/***********************************************/
|
5672 |
+
.premium-img-gallery-filter,
|
5673 |
+
.premium-blog-filter {
|
5674 |
+
-js-display: flex;
|
5675 |
+
display: -webkit-box;
|
5676 |
+
display: -webkit-flex;
|
5677 |
+
display: -moz-box;
|
5678 |
+
display: -ms-flexbox;
|
5679 |
+
display: flex;
|
5680 |
+
-webkit-box-align: center;
|
5681 |
+
-webkit-align-items: center;
|
5682 |
+
-moz-box-align: center;
|
5683 |
+
-ms-flex-align: center;
|
5684 |
+
align-items: center;
|
5685 |
+
-webkit-box-pack: center;
|
5686 |
+
-webkit-justify-content: center;
|
5687 |
+
-moz-box-pack: center;
|
5688 |
+
-ms-flex-pack: center;
|
5689 |
+
justify-content: center; }
|
5690 |
+
|
5691 |
+
.premium-img-gallery {
|
5692 |
+
clear: both;
|
5693 |
+
overflow: hidden; }
|
5694 |
+
|
5695 |
+
.premium-gallery-container .premium-gallery-item {
|
5696 |
+
padding: 10px;
|
5697 |
+
float: left; }
|
5698 |
+
|
5699 |
+
.premium-gallery-container .grid-sizer {
|
5700 |
+
width: 33.33%; }
|
5701 |
+
|
5702 |
+
.premium-gallery-container .pa-gallery-item {
|
5703 |
+
padding: 10px; }
|
5704 |
+
|
5705 |
+
.premium-img-gallery-filter .premium-gallery-cats-container li a.category,
|
5706 |
+
.premium-blog-filter .premium-blog-filters-container li a.category {
|
5707 |
+
outline: none;
|
5708 |
+
text-decoration: none;
|
5709 |
+
-webkit-border-radius: 75px;
|
5710 |
+
border-radius: 75px;
|
5711 |
+
margin: 15px 5px 20px;
|
5712 |
+
padding: 7px 20px;
|
5713 |
+
-webkit-transition: all 0.3s ease-in-out;
|
5714 |
+
transition: all 0.3s ease-in-out; }
|
5715 |
+
|
5716 |
+
.premium-img-gallery-filter .premium-gallery-cats-container li a.category span {
|
5717 |
+
-webkit-transition: all 0.3s ease-in-out;
|
5718 |
+
transition: all 0.3s ease-in-out; }
|
5719 |
+
|
5720 |
+
.pa-gallery-img {
|
5721 |
+
position: relative; }
|
5722 |
+
.pa-gallery-img .pa-gallery-whole-link {
|
5723 |
+
position: absolute;
|
5724 |
+
top: 0;
|
5725 |
+
left: 0;
|
5726 |
+
width: 100%;
|
5727 |
+
height: 100%; }
|
5728 |
+
.pa-gallery-img.style2 .pa-gallery-whole-link {
|
5729 |
+
z-index: 99; }
|
5730 |
+
|
5731 |
+
.pa-gallery-img-container {
|
5732 |
+
overflow: hidden;
|
5733 |
+
-webkit-backface-visibility: hidden;
|
5734 |
+
backface-visibility: hidden;
|
5735 |
+
-webkit-transform: translate3d(0, 0, 0);
|
5736 |
+
transform: translate3d(0, 0, 0); }
|
5737 |
+
.pa-gallery-img-container img {
|
5738 |
+
display: block;
|
5739 |
+
width: 100%;
|
5740 |
+
-webkit-transition: all 0.3s ease-in-out;
|
5741 |
+
transition: all 0.3s ease-in-out; }
|
5742 |
+
|
5743 |
+
.premium-img-gallery.gray img {
|
5744 |
+
-webkit-filter: grayscale(100%);
|
5745 |
+
filter: grayscale(100%); }
|
5746 |
+
|
5747 |
+
.premium-img-gallery.zoomout img,
|
5748 |
+
.premium-img-gallery.scale img {
|
5749 |
+
-webkit-transform: scale(1.2);
|
5750 |
+
-ms-transform: scale(1.2);
|
5751 |
+
transform: scale(1.2); }
|
5752 |
+
|
5753 |
+
.premium-img-gallery.sepia img {
|
5754 |
+
-webkit-filter: sepia(30%);
|
5755 |
+
filter: sepia(30%); }
|
5756 |
+
|
5757 |
+
.premium-img-gallery.bright img {
|
5758 |
+
-webkit-filter: brightness(1);
|
5759 |
+
filter: brightness(1); }
|
5760 |
+
|
5761 |
+
.premium-img-gallery.trans img {
|
5762 |
+
-webkit-transform: translateX(-15px) scale(1.1);
|
5763 |
+
-ms-transform: translateX(-15px) scale(1.1);
|
5764 |
+
transform: translateX(-15px) scale(1.1); }
|
5765 |
+
|
5766 |
+
.pa-gallery-img .pa-gallery-magnific-image,
|
5767 |
+
.pa-gallery-img .pa-gallery-img-link {
|
5768 |
+
outline: none; }
|
5769 |
+
|
5770 |
+
.pa-gallery-img .pa-gallery-magnific-image span,
|
5771 |
+
.pa-gallery-img .pa-gallery-img-link span {
|
5772 |
+
line-height: 1;
|
5773 |
+
display: inline-block;
|
5774 |
+
opacity: 0;
|
5775 |
+
margin: 0 5px;
|
5776 |
+
padding: 15px;
|
5777 |
+
-webkit-border-radius: 50%;
|
5778 |
+
border-radius: 50%; }
|
5779 |
+
|
5780 |
+
.pa-gallery-img.style2 .pa-gallery-magnific-image span,
|
5781 |
+
.pa-gallery-img.style2 .pa-gallery-img-link span {
|
5782 |
+
margin: 0 5px 20px; }
|
5783 |
+
|
5784 |
+
.pa-gallery-img:hover .pa-gallery-magnific-image span {
|
5785 |
+
-webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s;
|
5786 |
+
transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.3s; }
|
5787 |
+
|
5788 |
+
.pa-gallery-img:hover .pa-gallery-img-link span {
|
5789 |
+
-webkit-transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s;
|
5790 |
+
transition: all 0.3s ease-in-out, opacity 0.5s ease-in-out 0.6s; }
|
5791 |
+
|
5792 |
+
.pa-gallery-img:hover .pa-gallery-magnific-image span,
|
5793 |
+
.pa-gallery-img:hover .pa-gallery-img-link span {
|
5794 |
+
opacity: 1; }
|
5795 |
+
|
5796 |
+
.premium-gallery-icon-show a.pa-gallery-video-icon span {
|
5797 |
+
opacity: 1; }
|
5798 |
+
|
5799 |
+
.premium-img-gallery-filter ul.premium-gallery-cats-container,
|
5800 |
+
.premium-blog-filter ul.premium-blog-filters-container {
|
5801 |
+
text-align: center;
|
5802 |
+
margin: 0;
|
5803 |
+
padding: 0; }
|
5804 |
+
|
5805 |
+
.premium-img-gallery-filter .premium-gallery-cats-container li,
|
5806 |
+
.premium-blog-filter .premium-blog-filters-container li {
|
5807 |
+
list-style: none;
|
5808 |
+
-js-display: inline-flex;
|
5809 |
+
display: -webkit-inline-box;
|
5810 |
+
display: -webkit-inline-flex;
|
5811 |
+
display: -moz-inline-box;
|
5812 |
+
display: -ms-inline-flexbox;
|
5813 |
+
display: inline-flex; }
|
5814 |
+
|
5815 |
+
.premium-img-gallery.zoomin .pa-gallery-img:hover img {
|
5816 |
+
-webkit-transform: scale(1.1);
|
5817 |
+
-ms-transform: scale(1.1);
|
5818 |
+
transform: scale(1.1); }
|
5819 |
+
|
5820 |
+
.premium-img-gallery.zoomout .pa-gallery-img:hover img {
|
5821 |
+
-webkit-transform: scale(1);
|
5822 |
+
-ms-transform: scale(1);
|
5823 |
+
transform: scale(1); }
|
5824 |
+
|
5825 |
+
.premium-img-gallery.scale .pa-gallery-img:hover img {
|
5826 |
+
-webkit-transform: scale(1.3) rotate(5deg);
|
5827 |
+
-ms-transform: scale(1.3) rotate(5deg);
|
5828 |
+
transform: scale(1.3) rotate(5deg); }
|
5829 |
+
|
5830 |
+
.premium-img-gallery.gray .pa-gallery-img:hover img {
|
5831 |
+
-webkit-filter: grayscale(0%);
|
5832 |
+
filter: grayscale(0%); }
|
5833 |
+
|
5834 |
+
.premium-img-gallery.blur .pa-gallery-img:hover img {
|
5835 |
+
-webkit-filter: blur(3px);
|
5836 |
+
filter: blur(3px); }
|
5837 |
+
|
5838 |
+
.premium-img-gallery.sepia .pa-gallery-img:hover img {
|
5839 |
+
-webkit-filter: sepia(0%);
|
5840 |
+
filter: sepia(0%); }
|
5841 |
+
|
5842 |
+
.premium-img-gallery.trans .pa-gallery-img:hover img {
|
5843 |
+
-webkit-transform: translateX(0px) scale(1.1);
|
5844 |
+
-ms-transform: translateX(0px) scale(1.1);
|
5845 |
+
transform: translateX(0px) scale(1.1); }
|
5846 |
+
|
5847 |
+
.premium-img-gallery.bright .pa-gallery-img:hover img {
|
5848 |
+
-webkit-filter: brightness(1.2);
|
5849 |
+
filter: brightness(1.2); }
|
5850 |
+
|
5851 |
+
.pa-gallery-img .premium-gallery-caption {
|
5852 |
+
padding: 10px; }
|
5853 |
+
.pa-gallery-img .premium-gallery-caption .premium-gallery-img-name {
|
5854 |
+
margin-bottom: 0; }
|
5855 |
+
|
5856 |
+
.pa-gallery-img.style1 {
|
5857 |
+
overflow: hidden; }
|
5858 |
+
|
5859 |
+
.pa-gallery-img:not(.style2) .pa-gallery-icons-wrapper {
|
5860 |
+
position: absolute;
|
5861 |
+
top: 0;
|
5862 |
+
left: 0;
|
5863 |
+
width: 100%;
|
5864 |
+
height: 100%;
|
5865 |
+
-webkit-transition: all 0.3s ease-in-out;
|
5866 |
+
transition: all 0.3s ease-in-out; }
|
5867 |
+
|
5868 |
+
.pa-gallery-img:not(.style2) .pa-gallery-icons-inner-container {
|
5869 |
+
position: absolute;
|
5870 |
+
top: 33.33%;
|
5871 |
+
width: 100%;
|
5872 |
+
text-align: center;
|
5873 |
+
-webkit-transform: translateY(-50%);
|
5874 |
+
-ms-transform: translateY(-50%);
|
5875 |
+
transform: translateY(-50%);
|
5876 |
+
z-index: 999; }
|
5877 |
+
|
5878 |
+
.pa-gallery-img.style1 .premium-gallery-caption {
|
5879 |
+
position: absolute;
|
5880 |
+
top: auto;
|
5881 |
+
right: 0;
|
5882 |
+
bottom: -1px;
|
5883 |
+
left: 0;
|
5884 |
+
width: 100%;
|
5885 |
+
-webkit-transition: all 500ms ease 0s;
|
5886 |
+
transition: all 500ms ease 0s;
|
5887 |
+
-webkit-transform: translate3d(0, 100%, 0);
|
5888 |
+
transform: translate3d(0, 100%, 0); }
|
5889 |
+
|
5890 |
+
.pa-gallery-img.style1:hover .premium-gallery-caption {
|
5891 |
+
-webkit-transform: translate3d(0, 0, 0);
|
5892 |
+
transform: translate3d(0, 0, 0);
|
5893 |
+
bottom: -1px !important; }
|
5894 |
+
|
5895 |
+
.pa-gallery-img.default .premium-gallery-caption {
|
5896 |
+
position: absolute;
|
5897 |
+
top: auto;
|
5898 |
+
right: 0;
|
5899 |
+
left: 0;
|
5900 |
+
width: 100%;
|
5901 |
+
bottom: 0; }
|
5902 |
+
|
5903 |
+
.pa-gallery-img.style2 .pa-gallery-icons-caption-container {
|
5904 |
+
position: absolute;
|
5905 |
+
top: 0;
|
5906 |
+
left: 0;
|
5907 |
+
width: 100%;
|
5908 |
+
height: 100%;
|
5909 |
+
opacity: 0;
|
5910 |
+
-webkit-backface-visibility: hidden;
|
5911 |
+
backface-visibility: hidden;
|
5912 |
+
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
|
5913 |
+
transition: opacity 0.3s, -webkit-transform 0.3s;
|
5914 |
+
transition: transform 0.3s, opacity 0.3s;
|
5915 |
+
transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
|
5916 |
+
z-index: 1;
|
5917 |
+
background-color: rgba(108, 191, 226, 0.68);
|
5918 |
+
-js-display: flex;
|
5919 |
+
display: -webkit-box;
|
5920 |
+
display: -webkit-flex;
|
5921 |
+
display: -moz-box;
|
5922 |
+
display: -ms-flexbox;
|
5923 |
+
display: flex;
|
5924 |
+
text-align: center;
|
5925 |
+
-webkit-box-align: center;
|
5926 |
+
-webkit-align-items: center;
|
5927 |
+
-moz-box-align: center;
|
5928 |
+
-ms-flex-align: center;
|
5929 |
+
align-items: center; }
|
5930 |
+
|
5931 |
+
.pa-gallery-img.style2 .pa-gallery-icons-caption-cell {
|
5932 |
+
width: 100%; }
|
5933 |
+
|
5934 |
+
.pa-gallery-img.style2:hover .pa-gallery-icons-caption-container {
|
5935 |
+
opacity: 1;
|
5936 |
+
-webkit-transform: translate(15px, 15px);
|
5937 |
+
-ms-transform: translate(15px, 15px);
|
5938 |
+
transform: translate(15px, 15px); }
|
5939 |
+
|
5940 |
+
.premium-clearfix {
|
5941 |
+
clear: both; }
|
5942 |
+
|
5943 |
+
/**
|
5944 |
+
* Metro Layout
|
5945 |
+
*/
|
5946 |
+
.premium-img-gallery-metro .premium-gallery-item {
|
5947 |
+
overflow: hidden; }
|
5948 |
+
|
5949 |
+
.premium-img-gallery-metro .pa-gallery-img {
|
5950 |
+
height: 100%; }
|
5951 |
+
|
5952 |
+
.premium-img-gallery-metro .pa-gallery-img-container {
|
5953 |
+
height: 100%; }
|
5954 |
+
.premium-img-gallery-metro .pa-gallery-img-container img {
|
5955 |
+
min-height: 100%;
|
5956 |
+
width: 100%;
|
5957 |
+
-o-object-fit: fill;
|
5958 |
+
object-fit: fill; }
|
5959 |
+
|
5960 |
+
.premium-img-gallery .premium-gallery-item-hidden {
|
5961 |
+
visibility: hidden;
|
5962 |
+
width: 0 !important;
|
5963 |
+
height: 0 !important;
|
5964 |
+
margin: 0 !important;
|
5965 |
+
padding: 0 !important; }
|
5966 |
+
|
5967 |
+
.premium-gallery-load-more {
|
5968 |
+
position: relative; }
|
5969 |
+
.premium-gallery-load-more .premium-gallery-load-more-btn {
|
5970 |
+
-webkit-box-shadow: none;
|
5971 |
+
box-shadow: none;
|
5972 |
+
text-shadow: none;
|
5973 |
+
border: none;
|
5974 |
+
outline: none;
|
5975 |
+
-webkit-box-align: center;
|
5976 |
+
-webkit-align-items: center;
|
5977 |
+
-moz-box-align: center;
|
5978 |
+
-ms-flex-align: center;
|
5979 |
+
align-items: center;
|
5980 |
+
vertical-align: bottom;
|
5981 |
+
cursor: pointer;
|
5982 |
+
line-height: 1;
|
5983 |
+
font-style: normal;
|
5984 |
+
font-weight: normal;
|
5985 |
+
background-image: none;
|
5986 |
+
color: #fff;
|
5987 |
+
-webkit-transition: all 0.3s ease-in-out;
|
5988 |
+
transition: all 0.3s ease-in-out; }
|
5989 |
+
|
5990 |
+
.premium-gallery-load-more-btn {
|
5991 |
+
-js-display: inline-flex;
|
5992 |
+
display: -webkit-inline-box;
|
5993 |
+
display: -webkit-inline-flex;
|
5994 |
+
display: -moz-inline-box;
|
5995 |
+
display: -ms-inline-flexbox;
|
5996 |
+
display: inline-flex;
|
5997 |
+
-webkit-box-align: center;
|
5998 |
+
-webkit-align-items: center;
|
5999 |
+
-moz-box-align: center;
|
6000 |
+
-ms-flex-align: center;
|
6001 |
+
align-items: center; }
|
6002 |
+
|
6003 |
+
.premium-loader {
|
6004 |
+
border: 3px solid #f3f3f3;
|
6005 |
+
border-top-width: 3px;
|
6006 |
+
border-top-style: solid;
|
6007 |
+
border-top-color: #f3f3f3;
|
6008 |
+
-webkit-border-radius: 50%;
|
6009 |
+
border-radius: 50%;
|
6010 |
+
border-top: 3px solid;
|
6011 |
+
border-top-color: #bbb;
|
6012 |
+
width: 30px;
|
6013 |
+
height: 30px;
|
6014 |
+
-webkit-animation: spin 2s linear infinite;
|
6015 |
+
animation: spin 2s linear infinite;
|
6016 |
+
margin: 0 auto; }
|
6017 |
+
|
6018 |
+
.premium-gallery-load-more-btn div {
|
6019 |
+
margin-left: 3px; }
|
6020 |
+
|
6021 |
+
.premium-gallery-load-more-btn .premium-loader {
|
6022 |
+
display: inline-block;
|
6023 |
+
width: 20px;
|
6024 |
+
height: 20px; }
|
6025 |
+
|
6026 |
+
.pa-gallery-img .pa-gallery-lightbox-wrap {
|
6027 |
+
display: inline-block; }
|
6028 |
+
|
6029 |
+
.premium-img-gallery-no-lightbox .premium-gallery-video-item .pa-gallery-img,
|
6030 |
+
.pa-gallery-img .pa-gallery-video-icon {
|
6031 |
+
cursor: pointer; }
|
6032 |
+
|
6033 |
+
.pa-gallery-img-container iframe {
|
6034 |
+
position: absolute;
|
6035 |
+
visibility: hidden;
|
6036 |
+
top: 0;
|
6037 |
+
left: 0;
|
6038 |
+
max-width: 100%;
|
6039 |
+
width: 100%;
|
6040 |
+
height: 100%;
|
6041 |
+
margin: 0;
|
6042 |
+
line-height: 1;
|
6043 |
+
border: none; }
|
6044 |
+
|
6045 |
+
.pa-gallery-img-container video {
|
6046 |
+
position: absolute;
|
6047 |
+
visibility: hidden;
|
6048 |
+
top: 0;
|
6049 |
+
left: 0;
|
6050 |
+
max-width: 100%;
|
6051 |
+
width: 100%;
|
6052 |
+
height: 100%;
|
6053 |
+
margin: 0;
|
6054 |
+
line-height: 1;
|
6055 |
+
border: none;
|
6056 |
+
-o-object-fit: contain;
|
6057 |
+
object-fit: contain; }
|
6058 |
+
|
6059 |
+
.pa-gallery-icons-inner-container svg,
|
6060 |
+
.pa-gallery-icons-caption-cell svg {
|
6061 |
+
width: 14px;
|
6062 |
+
height: 14px; }
|
6063 |
+
|
6064 |
+
.premium-gallery-gradient-layer {
|
6065 |
+
position: absolute;
|
6066 |
+
bottom: 40px;
|
6067 |
+
width: 100%;
|
6068 |
+
height: 20px;
|
6069 |
+
background: -webkit-gradient(linear, left bottom, left top, from(#17181f), to(rgba(255, 255, 255, 0)));
|
6070 |
+
background: -webkit-linear-gradient(bottom, #17181f 0%, rgba(255, 255, 255, 0) 100%);
|
6071 |
+
background: linear-gradient(to top, #17181f 0%, rgba(255, 255, 255, 0) 100%); }
|
6072 |
+
|
6073 |
+
@-webkit-keyframes spin {
|
6074 |
+
0% {
|
6075 |
+
-webkit-transform: rotate(0deg);
|
6076 |
+
transform: rotate(0deg); }
|
6077 |
+
100% {
|
6078 |
+
-webkit-transform: rotate(360deg);
|
6079 |
+
transform: rotate(360deg); } }
|
6080 |
+
|
6081 |
+
@keyframes spin {
|
6082 |
+
0% {
|
6083 |
+
-webkit-transform: rotate(0deg);
|
6084 |
+
transform: rotate(0deg); }
|
6085 |
+
100% {
|
6086 |
+
-webkit-transform: rotate(360deg);
|
6087 |
+
transform: rotate(360deg); } }
|
6088 |
+
|
6089 |
+
/************ Premium Vertical Scroll ************/
|
6090 |
+
/*************************************************/
|
6091 |
+
.premium-vscroll-inner {
|
6092 |
+
position: relative;
|
6093 |
+
min-height: 100%; }
|
6094 |
+
.premium-vscroll-inner .premium-vscroll-dots {
|
6095 |
+
position: fixed;
|
6096 |
+
z-index: 100;
|
6097 |
+
opacity: 1;
|
6098 |
+
margin-top: -32px;
|
6099 |
+
-webkit-transition: all 0.3s ease-in-out;
|
6100 |
+
transition: all 0.3s ease-in-out; }
|
6101 |
+
|
6102 |
+
.premium-vscroll-wrap .premium-vscroll-nav-menu {
|
6103 |
+
opacity: 1;
|
6104 |
+
-webkit-transition: all 0.3s ease-in-out;
|
6105 |
+
transition: all 0.3s ease-in-out; }
|
6106 |
+
|
6107 |
+
.premium-vscroll-inner .premium-vscroll-dots,
|
6108 |
+
.premium-vscroll-wrap .premium-vscroll-dots-hide {
|
6109 |
+
opacity: 0;
|
6110 |
+
visibility: hidden; }
|
6111 |
+
|
6112 |
+
.premium-vscroll-nav-dots-yes .premium-vscroll-inner .premium-vscroll-dots:not(.premium-vscroll-dots-hide) {
|
6113 |
+
opacity: 1;
|
6114 |
+
visibility: visible; }
|
6115 |
+
|
6116 |
+
.premium-vscroll-dots.middle {
|
6117 |
+
top: 50%; }
|
6118 |
+
|
6119 |
+
.premium-vscroll-dots.top {
|
6120 |
+
top: 40px; }
|
6121 |
+
|
6122 |
+
.premium-vscroll-dots.bottom {
|
6123 |
+
bottom: 30px; }
|
6124 |
+
|
6125 |
+
.premium-vscroll-dots.right {
|
6126 |
+
right: 17px; }
|
6127 |
+
|
6128 |
+
.premium-vscroll-dots.left {
|
6129 |
+
left: 17px; }
|
6130 |
+
|
6131 |
+
.premium-vscroll-inner ul.premium-vscroll-dots-list,
|
6132 |
+
.premium-vscroll-wrap .premium-vscroll-nav-menu {
|
6133 |
+
margin: 0 !important;
|
6134 |
+
padding: 0; }
|
6135 |
+
|
6136 |
+
.premium-vscroll-inner ul.premium-vscroll-dots-list li {
|
6137 |
+
width: 14px;
|
6138 |
+
height: 13px;
|
6139 |
+
margin: 7px;
|
6140 |
+
position: relative;
|
6141 |
+
-js-display: flex;
|
6142 |
+
display: -webkit-box;
|
6143 |
+
display: -webkit-flex;
|
6144 |
+
display: -moz-box;
|
6145 |
+
display: -ms-flexbox;
|
6146 |
+
display: flex;
|
6147 |
+
-webkit-box-pack: center;
|
6148 |
+
-webkit-justify-content: center;
|
6149 |
+
-moz-box-pack: center;
|
6150 |
+
-ms-flex-pack: center;
|
6151 |
+
justify-content: center;
|
6152 |
+
-webkit-box-align: center;
|
6153 |
+
-webkit-align-items: center;
|
6154 |
+
-moz-box-align: center;
|
6155 |
+
-ms-flex-align: center;
|
6156 |
+
align-items: center;
|
6157 |
+
overflow: visible; }
|
6158 |
+
|
6159 |
+
.premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link {
|
6160 |
+
display: block;
|
6161 |
+
position: relative;
|
6162 |
+
z-index: 1;
|
6163 |
+
width: 100%;
|
6164 |
+
height: 100%;
|
6165 |
+
cursor: pointer;
|
6166 |
+
text-decoration: none; }
|
6167 |
+
.premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-nav-link span {
|
6168 |
+
top: 2px;
|
6169 |
+
left: 2.5px;
|
6170 |
+
width: 8px;
|
6171 |
+
height: 8px;
|
6172 |
+
border: 1px solid #000;
|
6173 |
+
-webkit-border-radius: 50%;
|
6174 |
+
border-radius: 50%;
|
6175 |
+
position: absolute;
|
6176 |
+
z-index: 1;
|
6177 |
+
-webkit-transition: all 0.3s ease-in-out;
|
6178 |
+
transition: all 0.3s ease-in-out; }
|
6179 |
+
|
6180 |
+
.premium-vscroll-inner .premium-vscroll-dot-item.active .premium-vscroll-nav-link span {
|
6181 |
+
-webkit-transform: scale(1.6);
|
6182 |
+
-ms-transform: scale(1.6);
|
6183 |
+
transform: scale(1.6); }
|
6184 |
+
|
6185 |
+
.premium-vscroll-inner .premium-vscroll-dot-item .premium-vscroll-tooltip {
|
6186 |
+
position: absolute;
|
6187 |
+
color: #fff;
|
6188 |
+
font-size: 14px;
|
6189 |
+
font-family: arial, helvetica, sans-serif;
|
6190 |
+
white-space: nowrap;
|
6191 |
+
max-width: 220px;
|
6192 |
+
padding-left: 0.4em;
|
6193 |
+
padding-right: 0.4em; }
|
6194 |
+
|
6195 |
+
.premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip {
|
6196 |
+
right: 27px; }
|
6197 |
+
|
6198 |
+
.premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item {
|
6199 |
+
width: 4px;
|
6200 |
+
height: 30px; }
|
6201 |
+
.premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item span {
|
6202 |
+
width: 100%;
|
6203 |
+
height: 100%;
|
6204 |
+
-webkit-border-radius: 0;
|
6205 |
+
border-radius: 0; }
|
6206 |
+
.premium-vscroll-inner .premium-vscroll-dots.lines .premium-vscroll-dot-item.active span {
|
6207 |
+
-webkit-transform: scale(1);
|
6208 |
+
-ms-transform: scale(1);
|
6209 |
+
transform: scale(1); }
|
6210 |
+
|
6211 |
+
.premium-vscroll-inner .premium-vscroll-dots.right .premium-vscroll-tooltip::after {
|
6212 |
+
position: absolute;
|
6213 |
+
top: 50%;
|
6214 |
+
content: "";
|
6215 |
+
left: -webkit-calc(100% - 1px);
|
6216 |
+
left: calc(100% - 1px);
|
6217 |
+
width: 10px;
|
6218 |
+
height: 0;
|
6219 |
+
border-top: 6px solid transparent;
|
6220 |
+
border-bottom: 6px solid transparent;
|
6221 |
+
border-left: 6px solid;
|
6222 |
+
-webkit-transform: translateY(-50%);
|
6223 |
+
-ms-transform: translateY(-50%);
|
6224 |
+
transform: translateY(-50%); }
|
6225 |
+
|
6226 |
+
.premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip {
|
6227 |
+
left: 27px; }
|
6228 |
+
.premium-vscroll-inner .premium-vscroll-dots.left .premium-vscroll-tooltip::after {
|
6229 |
+
position: absolute;
|
6230 |
+
top: 50%;
|
6231 |
+
content: "";
|
6232 |
+
right: -webkit-calc(100% - 1px);
|
6233 |
+
right: calc(100% - 1px);
|
6234 |
+
width: 10px;
|
6235 |
+
height: 0;
|
6236 |
+
border-top: 6px solid transparent;
|
6237 |
+
border-bottom: 6px solid transparent;
|
6238 |
+
border-right: 6px solid;
|
6239 |
+
-webkit-transform: translateY(-50%);
|
6240 |
+
-ms-transform: translateY(-50%);
|
6241 |
+
transform: translateY(-50%); }
|
6242 |
+
|
6243 |
+
/* * Lines */
|
6244 |
+
@media (max-width: 768px) {
|
6245 |
+
.premium-vscroll-dots.right {
|
6246 |
+
right: 7px; }
|
6247 |
+
.premium-vscroll-dots.left {
|
6248 |
+
left: 7px; } }
|
6249 |
+
|
6250 |
+
.premium-vscroll-nav-menu {
|
6251 |
+
position: fixed;
|
6252 |
+
top: 20px;
|
6253 |
+
height: 40px;
|
6254 |
+
z-index: 100;
|
6255 |
+
padding: 0;
|
6256 |
+
margin: 0; }
|
6257 |
+
.premium-vscroll-nav-menu.left {
|
6258 |
+
left: 0; }
|
6259 |
+
.premium-vscroll-nav-menu.right {
|
6260 |
+
right: 0; }
|
6261 |
+
.premium-vscroll-nav-menu .premium-vscroll-nav-item {
|
6262 |
+
display: inline-block;
|
6263 |
+
margin: 10px;
|
6264 |
+
color: #000;
|
6265 |
+
background: #fff;
|
6266 |
+
background: rgba(255, 255, 255, 0.3); }
|
6267 |
+
.premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link {
|
6268 |
+
padding: 9px 18px;
|
6269 |
+
display: block;
|
6270 |
+
cursor: pointer;
|
6271 |
+
color: #000; }
|
6272 |
+
.premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:hover {
|
6273 |
+
color: #000; }
|
6274 |
+
.premium-vscroll-nav-menu .premium-vscroll-nav-item .premium-vscroll-nav-link:focus {
|
6275 |
+
outline: none; }
|
6276 |
+
|
6277 |
+
.multiscroll-nav li a:focus {
|
6278 |
+
outline: none; }
|
6279 |
+
|
6280 |
+
.premium-vscroll-temp .slimScrollBar {
|
6281 |
+
visibility: hidden; }
|
6282 |
+
|
6283 |
+
/************ Premium Image Scroll ************/
|
6284 |
+
/**********************************************/
|
6285 |
+
.premium-image-scroll-section,
|
6286 |
+
.premium-image-scroll-container {
|
6287 |
+
-webkit-transition: all 0.3s ease-in-out;
|
6288 |
+
transition: all 0.3s ease-in-out; }
|
6289 |
+
|
6290 |
+
.premium-image-scroll-section {
|
6291 |
+
position: relative;
|
6292 |
+
overflow: hidden;
|
6293 |
+
width: 100%;
|
6294 |
+
-webkit-mask-image: -webkit-radial-gradient(white, black); }
|
6295 |
+
|
6296 |
+
.premium-image-scroll-container {
|
6297 |
+
width: 100%; }
|
6298 |
+
.premium-image-scroll-container .premium-image-scroll-mask-media {
|
6299 |
+
-webkit-mask-repeat: no-repeat;
|
6300 |
+
mask-repeat: no-repeat;
|
6301 |
+
-webkit-mask-position: center;
|
6302 |
+
mask-position: center; }
|
6303 |
+
|
6304 |
+
.premium-container-scroll {
|
6305 |
+
overflow: auto; }
|
6306 |
+
|
6307 |
+
.premium-image-scroll-container .premium-image-scroll-horizontal {
|
6308 |
+
position: relative;
|
6309 |
+
width: 100%;
|
6310 |
+
height: 100%; }
|
6311 |
+
.premium-image-scroll-container .premium-image-scroll-horizontal img {
|
6312 |
+
max-width: none;
|
6313 |
+
height: 100%; }
|
6314 |
+
|
6315 |
+
.premium-image-scroll-container .premium-image-scroll-vertical img {
|
6316 |
+
width: 100%;
|
6317 |
+
max-width: 100%;
|
6318 |
+
height: auto; }
|
6319 |
+
|
6320 |
+
.premium-image-scroll-ver {
|
6321 |
+
position: relative; }
|
6322 |
+
|
6323 |
+
.premium-image-scroll-container .premium-image-scroll-overlay {
|
6324 |
+
background: rgba(2, 2, 2, 0.3); }
|
6325 |
+
|
6326 |
+
.premium-image-scroll-container .premium-image-scroll-link,
|
6327 |
+
.premium-image-scroll-container .premium-image-scroll-overlay {
|
6328 |
+
position: absolute;
|
6329 |
+
top: 0;
|
6330 |
+
bottom: 0;
|
6331 |
+
left: 0;
|
6332 |
+
right: 0;
|
6333 |
+
z-index: 4; }
|
6334 |
+
|
6335 |
+
.premium-image-scroll-content {
|
6336 |
+
display: inline-block;
|
6337 |
+
position: absolute;
|
6338 |
+
height: auto;
|
6339 |
+
top: 50%;
|
6340 |
+
left: 50%;
|
6341 |
+
text-align: center;
|
6342 |
+
z-index: 5;
|
6343 |
+
-webkit-transform: translate(-50%, -50%);
|
6344 |
+
-ms-transform: translate(-50%, -50%);
|
6345 |
+
transform: translate(-50%, -50%); }
|
6346 |
+
|
6347 |
+
.premium-container-scroll-instant .premium-image-scroll-image {
|
6348 |
+
-webkit-transition: all 0s ease-in-out !important;
|
6349 |
+
transition: all 0s ease-in-out !important; }
|
6350 |
+
|
6351 |
+
.premium-image-scroll-container img {
|
6352 |
+
-webkit-transition: -webkit-transform 3s ease-in-out;
|
6353 |
+
transition: -webkit-transform 3s ease-in-out;
|
6354 |
+
transition: transform 3s ease-in-out;
|
6355 |
+
transition: transform 3s ease-in-out, -webkit-transform 3s ease-in-out; }
|
6356 |
+
|
6357 |
+
.premium-image-scroll-container .premium-image-scroll-overlay,
|
6358 |
+
.premium-image-scroll-container .premium-image-scroll-content {
|
6359 |
+
-webkit-transition: all 0.3s ease-in-out;
|
6360 |
+
transition: all 0.3s ease-in-out;
|
6361 |
+
opacity: 1; }
|
6362 |
+
|
6363 |
+
.premium-image-scroll-container:hover .premium-image-scroll-overlay {
|
6364 |
+
opacity: 0; }
|
6365 |
+
|
6366 |
+
.premium-image-scroll-container:hover .premium-image-scroll-content {
|
6367 |
+
opacity: 0;
|
6368 |
+
visibility: hidden; }
|
6369 |
+
|
6370 |
+
.premium-image-scroll-content .premium-image-scroll-icon {
|
6371 |
+
display: inline-block;
|
6372 |
+
font-family: "pa-elements" !important;
|
6373 |
+
speak: none;
|
6374 |
+
font-style: normal;
|
6375 |
+
font-weight: normal;
|
6376 |
+
font-variant: normal;
|
6377 |
+
text-transform: none;
|
6378 |
+
line-height: 1;
|
6379 |
+
-webkit-font-smoothing: antialiased;
|
6380 |
+
-moz-osx-font-smoothing: grayscale;
|
6381 |
+
-webkit-animation-duration: 0.5s;
|
6382 |
+
animation-duration: 0.5s;
|
6383 |
+
-webkit-animation-iteration-count: infinite;
|
6384 |
+
animation-iteration-count: infinite;
|
6385 |
+
-webkit-animation-direction: alternate;
|
6386 |
+
animation-direction: alternate;
|
6387 |
+
-webkit-animation-timing-function: ease-in-out;
|
6388 |
+
animation-timing-function: ease-in-out; }
|
6389 |
+
|
6390 |
+
.pa-horizontal-mouse-scroll:before {
|
6391 |
+
content: "\e917"; }
|
6392 |
+
|
6393 |
+
.pa-vertical-mouse-scroll:before {
|
6394 |
+
content: "\e918"; }
|
6395 |
+
|
6396 |
+
.pa-horizontal-mouse-scroll {
|
6397 |
+
-webkit-animation-name: pa-scroll-horizontal;
|
6398 |
+
animation-name: pa-scroll-horizontal; }
|
6399 |
+
|
6400 |
+
.pa-vertical-mouse-scroll {
|
6401 |
+
-webkit-animation-name: pa-scroll-vertical;
|
6402 |
+
animation-name: pa-scroll-vertical; }
|
6403 |
+
|
6404 |
+
@-webkit-keyframes pa-scroll-vertical {
|
6405 |
+
0% {
|
6406 |
+
-webkit-transform: translateY(0px);
|
6407 |
+
transform: translateY(0px); }
|
6408 |
+
100% {
|
6409 |
+
-webkit-transform: translateY(5px);
|
6410 |
+
transform: translateY(5px); } }
|
6411 |
+
|
6412 |
+
@keyframes pa-scroll-vertical {
|
6413 |
+
0% {
|
6414 |
+
-webkit-transform: translateY(0px);
|
6415 |
+
transform: translateY(0px); }
|
6416 |
+
100% {
|
6417 |
+
-webkit-transform: translateY(5px);
|
6418 |
+
transform: translateY(5px); } }
|
6419 |
+
|
6420 |
+
@-webkit-keyframes pa-scroll-horizontal {
|
6421 |
+
0% {
|
6422 |
+
-webkit-transform: translateX(0px);
|
6423 |
+
transform: translateX(0px); }
|
6424 |
+
100% {
|
6425 |
+
-webkit-transform: translateX(5px);
|
6426 |
+
transform: translateX(5px); } }
|
6427 |
+
|
6428 |
+
@keyframes pa-scroll-horizontal {
|
6429 |
+
0% {
|
6430 |
+
-webkit-transform: translateX(0px);
|
6431 |
+
transform: translateX(0px); }
|
6432 |
+
100% {
|
6433 |
+
-webkit-transform: translateX(5px);
|
6434 |
+
transform: translateX(5px); } }
|
6435 |
+
|
6436 |
+
/********* Premium Lottie Animations *********/
|
6437 |
+
/*********************************************/
|
6438 |
+
.premium-lottie-wrap .premium-lottie-animation {
|
6439 |
+
position: relative;
|
6440 |
+
-js-display: inline-flex;
|
6441 |
+
display: -webkit-inline-box;
|
6442 |
+
display: -webkit-inline-flex;
|
6443 |
+
display: -moz-inline-box;
|
6444 |
+
display: -ms-inline-flexbox;
|
6445 |
+
display: inline-flex;
|
6446 |
+
-webkit-transition: all 0.3s ease-in-out;
|
6447 |
+
transition: all 0.3s ease-in-out; }
|
6448 |
+
.premium-lottie-wrap .premium-lottie-animation a {
|
6449 |
+
position: absolute;
|
6450 |
+
left: 0;
|
6451 |
+
top: 0;
|
6452 |
+
width: 100%;
|
6453 |
+
height: 100%; }
|
6454 |
+
|
6455 |
+
/**************** Premium Bullet List ****************/
|
6456 |
+
/*****************************************************/
|
6457 |
+
.premium-icon-list-box {
|
6458 |
+
-js-display: flex;
|
6459 |
+
display: -webkit-box;
|
6460 |
+
display: -webkit-flex;
|
6461 |
+
display: -moz-box;
|
6462 |
+
display: -ms-flexbox;
|
6463 |
+
display: flex;
|
6464 |
+
-webkit-flex-wrap: wrap;
|
6465 |
+
-ms-flex-wrap: wrap;
|
6466 |
+
flex-wrap: wrap;
|
6467 |
+
-webkit-box-orient: vertical;
|
6468 |
+
-webkit-box-direction: normal;
|
6469 |
+
-webkit-flex-direction: column;
|
6470 |
+
-moz-box-orient: vertical;
|
6471 |
+
-moz-box-direction: normal;
|
6472 |
+
-ms-flex-direction: column;
|
6473 |
+
flex-direction: column; }
|
6474 |
+
.premium-icon-list-box .premium-icon-list-content-grow-lc {
|
6475 |
+
-webkit-transform-origin: left center;
|
6476 |
+
-ms-transform-origin: left center;
|
6477 |
+
transform-origin: left center; }
|
6478 |
+
.premium-icon-list-box .premium-icon-list-content-grow-rc {
|
6479 |
+
-webkit-transform-origin: right center;
|
6480 |
+
-ms-transform-origin: right center;
|
6481 |
+
transform-origin: right center; }
|
6482 |
+
.premium-icon-list-box .premium-icon-list-content-grow-cc {
|
6483 |
+
-webkit-transform-origin: center center;
|
6484 |
+
-ms-transform-origin: center center;
|
6485 |
+
transform-origin: center center; }
|
6486 |
+
|
6487 |
+
.premium-icon-list-content {
|
6488 |
+
-js-display: flex;
|
6489 |
+
display: -webkit-box;
|
6490 |
+
display: -webkit-flex;
|
6491 |
+
display: -moz-box;
|
6492 |
+
display: -ms-flexbox;
|
6493 |
+
display: flex;
|
6494 |
+
-webkit-transition: all 0.3s ease-in-out;
|
6495 |
+
transition: all 0.3s ease-in-out;
|
6496 |
+
width: auto;
|
6497 |
+
position: relative; }
|
6498 |
+
.premium-icon-list-content .premium-icon-list-text span,
|
6499 |
+
.premium-icon-list-content .premium-icon-list-wrapper {
|
6500 |
+
display: inline-block;
|
6501 |
+
-webkit-align-self: center;
|
6502 |
+
-ms-flex-item-align: center;
|
6503 |
+
align-self: center;
|
6504 |
+
-webkit-transition: all 0.3s ease-in-out;
|
6505 |
+
transition: all 0.3s ease-in-out; }
|
6506 |
+
.premium-icon-list-content .premium-icon-list-text span {
|
6507 |
+
margin: 0 5px; }
|
6508 |
+
.premium-icon-list-content .premium-icon-list-icon-text p {
|
6509 |
+
font-size: 18px;
|
6510 |
+
background-color: #eee;
|
6511 |
+
padding: 1px 5px;
|
6512 |
+
-webkit-border-radius: 2px;
|
6513 |
+
border-radius: 2px; }
|
6514 |
+
.premium-icon-list-content .premium-icon-list-text span,
|
6515 |
+
.premium-icon-list-content .premium-icon-list-icon-text p,
|
6516 |
+
.premium-icon-list-content .premium-icon-list-wrapper img,
|
6517 |
+
.premium-icon-list-content .premium-icon-list-wrapper svg,
|
6518 |
+
.premium-icon-list-content .premium-icon-list-wrapper i {
|
6519 |
+
-webkit-transition: all 0.3s ease-in-out;
|
6520 |
+
transition: all 0.3s ease-in-out; }
|
6521 |
+
.premium-icon-list-content .premium-icon-list-wrapper {
|
6522 |
+
position: relative;
|
6523 |
+
line-height: 0; }
|
6524 |
+
.premium-icon-list-content .premium-icon-list-wrapper img,
|
6525 |
+
.premium-icon-list-content .premium-icon-list-wrapper .premium-lottie-animation svg {
|
6526 |
+
width: 30px !important;
|
6527 |
+
height: 30px !important;
|
6528 |
+
position: relative;
|
6529 |
+
z-index: 500; }
|
6530 |
+
.premium-icon-list-content .premium-icon-list-wrapper i,
|
6531 |
+
.premium-icon-list-content .premium-icon-list-wrapper .premium-icon-list-icon-text {
|
6532 |
+
position: relative;
|
6533 |
+
z-index: 500; }
|
6534 |
+
.premium-icon-list-content .premium-icon-list-link {
|
6535 |
+
position: absolute;
|
6536 |
+
top: 0;
|
6537 |
+
left: 0;
|
6538 |
+
width: 100%;
|
6539 |
+
height: 100%;
|
6540 |
+
z-index: 1000; }
|
6541 |
+
|
6542 |
+
.premium-icon-list-content:not(:last-of-type) .premium-icon-list-connector {
|
6543 |
+
width: 100%;
|
6544 |
+
height: 100%;
|
6545 |
+
position: absolute;
|
6546 |
+
top: 0.5em;
|
6547 |
+
z-index: 100;
|
6548 |
+
-js-display: flex;
|
6549 |
+
display: -webkit-box;
|
6550 |
+
display: -webkit-flex;
|
6551 |
+
display: -moz-box;
|
6552 |
+
display: -ms-flexbox;
|
6553 |
+
display: flex;
|
6554 |
+
-webkit-box-pack: center;
|
6555 |
+
-webkit-justify-content: center;
|
6556 |
+
-moz-box-pack: center;
|
6557 |
+
-ms-flex-pack: center;
|
6558 |
+
justify-content: center; }
|
6559 |
+
.premium-icon-list-content:not(:last-of-type) .premium-icon-list-connector .premium-icon-connector-content:after {
|
6560 |
+
content: "";
|
6561 |
+
border-right-width: 1px;
|
6562 |
+
border-right-style: solid;
|
6563 |
+
border-color: #333333;
|
6564 |
+
display: block;
|
6565 |
+
height: 100%; }
|
6566 |
+
|
6567 |
+
li.premium-icon-list-content.premium-icon-list-content-inline {
|
6568 |
+
-webkit-align-self: center;
|
6569 |
+
-ms-flex-item-align: center;
|
6570 |
+
align-self: center;
|
6571 |
+
z-index: 2; }
|
6572 |
+
|
6573 |
+
li.premium-icon-list-content.premium-icon-list-content-inline:not(:first-child) {
|
6574 |
+
margin: 0 3px; }
|
6575 |
+
|
6576 |
+
li.premium-icon-list-content.premium-icon-list-content-inline:first-child {
|
6577 |
+
margin: 0 3px 0 0; }
|
6578 |
+
|
6579 |
+
.premium-icon-list-divider:not(:last-child) {
|
6580 |
+
width: 100%;
|
6581 |
+
-webkit-box-flex: 0;
|
6582 |
+
-webkit-flex: 0 0 100%;
|
6583 |
+
-moz-box-flex: 0;
|
6584 |
+
-ms-flex: 0 0 100%;
|
6585 |
+
flex: 0 0 100%;
|
6586 |
+
overflow: hidden; }
|
6587 |
+
|
6588 |
+
.premium-icon-list-divider:not(:last-child):after {
|
6589 |
+
content: "";
|
6590 |
+
display: block;
|
6591 |
+
border-top-style: solid;
|
6592 |
+
border-top-width: 1px; }
|
6593 |
+
|
6594 |
+
.premium-icon-list-divider-inline:not(:last-child) {
|
6595 |
+
float: right;
|
6596 |
+
display: inline-block;
|
6597 |
+
position: relative;
|
6598 |
+
height: 100%;
|
6599 |
+
overflow: hidden;
|
6600 |
+
-webkit-align-self: center;
|
6601 |
+
-ms-flex-item-align: center;
|
6602 |
+
align-self: center;
|
6603 |
+
margin: 0 3px; }
|
6604 |
+
|
6605 |
+
.premium-icon-list-divider-inline:not(:last-child):after {
|
6606 |
+
content: "";
|
6607 |
+
display: block;
|
6608 |
+
border-left-width: 1px;
|
6609 |
+
height: 33px;
|
6610 |
+
border-left-style: solid; }
|
6611 |
+
|
6612 |
+
.premium-icon-list-icon-text {
|
6613 |
+
line-height: 1.5; }
|
6614 |
+
|
6615 |
+
.premium-icon-list-icon-text p,
|
6616 |
+
ul.premium-icon-list-box,
|
6617 |
+
li.premium-icon-list-content {
|
6618 |
+
margin: 0; }
|
6619 |
+
|
6620 |
+
.premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-wrapper i,
|
6621 |
+
.premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-text span,
|
6622 |
+
.premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-icon-text p {
|
6623 |
+
color: transparent !important;
|
6624 |
+
text-shadow: 0 0 3px #aaa; }
|
6625 |
+
|
6626 |
+
.premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-connector-content,
|
6627 |
+
.premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-wrapper .premium-lottie-animation svg,
|
6628 |
+
.premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-wrapper img,
|
6629 |
+
.premium-icon-list-blur:hover .premium-icon-list-content .premium-icon-list-badge {
|
6630 |
+
-webkit-filter: blur(3px);
|
6631 |
+
filter: blur(3px); }
|
6632 |
+
|
6633 |
+
.premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-wrapper i,
|
6634 |
+
.premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-text span,
|
6635 |
+
.premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-icon-text p {
|
6636 |
+
color: #aaa !important;
|
6637 |
+
text-shadow: 0 0px 0 transparent; }
|
6638 |
+
|
6639 |
+
.premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-connector-content,
|
6640 |
+
.premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-wrapper .premium-lottie-animation svg,
|
6641 |
+
.premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-wrapper img,
|
6642 |
+
.premium-icon-list-blur:hover .premium-icon-list-content:hover .premium-icon-list-badge {
|
6643 |
+
-webkit-filter: none;
|
6644 |
+
filter: none; }
|
6645 |
+
|
6646 |
+
.premium-icon-list-content .premium-icon-list-badge {
|
6647 |
+
font-size: 11px;
|
6648 |
+
top: auto;
|
6649 |
+
min-width: -webkit-max-content;
|
6650 |
+
min-width: -moz-max-content;
|
6651 |
+
min-width: max-content;
|
6652 |
+
height: -webkit-fit-content;
|
6653 |
+
height: -moz-fit-content;
|
6654 |
+
height: fit-content; }
|
6655 |
+
|
6656 |
+
.premium-icon-list-content .premium-icon-list-icon-text p {
|
6657 |
+
font-size: 13px; }
|
6658 |
+
|
6659 |
+
.premium-icon-list-gradient-effect[data-text] {
|
6660 |
+
display: inline-block;
|
6661 |
+
position: relative;
|
6662 |
+
text-decoration: none; }
|
6663 |
+
|
6664 |
+
.premium-icon-list-gradient-effect[data-text]::before {
|
6665 |
+
content: attr(data-text);
|
6666 |
+
position: absolute;
|
6667 |
+
z-index: 1;
|
6668 |
+
overflow: hidden;
|
6669 |
+
-webkit-clip-path: polygon(0 0, 1px 0, 1px 100%, 0 100%);
|
6670 |
+
clip-path: polygon(0 0, 1px 0, 1px 100%, 0 100%);
|
6671 |
+
-webkit-background-clip: text;
|
6672 |
+
background-clip: text;
|
6673 |
+
-webkit-text-fill-color: transparent;
|
6674 |
+
-webkit-transition: all 0.4s ease;
|
6675 |
+
transition: all 0.4s ease; }
|
6676 |
+
|
6677 |
+
.premium-icon-list-content:hover .premium-icon-list-gradient-effect[data-text]::before,
|
6678 |
+
.premium-icon-list-content:focus .premium-icon-list-gradient-effect[data-text]::before {
|
6679 |
+
-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
|
6680 |
+
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
|
6681 |
+
|
6682 |
+
ul[data-list-animation*="animated-"] .premium-icon-list-divider,
|
6683 |
+
ul[data-list-animation*="animated-"] .premium-icon-list-content,
|
6684 |
+
ul[data-list-animation*="animated-"] .premium-icon-list-divider-inline {
|
6685 |
+
opacity: 0; }
|
6686 |
+
|
6687 |
+
.premium-icon-list-content-grow-effect:hover {
|
6688 |
+
-webkit-transform: scale(1.07);
|
6689 |
+
-ms-transform: scale(1.07);
|
6690 |
+
transform: scale(1.07); }
|
assets/frontend/js/premium-addons.js
CHANGED
@@ -1,1983 +1,1983 @@
|
|
1 |
-
(function ($) {
|
2 |
-
|
3 |
-
/****** Premium Progress Bar Handler ******/
|
4 |
-
var PremiumProgressBarWidgetHandler = function ($scope, trigger) {
|
5 |
-
|
6 |
-
var $progressbarElem = $scope.find(".premium-progressbar-container"),
|
7 |
-
settings = $progressbarElem.data("settings"),
|
8 |
-
length = settings.progress_length,
|
9 |
-
speed = settings.speed,
|
10 |
-
type = settings.type;
|
11 |
-
|
12 |
-
|
13 |
-
if ("line" === type) {
|
14 |
-
|
15 |
-
var $progressbar = $progressbarElem.find(".premium-progressbar-bar");
|
16 |
-
|
17 |
-
if (settings.gradient)
|
18 |
-
$progressbar.css("background", "linear-gradient(-45deg, " + settings.gradient + ")");
|
19 |
-
|
20 |
-
$progressbar.animate({
|
21 |
-
width: length + "%"
|
22 |
-
}, speed);
|
23 |
-
|
24 |
-
} else if ("circle" === type) {
|
25 |
-
if (length > 100)
|
26 |
-
length = 100;
|
27 |
-
|
28 |
-
$progressbarElem.prop({
|
29 |
-
'counter': 0
|
30 |
-
}).animate({
|
31 |
-
counter: length
|
32 |
-
}, {
|
33 |
-
duration: speed,
|
34 |
-
easing: 'linear',
|
35 |
-
step: function (counter) {
|
36 |
-
var rotate = (counter * 3.6);
|
37 |
-
|
38 |
-
$progressbarElem.find(".premium-progressbar-right-label span").text(Math.ceil(counter) + "%");
|
39 |
-
|
40 |
-
$progressbarElem.find(".premium-progressbar-circle-left").css('transform', "rotate(" + rotate + "deg)");
|
41 |
-
if (rotate > 180) {
|
42 |
-
|
43 |
-
$progressbarElem.find(".premium-progressbar-circle").css({
|
44 |
-
'-webkit-clip-path': 'inset(0)',
|
45 |
-
'clip-path': 'inset(0)',
|
46 |
-
});
|
47 |
-
|
48 |
-
$progressbarElem.find(".premium-progressbar-circle-right").css('visibility', 'visible');
|
49 |
-
}
|
50 |
-
}
|
51 |
-
});
|
52 |
-
|
53 |
-
} else {
|
54 |
-
|
55 |
-
var $progressbar = $progressbarElem.find(".premium-progressbar-bar-wrap"),
|
56 |
-
width = $progressbarElem.outerWidth(),
|
57 |
-
dotSize = settings.dot || 25,
|
58 |
-
dotSpacing = settings.spacing || 10,
|
59 |
-
numberOfCircles = Math.ceil(width / (dotSize + dotSpacing)),
|
60 |
-
circlesToFill = numberOfCircles * (length / 100),
|
61 |
-
numberOfTotalFill = Math.floor(circlesToFill),
|
62 |
-
fillPercent = 100 * (circlesToFill - numberOfTotalFill);
|
63 |
-
|
64 |
-
$progressbar.attr('data-circles', numberOfCircles);
|
65 |
-
$progressbar.attr('data-total-fill', numberOfTotalFill);
|
66 |
-
$progressbar.attr('data-partial-fill', fillPercent);
|
67 |
-
|
68 |
-
var className = "progress-segment";
|
69 |
-
for (var i = 0; i < numberOfCircles; i++) {
|
70 |
-
className = "progress-segment";
|
71 |
-
var innerHTML = '';
|
72 |
-
|
73 |
-
if (i < numberOfTotalFill) {
|
74 |
-
innerHTML = "<div class='segment-inner'></div>";
|
75 |
-
} else if (i === numberOfTotalFill) {
|
76 |
-
|
77 |
-
innerHTML = "<div class='segment-inner'></div>";
|
78 |
-
}
|
79 |
-
|
80 |
-
$progressbar.append("<div class='" + className + "'>" + innerHTML + "</div>");
|
81 |
-
|
82 |
-
}
|
83 |
-
|
84 |
-
if ("frontend" !== trigger) {
|
85 |
-
PremiumProgressDotsHandler($scope);
|
86 |
-
}
|
87 |
-
|
88 |
-
}
|
89 |
-
|
90 |
-
};
|
91 |
-
|
92 |
-
var PremiumProgressDotsHandler = function ($scope) {
|
93 |
-
|
94 |
-
var $progressbarElem = $scope.find(".premium-progressbar-container"),
|
95 |
-
settings = $progressbarElem.data("settings"),
|
96 |
-
$progressbar = $scope.find(".premium-progressbar-bar-wrap"),
|
97 |
-
data = $progressbar.data(),
|
98 |
-
speed = settings.speed,
|
99 |
-
increment = 0;
|
100 |
-
|
101 |
-
var numberOfTotalFill = data.totalFill,
|
102 |
-
numberOfCircles = data.circles,
|
103 |
-
fillPercent = data.partialFill;
|
104 |
-
|
105 |
-
dotIncrement(increment);
|
106 |
-
|
107 |
-
function dotIncrement(inc) {
|
108 |
-
|
109 |
-
var $dot = $progressbar.find(".progress-segment").eq(inc),
|
110 |
-
dotWidth = 100;
|
111 |
-
|
112 |
-
if (inc === numberOfTotalFill)
|
113 |
-
dotWidth = fillPercent
|
114 |
-
|
115 |
-
$dot.find(".segment-inner").animate({
|
116 |
-
width: dotWidth + '%'
|
117 |
-
}, speed / numberOfCircles, function () {
|
118 |
-
increment++;
|
119 |
-
if (increment <= numberOfTotalFill) {
|
120 |
-
dotIncrement(increment);
|
121 |
-
}
|
122 |
-
|
123 |
-
});
|
124 |
-
}
|
125 |
-
};
|
126 |
-
|
127 |
-
/****** Premium Progress Bar Scroll Handler *****/
|
128 |
-
var PremiumProgressBarScrollWidgetHandler = function ($scope, $) {
|
129 |
-
|
130 |
-
var $progressbarElem = $scope.find(".premium-progressbar-container"),
|
131 |
-
settings = $progressbarElem.data("settings"),
|
132 |
-
type = settings.type;
|
133 |
-
|
134 |
-
if ("dots" === type) {
|
135 |
-
PremiumProgressBarWidgetHandler($scope, "frontend");
|
136 |
-
}
|
137 |
-
|
138 |
-
elementorFrontend.waypoint($scope, function () {
|
139 |
-
if ("dots" !== type) {
|
140 |
-
PremiumProgressBarWidgetHandler($(this));
|
141 |
-
} else {
|
142 |
-
PremiumProgressDotsHandler($(this));
|
143 |
-
}
|
144 |
-
|
145 |
-
}, {
|
146 |
-
offset: Waypoint.viewportHeight() - 150,
|
147 |
-
triggerOnce: true
|
148 |
-
});
|
149 |
-
};
|
150 |
-
|
151 |
-
/****** Premium Video Box Handler ******/
|
152 |
-
var PremiumVideoBoxWidgetHandler = function ($scope, $) {
|
153 |
-
|
154 |
-
var $videoBoxElement = $scope.find(".premium-video-box-container"),
|
155 |
-
$videoListElement = $scope.find(".premium-video-box-playlist-container"),
|
156 |
-
$videoContainer = $videoBoxElement.find(".premium-video-box-video-container"), //should be clicked
|
157 |
-
$videoInnerContainer = $videoBoxElement.find('.premium-video-box-inner-wrap'),
|
158 |
-
$videoImageContainer = $videoInnerContainer.find('.premium-video-box-image-container'),
|
159 |
-
type = $videoBoxElement.data("type"),
|
160 |
-
thumbnail = $videoBoxElement.data("thumbnail"),
|
161 |
-
sticky = $videoBoxElement.data('sticky'),
|
162 |
-
stickyOnPlay = $videoBoxElement.data('sticky-play'),
|
163 |
-
hoverEffect = $videoBoxElement.data("hover"),
|
164 |
-
video, vidSrc;
|
165 |
-
|
166 |
-
// Youtube playlist option
|
167 |
-
if ($videoListElement.length) {
|
168 |
-
|
169 |
-
//Make sure that video were pulled from the API.
|
170 |
-
if (!$videoContainer.length)
|
171 |
-
return;
|
172 |
-
|
173 |
-
$videoContainer.each(function (index, item) {
|
174 |
-
|
175 |
-
var vidSrc,
|
176 |
-
$videoContainer = $(item),
|
177 |
-
$videoBoxElement = $videoContainer.closest(".premium-video-box-container"),
|
178 |
-
$trigger = $videoContainer.closest(".premium-video-box-trigger");
|
179 |
-
|
180 |
-
vidSrc = $videoContainer.data("src");
|
181 |
-
vidSrc = vidSrc + "&autoplay=1";
|
182 |
-
|
183 |
-
$($trigger).on("click", function () {
|
184 |
-
|
185 |
-
var $iframe = $("<iframe/>");
|
186 |
-
|
187 |
-
$iframe.attr({
|
188 |
-
"src": vidSrc,
|
189 |
-
"frameborder": "0",
|
190 |
-
"allowfullscreen": "1",
|
191 |
-
"allow": "autoplay;encrypted-media;"
|
192 |
-
});
|
193 |
-
$videoContainer.css("background", "#000");
|
194 |
-
$videoContainer.html($iframe);
|
195 |
-
|
196 |
-
$videoBoxElement.find(
|
197 |
-
".premium-video-box-image-container, .premium-video-box-play-icon-container"
|
198 |
-
).remove();
|
199 |
-
|
200 |
-
});
|
201 |
-
|
202 |
-
});
|
203 |
-
|
204 |
-
return;
|
205 |
-
}
|
206 |
-
|
207 |
-
if ("self" === type) {
|
208 |
-
|
209 |
-
video = $videoContainer.find("video");
|
210 |
-
vidSrc = video.attr("src");
|
211 |
-
|
212 |
-
} else {
|
213 |
-
|
214 |
-
vidSrc = $videoContainer.data("src");
|
215 |
-
|
216 |
-
if (!thumbnail || -1 !== vidSrc.indexOf("autoplay=1")) {
|
217 |
-
|
218 |
-
//Check if Autoplay on viewport option is enabled
|
219 |
-
if ($videoBoxElement.data("play-viewport")) {
|
220 |
-
elementorFrontend.waypoint($videoBoxElement, function () {
|
221 |
-
playVideo();
|
222 |
-
});
|
223 |
-
} else {
|
224 |
-
playVideo();
|
225 |
-
}
|
226 |
-
|
227 |
-
} else {
|
228 |
-
vidSrc = vidSrc + "&autoplay=1";
|
229 |
-
}
|
230 |
-
|
231 |
-
}
|
232 |
-
|
233 |
-
function playVideo() {
|
234 |
-
|
235 |
-
if ($videoBoxElement.hasClass("playing")) return;
|
236 |
-
|
237 |
-
$videoBoxElement.addClass("playing");
|
238 |
-
|
239 |
-
if (stickyOnPlay === 'yes')
|
240 |
-
stickyOption();
|
241 |
-
|
242 |
-
if ("self" === type) {
|
243 |
-
|
244 |
-
$(video).get(0).play();
|
245 |
-
|
246 |
-
$videoContainer.css({
|
247 |
-
opacity: "1",
|
248 |
-
visibility: "visible"
|
249 |
-
});
|
250 |
-
|
251 |
-
} else {
|
252 |
-
|
253 |
-
var $iframe = $("<iframe/>");
|
254 |
-
|
255 |
-
$iframe.attr({
|
256 |
-
"src": vidSrc,
|
257 |
-
"frameborder": "0",
|
258 |
-
"allowfullscreen": "1",
|
259 |
-
"allow": "autoplay;encrypted-media;"
|
260 |
-
});
|
261 |
-
$videoContainer.css("background", "#000");
|
262 |
-
$videoContainer.html($iframe);
|
263 |
-
}
|
264 |
-
|
265 |
-
$videoBoxElement.find(
|
266 |
-
".premium-video-box-image-container, .premium-video-box-play-icon-container, .premium-video-box-description-container"
|
267 |
-
).remove();
|
268 |
-
|
269 |
-
if ("vimeo" === type)
|
270 |
-
$videoBoxElement.find(".premium-video-box-vimeo-wrap").remove();
|
271 |
-
}
|
272 |
-
|
273 |
-
$videoBoxElement.on("click", function () {
|
274 |
-
playVideo();
|
275 |
-
});
|
276 |
-
|
277 |
-
|
278 |
-
if ("yes" !== sticky || "yes" === stickyOnPlay)
|
279 |
-
return;
|
280 |
-
|
281 |
-
stickyOption();
|
282 |
-
|
283 |
-
function stickyOption() {
|
284 |
-
|
285 |
-
var stickyDesktop = $videoBoxElement.data('hide-desktop'),
|
286 |
-
stickyTablet = $videoBoxElement.data('hide-tablet'),
|
287 |
-
stickyMobile = $videoBoxElement.data('hide-mobile'),
|
288 |
-
stickyMargin = $videoBoxElement.data('sticky-margin');
|
289 |
-
|
290 |
-
$videoBoxElement.off('click').on('click', function (e) {
|
291 |
-
// if ('yes' === sticky) {
|
292 |
-
var stickyTarget = e.target.className;
|
293 |
-
if ((stickyTarget.toString().indexOf('premium-video-box-sticky-close') >= 0) || (stickyTarget.toString().indexOf('premium-video-box-sticky-close') >= 0)) {
|
294 |
-
return false;
|
295 |
-
}
|
296 |
-
// }
|
297 |
-
playVideo();
|
298 |
-
|
299 |
-
});
|
300 |
-
|
301 |
-
//Make sure Elementor Waypoint is defined
|
302 |
-
if (typeof elementorFrontend.waypoint !== 'undefined') {
|
303 |
-
|
304 |
-
var stickyWaypoint = elementorFrontend.waypoint(
|
305 |
-
$videoBoxElement,
|
306 |
-
function (direction) {
|
307 |
-
if ('down' === direction) {
|
308 |
-
|
309 |
-
$videoBoxElement.removeClass('premium-video-box-sticky-hide').addClass('premium-video-box-sticky-apply premium-video-box-filter-sticky');
|
310 |
-
|
311 |
-
//Fix conflict with Elementor motion effects
|
312 |
-
if ($scope.hasClass("elementor-motion-effects-parent")) {
|
313 |
-
$scope.removeClass("elementor-motion-effects-perspective").find(".elementor-widget-container").addClass("premium-video-box-transform");
|
314 |
-
}
|
315 |
-
|
316 |
-
if ($videoBoxElement.data("mask")) {
|
317 |
-
//Fix Sticky position issue when drop-shadow is applied
|
318 |
-
$scope.find(".premium-video-box-mask-filter").removeClass("premium-video-box-mask-filter");
|
319 |
-
|
320 |
-
$videoBoxElement.find(':first-child').removeClass('premium-video-box-mask-media');
|
321 |
-
|
322 |
-
$videoImageContainer.removeClass(hoverEffect).removeClass('premium-video-box-mask-media').css({
|
323 |
-
'transition': 'width 0.2s, height 0.2s',
|
324 |
-
'-webkit-transition': 'width 0.2s, height 0.2s'
|
325 |
-
});
|
326 |
-
}
|
327 |
-
|
328 |
-
$(document).trigger('premium_after_sticky_applied', [$scope]);
|
329 |
-
|
330 |
-
// Entrance Animation Option
|
331 |
-
if ($videoInnerContainer.data("video-animation") && " " != $videoInnerContainer.data("video-animation")) {
|
332 |
-
$videoInnerContainer.css("opacity", "0");
|
333 |
-
var animationDelay = $videoInnerContainer.data('delay-animation');
|
334 |
-
setTimeout(function () {
|
335 |
-
|
336 |
-
$videoInnerContainer.css("opacity", "1").addClass("animated " + $videoInnerContainer.data("video-animation"));
|
337 |
-
|
338 |
-
}, animationDelay * 1000);
|
339 |
-
}
|
340 |
-
|
341 |
-
} else {
|
342 |
-
|
343 |
-
$videoBoxElement.removeClass('premium-video-box-sticky-apply premium-video-box-filter-sticky').addClass('premium-video-box-sticky-hide');
|
344 |
-
|
345 |
-
//Fix conflict with Elementor motion effects
|
346 |
-
if ($scope.hasClass("elementor-motion-effects-parent")) {
|
347 |
-
$scope.addClass("elementor-motion-effects-perspective").find(".elementor-widget-container").removeClass("premium-video-box-transform");
|
348 |
-
}
|
349 |
-
|
350 |
-
if ($videoBoxElement.data("mask")) {
|
351 |
-
//Fix Sticky position issue when drop-shadow is applied
|
352 |
-
$videoBoxElement.parent().addClass("premium-video-box-mask-filter");
|
353 |
-
|
354 |
-
$videoBoxElement.find(':first-child').eq(0).addClass('premium-video-box-mask-media');
|
355 |
-
$videoImageContainer.addClass('premium-video-box-mask-media');
|
356 |
-
}
|
357 |
-
|
358 |
-
$videoImageContainer.addClass(hoverEffect).css({
|
359 |
-
'transition': 'all 0.2s',
|
360 |
-
'-webkit-transition': 'all 0.2s'
|
361 |
-
});
|
362 |
-
|
363 |
-
$videoInnerContainer.removeClass("animated " + $videoInnerContainer.data("video-animation"));
|
364 |
-
}
|
365 |
-
}, {
|
366 |
-
offset: 0 + '%',
|
367 |
-
triggerOnce: false
|
368 |
-
}
|
369 |
-
);
|
370 |
-
}
|
371 |
-
|
372 |
-
var closeBtn = $scope.find('.premium-video-box-sticky-close');
|
373 |
-
|
374 |
-
closeBtn.off('click.closetrigger').on('click.closetrigger', function (e) {
|
375 |
-
stickyWaypoint[0].disable();
|
376 |
-
|
377 |
-
$videoBoxElement.removeClass('premium-video-box-sticky-apply premium-video-box-sticky-hide');
|
378 |
-
|
379 |
-
//Fix conflict with Elementor motion effects
|
380 |
-
if ($scope.hasClass("elementor-motion-effects-parent")) {
|
381 |
-
$scope.addClass("elementor-motion-effects-perspective").find(".elementor-widget-container").removeClass("premium-video-box-transform");
|
382 |
-
}
|
383 |
-
|
384 |
-
if ($videoBoxElement.data("mask")) {
|
385 |
-
//Fix Sticky position issue when drop-shadow is applied
|
386 |
-
$videoBoxElement.parent().addClass("premium-video-box-mask-filter");
|
387 |
-
|
388 |
-
//Necessary classes for mask shape option
|
389 |
-
$videoBoxElement.find(':first-child').eq(0).addClass('premium-video-box-mask-media');
|
390 |
-
$videoImageContainer.addClass('premium-video-box-mask-media');
|
391 |
-
}
|
392 |
-
|
393 |
-
|
394 |
-
});
|
395 |
-
|
396 |
-
checkResize(stickyWaypoint);
|
397 |
-
|
398 |
-
checkScroll();
|
399 |
-
|
400 |
-
window.addEventListener("scroll", checkScroll);
|
401 |
-
|
402 |
-
$(window).resize(function (e) {
|
403 |
-
checkResize(stickyWaypoint);
|
404 |
-
});
|
405 |
-
|
406 |
-
function checkResize(stickyWaypoint) {
|
407 |
-
var currentDeviceMode = elementorFrontend.getCurrentDeviceMode();
|
408 |
-
|
409 |
-
if ('' !== stickyDesktop && currentDeviceMode == stickyDesktop) {
|
410 |
-
disableSticky(stickyWaypoint);
|
411 |
-
} else if ('' !== stickyTablet && currentDeviceMode == stickyTablet) {
|
412 |
-
disableSticky(stickyWaypoint);
|
413 |
-
} else if ('' !== stickyMobile && currentDeviceMode == stickyMobile) {
|
414 |
-
disableSticky(stickyWaypoint);
|
415 |
-
} else {
|
416 |
-
stickyWaypoint[0].enable();
|
417 |
-
}
|
418 |
-
}
|
419 |
-
|
420 |
-
function disableSticky(stickyWaypoint) {
|
421 |
-
stickyWaypoint[0].disable();
|
422 |
-
$videoBoxElement.removeClass('premium-video-box-sticky-apply premium-video-box-sticky-hide');
|
423 |
-
}
|
424 |
-
|
425 |
-
function checkScroll() {
|
426 |
-
if ($videoBoxElement.hasClass('premium-video-box-sticky-apply')) {
|
427 |
-
$videoInnerContainer.draggable({
|
428 |
-
start: function () {
|
429 |
-
$(this).css({
|
430 |
-
transform: "none",
|
431 |
-
top: $(this).offset().top + "px",
|
432 |
-
left: $(this).offset().left + "px"
|
433 |
-
});
|
434 |
-
},
|
435 |
-
containment: 'window'
|
436 |
-
});
|
437 |
-
}
|
438 |
-
}
|
439 |
-
|
440 |
-
$(document).on('premium_after_sticky_applied', function (e, $scope) {
|
441 |
-
var infobar = $scope.find('.premium-video-box-sticky-infobar');
|
442 |
-
|
443 |
-
if (0 !== infobar.length) {
|
444 |
-
var infobarHeight = infobar.outerHeight();
|
445 |
-
|
446 |
-
if ($scope.hasClass('premium-video-sticky-center-left') || $scope.hasClass('premium-video-sticky-center-right')) {
|
447 |
-
infobarHeight = Math.ceil(infobarHeight / 2);
|
448 |
-
$videoInnerContainer.css('top', 'calc( 50% - ' + infobarHeight + 'px )');
|
449 |
-
}
|
450 |
-
|
451 |
-
if ($scope.hasClass('premium-video-sticky-bottom-left') || $scope.hasClass('premium-video-sticky-bottom-right')) {
|
452 |
-
if ('' !== stickyMargin) {
|
453 |
-
infobarHeight = Math.ceil(infobarHeight);
|
454 |
-
var stickBottom = infobarHeight + stickyMargin;
|
455 |
-
$videoInnerContainer.css('bottom', stickBottom);
|
456 |
-
}
|
457 |
-
}
|
458 |
-
}
|
459 |
-
});
|
460 |
-
|
461 |
-
}
|
462 |
-
|
463 |
-
};
|
464 |
-
|
465 |
-
/****** Premium Media Grid Handler ******/
|
466 |
-
var PremiumGridWidgetHandler = function ($scope, $) {
|
467 |
-
|
468 |
-
var $galleryElement = $scope.find(".premium-gallery-container"),
|
469 |
-
settings = $galleryElement.data("settings"),
|
470 |
-
layout = settings.img_size,
|
471 |
-
deviceType = elementorFrontend.getCurrentDeviceMode(),
|
472 |
-
loadMore = settings.load_more,
|
473 |
-
columnWidth = null,
|
474 |
-
filter = null,
|
475 |
-
isFilterClicked = false,
|
476 |
-
minimum = settings.minimum,
|
477 |
-
imageToShow = settings.click_images,
|
478 |
-
counter = minimum,
|
479 |
-
ltrMode = settings.ltr_mode,
|
480 |
-
shuffle = settings.shuffle;
|
481 |
-
|
482 |
-
var $filters = $scope.find(".premium-gallery-cats-container li");
|
483 |
-
|
484 |
-
if (layout === "metro") {
|
485 |
-
|
486 |
-
var gridWidth = $galleryElement.width(),
|
487 |
-
cellSize = Math.floor(gridWidth / 12),
|
488 |
-
suffix = null;
|
489 |
-
|
490 |
-
setMetroLayout();
|
491 |
-
|
492 |
-
function setMetroLayout() {
|
493 |
-
|
494 |
-
deviceType = elementorFrontend.getCurrentDeviceMode();
|
495 |
-
gridWidth = $galleryElement.width();
|
496 |
-
cellSize = Math.floor(gridWidth / 12);
|
497 |
-
suffix = "";
|
498 |
-
|
499 |
-
if ("tablet" === deviceType) {
|
500 |
-
suffix = "_tablet";
|
501 |
-
} else if ("mobile" === deviceType) {
|
502 |
-
suffix = "_mobile";
|
503 |
-
}
|
504 |
-
|
505 |
-
$galleryElement.find(".premium-gallery-item").each(function (index, item) {
|
506 |
-
|
507 |
-
var cells = $(item).data("metro")["cells" + suffix],
|
508 |
-
vCells = $(item).data("metro")["vcells" + suffix];
|
509 |
-
|
510 |
-
if ("" == cells || undefined == cells) {
|
511 |
-
cells = $(item).data("metro")["cells"];
|
512 |
-
}
|
513 |
-
if ("" == vCells || undefined == vCells) {
|
514 |
-
vCells = $(item).data("metro")["vcells"];
|
515 |
-
}
|
516 |
-
|
517 |
-
$(item).css({
|
518 |
-
width: Math.ceil(cells * cellSize),
|
519 |
-
height: Math.ceil(vCells * cellSize)
|
520 |
-
});
|
521 |
-
});
|
522 |
-
|
523 |
-
columnWidth = cellSize;
|
524 |
-
}
|
525 |
-
|
526 |
-
layout = "masonry";
|
527 |
-
|
528 |
-
$(window).resize(function () {
|
529 |
-
|
530 |
-
setMetroLayout();
|
531 |
-
|
532 |
-
$isotopeGallery.isotope({
|
533 |
-
itemSelector: ".premium-gallery-item",
|
534 |
-
masonry: {
|
535 |
-
columnWidth: columnWidth
|
536 |
-
},
|
537 |
-
});
|
538 |
-
|
539 |
-
});
|
540 |
-
}
|
541 |
-
|
542 |
-
|
543 |
-
var $isotopeGallery = $galleryElement.isotope({
|
544 |
-
itemSelector: ".premium-gallery-item",
|
545 |
-
percentPosition: true,
|
546 |
-
animationOptions: {
|
547 |
-
duration: 750,
|
548 |
-
easing: "linear"
|
549 |
-
},
|
550 |
-
filter: settings.active_cat,
|
551 |
-
layoutMode: layout,
|
552 |
-
originLeft: ltrMode,
|
553 |
-
masonry: {
|
554 |
-
columnWidth: columnWidth
|
555 |
-
},
|
556 |
-
sortBy: settings.sort_by
|
557 |
-
});
|
558 |
-
|
559 |
-
$isotopeGallery.imagesLoaded().progress(function () {
|
560 |
-
$isotopeGallery.isotope("layout");
|
561 |
-
});
|
562 |
-
|
563 |
-
$(document).ready(function () {
|
564 |
-
|
565 |
-
$isotopeGallery.isotope("layout");
|
566 |
-
//Make sure to filter after all images are loaded
|
567 |
-
$isotopeGallery.isotope({
|
568 |
-
filter: settings.active_cat
|
569 |
-
});
|
570 |
-
|
571 |
-
//Trigger filter tabs from differet pages
|
572 |
-
var url = new URL(window.location.href);
|
573 |
-
|
574 |
-
if (url) {
|
575 |
-
var filterIndex = url.searchParams.get(settings.flag);
|
576 |
-
|
577 |
-
if (filterIndex) {
|
578 |
-
|
579 |
-
var $targetFilter = $filters.eq(filterIndex).find("a");
|
580 |
-
|
581 |
-
$targetFilter.trigger('click');
|
582 |
-
|
583 |
-
}
|
584 |
-
|
585 |
-
}
|
586 |
-
|
587 |
-
});
|
588 |
-
|
589 |
-
if (loadMore) {
|
590 |
-
|
591 |
-
var $gradientLayer = $galleryElement.find(".premium-gallery-gradient-layer"),
|
592 |
-
gradHeight = null;
|
593 |
-
|
594 |
-
setTimeout(function () {
|
595 |
-
gradHeight = $gradientLayer.outerHeight();
|
596 |
-
}, 200);
|
597 |
-
|
598 |
-
$galleryElement.parent().find(".premium-gallery-load-more div").addClass(
|
599 |
-
"premium-gallery-item-hidden");
|
600 |
-
|
601 |
-
if ($galleryElement.find(".premium-gallery-item").length > minimum) {
|
602 |
-
|
603 |
-
$galleryElement.parent().find(".premium-gallery-load-more").removeClass(
|
604 |
-
"premium-gallery-item-hidden");
|
605 |
-
|
606 |
-
function appendItems(imagesToShow) {
|
607 |
-
|
608 |
-
var instance = $galleryElement.data("isotope");
|
609 |
-
|
610 |
-
$gradientLayer.outerHeight(gradHeight);
|
611 |
-
|
612 |
-
$galleryElement.find(".premium-gallery-item-hidden").removeClass(
|
613 |
-
"premium-gallery-item-hidden");
|
614 |
-
|
615 |
-
$galleryElement.parent().find(".premium-gallery-load-more").removeClass(
|
616 |
-
"premium-gallery-item-hidden");
|
617 |
-
|
618 |
-
var itemsToHide = instance.filteredItems.slice(imagesToShow, instance
|
619 |
-
.filteredItems.length).map(function (item) {
|
620 |
-
return item.element;
|
621 |
-
});
|
622 |
-
|
623 |
-
$(itemsToHide).addClass("premium-gallery-item-hidden");
|
624 |
-
|
625 |
-
$isotopeGallery.isotope("layout");
|
626 |
-
|
627 |
-
if (0 == itemsToHide) {
|
628 |
-
$gradientLayer.addClass("premium-gallery-item-hidden");
|
629 |
-
$galleryElement.parent().find(".premium-gallery-load-more").addClass(
|
630 |
-
"premium-gallery-item-hidden");
|
631 |
-
}
|
632 |
-
}
|
633 |
-
|
634 |
-
$galleryElement.parent().on("click", ".premium-gallery-load-less", function () {
|
635 |
-
counter = counter - imageToShow;
|
636 |
-
});
|
637 |
-
|
638 |
-
$galleryElement.parent().on("click", ".premium-gallery-load-more-btn:not(.premium-gallery-load-less)", function () {
|
639 |
-
if (isFilterClicked) {
|
640 |
-
counter = minimum;
|
641 |
-
isFilterClicked = false;
|
642 |
-
} else {
|
643 |
-
counter = counter;
|
644 |
-
}
|
645 |
-
counter = counter + imageToShow;
|
646 |
-
$.ajax({
|
647 |
-
url: appendItems(counter),
|
648 |
-
beforeSend: function () {
|
649 |
-
$galleryElement.parent().find(
|
650 |
-
".premium-gallery-load-more div").removeClass(
|
651 |
-
"premium-gallery-item-hidden");
|
652 |
-
},
|
653 |
-
success: function () {
|
654 |
-
$galleryElement.parent().find(
|
655 |
-
".premium-gallery-load-more div").addClass(
|
656 |
-
"premium-gallery-item-hidden");
|
657 |
-
}
|
658 |
-
});
|
659 |
-
});
|
660 |
-
}
|
661 |
-
}
|
662 |
-
|
663 |
-
if ("yes" !== settings.light_box) {
|
664 |
-
|
665 |
-
$galleryElement.find(".premium-gallery-video-wrap").each(function (index, item) {
|
666 |
-
var type = $(item).data("type");
|
667 |
-
$(item).closest(".premium-gallery-item").on("click", function () {
|
668 |
-
var $this = $(this);
|
669 |
-
$this.find(".pa-gallery-img-container").css("background", "#000");
|
670 |
-
|
671 |
-
$this.find("img, .pa-gallery-icons-caption-container, .pa-gallery-icons-wrapper").css("visibility", "hidden");
|
672 |
-
|
673 |
-
if ("style3" !== settings.skin)
|
674 |
-
$this.find(".premium-gallery-caption").css("visibility", "hidden");
|
675 |
-
|
676 |
-
if ("hosted" !== type) {
|
677 |
-
var $iframeWrap = $this.find(".premium-gallery-iframe-wrap"),
|
678 |
-
src = $iframeWrap.data("src");
|
679 |
-
|
680 |
-
src = src.replace("&mute", "&autoplay=1&mute");
|
681 |
-
|
682 |
-
var $iframe = $("<iframe/>");
|
683 |
-
|
684 |
-
$iframe.attr({
|
685 |
-
"src": src,
|
686 |
-
"frameborder": "0",
|
687 |
-
"allowfullscreen": "1",
|
688 |
-
"allow": "autoplay;encrypted-media;"
|
689 |
-
});
|
690 |
-
|
691 |
-
$iframeWrap.html($iframe);
|
692 |
-
|
693 |
-
$iframe.css("visibility", "visible");
|
694 |
-
} else {
|
695 |
-
var $video = $(item).find("video");
|
696 |
-
$video.get(0).play();
|
697 |
-
$video.css("visibility", "visible");
|
698 |
-
}
|
699 |
-
});
|
700 |
-
});
|
701 |
-
|
702 |
-
}
|
703 |
-
|
704 |
-
$filters.find("a").click(function (e) {
|
705 |
-
e.preventDefault();
|
706 |
-
|
707 |
-
isFilterClicked = true;
|
708 |
-
|
709 |
-
//Show category images
|
710 |
-
$filters.find(".active").removeClass("active");
|
711 |
-
$(this).addClass("active");
|
712 |
-
|
713 |
-
filter = $(this).attr("data-filter");
|
714 |
-
$isotopeGallery.isotope({
|
715 |
-
filter: filter
|
716 |
-
});
|
717 |
-
|
718 |
-
if (shuffle) $isotopeGallery.isotope("shuffle");
|
719 |
-
|
720 |
-
if (loadMore) appendItems(minimum);
|
721 |
-
|
722 |
-
return false;
|
723 |
-
});
|
724 |
-
|
725 |
-
if ("default" === settings.lightbox_type) {
|
726 |
-
|
727 |
-
$scope.find(".premium-img-gallery a[data-rel^='prettyPhoto']").prettyPhoto({
|
728 |
-
theme: settings.theme,
|
729 |
-
hook: "data-rel",
|
730 |
-
opacity: 0.7,
|
731 |
-
show_title: false,
|
732 |
-
deeplinking: false,
|
733 |
-
overlay_gallery: settings.overlay,
|
734 |
-
custom_markup: "",
|
735 |
-
default_width: 900,
|
736 |
-
default_height: 506,
|
737 |
-
social_tools: ""
|
738 |
-
});
|
739 |
-
|
740 |
-
}
|
741 |
-
};
|
742 |
-
|
743 |
-
/****** Premium Counter Handler ******/
|
744 |
-
var PremiumCounterHandler = function ($scope, $) {
|
745 |
-
|
746 |
-
var $counterElement = $scope.find(".premium-counter");
|
747 |
-
|
748 |
-
elementorFrontend.waypoint($counterElement, function () {
|
749 |
-
|
750 |
-
var counterSettings = $counterElement.data(),
|
751 |
-
incrementElement = $counterElement.find(".premium-counter-init"),
|
752 |
-
iconElement = $counterElement.find(".icon");
|
753 |
-
|
754 |
-
$(incrementElement).numerator(counterSettings);
|
755 |
-
|
756 |
-
$(iconElement).addClass("animated " + iconElement.data("animation"));
|
757 |
-
|
758 |
-
});
|
759 |
-
|
760 |
-
};
|
761 |
-
|
762 |
-
/****** Premium Fancy Text Handler ******/
|
763 |
-
var PremiumFancyTextHandler = function ($scope, $) {
|
764 |
-
|
765 |
-
var $elem = $scope.find(".premium-fancy-text-wrapper");
|
766 |
-
var settings = $elem.data("settings");
|
767 |
-
|
768 |
-
function escapeHtml(unsafe) {
|
769 |
-
return unsafe.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">").replace(
|
770 |
-
/"/g, """).replace(/'/g, "'");
|
771 |
-
}
|
772 |
-
|
773 |
-
if ("typing" === settings.effect) {
|
774 |
-
|
775 |
-
var fancyStrings = [];
|
776 |
-
settings.strings.forEach(function (item) {
|
777 |
-
fancyStrings.push(escapeHtml(item));
|
778 |
-
});
|
779 |
-
|
780 |
-
$elem.find(".premium-fancy-text").typed({
|
781 |
-
strings: fancyStrings,
|
782 |
-
typeSpeed: settings.typeSpeed,
|
783 |
-
backSpeed: settings.backSpeed,
|
784 |
-
startDelay: settings.startDelay,
|
785 |
-
backDelay: settings.backDelay,
|
786 |
-
showCursor: settings.showCursor,
|
787 |
-
cursorChar: settings.cursorChar,
|
788 |
-
loop: settings.loop
|
789 |
-
});
|
790 |
-
|
791 |
-
} else if ("slide" === settings.effect) {
|
792 |
-
|
793 |
-
$elem.find(".premium-fancy-text").vTicker({
|
794 |
-
speed: settings.speed,
|
795 |
-
showItems: settings.showItems,
|
796 |
-
pause: settings.pause,
|
797 |
-
mousePause: settings.mousePause,
|
798 |
-
direction: "up"
|
799 |
-
});
|
800 |
-
|
801 |
-
} else if ('auto-fade' === settings.effect) {
|
802 |
-
var $items = $elem.find(".premium-fancy-list-items"),
|
803 |
-
len = $items.length;
|
804 |
-
|
805 |
-
if (0 === len) {
|
806 |
-
return;
|
807 |
-
}
|
808 |
-
|
809 |
-
var delay = settings.duration / len,
|
810 |
-
itemDelay = 0;
|
811 |
-
|
812 |
-
$items.each(function ($index, $item) {
|
813 |
-
$item.style.animationDelay = itemDelay + 'ms';
|
814 |
-
itemDelay += delay;
|
815 |
-
});
|
816 |
-
|
817 |
-
} else {
|
818 |
-
|
819 |
-
setFancyAnimation();
|
820 |
-
|
821 |
-
function setFancyAnimation() {
|
822 |
-
|
823 |
-
var $item = $elem.find(".premium-fancy-list-items"),
|
824 |
-
current = 1;
|
825 |
-
|
826 |
-
//Get effect settings
|
827 |
-
var delay = settings.delay || 2500,
|
828 |
-
loopCount = settings.count;
|
829 |
-
|
830 |
-
//If Loop Count option is set
|
831 |
-
if (loopCount) {
|
832 |
-
var currentLoop = 1,
|
833 |
-
fancyStringsCount = $elem.find(".premium-fancy-list-items").length;
|
834 |
-
}
|
835 |
-
|
836 |
-
var loopInterval = setInterval(function () {
|
837 |
-
|
838 |
-
var animationClass = "";
|
839 |
-
|
840 |
-
//Add animation class
|
841 |
-
if (settings.effect === "custom")
|
842 |
-
animationClass = "animated " + settings.animation;
|
843 |
-
|
844 |
-
//Show current active item
|
845 |
-
$item.eq(current).addClass("premium-fancy-item-visible " + animationClass).removeClass("premium-fancy-item-hidden");
|
846 |
-
|
847 |
-
var $inactiveItems = $item.filter(function (index) {
|
848 |
-
return index !== current;
|
849 |
-
});
|
850 |
-
|
851 |
-
//Hide inactive items
|
852 |
-
$inactiveItems.addClass("premium-fancy-item-hidden").removeClass("premium-fancy-item-visible " + animationClass);
|
853 |
-
|
854 |
-
current++;
|
855 |
-
|
856 |
-
//Restart loop
|
857 |
-
if ($item.length === current)
|
858 |
-
current = 0;
|
859 |
-
|
860 |
-
//Increment interval and check if loop count is reached
|
861 |
-
if (loopCount) {
|
862 |
-
currentLoop++;
|
863 |
-
|
864 |
-
if ((fancyStringsCount * loopCount) === currentLoop)
|
865 |
-
clearInterval(loopInterval);
|
866 |
-
}
|
867 |
-
|
868 |
-
|
869 |
-
}, delay);
|
870 |
-
}
|
871 |
-
}
|
872 |
-
};
|
873 |
-
|
874 |
-
/****** Premium Countdown Handler ******/
|
875 |
-
var PremiumCountDownHandler = function ($scope, $) {
|
876 |
-
|
877 |
-
var $countDownElement = $scope.find(".premium-countdown"),
|
878 |
-
settings = $countDownElement.data("settings"),
|
879 |
-
id = $scope.data('id'),
|
880 |
-
label1 = settings.label1,
|
881 |
-
label2 = settings.label2,
|
882 |
-
newLabe1 = label1.split(","),
|
883 |
-
newLabel2 = label2.split(","),
|
884 |
-
timerType = settings.timerType,
|
885 |
-
until = 'evergreen' === timerType ? settings.until.date : settings.until,
|
886 |
-
layout = '',
|
887 |
-
map = {
|
888 |
-
y: { index: 0, oldVal: '' },
|
889 |
-
o: { index: 1, oldVal: '' },
|
890 |
-
w: { index: 2, oldVal: '' },
|
891 |
-
d: { index: 3, oldVal: '' },
|
892 |
-
h: { index: 4, oldVal: '' },
|
893 |
-
m: { index: 5, oldVal: '' },
|
894 |
-
s: { index: 6, oldVal: '' }
|
895 |
-
};
|
896 |
-
|
897 |
-
if ($countDownElement.find('#countdown-' + id).hasClass('premium-countdown-flip')) {
|
898 |
-
settings.format.split('').forEach(function (unit) {
|
899 |
-
var lowercased = unit.toLowerCase();
|
900 |
-
|
901 |
-
layout += '<div class="premium-countdown-block premium-countdown-' + lowercased + '"><div class="pre_time-mid"> <div class="premium-countdown-figure"><span class="top">{' + lowercased + 'nn}</span><span class="top-back"><span>{' + lowercased + 'nn}</span></span><span class="bottom">{' + lowercased + 'nn}</span><span class="bottom-back"><span>{' + lowercased + 'nn}</span></span></div><span class="premium-countdown-label">{' + lowercased + 'l}</span></div><span class="countdown_separator">{sep}</span></div>';
|
902 |
-
});
|
903 |
-
}
|
904 |
-
|
905 |
-
$countDownElement.find('#countdown-' + id).countdown({
|
906 |
-
layout: layout,
|
907 |
-
labels: newLabel2,
|
908 |
-
labels1: newLabe1,
|
909 |
-
until: new Date(until),
|
910 |
-
format: settings.format,
|
911 |
-
padZeroes: true,
|
912 |
-
timeSeparator: settings.separator,
|
913 |
-
onTick: function (periods) {
|
914 |
-
|
915 |
-
equalWidth();
|
916 |
-
|
917 |
-
if ($countDownElement.find('#countdown-' + id).hasClass('premium-countdown-flip')) {
|
918 |
-
animateFigure(periods, map);
|
919 |
-
}
|
920 |
-
},
|
921 |
-
onExpiry: function () {
|
922 |
-
if ('onExpiry' === settings.event) {
|
923 |
-
$countDownElement.find('#countdown-' + id).html(settings.text);
|
924 |
-
}
|
925 |
-
},
|
926 |
-
serverSync: function () {
|
927 |
-
return new Date(settings.serverSync);
|
928 |
-
}
|
929 |
-
});
|
930 |
-
|
931 |
-
if (settings.reset) {
|
932 |
-
$countDownElement.find('.premium-countdown-init').countdown('option', 'until', new Date(until));
|
933 |
-
}
|
934 |
-
|
935 |
-
if ('expiryUrl' === settings.event) {
|
936 |
-
$countDownElement.find('#countdown-' + id).countdown('option', 'expiryUrl', (elementorFrontend.isEditMode()) ? '' : settings.text);
|
937 |
-
}
|
938 |
-
|
939 |
-
function equalWidth() {
|
940 |
-
var width = 0;
|
941 |
-
$countDownElement.find('#countdown-' + id + ' .countdown-amount').each(function (index, slot) {
|
942 |
-
if (width < $(slot).outerWidth()) {
|
943 |
-
width = $(slot).outerWidth();
|
944 |
-
}
|
945 |
-
});
|
946 |
-
|
947 |
-
$countDownElement.find('#countdown-' + id + ' .countdown-amount').css('width', width);
|
948 |
-
}
|
949 |
-
|
950 |
-
function animateFigure(periods, map) {
|
951 |
-
settings.format.split('').forEach(function (unit) {
|
952 |
-
|
953 |
-
var lowercased = unit.toLowerCase(),
|
954 |
-
index = map[lowercased].index,
|
955 |
-
oldVal = map[lowercased].oldVal;
|
956 |
-
|
957 |
-
if (periods[index] !== oldVal) {
|
958 |
-
|
959 |
-
map[lowercased].oldVal = periods[index];
|
960 |
-
|
961 |
-
var $top = $('#countdown-' + id).find('.premium-countdown-' + lowercased + ' .top'),
|
962 |
-
$back_top = $('#countdown-' + id).find('.premium-countdown-' + lowercased + ' .top-back');
|
963 |
-
|
964 |
-
TweenMax.to($top, 0.8, {
|
965 |
-
rotationX: '-180deg',
|
966 |
-
transformPerspective: 300,
|
967 |
-
ease: Quart.easeOut,
|
968 |
-
onComplete: function () {
|
969 |
-
TweenMax.set($top, { rotationX: 0 });
|
970 |
-
}
|
971 |
-
});
|
972 |
-
|
973 |
-
TweenMax.to($back_top, 0.8, {
|
974 |
-
rotationX: 0,
|
975 |
-
transformPerspective: 300,
|
976 |
-
ease: Quart.easeOut,
|
977 |
-
clearProps: 'all'
|
978 |
-
});
|
979 |
-
}
|
980 |
-
});
|
981 |
-
}
|
982 |
-
|
983 |
-
times = $countDownElement.find('#countdown-' + id).countdown("getTimes");
|
984 |
-
|
985 |
-
function runTimer(el) {
|
986 |
-
return el == 0;
|
987 |
-
}
|
988 |
-
|
989 |
-
if (times.every(runTimer)) {
|
990 |
-
|
991 |
-
if ('onExpiry' === settings.event) {
|
992 |
-
$countDownElement.find('#countdown-' + id).html(settings.text);
|
993 |
-
} else if ('expiryUrl' === settings.event && !elementorFrontend.isEditMode()) {
|
994 |
-
var editMode = $('body').find('#elementor').length;
|
995 |
-
if (0 < editMode) {
|
996 |
-
$countDownElement.find('#countdown-' + id).html(
|
997 |
-
"<h1>You can not redirect url from elementor Editor!!</h1>");
|
998 |
-
} else {
|
999 |
-
if (!elementorFrontend.isEditMode()) {
|
1000 |
-
window.location.href = settings.text;
|
1001 |
-
}
|
1002 |
-
}
|
1003 |
-
|
1004 |
-
}
|
1005 |
-
}
|
1006 |
-
|
1007 |
-
};
|
1008 |
-
|
1009 |
-
/****** Premium Carousel Handler ******/
|
1010 |
-
var PremiumCarouselHandler = function ($scope, $) {
|
1011 |
-
|
1012 |
-
var $carouselElem = $scope.find(".premium-carousel-wrapper"),
|
1013 |
-
settings = $($carouselElem).data("settings"),
|
1014 |
-
isEdit = elementorFrontend.isEditMode();
|
1015 |
-
|
1016 |
-
function slideToShow(slick) {
|
1017 |
-
|
1018 |
-
var slidesToShow = slick.options.slidesToShow,
|
1019 |
-
windowWidth = $(window).width();
|
1020 |
-
if (windowWidth > settings.tabletBreak) {
|
1021 |
-
slidesToShow = settings.slidesDesk;
|
1022 |
-
}
|
1023 |
-
if (windowWidth <= settings.tabletBreak) {
|
1024 |
-
slidesToShow = settings.slidesTab;
|
1025 |
-
}
|
1026 |
-
if (windowWidth <= settings.mobileBreak) {
|
1027 |
-
slidesToShow = settings.slidesMob;
|
1028 |
-
|
1029 |
-
return slidesToShow;
|
1030 |
-
|
1031 |
-
}
|
1032 |
-
|
1033 |
-
//Get templates content on the editor page
|
1034 |
-
if (isEdit) {
|
1035 |
-
|
1036 |
-
$carouselElem.find(".item-wrapper").each(function (index, slide) {
|
1037 |
-
|
1038 |
-
var templateID = $(slide).data("template");
|
1039 |
-
|
1040 |
-
if (undefined !== templateID) {
|
1041 |
-
$.ajax({
|
1042 |
-
type: "GET",
|
1043 |
-
url: PremiumSettings.ajaxurl,
|
1044 |
-
dataType: "html",
|
1045 |
-
data: {
|
1046 |
-
action: "get_elementor_template_content",
|
1047 |
-
templateID: templateID
|
1048 |
-
}
|
1049 |
-
}).success(function (response) {
|
1050 |
-
|
1051 |
-
var data = JSON.parse(response).data;
|
1052 |
-
|
1053 |
-
if (undefined !== data.template_content) {
|
1054 |
-
|
1055 |
-
$(slide).html(data.template_content);
|
1056 |
-
$carouselElem.find(".premium-carousel-inner").slick("refresh");
|
1057 |
-
|
1058 |
-
}
|
1059 |
-
});
|
1060 |
-
}
|
1061 |
-
});
|
1062 |
-
|
1063 |
-
}
|
1064 |
-
|
1065 |
-
$carouselElem.on("init", function (event) {
|
1066 |
-
|
1067 |
-
event.preventDefault();
|
1068 |
-
|
1069 |
-
setTimeout(function () {
|
1070 |
-
resetAnimations("init");
|
1071 |
-
}, 500);
|
1072 |
-
|
1073 |
-
$(this).find("item-wrapper.slick-active").each(function () {
|
1074 |
-
var $this = $(this);
|
1075 |
-
$this.addClass($this.data("animation"));
|
1076 |
-
});
|
1077 |
-
|
1078 |
-
$(".slick-track").addClass("translate");
|
1079 |
-
|
1080 |
-
});
|
1081 |
-
|
1082 |
-
$carouselElem.find(".premium-carousel-inner").slick({
|
1083 |
-
vertical: settings.vertical,
|
1084 |
-
slidesToScroll: settings.slidesToScroll,
|
1085 |
-
slidesToShow: settings.slidesToShow,
|
1086 |
-
responsive: [{
|
1087 |
-
breakpoint: settings.tabletBreak,
|
1088 |
-
settings: {
|
1089 |
-
slidesToShow: settings.slidesTab,
|
1090 |
-
slidesToScroll: settings.slidesTab
|
1091 |
-
}
|
1092 |
-
},
|
1093 |
-
{
|
1094 |
-
breakpoint: settings.mobileBreak,
|
1095 |
-
settings: {
|
1096 |
-
slidesToShow: settings.slidesMob,
|
1097 |
-
slidesToScroll: settings.slidesMob
|
1098 |
-
}
|
1099 |
-
}
|
1100 |
-
],
|
1101 |
-
useTransform: true,
|
1102 |
-
fade: settings.fade,
|
1103 |
-
infinite: settings.infinite,
|
1104 |
-
speed: settings.speed,
|
1105 |
-
autoplay: settings.autoplay,
|
1106 |
-
autoplaySpeed: settings.autoplaySpeed,
|
1107 |
-
draggable: settings.draggable,
|
1108 |
-
touchMove: settings.touchMove,
|
1109 |
-
rtl: settings.rtl,
|
1110 |
-
adaptiveHeight: settings.adaptiveHeight,
|
1111 |
-
pauseOnHover: settings.pauseOnHover,
|
1112 |
-
centerMode: settings.centerMode,
|
1113 |
-
centerPadding: settings.centerPadding,
|
1114 |
-
arrows: settings.arrows,
|
1115 |
-
prevArrow: $carouselElem.find(".premium-carousel-nav-arrow-prev").html(),
|
1116 |
-
nextArrow: $carouselElem.find(".premium-carousel-nav-arrow-next").html(),
|
1117 |
-
dots: settings.dots,
|
1118 |
-
customPaging: function () {
|
1119 |
-
var customDot = $carouselElem.find(".premium-carousel-nav-dot").html();
|
1120 |
-
return customDot;
|
1121 |
-
}
|
1122 |
-
});
|
1123 |
-
|
1124 |
-
function resetAnimations(event) {
|
1125 |
-
|
1126 |
-
var $slides = $carouselElem.find(".slick-slide");
|
1127 |
-
|
1128 |
-
if ("init" === event)
|
1129 |
-
$slides = $slides.not(".slick-current");
|
1130 |
-
|
1131 |
-
$slides.find(".animated").each(function (index, elem) {
|
1132 |
-
|
1133 |
-
var settings = $(elem).data("settings");
|
1134 |
-
|
1135 |
-
if (!settings)
|
1136 |
-
return;
|
1137 |
-
|
1138 |
-
if (!settings._animation && !settings.animation)
|
1139 |
-
return;
|
1140 |
-
|
1141 |
-
var animation = settings._animation || settings.animation;
|
1142 |
-
|
1143 |
-
$(elem).removeClass("animated " + animation).addClass("elementor-invisible");
|
1144 |
-
});
|
1145 |
-
};
|
1146 |
-
|
1147 |
-
function triggerAnimation() {
|
1148 |
-
|
1149 |
-
$carouselElem.find(".slick-active .elementor-invisible").each(function (index, elem) {
|
1150 |
-
|
1151 |
-
var settings = $(elem).data("settings");
|
1152 |
-
|
1153 |
-
if (!settings)
|
1154 |
-
return;
|
1155 |
-
|
1156 |
-
if (!settings._animation && !settings.animation)
|
1157 |
-
return;
|
1158 |
-
|
1159 |
-
var delay = settings._animation_delay ? settings._animation_delay : 0,
|
1160 |
-
animation = settings._animation || settings.animation;
|
1161 |
-
|
1162 |
-
setTimeout(function () {
|
1163 |
-
$(elem).removeClass("elementor-invisible").addClass(animation +
|
1164 |
-
' animated');
|
1165 |
-
}, delay);
|
1166 |
-
});
|
1167 |
-
}
|
1168 |
-
|
1169 |
-
$carouselElem.on("afterChange", function (event, slick, currentSlide) {
|
1170 |
-
|
1171 |
-
var slidesScrolled = slick.options.slidesToScroll,
|
1172 |
-
slidesToShow = slideToShow(slick),
|
1173 |
-
centerMode = slick.options.centerMode,
|
1174 |
-
slideToAnimate = currentSlide + slidesToShow - 1;
|
1175 |
-
|
1176 |
-
//Trigger Aniamtions for the current slide
|
1177 |
-
triggerAnimation();
|
1178 |
-
|
1179 |
-
if (slidesScrolled === 1) {
|
1180 |
-
if (!centerMode === true) {
|
1181 |
-
var $inViewPort = $(this).find("[data-slick-index='" + slideToAnimate +
|
1182 |
-
"']");
|
1183 |
-
if ("null" != settings.animation) {
|
1184 |
-
$inViewPort.find("p, h1, h2, h3, h4, h5, h6, span, a, img, i, button")
|
1185 |
-
.addClass(settings.animation).removeClass(
|
1186 |
-
"premium-carousel-content-hidden");
|
1187 |
-
}
|
1188 |
-
}
|
1189 |
-
} else {
|
1190 |
-
for (var i = slidesScrolled + currentSlide; i >= 0; i--) {
|
1191 |
-
$inViewPort = $(this).find("[data-slick-index='" + i + "']");
|
1192 |
-
if ("null" != settings.animation) {
|
1193 |
-
$inViewPort.find("p, h1, h2, h3, h4, h5, h6, span, a, img, i, button")
|
1194 |
-
.addClass(settings.animation).removeClass(
|
1195 |
-
"premium-carousel-content-hidden");
|
1196 |
-
}
|
1197 |
-
}
|
1198 |
-
}
|
1199 |
-
});
|
1200 |
-
|
1201 |
-
$carouselElem.on("beforeChange", function (event, slick, currentSlide) {
|
1202 |
-
|
1203 |
-
//Reset Aniamtions for the other slides
|
1204 |
-
resetAnimations();
|
1205 |
-
|
1206 |
-
var $inViewPort = $(this).find("[data-slick-index='" + currentSlide + "']");
|
1207 |
-
|
1208 |
-
if ("null" != settings.animation) {
|
1209 |
-
$inViewPort.siblings().find(
|
1210 |
-
"p, h1, h2, h3, h4, h5, h6, span, a, img, i, button").removeClass(
|
1211 |
-
settings.animation).addClass(
|
1212 |
-
"premium-carousel-content-hidden");
|
1213 |
-
}
|
1214 |
-
});
|
1215 |
-
|
1216 |
-
if (settings.vertical) {
|
1217 |
-
|
1218 |
-
var maxHeight = -1;
|
1219 |
-
|
1220 |
-
elementorFrontend.elements.$window.on('load', function () {
|
1221 |
-
$carouselElem.find(".slick-slide").each(function () {
|
1222 |
-
if ($(this).height() > maxHeight) {
|
1223 |
-
maxHeight = $(this).height();
|
1224 |
-
}
|
1225 |
-
});
|
1226 |
-
$carouselElem.find(".slick-slide").each(function () {
|
1227 |
-
if ($(this).height() < maxHeight) {
|
1228 |
-
$(this).css("margin", Math.ceil(
|
1229 |
-
(maxHeight - $(this).height()) / 2) + "px 0");
|
1230 |
-
}
|
1231 |
-
});
|
1232 |
-
});
|
1233 |
-
}
|
1234 |
-
var marginFix = {
|
1235 |
-
element: $("a.ver-carousel-arrow"),
|
1236 |
-
getWidth: function () {
|
1237 |
-
var width = this.element.outerWidth();
|
1238 |
-
return width / 2;
|
1239 |
-
},
|
1240 |
-
setWidth: function (type) {
|
1241 |
-
type = type || "vertical";
|
1242 |
-
if (type == "vertical") {
|
1243 |
-
this.element.css("margin-left", "-" + this.getWidth() + "px");
|
1244 |
-
} else {
|
1245 |
-
this.element.css("margin-top", "-" + this.getWidth() + "px");
|
1246 |
-
}
|
1247 |
-
}
|
1248 |
-
};
|
1249 |
-
marginFix.setWidth();
|
1250 |
-
marginFix.element = $("a.carousel-arrow");
|
1251 |
-
marginFix.setWidth("horizontal");
|
1252 |
-
|
1253 |
-
$(document).ready(function () {
|
1254 |
-
|
1255 |
-
settings.navigation.map(function (item, index) {
|
1256 |
-
|
1257 |
-
if (item) {
|
1258 |
-
|
1259 |
-
$(item).on("click", function () {
|
1260 |
-
|
1261 |
-
var currentActive = $carouselElem.find(".premium-carousel-inner").slick("slickCurrentSlide");
|
1262 |
-
|
1263 |
-
if (index !== currentActive) {
|
1264 |
-
$carouselElem.find(".premium-carousel-inner").slick("slickGoTo", index)
|
1265 |
-
}
|
1266 |
-
|
1267 |
-
})
|
1268 |
-
}
|
1269 |
-
|
1270 |
-
})
|
1271 |
-
})
|
1272 |
-
|
1273 |
-
};
|
1274 |
-
|
1275 |
-
/****** Premium Banner Handler ******/
|
1276 |
-
var PremiumBannerHandler = function ($scope, $) {
|
1277 |
-
var $bannerElement = $scope.find(".premium-banner"),
|
1278 |
-
$bannerImg = $bannerElement.find("img");
|
1279 |
-
|
1280 |
-
|
1281 |
-
if ($bannerElement.data("box-tilt")) {
|
1282 |
-
var reverse = $bannerElement.data("box-tilt-reverse");
|
1283 |
-
UniversalTilt.init({
|
1284 |
-
elements: $bannerElement,
|
1285 |
-
settings: {
|
1286 |
-
reverse: reverse
|
1287 |
-
},
|
1288 |
-
callbacks: {
|
1289 |
-
onMouseLeave: function (el) {
|
1290 |
-
el.style.boxShadow = "0 45px 100px rgba(255, 255, 255, 0)";
|
1291 |
-
},
|
1292 |
-
onDeviceMove: function (el) {
|
1293 |
-
el.style.boxShadow = "0 45px 100px rgba(255, 255, 255, 0.3)";
|
1294 |
-
}
|
1295 |
-
}
|
1296 |
-
});
|
1297 |
-
}
|
1298 |
-
|
1299 |
-
|
1300 |
-
$bannerElement.find(".premium-banner-ib").hover(function () {
|
1301 |
-
$bannerImg.addClass("active");
|
1302 |
-
}, function () {
|
1303 |
-
$bannerImg.removeClass("active");
|
1304 |
-
});
|
1305 |
-
};
|
1306 |
-
|
1307 |
-
/****** Premium Modal Box Handler ******/
|
1308 |
-
var PremiumModalBoxHandler = function ($scope, $) {
|
1309 |
-
|
1310 |
-
var $modalElem = $scope.find(".premium-modal-box-container"),
|
1311 |
-
settings = $modalElem.data("settings"),
|
1312 |
-
$modal = $modalElem.find(".premium-modal-box-modal-dialog");
|
1313 |
-
|
1314 |
-
if (!settings) {
|
1315 |
-
return;
|
1316 |
-
}
|
1317 |
-
|
1318 |
-
if (settings.trigger === "pageload") {
|
1319 |
-
$(document).ready(function ($) {
|
1320 |
-
setTimeout(function () {
|
1321 |
-
$modalElem.find(".premium-modal-box-modal").modal();
|
1322 |
-
}, settings.delay * 1000);
|
1323 |
-
});
|
1324 |
-
}
|
1325 |
-
|
1326 |
-
if ($modal.data("modal-animation") && " " != $modal.data("modal-animation")) {
|
1327 |
-
|
1328 |
-
var animationDelay = $modal.data('delay-animation');
|
1329 |
-
|
1330 |
-
new Waypoint({
|
1331 |
-
element: $modal,
|
1332 |
-
handler: function () {
|
1333 |
-
setTimeout(function () {
|
1334 |
-
$modal.css("opacity", "1").addClass("animated " + $modal.data("modal-animation"));
|
1335 |
-
}, animationDelay * 1000);
|
1336 |
-
this.destroy();
|
1337 |
-
},
|
1338 |
-
offset: Waypoint.viewportHeight() - 150,
|
1339 |
-
});
|
1340 |
-
}
|
1341 |
-
};
|
1342 |
-
|
1343 |
-
/****** Premium Blog Handler ******/
|
1344 |
-
var PremiumBlogHandler = function ($scope, $) {
|
1345 |
-
|
1346 |
-
var $blogElement = $scope.find(".premium-blog-wrap"),
|
1347 |
-
$blogPost = $blogElement.find(".premium-blog-post-outer-container"),
|
1348 |
-
scrollAfter = $blogElement.data("scroll"),
|
1349 |
-
carousel = $blogElement.data("carousel"),
|
1350 |
-
grid = $blogElement.data("grid"),
|
1351 |
-
layout = $blogElement.data("layout"),
|
1352 |
-
pagination = $blogElement.data("pagination"),
|
1353 |
-
infinite = $blogElement.data("infinite"),
|
1354 |
-
activeCategory = $scope.find(".category.active").data("filter"),
|
1355 |
-
filterTabs = $scope.find(".premium-blog-filter").length,
|
1356 |
-
pageNumber = 1,
|
1357 |
-
isLoaded = true,
|
1358 |
-
total = $blogPost.data('total'),
|
1359 |
-
count = 2;
|
1360 |
-
|
1361 |
-
var $metaSeparators = $blogPost.first().find(".premium-blog-meta-separator");
|
1362 |
-
|
1363 |
-
if (1 === $metaSeparators.length) {
|
1364 |
-
//If two meta only are enabled. One of them is author meta.
|
1365 |
-
if (!$blogPost.find(".fa-user").length) {
|
1366 |
-
$blogPost.find(".premium-blog-meta-separator").remove();
|
1367 |
-
}
|
1368 |
-
} else {
|
1369 |
-
if (!$blogPost.find(".fa-user").length) {
|
1370 |
-
$blogPost.each(function (index, post) {
|
1371 |
-
$(post).find(".premium-blog-meta-separator").first().remove();
|
1372 |
-
});
|
1373 |
-
}
|
1374 |
-
}
|
1375 |
-
|
1376 |
-
if (filterTabs) {
|
1377 |
-
$scope.find(".premium-blog-filters-container li a").click(function (e) {
|
1378 |
-
|
1379 |
-
e.preventDefault();
|
1380 |
-
|
1381 |
-
$scope.find(".premium-blog-filters-container li .active").removeClass("active");
|
1382 |
-
|
1383 |
-
$(this).addClass("active");
|
1384 |
-
|
1385 |
-
//Get clicked tab slug
|
1386 |
-
activeCategory = $(this).attr("data-filter");
|
1387 |
-
|
1388 |
-
pageNumber = 1;
|
1389 |
-
|
1390 |
-
if (infinite) {
|
1391 |
-
getPostsByAjax(false);
|
1392 |
-
count = 2;
|
1393 |
-
getInfiniteScrollPosts();
|
1394 |
-
} else {
|
1395 |
-
//Make sure to reset pagination before sending our AJAX request
|
1396 |
-
getPostsByAjax(scrollAfter);
|
1397 |
-
}
|
1398 |
-
|
1399 |
-
});
|
1400 |
-
}
|
1401 |
-
|
1402 |
-
if (!filterTabs || "*" === activeCategory) {
|
1403 |
-
if ("masonry" === layout && !carousel) {
|
1404 |
-
$blogElement.imagesLoaded(function () {
|
1405 |
-
$blogElement.isotope({
|
1406 |
-
itemSelector: ".premium-blog-post-outer-container",
|
1407 |
-
percentPosition: true,
|
1408 |
-
filter: activeCategory,
|
1409 |
-
animationOptions: {
|
1410 |
-
duration: 750,
|
1411 |
-
easing: "linear",
|
1412 |
-
queue: false
|
1413 |
-
}
|
1414 |
-
});
|
1415 |
-
});
|
1416 |
-
}
|
1417 |
-
} else {
|
1418 |
-
//If `All` categories not exist, then we need to get posts through AJAX.
|
1419 |
-
getPostsByAjax(false);
|
1420 |
-
}
|
1421 |
-
|
1422 |
-
|
1423 |
-
if (carousel) {
|
1424 |
-
|
1425 |
-
var autoPlay = $blogElement.data("play"),
|
1426 |
-
speed = $blogElement.data("speed"),
|
1427 |
-
fade = $blogElement.data("fade"),
|
1428 |
-
center = $blogElement.data("center"),
|
1429 |
-
spacing = $blogElement.data("slides-spacing"),
|
1430 |
-
arrows = $blogElement.data("arrows"),
|
1431 |
-
dots = $blogElement.data("dots"),
|
1432 |
-
cols = $blogElement.data("col"),
|
1433 |
-
colsTablet = $blogElement.data("col-tablet"),
|
1434 |
-
colsMobile = $blogElement.data("col-mobile"),
|
1435 |
-
slidesToScroll = $blogElement.data("scroll-slides"),
|
1436 |
-
prevArrow = null,
|
1437 |
-
nextArrow = null;
|
1438 |
-
|
1439 |
-
if (!grid)
|
1440 |
-
cols = colsTablet = colsMobile = 1;
|
1441 |
-
|
1442 |
-
if (arrows) {
|
1443 |
-
(prevArrow =
|
1444 |
-
'<a type="button" data-role="none" class="carousel-arrow carousel-prev" aria-label="Next" role="button" style=""><i class="fas fa-angle-left" aria-hidden="true"></i></a>'
|
1445 |
-
), (nextArrow =
|
1446 |
-
'<a type="button" data-role="none" class="carousel-arrow carousel-next" aria-label="Next" role="button" style=""><i class="fas fa-angle-right" aria-hidden="true"></i></a>'
|
1447 |
-
);
|
1448 |
-
} else {
|
1449 |
-
prevArrow = prevArrow = "";
|
1450 |
-
}
|
1451 |
-
|
1452 |
-
$blogElement.slick({
|
1453 |
-
infinite: true,
|
1454 |
-
slidesToShow: cols,
|
1455 |
-
slidesToScroll: slidesToScroll || cols,
|
1456 |
-
responsive: [{
|
1457 |
-
breakpoint: 1025,
|
1458 |
-
settings: {
|
1459 |
-
slidesToShow: colsTablet,
|
1460 |
-
slidesToScroll: 1
|
1461 |
-
}
|
1462 |
-
},
|
1463 |
-
{
|
1464 |
-
breakpoint: 768,
|
1465 |
-
settings: {
|
1466 |
-
slidesToShow: colsMobile,
|
1467 |
-
slidesToScroll: 1
|
1468 |
-
}
|
1469 |
-
}
|
1470 |
-
],
|
1471 |
-
autoplay: autoPlay,
|
1472 |
-
rows: 0,
|
1473 |
-
autoplaySpeed: speed,
|
1474 |
-
nextArrow: nextArrow,
|
1475 |
-
prevArrow: prevArrow,
|
1476 |
-
fade: fade,
|
1477 |
-
centerMode: center,
|
1478 |
-
centerPadding: spacing + "px",
|
1479 |
-
draggable: true,
|
1480 |
-
dots: dots,
|
1481 |
-
customPaging: function () {
|
1482 |
-
return '<i class="fas fa-circle"></i>';
|
1483 |
-
}
|
1484 |
-
});
|
1485 |
-
}
|
1486 |
-
|
1487 |
-
//Force posts inner boxes to take the same height
|
1488 |
-
if ("even" === layout) {
|
1489 |
-
|
1490 |
-
var equalHeight = $blogElement.data("equal");
|
1491 |
-
|
1492 |
-
if (equalHeight) {
|
1493 |
-
|
1494 |
-
forceEqualHeight();
|
1495 |
-
|
1496 |
-
}
|
1497 |
-
|
1498 |
-
}
|
1499 |
-
|
1500 |
-
function forceEqualHeight() {
|
1501 |
-
|
1502 |
-
var heights = new Array();
|
1503 |
-
|
1504 |
-
$blogElement.find(".premium-blog-content-wrapper").each(function (index, post) {
|
1505 |
-
|
1506 |
-
var height = $(post).outerHeight();
|
1507 |
-
|
1508 |
-
heights.push(height);
|
1509 |
-
|
1510 |
-
});
|
1511 |
-
|
1512 |
-
var maxHeight = Math.max.apply(null, heights);
|
1513 |
-
|
1514 |
-
$blogElement.find(".premium-blog-content-wrapper").css("height", maxHeight + "px");
|
1515 |
-
|
1516 |
-
}
|
1517 |
-
|
1518 |
-
//Handle Pagination
|
1519 |
-
if (pagination) {
|
1520 |
-
|
1521 |
-
$scope.on('click', '.premium-blog-pagination-container .page-numbers', function (e) {
|
1522 |
-
|
1523 |
-
e.preventDefault();
|
1524 |
-
|
1525 |
-
//If pagination item is clicked twice
|
1526 |
-
if ($(this).hasClass("current"))
|
1527 |
-
return;
|
1528 |
-
|
1529 |
-
var currentPage = parseInt($scope.find('.premium-blog-pagination-container .page-numbers.current').html());
|
1530 |
-
|
1531 |
-
if ($(this).hasClass('next')) {
|
1532 |
-
pageNumber = currentPage + 1;
|
1533 |
-
} else if ($(this).hasClass('prev')) {
|
1534 |
-
pageNumber = currentPage - 1;
|
1535 |
-
} else {
|
1536 |
-
pageNumber = $(this).html();
|
1537 |
-
}
|
1538 |
-
|
1539 |
-
getPostsByAjax(scrollAfter);
|
1540 |
-
|
1541 |
-
})
|
1542 |
-
}
|
1543 |
-
|
1544 |
-
if (infinite) {
|
1545 |
-
getInfiniteScrollPosts();
|
1546 |
-
}
|
1547 |
-
|
1548 |
-
function getInfiniteScrollPosts() {
|
1549 |
-
var windowHeight = jQuery(window).outerHeight() / 1.25;
|
1550 |
-
|
1551 |
-
$(window).scroll(function () {
|
1552 |
-
|
1553 |
-
if (filterTabs) {
|
1554 |
-
$blogPost = $blogElement.find(".premium-blog-post-outer-container");
|
1555 |
-
total = $blogPost.data('total');
|
1556 |
-
}
|
1557 |
-
|
1558 |
-
if (count <= total) {
|
1559 |
-
if (($(window).scrollTop() + windowHeight) >= ($scope.find('.premium-blog-post-outer-container:last').offset().top)) {
|
1560 |
-
if (true == isLoaded) {
|
1561 |
-
pageNumber = count;
|
1562 |
-
getPostsByAjax(false);
|
1563 |
-
count++;
|
1564 |
-
isLoaded = false;
|
1565 |
-
}
|
1566 |
-
}
|
1567 |
-
}
|
1568 |
-
});
|
1569 |
-
|
1570 |
-
}
|
1571 |
-
|
1572 |
-
function getPostsByAjax(shouldScroll) {
|
1573 |
-
|
1574 |
-
//If filter tabs is not enabled, then always set category to all.
|
1575 |
-
if ('undefined' === typeof activeCategory) {
|
1576 |
-
activeCategory = '*';
|
1577 |
-
}
|
1578 |
-
|
1579 |
-
$.ajax({
|
1580 |
-
url: PremiumSettings.ajaxurl,
|
1581 |
-
dataType: 'json',
|
1582 |
-
type: 'POST',
|
1583 |
-
data: {
|
1584 |
-
action: 'pa_get_posts',
|
1585 |
-
page_id: $blogElement.data('page'),
|
1586 |
-
widget_id: $scope.data('id'),
|
1587 |
-
page_number: pageNumber,
|
1588 |
-
category: activeCategory,
|
1589 |
-
nonce: PremiumSettings.nonce,
|
1590 |
-
},
|
1591 |
-
beforeSend: function () {
|
1592 |
-
|
1593 |
-
$blogElement.append('<div class="premium-loading-feed"><div class="premium-loader"></div></div>');
|
1594 |
-
|
1595 |
-
if (shouldScroll) {
|
1596 |
-
$('html, body').animate({
|
1597 |
-
scrollTop: (($blogElement.offset().top) - 50)
|
1598 |
-
}, 'slow');
|
1599 |
-
}
|
1600 |
-
|
1601 |
-
},
|
1602 |
-
success: function (res) {
|
1603 |
-
|
1604 |
-
if (!res.data)
|
1605 |
-
return;
|
1606 |
-
|
1607 |
-
$blogElement.find(".premium-loading-feed").remove();
|
1608 |
-
|
1609 |
-
var posts = res.data.posts,
|
1610 |
-
paging = res.data.paging;
|
1611 |
-
|
1612 |
-
|
1613 |
-
if (infinite) {
|
1614 |
-
isLoaded = true;
|
1615 |
-
if (filterTabs && pageNumber === 1) {
|
1616 |
-
$blogElement.html(posts);
|
1617 |
-
} else {
|
1618 |
-
$blogElement.append(posts);
|
1619 |
-
}
|
1620 |
-
} else {
|
1621 |
-
//Render the new markup into the widget
|
1622 |
-
$blogElement.html(posts);
|
1623 |
-
|
1624 |
-
$scope.find(".premium-blog-footer").html(paging);
|
1625 |
-
}
|
1626 |
-
|
1627 |
-
if ("even" === layout) {
|
1628 |
-
var equalHeight = $blogElement.data("equal");
|
1629 |
-
if (equalHeight) {
|
1630 |
-
forceEqualHeight();
|
1631 |
-
}
|
1632 |
-
} else {
|
1633 |
-
|
1634 |
-
$blogElement.imagesLoaded(function () {
|
1635 |
-
$blogElement.isotope('reloadItems');
|
1636 |
-
$blogElement.isotope({
|
1637 |
-
itemSelector: ".premium-blog-post-outer-container",
|
1638 |
-
animate: false
|
1639 |
-
});
|
1640 |
-
});
|
1641 |
-
}
|
1642 |
-
|
1643 |
-
},
|
1644 |
-
error: function (err) {
|
1645 |
-
console.log(err);
|
1646 |
-
}
|
1647 |
-
});
|
1648 |
-
}
|
1649 |
-
};
|
1650 |
-
|
1651 |
-
/****** Premium Image Scroll Handler ******/
|
1652 |
-
var PremiumImageScrollHandler = function ($scope, $) {
|
1653 |
-
var scrollElement = $scope.find(".premium-image-scroll-container"),
|
1654 |
-
scrollOverlay = scrollElement.find(".premium-image-scroll-overlay"),
|
1655 |
-
scrollVertical = scrollElement.find(".premium-image-scroll-vertical"),
|
1656 |
-
dataElement = scrollElement.data("settings"),
|
1657 |
-
imageScroll = scrollElement.find("img"),
|
1658 |
-
direction = dataElement["direction"],
|
1659 |
-
reverse = dataElement["reverse"],
|
1660 |
-
transformOffset = null;
|
1661 |
-
|
1662 |
-
function startTransform() {
|
1663 |
-
imageScroll.css("transform", (direction === "vertical" ? "translateY" : "translateX") + "( -" +
|
1664 |
-
transformOffset + "px)");
|
1665 |
-
}
|
1666 |
-
|
1667 |
-
function endTransform() {
|
1668 |
-
imageScroll.css("transform", (direction === "vertical" ? "translateY" : "translateX") + "(0px)");
|
1669 |
-
}
|
1670 |
-
|
1671 |
-
function setTransform() {
|
1672 |
-
if (direction === "vertical") {
|
1673 |
-
transformOffset = imageScroll.height() - scrollElement.height();
|
1674 |
-
} else {
|
1675 |
-
transformOffset = imageScroll.width() - scrollElement.width();
|
1676 |
-
}
|
1677 |
-
}
|
1678 |
-
if (dataElement["trigger"] === "scroll") {
|
1679 |
-
scrollElement.addClass("premium-container-scroll");
|
1680 |
-
if (direction === "vertical") {
|
1681 |
-
scrollVertical.addClass("premium-image-scroll-ver");
|
1682 |
-
} else {
|
1683 |
-
scrollElement.imagesLoaded(function () {
|
1684 |
-
scrollOverlay.css({
|
1685 |
-
width: imageScroll.width(),
|
1686 |
-
height: imageScroll.height()
|
1687 |
-
});
|
1688 |
-
});
|
1689 |
-
}
|
1690 |
-
} else {
|
1691 |
-
if (reverse === "yes") {
|
1692 |
-
scrollElement.imagesLoaded(function () {
|
1693 |
-
scrollElement.addClass("premium-container-scroll-instant");
|
1694 |
-
setTransform();
|
1695 |
-
startTransform();
|
1696 |
-
});
|
1697 |
-
}
|
1698 |
-
if (direction === "vertical") {
|
1699 |
-
scrollVertical.removeClass("premium-image-scroll-ver");
|
1700 |
-
}
|
1701 |
-
scrollElement.mouseenter(function () {
|
1702 |
-
scrollElement.removeClass("premium-container-scroll-instant");
|
1703 |
-
setTransform();
|
1704 |
-
reverse === "yes" ? endTransform() : startTransform();
|
1705 |
-
});
|
1706 |
-
scrollElement.mouseleave(function () {
|
1707 |
-
reverse === "yes" ? startTransform() : endTransform();
|
1708 |
-
});
|
1709 |
-
}
|
1710 |
-
};
|
1711 |
-
|
1712 |
-
|
1713 |
-
/****** Premium Contact Form 7 Handler ******/
|
1714 |
-
var PremiumContactFormHandler = function ($scope, $) {
|
1715 |
-
|
1716 |
-
var $contactForm = $scope.find(".premium-cf7-container");
|
1717 |
-
var $input = $contactForm.find(
|
1718 |
-
'input[type="text"], input[type="email"], textarea, input[type="password"], input[type="date"], input[type="number"], input[type="tel"], input[type="file"], input[type="url"]'
|
1719 |
-
);
|
1720 |
-
|
1721 |
-
$input.wrap("<span class='wpcf7-span'>");
|
1722 |
-
|
1723 |
-
$input.on("focus blur", function () {
|
1724 |
-
$(this).closest(".wpcf7-span").toggleClass("is-focused");
|
1725 |
-
});
|
1726 |
-
};
|
1727 |
-
|
1728 |
-
/****** Premium Team Members Handler ******/
|
1729 |
-
var PremiumTeamMembersHandler = function ($scope, $) {
|
1730 |
-
|
1731 |
-
var $persons = $scope.find(".multiple-persons");
|
1732 |
-
|
1733 |
-
if (!$persons.length) return;
|
1734 |
-
|
1735 |
-
var carousel = $persons.data("carousel");
|
1736 |
-
|
1737 |
-
if (carousel) {
|
1738 |
-
|
1739 |
-
var autoPlay = $persons.data("play"),
|
1740 |
-
speed = $persons.data("speed"),
|
1741 |
-
rtl = $persons.data("rtl"),
|
1742 |
-
colsNumber = $persons.data("col"),
|
1743 |
-
colsTablet = $persons.data("col-tablet"),
|
1744 |
-
colsMobile = $persons.data("col-mobile"),
|
1745 |
-
prevArrow =
|
1746 |
-
'<a type="button" data-role="none" class="carousel-arrow carousel-prev" aria-label="Next" role="button" style=""><i class="fas fa-angle-left" aria-hidden="true"></i></a>',
|
1747 |
-
nextArrow =
|
1748 |
-
'<a type="button" data-role="none" class="carousel-arrow carousel-next" aria-label="Next" role="button" style=""><i class="fas fa-angle-right" aria-hidden="true"></i></a>';
|
1749 |
-
|
1750 |
-
$persons.slick({
|
1751 |
-
infinite: true,
|
1752 |
-
slidesToShow: colsNumber,
|
1753 |
-
slidesToScroll: colsNumber,
|
1754 |
-
responsive: [{
|
1755 |
-
breakpoint: 1025,
|
1756 |
-
settings: {
|
1757 |
-
slidesToShow: colsTablet,
|
1758 |
-
slidesToScroll: 1
|
1759 |
-
}
|
1760 |
-
},
|
1761 |
-
{
|
1762 |
-
breakpoint: 768,
|
1763 |
-
settings: {
|
1764 |
-
slidesToShow: colsMobile,
|
1765 |
-
slidesToScroll: 1
|
1766 |
-
}
|
1767 |
-
}
|
1768 |
-
],
|
1769 |
-
autoplay: autoPlay,
|
1770 |
-
rows: 0,
|
1771 |
-
autoplaySpeed: speed,
|
1772 |
-
rtl: rtl ? true : false,
|
1773 |
-
nextArrow: nextArrow,
|
1774 |
-
prevArrow: prevArrow,
|
1775 |
-
draggable: true,
|
1776 |
-
pauseOnHover: true
|
1777 |
-
});
|
1778 |
-
}
|
1779 |
-
|
1780 |
-
if ($persons.hasClass("premium-person-style1")) return;
|
1781 |
-
|
1782 |
-
if ("yes" !== $persons.data("persons-equal")) return;
|
1783 |
-
|
1784 |
-
var heights = new Array();
|
1785 |
-
|
1786 |
-
$persons.find(".premium-person-container").each(function (index, person) {
|
1787 |
-
$(person).imagesLoaded(function () { }).done(function () {
|
1788 |
-
var imageHeight = $(person).find(".premium-person-image-container")
|
1789 |
-
.outerHeight();
|
1790 |
-
heights.push(imageHeight);
|
1791 |
-
});
|
1792 |
-
});
|
1793 |
-
|
1794 |
-
$persons.imagesLoaded(function () { }).done(function () {
|
1795 |
-
var maxHeight = Math.max.apply(null, heights);
|
1796 |
-
$persons.find(".premium-person-image-wrap").css("height", maxHeight + "px");
|
1797 |
-
});
|
1798 |
-
};
|
1799 |
-
|
1800 |
-
/****** Premium Title Handler ******/
|
1801 |
-
var PremiumTitleHandler = function ($scope, $) {
|
1802 |
-
|
1803 |
-
var $titleContainer = $scope.find(".premium-title-container"),
|
1804 |
-
$titleElement = $titleContainer.find('.premium-title-text');
|
1805 |
-
|
1806 |
-
if ($titleContainer.hasClass('style9')) {
|
1807 |
-
var $style9 = $scope.find(".premium-title-style9");
|
1808 |
-
|
1809 |
-
$style9.each(function () {
|
1810 |
-
var elm = $(this);
|
1811 |
-
var holdTime = elm.attr('data-blur-delay') * 1000;
|
1812 |
-
elm.attr('data-animation-blur', 'process')
|
1813 |
-
elm.find('.premium-title-style9-letter').each(function (index, letter) {
|
1814 |
-
index += 1;
|
1815 |
-
var animateDelay;
|
1816 |
-
if ($('body').hasClass('rtl')) {
|
1817 |
-
animateDelay = 0.2 / index + 's';
|
1818 |
-
} else {
|
1819 |
-
animateDelay = index / 20 + 's';
|
1820 |
-
}
|
1821 |
-
$(letter).css({
|
1822 |
-
'-webkit-animation-delay': animateDelay,
|
1823 |
-
'animation-delay': animateDelay
|
1824 |
-
});
|
1825 |
-
})
|
1826 |
-
setInterval(function () {
|
1827 |
-
elm.attr('data-animation-blur', 'done')
|
1828 |
-
setTimeout(function () {
|
1829 |
-
elm.attr('data-animation-blur', 'process')
|
1830 |
-
}, 150);
|
1831 |
-
}, holdTime);
|
1832 |
-
});
|
1833 |
-
}
|
1834 |
-
|
1835 |
-
|
1836 |
-
if ($titleContainer.hasClass('style8')) {
|
1837 |
-
|
1838 |
-
var holdTime = $titleElement.attr('data-shiny-delay') * 1000,
|
1839 |
-
duration = $titleElement.attr('data-shiny-dur') * 1000;
|
1840 |
-
|
1841 |
-
function shinyEffect() {
|
1842 |
-
$titleElement.get(0).setAttribute('data-animation', 'shiny');
|
1843 |
-
setTimeout(function () {
|
1844 |
-
$titleElement.removeAttr('data-animation')
|
1845 |
-
}, duration);
|
1846 |
-
}
|
1847 |
-
|
1848 |
-
(function repeat() {
|
1849 |
-
shinyEffect();
|
1850 |
-
setTimeout(repeat, holdTime);
|
1851 |
-
})();
|
1852 |
-
}
|
1853 |
-
|
1854 |
-
};
|
1855 |
-
|
1856 |
-
/****** Premium Bullet List Handler ******/
|
1857 |
-
var PremiumIconListHandler = function ($scope, $) {
|
1858 |
-
|
1859 |
-
var $listItems = $scope.find(".premium-icon-list-box"),
|
1860 |
-
items = $listItems.find(".premium-icon-list-content");
|
1861 |
-
|
1862 |
-
items
|
1863 |
-
.each(function (index, item) {
|
1864 |
-
if ($listItems.data("list-animation") && " " != $listItems.data("list-animation")) {
|
1865 |
-
var waypoint = new Waypoint({
|
1866 |
-
element: item,
|
1867 |
-
handler: function () {
|
1868 |
-
var element = $(this.element),
|
1869 |
-
delay = element.data('delay');
|
1870 |
-
setTimeout(function () {
|
1871 |
-
element.next('.premium-icon-list-divider , .premium-icon-list-divider-inline').css("opacity", "1");
|
1872 |
-
element.next('.premium-icon-list-divider-inline , .premium-icon-list-divider').addClass("animated " + $listItems.data("list-animation"));
|
1873 |
-
element.css("opacity", "1"),
|
1874 |
-
element.addClass("animated " + $listItems.data("list-animation"));
|
1875 |
-
}, delay);
|
1876 |
-
this.destroy();
|
1877 |
-
},
|
1878 |
-
offset: Waypoint.viewportHeight() - 150,
|
1879 |
-
});
|
1880 |
-
}
|
1881 |
-
});
|
1882 |
-
};
|
1883 |
-
|
1884 |
-
/****** Premium Grow Effect Handler ******/
|
1885 |
-
var PremiumButtonHandler = function ($scope, $) {
|
1886 |
-
|
1887 |
-
var $btnGrow = $scope.find('.premium-button-style6-bg');
|
1888 |
-
|
1889 |
-
if ($btnGrow.length !== 0 && $scope.hasClass('premium-mouse-detect-yes')) {
|
1890 |
-
$scope.on('mouseenter mouseleave', '.premium-button-style6', function (e) {
|
1891 |
-
|
1892 |
-
var parentOffset = $(this).offset(),
|
1893 |
-
left = e.pageX - parentOffset.left,
|
1894 |
-
top = e.pageY - parentOffset.top;
|
1895 |
-
|
1896 |
-
$btnGrow.css({
|
1897 |
-
top: top,
|
1898 |
-
left: left,
|
1899 |
-
});
|
1900 |
-
|
1901 |
-
});
|
1902 |
-
}
|
1903 |
-
|
1904 |
-
};
|
1905 |
-
|
1906 |
-
var PremiumMaskHandler = function ($scope, $) {
|
1907 |
-
var mask = $scope.hasClass('premium-mask-yes');
|
1908 |
-
|
1909 |
-
if (!mask) return;
|
1910 |
-
|
1911 |
-
if ('premium-addon-title.default' === $scope.data('widget_type')) {
|
1912 |
-
var target = '.premium-title-header';
|
1913 |
-
$scope.find(target).find('.premium-title-icon, .premium-title-img').addClass('premium-mask-span');
|
1914 |
-
} else {
|
1915 |
-
var target = '.premium-dual-header-first-header';
|
1916 |
-
}
|
1917 |
-
|
1918 |
-
$scope.find(target).find('span:not(.premium-title-style7-stripe-wrap):not(.premium-title-img)').each(function (index, span) {
|
1919 |
-
var html = '';
|
1920 |
-
|
1921 |
-
$(this).text().split(' ').forEach(function (item) {
|
1922 |
-
if ('' !== item) {
|
1923 |
-
html += ' <span class="premium-mask-span">' + item + '</span>';
|
1924 |
-
}
|
1925 |
-
});
|
1926 |
-
|
1927 |
-
$(this).text('').append(html);
|
1928 |
-
});
|
1929 |
-
|
1930 |
-
elementorFrontend.waypoint($scope, function () {
|
1931 |
-
$($scope).addClass('premium-mask-active');
|
1932 |
-
}, {
|
1933 |
-
offset: Waypoint.viewportHeight() - 150,
|
1934 |
-
triggerOnce: true
|
1935 |
-
});
|
1936 |
-
};
|
1937 |
-
|
1938 |
-
//Elementor JS Hooks
|
1939 |
-
$(window).on("elementor/frontend/init", function () {
|
1940 |
-
|
1941 |
-
elementorFrontend.hooks.addAction("frontend/element_ready/premium-addon-dual-header.default", PremiumMaskHandler);
|
1942 |
-
|
1943 |
-
elementorFrontend.hooks.addAction("frontend/element_ready/premium-addon-video-box.default", PremiumVideoBoxWidgetHandler);
|
1944 |
-
|
1945 |
-
elementorFrontend.hooks.addAction("frontend/element_ready/premium-img-gallery.default", PremiumGridWidgetHandler);
|
1946 |
-
|
1947 |
-
elementorFrontend.hooks.addAction("frontend/element_ready/premium-addon-fancy-text.default", PremiumFancyTextHandler);
|
1948 |
-
|
1949 |
-
elementorFrontend.hooks.addAction("frontend/element_ready/premium-counter.default", PremiumCounterHandler);
|
1950 |
-
|
1951 |
-
elementorFrontend.hooks.addAction("frontend/element_ready/premium-addon-title.default", PremiumTitleHandler);
|
1952 |
-
|
1953 |
-
elementorFrontend.hooks.addAction("frontend/element_ready/premium-addon-title.default", PremiumMaskHandler);
|
1954 |
-
|
1955 |
-
elementorFrontend.hooks.addAction("frontend/element_ready/premium-countdown-timer.default", PremiumCountDownHandler);
|
1956 |
-
|
1957 |
-
elementorFrontend.hooks.addAction("frontend/element_ready/premium-carousel-widget.default", PremiumCarouselHandler);
|
1958 |
-
|
1959 |
-
elementorFrontend.hooks.addAction("frontend/element_ready/premium-addon-banner.default", PremiumBannerHandler);
|
1960 |
-
|
1961 |
-
elementorFrontend.hooks.addAction("frontend/element_ready/premium-addon-modal-box.default", PremiumModalBoxHandler);
|
1962 |
-
|
1963 |
-
elementorFrontend.hooks.addAction("frontend/element_ready/premium-addon-blog.default", PremiumBlogHandler);
|
1964 |
-
|
1965 |
-
elementorFrontend.hooks.addAction("frontend/element_ready/premium-image-scroll.default", PremiumImageScrollHandler);
|
1966 |
-
|
1967 |
-
elementorFrontend.hooks.addAction("frontend/element_ready/premium-contact-form.default", PremiumContactFormHandler);
|
1968 |
-
|
1969 |
-
elementorFrontend.hooks.addAction("frontend/element_ready/premium-addon-person.default", PremiumTeamMembersHandler);
|
1970 |
-
|
1971 |
-
elementorFrontend.hooks.addAction("frontend/element_ready/premium-icon-list.default", PremiumIconListHandler);
|
1972 |
-
|
1973 |
-
elementorFrontend.hooks.addAction("frontend/element_ready/premium-addon-button.default", PremiumButtonHandler);
|
1974 |
-
|
1975 |
-
elementorFrontend.hooks.addAction("frontend/element_ready/premium-addon-image-button.default", PremiumButtonHandler);
|
1976 |
-
|
1977 |
-
if (elementorFrontend.isEditMode()) {
|
1978 |
-
elementorFrontend.hooks.addAction("frontend/element_ready/premium-addon-progressbar.default", PremiumProgressBarWidgetHandler);
|
1979 |
-
} else {
|
1980 |
-
elementorFrontend.hooks.addAction("frontend/element_ready/premium-addon-progressbar.default", PremiumProgressBarScrollWidgetHandler);
|
1981 |
-
}
|
1982 |
-
});
|
1 |
+
(function ($) {
|
2 |
+
|
3 |
+
/****** Premium Progress Bar Handler ******/
|
4 |
+
var PremiumProgressBarWidgetHandler = function ($scope, trigger) {
|
5 |
+
|
6 |
+
var $progressbarElem = $scope.find(".premium-progressbar-container"),
|
7 |
+
settings = $progressbarElem.data("settings"),
|
8 |
+
length = settings.progress_length,
|
9 |
+
speed = settings.speed,
|
10 |
+
type = settings.type;
|
11 |
+
|
12 |
+
|
13 |
+
if ("line" === type) {
|
14 |
+
|
15 |
+
var $progressbar = $progressbarElem.find(".premium-progressbar-bar");
|
16 |
+
|
17 |
+
if (settings.gradient)
|
18 |
+
$progressbar.css("background", "linear-gradient(-45deg, " + settings.gradient + ")");
|
19 |
+
|
20 |
+
$progressbar.animate({
|
21 |
+
width: length + "%"
|
22 |
+
}, speed);
|
23 |
+
|
24 |
+
} else if ("circle" === type) {
|
25 |
+
if (length > 100)
|
26 |
+
length = 100;
|
27 |
+
|
28 |
+
$progressbarElem.prop({
|
29 |
+
'counter': 0
|
30 |
+
}).animate({
|
31 |
+
counter: length
|
32 |
+
}, {
|
33 |
+
duration: speed,
|
34 |
+
easing: 'linear',
|
35 |
+
step: function (counter) {
|
36 |
+
var rotate = (counter * 3.6);
|
37 |
+
|
38 |
+
$progressbarElem.find(".premium-progressbar-right-label span").text(Math.ceil(counter) + "%");
|
39 |
+
|
40 |
+
$progressbarElem.find(".premium-progressbar-circle-left").css('transform', "rotate(" + rotate + "deg)");
|
41 |
+
if (rotate > 180) {
|
42 |
+
|
43 |
+
$progressbarElem.find(".premium-progressbar-circle").css({
|
44 |
+
'-webkit-clip-path': 'inset(0)',
|
45 |
+
'clip-path': 'inset(0)',
|
46 |
+
});
|
47 |
+
|
48 |
+
$progressbarElem.find(".premium-progressbar-circle-right").css('visibility', 'visible');
|
49 |
+
}
|
50 |
+
}
|
51 |
+
});
|
52 |
+
|
53 |
+
} else {
|
54 |
+
|
55 |
+
var $progressbar = $progressbarElem.find(".premium-progressbar-bar-wrap"),
|
56 |
+
width = $progressbarElem.outerWidth(),
|
57 |
+
dotSize = settings.dot || 25,
|
58 |
+
dotSpacing = settings.spacing || 10,
|
59 |
+
numberOfCircles = Math.ceil(width / (dotSize + dotSpacing)),
|
60 |
+
circlesToFill = numberOfCircles * (length / 100),
|
61 |
+
numberOfTotalFill = Math.floor(circlesToFill),
|
62 |
+
fillPercent = 100 * (circlesToFill - numberOfTotalFill);
|
63 |
+
|
64 |
+
$progressbar.attr('data-circles', numberOfCircles);
|
65 |
+
$progressbar.attr('data-total-fill', numberOfTotalFill);
|
66 |
+
$progressbar.attr('data-partial-fill', fillPercent);
|
67 |
+
|
68 |
+
var className = "progress-segment";
|
69 |
+
for (var i = 0; i < numberOfCircles; i++) {
|
70 |
+
className = "progress-segment";
|
71 |
+
var innerHTML = '';
|
72 |
+
|
73 |
+
if (i < numberOfTotalFill) {
|
74 |
+
innerHTML = "<div class='segment-inner'></div>";
|
75 |
+
} else if (i === numberOfTotalFill) {
|
76 |
+
|
77 |
+
innerHTML = "<div class='segment-inner'></div>";
|
78 |
+
}
|
79 |
+
|
80 |
+
$progressbar.append("<div class='" + className + "'>" + innerHTML + "</div>");
|
81 |
+
|
82 |
+
}
|
83 |
+
|
84 |
+
if ("frontend" !== trigger) {
|
85 |
+
PremiumProgressDotsHandler($scope);
|
86 |
+
}
|
87 |
+
|
88 |
+
}
|
89 |
+
|
90 |
+
};
|
91 |
+
|
92 |
+
var PremiumProgressDotsHandler = function ($scope) {
|
93 |
+
|
94 |
+
var $progressbarElem = $scope.find(".premium-progressbar-container"),
|
95 |
+
settings = $progressbarElem.data("settings"),
|
96 |
+
$progressbar = $scope.find(".premium-progressbar-bar-wrap"),
|
97 |
+
data = $progressbar.data(),
|
98 |
+
speed = settings.speed,
|
99 |
+
increment = 0;
|
100 |
+
|
101 |
+
var numberOfTotalFill = data.totalFill,
|
102 |
+
numberOfCircles = data.circles,
|
103 |
+
fillPercent = data.partialFill;
|
104 |
+
|
105 |
+
dotIncrement(increment);
|
106 |
+
|
107 |
+
function dotIncrement(inc) {
|
108 |
+
|
109 |
+
var $dot = $progressbar.find(".progress-segment").eq(inc),
|
110 |
+
dotWidth = 100;
|
111 |
+
|
112 |
+
if (inc === numberOfTotalFill)
|
113 |
+
dotWidth = fillPercent
|
114 |
+
|
115 |
+
$dot.find(".segment-inner").animate({
|
116 |
+
width: dotWidth + '%'
|
117 |
+
}, speed / numberOfCircles, function () {
|
118 |
+
increment++;
|
119 |
+
if (increment <= numberOfTotalFill) {
|
120 |
+
dotIncrement(increment);
|
121 |
+
}
|
122 |
+
|
123 |
+
});
|
124 |
+
}
|
125 |
+
};
|
126 |
+
|
127 |
+
/****** Premium Progress Bar Scroll Handler *****/
|
128 |
+
var PremiumProgressBarScrollWidgetHandler = function ($scope, $) {
|
129 |
+
|
130 |
+
var $progressbarElem = $scope.find(".premium-progressbar-container"),
|
131 |
+
settings = $progressbarElem.data("settings"),
|
132 |
+
type = settings.type;
|
133 |
+
|
134 |
+
if ("dots" === type) {
|
135 |
+
PremiumProgressBarWidgetHandler($scope, "frontend");
|
136 |
+
}
|
137 |
+
|
138 |
+
elementorFrontend.waypoint($scope, function () {
|
139 |
+
if ("dots" !== type) {
|
140 |
+
PremiumProgressBarWidgetHandler($(this));
|
141 |
+
} else {
|
142 |
+
PremiumProgressDotsHandler($(this));
|
143 |
+
}
|
144 |
+
|
145 |
+
}, {
|
146 |
+
offset: Waypoint.viewportHeight() - 150,
|
147 |
+
triggerOnce: true
|
148 |
+
});
|
149 |
+
};
|
150 |
+
|
151 |
+
/****** Premium Video Box Handler ******/
|
152 |
+
var PremiumVideoBoxWidgetHandler = function ($scope, $) {
|
153 |
+
|
154 |
+
var $videoBoxElement = $scope.find(".premium-video-box-container"),
|
155 |
+
$videoListElement = $scope.find(".premium-video-box-playlist-container"),
|
156 |
+
$videoContainer = $videoBoxElement.find(".premium-video-box-video-container"), //should be clicked
|
157 |
+
$videoInnerContainer = $videoBoxElement.find('.premium-video-box-inner-wrap'),
|
158 |
+
$videoImageContainer = $videoInnerContainer.find('.premium-video-box-image-container'),
|
159 |
+
type = $videoBoxElement.data("type"),
|
160 |
+
thumbnail = $videoBoxElement.data("thumbnail"),
|
161 |
+
sticky = $videoBoxElement.data('sticky'),
|
162 |
+
stickyOnPlay = $videoBoxElement.data('sticky-play'),
|
163 |
+
hoverEffect = $videoBoxElement.data("hover"),
|
164 |
+
video, vidSrc;
|
165 |
+
|
166 |
+
// Youtube playlist option
|
167 |
+
if ($videoListElement.length) {
|
168 |
+
|
169 |
+
//Make sure that video were pulled from the API.
|
170 |
+
if (!$videoContainer.length)
|
171 |
+
return;
|
172 |
+
|
173 |
+
$videoContainer.each(function (index, item) {
|
174 |
+
|
175 |
+
var vidSrc,
|
176 |
+
$videoContainer = $(item),
|
177 |
+
$videoBoxElement = $videoContainer.closest(".premium-video-box-container"),
|
178 |
+
$trigger = $videoContainer.closest(".premium-video-box-trigger");
|
179 |
+
|
180 |
+
vidSrc = $videoContainer.data("src");
|
181 |
+
vidSrc = vidSrc + "&autoplay=1";
|
182 |
+
|
183 |
+
$($trigger).on("click", function () {
|
184 |
+
|
185 |
+
var $iframe = $("<iframe/>");
|
186 |
+
|
187 |
+
$iframe.attr({
|
188 |
+
"src": vidSrc,
|
189 |
+
"frameborder": "0",
|
190 |
+
"allowfullscreen": "1",
|
191 |
+
"allow": "autoplay;encrypted-media;"
|
192 |
+
});
|
193 |
+
$videoContainer.css("background", "#000");
|
194 |
+
$videoContainer.html($iframe);
|
195 |
+
|
196 |
+
$videoBoxElement.find(
|
197 |
+
".premium-video-box-image-container, .premium-video-box-play-icon-container"
|
198 |
+
).remove();
|
199 |
+
|
200 |
+
});
|
201 |
+
|
202 |
+
});
|
203 |
+
|
204 |
+
return;
|
205 |
+
}
|
206 |
+
|
207 |
+
if ("self" === type) {
|
208 |
+
|
209 |
+
video = $videoContainer.find("video");
|
210 |
+
vidSrc = video.attr("src");
|
211 |
+
|
212 |
+
} else {
|
213 |
+
|
214 |
+
vidSrc = $videoContainer.data("src");
|
215 |
+
|
216 |
+
if (!thumbnail || -1 !== vidSrc.indexOf("autoplay=1")) {
|
217 |
+
|
218 |
+
//Check if Autoplay on viewport option is enabled
|
219 |
+
if ($videoBoxElement.data("play-viewport")) {
|
220 |
+
elementorFrontend.waypoint($videoBoxElement, function () {
|
221 |
+
playVideo();
|
222 |
+
});
|
223 |
+
} else {
|
224 |
+
playVideo();
|
225 |
+
}
|
226 |
+
|
227 |
+
} else {
|
228 |
+
vidSrc = vidSrc + "&autoplay=1";
|
229 |
+
}
|
230 |
+
|
231 |
+
}
|
232 |
+
|
233 |
+
function playVideo() {
|
234 |
+
|
235 |
+
if ($videoBoxElement.hasClass("playing")) return;
|
236 |
+
|
237 |
+
$videoBoxElement.addClass("playing");
|
238 |
+
|
239 |
+
if (stickyOnPlay === 'yes')
|
240 |
+
stickyOption();
|
241 |
+
|
242 |
+
if ("self" === type) {
|
243 |
+
|
244 |
+
$(video).get(0).play();
|
245 |
+
|
246 |
+
$videoContainer.css({
|
247 |
+
opacity: "1",
|
248 |
+
visibility: "visible"
|
249 |
+
});
|
250 |
+
|
251 |
+
} else {
|
252 |
+
|
253 |
+
var $iframe = $("<iframe/>");
|
254 |
+
|
255 |
+
$iframe.attr({
|
256 |
+
"src": vidSrc,
|
257 |
+
"frameborder": "0",
|
258 |
+
"allowfullscreen": "1",
|
259 |
+
"allow": "autoplay;encrypted-media;"
|
260 |
+
});
|
261 |
+
$videoContainer.css("background", "#000");
|
262 |
+
$videoContainer.html($iframe);
|
263 |
+
}
|
264 |
+
|
265 |
+
$videoBoxElement.find(
|
266 |
+
".premium-video-box-image-container, .premium-video-box-play-icon-container, .premium-video-box-description-container"
|
267 |
+
).remove();
|
268 |
+
|
269 |
+
if ("vimeo" === type)
|
270 |
+
$videoBoxElement.find(".premium-video-box-vimeo-wrap").remove();
|
271 |
+
}
|
272 |
+
|
273 |
+
$videoBoxElement.on("click", function () {
|
274 |
+
playVideo();
|
275 |
+
});
|
276 |
+
|
277 |
+
|
278 |
+
if ("yes" !== sticky || "yes" === stickyOnPlay)
|
279 |
+
return;
|
280 |
+
|
281 |
+
stickyOption();
|
282 |
+
|
283 |
+
function stickyOption() {
|
284 |
+
|
285 |
+
var stickyDesktop = $videoBoxElement.data('hide-desktop'),
|
286 |
+
stickyTablet = $videoBoxElement.data('hide-tablet'),
|
287 |
+
stickyMobile = $videoBoxElement.data('hide-mobile'),
|
288 |
+
stickyMargin = $videoBoxElement.data('sticky-margin');
|
289 |
+
|
290 |
+
$videoBoxElement.off('click').on('click', function (e) {
|
291 |
+
// if ('yes' === sticky) {
|
292 |
+
var stickyTarget = e.target.className;
|
293 |
+
if ((stickyTarget.toString().indexOf('premium-video-box-sticky-close') >= 0) || (stickyTarget.toString().indexOf('premium-video-box-sticky-close') >= 0)) {
|
294 |
+
return false;
|
295 |
+
}
|
296 |
+
// }
|
297 |
+
playVideo();
|
298 |
+
|
299 |
+
});
|
300 |
+
|
301 |
+
//Make sure Elementor Waypoint is defined
|
302 |
+
if (typeof elementorFrontend.waypoint !== 'undefined') {
|
303 |
+
|
304 |
+
var stickyWaypoint = elementorFrontend.waypoint(
|
305 |
+
$videoBoxElement,
|
306 |
+
function (direction) {
|
307 |
+
if ('down' === direction) {
|
308 |
+
|
309 |
+
$videoBoxElement.removeClass('premium-video-box-sticky-hide').addClass('premium-video-box-sticky-apply premium-video-box-filter-sticky');
|
310 |
+
|
311 |
+
//Fix conflict with Elementor motion effects
|
312 |
+
if ($scope.hasClass("elementor-motion-effects-parent")) {
|
313 |
+
$scope.removeClass("elementor-motion-effects-perspective").find(".elementor-widget-container").addClass("premium-video-box-transform");
|
314 |
+
}
|
315 |
+
|
316 |
+
if ($videoBoxElement.data("mask")) {
|
317 |
+
//Fix Sticky position issue when drop-shadow is applied
|
318 |
+
$scope.find(".premium-video-box-mask-filter").removeClass("premium-video-box-mask-filter");
|
319 |
+
|
320 |
+
$videoBoxElement.find(':first-child').removeClass('premium-video-box-mask-media');
|
321 |
+
|
322 |
+
$videoImageContainer.removeClass(hoverEffect).removeClass('premium-video-box-mask-media').css({
|
323 |
+
'transition': 'width 0.2s, height 0.2s',
|
324 |
+
'-webkit-transition': 'width 0.2s, height 0.2s'
|
325 |
+
});
|
326 |
+
}
|
327 |
+
|
328 |
+
$(document).trigger('premium_after_sticky_applied', [$scope]);
|
329 |
+
|
330 |
+
// Entrance Animation Option
|
331 |
+
if ($videoInnerContainer.data("video-animation") && " " != $videoInnerContainer.data("video-animation")) {
|
332 |
+
$videoInnerContainer.css("opacity", "0");
|
333 |
+
var animationDelay = $videoInnerContainer.data('delay-animation');
|
334 |
+
setTimeout(function () {
|
335 |
+
|
336 |
+
$videoInnerContainer.css("opacity", "1").addClass("animated " + $videoInnerContainer.data("video-animation"));
|
337 |
+
|
338 |
+
}, animationDelay * 1000);
|
339 |
+
}
|
340 |
+
|
341 |
+
} else {
|
342 |
+
|
343 |
+
$videoBoxElement.removeClass('premium-video-box-sticky-apply premium-video-box-filter-sticky').addClass('premium-video-box-sticky-hide');
|
344 |
+
|
345 |
+
//Fix conflict with Elementor motion effects
|
346 |
+
if ($scope.hasClass("elementor-motion-effects-parent")) {
|
347 |
+
$scope.addClass("elementor-motion-effects-perspective").find(".elementor-widget-container").removeClass("premium-video-box-transform");
|
348 |
+
}
|
349 |
+
|
350 |
+
if ($videoBoxElement.data("mask")) {
|
351 |
+
//Fix Sticky position issue when drop-shadow is applied
|
352 |
+
$videoBoxElement.parent().addClass("premium-video-box-mask-filter");
|
353 |
+
|
354 |
+
$videoBoxElement.find(':first-child').eq(0).addClass('premium-video-box-mask-media');
|
355 |
+
$videoImageContainer.addClass('premium-video-box-mask-media');
|
356 |
+
}
|
357 |
+
|
358 |
+
$videoImageContainer.addClass(hoverEffect).css({
|
359 |
+
'transition': 'all 0.2s',
|
360 |
+
'-webkit-transition': 'all 0.2s'
|
361 |
+
});
|
362 |
+
|
363 |
+
$videoInnerContainer.removeClass("animated " + $videoInnerContainer.data("video-animation"));
|
364 |
+
}
|
365 |
+
}, {
|
366 |
+
offset: 0 + '%',
|
367 |
+
triggerOnce: false
|
368 |
+
}
|
369 |
+
);
|
370 |
+
}
|
371 |
+
|
372 |
+
var closeBtn = $scope.find('.premium-video-box-sticky-close');
|
373 |
+
|
374 |
+
closeBtn.off('click.closetrigger').on('click.closetrigger', function (e) {
|
375 |
+
stickyWaypoint[0].disable();
|
376 |
+
|
377 |
+
$videoBoxElement.removeClass('premium-video-box-sticky-apply premium-video-box-sticky-hide');
|
378 |
+
|
379 |
+
//Fix conflict with Elementor motion effects
|
380 |
+
if ($scope.hasClass("elementor-motion-effects-parent")) {
|
381 |
+
$scope.addClass("elementor-motion-effects-perspective").find(".elementor-widget-container").removeClass("premium-video-box-transform");
|
382 |
+
}
|
383 |
+
|
384 |
+
if ($videoBoxElement.data("mask")) {
|
385 |
+
//Fix Sticky position issue when drop-shadow is applied
|
386 |
+
$videoBoxElement.parent().addClass("premium-video-box-mask-filter");
|
387 |
+
|
388 |
+
//Necessary classes for mask shape option
|
389 |
+
$videoBoxElement.find(':first-child').eq(0).addClass('premium-video-box-mask-media');
|
390 |
+
$videoImageContainer.addClass('premium-video-box-mask-media');
|
391 |
+
}
|
392 |
+
|
393 |
+
|
394 |
+
});
|
395 |
+
|
396 |
+
checkResize(stickyWaypoint);
|
397 |
+
|
398 |
+
checkScroll();
|
399 |
+
|
400 |
+
window.addEventListener("scroll", checkScroll);
|
401 |
+
|
402 |
+
$(window).resize(function (e) {
|
403 |
+
checkResize(stickyWaypoint);
|
404 |
+
});
|
405 |
+
|
406 |
+
function checkResize(stickyWaypoint) {
|
407 |
+
var currentDeviceMode = elementorFrontend.getCurrentDeviceMode();
|
408 |
+
|
409 |
+
if ('' !== stickyDesktop && currentDeviceMode == stickyDesktop) {
|
410 |
+
disableSticky(stickyWaypoint);
|
411 |
+
} else if ('' !== stickyTablet && currentDeviceMode == stickyTablet) {
|
412 |
+
disableSticky(stickyWaypoint);
|
413 |
+
} else if ('' !== stickyMobile && currentDeviceMode == stickyMobile) {
|
414 |
+
disableSticky(stickyWaypoint);
|
415 |
+
} else {
|
416 |
+
stickyWaypoint[0].enable();
|
417 |
+
}
|
418 |
+
}
|
419 |
+
|
420 |
+
function disableSticky(stickyWaypoint) {
|
421 |
+
stickyWaypoint[0].disable();
|
422 |
+
$videoBoxElement.removeClass('premium-video-box-sticky-apply premium-video-box-sticky-hide');
|
423 |
+
}
|
424 |
+
|
425 |
+
function checkScroll() {
|
426 |
+
if ($videoBoxElement.hasClass('premium-video-box-sticky-apply')) {
|
427 |
+
$videoInnerContainer.draggable({
|
428 |
+
start: function () {
|
429 |
+
$(this).css({
|
430 |
+
transform: "none",
|
431 |
+
top: $(this).offset().top + "px",
|
432 |
+
left: $(this).offset().left + "px"
|
433 |
+
});
|
434 |
+
},
|
435 |
+
containment: 'window'
|
436 |
+
});
|
437 |
+
}
|
438 |
+
}
|
439 |
+
|
440 |
+
$(document).on('premium_after_sticky_applied', function (e, $scope) {
|
441 |
+
var infobar = $scope.find('.premium-video-box-sticky-infobar');
|
442 |
+
|
443 |
+
if (0 !== infobar.length) {
|
444 |
+
var infobarHeight = infobar.outerHeight();
|
445 |
+
|
446 |
+
if ($scope.hasClass('premium-video-sticky-center-left') || $scope.hasClass('premium-video-sticky-center-right')) {
|
447 |
+
infobarHeight = Math.ceil(infobarHeight / 2);
|
448 |
+
$videoInnerContainer.css('top', 'calc( 50% - ' + infobarHeight + 'px )');
|
449 |
+
}
|
450 |
+
|
451 |
+
if ($scope.hasClass('premium-video-sticky-bottom-left') || $scope.hasClass('premium-video-sticky-bottom-right')) {
|
452 |
+
if ('' !== stickyMargin) {
|
453 |
+
infobarHeight = Math.ceil(infobarHeight);
|
454 |
+
var stickBottom = infobarHeight + stickyMargin;
|
455 |
+
$videoInnerContainer.css('bottom', stickBottom);
|
456 |
+
}
|
457 |
+
}
|
458 |
+
}
|
459 |
+
});
|
460 |
+
|
461 |
+
}
|
462 |
+
|
463 |
+
};
|
464 |
+
|
465 |
+
/****** Premium Media Grid Handler ******/
|
466 |
+
var PremiumGridWidgetHandler = function ($scope, $) {
|
467 |
+
|
468 |
+
var $galleryElement = $scope.find(".premium-gallery-container"),
|
469 |
+
settings = $galleryElement.data("settings"),
|
470 |
+
layout = settings.img_size,
|
471 |
+
deviceType = elementorFrontend.getCurrentDeviceMode(),
|
472 |
+
loadMore = settings.load_more,
|
473 |
+
columnWidth = null,
|
474 |
+
filter = null,
|
475 |
+
isFilterClicked = false,
|
476 |
+
minimum = settings.minimum,
|
477 |
+
imageToShow = settings.click_images,
|
478 |
+
counter = minimum,
|
479 |
+
ltrMode = settings.ltr_mode,
|
480 |
+
shuffle = settings.shuffle;
|
481 |
+
|
482 |
+
var $filters = $scope.find(".premium-gallery-cats-container li");
|
483 |
+
|
484 |
+
if (layout === "metro") {
|
485 |
+
|
486 |
+
var gridWidth = $galleryElement.width(),
|
487 |
+
cellSize = Math.floor(gridWidth / 12),
|
488 |
+
suffix = null;
|
489 |
+
|
490 |
+
setMetroLayout();
|
491 |
+
|
492 |
+
function setMetroLayout() {
|
493 |
+
|
494 |
+
deviceType = elementorFrontend.getCurrentDeviceMode();
|
495 |
+
gridWidth = $galleryElement.width();
|
496 |
+
cellSize = Math.floor(gridWidth / 12);
|
497 |
+
suffix = "";
|
498 |
+
|
499 |
+
if ("tablet" === deviceType) {
|
500 |
+
suffix = "_tablet";
|
501 |
+
} else if ("mobile" === deviceType) {
|
502 |
+
suffix = "_mobile";
|
503 |
+
}
|
504 |
+
|
505 |
+
$galleryElement.find(".premium-gallery-item").each(function (index, item) {
|
506 |
+
|
507 |
+
var cells = $(item).data("metro")["cells" + suffix],
|
508 |
+
vCells = $(item).data("metro")["vcells" + suffix];
|
509 |
+
|
510 |
+
if ("" == cells || undefined == cells) {
|
511 |
+
cells = $(item).data("metro")["cells"];
|
512 |
+
}
|
513 |
+
if ("" == vCells || undefined == vCells) {
|
514 |
+
vCells = $(item).data("metro")["vcells"];
|
515 |
+
}
|
516 |
+
|
517 |
+
$(item).css({
|
518 |
+
width: Math.ceil(cells * cellSize),
|
519 |
+
height: Math.ceil(vCells * cellSize)
|
520 |
+
});
|
521 |
+
});
|
522 |
+
|
523 |
+
columnWidth = cellSize;
|
524 |
+
}
|
525 |
+
|
526 |
+
layout = "masonry";
|
527 |
+
|
528 |
+
$(window).resize(function () {
|
529 |
+
|
530 |
+
setMetroLayout();
|
531 |
+
|
532 |
+
$isotopeGallery.isotope({
|
533 |
+
itemSelector: ".premium-gallery-item",
|
534 |
+
masonry: {
|
535 |
+
columnWidth: columnWidth
|
536 |
+
},
|
537 |
+
});
|
538 |
+
|
539 |
+
});
|
540 |
+
}
|
541 |
+
|
542 |
+
|
543 |
+
var $isotopeGallery = $galleryElement.isotope({
|
544 |
+
itemSelector: ".premium-gallery-item",
|
545 |
+
percentPosition: true,
|
546 |
+
animationOptions: {
|
547 |
+
duration: 750,
|
548 |
+
easing: "linear"
|
549 |
+
},
|
550 |
+
filter: settings.active_cat,
|
551 |
+
layoutMode: layout,
|
552 |
+
originLeft: ltrMode,
|
553 |
+
masonry: {
|
554 |
+
columnWidth: columnWidth
|
555 |
+
},
|
556 |
+
sortBy: settings.sort_by
|
557 |
+
});
|
558 |
+
|
559 |
+
$isotopeGallery.imagesLoaded().progress(function () {
|
560 |
+
$isotopeGallery.isotope("layout");
|
561 |
+
});
|
562 |
+
|
563 |
+
$(document).ready(function () {
|
564 |
+
|
565 |
+
$isotopeGallery.isotope("layout");
|
566 |
+
//Make sure to filter after all images are loaded
|
567 |
+
$isotopeGallery.isotope({
|
568 |
+
filter: settings.active_cat
|
569 |
+
});
|
570 |
+
|
571 |
+
//Trigger filter tabs from differet pages
|
572 |
+
var url = new URL(window.location.href);
|
573 |
+
|
574 |
+
if (url) {
|
575 |
+
var filterIndex = url.searchParams.get(settings.flag);
|
576 |
+
|
577 |
+
if (filterIndex) {
|
578 |
+
|
579 |
+
var $targetFilter = $filters.eq(filterIndex).find("a");
|
580 |
+
|
581 |
+
$targetFilter.trigger('click');
|
582 |
+
|
583 |
+
}
|
584 |
+
|
585 |
+
}
|
586 |
+
|
587 |
+
});
|
588 |
+
|
589 |
+
if (loadMore) {
|
590 |
+
|
591 |
+
var $gradientLayer = $galleryElement.find(".premium-gallery-gradient-layer"),
|
592 |
+
gradHeight = null;
|
593 |
+
|
594 |
+
setTimeout(function () {
|
595 |
+
gradHeight = $gradientLayer.outerHeight();
|
596 |
+
}, 200);
|
597 |
+
|
598 |
+
$galleryElement.parent().find(".premium-gallery-load-more div").addClass(
|
599 |
+
"premium-gallery-item-hidden");
|
600 |
+
|
601 |
+
if ($galleryElement.find(".premium-gallery-item").length > minimum) {
|
602 |
+
|
603 |
+
$galleryElement.parent().find(".premium-gallery-load-more").removeClass(
|
604 |
+
"premium-gallery-item-hidden");
|
605 |
+
|
606 |
+
function appendItems(imagesToShow) {
|
607 |
+
|
608 |
+
var instance = $galleryElement.data("isotope");
|
609 |
+
|
610 |
+
$gradientLayer.outerHeight(gradHeight);
|
611 |
+
|
612 |
+
$galleryElement.find(".premium-gallery-item-hidden").removeClass(
|
613 |
+
"premium-gallery-item-hidden");
|
614 |
+
|
615 |
+
$galleryElement.parent().find(".premium-gallery-load-more").removeClass(
|
616 |
+
"premium-gallery-item-hidden");
|
617 |
+
|
618 |
+
var itemsToHide = instance.filteredItems.slice(imagesToShow, instance
|
619 |
+
.filteredItems.length).map(function (item) {
|
620 |
+
return item.element;
|
621 |
+
});
|
622 |
+
|
623 |
+
$(itemsToHide).addClass("premium-gallery-item-hidden");
|
624 |
+
|
625 |
+
$isotopeGallery.isotope("layout");
|
626 |
+
|
627 |
+
if (0 == itemsToHide) {
|
628 |
+
$gradientLayer.addClass("premium-gallery-item-hidden");
|
629 |
+
$galleryElement.parent().find(".premium-gallery-load-more").addClass(
|
630 |
+
"premium-gallery-item-hidden");
|
631 |
+
}
|
632 |
+
}
|
633 |
+
|
634 |
+
$galleryElement.parent().on("click", ".premium-gallery-load-less", function () {
|
635 |
+
counter = counter - imageToShow;
|
636 |
+
});
|
637 |
+
|
638 |
+
$galleryElement.parent().on("click", ".premium-gallery-load-more-btn:not(.premium-gallery-load-less)", function () {
|
639 |
+
if (isFilterClicked) {
|
640 |
+
counter = minimum;
|
641 |
+
isFilterClicked = false;
|
642 |
+
} else {
|
643 |
+
counter = counter;
|
644 |
+
}
|
645 |
+
counter = counter + imageToShow;
|
646 |
+
$.ajax({
|
647 |
+
url: appendItems(counter),
|
648 |
+
beforeSend: function () {
|
649 |
+
$galleryElement.parent().find(
|
650 |
+
".premium-gallery-load-more div").removeClass(
|
651 |
+
"premium-gallery-item-hidden");
|
652 |
+
},
|
653 |
+
success: function () {
|
654 |
+
$galleryElement.parent().find(
|
655 |
+
".premium-gallery-load-more div").addClass(
|
656 |
+
"premium-gallery-item-hidden");
|
657 |
+
}
|
658 |
+
});
|
659 |
+
});
|
660 |
+
}
|
661 |
+
}
|
662 |
+
|
663 |
+
if ("yes" !== settings.light_box) {
|
664 |
+
|
665 |
+
$galleryElement.find(".premium-gallery-video-wrap").each(function (index, item) {
|
666 |
+
var type = $(item).data("type");
|
667 |
+
$(item).closest(".premium-gallery-item").on("click", function () {
|
668 |
+
var $this = $(this);
|
669 |
+
$this.find(".pa-gallery-img-container").css("background", "#000");
|
670 |
+
|
671 |
+
$this.find("img, .pa-gallery-icons-caption-container, .pa-gallery-icons-wrapper").css("visibility", "hidden");
|
672 |
+
|
673 |
+
if ("style3" !== settings.skin)
|
674 |
+
$this.find(".premium-gallery-caption").css("visibility", "hidden");
|
675 |
+
|
676 |
+
if ("hosted" !== type) {
|
677 |
+
var $iframeWrap = $this.find(".premium-gallery-iframe-wrap"),
|
678 |
+
src = $iframeWrap.data("src");
|
679 |
+
|
680 |
+
src = src.replace("&mute", "&autoplay=1&mute");
|
681 |
+
|
682 |
+
var $iframe = $("<iframe/>");
|
683 |
+
|
684 |
+
$iframe.attr({
|
685 |
+
"src": src,
|
686 |
+
"frameborder": "0",
|
687 |
+
"allowfullscreen": "1",
|
688 |
+
"allow": "autoplay;encrypted-media;"
|
689 |
+
});
|
690 |
+
|
691 |
+
$iframeWrap.html($iframe);
|
692 |
+
|
693 |
+
$iframe.css("visibility", "visible");
|
694 |
+
} else {
|
695 |
+
var $video = $(item).find("video");
|
696 |
+
$video.get(0).play();
|
697 |
+
$video.css("visibility", "visible");
|
698 |
+
}
|
699 |
+
});
|
700 |
+
});
|
701 |
+
|
702 |
+
}
|
703 |
+
|
704 |
+
$filters.find("a").click(function (e) {
|
705 |
+
e.preventDefault();
|
706 |
+
|
707 |
+
isFilterClicked = true;
|
708 |
+
|
709 |
+
//Show category images
|
710 |
+
$filters.find(".active").removeClass("active");
|
711 |
+
$(this).addClass("active");
|
712 |
+
|
713 |
+
filter = $(this).attr("data-filter");
|
714 |
+
$isotopeGallery.isotope({
|
715 |
+
filter: filter
|
716 |
+
});
|
717 |
+
|
718 |
+
if (shuffle) $isotopeGallery.isotope("shuffle");
|
719 |
+
|
720 |
+
if (loadMore) appendItems(minimum);
|
721 |
+
|
722 |
+
return false;
|
723 |
+
});
|
724 |
+
|
725 |
+
if ("default" === settings.lightbox_type) {
|
726 |
+
|
727 |
+
$scope.find(".premium-img-gallery a[data-rel^='prettyPhoto']").prettyPhoto({
|
728 |
+
theme: settings.theme,
|
729 |
+
hook: "data-rel",
|
730 |
+
opacity: 0.7,
|
731 |
+
show_title: false,
|
732 |
+
deeplinking: false,
|
733 |
+
overlay_gallery: settings.overlay,
|
734 |
+
custom_markup: "",
|
735 |
+
default_width: 900,
|
736 |
+
default_height: 506,
|
737 |
+
social_tools: ""
|
738 |
+
});
|
739 |
+
|
740 |
+
}
|
741 |
+
};
|
742 |
+
|
743 |
+
/****** Premium Counter Handler ******/
|
744 |
+
var PremiumCounterHandler = function ($scope, $) {
|
745 |
+
|
746 |
+
var $counterElement = $scope.find(".premium-counter");
|
747 |
+
|
748 |
+
elementorFrontend.waypoint($counterElement, function () {
|
749 |
+
|
750 |
+
var counterSettings = $counterElement.data(),
|
751 |
+
incrementElement = $counterElement.find(".premium-counter-init"),
|
752 |
+
iconElement = $counterElement.find(".icon");
|
753 |
+
|
754 |
+
$(incrementElement).numerator(counterSettings);
|
755 |
+
|
756 |
+
$(iconElement).addClass("animated " + iconElement.data("animation"));
|
757 |
+
|
758 |
+
});
|
759 |
+
|
760 |
+
};
|
761 |
+
|
762 |
+
/****** Premium Fancy Text Handler ******/
|
763 |
+
var PremiumFancyTextHandler = function ($scope, $) {
|
764 |
+
|
765 |
+
var $elem = $scope.find(".premium-fancy-text-wrapper");
|
766 |
+
var settings = $elem.data("settings");
|
767 |
+
|
768 |
+
function escapeHtml(unsafe) {
|
769 |
+
return unsafe.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">").replace(
|
770 |
+
/"/g, """).replace(/'/g, "'");
|
771 |
+
}
|
772 |
+
|
773 |
+
if ("typing" === settings.effect) {
|
774 |
+
|
775 |
+
var fancyStrings = [];
|
776 |
+
settings.strings.forEach(function (item) {
|
777 |
+
fancyStrings.push(escapeHtml(item));
|
778 |
+
});
|
779 |
+
|
780 |
+
$elem.find(".premium-fancy-text").typed({
|
781 |
+
strings: fancyStrings,
|
782 |
+
typeSpeed: settings.typeSpeed,
|
783 |
+
backSpeed: settings.backSpeed,
|
784 |
+
startDelay: settings.startDelay,
|
785 |
+
backDelay: settings.backDelay,
|
786 |
+
showCursor: settings.showCursor,
|
787 |
+
cursorChar: settings.cursorChar,
|
788 |
+
loop: settings.loop
|
789 |
+
});
|
790 |
+
|
791 |
+
} else if ("slide" === settings.effect) {
|
792 |
+
|
793 |
+
$elem.find(".premium-fancy-text").vTicker({
|
794 |
+
speed: settings.speed,
|
795 |
+
showItems: settings.showItems,
|
796 |
+
pause: settings.pause,
|
797 |
+
mousePause: settings.mousePause,
|
798 |
+
direction: "up"
|
799 |
+
});
|
800 |
+
|
801 |
+
} else if ('auto-fade' === settings.effect) {
|
802 |
+
var $items = $elem.find(".premium-fancy-list-items"),
|
803 |
+
len = $items.length;
|
804 |
+
|
805 |
+
if (0 === len) {
|
806 |
+
return;
|
807 |
+
}
|
808 |
+
|
809 |
+
var delay = settings.duration / len,
|
810 |
+
itemDelay = 0;
|
811 |
+
|
812 |
+
$items.each(function ($index, $item) {
|
813 |
+
$item.style.animationDelay = itemDelay + 'ms';
|
814 |
+
itemDelay += delay;
|
815 |
+
});
|
816 |
+
|
817 |
+
} else {
|
818 |
+
|
819 |
+
setFancyAnimation();
|
820 |
+
|
821 |
+
function setFancyAnimation() {
|
822 |
+
|
823 |
+
var $item = $elem.find(".premium-fancy-list-items"),
|
824 |
+
current = 1;
|
825 |
+
|
826 |
+
//Get effect settings
|
827 |
+
var delay = settings.delay || 2500,
|
828 |
+
loopCount = settings.count;
|
829 |
+
|
830 |
+
//If Loop Count option is set
|
831 |
+
if (loopCount) {
|
832 |
+
var currentLoop = 1,
|
833 |
+
fancyStringsCount = $elem.find(".premium-fancy-list-items").length;
|
834 |
+
}
|
835 |
+
|
836 |
+
var loopInterval = setInterval(function () {
|
837 |
+
|
838 |
+
var animationClass = "";
|
839 |
+
|
840 |
+
//Add animation class
|
841 |
+
if (settings.effect === "custom")
|
842 |
+
animationClass = "animated " + settings.animation;
|
843 |
+
|
844 |
+
//Show current active item
|
845 |
+
$item.eq(current).addClass("premium-fancy-item-visible " + animationClass).removeClass("premium-fancy-item-hidden");
|
846 |
+
|
847 |
+
var $inactiveItems = $item.filter(function (index) {
|
848 |
+
return index !== current;
|
849 |
+
});
|
850 |
+
|
851 |
+
//Hide inactive items
|
852 |
+
$inactiveItems.addClass("premium-fancy-item-hidden").removeClass("premium-fancy-item-visible " + animationClass);
|
853 |
+
|
854 |
+
current++;
|
855 |
+
|
856 |
+
//Restart loop
|
857 |
+
if ($item.length === current)
|
858 |
+
current = 0;
|
859 |
+
|
860 |
+
//Increment interval and check if loop count is reached
|
861 |
+
if (loopCount) {
|
862 |
+
currentLoop++;
|
863 |
+
|
864 |
+
if ((fancyStringsCount * loopCount) === currentLoop)
|
865 |
+
clearInterval(loopInterval);
|
866 |
+
}
|
867 |
+
|
868 |
+
|
869 |
+
}, delay);
|
870 |
+
}
|
871 |
+
}
|
872 |
+
};
|
873 |
+
|
874 |
+
/****** Premium Countdown Handler ******/
|
875 |
+
var PremiumCountDownHandler = function ($scope, $) {
|
876 |
+
|
877 |
+
var $countDownElement = $scope.find(".premium-countdown"),
|
878 |
+
settings = $countDownElement.data("settings"),
|
879 |
+
id = $scope.data('id'),
|
880 |
+
label1 = settings.label1,
|
881 |
+
label2 = settings.label2,
|
882 |
+
newLabe1 = label1.split(","),
|
883 |
+
newLabel2 = label2.split(","),
|
884 |
+
timerType = settings.timerType,
|
885 |
+
until = 'evergreen' === timerType ? settings.until.date : settings.until,
|
886 |
+
layout = '',
|
887 |
+
map = {
|
888 |
+
y: { index: 0, oldVal: '' },
|
889 |
+
o: { index: 1, oldVal: '' },
|
890 |
+
w: { index: 2, oldVal: '' },
|
891 |
+
d: { index: 3, oldVal: '' },
|
892 |
+
h: { index: 4, oldVal: '' },
|
893 |
+
m: { index: 5, oldVal: '' },
|
894 |
+
s: { index: 6, oldVal: '' }
|
895 |
+
};
|
896 |
+
|
897 |
+
if ($countDownElement.find('#countdown-' + id).hasClass('premium-countdown-flip')) {
|
898 |
+
settings.format.split('').forEach(function (unit) {
|
899 |
+
var lowercased = unit.toLowerCase();
|
900 |
+
|
901 |
+
layout += '<div class="premium-countdown-block premium-countdown-' + lowercased + '"><div class="pre_time-mid"> <div class="premium-countdown-figure"><span class="top">{' + lowercased + 'nn}</span><span class="top-back"><span>{' + lowercased + 'nn}</span></span><span class="bottom">{' + lowercased + 'nn}</span><span class="bottom-back"><span>{' + lowercased + 'nn}</span></span></div><span class="premium-countdown-label">{' + lowercased + 'l}</span></div><span class="countdown_separator">{sep}</span></div>';
|
902 |
+
});
|
903 |
+
}
|
904 |
+
|
905 |
+
$countDownElement.find('#countdown-' + id).countdown({
|
906 |
+
layout: layout,
|
907 |
+
labels: newLabel2,
|
908 |
+
labels1: newLabe1,
|
909 |
+
until: new Date(until),
|
910 |
+
format: settings.format,
|
911 |
+
padZeroes: true,
|
912 |
+
timeSeparator: settings.separator,
|
913 |
+
onTick: function (periods) {
|
914 |
+
|
915 |
+
equalWidth();
|
916 |
+
|
917 |
+
if ($countDownElement.find('#countdown-' + id).hasClass('premium-countdown-flip')) {
|
918 |
+
animateFigure(periods, map);
|
919 |
+
}
|
920 |
+
},
|
921 |
+
onExpiry: function () {
|
922 |
+
if ('onExpiry' === settings.event) {
|
923 |
+
$countDownElement.find('#countdown-' + id).html(settings.text);
|
924 |
+
}
|
925 |
+
},
|
926 |
+
serverSync: function () {
|
927 |
+
return new Date(settings.serverSync);
|
928 |
+
}
|
929 |
+
});
|
930 |
+
|
931 |
+
if (settings.reset) {
|
932 |
+
$countDownElement.find('.premium-countdown-init').countdown('option', 'until', new Date(until));
|
933 |
+
}
|
934 |
+
|
935 |
+
if ('expiryUrl' === settings.event) {
|
936 |
+
$countDownElement.find('#countdown-' + id).countdown('option', 'expiryUrl', (elementorFrontend.isEditMode()) ? '' : settings.text);
|
937 |
+
}
|
938 |
+
|
939 |
+
function equalWidth() {
|
940 |
+
var width = 0;
|
941 |
+
$countDownElement.find('#countdown-' + id + ' .countdown-amount').each(function (index, slot) {
|
942 |
+
if (width < $(slot).outerWidth()) {
|
943 |
+
width = $(slot).outerWidth();
|
944 |
+
}
|
945 |
+
});
|
946 |
+
|
947 |
+
$countDownElement.find('#countdown-' + id + ' .countdown-amount').css('width', width);
|
948 |
+
}
|
949 |
+
|
950 |
+
function animateFigure(periods, map) {
|
951 |
+
settings.format.split('').forEach(function (unit) {
|
952 |
+
|
953 |
+
var lowercased = unit.toLowerCase(),
|
954 |
+
index = map[lowercased].index,
|
955 |
+
oldVal = map[lowercased].oldVal;
|
956 |
+
|
957 |
+
if (periods[index] !== oldVal) {
|
958 |
+
|
959 |
+
map[lowercased].oldVal = periods[index];
|
960 |
+
|
961 |
+
var $top = $('#countdown-' + id).find('.premium-countdown-' + lowercased + ' .top'),
|
962 |
+
$back_top = $('#countdown-' + id).find('.premium-countdown-' + lowercased + ' .top-back');
|
963 |
+
|
964 |
+
TweenMax.to($top, 0.8, {
|
965 |
+
rotationX: '-180deg',
|
966 |
+
transformPerspective: 300,
|
967 |
+
ease: Quart.easeOut,
|
968 |
+
onComplete: function () {
|
969 |
+
TweenMax.set($top, { rotationX: 0 });
|
970 |
+
}
|
971 |
+
});
|
972 |
+
|
973 |
+
TweenMax.to($back_top, 0.8, {
|
974 |
+
rotationX: 0,
|
975 |
+
transformPerspective: 300,
|
976 |
+
ease: Quart.easeOut,
|
977 |
+
clearProps: 'all'
|
978 |
+
});
|
979 |
+
}
|
980 |
+
});
|
981 |
+
}
|
982 |
+
|
983 |
+
times = $countDownElement.find('#countdown-' + id).countdown("getTimes");
|
984 |
+
|
985 |
+
function runTimer(el) {
|
986 |
+
return el == 0;
|
987 |
+
}
|
988 |
+
|
989 |
+
if (times.every(runTimer)) {
|
990 |
+
|
991 |
+
if ('onExpiry' === settings.event) {
|
992 |
+
$countDownElement.find('#countdown-' + id).html(settings.text);
|
993 |
+
} else if ('expiryUrl' === settings.event && !elementorFrontend.isEditMode()) {
|
994 |
+
var editMode = $('body').find('#elementor').length;
|
995 |
+
if (0 < editMode) {
|
996 |
+
$countDownElement.find('#countdown-' + id).html(
|
997 |
+
"<h1>You can not redirect url from elementor Editor!!</h1>");
|
998 |
+
} else {
|
999 |
+
if (!elementorFrontend.isEditMode()) {
|
1000 |
+
window.location.href = settings.text;
|
1001 |
+
}
|
1002 |
+
}
|
1003 |
+
|
1004 |
+
}
|
1005 |
+
}
|
1006 |
+
|
1007 |
+
};
|
1008 |
+
|
1009 |
+
/****** Premium Carousel Handler ******/
|
1010 |
+
var PremiumCarouselHandler = function ($scope, $) {
|
1011 |
+
|
1012 |
+
var $carouselElem = $scope.find(".premium-carousel-wrapper"),
|
1013 |
+
settings = $($carouselElem).data("settings"),
|
1014 |
+
isEdit = elementorFrontend.isEditMode();
|
1015 |
+
|
1016 |
+
function slideToShow(slick) {
|
1017 |
+
|
1018 |
+
var slidesToShow = slick.options.slidesToShow,
|
1019 |
+
windowWidth = $(window).width();
|
1020 |
+
if (windowWidth > settings.tabletBreak) {
|
1021 |
+
slidesToShow = settings.slidesDesk;
|
1022 |
+
}
|
1023 |
+
if (windowWidth <= settings.tabletBreak) {
|
1024 |
+
slidesToShow = settings.slidesTab;
|
1025 |
+
}
|
1026 |
+
if (windowWidth <= settings.mobileBreak) {
|
1027 |
+
slidesToShow = settings.slidesMob;
|
1028 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|