Version Description
- Added: Add New Settings
- Added: EDD Isotope layout added for shortcode
- Fixed: Responsive issue fixed for List layout - Elementor
- Fixed: Full Excerpt not showing in mobile
- Fixed: Field Selection default value conflict
- Fixed: List layout for Elementor responsive issue fixed
- Fixed: WooCommerce pagination fix
- Fixed: WooCommerce popup slider fix
- Fixed: Gutenberg block style fix
- Improved: Merge and minify all css and improved assets loading
Download this release
Release Info
Developer | techlabpro1 |
Plugin | The Post Grid |
Version | 4.1.0 |
Comparing to | |
See all releases |
Code changes from version 4.0.5 to 4.1.0
- README.txt +14 -1
- app/Controllers/Admin/MetaController.php +7 -1
- app/Controllers/Admin/NoticeController.php +42 -13
- app/Controllers/Admin/PostTypeController.php +4 -4
- app/Controllers/Admin/UpgradeController.php +2 -2
- app/Controllers/ElementorController.php +19 -33
- app/Controllers/Hooks/FilterHooks.php +12 -0
- app/Controllers/ScriptController.php +196 -23
- app/Controllers/ShortcodeController.php +122 -52
- app/Helpers/Fns.php +45 -28
- app/Helpers/Install.php +9 -1
- app/Helpers/Options.php +92 -46
- app/RtTpg.php +36 -30
- app/Widgets/elementor/base.php +0 -1
- app/Widgets/elementor/rtTPGElementorHelper.php +103 -22
- app/Widgets/elementor/widgets/grid-hover-layout-archive.php +38 -2
- app/Widgets/elementor/widgets/grid-hover-layout.php +61 -7
- app/Widgets/elementor/widgets/grid-layout-archive.php +36 -2
- app/Widgets/elementor/widgets/grid-layout.php +57 -9
- app/Widgets/elementor/widgets/list-layout-archive.php +36 -2
- app/Widgets/elementor/widgets/list-layout.php +41 -2
- app/Widgets/elementor/widgets/related-post.php +36 -0
- app/Widgets/elementor/widgets/slider-layout-archive.php +40 -3
- app/Widgets/elementor/widgets/slider-layout.php +41 -20
- assets/css/{admin-preview.css → admin/admin-preview.css} +1 -2
- assets/css/{admin.css → admin/admin.css} +63 -3
- assets/css/{tpg-el-editor.css → admin/tpg-el-editor.css} +46 -54
- assets/css/rt-tpg-common-rtl.css +0 -2570
- assets/css/rt-tpg-common.css +0 -2570
- assets/css/thepostgrid-rtl.css +0 -1419
- assets/css/thepostgrid.css +0 -1419
- assets/css/thepostgrid.min.css +1 -0
- assets/css/thepostgrid.rtl.min.css +1 -0
- assets/css/tpg-elementor-rtl.css +0 -3284
- assets/css/tpg-elementor.css +0 -3284
- assets/css/tpg-elementor.min.css +1 -0
- assets/css/tpg-elementor.rtl.min.css +1 -0
- assets/css/tpg-shortcode.min.css +1 -0
- assets/css/tpg-shortcode.rtl.min.css +1 -0
README.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link:
|
|
4 |
Tags: post grid, content grid, post display, post slider, post grid elementor addon
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 5.9.3
|
7 |
-
Stable tag: 4.0
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -363,6 +363,19 @@ With the Post Grid PRO, you get to use the Single Page Builder, which is based o
|
|
363 |
|
364 |
== Changelog ==
|
365 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
366 |
= 4.0.5 =
|
367 |
* Fixed: Shortcode Taxonomy filter bug fixed
|
368 |
|
4 |
Tags: post grid, content grid, post display, post slider, post grid elementor addon
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 5.9.3
|
7 |
+
Stable tag: 4.1.0
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
363 |
|
364 |
== Changelog ==
|
365 |
|
366 |
+
= 4.1.0 =
|
367 |
+
* Added: Add New Settings
|
368 |
+
* Added: EDD Isotope layout added for shortcode
|
369 |
+
* Fixed: Responsive issue fixed for List layout - Elementor
|
370 |
+
* Fixed: Full Excerpt not showing in mobile
|
371 |
+
* Fixed: Field Selection default value conflict
|
372 |
+
* Fixed: List layout for Elementor responsive issue fixed
|
373 |
+
* Fixed: WooCommerce pagination fix
|
374 |
+
* Fixed: WooCommerce popup slider fix
|
375 |
+
* Fixed: Gutenberg block style fix
|
376 |
+
* Improved: Merge and minify all css and improved assets loading
|
377 |
+
|
378 |
+
|
379 |
= 4.0.5 =
|
380 |
* Fixed: Shortcode Taxonomy filter bug fixed
|
381 |
|
app/Controllers/Admin/MetaController.php
CHANGED
@@ -35,12 +35,18 @@ class MetaController {
|
|
35 |
}
|
36 |
|
37 |
function admin_enqueue_scripts() {
|
|
|
38 |
global $pagenow, $typenow;
|
39 |
|
|
|
|
|
|
|
|
|
40 |
// validate page
|
41 |
if ( ! in_array( $pagenow, array( 'post.php', 'post-new.php' ) ) ) {
|
42 |
return;
|
43 |
}
|
|
|
44 |
if ( $typenow != rtTPG()->post_type ) {
|
45 |
return;
|
46 |
}
|
@@ -63,7 +69,7 @@ class MetaController {
|
|
63 |
'jquery-ui-datepicker',
|
64 |
'wp-color-picker',
|
65 |
$select2Id,
|
66 |
-
'
|
67 |
'rt-isotope-js',
|
68 |
'rt-tpg-admin',
|
69 |
'rt-tpg-admin-preview',
|
35 |
}
|
36 |
|
37 |
function admin_enqueue_scripts() {
|
38 |
+
|
39 |
global $pagenow, $typenow;
|
40 |
|
41 |
+
if ( $typenow == 'tpg_builder' ) {
|
42 |
+
wp_enqueue_style( 'rt-tpg-admin' );
|
43 |
+
}
|
44 |
+
|
45 |
// validate page
|
46 |
if ( ! in_array( $pagenow, array( 'post.php', 'post-new.php' ) ) ) {
|
47 |
return;
|
48 |
}
|
49 |
+
|
50 |
if ( $typenow != rtTPG()->post_type ) {
|
51 |
return;
|
52 |
}
|
69 |
'jquery-ui-datepicker',
|
70 |
'wp-color-picker',
|
71 |
$select2Id,
|
72 |
+
'imagesloaded',
|
73 |
'rt-isotope-js',
|
74 |
'rt-tpg-admin',
|
75 |
'rt-tpg-admin-preview',
|
app/Controllers/Admin/NoticeController.php
CHANGED
@@ -17,7 +17,36 @@ class NoticeController {
|
|
17 |
add_action( 'admin_init', [ __CLASS__, 'rttpg_spare_me' ], 5 );
|
18 |
}
|
19 |
|
|
|
|
|
|
|
|
|
|
|
20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
}
|
22 |
|
23 |
public static function black_friday_notice() {
|
@@ -41,7 +70,7 @@ class NoticeController {
|
|
41 |
<div class="notice notice-info is-dismissible" data-rttpg-dismissable="rttpg_bf_2021"
|
42 |
style="display:grid;grid-template-columns: 100px auto;padding-top: 25px; padding-bottom: 22px;">
|
43 |
<img alt="<?php echo esc_attr( $plugin_name ) ?>"
|
44 |
-
src="<?php echo rtTPG()->get_assets_uri('images/icon-128x128.png'); ?>" width="74px"
|
45 |
height="74px" style="grid-row: 1 / 4; align-self: center;justify-self: center"/>
|
46 |
<h3 style="margin:0;"><?php echo sprintf( '%s Black Friday Deal!!', $plugin_name ) ?></h3>
|
47 |
<p style="margin:0 0 2px;">Don't miss out on our biggest sale of the year! Get your
|
@@ -61,21 +90,21 @@ class NoticeController {
|
|
61 |
add_action( 'admin_footer', function () {
|
62 |
?>
|
63 |
<script type="text/javascript">
|
64 |
-
(function ($) {
|
65 |
-
$(function () {
|
66 |
-
setTimeout(function () {
|
67 |
-
$('div[data-rttpg-dismissable] .notice-dismiss, div[data-rttpg-dismissable] .button-dismiss')
|
68 |
-
.on('click', function (e) {
|
69 |
e.preventDefault();
|
70 |
-
$.post(ajaxurl, {
|
71 |
'action': 'rttpg_dismiss_admin_notice',
|
72 |
'nonce': <?php echo json_encode( wp_create_nonce( 'rttpg-dismissible-notice' ) ); ?>
|
73 |
-
});
|
74 |
-
$(e.target).closest('.is-dismissible').remove();
|
75 |
-
});
|
76 |
-
}, 1000);
|
77 |
-
});
|
78 |
-
})(jQuery);
|
79 |
</script>
|
80 |
<?php
|
81 |
} );
|
17 |
add_action( 'admin_init', [ __CLASS__, 'rttpg_spare_me' ], 5 );
|
18 |
}
|
19 |
|
20 |
+
add_action( 'admin_init', [ __CLASS__, 'rttpg_notice' ] );
|
21 |
+
}
|
22 |
+
|
23 |
+
public static function rttpg_notice() {
|
24 |
+
|
25 |
|
26 |
+
add_action( 'admin_notices', function () {
|
27 |
+
$settings = get_option( 'rt_the_post_grid_settings' );
|
28 |
+
$screen = get_current_screen();
|
29 |
+
|
30 |
+
if ( in_array( $screen->id, [ 'edit-rttpg', 'rttpg' ] ) && $settings['tpg_block_type'] == 'elementor' ) {?>
|
31 |
+
<div class="notice notice-for-warning">
|
32 |
+
<p>
|
33 |
+
You have selected only Elementor method. To use Shortcode Generator please enable shortcode or default from <a style="color: #fff;" href="<?php echo esc_url(admin_url('edit.php?post_type=rttpg&page=rttpg_settings')) ?>">Settings => Common Settings => Resource Load Type</a>
|
34 |
+
</p>
|
35 |
+
</div>
|
36 |
+
<?php
|
37 |
+
}
|
38 |
+
|
39 |
+
if ( $screen->id == 'edit-tpg_builder' && $settings['tpg_block_type'] == 'shortcode' ) {
|
40 |
+
?>
|
41 |
+
<div class="notice notice-for-warning">
|
42 |
+
<p>
|
43 |
+
You have selected only Shortcode Generator method. To use Elementor please enable Elementor or default from <a style="color: #fff;" href="<?php echo esc_url(admin_url('edit.php?post_type=rttpg&page=rttpg_settings§ion=common-settings')) ?>">Settings => Common Settings => Resource Load Type</a>
|
44 |
+
</p>
|
45 |
+
</div>
|
46 |
+
<?php
|
47 |
+
}
|
48 |
+
|
49 |
+
} );
|
50 |
}
|
51 |
|
52 |
public static function black_friday_notice() {
|
70 |
<div class="notice notice-info is-dismissible" data-rttpg-dismissable="rttpg_bf_2021"
|
71 |
style="display:grid;grid-template-columns: 100px auto;padding-top: 25px; padding-bottom: 22px;">
|
72 |
<img alt="<?php echo esc_attr( $plugin_name ) ?>"
|
73 |
+
src="<?php echo rtTPG()->get_assets_uri( 'images/icon-128x128.png' ); ?>" width="74px"
|
74 |
height="74px" style="grid-row: 1 / 4; align-self: center;justify-self: center"/>
|
75 |
<h3 style="margin:0;"><?php echo sprintf( '%s Black Friday Deal!!', $plugin_name ) ?></h3>
|
76 |
<p style="margin:0 0 2px;">Don't miss out on our biggest sale of the year! Get your
|
90 |
add_action( 'admin_footer', function () {
|
91 |
?>
|
92 |
<script type="text/javascript">
|
93 |
+
( function ( $ ) {
|
94 |
+
$( function () {
|
95 |
+
setTimeout( function () {
|
96 |
+
$( 'div[data-rttpg-dismissable] .notice-dismiss, div[data-rttpg-dismissable] .button-dismiss' )
|
97 |
+
.on( 'click', function ( e ) {
|
98 |
e.preventDefault();
|
99 |
+
$.post( ajaxurl, {
|
100 |
'action': 'rttpg_dismiss_admin_notice',
|
101 |
'nonce': <?php echo json_encode( wp_create_nonce( 'rttpg-dismissible-notice' ) ); ?>
|
102 |
+
} );
|
103 |
+
$( e.target ).closest( '.is-dismissible' ).remove();
|
104 |
+
} );
|
105 |
+
}, 1000 );
|
106 |
+
} );
|
107 |
+
} )( jQuery );
|
108 |
</script>
|
109 |
<?php
|
110 |
} );
|
app/Controllers/Admin/PostTypeController.php
CHANGED
@@ -3,11 +3,8 @@
|
|
3 |
|
4 |
namespace RT\ThePostGrid\Controllers\Admin;
|
5 |
|
6 |
-
|
7 |
class PostTypeController {
|
8 |
|
9 |
-
|
10 |
-
|
11 |
public function __construct() {
|
12 |
add_action( 'init', [ &$this, 'register_post_types' ], 1 );
|
13 |
add_action( 'admin_init', [ &$this, 'the_post_grid_remove_all_meta_box' ], 9999 );
|
@@ -24,11 +21,12 @@ class PostTypeController {
|
|
24 |
|
25 |
if ( get_option( 'rttpg_activation_redirect', false ) ) {
|
26 |
delete_option( 'rttpg_activation_redirect' );
|
27 |
-
wp_redirect( admin_url( 'edit.php?post_type=rttpg&page=
|
28 |
}
|
29 |
}
|
30 |
|
31 |
public function register_post_types() {
|
|
|
32 |
// Create the post grid post type
|
33 |
$labels = [
|
34 |
'name' => __( 'The Post Grid', 'the-post-grid' ),
|
@@ -61,6 +59,8 @@ class PostTypeController {
|
|
61 |
'show_in_menu' => true,
|
62 |
'menu_position' => 20,
|
63 |
] );
|
|
|
|
|
64 |
}
|
65 |
|
66 |
|
3 |
|
4 |
namespace RT\ThePostGrid\Controllers\Admin;
|
5 |
|
|
|
6 |
class PostTypeController {
|
7 |
|
|
|
|
|
8 |
public function __construct() {
|
9 |
add_action( 'init', [ &$this, 'register_post_types' ], 1 );
|
10 |
add_action( 'admin_init', [ &$this, 'the_post_grid_remove_all_meta_box' ], 9999 );
|
21 |
|
22 |
if ( get_option( 'rttpg_activation_redirect', false ) ) {
|
23 |
delete_option( 'rttpg_activation_redirect' );
|
24 |
+
wp_redirect( admin_url( 'edit.php?post_type=rttpg&page=rttpg_settings§ion=common-settings' ) );
|
25 |
}
|
26 |
}
|
27 |
|
28 |
public function register_post_types() {
|
29 |
+
|
30 |
// Create the post grid post type
|
31 |
$labels = [
|
32 |
'name' => __( 'The Post Grid', 'the-post-grid' ),
|
59 |
'show_in_menu' => true,
|
60 |
'menu_position' => 20,
|
61 |
] );
|
62 |
+
|
63 |
+
|
64 |
}
|
65 |
|
66 |
|
app/Controllers/Admin/UpgradeController.php
CHANGED
@@ -6,14 +6,14 @@ namespace RT\ThePostGrid\Controllers\Admin;
|
|
6 |
class UpgradeController {
|
7 |
|
8 |
public static function check_plugin_version() {
|
9 |
-
if ( version_compare( RT_TPG_PRO_VERSION, '5', '<' ) ) {
|
10 |
add_action( 'admin_notices',
|
11 |
function () {
|
12 |
$class = 'notice notice-error';
|
13 |
$text = esc_html__( 'The Post Grid Pro', 'the-post-grid' );
|
14 |
$link_pro = 'https://www.radiustheme.com/downloads/the-post-grid-pro-for-wordpress/';
|
15 |
|
16 |
-
printf( '<div class="%1$s"><p><a target="_blank" href="%2$s"><strong>The Post Grid Pro</strong></a> is not working, You need to update <strong>%3$s</strong> version to 5.
|
17 |
$class,
|
18 |
$link_pro,
|
19 |
$text );
|
6 |
class UpgradeController {
|
7 |
|
8 |
public static function check_plugin_version() {
|
9 |
+
if ( version_compare( RT_TPG_PRO_VERSION, '5.1.0', '<' ) ) {
|
10 |
add_action( 'admin_notices',
|
11 |
function () {
|
12 |
$class = 'notice notice-error';
|
13 |
$text = esc_html__( 'The Post Grid Pro', 'the-post-grid' );
|
14 |
$link_pro = 'https://www.radiustheme.com/downloads/the-post-grid-pro-for-wordpress/';
|
15 |
|
16 |
+
printf( '<div class="%1$s"><p><a target="_blank" href="%2$s"><strong>The Post Grid Pro</strong></a> is not working properly, You need to update <strong>%3$s</strong> version to 5.1.0 or more to get the pro features.</p></div>',
|
17 |
$class,
|
18 |
$link_pro,
|
19 |
$text );
|
app/Controllers/ElementorController.php
CHANGED
@@ -24,23 +24,19 @@ if ( ! class_exists( 'ElementorController' ) ):
|
|
24 |
add_action( 'elementor/elements/categories_registered', [ $this, 'widget_category' ] );
|
25 |
//add_action( 'elementor/editor/after_enqueue_styles', [ $this, 'editor_style' ] );
|
26 |
add_action( 'elementor/editor/after_enqueue_scripts', [ $this, 'el_editor_script' ] );
|
27 |
-
add_action( '
|
28 |
add_action( 'wp_enqueue_scripts', [ $this, 'tpg_el_style' ] );
|
29 |
-
add_action( "elementor/frontend/after_enqueue_scripts", [ $this, 'tpg_frontend_scripts' ] );
|
30 |
add_filter( 'elementor/editor/localize_settings', [ $this, 'promotePremiumWidgets' ] );
|
31 |
}
|
32 |
}
|
33 |
|
34 |
public function tpg_frontend_scripts() {
|
35 |
//wp_enqueue_script( 'imagesloaded' );
|
36 |
-
wp_enqueue_script( 'tpg-el-script', rtTPG()->get_assets_uri( 'js/el-frontend.js' ), [ 'jquery' ], $this->version, true );
|
37 |
}
|
38 |
|
39 |
public function tpg_el_style() {
|
40 |
-
wp_enqueue_style( 'rt-fontawsome' );
|
41 |
-
wp_enqueue_style( 'rt-tpg-common' );
|
42 |
-
wp_enqueue_style( 'rt-tpg-elementor' );
|
43 |
-
|
44 |
//Custom CSS From Settings
|
45 |
$css = isset( $settings['custom_css'] ) ? stripslashes( $settings['custom_css'] ) : null;
|
46 |
if ( $css ) {
|
@@ -49,34 +45,24 @@ if ( ! class_exists( 'ElementorController' ) ):
|
|
49 |
}
|
50 |
|
51 |
public function tpg_el_scripts() {
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
} else {
|
66 |
-
$ajaxurl .= admin_url( 'admin-ajax.php' );
|
67 |
-
}
|
68 |
-
$variables = [
|
69 |
-
'nonceID' => rtTPG()->nonceId(),
|
70 |
-
'nonce' => wp_create_nonce( rtTPG()->nonceText() ),
|
71 |
-
'ajaxurl' => $ajaxurl,
|
72 |
-
];
|
73 |
-
wp_localize_script( 'rt-tpg', 'rttpg', $variables );
|
74 |
-
} );
|
75 |
}
|
76 |
|
77 |
public function el_editor_script() {
|
78 |
wp_enqueue_script( 'tgp-el-editor-scripts', rtTPG()->get_assets_uri( 'js/tpg-el-editor.js' ), [ 'jquery' ], $this->version, true );
|
79 |
-
wp_enqueue_style( 'tgp-el-editor-style', rtTPG()->get_assets_uri( 'css/tpg-el-editor.css' ), [], $this->version );
|
80 |
}
|
81 |
|
82 |
public function editor_style() {
|
@@ -84,7 +70,7 @@ if ( ! class_exists( 'ElementorController' ) ):
|
|
84 |
wp_add_inline_style( 'elementor-editor', $css );
|
85 |
}
|
86 |
|
87 |
-
public function init_widgets($widgets_manager) {
|
88 |
require_once( RT_THE_POST_GRID_PLUGIN_PATH . '/app/Widgets/elementor/base.php' );
|
89 |
require_once( RT_THE_POST_GRID_PLUGIN_PATH . '/app/Widgets/elementor/rtTPGElementorHelper.php' );
|
90 |
|
@@ -119,7 +105,7 @@ if ( ! class_exists( 'ElementorController' ) ):
|
|
119 |
|
120 |
public function widget_category( $elements_manager ) {
|
121 |
$categories['tpg-elementor-builder-widgets'] = [
|
122 |
-
'title' => __( 'TPG
|
123 |
'icon' => 'fa fa-plug',
|
124 |
];
|
125 |
|
24 |
add_action( 'elementor/elements/categories_registered', [ $this, 'widget_category' ] );
|
25 |
//add_action( 'elementor/editor/after_enqueue_styles', [ $this, 'editor_style' ] );
|
26 |
add_action( 'elementor/editor/after_enqueue_scripts', [ $this, 'el_editor_script' ] );
|
27 |
+
add_action( 'wp_footer', [ $this, 'tpg_el_scripts' ] );
|
28 |
add_action( 'wp_enqueue_scripts', [ $this, 'tpg_el_style' ] );
|
29 |
+
//add_action( "elementor/frontend/after_enqueue_scripts", [ $this, 'tpg_frontend_scripts' ] );
|
30 |
add_filter( 'elementor/editor/localize_settings', [ $this, 'promotePremiumWidgets' ] );
|
31 |
}
|
32 |
}
|
33 |
|
34 |
public function tpg_frontend_scripts() {
|
35 |
//wp_enqueue_script( 'imagesloaded' );
|
36 |
+
//wp_enqueue_script( 'tpg-el-script', rtTPG()->get_assets_uri( 'js/el-frontend.js' ), [ 'jquery' ], $this->version, true );
|
37 |
}
|
38 |
|
39 |
public function tpg_el_style() {
|
|
|
|
|
|
|
|
|
40 |
//Custom CSS From Settings
|
41 |
$css = isset( $settings['custom_css'] ) ? stripslashes( $settings['custom_css'] ) : null;
|
42 |
if ( $css ) {
|
45 |
}
|
46 |
|
47 |
public function tpg_el_scripts() {
|
48 |
+
|
49 |
+
$ajaxurl = '';
|
50 |
+
if ( in_array( 'sitepress-multilingual-cms/sitepress.php', get_option( 'active_plugins' ) ) ) {
|
51 |
+
$ajaxurl .= admin_url( 'admin-ajax.php?lang=' . ICL_LANGUAGE_CODE );
|
52 |
+
} else {
|
53 |
+
$ajaxurl .= admin_url( 'admin-ajax.php' );
|
54 |
+
}
|
55 |
+
$variables = [
|
56 |
+
'nonceID' => rtTPG()->nonceId(),
|
57 |
+
'nonce' => wp_create_nonce( rtTPG()->nonceText() ),
|
58 |
+
'ajaxurl' => $ajaxurl,
|
59 |
+
];
|
60 |
+
wp_localize_script( 'rt-tpg', 'rttpg', $variables );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
}
|
62 |
|
63 |
public function el_editor_script() {
|
64 |
wp_enqueue_script( 'tgp-el-editor-scripts', rtTPG()->get_assets_uri( 'js/tpg-el-editor.js' ), [ 'jquery' ], $this->version, true );
|
65 |
+
wp_enqueue_style( 'tgp-el-editor-style', rtTPG()->get_assets_uri( 'css/admin/tpg-el-editor.css' ), [], $this->version );
|
66 |
}
|
67 |
|
68 |
public function editor_style() {
|
70 |
wp_add_inline_style( 'elementor-editor', $css );
|
71 |
}
|
72 |
|
73 |
+
public function init_widgets( $widgets_manager ) {
|
74 |
require_once( RT_THE_POST_GRID_PLUGIN_PATH . '/app/Widgets/elementor/base.php' );
|
75 |
require_once( RT_THE_POST_GRID_PLUGIN_PATH . '/app/Widgets/elementor/rtTPGElementorHelper.php' );
|
76 |
|
105 |
|
106 |
public function widget_category( $elements_manager ) {
|
107 |
$categories['tpg-elementor-builder-widgets'] = [
|
108 |
+
'title' => __( 'TPG Template Builder Element', 'the-post-grid' ),
|
109 |
'icon' => 'fa fa-plug',
|
110 |
];
|
111 |
|
app/Controllers/Hooks/FilterHooks.php
CHANGED
@@ -16,6 +16,18 @@ class FilterHooks {
|
|
16 |
add_filter( 'the_content', [ __CLASS__, 'tpg_acf_content_filter' ] );
|
17 |
}
|
18 |
add_filter( 'wp_head', [ __CLASS__, 'set_post_view_count' ], 9999 );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
}
|
20 |
|
21 |
|
16 |
add_filter( 'the_content', [ __CLASS__, 'tpg_acf_content_filter' ] );
|
17 |
}
|
18 |
add_filter( 'wp_head', [ __CLASS__, 'set_post_view_count' ], 9999 );
|
19 |
+
add_filter( 'admin_body_class', [ __CLASS__, 'admin_body_class' ] );
|
20 |
+
}
|
21 |
+
|
22 |
+
|
23 |
+
public static function admin_body_class($clsses){
|
24 |
+
$settings = get_option('rt_the_post_grid_settings');
|
25 |
+
|
26 |
+
if( isset($settings['tpg_block_type']) && in_array($settings['tpg_block_type'], ['elementor', 'shortcode']) ) {
|
27 |
+
$clsses .= 'tpg-block-type-elementor-or-shortcode';
|
28 |
+
}
|
29 |
+
|
30 |
+
return $clsses;
|
31 |
}
|
32 |
|
33 |
|
app/Controllers/ScriptController.php
CHANGED
@@ -1,30 +1,35 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
|
4 |
namespace RT\ThePostGrid\Controllers;
|
5 |
|
6 |
-
|
7 |
class ScriptController {
|
8 |
|
9 |
private $version;
|
|
|
10 |
|
11 |
public function __construct() {
|
12 |
$this->version = defined( 'WP_DEBUG' ) && WP_DEBUG ? time() : RT_THE_POST_GRID_VERSION;
|
13 |
add_action( 'wp_head', [ &$this, 'header_scripts' ] );
|
14 |
add_action( 'wp_enqueue_scripts', [ &$this, 'enqueue' ] );
|
15 |
add_action( 'init', [ $this, 'init' ] );
|
|
|
16 |
}
|
17 |
|
18 |
public function init() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
// register scripts
|
20 |
-
$scripts
|
21 |
-
$styles
|
22 |
-
|
23 |
-
|
24 |
-
'src' => rtTPG()->get_assets_uri( "vendor/isotope/imagesloaded.pkgd.min.js" ),
|
25 |
-
'deps' => [ 'jquery' ],
|
26 |
-
'footer' => true,
|
27 |
-
];
|
28 |
$scripts[] = [
|
29 |
'handle' => 'rt-isotope-js',
|
30 |
'src' => rtTPG()->get_assets_uri( "vendor/isotope/isotope.pkgd.min.js" ),
|
@@ -40,10 +45,14 @@ class ScriptController {
|
|
40 |
];
|
41 |
|
42 |
// register acf styles
|
43 |
-
$styles['rt-fontawsome']
|
|
|
|
|
|
|
44 |
$styles['rt-tpg'] = rtTPG()->tpg_can_be_rtl( 'css/thepostgrid' );
|
45 |
-
$styles['rt-tpg-common'] = rtTPG()->tpg_can_be_rtl( 'css/rt-tpg-common' );
|
46 |
$styles['rt-tpg-elementor'] = rtTPG()->tpg_can_be_rtl( 'css/tpg-elementor' );
|
|
|
|
|
47 |
|
48 |
if ( is_admin() ) {
|
49 |
$scripts[] = [
|
@@ -55,7 +64,7 @@ class ScriptController {
|
|
55 |
$scripts[] = [
|
56 |
'handle' => 'rt-tpg-admin',
|
57 |
'src' => rtTPG()->get_assets_uri( 'js/admin.js' ),
|
58 |
-
'deps' => [ 'jquery' ],
|
59 |
'footer' => true,
|
60 |
];
|
61 |
$scripts[] = [
|
@@ -65,8 +74,8 @@ class ScriptController {
|
|
65 |
'footer' => true,
|
66 |
];
|
67 |
$styles['rt-select2'] = rtTPG()->get_assets_uri( 'vendor/select2/select2.min.css' );
|
68 |
-
$styles['rt-tpg-admin'] = rtTPG()->get_assets_uri( 'css/admin.css' );
|
69 |
-
$styles['rt-tpg-admin-preview'] = rtTPG()->get_assets_uri( 'css/admin-preview.css' );
|
70 |
}
|
71 |
|
72 |
foreach ( $scripts as $script ) {
|
@@ -79,15 +88,25 @@ class ScriptController {
|
|
79 |
}
|
80 |
|
81 |
public function enqueue() {
|
82 |
-
|
|
|
83 |
|
84 |
-
if ( ! isset( $settings['tpg_load_script'] ) ) {
|
85 |
-
wp_enqueue_style( 'rt-
|
86 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
}
|
88 |
-
|
89 |
-
$
|
90 |
-
$
|
|
|
91 |
$script = "(function($){
|
92 |
$('.rt-tpg-container').on('tpg_item_before_load', function(){{$scriptBefore}});
|
93 |
$('.rt-tpg-container').on('tpg_item_after_load', function(){{$scriptAfter}});
|
@@ -100,7 +119,161 @@ class ScriptController {
|
|
100 |
* Header Scripts
|
101 |
*/
|
102 |
public function header_scripts() {
|
103 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
}
|
105 |
|
106 |
}
|
1 |
<?php
|
2 |
|
|
|
3 |
namespace RT\ThePostGrid\Controllers;
|
4 |
|
|
|
5 |
class ScriptController {
|
6 |
|
7 |
private $version;
|
8 |
+
private $settings;
|
9 |
|
10 |
public function __construct() {
|
11 |
$this->version = defined( 'WP_DEBUG' ) && WP_DEBUG ? time() : RT_THE_POST_GRID_VERSION;
|
12 |
add_action( 'wp_head', [ &$this, 'header_scripts' ] );
|
13 |
add_action( 'wp_enqueue_scripts', [ &$this, 'enqueue' ] );
|
14 |
add_action( 'init', [ $this, 'init' ] );
|
15 |
+
|
16 |
}
|
17 |
|
18 |
public function init() {
|
19 |
+
|
20 |
+
$this->settings = get_option( rtTPG()->options['settings'] );
|
21 |
+
|
22 |
+
$current_page = isset( $_GET["page"] ) ? $_GET["page"] : '';
|
23 |
+
if ( 'rttpg_settings' == $current_page ) {
|
24 |
+
wp_enqueue_style( 'wp-color-picker' );
|
25 |
+
wp_enqueue_script( 'wp-color-picker' );
|
26 |
+
}
|
27 |
+
|
28 |
// register scripts
|
29 |
+
$scripts = [];
|
30 |
+
$styles = [];
|
31 |
+
|
32 |
+
|
|
|
|
|
|
|
|
|
33 |
$scripts[] = [
|
34 |
'handle' => 'rt-isotope-js',
|
35 |
'src' => rtTPG()->get_assets_uri( "vendor/isotope/isotope.pkgd.min.js" ),
|
45 |
];
|
46 |
|
47 |
// register acf styles
|
48 |
+
$styles['rt-fontawsome'] = rtTPG()->get_assets_uri( 'vendor/font-awesome/css/font-awesome.min.css' );
|
49 |
+
|
50 |
+
|
51 |
+
//Plugin specific css
|
52 |
$styles['rt-tpg'] = rtTPG()->tpg_can_be_rtl( 'css/thepostgrid' );
|
|
|
53 |
$styles['rt-tpg-elementor'] = rtTPG()->tpg_can_be_rtl( 'css/tpg-elementor' );
|
54 |
+
$styles['rt-tpg-shortcode'] = rtTPG()->tpg_can_be_rtl( 'css/tpg-shortcode' );
|
55 |
+
|
56 |
|
57 |
if ( is_admin() ) {
|
58 |
$scripts[] = [
|
64 |
$scripts[] = [
|
65 |
'handle' => 'rt-tpg-admin',
|
66 |
'src' => rtTPG()->get_assets_uri( 'js/admin.js' ),
|
67 |
+
'deps' => [ 'jquery', 'wp-color-picker' ],
|
68 |
'footer' => true,
|
69 |
];
|
70 |
$scripts[] = [
|
74 |
'footer' => true,
|
75 |
];
|
76 |
$styles['rt-select2'] = rtTPG()->get_assets_uri( 'vendor/select2/select2.min.css' );
|
77 |
+
$styles['rt-tpg-admin'] = rtTPG()->get_assets_uri( 'css/admin/admin.css' );
|
78 |
+
$styles['rt-tpg-admin-preview'] = rtTPG()->get_assets_uri( 'css/admin/admin-preview.css' );
|
79 |
}
|
80 |
|
81 |
foreach ( $scripts as $script ) {
|
88 |
}
|
89 |
|
90 |
public function enqueue() {
|
91 |
+
wp_enqueue_script( 'jquery' );
|
92 |
+
$block_type = isset( $this->settings['tpg_block_type'] ) ? $this->settings['tpg_block_type'] : 'default';
|
93 |
|
94 |
+
if ( ! isset( $this->settings['tpg_load_script'] ) ) {
|
95 |
+
wp_enqueue_style( 'rt-fontawsome' );
|
96 |
+
if ( 'default' == $block_type ) {
|
97 |
+
wp_enqueue_style( 'rt-tpg' );
|
98 |
+
}
|
99 |
+
if ( 'elementor' == $block_type ) {
|
100 |
+
wp_enqueue_style( 'rt-tpg-elementor' );
|
101 |
+
}
|
102 |
+
if ( 'shortcode' == $block_type ) {
|
103 |
+
wp_enqueue_style( 'rt-tpg-shortcode' );
|
104 |
+
}
|
105 |
}
|
106 |
+
|
107 |
+
$scriptBefore = isset( $this->settings['script_before_item_load'] ) ? stripslashes( $this->settings['script_before_item_load'] ) : null;
|
108 |
+
$scriptAfter = isset( $this->settings['script_after_item_load'] ) ? stripslashes( $this->settings['script_after_item_load'] ) : null;
|
109 |
+
$scriptLoaded = isset( $this->settings['script_loaded'] ) ? stripslashes( $this->settings['script_loaded'] ) : null;
|
110 |
$script = "(function($){
|
111 |
$('.rt-tpg-container').on('tpg_item_before_load', function(){{$scriptBefore}});
|
112 |
$('.rt-tpg-container').on('tpg_item_after_load', function(){{$scriptAfter}});
|
119 |
* Header Scripts
|
120 |
*/
|
121 |
public function header_scripts() {
|
122 |
+
|
123 |
+
?>
|
124 |
+
<style>
|
125 |
+
:root {
|
126 |
+
--tpg-primary-color: <?php echo isset( $this->settings['tpg_primary_color_main'] ) ? $this->settings['tpg_primary_color_main'] : '#0d6efd'?>;
|
127 |
+
--tpg-secondary-color: <?php echo isset( $this->settings['tpg_secondary_color_main'] ) ? $this->settings['tpg_secondary_color_main'] : '#0654c4'?>;
|
128 |
+
--tpg-primary-light: #c4d0ff
|
129 |
+
}
|
130 |
+
|
131 |
+
<?php if( isset( $this->settings['tpg_loader_color'] ) ) : ?>
|
132 |
+
body .rt-tpg-container .rt-loading,
|
133 |
+
body #bottom-script-loader .rt-ball-clip-rotate {
|
134 |
+
color: <?php echo esc_attr($this->settings['tpg_loader_color']) ?> !important;
|
135 |
+
}
|
136 |
+
|
137 |
+
<?php endif; ?>
|
138 |
+
</style>
|
139 |
+
|
140 |
+
<?php
|
141 |
+
if ( isset( $this->settings['tpg_load_script'] ) ) : ?>
|
142 |
+
<style>
|
143 |
+
.rt-container-fluid {
|
144 |
+
position: relative;
|
145 |
+
}
|
146 |
+
|
147 |
+
.rt-tpg-container .tpg-pre-loader {
|
148 |
+
position: relative;
|
149 |
+
overflow: hidden;
|
150 |
+
}
|
151 |
+
|
152 |
+
.rt-tpg-container .rt-loading-overlay {
|
153 |
+
opacity: 0;
|
154 |
+
visibility: hidden;
|
155 |
+
position: absolute;
|
156 |
+
top: 0;
|
157 |
+
left: 0;
|
158 |
+
width: 100%;
|
159 |
+
height: 100%;
|
160 |
+
z-index: 1;
|
161 |
+
background-color: #fff;
|
162 |
+
}
|
163 |
+
|
164 |
+
.rt-tpg-container .rt-loading {
|
165 |
+
color: var(--tpg-primary-color);
|
166 |
+
position: absolute;
|
167 |
+
top: 40%;
|
168 |
+
left: 50%;
|
169 |
+
margin-left: -16px;
|
170 |
+
z-index: 2;
|
171 |
+
opacity: 0;
|
172 |
+
visibility: hidden;
|
173 |
+
}
|
174 |
+
|
175 |
+
.rt-tpg-container .tpg-pre-loader .rt-loading-overlay {
|
176 |
+
opacity: 0.8;
|
177 |
+
visibility: visible;
|
178 |
+
}
|
179 |
+
|
180 |
+
.tpg-carousel-main .tpg-pre-loader .rt-loading-overlay {
|
181 |
+
opacity: 1;
|
182 |
+
}
|
183 |
+
|
184 |
+
.rt-tpg-container .tpg-pre-loader .rt-loading {
|
185 |
+
opacity: 1;
|
186 |
+
visibility: visible;
|
187 |
+
}
|
188 |
+
|
189 |
+
|
190 |
+
#bottom-script-loader {
|
191 |
+
position: absolute;
|
192 |
+
width: calc(100% + 60px);
|
193 |
+
height: calc(100% + 60px);
|
194 |
+
z-index: 999;
|
195 |
+
background: rgba(255, 255, 255, 0.95);
|
196 |
+
margin: -30px;
|
197 |
+
}
|
198 |
+
|
199 |
+
#bottom-script-loader .rt-ball-clip-rotate {
|
200 |
+
color: var(--tpg-primary-color);
|
201 |
+
position: absolute;
|
202 |
+
top: 80px;
|
203 |
+
left: 50%;
|
204 |
+
margin-left: -16px;
|
205 |
+
z-index: 2;
|
206 |
+
}
|
207 |
+
|
208 |
+
.tpg-el-main-wrapper.loading {
|
209 |
+
min-height: 300px;
|
210 |
+
transition: 0.4s;
|
211 |
+
}
|
212 |
+
|
213 |
+
.tpg-el-main-wrapper.loading::before {
|
214 |
+
width: 32px;
|
215 |
+
height: 32px;
|
216 |
+
display: inline-block;
|
217 |
+
float: none;
|
218 |
+
border: 2px solid currentColor;
|
219 |
+
background: transparent;
|
220 |
+
border-bottom-color: transparent;
|
221 |
+
border-radius: 100%;
|
222 |
+
-webkit-animation: ball-clip-rotate 0.75s linear infinite;
|
223 |
+
-moz-animation: ball-clip-rotate 0.75s linear infinite;
|
224 |
+
-o-animation: ball-clip-rotate 0.75s linear infinite;
|
225 |
+
animation: ball-clip-rotate 0.75s linear infinite;
|
226 |
+
left: 50%;
|
227 |
+
top: 50%;
|
228 |
+
position: absolute;
|
229 |
+
z-index: 9999999999;
|
230 |
+
color: red;
|
231 |
+
}
|
232 |
+
|
233 |
+
|
234 |
+
.rt-tpg-container .slider-main-wrapper,
|
235 |
+
.tpg-el-main-wrapper .slider-main-wrapper {
|
236 |
+
opacity: 0;
|
237 |
+
}
|
238 |
+
|
239 |
+
.md-modal {
|
240 |
+
visibility: hidden;
|
241 |
+
}
|
242 |
+
.md-modal.md-show {
|
243 |
+
visibility: visible;
|
244 |
+
}
|
245 |
+
|
246 |
+
.builder-content.content-invisible {
|
247 |
+
visibility: hidden;
|
248 |
+
}
|
249 |
+
|
250 |
+
.rt-tpg-container > *:not(.bottom-script-loader, .slider-main-wrapper) {
|
251 |
+
opacity: 0;
|
252 |
+
}
|
253 |
+
|
254 |
+
.rt-popup-content .rt-tpg-container > *:not(.bottom-script-loader, .slider-main-wrapper) {
|
255 |
+
opacity: 1;
|
256 |
+
}
|
257 |
+
|
258 |
+
</style>
|
259 |
+
|
260 |
+
<script>
|
261 |
+
jQuery( document ).ready( function () {
|
262 |
+
setTimeout( function () {
|
263 |
+
jQuery( '.rt-tpg-container > *:not(.bottom-script-loader, .slider-main-wrapper)' ).animate( { "opacity": 1 } );
|
264 |
+
}, 100 );
|
265 |
+
} );
|
266 |
+
|
267 |
+
jQuery( window ).on( 'elementor/frontend/init', function () {
|
268 |
+
if ( elementorFrontend.isEditMode() ) {
|
269 |
+
elementorFrontend.hooks.addAction( 'frontend/element_ready/widget', function () {
|
270 |
+
jQuery( '.rt-tpg-container > *:not(.bottom-script-loader, .slider-main-wrapper)' ).animate( { "opacity": 1 } );
|
271 |
+
} );
|
272 |
+
}
|
273 |
+
} );
|
274 |
+
</script>
|
275 |
+
<?php endif;
|
276 |
+
|
277 |
}
|
278 |
|
279 |
}
|
app/Controllers/ShortcodeController.php
CHANGED
@@ -20,13 +20,12 @@ class ShortcodeController {
|
|
20 |
}
|
21 |
}
|
22 |
|
|
|
23 |
public function register_sc_scripts() {
|
24 |
$settings = get_option( rtTPG()->options['settings'] );
|
25 |
|
26 |
-
$caro
|
27 |
-
|
28 |
-
$style = [];
|
29 |
-
array_push( $script, 'jquery' );
|
30 |
$ajaxurl = '';
|
31 |
if ( in_array( 'sitepress-multilingual-cms/sitepress.php', get_option( 'active_plugins' ) ) ) {
|
32 |
$ajaxurl .= admin_url( 'admin-ajax.php?lang=' . ICL_LANGUAGE_CODE );
|
@@ -39,6 +38,7 @@ class ShortcodeController {
|
|
39 |
'ajaxurl' => $ajaxurl,
|
40 |
];
|
41 |
|
|
|
42 |
foreach ( $this->scA as $sc ) {
|
43 |
if ( isset( $sc ) && is_array( $sc ) ) {
|
44 |
if ( $sc['isSinglePopUp'] ) {
|
@@ -51,24 +51,7 @@ class ShortcodeController {
|
|
51 |
}
|
52 |
}
|
53 |
if ( count( $this->scA ) ) {
|
54 |
-
array_push( $script, 'jquery' );
|
55 |
-
array_push( $script, 'rt-isotope-js' );
|
56 |
-
array_push( $script, 'rt-image-load-js' );
|
57 |
-
array_push( $style, 'rt-fontawsome' );
|
58 |
-
array_push( $script, 'rt-tpg' );
|
59 |
-
|
60 |
-
if ( isset( $settings['tpg_load_script'] ) ) {
|
61 |
-
wp_enqueue_style( 'rt-tpg-common' );
|
62 |
-
wp_enqueue_style( 'rt-tpg' );
|
63 |
-
}
|
64 |
-
|
65 |
-
if ( is_rtl() ) {
|
66 |
-
array_push( $style, 'rt-tpg-common-rtl' );
|
67 |
-
array_push( $style, 'rt-tpg-rtl' );
|
68 |
-
}
|
69 |
|
70 |
-
wp_enqueue_style( $style );
|
71 |
-
wp_enqueue_script( $script );
|
72 |
wp_localize_script( 'rt-tpg', 'rttpg', $variables );
|
73 |
|
74 |
do_action( 'tpg_after_script', $isSinglePopUp );
|
@@ -92,6 +75,7 @@ class ShortcodeController {
|
|
92 |
}
|
93 |
|
94 |
public function the_post_grid_short_code( $atts, $content = null ) {
|
|
|
95 |
$rand = mt_rand();
|
96 |
|
97 |
$layoutID = "rt-tpg-container-" . $rand;
|
@@ -110,13 +94,13 @@ class ShortcodeController {
|
|
110 |
$layout = 'layout1';
|
111 |
}
|
112 |
|
113 |
-
$isIsotope
|
114 |
-
$isCarousel
|
115 |
-
$isGrid
|
116 |
-
$isWooCom
|
117 |
-
$isEdd
|
118 |
-
$isOffset
|
119 |
-
$isGridHover
|
120 |
|
121 |
$colStore = $dCol = ( isset( $scMeta['column'][0] ) ? absint( $scMeta['column'][0] ) : 3 );
|
122 |
$tCol = ( isset( $scMeta['tpg_tab_column'][0] ) ? absint( $scMeta['tpg_tab_column'][0] ) : 2 );
|
@@ -480,7 +464,7 @@ class ShortcodeController {
|
|
480 |
if ( $pagination && $queryOffset && isset( $args['paged'] ) ) {
|
481 |
$queryOffset = ( $posts_per_page * ( $args['paged'] - 1 ) ) + $queryOffset;
|
482 |
}
|
483 |
-
if ($queryOffset) {
|
484 |
$args['offset'] = $queryOffset;
|
485 |
}
|
486 |
|
@@ -496,7 +480,28 @@ class ShortcodeController {
|
|
496 |
if ( isset( $settings['tpg_load_script'] ) ) {
|
497 |
$parentClass .= ' loading';
|
498 |
}
|
499 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
500 |
|
501 |
// widget heading
|
502 |
$heading_tag = isset( $scMeta['tpg_heading_tag'][0] ) ? $scMeta['tpg_heading_tag'][0] : 'h2';
|
@@ -510,13 +515,13 @@ class ShortcodeController {
|
|
510 |
if ( $heading_link ) {
|
511 |
$html .= sprintf( '<%1$s class="tpg-widget-heading"><a href="%2$s" title="%3$s">%3$s</a></%1$s>', $heading_tag, $heading_link, get_the_title() );
|
512 |
} else {
|
513 |
-
$html .= sprintf( '<%1$s class="tpg-widget-heading">%2$s</%1$s>', $heading_tag, get_the_title($scID) );
|
514 |
}
|
515 |
$html .= '<span class="tpg-widget-heading-line"></span>';
|
516 |
$html .= '</div>';
|
517 |
}
|
518 |
|
519 |
-
if ( ! $isCarousel && isset( $settings['
|
520 |
$html .= '<div id="bottom-script-loader" class="bottom-script-loader"><div class="rt-ball-clip-rotate"><div></div></div></div>';
|
521 |
}
|
522 |
if ( ! empty( $filters ) && ( $isGrid || $isOffset || $isWooCom || $isEdd ) ) {
|
@@ -753,7 +758,7 @@ class ShortcodeController {
|
|
753 |
$wooFeature = ( $postType == "product" ? true : false );
|
754 |
$orders = Options::rtPostOrderBy( $wooFeature );
|
755 |
$action_orderby = ( ! empty( $args['orderby'] ) ? trim( $args['orderby'] ) : "none" );
|
756 |
-
if($action_orderby == 'ID') {
|
757 |
$action_orderby = 'title';
|
758 |
}
|
759 |
if ( $action_orderby == 'none' ) {
|
@@ -797,7 +802,9 @@ class ShortcodeController {
|
|
797 |
$not_found_text = isset( $scMeta['tgp_not_found_text'][0] ) && ! empty( $scMeta['tgp_not_found_text'][0] ) ? esc_html( $scMeta['tgp_not_found_text'][0] )
|
798 |
: __( 'No post found', 'the-post-grid' );
|
799 |
|
|
|
800 |
if ( $gridQuery->have_posts() ) {
|
|
|
801 |
if ( $isCarousel ) {
|
802 |
$cOpt = ! empty( $scMeta['carousel_property'] ) ? $scMeta['carousel_property'] : [];
|
803 |
$slider_js_options = apply_filters( 'rttpg_slider_js_options', [
|
@@ -808,7 +815,7 @@ class ShortcodeController {
|
|
808 |
"nav" => in_array( 'nav_button', $cOpt ),
|
809 |
"dots" => in_array( 'pagination', $cOpt ),
|
810 |
"loop" => in_array( 'loop', $cOpt ),
|
811 |
-
"
|
812 |
"autoHeight" => in_array( 'auto_height', $cOpt ),
|
813 |
"rtl" => in_array( 'rtl', $cOpt ) ? 'rtl' : 'ltr',
|
814 |
], $scMeta );
|
@@ -816,6 +823,11 @@ class ShortcodeController {
|
|
816 |
htmlspecialchars( wp_json_encode( $slider_js_options ) ),
|
817 |
$slider_js_options['rtl']
|
818 |
);
|
|
|
|
|
|
|
|
|
|
|
819 |
}
|
820 |
$isotope_filter = null;
|
821 |
if ( $isIsotope ) {
|
@@ -900,17 +912,17 @@ class ShortcodeController {
|
|
900 |
}
|
901 |
$l = 0;
|
902 |
}
|
903 |
-
$arg['postCount']
|
904 |
-
$pID
|
905 |
-
$arg['pID']
|
906 |
-
$arg['title']
|
907 |
-
$arg['pLink']
|
908 |
-
$arg['toggle']
|
909 |
-
$arg['layoutID']
|
910 |
-
$arg['author']
|
911 |
sprintf( '<a href="%s">%s</a>', get_author_posts_url( get_the_author_meta( 'ID' ) ), get_the_author() ) );
|
912 |
-
$comments_number
|
913 |
-
$comments_text
|
914 |
|
915 |
$arg['date'] = get_the_date();
|
916 |
$arg['excerpt'] = Fns::get_the_excerpt( $pID, $arg );
|
@@ -933,10 +945,12 @@ class ShortcodeController {
|
|
933 |
} else {
|
934 |
$arg['comment'] = "{$comments_text}";
|
935 |
}
|
936 |
-
$imgSrc
|
|
|
|
|
|
|
937 |
$arg['smallImgSrc'] = ! $fImg ? Fns::getFeatureImageSrc( $pID, $fSmallImgSize, $mediaSource,
|
938 |
-
$defaultImgId,
|
939 |
-
$customSmallImgSize ) : null;
|
940 |
if ( $isOffset ) {
|
941 |
if ( $offLoop == 0 ) {
|
942 |
$arg['imgSrc'] = ! $fImg ? Fns::getFeatureImageSrc( $pID, $fImgSize, $mediaSource,
|
@@ -956,7 +970,7 @@ class ShortcodeController {
|
|
956 |
} else {
|
957 |
$arg['imgSrc'] = ! $fImg ? Fns::getFeatureImageSrc( $pID, $fImgSize, $mediaSource,
|
958 |
$defaultImgId,
|
959 |
-
$customImgSize ) : null;
|
960 |
$html .= Fns::get_template_html( 'layouts/' . $layout, $arg );
|
961 |
}
|
962 |
$offLoop ++;
|
@@ -979,8 +993,8 @@ class ShortcodeController {
|
|
979 |
if ( $isIsotope || $isCarousel ) {
|
980 |
$html .= '</div>'; // End isotope / Carousel item holder
|
981 |
|
982 |
-
if ($isIsotope) {
|
983 |
-
$html .= '<div class="isotope-term-no-post"><p>'
|
984 |
}
|
985 |
if ( $isCarousel ) {
|
986 |
|
@@ -996,7 +1010,7 @@ class ShortcodeController {
|
|
996 |
}
|
997 |
} else {
|
998 |
|
999 |
-
$html
|
1000 |
apply_filters( 'tpg_not_found_text', $not_found_text, $args, $scMeta )
|
1001 |
);
|
1002 |
}
|
@@ -1013,7 +1027,7 @@ class ShortcodeController {
|
|
1013 |
} else {
|
1014 |
$hide = ( $gridQuery->max_num_pages < 2 ? " rt-hidden-elm" : null );
|
1015 |
if ( $posts_loading_type == "pagination" ) {
|
1016 |
-
if ( $isGrid && empty( $filters ) ) {
|
1017 |
$htmlUtility .= Fns::rt_pagination( $gridQuery,
|
1018 |
$args['posts_per_page'] );
|
1019 |
}
|
@@ -1057,7 +1071,63 @@ class ShortcodeController {
|
|
1057 |
$scriptGenerator['isSinglePopUp'] = $isSinglePopUp;
|
1058 |
$scriptGenerator['isWooCom'] = $isWooCom;
|
1059 |
$this->scA[] = $scriptGenerator;
|
|
|
1060 |
add_action( 'wp_footer', [ $this, 'register_sc_scripts' ] );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1061 |
} else {
|
1062 |
$html .= "<p>" . __( "No shortCode found", "the-post-grid" ) . "</p>";
|
1063 |
}
|
20 |
}
|
21 |
}
|
22 |
|
23 |
+
|
24 |
public function register_sc_scripts() {
|
25 |
$settings = get_option( rtTPG()->options['settings'] );
|
26 |
|
27 |
+
$caro = $isSinglePopUp = false;
|
28 |
+
|
|
|
|
|
29 |
$ajaxurl = '';
|
30 |
if ( in_array( 'sitepress-multilingual-cms/sitepress.php', get_option( 'active_plugins' ) ) ) {
|
31 |
$ajaxurl .= admin_url( 'admin-ajax.php?lang=' . ICL_LANGUAGE_CODE );
|
38 |
'ajaxurl' => $ajaxurl,
|
39 |
];
|
40 |
|
41 |
+
|
42 |
foreach ( $this->scA as $sc ) {
|
43 |
if ( isset( $sc ) && is_array( $sc ) ) {
|
44 |
if ( $sc['isSinglePopUp'] ) {
|
51 |
}
|
52 |
}
|
53 |
if ( count( $this->scA ) ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
|
|
|
|
|
55 |
wp_localize_script( 'rt-tpg', 'rttpg', $variables );
|
56 |
|
57 |
do_action( 'tpg_after_script', $isSinglePopUp );
|
75 |
}
|
76 |
|
77 |
public function the_post_grid_short_code( $atts, $content = null ) {
|
78 |
+
|
79 |
$rand = mt_rand();
|
80 |
|
81 |
$layoutID = "rt-tpg-container-" . $rand;
|
94 |
$layout = 'layout1';
|
95 |
}
|
96 |
|
97 |
+
$isIsotope = preg_match( '/isotope/', $layout );
|
98 |
+
$isCarousel = preg_match( '/carousel/', $layout );
|
99 |
+
$isGrid = preg_match( '/layout/', $layout );
|
100 |
+
$isWooCom = preg_match( '/wc/', $layout );
|
101 |
+
$isEdd = preg_match( '/edd/', $layout );
|
102 |
+
$isOffset = preg_match( '/offset/', $layout );
|
103 |
+
$isGridHover = preg_match( '/grid_hover/', $layout );
|
104 |
|
105 |
$colStore = $dCol = ( isset( $scMeta['column'][0] ) ? absint( $scMeta['column'][0] ) : 3 );
|
106 |
$tCol = ( isset( $scMeta['tpg_tab_column'][0] ) ? absint( $scMeta['tpg_tab_column'][0] ) : 2 );
|
464 |
if ( $pagination && $queryOffset && isset( $args['paged'] ) ) {
|
465 |
$queryOffset = ( $posts_per_page * ( $args['paged'] - 1 ) ) + $queryOffset;
|
466 |
}
|
467 |
+
if ( $queryOffset ) {
|
468 |
$args['offset'] = $queryOffset;
|
469 |
}
|
470 |
|
480 |
if ( isset( $settings['tpg_load_script'] ) ) {
|
481 |
$parentClass .= ' loading';
|
482 |
}
|
483 |
+
|
484 |
+
$carousel_nav = ! empty( $scMeta['carousel_property'] ) ? $scMeta['carousel_property'] : [];
|
485 |
+
$is_nav = in_array( 'nav_button', $carousel_nav );
|
486 |
+
|
487 |
+
|
488 |
+
if ( $isCarousel ) {
|
489 |
+
$parentClass .= ' tpg-carousel-main';
|
490 |
+
if ( $is_nav ) {
|
491 |
+
$parentClass .= ' tpg-has-nav';
|
492 |
+
}
|
493 |
+
$cOptMeta = ! empty( $scMeta['carousel_property'] ) ? $scMeta['carousel_property'] : [];
|
494 |
+
|
495 |
+
if ( in_array( 'lazy_load', $cOptMeta ) ) {
|
496 |
+
$parentClass .= ' is-lazy-load-yes';
|
497 |
+
}
|
498 |
+
|
499 |
+
if ( in_array( 'auto_height', $cOptMeta ) ) {
|
500 |
+
$parentClass .= ' is-auto-height-yes';
|
501 |
+
}
|
502 |
+
}
|
503 |
+
|
504 |
+
$html .= "<div class='rt-container-fluid rt-tpg-container tpg-shortcode-main-wrapper {$parentClass}' id='{$layoutID}' {$dataArchive} {$containerDataAttr}>";
|
505 |
|
506 |
// widget heading
|
507 |
$heading_tag = isset( $scMeta['tpg_heading_tag'][0] ) ? $scMeta['tpg_heading_tag'][0] : 'h2';
|
515 |
if ( $heading_link ) {
|
516 |
$html .= sprintf( '<%1$s class="tpg-widget-heading"><a href="%2$s" title="%3$s">%3$s</a></%1$s>', $heading_tag, $heading_link, get_the_title() );
|
517 |
} else {
|
518 |
+
$html .= sprintf( '<%1$s class="tpg-widget-heading">%2$s</%1$s>', $heading_tag, get_the_title( $scID ) );
|
519 |
}
|
520 |
$html .= '<span class="tpg-widget-heading-line"></span>';
|
521 |
$html .= '</div>';
|
522 |
}
|
523 |
|
524 |
+
if ( ! $isCarousel && isset( $settings['tpg_enable_preloader'] ) ) {
|
525 |
$html .= '<div id="bottom-script-loader" class="bottom-script-loader"><div class="rt-ball-clip-rotate"><div></div></div></div>';
|
526 |
}
|
527 |
if ( ! empty( $filters ) && ( $isGrid || $isOffset || $isWooCom || $isEdd ) ) {
|
758 |
$wooFeature = ( $postType == "product" ? true : false );
|
759 |
$orders = Options::rtPostOrderBy( $wooFeature );
|
760 |
$action_orderby = ( ! empty( $args['orderby'] ) ? trim( $args['orderby'] ) : "none" );
|
761 |
+
if ( $action_orderby == 'ID' ) {
|
762 |
$action_orderby = 'title';
|
763 |
}
|
764 |
if ( $action_orderby == 'none' ) {
|
802 |
$not_found_text = isset( $scMeta['tgp_not_found_text'][0] ) && ! empty( $scMeta['tgp_not_found_text'][0] ) ? esc_html( $scMeta['tgp_not_found_text'][0] )
|
803 |
: __( 'No post found', 'the-post-grid' );
|
804 |
|
805 |
+
|
806 |
if ( $gridQuery->have_posts() ) {
|
807 |
+
$is_lazy_load = '';
|
808 |
if ( $isCarousel ) {
|
809 |
$cOpt = ! empty( $scMeta['carousel_property'] ) ? $scMeta['carousel_property'] : [];
|
810 |
$slider_js_options = apply_filters( 'rttpg_slider_js_options', [
|
815 |
"nav" => in_array( 'nav_button', $cOpt ),
|
816 |
"dots" => in_array( 'pagination', $cOpt ),
|
817 |
"loop" => in_array( 'loop', $cOpt ),
|
818 |
+
"lazy" => in_array( 'lazy_load', $cOpt ),
|
819 |
"autoHeight" => in_array( 'auto_height', $cOpt ),
|
820 |
"rtl" => in_array( 'rtl', $cOpt ) ? 'rtl' : 'ltr',
|
821 |
], $scMeta );
|
823 |
htmlspecialchars( wp_json_encode( $slider_js_options ) ),
|
824 |
$slider_js_options['rtl']
|
825 |
);
|
826 |
+
|
827 |
+
if ( in_array( 'lazy_load', $cOpt ) ) {
|
828 |
+
$is_lazy_load = 'swiper-lazy';
|
829 |
+
}
|
830 |
+
|
831 |
}
|
832 |
$isotope_filter = null;
|
833 |
if ( $isIsotope ) {
|
912 |
}
|
913 |
$l = 0;
|
914 |
}
|
915 |
+
$arg['postCount'] = $gridPostCount ++;
|
916 |
+
$pID = get_the_ID();
|
917 |
+
$arg['pID'] = $pID;
|
918 |
+
$arg['title'] = Fns::get_the_title( $pID, $arg );
|
919 |
+
$arg['pLink'] = get_permalink();
|
920 |
+
$arg['toggle'] = $this->l4toggle;
|
921 |
+
$arg['layoutID'] = $layoutID;
|
922 |
+
$arg['author'] = apply_filters( 'rttpg_author_link',
|
923 |
sprintf( '<a href="%s">%s</a>', get_author_posts_url( get_the_author_meta( 'ID' ) ), get_the_author() ) );
|
924 |
+
$comments_number = get_comments_number( $pID );
|
925 |
+
$comments_text = sprintf( '(%s)', number_format_i18n( $comments_number ) );
|
926 |
|
927 |
$arg['date'] = get_the_date();
|
928 |
$arg['excerpt'] = Fns::get_the_excerpt( $pID, $arg );
|
945 |
} else {
|
946 |
$arg['comment'] = "{$comments_text}";
|
947 |
}
|
948 |
+
$imgSrc = null;
|
949 |
+
|
950 |
+
//TODO: Image Thumbnail
|
951 |
+
|
952 |
$arg['smallImgSrc'] = ! $fImg ? Fns::getFeatureImageSrc( $pID, $fSmallImgSize, $mediaSource,
|
953 |
+
$defaultImgId, $customSmallImgSize, $is_lazy_load ) : null;
|
|
|
954 |
if ( $isOffset ) {
|
955 |
if ( $offLoop == 0 ) {
|
956 |
$arg['imgSrc'] = ! $fImg ? Fns::getFeatureImageSrc( $pID, $fImgSize, $mediaSource,
|
970 |
} else {
|
971 |
$arg['imgSrc'] = ! $fImg ? Fns::getFeatureImageSrc( $pID, $fImgSize, $mediaSource,
|
972 |
$defaultImgId,
|
973 |
+
$customImgSize, $is_lazy_load ) : null;
|
974 |
$html .= Fns::get_template_html( 'layouts/' . $layout, $arg );
|
975 |
}
|
976 |
$offLoop ++;
|
993 |
if ( $isIsotope || $isCarousel ) {
|
994 |
$html .= '</div>'; // End isotope / Carousel item holder
|
995 |
|
996 |
+
if ( $isIsotope ) {
|
997 |
+
$html .= '<div class="isotope-term-no-post"><p>' . $not_found_text . '</p></div>';
|
998 |
}
|
999 |
if ( $isCarousel ) {
|
1000 |
|
1010 |
}
|
1011 |
} else {
|
1012 |
|
1013 |
+
$html .= sprintf( '<p>%s</p>',
|
1014 |
apply_filters( 'tpg_not_found_text', $not_found_text, $args, $scMeta )
|
1015 |
);
|
1016 |
}
|
1027 |
} else {
|
1028 |
$hide = ( $gridQuery->max_num_pages < 2 ? " rt-hidden-elm" : null );
|
1029 |
if ( $posts_loading_type == "pagination" ) {
|
1030 |
+
if ( ($isGrid || $isWooCom || $isEdd) && empty( $filters ) ) {
|
1031 |
$htmlUtility .= Fns::rt_pagination( $gridQuery,
|
1032 |
$args['posts_per_page'] );
|
1033 |
}
|
1071 |
$scriptGenerator['isSinglePopUp'] = $isSinglePopUp;
|
1072 |
$scriptGenerator['isWooCom'] = $isWooCom;
|
1073 |
$this->scA[] = $scriptGenerator;
|
1074 |
+
|
1075 |
add_action( 'wp_footer', [ $this, 'register_sc_scripts' ] );
|
1076 |
+
|
1077 |
+
//Script Load Conditionally
|
1078 |
+
$script = [];
|
1079 |
+
$style = [];
|
1080 |
+
|
1081 |
+
array_push( $script, 'jquery' );
|
1082 |
+
array_push( $style, 'rt-fontawsome' );
|
1083 |
+
if ( 'masonry' == $gridType || $isIsotope ) {
|
1084 |
+
array_push( $script, 'rt-isotope-js' );
|
1085 |
+
}
|
1086 |
+
array_push( $script, 'imagesloaded' );
|
1087 |
+
array_push( $script, 'rt-tpg' );
|
1088 |
+
|
1089 |
+
//Pro Scripts and Styles
|
1090 |
+
if ( rtTPG()->hasPro() ) {
|
1091 |
+
|
1092 |
+
|
1093 |
+
if ( isset( $posts_loading_type ) && 'pagination_ajax' == $posts_loading_type ) {
|
1094 |
+
array_push( $script, 'rt-pagination' );
|
1095 |
+
}
|
1096 |
+
|
1097 |
+
if ( $layout == 'layout17' || 'popup' == $linkType ) {
|
1098 |
+
array_push( $style, 'rt-magnific-popup' );
|
1099 |
+
array_push( $script, 'rt-magnific-popup' );
|
1100 |
+
}
|
1101 |
+
|
1102 |
+
// var_dump( $linkType );
|
1103 |
+
if ( 'popup' == $linkType ) {
|
1104 |
+
array_push( $style, 'rt-scrollbar' );
|
1105 |
+
array_push( $script, 'rt-scrollbar' );
|
1106 |
+
}
|
1107 |
+
|
1108 |
+
if ( class_exists( 'WooCommerce' ) ) {
|
1109 |
+
array_push( $script, 'rt-jzoom' );
|
1110 |
+
}
|
1111 |
+
|
1112 |
+
}
|
1113 |
+
|
1114 |
+
array_push( $style, 'rt-tpg-shortcode' );
|
1115 |
+
|
1116 |
+
if ( ($isCarousel && rtTPG()->hasPro()) || $isWooCom ) {
|
1117 |
+
array_push( $style, 'swiper' );
|
1118 |
+
array_push( $script, 'swiper' );
|
1119 |
+
}
|
1120 |
+
|
1121 |
+
if ( rtTPG()->hasPro() ) {
|
1122 |
+
array_push( $script, 'rt-tpg-pro' );
|
1123 |
+
}
|
1124 |
+
|
1125 |
+
if ( isset( $settings['tpg_load_script'] ) ) {
|
1126 |
+
wp_enqueue_style( $style );
|
1127 |
+
}
|
1128 |
+
|
1129 |
+
wp_enqueue_script( $script );
|
1130 |
+
|
1131 |
} else {
|
1132 |
$html .= "<p>" . __( "No shortCode found", "the-post-grid" ) . "</p>";
|
1133 |
}
|
app/Helpers/Fns.php
CHANGED
@@ -20,8 +20,8 @@ class Fns {
|
|
20 |
|
21 |
/**
|
22 |
* @param $viewName
|
23 |
-
* @param
|
24 |
-
* @param
|
25 |
*
|
26 |
* @return string|void
|
27 |
*/
|
@@ -45,7 +45,7 @@ class Fns {
|
|
45 |
}
|
46 |
|
47 |
/**
|
48 |
-
* @param
|
49 |
*/
|
50 |
static function update_post_views_count( $post_id ) {
|
51 |
if ( ! $post_id && is_admin() ) {
|
@@ -75,10 +75,10 @@ class Fns {
|
|
75 |
/**
|
76 |
* Template Content
|
77 |
*
|
78 |
-
* @param
|
79 |
-
* @param
|
80 |
-
* @param
|
81 |
-
* @param
|
82 |
*/
|
83 |
static function get_template( $template_name, $args = null, $template_path = '', $default_path = '' ) {
|
84 |
if ( ! empty( $args ) && is_array( $args ) ) {
|
@@ -108,10 +108,10 @@ class Fns {
|
|
108 |
/**
|
109 |
* Get template content and return
|
110 |
*
|
111 |
-
* @param
|
112 |
-
* @param
|
113 |
-
* @param
|
114 |
-
* @param
|
115 |
*
|
116 |
* @return string
|
117 |
*/
|
@@ -124,8 +124,8 @@ class Fns {
|
|
124 |
|
125 |
/**
|
126 |
* @param $template_name
|
127 |
-
* @param
|
128 |
-
* @param
|
129 |
*
|
130 |
* @return mixed|void
|
131 |
*/
|
@@ -346,8 +346,8 @@ class Fns {
|
|
346 |
/**
|
347 |
* Sanitize field value
|
348 |
*
|
349 |
-
* @param
|
350 |
-
* @param
|
351 |
*
|
352 |
* @return array|null
|
353 |
* @internal param $value
|
@@ -661,7 +661,7 @@ class Fns {
|
|
661 |
$imgSrc = null;
|
662 |
$img_class = "rt-img-responsive ";
|
663 |
if ( $img_Class ) {
|
664 |
-
$img_class
|
665 |
}
|
666 |
$post_id = ( $post_id ? absint( $post_id ) : $post->ID );
|
667 |
$alt = get_the_title( $post_id );
|
@@ -676,6 +676,9 @@ class Fns {
|
|
676 |
if ( $aID = get_post_thumbnail_id( $post_id ) ) {
|
677 |
$image = wp_get_attachment_image( $aID, $fImgSize, '', [ 'class' => $img_class, 'loading' => false ] );
|
678 |
$imgSrc = wp_get_attachment_image_src( $aID, $fImgSize );
|
|
|
|
|
|
|
679 |
$imgSrc = ! empty( $imgSrc ) ? $imgSrc[0] : $imgSrc;
|
680 |
}
|
681 |
} elseif ( $mediaSource == 'first_image' ) {
|
@@ -700,6 +703,9 @@ class Fns {
|
|
700 |
}
|
701 |
|
702 |
$image = "<img class='{$img_class}' src='{$imgSrc}' {$size} alt='{$alt}'>";
|
|
|
|
|
|
|
703 |
}
|
704 |
}
|
705 |
|
@@ -711,12 +717,19 @@ class Fns {
|
|
711 |
$w = ( ! empty( $customImgSize[0] ) ? absint( $customImgSize[0] ) : null );
|
712 |
$h = ( ! empty( $customImgSize[1] ) ? absint( $customImgSize[1] ) : null );
|
713 |
$c = ( ! empty( $customImgSize[2] ) && $customImgSize[2] == 'soft' ? false : true );
|
|
|
714 |
if ( $w && $h ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
715 |
$imgSrc = Fns::rtImageReSize( $imgSrc, $w, $h, $c );
|
716 |
if ( $img_Class !== 'swiper-lazy' ) {
|
717 |
-
$image = "<img class='{$img_class}' src='{$imgSrc}' width='{$w}' height='{$h}' alt='{$alt}'
|
718 |
} else {
|
719 |
-
$image = "<img class='{$img_class}' data-src='{$imgSrc}'>";
|
720 |
}
|
721 |
}
|
722 |
}
|
@@ -778,7 +791,7 @@ class Fns {
|
|
778 |
} else {
|
779 |
$defaultExcerpt = get_the_excerpt( $post_id );
|
780 |
}
|
781 |
-
$limit = isset( $data['excerpt_limit'] ) ? abs( $data['excerpt_limit'] ) : 0;
|
782 |
$more = $data['excerpt_more_text'];
|
783 |
$excerpt = preg_replace( '`\[[^\]]*\]`', '', $defaultExcerpt );
|
784 |
$excerpt = strip_shortcodes( $excerpt );
|
@@ -929,11 +942,11 @@ class Fns {
|
|
929 |
* Call the Image resize model for resize function
|
930 |
*
|
931 |
* @param $url
|
932 |
-
* @param
|
933 |
-
* @param
|
934 |
-
* @param
|
935 |
-
* @param
|
936 |
-
* @param
|
937 |
*
|
938 |
* @return array|bool|string
|
939 |
* @throws Exception
|
@@ -2205,7 +2218,7 @@ class Fns {
|
|
2205 |
* Get first image from the content
|
2206 |
*
|
2207 |
* @param $post_id
|
2208 |
-
* @param
|
2209 |
*
|
2210 |
* @return mixed|string
|
2211 |
*/
|
@@ -2249,13 +2262,15 @@ class Fns {
|
|
2249 |
* @param $data
|
2250 |
* @param $link_start
|
2251 |
* @param $link_end
|
2252 |
-
* @param
|
2253 |
*/
|
2254 |
public static function get_post_thumbnail( $pID, $data, $link_start, $link_end, $offset_size = false ) {
|
2255 |
$thumb_cat_condition = ( ! ( 'above_title' === $data['category_position'] || 'default' === $data['category_position'] ) );
|
2256 |
if ( 'grid-layout4' === $data['layout'] && 'default' === $data['category_position'] ) {
|
2257 |
$thumb_cat_condition = true;
|
2258 |
-
} elseif ( in_array( $data['layout'], [ 'grid-layout4',
|
|
|
|
|
2259 |
$thumb_cat_condition = true;
|
2260 |
}
|
2261 |
|
@@ -2344,7 +2359,9 @@ class Fns {
|
|
2344 |
<?php echo $data['is_thumb_linked'] === 'yes' ? self::wp_kses( $link_end ) : null; ?>
|
2345 |
|
2346 |
<?php if ( 'show' === $data['is_thumb_lightbox']
|
2347 |
-
|| ( in_array( $data['layout'], [ 'grid-layout7',
|
|
|
|
|
2348 |
) :
|
2349 |
?>
|
2350 |
<a class="tpg-zoom"
|
20 |
|
21 |
/**
|
22 |
* @param $viewName
|
23 |
+
* @param array $args
|
24 |
+
* @param bool $return
|
25 |
*
|
26 |
* @return string|void
|
27 |
*/
|
45 |
}
|
46 |
|
47 |
/**
|
48 |
+
* @param integer $post_id Listing ID
|
49 |
*/
|
50 |
static function update_post_views_count( $post_id ) {
|
51 |
if ( ! $post_id && is_admin() ) {
|
75 |
/**
|
76 |
* Template Content
|
77 |
*
|
78 |
+
* @param string $template_name Template name.
|
79 |
+
* @param array $args Arguments. (default: array).
|
80 |
+
* @param string $template_path Template path. (default: '').
|
81 |
+
* @param string $default_path Default path. (default: '').
|
82 |
*/
|
83 |
static function get_template( $template_name, $args = null, $template_path = '', $default_path = '' ) {
|
84 |
if ( ! empty( $args ) && is_array( $args ) ) {
|
108 |
/**
|
109 |
* Get template content and return
|
110 |
*
|
111 |
+
* @param string $template_name Template name.
|
112 |
+
* @param array $args Arguments. (default: array).
|
113 |
+
* @param string $template_path Template path. (default: '').
|
114 |
+
* @param string $default_path Default path. (default: '').
|
115 |
*
|
116 |
* @return string
|
117 |
*/
|
124 |
|
125 |
/**
|
126 |
* @param $template_name
|
127 |
+
* @param string $template_path
|
128 |
+
* @param string $default_path
|
129 |
*
|
130 |
* @return mixed|void
|
131 |
*/
|
346 |
/**
|
347 |
* Sanitize field value
|
348 |
*
|
349 |
+
* @param array $field
|
350 |
+
* @param null $value
|
351 |
*
|
352 |
* @return array|null
|
353 |
* @internal param $value
|
661 |
$imgSrc = null;
|
662 |
$img_class = "rt-img-responsive ";
|
663 |
if ( $img_Class ) {
|
664 |
+
$img_class .= $img_Class;
|
665 |
}
|
666 |
$post_id = ( $post_id ? absint( $post_id ) : $post->ID );
|
667 |
$alt = get_the_title( $post_id );
|
676 |
if ( $aID = get_post_thumbnail_id( $post_id ) ) {
|
677 |
$image = wp_get_attachment_image( $aID, $fImgSize, '', [ 'class' => $img_class, 'loading' => false ] );
|
678 |
$imgSrc = wp_get_attachment_image_src( $aID, $fImgSize );
|
679 |
+
if ( ! empty( $imgSrc ) && $img_Class == 'swiper-lazy' ) {
|
680 |
+
$image = "<img class='{$img_class}' data-src='{$imgSrc[0]}' src='#none' width='{$imgSrc[1]}' height='{$imgSrc[2]}' alt='{$alt}'/><div class='lazy-overlay-wrap'><div class='swiper-lazy-preloader swiper-lazy-preloader-white'></div></div>";
|
681 |
+
}
|
682 |
$imgSrc = ! empty( $imgSrc ) ? $imgSrc[0] : $imgSrc;
|
683 |
}
|
684 |
} elseif ( $mediaSource == 'first_image' ) {
|
703 |
}
|
704 |
|
705 |
$image = "<img class='{$img_class}' src='{$imgSrc}' {$size} alt='{$alt}'>";
|
706 |
+
if ( $img_Class == 'swiper-lazy' ) {
|
707 |
+
$image = "<img class='{$img_class} img-responsive' data-src='{$imgSrc}' src='#none' {$size} alt='{$alt}'/><div class='lazy-overlay-wrap'><div class='swiper-lazy-preloader swiper-lazy-preloader-white'></div></div>";
|
708 |
+
}
|
709 |
}
|
710 |
}
|
711 |
|
717 |
$w = ( ! empty( $customImgSize[0] ) ? absint( $customImgSize[0] ) : null );
|
718 |
$h = ( ! empty( $customImgSize[1] ) ? absint( $customImgSize[1] ) : null );
|
719 |
$c = ( ! empty( $customImgSize[2] ) && $customImgSize[2] == 'soft' ? false : true );
|
720 |
+
|
721 |
if ( $w && $h ) {
|
722 |
+
$post_thumb_id = get_post_thumbnail_id( $post_id );
|
723 |
+
if ( $post_thumb_id ) {
|
724 |
+
$featured_image = wp_get_attachment_image_src( $post_thumb_id, 'full' );
|
725 |
+
$w = $featured_image[1] < $w ? $featured_image[1] : $w;
|
726 |
+
$h = $featured_image[2] < $h ? $featured_image[2] : $h;
|
727 |
+
}
|
728 |
$imgSrc = Fns::rtImageReSize( $imgSrc, $w, $h, $c );
|
729 |
if ( $img_Class !== 'swiper-lazy' ) {
|
730 |
+
$image = "<img class='{$img_class}' src='{$imgSrc}' width='{$w}' height='{$h}' alt='{$alt}'/>";
|
731 |
} else {
|
732 |
+
$image = "<img class='{$img_class} img-responsive' data-src='{$imgSrc}' src='#none' width='{$w}' height='{$h}' alt='{$alt}'/><div class='lazy-overlay-wrap'><div class='swiper-lazy-preloader swiper-lazy-preloader-white'></div></div>";
|
733 |
}
|
734 |
}
|
735 |
}
|
791 |
} else {
|
792 |
$defaultExcerpt = get_the_excerpt( $post_id );
|
793 |
}
|
794 |
+
$limit = isset( $data['excerpt_limit'] ) && $data['excerpt_limit'] ? abs( $data['excerpt_limit'] ) : 0;
|
795 |
$more = $data['excerpt_more_text'];
|
796 |
$excerpt = preg_replace( '`\[[^\]]*\]`', '', $defaultExcerpt );
|
797 |
$excerpt = strip_shortcodes( $excerpt );
|
942 |
* Call the Image resize model for resize function
|
943 |
*
|
944 |
* @param $url
|
945 |
+
* @param null $width
|
946 |
+
* @param null $height
|
947 |
+
* @param null $crop
|
948 |
+
* @param bool|true $single
|
949 |
+
* @param bool|false $upscale
|
950 |
*
|
951 |
* @return array|bool|string
|
952 |
* @throws Exception
|
2218 |
* Get first image from the content
|
2219 |
*
|
2220 |
* @param $post_id
|
2221 |
+
* @param string $type
|
2222 |
*
|
2223 |
* @return mixed|string
|
2224 |
*/
|
2262 |
* @param $data
|
2263 |
* @param $link_start
|
2264 |
* @param $link_end
|
2265 |
+
* @param false $offset_size
|
2266 |
*/
|
2267 |
public static function get_post_thumbnail( $pID, $data, $link_start, $link_end, $offset_size = false ) {
|
2268 |
$thumb_cat_condition = ( ! ( 'above_title' === $data['category_position'] || 'default' === $data['category_position'] ) );
|
2269 |
if ( 'grid-layout4' === $data['layout'] && 'default' === $data['category_position'] ) {
|
2270 |
$thumb_cat_condition = true;
|
2271 |
+
} elseif ( in_array( $data['layout'], [ 'grid-layout4',
|
2272 |
+
'grid_hover-layout11'
|
2273 |
+
] ) && 'default' === $data['category_position'] ) {
|
2274 |
$thumb_cat_condition = true;
|
2275 |
}
|
2276 |
|
2359 |
<?php echo $data['is_thumb_linked'] === 'yes' ? self::wp_kses( $link_end ) : null; ?>
|
2360 |
|
2361 |
<?php if ( 'show' === $data['is_thumb_lightbox']
|
2362 |
+
|| ( in_array( $data['layout'], [ 'grid-layout7',
|
2363 |
+
'slider-layout4'
|
2364 |
+
] ) && in_array( $data['is_thumb_lightbox'], [ 'default', 'show' ] ) )
|
2365 |
) :
|
2366 |
?>
|
2367 |
<a class="tpg-zoom"
|
app/Helpers/Install.php
CHANGED
@@ -8,10 +8,11 @@ class Install {
|
|
8 |
|
9 |
public static function activate() {
|
10 |
self::insertDefaultData();
|
11 |
-
add_option('rttpg_activation_redirect', true);
|
12 |
}
|
13 |
|
14 |
public static function deactivate() {
|
|
|
15 |
}
|
16 |
|
17 |
public static function insertDefaultData() {
|
@@ -19,6 +20,13 @@ class Install {
|
|
19 |
if ( ! get_option( rtTPG()->options['settings'] ) ) {
|
20 |
update_option( rtTPG()->options['settings'], rtTPG()->defaultSettings );
|
21 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
}
|
23 |
|
24 |
}
|
8 |
|
9 |
public static function activate() {
|
10 |
self::insertDefaultData();
|
11 |
+
add_option( 'rttpg_activation_redirect', true );
|
12 |
}
|
13 |
|
14 |
public static function deactivate() {
|
15 |
+
update_option( 'tpg_flush_rewrite_rules', 0 );
|
16 |
}
|
17 |
|
18 |
public static function insertDefaultData() {
|
20 |
if ( ! get_option( rtTPG()->options['settings'] ) ) {
|
21 |
update_option( rtTPG()->options['settings'], rtTPG()->defaultSettings );
|
22 |
}
|
23 |
+
|
24 |
+
if ( get_option( 'elementor_experiment-e_optimized_assets_loading' ) ) {
|
25 |
+
update_option( 'elementor_experiment-e_optimized_assets_loading', 'default' );
|
26 |
+
}
|
27 |
+
if ( get_option( 'elementor_experiment-e_optimized_css_loading' ) ) {
|
28 |
+
update_option( 'elementor_experiment-e_optimized_css_loading', 'default' );
|
29 |
+
}
|
30 |
}
|
31 |
|
32 |
}
|
app/Helpers/Options.php
CHANGED
@@ -97,42 +97,7 @@ class Options {
|
|
97 |
$settings = get_option( rtTPG()->options['settings'] );
|
98 |
|
99 |
$other_settings = [
|
100 |
-
'
|
101 |
-
'type' => 'select',
|
102 |
-
'name' => 'tpg_block_type',
|
103 |
-
'label' => 'Choose Elementor or Shortcode',
|
104 |
-
'id' => 'tpg_block_type',
|
105 |
-
'class' => 'select2',
|
106 |
-
'options' => [
|
107 |
-
'default' => __( 'Default (Both Elementor and Shortcode)', 'the-post-grid' ),
|
108 |
-
'elementor' => __( 'Elementor', 'the-post-grid' ),
|
109 |
-
'shortcode' => __( 'Shortcode', 'the-post-grid' ),
|
110 |
-
],
|
111 |
-
'description' => __( 'Please check which type of block you want to use. If you use Default then all styles and scripts for both will load on your site. But if you use one then just this style and script will load on your site.', 'the-post-grid' ),
|
112 |
-
'value' => isset( $settings['tpg_block_type'] ) ? $settings['tpg_block_type'] : 'default',
|
113 |
-
],
|
114 |
-
'tpg_load_script' => [
|
115 |
-
'type' => 'switch',
|
116 |
-
'name' => 'tpg_load_script',
|
117 |
-
'label' => __( 'Load Script only ShortCode page', 'the-post-grid' ),
|
118 |
-
'description' => __( 'If you enable this, script will be loaded only ShortCode page.', 'the-post-grid' ),
|
119 |
-
'value' => isset( $settings['tpg_load_script'] ) ? $settings['tpg_load_script'] : false,
|
120 |
-
],
|
121 |
-
'tpg_enable_preloader' => [
|
122 |
-
'type' => 'switch',
|
123 |
-
'name' => 'tpg_enable_preloader',
|
124 |
-
'label' => __( 'Enable Pre-loader', 'the-post-grid' ),
|
125 |
-
'holderClass' => 'tpg-hidden',
|
126 |
-
'value' => isset( $settings['tpg_enable_preloader'] ) ? $settings['tpg_enable_preloader'] : false,
|
127 |
-
],
|
128 |
-
'tpg_skip_fa' => [
|
129 |
-
'type' => 'switch',
|
130 |
-
'name' => 'tpg_skip_fa',
|
131 |
-
'label' => __( 'Disable Font Awesome Script', 'the-post-grid' ),
|
132 |
-
'description' => __( "If Font Awesome 5 exist with theme, don't need to load twice.", 'the-post-grid' ),
|
133 |
-
'value' => isset( $settings['tpg_enable_preloader'] ) ? $settings['tpg_enable_preloader'] : false,
|
134 |
-
],
|
135 |
-
'template_author' => [
|
136 |
'type' => 'select',
|
137 |
'name' => 'template_author',
|
138 |
'label' => 'Template Author',
|
@@ -143,7 +108,7 @@ class Options {
|
|
143 |
'options' => Fns::getTPGShortCodeList(),
|
144 |
'value' => isset( $settings['template_author'] ) ? $settings['template_author'] : [],
|
145 |
],
|
146 |
-
'template_category'
|
147 |
'type' => 'select',
|
148 |
'name' => 'template_category',
|
149 |
'label' => 'Template Category',
|
@@ -154,7 +119,7 @@ class Options {
|
|
154 |
'options' => Fns::getTPGShortCodeList(),
|
155 |
'value' => isset( $settings['template_category'] ) ? $settings['template_category'] : [],
|
156 |
],
|
157 |
-
'template_search'
|
158 |
'type' => 'select',
|
159 |
'name' => 'template_search',
|
160 |
'label' => 'Template Search',
|
@@ -165,7 +130,7 @@ class Options {
|
|
165 |
'options' => Fns::getTPGShortCodeList(),
|
166 |
'value' => isset( $settings['template_search'] ) ? $settings['template_search'] : [],
|
167 |
],
|
168 |
-
'template_tag'
|
169 |
'type' => 'select',
|
170 |
'name' => 'template_tag',
|
171 |
'label' => 'Template Tag',
|
@@ -176,7 +141,29 @@ class Options {
|
|
176 |
'options' => Fns::getTPGShortCodeList(),
|
177 |
'value' => isset( $settings['template_tag'] ) ? $settings['template_tag'] : [],
|
178 |
],
|
179 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
180 |
'type' => 'text',
|
181 |
'name' => 'template_class',
|
182 |
'label' => 'Template class',
|
@@ -243,6 +230,58 @@ class Options {
|
|
243 |
return $other_settings;
|
244 |
}
|
245 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
246 |
public static function rtTPGLicenceField() {
|
247 |
$settings = get_option( rtTPG()->options['settings'] );
|
248 |
$status = ! empty( $settings['license_status'] ) && $settings['license_status'] === 'valid' ? true : false;
|
@@ -756,8 +795,8 @@ class Options {
|
|
756 |
public static function detailAvailableFields() {
|
757 |
$fields = self::rtTPGItemFields();
|
758 |
$inserted = [
|
759 |
-
'
|
760 |
-
'
|
761 |
];
|
762 |
unset( $fields['heading'] );
|
763 |
unset( $fields['excerpt'] );
|
@@ -1261,6 +1300,10 @@ class Options {
|
|
1261 |
|
1262 |
|
1263 |
public static function itemFields() {
|
|
|
|
|
|
|
|
|
1264 |
$fields = [
|
1265 |
'item_fields' => [
|
1266 |
"type" => "checkbox",
|
@@ -1269,8 +1312,8 @@ class Options {
|
|
1269 |
"id" => "item-fields",
|
1270 |
"multiple" => true,
|
1271 |
"alignment" => "vertical",
|
1272 |
-
"default" => array_keys(
|
1273 |
-
"options" =>
|
1274 |
],
|
1275 |
];
|
1276 |
if ( $cf = Fns::is_acf() ) {
|
@@ -1564,13 +1607,17 @@ class Options {
|
|
1564 |
return '<ol>
|
1565 |
<li>Fully responsive and mobile friendly.</li>
|
1566 |
<li>62 Different Layouts</li>
|
1567 |
-
<li>
|
|
|
|
|
1568 |
<li>Even and Masonry Grid.</li>
|
1569 |
<li>WooCommerce supported.</li>
|
|
|
1570 |
<li>Custom Post Type Supported</li>
|
1571 |
<li>Display posts by any Taxonomy like category(s), tag(s), author(s), keyword(s)</li>
|
1572 |
<li>Order by Id, Title, Created date, Modified date and Menu order.</li>
|
1573 |
<li>Display image size (thumbnail, medium, large, full)</li>
|
|
|
1574 |
<li>Isotope filter for any taxonomy ie. categories, tags...</li>
|
1575 |
<li>Query Post with Relation.</li>
|
1576 |
<li>Fields Selection.</li>
|
@@ -1580,7 +1627,6 @@ class Options {
|
|
1580 |
<li>Content Wrapper Style Control.</li>
|
1581 |
<li>Enable/Disable Pagination.</li>
|
1582 |
<li>AJAX Pagination (Load more and Load on Scrolling)</li>
|
1583 |
-
<li>Archive page builder for Elementor</li>
|
1584 |
<li>Advanced Custom Field support</li>
|
1585 |
<li>Post View Count</li>
|
1586 |
</ol>
|
97 |
$settings = get_option( rtTPG()->options['settings'] );
|
98 |
|
99 |
$other_settings = [
|
100 |
+
'template_author' => [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
'type' => 'select',
|
102 |
'name' => 'template_author',
|
103 |
'label' => 'Template Author',
|
108 |
'options' => Fns::getTPGShortCodeList(),
|
109 |
'value' => isset( $settings['template_author'] ) ? $settings['template_author'] : [],
|
110 |
],
|
111 |
+
'template_category' => [
|
112 |
'type' => 'select',
|
113 |
'name' => 'template_category',
|
114 |
'label' => 'Template Category',
|
119 |
'options' => Fns::getTPGShortCodeList(),
|
120 |
'value' => isset( $settings['template_category'] ) ? $settings['template_category'] : [],
|
121 |
],
|
122 |
+
'template_search' => [
|
123 |
'type' => 'select',
|
124 |
'name' => 'template_search',
|
125 |
'label' => 'Template Search',
|
130 |
'options' => Fns::getTPGShortCodeList(),
|
131 |
'value' => isset( $settings['template_search'] ) ? $settings['template_search'] : [],
|
132 |
],
|
133 |
+
'template_tag' => [
|
134 |
'type' => 'select',
|
135 |
'name' => 'template_tag',
|
136 |
'label' => 'Template Tag',
|
141 |
'options' => Fns::getTPGShortCodeList(),
|
142 |
'value' => isset( $settings['template_tag'] ) ? $settings['template_tag'] : [],
|
143 |
],
|
144 |
+
|
145 |
+
'tpg_primary_color_main' => [
|
146 |
+
"type" => "text",
|
147 |
+
"label" => "Primary Color",
|
148 |
+
"class" => "rt-color",
|
149 |
+
"default" => isset( $settings['tpg_primary_color_main'] ) ? $settings['tpg_primary_color_main'] : "#0d6efd",
|
150 |
+
],
|
151 |
+
|
152 |
+
'tpg_secondary_color_main' => [
|
153 |
+
"type" => "text",
|
154 |
+
"label" => "Secondary Color",
|
155 |
+
"class" => "rt-color",
|
156 |
+
"default" => isset( $settings['tpg_secondary_color_main'] ) ? $settings['tpg_secondary_color_main'] : "#0654c4",
|
157 |
+
],
|
158 |
+
|
159 |
+
'tpg_loader_color' => [
|
160 |
+
"type" => "text",
|
161 |
+
"label" => "Preloader Color",
|
162 |
+
"class" => "rt-color",
|
163 |
+
"default" => isset( $settings['tpg_loader_color'] ) ? $settings['tpg_loader_color'] : "#0367bf",
|
164 |
+
],
|
165 |
+
|
166 |
+
'template_class' => [
|
167 |
'type' => 'text',
|
168 |
'name' => 'template_class',
|
169 |
'label' => 'Template class',
|
230 |
return $other_settings;
|
231 |
}
|
232 |
|
233 |
+
|
234 |
+
public static function rtTPGSettingsCommonSettingsFields() {
|
235 |
+
$settings = get_option( rtTPG()->options['settings'] );
|
236 |
+
|
237 |
+
$common_settings = [
|
238 |
+
'tpg_common_settings_heading' => [
|
239 |
+
'type' => 'heading',
|
240 |
+
'name' => 'tpg_common_settings_heading',
|
241 |
+
'class' => 'tpg_common_settings_heading',
|
242 |
+
'label' => __( 'Improve Performance', 'the-post-grid' ),
|
243 |
+
'description' => __( 'Please choose a Resource Load Type first. Otherwise, all CSS & JS for shortcode and elementor will load on your site which can create a bad performance issues.', 'the-post-grid' ),
|
244 |
+
],
|
245 |
+
|
246 |
+
'tpg_block_type' => [
|
247 |
+
'type' => 'select',
|
248 |
+
'name' => 'tpg_block_type',
|
249 |
+
'label' => 'Resource Load Type',
|
250 |
+
'id' => 'tpg_block_type',
|
251 |
+
'class' => 'select2',
|
252 |
+
'options' => [
|
253 |
+
'default' => __( 'Default (Both Elementor and Shortcode)', 'the-post-grid' ),
|
254 |
+
'elementor' => __( 'Elementor', 'the-post-grid' ),
|
255 |
+
'shortcode' => __( 'Shortcode', 'the-post-grid' ),
|
256 |
+
],
|
257 |
+
'description' => __( 'Please check which type of block you want to use. If you use Default then all styles and scripts for both will load on your site. But if you use one then just this style and script will load on your site.', 'the-post-grid' ),
|
258 |
+
'value' => isset( $settings['tpg_block_type'] ) ? $settings['tpg_block_type'] : 'default',
|
259 |
+
],
|
260 |
+
'tpg_load_script' => [
|
261 |
+
'type' => 'switch',
|
262 |
+
'name' => 'tpg_load_script',
|
263 |
+
'label' => __( 'Load Script dependent on block', 'the-post-grid' ),
|
264 |
+
'description' => __( 'Check, if you want to load script when ShortCode or Elementor block is used on a page. <b>If you enable this then you must have to enable Preloader from below</b>', 'the-post-grid' ),
|
265 |
+
'value' => isset( $settings['tpg_load_script'] ) ? $settings['tpg_load_script'] : false,
|
266 |
+
],
|
267 |
+
'tpg_enable_preloader' => [
|
268 |
+
'type' => 'switch',
|
269 |
+
'name' => 'tpg_enable_preloader',
|
270 |
+
'label' => __( 'Enable Pre-loader', 'the-post-grid' ),
|
271 |
+
'value' => isset( $settings['tpg_enable_preloader'] ) ? $settings['tpg_enable_preloader'] : false,
|
272 |
+
],
|
273 |
+
'tpg_skip_fa' => [
|
274 |
+
'type' => 'switch',
|
275 |
+
'name' => 'tpg_skip_fa',
|
276 |
+
'label' => __( 'Disable Font Awesome Script', 'the-post-grid' ),
|
277 |
+
'description' => __( "If Font Awesome 5 exist with theme, don't need to load twice.", 'the-post-grid' ),
|
278 |
+
'value' => isset( $settings['tpg_skip_fa'] ) ? $settings['tpg_skip_fa'] : false,
|
279 |
+
],
|
280 |
+
];
|
281 |
+
|
282 |
+
return $common_settings;
|
283 |
+
}
|
284 |
+
|
285 |
public static function rtTPGLicenceField() {
|
286 |
$settings = get_option( rtTPG()->options['settings'] );
|
287 |
$status = ! empty( $settings['license_status'] ) && $settings['license_status'] === 'valid' ? true : false;
|
795 |
public static function detailAvailableFields() {
|
796 |
$fields = self::rtTPGItemFields();
|
797 |
$inserted = [
|
798 |
+
'content' => __( 'Content', "the-post-grid" ),
|
799 |
+
'feature_img' => __( "Feature Image", "the-post-grid" ),
|
800 |
];
|
801 |
unset( $fields['heading'] );
|
802 |
unset( $fields['excerpt'] );
|
1300 |
|
1301 |
|
1302 |
public static function itemFields() {
|
1303 |
+
|
1304 |
+
$itemField = self::rtTPGItemFields();
|
1305 |
+
$itemField['tpg_default_value'] = 'Default';
|
1306 |
+
|
1307 |
$fields = [
|
1308 |
'item_fields' => [
|
1309 |
"type" => "checkbox",
|
1312 |
"id" => "item-fields",
|
1313 |
"multiple" => true,
|
1314 |
"alignment" => "vertical",
|
1315 |
+
"default" => array_keys( $itemField ),
|
1316 |
+
"options" => $itemField,
|
1317 |
],
|
1318 |
];
|
1319 |
if ( $cf = Fns::is_acf() ) {
|
1607 |
return '<ol>
|
1608 |
<li>Fully responsive and mobile friendly.</li>
|
1609 |
<li>62 Different Layouts</li>
|
1610 |
+
<li>45 Elementor Layouts</li>
|
1611 |
+
<li>Creative Slider layouts</li>
|
1612 |
+
<li>Archive page builder for Elementor</li>
|
1613 |
<li>Even and Masonry Grid.</li>
|
1614 |
<li>WooCommerce supported.</li>
|
1615 |
+
<li>EDD supported for shortcode.</li>
|
1616 |
<li>Custom Post Type Supported</li>
|
1617 |
<li>Display posts by any Taxonomy like category(s), tag(s), author(s), keyword(s)</li>
|
1618 |
<li>Order by Id, Title, Created date, Modified date and Menu order.</li>
|
1619 |
<li>Display image size (thumbnail, medium, large, full)</li>
|
1620 |
+
<li>Ajax front-end filter by category(s), tag(s), author(s), keyword(s)</li>
|
1621 |
<li>Isotope filter for any taxonomy ie. categories, tags...</li>
|
1622 |
<li>Query Post with Relation.</li>
|
1623 |
<li>Fields Selection.</li>
|
1627 |
<li>Content Wrapper Style Control.</li>
|
1628 |
<li>Enable/Disable Pagination.</li>
|
1629 |
<li>AJAX Pagination (Load more and Load on Scrolling)</li>
|
|
|
1630 |
<li>Advanced Custom Field support</li>
|
1631 |
<li>Post View Count</li>
|
1632 |
</ol>
|
app/RtTpg.php
CHANGED
@@ -12,6 +12,7 @@ use RT\ThePostGrid\Controllers\ScriptController;
|
|
12 |
use RT\ThePostGrid\Controllers\ShortcodeController;
|
13 |
use RT\ThePostGrid\Controllers\Hooks\FilterHooks;
|
14 |
use RT\ThePostGrid\Controllers\Hooks\ActionHooks;
|
|
|
15 |
use RT\ThePostGrid\Helpers\Install;
|
16 |
use RT\ThePostGrid\Controllers\Admin\UpgradeController;
|
17 |
|
@@ -20,32 +21,31 @@ require_once __DIR__ . './../vendor/autoload.php';
|
|
20 |
if ( ! class_exists( RtTpg::class ) ) {
|
21 |
final class RtTpg {
|
22 |
|
|
|
23 |
public $post_type = "rttpg";
|
24 |
-
public $options
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
'
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
'
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
],
|
48 |
-
];
|
49 |
|
50 |
protected static $_instance;
|
51 |
|
@@ -58,6 +58,7 @@ if ( ! class_exists( RtTpg::class ) ) {
|
|
58 |
* Create an inaccessible constructor.
|
59 |
*/
|
60 |
private function __construct() {
|
|
|
61 |
$this->__init();
|
62 |
}
|
63 |
|
@@ -83,6 +84,7 @@ if ( ! class_exists( RtTpg::class ) ) {
|
|
83 |
new PostTypeController();
|
84 |
new AjaxController();
|
85 |
new ScriptController();
|
|
|
86 |
|
87 |
if ( is_admin() ) {
|
88 |
new AdminAjaxController();
|
@@ -90,7 +92,9 @@ if ( ! class_exists( RtTpg::class ) ) {
|
|
90 |
new MetaController();
|
91 |
}
|
92 |
|
93 |
-
if ( ! isset( $settings['tpg_block_type'] ) || in_array( $settings['tpg_block_type'], [ 'default',
|
|
|
|
|
94 |
new ShortcodeController();
|
95 |
new GutenBergController();
|
96 |
}
|
@@ -100,7 +104,9 @@ if ( ! class_exists( RtTpg::class ) ) {
|
|
100 |
|
101 |
( new SettingsController() )->init();
|
102 |
|
103 |
-
if ( ! isset( $settings['tpg_block_type'] ) || in_array( $settings['tpg_block_type'], [ 'default',
|
|
|
|
|
104 |
new ElementorController();
|
105 |
}
|
106 |
|
@@ -181,13 +187,13 @@ if ( ! class_exists( RtTpg::class ) ) {
|
|
181 |
* @return string
|
182 |
*/
|
183 |
public function tpg_can_be_rtl( $file ) {
|
184 |
-
$file = ltrim( str_replace('.css', '', $file), '/' );
|
185 |
|
186 |
if ( is_rtl() ) {
|
187 |
-
$file .= '
|
188 |
}
|
189 |
|
190 |
-
return trailingslashit( RT_THE_POST_GRID_PLUGIN_URL . '/assets' ) . $file . '.css';
|
191 |
}
|
192 |
|
193 |
/**
|
12 |
use RT\ThePostGrid\Controllers\ShortcodeController;
|
13 |
use RT\ThePostGrid\Controllers\Hooks\FilterHooks;
|
14 |
use RT\ThePostGrid\Controllers\Hooks\ActionHooks;
|
15 |
+
use RT\ThePostGrid\Controllers\WidgetController;
|
16 |
use RT\ThePostGrid\Helpers\Install;
|
17 |
use RT\ThePostGrid\Controllers\Admin\UpgradeController;
|
18 |
|
21 |
if ( ! class_exists( RtTpg::class ) ) {
|
22 |
final class RtTpg {
|
23 |
|
24 |
+
public $test;
|
25 |
public $post_type = "rttpg";
|
26 |
+
public $options = [
|
27 |
+
'settings' => 'rt_the_post_grid_settings',
|
28 |
+
'version' => RT_THE_POST_GRID_VERSION,
|
29 |
+
'installed_version' => 'rt_the_post_grid_current_version',
|
30 |
+
'slug' => RT_THE_POST_GRID_PLUGIN_SLUG,
|
31 |
+
];
|
32 |
+
public $defaultSettings = [
|
33 |
+
'popup_fields' => [
|
34 |
+
'title',
|
35 |
+
'feature_img',
|
36 |
+
'content',
|
37 |
+
'post_date',
|
38 |
+
'author',
|
39 |
+
'categories',
|
40 |
+
'tags',
|
41 |
+
'social_share',
|
42 |
+
],
|
43 |
+
'social_share_items' => [
|
44 |
+
'facebook',
|
45 |
+
'twitter',
|
46 |
+
'linkedin',
|
47 |
+
],
|
48 |
+
];
|
|
|
|
|
49 |
|
50 |
protected static $_instance;
|
51 |
|
58 |
* Create an inaccessible constructor.
|
59 |
*/
|
60 |
private function __construct() {
|
61 |
+
$this->test = 'test value';
|
62 |
$this->__init();
|
63 |
}
|
64 |
|
84 |
new PostTypeController();
|
85 |
new AjaxController();
|
86 |
new ScriptController();
|
87 |
+
new WidgetController();
|
88 |
|
89 |
if ( is_admin() ) {
|
90 |
new AdminAjaxController();
|
92 |
new MetaController();
|
93 |
}
|
94 |
|
95 |
+
if ( ! isset( $settings['tpg_block_type'] ) || in_array( $settings['tpg_block_type'], [ 'default',
|
96 |
+
'shortcode'
|
97 |
+
] ) ) {
|
98 |
new ShortcodeController();
|
99 |
new GutenBergController();
|
100 |
}
|
104 |
|
105 |
( new SettingsController() )->init();
|
106 |
|
107 |
+
if ( ! isset( $settings['tpg_block_type'] ) || in_array( $settings['tpg_block_type'], [ 'default',
|
108 |
+
'elementor'
|
109 |
+
] ) ) {
|
110 |
new ElementorController();
|
111 |
}
|
112 |
|
187 |
* @return string
|
188 |
*/
|
189 |
public function tpg_can_be_rtl( $file ) {
|
190 |
+
$file = ltrim( str_replace( '.css', '', $file ), '/' );
|
191 |
|
192 |
if ( is_rtl() ) {
|
193 |
+
$file .= '.rtl';
|
194 |
}
|
195 |
|
196 |
+
return trailingslashit( RT_THE_POST_GRID_PLUGIN_URL . '/assets' ) . $file . '.min.css';
|
197 |
}
|
198 |
|
199 |
/**
|
app/Widgets/elementor/base.php
CHANGED
@@ -103,7 +103,6 @@ abstract class Custom_Widget_Base extends Widget_Base {
|
|
103 |
echo ob_get_clean();
|
104 |
}
|
105 |
|
106 |
-
|
107 |
public function tpg_template_path( $data ) {
|
108 |
$layout = str_replace( '-2', '', $data['layout'] );
|
109 |
$template_name = '/the-post-grid/elementor/' . $layout . '.php';
|
103 |
echo ob_get_clean();
|
104 |
}
|
105 |
|
|
|
106 |
public function tpg_template_path( $data ) {
|
107 |
$layout = str_replace( '-2', '', $data['layout'] );
|
108 |
$template_name = '/the-post-grid/elementor/' . $layout . '.php';
|
app/Widgets/elementor/rtTPGElementorHelper.php
CHANGED
@@ -271,11 +271,12 @@ class rtTPGElementorHelper {
|
|
271 |
}
|
272 |
|
273 |
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
|
|
279 |
public static function query_builder( $ref, $layout_type = '' ) {
|
280 |
$post_types = Fns::get_post_types();
|
281 |
|
@@ -389,6 +390,17 @@ class rtTPGElementorHelper {
|
|
389 |
'description' => __( 'Number of posts to skip. The offset parameter is ignored when post limit => -1 is used.', 'the-post-grid' ),
|
390 |
]
|
391 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
392 |
}
|
393 |
$ref->end_controls_section();
|
394 |
}
|
@@ -721,7 +733,14 @@ class rtTPGElementorHelper {
|
|
721 |
'description' => __( 'If you use card border then equal height will work. ', 'the-post-grid' ) . $ref->get_pro_message( "masonry layout" ),
|
722 |
'classes' => rtTPG()->hasPro() ? '' : 'tpg-should-hide-field',
|
723 |
'condition' => [
|
724 |
-
$prefix . '_layout!' => [ 'grid-layout2',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
725 |
],
|
726 |
]
|
727 |
);
|
@@ -788,7 +807,12 @@ class rtTPGElementorHelper {
|
|
788 |
'space-between' => __( 'Space Between', 'the-post-grid' ),
|
789 |
],
|
790 |
'condition' => [
|
791 |
-
$prefix . '_layout!' => [ 'slider-layout1',
|
|
|
|
|
|
|
|
|
|
|
792 |
],
|
793 |
'selectors' => [
|
794 |
'{{WRAPPER}} .tpg-el-main-wrapper .grid-behaviour .rt-holder .rt-el-content-wrapper .gallery-content' => 'justify-content: {{VALUE}};height:100%;',
|
@@ -818,9 +842,9 @@ class rtTPGElementorHelper {
|
|
818 |
],
|
819 |
],
|
820 |
'prefix_class' => 'tpg-wrapper-align-',
|
821 |
-
'render_type'
|
822 |
'toggle' => true,
|
823 |
-
'selectors'
|
824 |
'{{WRAPPER}} .tpg-post-holder div' => 'text-align: {{VALUE}};',
|
825 |
],
|
826 |
'condition' => [
|
@@ -1024,7 +1048,11 @@ class rtTPGElementorHelper {
|
|
1024 |
}
|
1025 |
$taxonomies_list = [];
|
1026 |
foreach ( $_taxonomies as $tax ) {
|
1027 |
-
if ( in_array( $tax->name, [ 'post_format',
|
|
|
|
|
|
|
|
|
1028 |
continue;
|
1029 |
}
|
1030 |
$taxonomies_list[ $tax->name ] = $tax->label;
|
@@ -1070,7 +1098,11 @@ class rtTPGElementorHelper {
|
|
1070 |
);
|
1071 |
|
1072 |
foreach ( $_taxonomies as $tax ) {
|
1073 |
-
if ( in_array( $tax->name, [ 'post_format',
|
|
|
|
|
|
|
|
|
1074 |
continue;
|
1075 |
}
|
1076 |
|
@@ -1370,10 +1402,10 @@ class rtTPGElementorHelper {
|
|
1370 |
'icon' => 'eicon-text-align-right',
|
1371 |
],
|
1372 |
],
|
1373 |
-
'selectors'
|
1374 |
'{{WRAPPER}} .tpg-post-holder div' => 'text-align: {{VALUE}};',
|
1375 |
],
|
1376 |
-
'render_type'
|
1377 |
'prefix_class' => 'tpg-wrapper-align-',
|
1378 |
'toggle' => true,
|
1379 |
]
|
@@ -1386,7 +1418,7 @@ class rtTPGElementorHelper {
|
|
1386 |
* Pagination and Load more style tab
|
1387 |
*
|
1388 |
* @param $ref
|
1389 |
-
* @param
|
1390 |
*/
|
1391 |
public static function pagination_settings( $ref, $layout_type = '' ) {
|
1392 |
$ref->start_controls_section(
|
@@ -2167,7 +2199,7 @@ class rtTPGElementorHelper {
|
|
2167 |
'label' => __( 'Default Image', 'the-post-grid' ) . $ref->pro_label,
|
2168 |
'type' => \Elementor\Controls_Manager::MEDIA,
|
2169 |
'default' => [
|
2170 |
-
'url' => rtTPG()->get_assets_uri('images/placeholder.png'),
|
2171 |
],
|
2172 |
'condition' => [
|
2173 |
'is_default_img' => 'yes',
|
@@ -3705,7 +3737,14 @@ class rtTPGElementorHelper {
|
|
3705 |
if ( in_array( $prefix, [ 'grid_hover', 'slider' ] ) ) {
|
3706 |
if ( 'slider' == $prefix ) {
|
3707 |
$thumbnail_padding_condition = [
|
3708 |
-
'slider_layout' => [ 'slider-layout4',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3709 |
];
|
3710 |
} else {
|
3711 |
$thumbnail_padding_condition = [
|
@@ -6820,7 +6859,11 @@ class rtTPGElementorHelper {
|
|
6820 |
'{{WRAPPER}} .rt-tpg-container .slider-column.swiper-slide .rt-slider-item' => 'padding-top: {{SIZE}}{{UNIT}}; padding-bottom: {{SIZE}}{{UNIT}};',
|
6821 |
],
|
6822 |
'condition' => [
|
6823 |
-
$prefix . '_layout!' => [ 'slider-layout10',
|
|
|
|
|
|
|
|
|
6824 |
],
|
6825 |
]
|
6826 |
);
|
@@ -6836,7 +6879,7 @@ class rtTPGElementorHelper {
|
|
6836 |
'return_value' => 'yes',
|
6837 |
'default' => 'yes',
|
6838 |
'condition' => [
|
6839 |
-
$prefix . '_layout!' => [ 'slider-
|
6840 |
],
|
6841 |
]
|
6842 |
);
|
@@ -6856,7 +6899,7 @@ class rtTPGElementorHelper {
|
|
6856 |
],
|
6857 |
'condition' => [
|
6858 |
'arrows' => 'yes',
|
6859 |
-
$prefix . '_layout!' => [ 'slider-
|
6860 |
],
|
6861 |
'prefix_class' => 'slider-arrow-position-',
|
6862 |
]
|
@@ -6874,7 +6917,24 @@ class rtTPGElementorHelper {
|
|
6874 |
'prefix_class' => 'slider-dot-enable-',
|
6875 |
'render_type' => 'template',
|
6876 |
'condition' => [
|
6877 |
-
$prefix . '_layout!' => [ 'slider-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6878 |
],
|
6879 |
]
|
6880 |
);
|
@@ -6891,7 +6951,7 @@ class rtTPGElementorHelper {
|
|
6891 |
],
|
6892 |
'condition' => [
|
6893 |
'dots' => 'yes',
|
6894 |
-
$prefix . '_layout!' => [ 'slider-
|
6895 |
],
|
6896 |
'prefix_class' => 'slider-dots-style-',
|
6897 |
]
|
@@ -6945,6 +7005,21 @@ class rtTPGElementorHelper {
|
|
6945 |
'label_off' => __( 'No', 'the-post-grid' ),
|
6946 |
'return_value' => 'yes',
|
6947 |
'default' => 'yes',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6948 |
]
|
6949 |
);
|
6950 |
|
@@ -6960,6 +7035,7 @@ class rtTPGElementorHelper {
|
|
6960 |
'default' => false,
|
6961 |
'condition' => [
|
6962 |
'enable_2_rows!' => 'yes',
|
|
|
6963 |
],
|
6964 |
]
|
6965 |
);
|
@@ -6974,6 +7050,7 @@ class rtTPGElementorHelper {
|
|
6974 |
'return_value' => 'yes',
|
6975 |
'default' => false,
|
6976 |
'prefix_class' => 'is-lazy-load-',
|
|
|
6977 |
]
|
6978 |
);
|
6979 |
|
@@ -7002,7 +7079,11 @@ class rtTPGElementorHelper {
|
|
7002 |
'render_type' => 'template',
|
7003 |
'description' => __( 'If you use 2 rows then you have to put an even number for post limit', 'the-post-grid' ),
|
7004 |
'condition' => [
|
7005 |
-
$prefix . '_layout!' => [ 'slider-layout13',
|
|
|
|
|
|
|
|
|
7006 |
],
|
7007 |
]
|
7008 |
);
|
271 |
}
|
272 |
|
273 |
|
274 |
+
/**
|
275 |
+
* @param $ref
|
276 |
+
* @param $layout_type
|
277 |
+
*
|
278 |
+
* @return void
|
279 |
+
*/
|
280 |
public static function query_builder( $ref, $layout_type = '' ) {
|
281 |
$post_types = Fns::get_post_types();
|
282 |
|
390 |
'description' => __( 'Number of posts to skip. The offset parameter is ignored when post limit => -1 is used.', 'the-post-grid' ),
|
391 |
]
|
392 |
);
|
393 |
+
|
394 |
+
$ref->add_control(
|
395 |
+
'no_posts_found_text_archive',
|
396 |
+
[
|
397 |
+
'label' => __( 'No post found Text', 'the-post-grid' ),
|
398 |
+
'type' => \Elementor\Controls_Manager::TEXT,
|
399 |
+
'default' => __( 'No posts found.', 'the-post-grid' ),
|
400 |
+
'placeholder' => __( 'Enter No post found', 'the-post-grid' ),
|
401 |
+
'separator' => 'before',
|
402 |
+
]
|
403 |
+
);
|
404 |
}
|
405 |
$ref->end_controls_section();
|
406 |
}
|
733 |
'description' => __( 'If you use card border then equal height will work. ', 'the-post-grid' ) . $ref->get_pro_message( "masonry layout" ),
|
734 |
'classes' => rtTPG()->hasPro() ? '' : 'tpg-should-hide-field',
|
735 |
'condition' => [
|
736 |
+
$prefix . '_layout!' => [ 'grid-layout2',
|
737 |
+
'grid-layout5',
|
738 |
+
'grid-layout5-2',
|
739 |
+
'grid-layout6',
|
740 |
+
'grid-layout6-2',
|
741 |
+
'grid-layout7',
|
742 |
+
'grid-layout7-2'
|
743 |
+
],
|
744 |
],
|
745 |
]
|
746 |
);
|
807 |
'space-between' => __( 'Space Between', 'the-post-grid' ),
|
808 |
],
|
809 |
'condition' => [
|
810 |
+
$prefix . '_layout!' => [ 'slider-layout1',
|
811 |
+
'slider-layout2',
|
812 |
+
'slider-layout3',
|
813 |
+
'slider-layout13',
|
814 |
+
'grid-layout7'
|
815 |
+
],
|
816 |
],
|
817 |
'selectors' => [
|
818 |
'{{WRAPPER}} .tpg-el-main-wrapper .grid-behaviour .rt-holder .rt-el-content-wrapper .gallery-content' => 'justify-content: {{VALUE}};height:100%;',
|
842 |
],
|
843 |
],
|
844 |
'prefix_class' => 'tpg-wrapper-align-',
|
845 |
+
'render_type' => 'template',
|
846 |
'toggle' => true,
|
847 |
+
'selectors' => [
|
848 |
'{{WRAPPER}} .tpg-post-holder div' => 'text-align: {{VALUE}};',
|
849 |
],
|
850 |
'condition' => [
|
1048 |
}
|
1049 |
$taxonomies_list = [];
|
1050 |
foreach ( $_taxonomies as $tax ) {
|
1051 |
+
if ( in_array( $tax->name, [ 'post_format',
|
1052 |
+
'elementor_library_type',
|
1053 |
+
'product_visibility',
|
1054 |
+
'product_shipping_class'
|
1055 |
+
] ) ) {
|
1056 |
continue;
|
1057 |
}
|
1058 |
$taxonomies_list[ $tax->name ] = $tax->label;
|
1098 |
);
|
1099 |
|
1100 |
foreach ( $_taxonomies as $tax ) {
|
1101 |
+
if ( in_array( $tax->name, [ 'post_format',
|
1102 |
+
'elementor_library_type',
|
1103 |
+
'product_visibility',
|
1104 |
+
'product_shipping_class'
|
1105 |
+
] ) ) {
|
1106 |
continue;
|
1107 |
}
|
1108 |
|
1402 |
'icon' => 'eicon-text-align-right',
|
1403 |
],
|
1404 |
],
|
1405 |
+
'selectors' => [
|
1406 |
'{{WRAPPER}} .tpg-post-holder div' => 'text-align: {{VALUE}};',
|
1407 |
],
|
1408 |
+
'render_type' => 'template',
|
1409 |
'prefix_class' => 'tpg-wrapper-align-',
|
1410 |
'toggle' => true,
|
1411 |
]
|
1418 |
* Pagination and Load more style tab
|
1419 |
*
|
1420 |
* @param $ref
|
1421 |
+
* @param bool $is_print
|
1422 |
*/
|
1423 |
public static function pagination_settings( $ref, $layout_type = '' ) {
|
1424 |
$ref->start_controls_section(
|
2199 |
'label' => __( 'Default Image', 'the-post-grid' ) . $ref->pro_label,
|
2200 |
'type' => \Elementor\Controls_Manager::MEDIA,
|
2201 |
'default' => [
|
2202 |
+
'url' => rtTPG()->get_assets_uri( 'images/placeholder.png' ),
|
2203 |
],
|
2204 |
'condition' => [
|
2205 |
'is_default_img' => 'yes',
|
3737 |
if ( in_array( $prefix, [ 'grid_hover', 'slider' ] ) ) {
|
3738 |
if ( 'slider' == $prefix ) {
|
3739 |
$thumbnail_padding_condition = [
|
3740 |
+
'slider_layout' => [ 'slider-layout4',
|
3741 |
+
'slider-layout5',
|
3742 |
+
'slider-layout6',
|
3743 |
+
'slider-layout7',
|
3744 |
+
'slider-layout8',
|
3745 |
+
'slider-layout9',
|
3746 |
+
'slider-layout10'
|
3747 |
+
],
|
3748 |
];
|
3749 |
} else {
|
3750 |
$thumbnail_padding_condition = [
|
6859 |
'{{WRAPPER}} .rt-tpg-container .slider-column.swiper-slide .rt-slider-item' => 'padding-top: {{SIZE}}{{UNIT}}; padding-bottom: {{SIZE}}{{UNIT}};',
|
6860 |
],
|
6861 |
'condition' => [
|
6862 |
+
$prefix . '_layout!' => [ 'slider-layout10',
|
6863 |
+
'slider-layout11',
|
6864 |
+
'slider-layout12',
|
6865 |
+
'slider-layout13'
|
6866 |
+
],
|
6867 |
],
|
6868 |
]
|
6869 |
);
|
6879 |
'return_value' => 'yes',
|
6880 |
'default' => 'yes',
|
6881 |
'condition' => [
|
6882 |
+
$prefix . '_layout!' => [ 'slider-layout11', 'slider-layout12' ],
|
6883 |
],
|
6884 |
]
|
6885 |
);
|
6899 |
],
|
6900 |
'condition' => [
|
6901 |
'arrows' => 'yes',
|
6902 |
+
$prefix . '_layout!' => [ 'slider-layout11', 'slider-layout12' ],
|
6903 |
],
|
6904 |
'prefix_class' => 'slider-arrow-position-',
|
6905 |
]
|
6917 |
'prefix_class' => 'slider-dot-enable-',
|
6918 |
'render_type' => 'template',
|
6919 |
'condition' => [
|
6920 |
+
$prefix . '_layout!' => [ 'slider-layout11', 'slider-layout12' ],
|
6921 |
+
],
|
6922 |
+
]
|
6923 |
+
);
|
6924 |
+
|
6925 |
+
$ref->add_control(
|
6926 |
+
'dynamic_dots',
|
6927 |
+
[
|
6928 |
+
'label' => __( 'Enable Dynamic Dots', 'the-post-grid' ),
|
6929 |
+
'type' => \Elementor\Controls_Manager::SWITCHER,
|
6930 |
+
'label_on' => __( 'Show', 'the-post-grid' ),
|
6931 |
+
'label_off' => __( 'Hide', 'the-post-grid' ),
|
6932 |
+
'return_value' => 'yes',
|
6933 |
+
'default' => 'no',
|
6934 |
+
'render_type' => 'template',
|
6935 |
+
'condition' => [
|
6936 |
+
'dots' => 'yes',
|
6937 |
+
$prefix . '_layout!' => [ 'slider-layout11', 'slider-layout12' ],
|
6938 |
],
|
6939 |
]
|
6940 |
);
|
6951 |
],
|
6952 |
'condition' => [
|
6953 |
'dots' => 'yes',
|
6954 |
+
$prefix . '_layout!' => [ 'slider-layout11', 'slider-layout12' ],
|
6955 |
],
|
6956 |
'prefix_class' => 'slider-dots-style-',
|
6957 |
]
|
7005 |
'label_off' => __( 'No', 'the-post-grid' ),
|
7006 |
'return_value' => 'yes',
|
7007 |
'default' => 'yes',
|
7008 |
+
'condition' => [
|
7009 |
+
'autoplay' => 'yes',
|
7010 |
+
],
|
7011 |
+
]
|
7012 |
+
);
|
7013 |
+
|
7014 |
+
$ref->add_control(
|
7015 |
+
'grabCursor',
|
7016 |
+
[
|
7017 |
+
'label' => __( 'Allow Touch Move', 'the-post-grid' ),
|
7018 |
+
'type' => \Elementor\Controls_Manager::SWITCHER,
|
7019 |
+
'label_on' => __( 'Yes', 'the-post-grid' ),
|
7020 |
+
'label_off' => __( 'No', 'the-post-grid' ),
|
7021 |
+
'return_value' => 'yes',
|
7022 |
+
'default' => 'yes',
|
7023 |
]
|
7024 |
);
|
7025 |
|
7035 |
'default' => false,
|
7036 |
'condition' => [
|
7037 |
'enable_2_rows!' => 'yes',
|
7038 |
+
$prefix . '_layout!' => [ 'slider-layout11', 'slider-layout12' ],
|
7039 |
],
|
7040 |
]
|
7041 |
);
|
7050 |
'return_value' => 'yes',
|
7051 |
'default' => false,
|
7052 |
'prefix_class' => 'is-lazy-load-',
|
7053 |
+
'render_type' => 'template',
|
7054 |
]
|
7055 |
);
|
7056 |
|
7079 |
'render_type' => 'template',
|
7080 |
'description' => __( 'If you use 2 rows then you have to put an even number for post limit', 'the-post-grid' ),
|
7081 |
'condition' => [
|
7082 |
+
$prefix . '_layout!' => [ 'slider-layout13',
|
7083 |
+
'slider-layout11',
|
7084 |
+
'slider-layout12',
|
7085 |
+
'slider-layout10'
|
7086 |
+
],
|
7087 |
],
|
7088 |
]
|
7089 |
);
|
app/Widgets/elementor/widgets/grid-hover-layout-archive.php
CHANGED
@@ -31,6 +31,27 @@ class TPGGridHoverLayoutArchive extends Custom_Widget_Base {
|
|
31 |
$this->tpg_category = $this->tpg_archive_category;
|
32 |
}
|
33 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
protected function register_controls() {
|
35 |
/**
|
36 |
* Content Tab
|
@@ -140,6 +161,10 @@ class TPGGridHoverLayoutArchive extends Custom_Widget_Base {
|
|
140 |
add_action( 'wp_footer', [ $this, 'get_modal_markup' ] );
|
141 |
}
|
142 |
|
|
|
|
|
|
|
|
|
143 |
//Query
|
144 |
$query_args = rtTPGElementorQuery::post_query_builder( $data, $_prefix );
|
145 |
$query = new WP_Query( $query_args );
|
@@ -174,6 +199,17 @@ class TPGGridHoverLayoutArchive extends Custom_Widget_Base {
|
|
174 |
data-el-path='<?php echo esc_attr( $template_path ); ?>'
|
175 |
>
|
176 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
177 |
$wrapper_class = [];
|
178 |
if ( in_array( $_layout,
|
179 |
[
|
@@ -215,8 +251,8 @@ class TPGGridHoverLayoutArchive extends Custom_Widget_Base {
|
|
215 |
$pCount ++;
|
216 |
}
|
217 |
} else {
|
218 |
-
if ( $data['
|
219 |
-
printf( "<div class='no_posts_found_text'>%s</div>", esc_html( $data['
|
220 |
} else {
|
221 |
printf( "<div class='no_posts_found_text'>%s</div>", esc_html__( 'No post found', 'the-post-grid' ) );
|
222 |
}
|
31 |
$this->tpg_category = $this->tpg_archive_category;
|
32 |
}
|
33 |
|
34 |
+
public function get_script_depends() {
|
35 |
+
$scripts = [];
|
36 |
+
array_push( $scripts, 'imagesloaded' );
|
37 |
+
array_push( $scripts, 'rt-tpg' );
|
38 |
+
array_push( $scripts, 'rt-tpg-el-pro' );
|
39 |
+
|
40 |
+
return $scripts;
|
41 |
+
}
|
42 |
+
|
43 |
+
public function get_style_depends() {
|
44 |
+
$settings = get_option( rtTPG()->options['settings'] );
|
45 |
+
$style = [];
|
46 |
+
|
47 |
+
if ( isset( $settings['tpg_load_script'] ) ) {
|
48 |
+
array_push( $style, 'rt-fontawsome' );
|
49 |
+
array_push( $style, 'rt-tpg-elementor' );
|
50 |
+
}
|
51 |
+
|
52 |
+
return $style;
|
53 |
+
}
|
54 |
+
|
55 |
protected function register_controls() {
|
56 |
/**
|
57 |
* Content Tab
|
161 |
add_action( 'wp_footer', [ $this, 'get_modal_markup' ] );
|
162 |
}
|
163 |
|
164 |
+
if ( 'show' == $data['show_pagination'] && 'pagination_ajax' == $data['pagination_type'] ) {
|
165 |
+
wp_enqueue_script( 'rt-pagination' );
|
166 |
+
}
|
167 |
+
|
168 |
//Query
|
169 |
$query_args = rtTPGElementorQuery::post_query_builder( $data, $_prefix );
|
170 |
$query = new WP_Query( $query_args );
|
199 |
data-el-path='<?php echo esc_attr( $template_path ); ?>'
|
200 |
>
|
201 |
<?php
|
202 |
+
$settings = get_option( rtTPG()->options['settings'] );
|
203 |
+
if ( isset( $settings['tpg_load_script'] ) && isset( $settings['tpg_enable_preloader'] ) ) {
|
204 |
+
?>
|
205 |
+
<div id="bottom-script-loader" class="bottom-script-loader">
|
206 |
+
<div class="rt-ball-clip-rotate">
|
207 |
+
<div></div>
|
208 |
+
</div>
|
209 |
+
</div>
|
210 |
+
<?php
|
211 |
+
}
|
212 |
+
|
213 |
$wrapper_class = [];
|
214 |
if ( in_array( $_layout,
|
215 |
[
|
251 |
$pCount ++;
|
252 |
}
|
253 |
} else {
|
254 |
+
if ( $data['no_posts_found_text_archive'] ) {
|
255 |
+
printf( "<div class='no_posts_found_text'>%s</div>", esc_html( $data['no_posts_found_text_archive'] ) );
|
256 |
} else {
|
257 |
printf( "<div class='no_posts_found_text'>%s</div>", esc_html__( 'No post found', 'the-post-grid' ) );
|
258 |
}
|
app/Widgets/elementor/widgets/grid-hover-layout.php
CHANGED
@@ -16,8 +16,8 @@ class TPGGridHoverLayout extends Custom_Widget_Base {
|
|
16 |
/**
|
17 |
* GridLayout constructor.
|
18 |
*
|
19 |
-
* @param
|
20 |
-
* @param
|
21 |
*
|
22 |
* @throws \Exception
|
23 |
*/
|
@@ -30,6 +30,27 @@ class TPGGridHoverLayout extends Custom_Widget_Base {
|
|
30 |
$this->tpg_icon = 'eicon-image-rollover tpg-grid-icon'; //.tpg-grid-icon class for just style
|
31 |
}
|
32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
protected function register_controls() {
|
34 |
/**
|
35 |
* Content Tab
|
@@ -128,7 +149,10 @@ class TPGGridHoverLayout extends Custom_Widget_Base {
|
|
128 |
protected function render() {
|
129 |
$data = $this->get_settings();
|
130 |
$_prefix = $this->prefix;
|
131 |
-
if ( ! rtTPG()->hasPro() && ! in_array( $data[ $_prefix . '_layout' ], [ 'grid_hover-layout1',
|
|
|
|
|
|
|
132 |
$data[ $_prefix . '_layout' ] = 'grid_hover-layout1';
|
133 |
}
|
134 |
|
@@ -140,6 +164,14 @@ class TPGGridHoverLayout extends Custom_Widget_Base {
|
|
140 |
add_action( 'wp_footer', [ $this, 'get_modal_markup' ] );
|
141 |
}
|
142 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
//Query
|
144 |
$query_args = rtTPGElementorQuery::post_query( $data, $_prefix );
|
145 |
$query = new WP_Query( $query_args );
|
@@ -174,11 +206,32 @@ class TPGGridHoverLayout extends Custom_Widget_Base {
|
|
174 |
data-el-path='<?php echo Fns::is_filter_enable( $data ) ? esc_attr( $template_path ) : ''; ?>'
|
175 |
>
|
176 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
177 |
$wrapper_class = [];
|
178 |
-
if ( in_array( $_layout, [ 'grid_hover-layout6',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
179 |
$wrapper_class[] = 'grid_hover-layout5';
|
180 |
}
|
181 |
-
$wrapper_class[] = str_replace('-2', null, $_layout);
|
182 |
$wrapper_class[] = 'tpg-even grid-behaviour';
|
183 |
$wrapper_class[] = $_prefix . '_layout_wrapper';
|
184 |
|
@@ -194,7 +247,8 @@ class TPGGridHoverLayout extends Custom_Widget_Base {
|
|
194 |
echo "</div>";
|
195 |
?>
|
196 |
|
197 |
-
<div data-title="Loading ..."
|
|
|
198 |
<?php
|
199 |
if ( $query->have_posts() ) {
|
200 |
$pCount = 1;
|
@@ -219,7 +273,7 @@ class TPGGridHoverLayout extends Custom_Widget_Base {
|
|
219 |
<?php echo $this->get_pagination_markup( $query, $data ); ?>
|
220 |
</div>
|
221 |
<?php
|
222 |
-
do_action('tpg_elementor_script');
|
223 |
}
|
224 |
|
225 |
}
|
16 |
/**
|
17 |
* GridLayout constructor.
|
18 |
*
|
19 |
+
* @param array $data
|
20 |
+
* @param null $args
|
21 |
*
|
22 |
* @throws \Exception
|
23 |
*/
|
30 |
$this->tpg_icon = 'eicon-image-rollover tpg-grid-icon'; //.tpg-grid-icon class for just style
|
31 |
}
|
32 |
|
33 |
+
public function get_script_depends() {
|
34 |
+
$scripts = [];
|
35 |
+
array_push( $scripts, 'imagesloaded' );
|
36 |
+
array_push( $scripts, 'rt-tpg' );
|
37 |
+
array_push( $scripts, 'rt-tpg-el-pro' );
|
38 |
+
|
39 |
+
return $scripts;
|
40 |
+
}
|
41 |
+
|
42 |
+
public function get_style_depends() {
|
43 |
+
$settings = get_option( rtTPG()->options['settings'] );
|
44 |
+
$style = [];
|
45 |
+
|
46 |
+
if ( isset( $settings['tpg_load_script'] ) ) {
|
47 |
+
array_push( $style, 'rt-fontawsome' );
|
48 |
+
array_push( $style, 'rt-tpg-elementor' );
|
49 |
+
}
|
50 |
+
|
51 |
+
return $style;
|
52 |
+
}
|
53 |
+
|
54 |
protected function register_controls() {
|
55 |
/**
|
56 |
* Content Tab
|
149 |
protected function render() {
|
150 |
$data = $this->get_settings();
|
151 |
$_prefix = $this->prefix;
|
152 |
+
if ( ! rtTPG()->hasPro() && ! in_array( $data[ $_prefix . '_layout' ], [ 'grid_hover-layout1',
|
153 |
+
'grid_hover-layout2',
|
154 |
+
'grid_hover-layout3'
|
155 |
+
] ) ) {
|
156 |
$data[ $_prefix . '_layout' ] = 'grid_hover-layout1';
|
157 |
}
|
158 |
|
164 |
add_action( 'wp_footer', [ $this, 'get_modal_markup' ] );
|
165 |
}
|
166 |
|
167 |
+
if(rtTPG()->hasPro() && 'button' == $data['filter_type'] && 'carousel' == $data['filter_btn_style']){
|
168 |
+
wp_enqueue_script('swiper');
|
169 |
+
}
|
170 |
+
|
171 |
+
if ( 'show' == $data['show_pagination'] && 'pagination_ajax' == $data['pagination_type'] ) {
|
172 |
+
wp_enqueue_script( 'rt-pagination' );
|
173 |
+
}
|
174 |
+
|
175 |
//Query
|
176 |
$query_args = rtTPGElementorQuery::post_query( $data, $_prefix );
|
177 |
$query = new WP_Query( $query_args );
|
206 |
data-el-path='<?php echo Fns::is_filter_enable( $data ) ? esc_attr( $template_path ) : ''; ?>'
|
207 |
>
|
208 |
<?php
|
209 |
+
$settings = get_option( rtTPG()->options['settings'] );
|
210 |
+
if ( isset( $settings['tpg_load_script'] ) && isset( $settings['tpg_enable_preloader'] ) ) {
|
211 |
+
?>
|
212 |
+
<div id="bottom-script-loader" class="bottom-script-loader">
|
213 |
+
<div class="rt-ball-clip-rotate">
|
214 |
+
<div></div>
|
215 |
+
</div>
|
216 |
+
</div>
|
217 |
+
<?php
|
218 |
+
}
|
219 |
+
|
220 |
$wrapper_class = [];
|
221 |
+
if ( in_array( $_layout, [ 'grid_hover-layout6',
|
222 |
+
'grid_hover-layout7',
|
223 |
+
'grid_hover-layout8',
|
224 |
+
'grid_hover-layout9',
|
225 |
+
'grid_hover-layout10',
|
226 |
+
'grid_hover-layout11',
|
227 |
+
'grid_hover-layout5-2',
|
228 |
+
'grid_hover-layout6-2',
|
229 |
+
'grid_hover-layout7-2',
|
230 |
+
'grid_hover-layout9-2',
|
231 |
+
] ) ) {
|
232 |
$wrapper_class[] = 'grid_hover-layout5';
|
233 |
}
|
234 |
+
$wrapper_class[] = str_replace( '-2', null, $_layout );
|
235 |
$wrapper_class[] = 'tpg-even grid-behaviour';
|
236 |
$wrapper_class[] = $_prefix . '_layout_wrapper';
|
237 |
|
247 |
echo "</div>";
|
248 |
?>
|
249 |
|
250 |
+
<div data-title="Loading ..."
|
251 |
+
class="rt-row rt-content-loader <?php echo esc_attr( implode( ' ', $wrapper_class ) ) ?>">
|
252 |
<?php
|
253 |
if ( $query->have_posts() ) {
|
254 |
$pCount = 1;
|
273 |
<?php echo $this->get_pagination_markup( $query, $data ); ?>
|
274 |
</div>
|
275 |
<?php
|
276 |
+
do_action( 'tpg_elementor_script' );
|
277 |
}
|
278 |
|
279 |
}
|
app/Widgets/elementor/widgets/grid-layout-archive.php
CHANGED
@@ -31,6 +31,27 @@ class TPGGridLayoutArchive extends Custom_Widget_Base {
|
|
31 |
$this->tpg_category = $this->tpg_archive_category;
|
32 |
}
|
33 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
protected function register_controls() {
|
35 |
/** Content TAB **/
|
36 |
|
@@ -137,10 +158,12 @@ class TPGGridLayoutArchive extends Custom_Widget_Base {
|
|
137 |
}
|
138 |
|
139 |
if ( 'masonry' === $data['grid_layout_style'] ) {
|
140 |
-
wp_enqueue_script( 'imagesloaded' );
|
141 |
wp_enqueue_script( 'rt-isotope-js' );
|
142 |
wp_enqueue_script( 'jquery-masonry' );
|
143 |
-
|
|
|
|
|
|
|
144 |
}
|
145 |
|
146 |
//Query
|
@@ -187,6 +210,17 @@ class TPGGridLayoutArchive extends Custom_Widget_Base {
|
|
187 |
>
|
188 |
<?php
|
189 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
$wrapper_class = [];
|
191 |
$wrapper_class[] = str_replace( '-2', null, $_layout );
|
192 |
$wrapper_class[] = 'grid-behaviour';
|
31 |
$this->tpg_category = $this->tpg_archive_category;
|
32 |
}
|
33 |
|
34 |
+
public function get_script_depends() {
|
35 |
+
$scripts = [];
|
36 |
+
array_push( $scripts, 'imagesloaded' );
|
37 |
+
array_push( $scripts, 'rt-tpg' );
|
38 |
+
array_push( $scripts, 'rt-tpg-el-pro' );
|
39 |
+
|
40 |
+
return $scripts;
|
41 |
+
}
|
42 |
+
|
43 |
+
public function get_style_depends() {
|
44 |
+
$settings = get_option( rtTPG()->options['settings'] );
|
45 |
+
$style = [];
|
46 |
+
|
47 |
+
if ( isset( $settings['tpg_load_script'] ) ) {
|
48 |
+
array_push( $style, 'rt-fontawsome' );
|
49 |
+
array_push( $style, 'rt-tpg-elementor' );
|
50 |
+
}
|
51 |
+
|
52 |
+
return $style;
|
53 |
+
}
|
54 |
+
|
55 |
protected function register_controls() {
|
56 |
/** Content TAB **/
|
57 |
|
158 |
}
|
159 |
|
160 |
if ( 'masonry' === $data['grid_layout_style'] ) {
|
|
|
161 |
wp_enqueue_script( 'rt-isotope-js' );
|
162 |
wp_enqueue_script( 'jquery-masonry' );
|
163 |
+
}
|
164 |
+
|
165 |
+
if ( 'show' == $data['show_pagination'] && 'pagination_ajax' == $data['pagination_type'] ) {
|
166 |
+
wp_enqueue_script( 'rt-pagination' );
|
167 |
}
|
168 |
|
169 |
//Query
|
210 |
>
|
211 |
<?php
|
212 |
|
213 |
+
$settings = get_option( rtTPG()->options['settings'] );
|
214 |
+
if ( isset( $settings['tpg_load_script'] ) && isset( $settings['tpg_enable_preloader'] ) ) {
|
215 |
+
?>
|
216 |
+
<div id="bottom-script-loader" class="bottom-script-loader">
|
217 |
+
<div class="rt-ball-clip-rotate">
|
218 |
+
<div></div>
|
219 |
+
</div>
|
220 |
+
</div>
|
221 |
+
<?php
|
222 |
+
}
|
223 |
+
|
224 |
$wrapper_class = [];
|
225 |
$wrapper_class[] = str_replace( '-2', null, $_layout );
|
226 |
$wrapper_class[] = 'grid-behaviour';
|
app/Widgets/elementor/widgets/grid-layout.php
CHANGED
@@ -16,8 +16,8 @@ class TPGGridLayout extends Custom_Widget_Base {
|
|
16 |
/**
|
17 |
* GridLayout constructor.
|
18 |
*
|
19 |
-
* @param
|
20 |
-
* @param
|
21 |
*
|
22 |
* @throws \Exception
|
23 |
*/
|
@@ -30,6 +30,29 @@ class TPGGridLayout extends Custom_Widget_Base {
|
|
30 |
$this->tpg_icon = 'eicon-posts-grid tpg-grid-icon'; //.tpg-grid-icon class for just style
|
31 |
}
|
32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
protected function register_controls() {
|
34 |
/** Content TAB **/
|
35 |
|
@@ -124,7 +147,10 @@ class TPGGridLayout extends Custom_Widget_Base {
|
|
124 |
$data = $this->get_settings();
|
125 |
$_prefix = $this->prefix;
|
126 |
|
127 |
-
if ( ! rtTPG()->hasPro() && ! in_array( $data[ $_prefix . '_layout' ], [ 'grid-layout1',
|
|
|
|
|
|
|
128 |
$data[ $_prefix . '_layout' ] = 'grid-layout1';
|
129 |
}
|
130 |
|
@@ -136,11 +162,17 @@ class TPGGridLayout extends Custom_Widget_Base {
|
|
136 |
add_action( 'wp_footer', [ $this, 'get_modal_markup' ] );
|
137 |
}
|
138 |
|
|
|
|
|
|
|
|
|
139 |
if ( 'masonry' === $data['grid_layout_style'] ) {
|
140 |
-
wp_enqueue_script( 'imagesloaded' );
|
141 |
wp_enqueue_script( 'rt-isotope-js' );
|
142 |
wp_enqueue_script( 'jquery-masonry' );
|
143 |
-
|
|
|
|
|
|
|
144 |
}
|
145 |
|
146 |
//Query
|
@@ -184,14 +216,29 @@ class TPGGridLayout extends Custom_Widget_Base {
|
|
184 |
data-el-query='<?php echo Fns::is_filter_enable( $data ) ? htmlspecialchars( wp_json_encode( $query_args ) ) : ''; ?>'
|
185 |
data-el-path='<?php echo Fns::is_filter_enable( $data ) ? esc_attr( $template_path ) : ''; ?>'
|
186 |
>
|
|
|
|
|
187 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
188 |
|
189 |
$wrapper_class = [];
|
190 |
$wrapper_class[] = str_replace( '-2', '', $_layout );
|
191 |
$wrapper_class[] = 'grid-behaviour';
|
192 |
$wrapper_class[] = ( in_array( $_layout, [ 'grid-layout2' ] ) ) ? "tpg-even" : $_layout_style;
|
193 |
$wrapper_class[] = $_prefix . '_layout_wrapper';
|
194 |
-
if ( 'masonry' === $_layout_style && in_array( $_layout, [ 'grid-layout1',
|
|
|
|
|
|
|
195 |
$wrapper_class[] = 'tpg-masonry';
|
196 |
}
|
197 |
|
@@ -207,7 +254,8 @@ class TPGGridLayout extends Custom_Widget_Base {
|
|
207 |
echo "</div>";
|
208 |
?>
|
209 |
|
210 |
-
<div data-title="Loading ..."
|
|
|
211 |
<?php
|
212 |
if ( $query->have_posts() ) {
|
213 |
$pCount = 1;
|
@@ -236,11 +284,11 @@ class TPGGridLayout extends Custom_Widget_Base {
|
|
236 |
<?php
|
237 |
if ( 'masonry' === $data[ $_prefix . '_layout_style' ] && \Elementor\Plugin::$instance->editor->is_edit_mode() ) {
|
238 |
?>
|
239 |
-
<script>jQuery('.rt-row.rt-content-loader.tpg-masonry').isotope();</script>
|
240 |
<?php
|
241 |
}
|
242 |
|
243 |
-
do_action('tpg_elementor_script');
|
244 |
}
|
245 |
|
246 |
}
|
16 |
/**
|
17 |
* GridLayout constructor.
|
18 |
*
|
19 |
+
* @param array $data
|
20 |
+
* @param null $args
|
21 |
*
|
22 |
* @throws \Exception
|
23 |
*/
|
30 |
$this->tpg_icon = 'eicon-posts-grid tpg-grid-icon'; //.tpg-grid-icon class for just style
|
31 |
}
|
32 |
|
33 |
+
|
34 |
+
public function get_script_depends() {
|
35 |
+
$scripts = [];
|
36 |
+
|
37 |
+
array_push( $scripts, 'imagesloaded' );
|
38 |
+
array_push( $scripts, 'rt-tpg' );
|
39 |
+
array_push( $scripts, 'rt-tpg-el-pro' );
|
40 |
+
|
41 |
+
return $scripts;
|
42 |
+
}
|
43 |
+
|
44 |
+
public function get_style_depends() {
|
45 |
+
$settings = get_option( rtTPG()->options['settings'] );
|
46 |
+
$style = [];
|
47 |
+
|
48 |
+
if ( isset( $settings['tpg_load_script'] ) ) {
|
49 |
+
array_push( $style, 'rt-fontawsome' );
|
50 |
+
array_push( $style, 'rt-tpg-elementor' );
|
51 |
+
}
|
52 |
+
|
53 |
+
return $style;
|
54 |
+
}
|
55 |
+
|
56 |
protected function register_controls() {
|
57 |
/** Content TAB **/
|
58 |
|
147 |
$data = $this->get_settings();
|
148 |
$_prefix = $this->prefix;
|
149 |
|
150 |
+
if ( ! rtTPG()->hasPro() && ! in_array( $data[ $_prefix . '_layout' ], [ 'grid-layout1',
|
151 |
+
'grid-layout4',
|
152 |
+
'grid-layout3'
|
153 |
+
] ) ) {
|
154 |
$data[ $_prefix . '_layout' ] = 'grid-layout1';
|
155 |
}
|
156 |
|
162 |
add_action( 'wp_footer', [ $this, 'get_modal_markup' ] );
|
163 |
}
|
164 |
|
165 |
+
if(rtTPG()->hasPro() && 'button' == $data['filter_type'] && 'carousel' == $data['filter_btn_style']){
|
166 |
+
wp_enqueue_script('swiper');
|
167 |
+
}
|
168 |
+
|
169 |
if ( 'masonry' === $data['grid_layout_style'] ) {
|
|
|
170 |
wp_enqueue_script( 'rt-isotope-js' );
|
171 |
wp_enqueue_script( 'jquery-masonry' );
|
172 |
+
}
|
173 |
+
|
174 |
+
if ( 'show' == $data['show_pagination'] && 'pagination_ajax' == $data['pagination_type'] ) {
|
175 |
+
wp_enqueue_script( 'rt-pagination' );
|
176 |
}
|
177 |
|
178 |
//Query
|
216 |
data-el-query='<?php echo Fns::is_filter_enable( $data ) ? htmlspecialchars( wp_json_encode( $query_args ) ) : ''; ?>'
|
217 |
data-el-path='<?php echo Fns::is_filter_enable( $data ) ? esc_attr( $template_path ) : ''; ?>'
|
218 |
>
|
219 |
+
|
220 |
+
|
221 |
<?php
|
222 |
+
$settings = get_option( rtTPG()->options['settings'] );
|
223 |
+
if ( isset( $settings['tpg_load_script'] ) && isset( $settings['tpg_enable_preloader'] ) ) {
|
224 |
+
?>
|
225 |
+
<div id="bottom-script-loader" class="bottom-script-loader">
|
226 |
+
<div class="rt-ball-clip-rotate">
|
227 |
+
<div></div>
|
228 |
+
</div>
|
229 |
+
</div>
|
230 |
+
<?php
|
231 |
+
}
|
232 |
|
233 |
$wrapper_class = [];
|
234 |
$wrapper_class[] = str_replace( '-2', '', $_layout );
|
235 |
$wrapper_class[] = 'grid-behaviour';
|
236 |
$wrapper_class[] = ( in_array( $_layout, [ 'grid-layout2' ] ) ) ? "tpg-even" : $_layout_style;
|
237 |
$wrapper_class[] = $_prefix . '_layout_wrapper';
|
238 |
+
if ( 'masonry' === $_layout_style && in_array( $_layout, [ 'grid-layout1',
|
239 |
+
'grid-layout3',
|
240 |
+
'grid-layout4'
|
241 |
+
] ) ) {
|
242 |
$wrapper_class[] = 'tpg-masonry';
|
243 |
}
|
244 |
|
254 |
echo "</div>";
|
255 |
?>
|
256 |
|
257 |
+
<div data-title="Loading ..."
|
258 |
+
class="rt-row rt-content-loader <?php echo esc_attr( implode( ' ', $wrapper_class ) ) ?>">
|
259 |
<?php
|
260 |
if ( $query->have_posts() ) {
|
261 |
$pCount = 1;
|
284 |
<?php
|
285 |
if ( 'masonry' === $data[ $_prefix . '_layout_style' ] && \Elementor\Plugin::$instance->editor->is_edit_mode() ) {
|
286 |
?>
|
287 |
+
<script>jQuery( '.rt-row.rt-content-loader.tpg-masonry' ).isotope();</script>
|
288 |
<?php
|
289 |
}
|
290 |
|
291 |
+
do_action( 'tpg_elementor_script' );
|
292 |
}
|
293 |
|
294 |
}
|
app/Widgets/elementor/widgets/list-layout-archive.php
CHANGED
@@ -31,6 +31,27 @@ class TPGListLayoutArchive extends Custom_Widget_Base {
|
|
31 |
$this->tpg_category = $this->tpg_archive_category;
|
32 |
}
|
33 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
protected function register_controls() {
|
35 |
/**
|
36 |
* Content Tabs
|
@@ -142,10 +163,12 @@ class TPGListLayoutArchive extends Custom_Widget_Base {
|
|
142 |
}
|
143 |
|
144 |
if ( 'masonry' === $data['list_layout_style'] ) {
|
145 |
-
wp_enqueue_script( 'imagesloaded' );
|
146 |
wp_enqueue_script( 'isotope' );
|
147 |
wp_enqueue_script( 'jquery-masonry' );
|
148 |
-
|
|
|
|
|
|
|
149 |
}
|
150 |
|
151 |
//Query
|
@@ -188,6 +211,17 @@ class TPGListLayoutArchive extends Custom_Widget_Base {
|
|
188 |
data-el-path='<?php echo esc_attr( $template_path ); ?>'
|
189 |
>
|
190 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
191 |
$wrapper_class = [];
|
192 |
$wrapper_class[] = str_replace( '-2', null, $_layout );
|
193 |
$wrapper_class[] = 'tpg-even list-behaviour';
|
31 |
$this->tpg_category = $this->tpg_archive_category;
|
32 |
}
|
33 |
|
34 |
+
public function get_script_depends() {
|
35 |
+
$scripts = [];
|
36 |
+
array_push( $scripts, 'imagesloaded' );
|
37 |
+
array_push( $scripts, 'rt-tpg' );
|
38 |
+
array_push( $scripts, 'rt-tpg-el-pro' );
|
39 |
+
|
40 |
+
return $scripts;
|
41 |
+
}
|
42 |
+
|
43 |
+
public function get_style_depends() {
|
44 |
+
$settings = get_option( rtTPG()->options['settings'] );
|
45 |
+
$style = [];
|
46 |
+
|
47 |
+
if ( isset( $settings['tpg_load_script'] ) ) {
|
48 |
+
array_push( $style, 'rt-fontawsome' );
|
49 |
+
array_push( $style, 'rt-tpg-elementor' );
|
50 |
+
}
|
51 |
+
|
52 |
+
return $style;
|
53 |
+
}
|
54 |
+
|
55 |
protected function register_controls() {
|
56 |
/**
|
57 |
* Content Tabs
|
163 |
}
|
164 |
|
165 |
if ( 'masonry' === $data['list_layout_style'] ) {
|
|
|
166 |
wp_enqueue_script( 'isotope' );
|
167 |
wp_enqueue_script( 'jquery-masonry' );
|
168 |
+
}
|
169 |
+
|
170 |
+
if ( 'show' == $data['show_pagination'] && 'pagination_ajax' == $data['pagination_type'] ) {
|
171 |
+
wp_enqueue_script( 'rt-pagination' );
|
172 |
}
|
173 |
|
174 |
//Query
|
211 |
data-el-path='<?php echo esc_attr( $template_path ); ?>'
|
212 |
>
|
213 |
<?php
|
214 |
+
$settings = get_option( rtTPG()->options['settings'] );
|
215 |
+
if ( isset( $settings['tpg_load_script'] ) && isset( $settings['tpg_enable_preloader'] ) ) {
|
216 |
+
?>
|
217 |
+
<div id="bottom-script-loader" class="bottom-script-loader">
|
218 |
+
<div class="rt-ball-clip-rotate">
|
219 |
+
<div></div>
|
220 |
+
</div>
|
221 |
+
</div>
|
222 |
+
<?php
|
223 |
+
}
|
224 |
+
|
225 |
$wrapper_class = [];
|
226 |
$wrapper_class[] = str_replace( '-2', null, $_layout );
|
227 |
$wrapper_class[] = 'tpg-even list-behaviour';
|
app/Widgets/elementor/widgets/list-layout.php
CHANGED
@@ -30,6 +30,27 @@ class TPGListLayout extends Custom_Widget_Base {
|
|
30 |
$this->tpg_icon = 'eicon-post-list tpg-grid-icon'; //.tpg-grid-icon class for just style
|
31 |
}
|
32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
protected function register_controls() {
|
34 |
/**
|
35 |
* Content Tabs
|
@@ -142,11 +163,17 @@ class TPGListLayout extends Custom_Widget_Base {
|
|
142 |
add_action( 'wp_footer', [ $this, 'get_modal_markup' ] );
|
143 |
}
|
144 |
|
|
|
|
|
|
|
|
|
145 |
if ( 'masonry' === $data['list_layout_style'] ) {
|
146 |
-
wp_enqueue_script( 'imagesloaded' );
|
147 |
wp_enqueue_script( 'isotope' );
|
148 |
wp_enqueue_script( 'jquery-masonry' );
|
149 |
-
|
|
|
|
|
|
|
150 |
}
|
151 |
|
152 |
$query_args = rtTPGElementorQuery::post_query( $data, $_prefix );
|
@@ -189,6 +216,18 @@ class TPGListLayout extends Custom_Widget_Base {
|
|
189 |
data-el-path='<?php echo Fns::is_filter_enable( $data ) ? esc_attr( $template_path ) : ''; ?>'
|
190 |
>
|
191 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
192 |
$wrapper_class = [];
|
193 |
$wrapper_class[] = str_replace( '-2', null, $_layout );
|
194 |
$wrapper_class[] = 'tpg-even list-behaviour';
|
30 |
$this->tpg_icon = 'eicon-post-list tpg-grid-icon'; //.tpg-grid-icon class for just style
|
31 |
}
|
32 |
|
33 |
+
public function get_script_depends() {
|
34 |
+
$scripts = [];
|
35 |
+
array_push( $scripts, 'rt-tpg' );
|
36 |
+
array_push( $scripts, 'imagesloaded' );
|
37 |
+
array_push( $scripts, 'rt-tpg-el-pro' );
|
38 |
+
|
39 |
+
return $scripts;
|
40 |
+
}
|
41 |
+
|
42 |
+
public function get_style_depends() {
|
43 |
+
$settings = get_option( rtTPG()->options['settings'] );
|
44 |
+
$style = [];
|
45 |
+
|
46 |
+
if ( isset( $settings['tpg_load_script'] ) ) {
|
47 |
+
array_push( $style, 'rt-fontawsome' );
|
48 |
+
array_push( $style, 'rt-tpg-elementor' );
|
49 |
+
}
|
50 |
+
|
51 |
+
return $style;
|
52 |
+
}
|
53 |
+
|
54 |
protected function register_controls() {
|
55 |
/**
|
56 |
* Content Tabs
|
163 |
add_action( 'wp_footer', [ $this, 'get_modal_markup' ] );
|
164 |
}
|
165 |
|
166 |
+
if(rtTPG()->hasPro() && 'button' == $data['filter_type'] && 'carousel' == $data['filter_btn_style']){
|
167 |
+
wp_enqueue_script('swiper');
|
168 |
+
}
|
169 |
+
|
170 |
if ( 'masonry' === $data['list_layout_style'] ) {
|
|
|
171 |
wp_enqueue_script( 'isotope' );
|
172 |
wp_enqueue_script( 'jquery-masonry' );
|
173 |
+
}
|
174 |
+
|
175 |
+
if ( 'show' == $data['show_pagination'] && 'pagination_ajax' == $data['pagination_type'] ) {
|
176 |
+
wp_enqueue_script( 'rt-pagination' );
|
177 |
}
|
178 |
|
179 |
$query_args = rtTPGElementorQuery::post_query( $data, $_prefix );
|
216 |
data-el-path='<?php echo Fns::is_filter_enable( $data ) ? esc_attr( $template_path ) : ''; ?>'
|
217 |
>
|
218 |
<?php
|
219 |
+
|
220 |
+
$settings = get_option( rtTPG()->options['settings'] );
|
221 |
+
if ( isset( $settings['tpg_load_script'] ) && isset( $settings['tpg_enable_preloader'] ) ) {
|
222 |
+
?>
|
223 |
+
<div id="bottom-script-loader" class="bottom-script-loader">
|
224 |
+
<div class="rt-ball-clip-rotate">
|
225 |
+
<div></div>
|
226 |
+
</div>
|
227 |
+
</div>
|
228 |
+
<?php
|
229 |
+
}
|
230 |
+
|
231 |
$wrapper_class = [];
|
232 |
$wrapper_class[] = str_replace( '-2', null, $_layout );
|
233 |
$wrapper_class[] = 'tpg-even list-behaviour';
|
app/Widgets/elementor/widgets/related-post.php
CHANGED
@@ -31,6 +31,27 @@ class TPGRelatedPost extends Custom_Widget_Base {
|
|
31 |
$this->tpg_category = $this->tpg_archive_category;
|
32 |
}
|
33 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
protected function register_controls() {
|
35 |
/**
|
36 |
* Content Tabs
|
@@ -142,6 +163,10 @@ class TPGRelatedPost extends Custom_Widget_Base {
|
|
142 |
add_action( 'wp_footer', [ $this, 'get_modal_markup' ], 1 );
|
143 |
}
|
144 |
|
|
|
|
|
|
|
|
|
145 |
//Query
|
146 |
$query_args = rtTPGElementorQuery::post_query_builder( $data, $_prefix, 'single' );
|
147 |
$query = new WP_Query( $query_args );
|
@@ -200,6 +225,17 @@ class TPGRelatedPost extends Custom_Widget_Base {
|
|
200 |
>
|
201 |
<?php
|
202 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
203 |
$wrapper_class = [];
|
204 |
$wrapper_class[] = 'rt-content-loader grid-behaviour';
|
205 |
|
31 |
$this->tpg_category = $this->tpg_archive_category;
|
32 |
}
|
33 |
|
34 |
+
public function get_script_depends() {
|
35 |
+
$scripts = [];
|
36 |
+
array_push( $scripts, 'imagesloaded' );
|
37 |
+
array_push( $scripts, 'rt-tpg' );
|
38 |
+
array_push( $scripts, 'rt-tpg-el-pro' );
|
39 |
+
|
40 |
+
return $scripts;
|
41 |
+
}
|
42 |
+
|
43 |
+
public function get_style_depends() {
|
44 |
+
$settings = get_option( rtTPG()->options['settings'] );
|
45 |
+
$style = [];
|
46 |
+
|
47 |
+
if ( isset( $settings['tpg_load_script'] ) ) {
|
48 |
+
array_push( $style, 'rt-fontawsome' );
|
49 |
+
array_push( $style, 'rt-tpg-elementor' );
|
50 |
+
}
|
51 |
+
|
52 |
+
return $style;
|
53 |
+
}
|
54 |
+
|
55 |
protected function register_controls() {
|
56 |
/**
|
57 |
* Content Tabs
|
163 |
add_action( 'wp_footer', [ $this, 'get_modal_markup' ], 1 );
|
164 |
}
|
165 |
|
166 |
+
if ( 'show' == $data['show_pagination'] && 'pagination_ajax' == $data['pagination_type'] ) {
|
167 |
+
wp_enqueue_script( 'rt-pagination' );
|
168 |
+
}
|
169 |
+
|
170 |
//Query
|
171 |
$query_args = rtTPGElementorQuery::post_query_builder( $data, $_prefix, 'single' );
|
172 |
$query = new WP_Query( $query_args );
|
225 |
>
|
226 |
<?php
|
227 |
|
228 |
+
$settings = get_option( rtTPG()->options['settings'] );
|
229 |
+
if ( isset( $settings['tpg_load_script'] ) && isset( $settings['tpg_enable_preloader'] ) ) {
|
230 |
+
?>
|
231 |
+
<div id="bottom-script-loader" class="bottom-script-loader">
|
232 |
+
<div class="rt-ball-clip-rotate">
|
233 |
+
<div></div>
|
234 |
+
</div>
|
235 |
+
</div>
|
236 |
+
<?php
|
237 |
+
}
|
238 |
+
|
239 |
$wrapper_class = [];
|
240 |
$wrapper_class[] = 'rt-content-loader grid-behaviour';
|
241 |
|
app/Widgets/elementor/widgets/slider-layout-archive.php
CHANGED
@@ -16,8 +16,8 @@ class TPGSliderLayoutArchive extends Custom_Widget_Base {
|
|
16 |
/**
|
17 |
* GridLayout constructor.
|
18 |
*
|
19 |
-
* @param
|
20 |
-
* @param
|
21 |
*
|
22 |
* @throws \Exception
|
23 |
*/
|
@@ -31,6 +31,31 @@ class TPGSliderLayoutArchive extends Custom_Widget_Base {
|
|
31 |
$this->tpg_category = $this->tpg_archive_category;
|
32 |
}
|
33 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
protected function register_controls() {
|
35 |
/**
|
36 |
* Content Tabs
|
@@ -204,6 +229,16 @@ class TPGSliderLayoutArchive extends Custom_Widget_Base {
|
|
204 |
>
|
205 |
<?php
|
206 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
207 |
|
208 |
$wrapper_class = [];
|
209 |
// $wrapper_class[] = $_layout;
|
@@ -253,6 +288,8 @@ class TPGSliderLayoutArchive extends Custom_Widget_Base {
|
|
253 |
"loop" => $data['infinite'] == "yes" ? true : false,
|
254 |
"lazyLoad" => $data['lazyLoad'] == "yes" ? true : false,
|
255 |
"autoHeight" => $data['autoHeight'] == "yes" ? true : false,
|
|
|
|
|
256 |
];
|
257 |
|
258 |
if ( $data['enable_2_rows'] == 'yes' ) {
|
@@ -361,7 +398,7 @@ class TPGSliderLayoutArchive extends Custom_Widget_Base {
|
|
361 |
|
362 |
</div>
|
363 |
<?php
|
364 |
-
do_action('tpg_elementor_script');
|
365 |
}
|
366 |
|
367 |
}
|
16 |
/**
|
17 |
* GridLayout constructor.
|
18 |
*
|
19 |
+
* @param array $data
|
20 |
+
* @param null $args
|
21 |
*
|
22 |
* @throws \Exception
|
23 |
*/
|
31 |
$this->tpg_category = $this->tpg_archive_category;
|
32 |
}
|
33 |
|
34 |
+
public function get_script_depends() {
|
35 |
+
$scripts = [];
|
36 |
+
|
37 |
+
array_push( $scripts, 'imagesloaded' );
|
38 |
+
array_push( $scripts, 'swiper' );
|
39 |
+
array_push( $scripts, 'rt-tpg' );
|
40 |
+
array_push( $scripts, 'rt-tpg-el-pro' );
|
41 |
+
|
42 |
+
return $scripts;
|
43 |
+
}
|
44 |
+
|
45 |
+
public function get_style_depends() {
|
46 |
+
$settings = get_option( rtTPG()->options['settings'] );
|
47 |
+
$style = [];
|
48 |
+
|
49 |
+
if ( isset( $settings['tpg_load_script'] ) ) {
|
50 |
+
array_push( $style, 'rt-fontawsome' );
|
51 |
+
array_push( $style, 'rt-tpg-elementor' );
|
52 |
+
array_push( $style, 'swiper' );
|
53 |
+
|
54 |
+
}
|
55 |
+
|
56 |
+
return $style;
|
57 |
+
}
|
58 |
+
|
59 |
protected function register_controls() {
|
60 |
/**
|
61 |
* Content Tabs
|
229 |
>
|
230 |
<?php
|
231 |
|
232 |
+
$settings = get_option( rtTPG()->options['settings'] );
|
233 |
+
if ( isset( $settings['tpg_load_script'] ) && isset( $settings['tpg_enable_preloader'] ) ) {
|
234 |
+
?>
|
235 |
+
<div id="bottom-script-loader" class="bottom-script-loader">
|
236 |
+
<div class="rt-ball-clip-rotate">
|
237 |
+
<div></div>
|
238 |
+
</div>
|
239 |
+
</div>
|
240 |
+
<?php
|
241 |
+
}
|
242 |
|
243 |
$wrapper_class = [];
|
244 |
// $wrapper_class[] = $_layout;
|
288 |
"loop" => $data['infinite'] == "yes" ? true : false,
|
289 |
"lazyLoad" => $data['lazyLoad'] == "yes" ? true : false,
|
290 |
"autoHeight" => $data['autoHeight'] == "yes" ? true : false,
|
291 |
+
"dynamic_dots" => $data['dynamic_dots'] == "yes" ? true : false,
|
292 |
+
"grabCursor" => $data['grabCursor'] == "yes" ? true : false,
|
293 |
];
|
294 |
|
295 |
if ( $data['enable_2_rows'] == 'yes' ) {
|
398 |
|
399 |
</div>
|
400 |
<?php
|
401 |
+
do_action( 'tpg_elementor_script' );
|
402 |
}
|
403 |
|
404 |
}
|
app/Widgets/elementor/widgets/slider-layout.php
CHANGED
@@ -16,8 +16,8 @@ class TPGSliderLayout extends Custom_Widget_Base {
|
|
16 |
/**
|
17 |
* GridLayout constructor.
|
18 |
*
|
19 |
-
* @param
|
20 |
-
* @param
|
21 |
*
|
22 |
* @throws \Exception
|
23 |
*/
|
@@ -30,6 +30,31 @@ class TPGSliderLayout extends Custom_Widget_Base {
|
|
30 |
$this->tpg_icon = 'eicon-post-slider tpg-grid-icon'; //.tpg-grid-icon class for just style
|
31 |
}
|
32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
protected function register_controls() {
|
34 |
/**
|
35 |
* Content Tabs
|
@@ -78,7 +103,6 @@ class TPGSliderLayout extends Custom_Widget_Base {
|
|
78 |
rtTPGElementorHelper::slider_settings( $this );
|
79 |
|
80 |
|
81 |
-
|
82 |
/**
|
83 |
* Style Tabs
|
84 |
* =============
|
@@ -159,15 +183,15 @@ class TPGSliderLayout extends Custom_Widget_Base {
|
|
159 |
* Post type render
|
160 |
*/
|
161 |
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
|
172 |
|
173 |
$post_data['enable_2_rows'] = $data['enable_2_rows'];
|
@@ -205,7 +229,6 @@ class TPGSliderLayout extends Custom_Widget_Base {
|
|
205 |
>
|
206 |
<?php
|
207 |
|
208 |
-
|
209 |
$wrapper_class = [];
|
210 |
// $wrapper_class[] = $_layout;
|
211 |
$wrapper_class[] = 'rt-content-loader grid-behaviour';
|
@@ -254,6 +277,8 @@ class TPGSliderLayout extends Custom_Widget_Base {
|
|
254 |
"loop" => $data['infinite'] == "yes" ? true : false,
|
255 |
"lazyLoad" => $data['lazyLoad'] == "yes" ? true : false,
|
256 |
"autoHeight" => $data['autoHeight'] == "yes" ? true : false,
|
|
|
|
|
257 |
];
|
258 |
|
259 |
if ( $data['enable_2_rows'] == 'yes' ) {
|
@@ -264,7 +289,8 @@ class TPGSliderLayout extends Custom_Widget_Base {
|
|
264 |
<div class="slider-main-wrapper <?php echo esc_attr( $_layout ) ?>">
|
265 |
<div class="rt-swiper-holder swiper"
|
266 |
data-rtowl-options='<?php echo wp_json_encode( $slider_data ) ?>'
|
267 |
-
dir="<?php echo esc_attr( $data['slider_direction'] ); ?>"
|
|
|
268 |
<div class="swiper-wrapper <?php echo esc_attr( implode( ' ', $wrapper_class ) ) ?>">
|
269 |
<?php
|
270 |
if ( $query->have_posts() ) {
|
@@ -319,7 +345,6 @@ class TPGSliderLayout extends Custom_Widget_Base {
|
|
319 |
$query->the_post();
|
320 |
set_query_var( 'tpg_post_count', $pCount );
|
321 |
set_query_var( 'tpg_total_posts', $query->post_count );
|
322 |
-
// $this->tpg_template( $post_data );
|
323 |
?>
|
324 |
<div class="swiper-slide">
|
325 |
<div class="post-thumbnail-wrap">
|
@@ -355,14 +380,10 @@ class TPGSliderLayout extends Custom_Widget_Base {
|
|
355 |
</div>
|
356 |
</div>
|
357 |
<?php endif; ?>
|
358 |
-
|
359 |
-
|
360 |
</div>
|
361 |
-
|
362 |
-
|
363 |
</div>
|
364 |
<?php
|
365 |
-
do_action('tpg_elementor_script');
|
366 |
}
|
367 |
|
368 |
}
|
16 |
/**
|
17 |
* GridLayout constructor.
|
18 |
*
|
19 |
+
* @param array $data
|
20 |
+
* @param null $args
|
21 |
*
|
22 |
* @throws \Exception
|
23 |
*/
|
30 |
$this->tpg_icon = 'eicon-post-slider tpg-grid-icon'; //.tpg-grid-icon class for just style
|
31 |
}
|
32 |
|
33 |
+
public function get_script_depends() {
|
34 |
+
$scripts = [];
|
35 |
+
|
36 |
+
array_push( $scripts, 'imagesloaded' );
|
37 |
+
array_push( $scripts, 'swiper' );
|
38 |
+
array_push( $scripts, 'rt-tpg' );
|
39 |
+
array_push( $scripts, 'rt-tpg-el-pro' );
|
40 |
+
|
41 |
+
return $scripts;
|
42 |
+
}
|
43 |
+
|
44 |
+
public function get_style_depends() {
|
45 |
+
$settings = get_option( rtTPG()->options['settings'] );
|
46 |
+
$style = [];
|
47 |
+
|
48 |
+
if ( isset( $settings['tpg_load_script'] ) ) {
|
49 |
+
array_push( $style, 'rt-fontawsome' );
|
50 |
+
array_push( $style, 'rt-tpg-elementor' );
|
51 |
+
array_push( $style, 'swiper' );
|
52 |
+
}
|
53 |
+
|
54 |
+
return $style;
|
55 |
+
}
|
56 |
+
|
57 |
+
|
58 |
protected function register_controls() {
|
59 |
/**
|
60 |
* Content Tabs
|
103 |
rtTPGElementorHelper::slider_settings( $this );
|
104 |
|
105 |
|
|
|
106 |
/**
|
107 |
* Style Tabs
|
108 |
* =============
|
183 |
* Post type render
|
184 |
*/
|
185 |
|
186 |
+
$post_types = Fns::get_post_types();
|
187 |
+
foreach ( $post_types as $post_type => $label ) {
|
188 |
+
$_taxonomies = get_object_taxonomies( $post_type, 'object' );
|
189 |
+
if ( empty( $_taxonomies ) ) {
|
190 |
+
continue;
|
191 |
+
}
|
192 |
+
$post_data[ $data['post_type'] . '_taxonomy' ] = $data[ $data['post_type'] . '_taxonomy' ];
|
193 |
+
$post_data[ $data['post_type'] . '_tags' ] = $data[ $data['post_type'] . '_tags' ];
|
194 |
+
}
|
195 |
|
196 |
|
197 |
$post_data['enable_2_rows'] = $data['enable_2_rows'];
|
229 |
>
|
230 |
<?php
|
231 |
|
|
|
232 |
$wrapper_class = [];
|
233 |
// $wrapper_class[] = $_layout;
|
234 |
$wrapper_class[] = 'rt-content-loader grid-behaviour';
|
277 |
"loop" => $data['infinite'] == "yes" ? true : false,
|
278 |
"lazyLoad" => $data['lazyLoad'] == "yes" ? true : false,
|
279 |
"autoHeight" => $data['autoHeight'] == "yes" ? true : false,
|
280 |
+
"dynamic_dots" => $data['dynamic_dots'] == "yes" ? true : false,
|
281 |
+
"grabCursor" => $data['grabCursor'] == "yes" ? true : false,
|
282 |
];
|
283 |
|
284 |
if ( $data['enable_2_rows'] == 'yes' ) {
|
289 |
<div class="slider-main-wrapper <?php echo esc_attr( $_layout ) ?>">
|
290 |
<div class="rt-swiper-holder swiper"
|
291 |
data-rtowl-options='<?php echo wp_json_encode( $slider_data ) ?>'
|
292 |
+
dir="<?php echo esc_attr( $data['slider_direction'] ); ?>"
|
293 |
+
>
|
294 |
<div class="swiper-wrapper <?php echo esc_attr( implode( ' ', $wrapper_class ) ) ?>">
|
295 |
<?php
|
296 |
if ( $query->have_posts() ) {
|
345 |
$query->the_post();
|
346 |
set_query_var( 'tpg_post_count', $pCount );
|
347 |
set_query_var( 'tpg_total_posts', $query->post_count );
|
|
|
348 |
?>
|
349 |
<div class="swiper-slide">
|
350 |
<div class="post-thumbnail-wrap">
|
380 |
</div>
|
381 |
</div>
|
382 |
<?php endif; ?>
|
|
|
|
|
383 |
</div>
|
|
|
|
|
384 |
</div>
|
385 |
<?php
|
386 |
+
do_action( 'tpg_elementor_script' );
|
387 |
}
|
388 |
|
389 |
}
|
assets/css/{admin-preview.css → admin/admin-preview.css}
RENAMED
@@ -1,5 +1,4 @@
|
|
1 |
-
@import url('
|
2 |
-
@import url('thepostgrid.css');
|
3 |
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
|
4 |
#tpg-preview-container .rt-tpg-utility .rt-tgp-load-more button {
|
5 |
border: 0;
|
1 |
+
@import url('../tpg-shortcode.min.css');
|
|
|
2 |
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
|
3 |
#tpg-preview-container .rt-tpg-utility .rt-tgp-load-more button {
|
4 |
border: 0;
|
assets/css/{admin.css → admin/admin.css}
RENAMED
@@ -212,8 +212,8 @@ ul#order-target {
|
|
212 |
}
|
213 |
|
214 |
ul#order-target li {
|
215 |
-
padding: 2px
|
216 |
-
margin: 4px
|
217 |
border: 1px solid #dddddd;
|
218 |
cursor: move;
|
219 |
-moz-border-radius: 6px;
|
@@ -245,7 +245,7 @@ ul#order-target li.placeholder {
|
|
245 |
}
|
246 |
|
247 |
.rt-loading {
|
248 |
-
background: url('
|
249 |
padding: 11px;
|
250 |
}
|
251 |
|
@@ -427,6 +427,7 @@ div#sc-post-post-source > .field-holder > .field > .field-holder:first-child {
|
|
427 |
z-index: 10;
|
428 |
border-radius: 4px;
|
429 |
border: 1px solid #d9e3ed;
|
|
|
430 |
}
|
431 |
|
432 |
#sc-style.rt-tab-content .field-holder .field {
|
@@ -1538,3 +1539,62 @@ input:checked + .rttm-switch-slider:before {
|
|
1538 |
border: 1px solid #b8cad6;
|
1539 |
background: white;
|
1540 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
212 |
}
|
213 |
|
214 |
ul#order-target li {
|
215 |
+
padding: 2px 0;
|
216 |
+
margin: 4px 0;
|
217 |
border: 1px solid #dddddd;
|
218 |
cursor: move;
|
219 |
-moz-border-radius: 6px;
|
245 |
}
|
246 |
|
247 |
.rt-loading {
|
248 |
+
background: url('../../images/loading.gif') no-repeat center center;
|
249 |
padding: 11px;
|
250 |
}
|
251 |
|
427 |
z-index: 10;
|
428 |
border-radius: 4px;
|
429 |
border: 1px solid #d9e3ed;
|
430 |
+
z-index: inherit;
|
431 |
}
|
432 |
|
433 |
#sc-style.rt-tab-content .field-holder .field {
|
1539 |
border: 1px solid #b8cad6;
|
1540 |
background: white;
|
1541 |
}
|
1542 |
+
|
1543 |
+
#tpg_common_settings_heading_holder {
|
1544 |
+
display: flex;
|
1545 |
+
flex-direction: column;
|
1546 |
+
background: #db1f31!important;
|
1547 |
+
padding: 13px 19px 15px;
|
1548 |
+
margin-top: -15px;
|
1549 |
+
margin-left: -15px;
|
1550 |
+
margin-right: -15px;
|
1551 |
+
}
|
1552 |
+
|
1553 |
+
#tpg_common_settings_heading_holder .field{
|
1554 |
+
background: none;
|
1555 |
+
border: none;
|
1556 |
+
padding: 10px 0 0;
|
1557 |
+
}
|
1558 |
+
|
1559 |
+
#tpg_common_settings_heading_holder.field-holder .field-label {
|
1560 |
+
width: 100%;
|
1561 |
+
font-size: 21px;
|
1562 |
+
border-bottom: 1px solid rgba(0,0,0,.2);
|
1563 |
+
padding-bottom: 11px;
|
1564 |
+
color: #ffffff;
|
1565 |
+
}
|
1566 |
+
#tpg_common_settings_heading_holder.field-holder .description {
|
1567 |
+
color: #ffffff;
|
1568 |
+
font-size: 17px;
|
1569 |
+
}
|
1570 |
+
|
1571 |
+
.tpg-shortcode-main-wrapper .swiper-navigation {
|
1572 |
+
top: -11px;
|
1573 |
+
right: 19px;
|
1574 |
+
}
|
1575 |
+
|
1576 |
+
.tpg-shortcode-main-wrapper .rt-swiper-holder {
|
1577 |
+
padding-bottom: 50px;
|
1578 |
+
}
|
1579 |
+
|
1580 |
+
body .rt-tpg-container .swiper-navigation .slider-btn {
|
1581 |
+
position: static;
|
1582 |
+
}
|
1583 |
+
|
1584 |
+
.tpg-block-type-elementor-or-shortcode .notice-for-warning {
|
1585 |
+
background: #db1f31;
|
1586 |
+
color: #fff;
|
1587 |
+
border: none;
|
1588 |
+
border-radius: 10px;
|
1589 |
+
}
|
1590 |
+
|
1591 |
+
.tpg-block-type-elementor-or-shortcode .notice-for-warning p {
|
1592 |
+
font-size: 20px;
|
1593 |
+
}
|
1594 |
+
|
1595 |
+
label[for="popup-fields-tpg_default_value"],
|
1596 |
+
label[for="item-fields-tpg_default_value"]{
|
1597 |
+
display: none !important;
|
1598 |
+
pointer-events: none;
|
1599 |
+
text-indent: -99999px;
|
1600 |
+
}
|
assets/css/{tpg-el-editor.css → admin/tpg-el-editor.css}
RENAMED
@@ -11,14 +11,6 @@
|
|
11 |
color: inherit !important;
|
12 |
}
|
13 |
|
14 |
-
#elementor-panel .elementor-control.elementor-control-separator-after:after {
|
15 |
-
bottom: 10px;
|
16 |
-
}
|
17 |
-
|
18 |
-
#elementor-panel .elementor-control.elementor-control-separator-after {
|
19 |
-
padding-bottom: 20px;
|
20 |
-
}
|
21 |
-
|
22 |
.elementor-nerd-box-title {
|
23 |
margin-top: 20px;
|
24 |
font-size: 16px;
|
@@ -354,39 +346,39 @@ body .elementor-panel .elementor-tab-control-settings a:before {
|
|
354 |
*************************/
|
355 |
|
356 |
.tpg-image-select.grid-layout .elementor-choices .elementor-choices-label:nth-of-type(1) {
|
357 |
-
background-image: url("
|
358 |
}
|
359 |
|
360 |
.tpg-image-select.grid-layout .elementor-choices .elementor-choices-label:nth-of-type(2) {
|
361 |
-
background-image: url("
|
362 |
}
|
363 |
|
364 |
.tpg-image-select.grid-layout .elementor-choices .elementor-choices-label:nth-of-type(3) {
|
365 |
-
background-image: url("
|
366 |
}
|
367 |
|
368 |
.tpg-image-select.grid-layout .elementor-choices .elementor-choices-label:nth-of-type(4) {
|
369 |
-
background-image: url("
|
370 |
}
|
371 |
|
372 |
.tpg-image-select.grid-layout .elementor-choices .elementor-choices-label:nth-of-type(5) {
|
373 |
-
background-image: url("
|
374 |
}
|
375 |
|
376 |
.tpg-image-select.grid-layout .elementor-choices .elementor-choices-label:nth-of-type(6) {
|
377 |
-
background-image: url("
|
378 |
}
|
379 |
|
380 |
.tpg-image-select.grid-layout .elementor-choices .elementor-choices-label:nth-of-type(7) {
|
381 |
-
background-image: url("
|
382 |
}
|
383 |
|
384 |
.tpg-image-select.grid-layout .elementor-choices .elementor-choices-label:nth-of-type(8) {
|
385 |
-
background-image: url("
|
386 |
}
|
387 |
|
388 |
.tpg-image-select.grid-layout .elementor-choices .elementor-choices-label:nth-of-type(9) {
|
389 |
-
background-image: url("
|
390 |
}
|
391 |
|
392 |
|
@@ -397,31 +389,31 @@ body .elementor-panel .elementor-tab-control-settings a:before {
|
|
397 |
*************************/
|
398 |
|
399 |
.tpg-image-select.list-layout .elementor-choices .elementor-choices-label:nth-of-type(1) {
|
400 |
-
background-image: url("
|
401 |
}
|
402 |
|
403 |
.tpg-image-select.list-layout .elementor-choices .elementor-choices-label:nth-of-type(2) {
|
404 |
-
background-image: url("
|
405 |
}
|
406 |
|
407 |
.tpg-image-select.list-layout .elementor-choices .elementor-choices-label:nth-of-type(3) {
|
408 |
-
background-image: url("
|
409 |
}
|
410 |
|
411 |
.tpg-image-select.list-layout .elementor-choices .elementor-choices-label:nth-of-type(4) {
|
412 |
-
background-image: url("
|
413 |
}
|
414 |
|
415 |
.tpg-image-select.list-layout .elementor-choices .elementor-choices-label:nth-of-type(5) {
|
416 |
-
background-image: url("
|
417 |
}
|
418 |
|
419 |
.tpg-image-select.list-layout .elementor-choices .elementor-choices-label:nth-of-type(6) {
|
420 |
-
background-image: url("
|
421 |
}
|
422 |
|
423 |
.tpg-image-select.list-layout .elementor-choices .elementor-choices-label:nth-of-type(7) {
|
424 |
-
background-image: url("
|
425 |
}
|
426 |
|
427 |
|
@@ -429,67 +421,67 @@ body .elementor-panel .elementor-tab-control-settings a:before {
|
|
429 |
******************************/
|
430 |
|
431 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(1) {
|
432 |
-
background-image: url("
|
433 |
}
|
434 |
|
435 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(2) {
|
436 |
-
background-image: url("
|
437 |
}
|
438 |
|
439 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(3) {
|
440 |
-
background-image: url("
|
441 |
}
|
442 |
|
443 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(4) {
|
444 |
-
background-image: url("
|
445 |
}
|
446 |
|
447 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(5) {
|
448 |
-
background-image: url("
|
449 |
}
|
450 |
|
451 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(6) {
|
452 |
-
background-image: url("
|
453 |
}
|
454 |
|
455 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(7) {
|
456 |
-
background-image: url("
|
457 |
}
|
458 |
|
459 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(8) {
|
460 |
-
background-image: url("
|
461 |
}
|
462 |
|
463 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(9) {
|
464 |
-
background-image: url("
|
465 |
}
|
466 |
|
467 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(10) {
|
468 |
-
background-image: url("
|
469 |
}
|
470 |
|
471 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(11) {
|
472 |
-
background-image: url("
|
473 |
}
|
474 |
|
475 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(12) {
|
476 |
-
background-image: url("
|
477 |
}
|
478 |
|
479 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(13) {
|
480 |
-
background-image: url("
|
481 |
}
|
482 |
|
483 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(14) {
|
484 |
-
background-image: url("
|
485 |
}
|
486 |
|
487 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(15) {
|
488 |
-
background-image: url("
|
489 |
}
|
490 |
|
491 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(16) {
|
492 |
-
background-image: url("
|
493 |
}
|
494 |
|
495 |
/*End Grid Layout*/
|
@@ -499,59 +491,59 @@ body .elementor-panel .elementor-tab-control-settings a:before {
|
|
499 |
******************************/
|
500 |
|
501 |
.tpg-image-select.slider-layout .elementor-choices .elementor-choices-label:nth-of-type(1) {
|
502 |
-
background-image: url("
|
503 |
}
|
504 |
|
505 |
.tpg-image-select.slider-layout .elementor-choices .elementor-choices-label:nth-of-type(2) {
|
506 |
-
background-image: url("
|
507 |
}
|
508 |
|
509 |
.tpg-image-select.slider-layout .elementor-choices .elementor-choices-label:nth-of-type(3) {
|
510 |
-
background-image: url("
|
511 |
}
|
512 |
|
513 |
.tpg-image-select.slider-layout .elementor-choices .elementor-choices-label:nth-of-type(4) {
|
514 |
-
background-image: url("
|
515 |
}
|
516 |
|
517 |
.tpg-image-select.slider-layout .elementor-choices .elementor-choices-label:nth-of-type(5) {
|
518 |
-
background-image: url("
|
519 |
}
|
520 |
|
521 |
.tpg-image-select.slider-layout .elementor-choices .elementor-choices-label:nth-of-type(6) {
|
522 |
-
background-image: url("
|
523 |
}
|
524 |
|
525 |
.tpg-image-select.slider-layout .elementor-choices .elementor-choices-label:nth-of-type(7) {
|
526 |
-
background-image: url("
|
527 |
}
|
528 |
|
529 |
.tpg-image-select.slider-layout .elementor-choices .elementor-choices-label:nth-of-type(8) {
|
530 |
-
background-image: url("
|
531 |
}
|
532 |
|
533 |
.tpg-image-select.slider-layout .elementor-choices .elementor-choices-label:nth-of-type(9) {
|
534 |
-
background-image: url("
|
535 |
}
|
536 |
|
537 |
.tpg-image-select.slider-layout .elementor-choices .elementor-choices-label:nth-of-type(10) {
|
538 |
-
background-image: url("
|
539 |
}
|
540 |
|
541 |
.tpg-image-select.slider-layout .elementor-choices .elementor-choices-label:nth-of-type(11) {
|
542 |
-
background-image: url("
|
543 |
}
|
544 |
|
545 |
.tpg-image-select.slider-layout .elementor-choices .elementor-choices-label:nth-of-type(12) {
|
546 |
-
background-image: url("
|
547 |
}
|
548 |
|
549 |
.tpg-image-select.slider-layout .elementor-choices .elementor-choices-label:nth-of-type(13) {
|
550 |
-
background-image: url("
|
551 |
}
|
552 |
|
553 |
.tpg-image-select.slider-layout .elementor-choices .elementor-choices-label:nth-of-type(14) {
|
554 |
-
background-image: url("
|
555 |
}
|
556 |
|
557 |
|
11 |
color: inherit !important;
|
12 |
}
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
.elementor-nerd-box-title {
|
15 |
margin-top: 20px;
|
16 |
font-size: 16px;
|
346 |
*************************/
|
347 |
|
348 |
.tpg-image-select.grid-layout .elementor-choices .elementor-choices-label:nth-of-type(1) {
|
349 |
+
background-image: url("../../images/layouts/grid1.png");
|
350 |
}
|
351 |
|
352 |
.tpg-image-select.grid-layout .elementor-choices .elementor-choices-label:nth-of-type(2) {
|
353 |
+
background-image: url("../../images/layouts/grid_layout8.png");
|
354 |
}
|
355 |
|
356 |
.tpg-image-select.grid-layout .elementor-choices .elementor-choices-label:nth-of-type(3) {
|
357 |
+
background-image: url("../../images/layouts/grid12.png");
|
358 |
}
|
359 |
|
360 |
.tpg-image-select.grid-layout .elementor-choices .elementor-choices-label:nth-of-type(4) {
|
361 |
+
background-image: url("../../images/layouts/grid2.png");
|
362 |
}
|
363 |
|
364 |
.tpg-image-select.grid-layout .elementor-choices .elementor-choices-label:nth-of-type(5) {
|
365 |
+
background-image: url("../../images/layouts/grid_layout9.png");
|
366 |
}
|
367 |
|
368 |
.tpg-image-select.grid-layout .elementor-choices .elementor-choices-label:nth-of-type(6) {
|
369 |
+
background-image: url("../../images/layouts/grid_layout9-2.png");
|
370 |
}
|
371 |
|
372 |
.tpg-image-select.grid-layout .elementor-choices .elementor-choices-label:nth-of-type(7) {
|
373 |
+
background-image: url("../../images/layouts/grid_layout10.png");
|
374 |
}
|
375 |
|
376 |
.tpg-image-select.grid-layout .elementor-choices .elementor-choices-label:nth-of-type(8) {
|
377 |
+
background-image: url("../../images/layouts/grid_layout10-2.png");
|
378 |
}
|
379 |
|
380 |
.tpg-image-select.grid-layout .elementor-choices .elementor-choices-label:nth-of-type(9) {
|
381 |
+
background-image: url("../../images/layouts/gallery.png");
|
382 |
}
|
383 |
|
384 |
|
389 |
*************************/
|
390 |
|
391 |
.tpg-image-select.list-layout .elementor-choices .elementor-choices-label:nth-of-type(1) {
|
392 |
+
background-image: url("../../images/layouts/list1.png");
|
393 |
}
|
394 |
|
395 |
.tpg-image-select.list-layout .elementor-choices .elementor-choices-label:nth-of-type(2) {
|
396 |
+
background-image: url("../../images/layouts/list3.png");
|
397 |
}
|
398 |
|
399 |
.tpg-image-select.list-layout .elementor-choices .elementor-choices-label:nth-of-type(3) {
|
400 |
+
background-image: url("../../images/layouts/list3-2.png");
|
401 |
}
|
402 |
|
403 |
.tpg-image-select.list-layout .elementor-choices .elementor-choices-label:nth-of-type(4) {
|
404 |
+
background-image: url("../../images/layouts/list4.png");
|
405 |
}
|
406 |
|
407 |
.tpg-image-select.list-layout .elementor-choices .elementor-choices-label:nth-of-type(5) {
|
408 |
+
background-image: url("../../images/layouts/list4-2.png");
|
409 |
}
|
410 |
|
411 |
.tpg-image-select.list-layout .elementor-choices .elementor-choices-label:nth-of-type(6) {
|
412 |
+
background-image: url("../../images/layouts/list_layout1.png");
|
413 |
}
|
414 |
|
415 |
.tpg-image-select.list-layout .elementor-choices .elementor-choices-label:nth-of-type(7) {
|
416 |
+
background-image: url("../../images/layouts/list_layout2.png");
|
417 |
}
|
418 |
|
419 |
|
421 |
******************************/
|
422 |
|
423 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(1) {
|
424 |
+
background-image: url("../../images/layouts/grid3.png");
|
425 |
}
|
426 |
|
427 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(2) {
|
428 |
+
background-image: url("../../images/layouts/grid4.png");
|
429 |
}
|
430 |
|
431 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(3) {
|
432 |
+
background-image: url("../../images/layouts/grid5.png");
|
433 |
}
|
434 |
|
435 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(4) {
|
436 |
+
background-image: url("../../images/layouts/grid16.png");
|
437 |
}
|
438 |
|
439 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(5) {
|
440 |
+
background-image: url("../../images/layouts/grid16-2.png");
|
441 |
}
|
442 |
|
443 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(6) {
|
444 |
+
background-image: url("../../images/layouts/grid_hover10.png");
|
445 |
}
|
446 |
|
447 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(7) {
|
448 |
+
background-image: url("../../images/layouts/grid_hover10-2.png");
|
449 |
}
|
450 |
|
451 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(8) {
|
452 |
+
background-image: url("../../images/layouts/grid_hover11.png");
|
453 |
}
|
454 |
|
455 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(9) {
|
456 |
+
background-image: url("../../images/layouts/grid_hover11-2.png");
|
457 |
}
|
458 |
|
459 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(10) {
|
460 |
+
background-image: url("../../images/layouts/grid_hover12.png");
|
461 |
}
|
462 |
|
463 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(11) {
|
464 |
+
background-image: url("../../images/layouts/grid_hover12-2.png");
|
465 |
}
|
466 |
|
467 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(12) {
|
468 |
+
background-image: url("../../images/layouts/grid_hover13.png");
|
469 |
}
|
470 |
|
471 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(13) {
|
472 |
+
background-image: url("../../images/layouts/grid_hover9.png");
|
473 |
}
|
474 |
|
475 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(14) {
|
476 |
+
background-image: url("../../images/layouts/grid_hover9-2.png");
|
477 |
}
|
478 |
|
479 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(15) {
|
480 |
+
background-image: url("../../images/layouts/grid_hover15.png");
|
481 |
}
|
482 |
|
483 |
.tpg-image-select.grid-hover-layout .elementor-choices .elementor-choices-label:nth-of-type(16) {
|
484 |
+
background-image: url("../../images/layouts/grid_hover16.png");
|
485 |
}
|
486 |
|
487 |
/*End Grid Layout*/
|
491 |
******************************/
|
492 |
|
493 |
.tpg-image-select.slider-layout .elementor-choices .elementor-choices-label:nth-of-type(1) {
|
494 |
+
background-image: url("../../images/layouts/carousel1.png");
|
495 |
}
|
496 |
|
497 |
.tpg-image-select.slider-layout .elementor-choices .elementor-choices-label:nth-of-type(2) {
|
498 |
+
background-image: url("../../images/layouts/carousel1.1.png");
|
499 |
}
|
500 |
|
501 |
.tpg-image-select.slider-layout .elementor-choices .elementor-choices-label:nth-of-type(3) {
|
502 |
+
background-image: url("../../images/layouts/carousel1.3.png");
|
503 |
}
|
504 |
|
505 |
.tpg-image-select.slider-layout .elementor-choices .elementor-choices-label:nth-of-type(4) {
|
506 |
+
background-image: url("../../images/layouts/carousel2.2.png");
|
507 |
}
|
508 |
|
509 |
.tpg-image-select.slider-layout .elementor-choices .elementor-choices-label:nth-of-type(5) {
|
510 |
+
background-image: url("../../images/layouts/carousel2.png");
|
511 |
}
|
512 |
|
513 |
.tpg-image-select.slider-layout .elementor-choices .elementor-choices-label:nth-of-type(6) {
|
514 |
+
background-image: url("../../images/layouts/carousel6.6.png");
|
515 |
}
|
516 |
|
517 |
.tpg-image-select.slider-layout .elementor-choices .elementor-choices-label:nth-of-type(7) {
|
518 |
+
background-image: url("../../images/layouts/carousel7.7.png");
|
519 |
}
|
520 |
|
521 |
.tpg-image-select.slider-layout .elementor-choices .elementor-choices-label:nth-of-type(8) {
|
522 |
+
background-image: url("../../images/layouts/carousel8.8.png");
|
523 |
}
|
524 |
|
525 |
.tpg-image-select.slider-layout .elementor-choices .elementor-choices-label:nth-of-type(9) {
|
526 |
+
background-image: url("../../images/layouts/carousel9.9.png");
|
527 |
}
|
528 |
|
529 |
.tpg-image-select.slider-layout .elementor-choices .elementor-choices-label:nth-of-type(10) {
|
530 |
+
background-image: url("../../images/layouts/carousel10.2.png");
|
531 |
}
|
532 |
|
533 |
.tpg-image-select.slider-layout .elementor-choices .elementor-choices-label:nth-of-type(11) {
|
534 |
+
background-image: url("../../images/layouts/slider_layout11.png");
|
535 |
}
|
536 |
|
537 |
.tpg-image-select.slider-layout .elementor-choices .elementor-choices-label:nth-of-type(12) {
|
538 |
+
background-image: url("../../images/layouts/slider_layout12.png");
|
539 |
}
|
540 |
|
541 |
.tpg-image-select.slider-layout .elementor-choices .elementor-choices-label:nth-of-type(13) {
|
542 |
+
background-image: url("../../images/layouts/slider_layout13.png");
|
543 |
}
|
544 |
|
545 |
.tpg-image-select.slider-layout .elementor-choices .elementor-choices-label:nth-of-type(14) {
|
546 |
+
background-image: url("../../images/layouts/slider_layout14.png");
|
547 |
}
|
548 |
|
549 |
|
assets/css/rt-tpg-common-rtl.css
DELETED
@@ -1,2570 +0,0 @@
|
|
1 |
-
/***********************************************************************/
|
2 |
-
/**************************** The Post Grid ****************************/
|
3 |
-
/********************** support@radiustheme.com ************************/
|
4 |
-
/*************************** Common Style ******************************/
|
5 |
-
/***********************************************************************/
|
6 |
-
|
7 |
-
|
8 |
-
/***************************** Common Grid Style ******************************/
|
9 |
-
|
10 |
-
body .tpg-el-main-wrapper .rt-grid-item {
|
11 |
-
padding: 0 15px;
|
12 |
-
}
|
13 |
-
|
14 |
-
body .elementor-section .tpg-el-main-wrapper .rt-grid-item {
|
15 |
-
background: none;
|
16 |
-
}
|
17 |
-
|
18 |
-
body .elementor-section .tpg-el-main-wrapper .offset-left,
|
19 |
-
body .elementor-section .tpg-el-main-wrapper .offset-right {
|
20 |
-
padding-bottom: 0;
|
21 |
-
}
|
22 |
-
|
23 |
-
.rt-tpg-container a {
|
24 |
-
text-decoration: none;
|
25 |
-
}
|
26 |
-
|
27 |
-
html.rt-model-open,
|
28 |
-
body.rt-model-open,
|
29 |
-
.rt-model-open {
|
30 |
-
overflow: hidden;
|
31 |
-
}
|
32 |
-
|
33 |
-
.rt-tpg-container * {
|
34 |
-
-webkit-box-sizing: border-box;
|
35 |
-
-moz-box-sizing: border-box;
|
36 |
-
box-sizing: border-box;
|
37 |
-
}
|
38 |
-
|
39 |
-
.rt-tpg-container *:before,
|
40 |
-
.rt-tpg-container *:after {
|
41 |
-
-webkit-box-sizing: border-box;
|
42 |
-
-moz-box-sizing: border-box;
|
43 |
-
box-sizing: border-box;
|
44 |
-
}
|
45 |
-
|
46 |
-
.rt-container {
|
47 |
-
margin-left: auto;
|
48 |
-
margin-right: auto;
|
49 |
-
padding-right: 15px;
|
50 |
-
padding-left: 15px;
|
51 |
-
}
|
52 |
-
|
53 |
-
.rt-container-fluid {
|
54 |
-
margin-left: auto;
|
55 |
-
margin-right: auto;
|
56 |
-
padding-right: 15px;
|
57 |
-
padding-left: 15px;
|
58 |
-
}
|
59 |
-
|
60 |
-
.rt-container-fluid.slider-layout13-main {
|
61 |
-
padding: 0 0 15px;
|
62 |
-
}
|
63 |
-
|
64 |
-
.rt-tpg-container ul {
|
65 |
-
margin: 0;
|
66 |
-
}
|
67 |
-
|
68 |
-
img, svg {
|
69 |
-
vertical-align: middle;
|
70 |
-
}
|
71 |
-
|
72 |
-
a:link, a:visited {
|
73 |
-
transition: all ease 0.31s;
|
74 |
-
}
|
75 |
-
|
76 |
-
.clearfix:before, .clearfix:after, .rt-container-fluid:before, .rt-container-fluid:after, .rt-row:before, .rt-row:after {
|
77 |
-
content: " ";
|
78 |
-
display: table;
|
79 |
-
}
|
80 |
-
|
81 |
-
.clearfix:after,
|
82 |
-
.rt-container:after,
|
83 |
-
.rt-container-fluid:after,
|
84 |
-
.rt-row:after {
|
85 |
-
clear: both;
|
86 |
-
}
|
87 |
-
|
88 |
-
.rt-row {
|
89 |
-
margin-right: -15px;
|
90 |
-
margin-left: -15px;
|
91 |
-
}
|
92 |
-
|
93 |
-
.grid-layout2.rt-row {
|
94 |
-
margin-right: 0;
|
95 |
-
margin-left: 0;
|
96 |
-
}
|
97 |
-
|
98 |
-
.rt-row > .rt-row {
|
99 |
-
padding-right: 15px;
|
100 |
-
padding-left: 15px;
|
101 |
-
}
|
102 |
-
|
103 |
-
.grid_hover6.rt-row {
|
104 |
-
margin-right: -2px;
|
105 |
-
margin-left: -2px;
|
106 |
-
}
|
107 |
-
|
108 |
-
.rt-col-xs-1, .rt-col-sm-1, .rt-col-md-1, .rt-col-lg-1, .rt-col-xs-2, .rt-col-sm-2, .rt-col-md-2, .rt-col-lg-2, .rt-col-xs-3, .rt-col-sm-3, .rt-col-md-3, .rt-col-lg-3, .rt-col-xs-4, .rt-col-sm-4, .rt-col-md-4, .rt-col-lg-4, .rt-col-xs-5, .rt-col-sm-5, .rt-col-md-5, .rt-col-lg-5, .rt-col-xs-6, .rt-col-sm-6, .rt-col-md-6, .rt-col-lg-6, .rt-col-xs-7, .rt-col-sm-7, .rt-col-md-7, .rt-col-lg-7, .rt-col-xs-8, .rt-col-sm-8, .rt-col-md-8, .rt-col-lg-8, .rt-col-xs-9, .rt-col-sm-9, .rt-col-md-9, .rt-col-lg-9, .rt-col-xs-10, .rt-col-sm-10, .rt-col-md-10, .rt-col-lg-10, .rt-col-xs-11, .rt-col-sm-11, .rt-col-md-11, .rt-col-lg-11, .rt-col-xs-12, .rt-col-sm-12, .rt-col-md-12, .rt-col-lg-12, .rt-col-xs-24, .rt-col-sm-24, .rt-col-md-24, .rt-col-lg-24 {
|
109 |
-
position: relative;
|
110 |
-
min-height: 1px;
|
111 |
-
padding-right: 15px;
|
112 |
-
padding-left: 15px;
|
113 |
-
}
|
114 |
-
|
115 |
-
.rt-col-xs-1, .rt-col-xs-2, .rt-col-xs-3, .rt-col-xs-4, .rt-col-xs-5, .rt-col-xs-6, .rt-col-xs-7, .rt-col-xs-8, .rt-col-xs-9, .rt-col-xs-10, .rt-col-xs-11, .rt-col-xs-12, .rt-col-xs-24 {
|
116 |
-
float: right;
|
117 |
-
}
|
118 |
-
|
119 |
-
.rt-col-xs-24 {
|
120 |
-
width: 20%;
|
121 |
-
}
|
122 |
-
|
123 |
-
.rt-col-xs-12 {
|
124 |
-
width: 100%;
|
125 |
-
}
|
126 |
-
|
127 |
-
.rt-col-xs-11 {
|
128 |
-
width: 91.66666667%;
|
129 |
-
}
|
130 |
-
|
131 |
-
.rt-col-xs-10 {
|
132 |
-
width: 83.33333333%;
|
133 |
-
}
|
134 |
-
|
135 |
-
.rt-col-xs-9 {
|
136 |
-
width: 75%;
|
137 |
-
}
|
138 |
-
|
139 |
-
.rt-col-xs-8 {
|
140 |
-
width: 66.66666667%;
|
141 |
-
}
|
142 |
-
|
143 |
-
.rt-col-xs-7 {
|
144 |
-
width: 58.33333333%;
|
145 |
-
}
|
146 |
-
|
147 |
-
.rt-col-xs-6 {
|
148 |
-
width: 50%;
|
149 |
-
}
|
150 |
-
|
151 |
-
.rt-col-xs-5 {
|
152 |
-
width: 41.66666667%;
|
153 |
-
}
|
154 |
-
|
155 |
-
.rt-col-xs-4 {
|
156 |
-
width: 33.33333333%;
|
157 |
-
}
|
158 |
-
|
159 |
-
.rt-col-xs-3 {
|
160 |
-
width: 25%;
|
161 |
-
}
|
162 |
-
|
163 |
-
.rt-col-xs-2 {
|
164 |
-
width: 16.66666667%;
|
165 |
-
}
|
166 |
-
|
167 |
-
.rt-col-xs-1 {
|
168 |
-
width: 8.33333333%;
|
169 |
-
}
|
170 |
-
|
171 |
-
#rt-main {
|
172 |
-
margin: 35px auto;
|
173 |
-
}
|
174 |
-
|
175 |
-
.rt-tpg-container h3.entry-title {
|
176 |
-
line-height: 1.25;
|
177 |
-
margin: 0px 0px 12px;
|
178 |
-
}
|
179 |
-
|
180 |
-
.rt-tpg-container .offset-small-wrap .rt-holder .overlay {
|
181 |
-
min-height: 60px !important;
|
182 |
-
}
|
183 |
-
|
184 |
-
.rt-tpg-container .offset-small-wrap .rt-holder .rt-img-responsive {
|
185 |
-
height: auto;
|
186 |
-
width: 100%;
|
187 |
-
object-fit: cover;
|
188 |
-
}
|
189 |
-
|
190 |
-
.rt-tpg-container .offset-small-wrap .rt-col-md-6 .rt-holder .rt-img-responsive {
|
191 |
-
height: auto;
|
192 |
-
}
|
193 |
-
|
194 |
-
.rt-tpg-container .offset-small-wrap .rt-holder .overlay h3 a {
|
195 |
-
overflow: hidden !important;
|
196 |
-
text-overflow: ellipsis !important;
|
197 |
-
display: -webkit-box !important;
|
198 |
-
-webkit-line-clamp: 1 !important;
|
199 |
-
-webkit-box-orient: vertical;
|
200 |
-
}
|
201 |
-
|
202 |
-
.rt-tpg-container .offset-big .post-meta-user.above_title {
|
203 |
-
margin-top: 15px;
|
204 |
-
}
|
205 |
-
|
206 |
-
.rt-tpg-container .offset-big .post-meta-user.above_title + h3.entry-title {
|
207 |
-
margin-top: 0;
|
208 |
-
}
|
209 |
-
|
210 |
-
.rt-tpg-container .offset-big h3.entry-title {
|
211 |
-
margin: 20px 0px 15px;
|
212 |
-
}
|
213 |
-
|
214 |
-
.rt-tpg-container .offset-big .cat-above-title {
|
215 |
-
margin-bottom: -15px;
|
216 |
-
padding-top: 10px;
|
217 |
-
}
|
218 |
-
|
219 |
-
.rt-tpg-container .owl-controls .owl-dots {
|
220 |
-
margin-top: 15px;
|
221 |
-
}
|
222 |
-
|
223 |
-
.rt-popup-content .rt-tpg-container i {
|
224 |
-
margin-left: 5px;
|
225 |
-
}
|
226 |
-
|
227 |
-
/**********************************************************************/
|
228 |
-
/********************************* Media Query *************************/
|
229 |
-
/**********************************************************************/
|
230 |
-
|
231 |
-
@media (min-width: 992px) {
|
232 |
-
.rt-container {
|
233 |
-
width: 970px;
|
234 |
-
}
|
235 |
-
}
|
236 |
-
|
237 |
-
@media (min-width: 1200px) {
|
238 |
-
.rt-container {
|
239 |
-
width: 1170px;
|
240 |
-
}
|
241 |
-
}
|
242 |
-
|
243 |
-
@media (max-width: 767px) {
|
244 |
-
.hidden-xs {
|
245 |
-
display: none !important;
|
246 |
-
}
|
247 |
-
}
|
248 |
-
|
249 |
-
@media screen and (max-width: 768px) {
|
250 |
-
.rt-member-feature-img, .rt-member-description-container {
|
251 |
-
float: none;
|
252 |
-
width: 100%;
|
253 |
-
}
|
254 |
-
}
|
255 |
-
|
256 |
-
@media (min-width: 768px) {
|
257 |
-
.rt-col-sm-1, .rt-col-sm-2, .rt-col-sm-3, .rt-col-sm-4, .rt-col-sm-5, .rt-col-sm-6, .rt-col-sm-7, .rt-col-sm-8, .rt-col-sm-9, .rt-col-sm-10, .rt-col-sm-11, .rt-col-sm-12, .rt-col-sm-24 {
|
258 |
-
float: right;
|
259 |
-
}
|
260 |
-
|
261 |
-
.rt-col-sm-24 {
|
262 |
-
width: 20%;
|
263 |
-
}
|
264 |
-
|
265 |
-
.rt-col-sm-12 {
|
266 |
-
width: 100%;
|
267 |
-
}
|
268 |
-
|
269 |
-
.rt-col-sm-11 {
|
270 |
-
width: 91.66666667%;
|
271 |
-
}
|
272 |
-
|
273 |
-
.rt-col-sm-10 {
|
274 |
-
width: 83.33333333%;
|
275 |
-
}
|
276 |
-
|
277 |
-
.rt-col-sm-9 {
|
278 |
-
width: 75%;
|
279 |
-
}
|
280 |
-
|
281 |
-
.rt-col-sm-8 {
|
282 |
-
width: 66.66666667%;
|
283 |
-
}
|
284 |
-
|
285 |
-
.rt-col-sm-7 {
|
286 |
-
width: 58.33333333%;
|
287 |
-
}
|
288 |
-
|
289 |
-
.rt-col-sm-6 {
|
290 |
-
width: 50%;
|
291 |
-
}
|
292 |
-
|
293 |
-
.rt-col-sm-5 {
|
294 |
-
width: 41.66666667%;
|
295 |
-
}
|
296 |
-
|
297 |
-
.rt-col-sm-4 {
|
298 |
-
width: 33.33333333%;
|
299 |
-
}
|
300 |
-
|
301 |
-
.rt-col-sm-3 {
|
302 |
-
width: 25%;
|
303 |
-
}
|
304 |
-
|
305 |
-
.rt-col-sm-2 {
|
306 |
-
width: 16.66666667%;
|
307 |
-
}
|
308 |
-
|
309 |
-
.rt-col-sm-1 {
|
310 |
-
width: 8.33333333%;
|
311 |
-
}
|
312 |
-
|
313 |
-
}
|
314 |
-
|
315 |
-
@media (min-width: 992px) {
|
316 |
-
.rt-col-md-1, .rt-col-md-2, .rt-col-md-3, .rt-col-md-4, .rt-col-md-5, .rt-col-md-6, .rt-col-md-7, .rt-col-md-8, .rt-col-md-9, .rt-col-md-10, .rt-col-md-11, .rt-col-md-12, .rt-col-md-24 {
|
317 |
-
float: right;
|
318 |
-
}
|
319 |
-
|
320 |
-
.rt-col-md-24 {
|
321 |
-
width: 20%;
|
322 |
-
}
|
323 |
-
|
324 |
-
.rt-col-md-12 {
|
325 |
-
width: 100%;
|
326 |
-
}
|
327 |
-
|
328 |
-
.rt-col-md-11 {
|
329 |
-
width: 91.66666667%;
|
330 |
-
}
|
331 |
-
|
332 |
-
.rt-col-md-10 {
|
333 |
-
width: 83.33333333%;
|
334 |
-
}
|
335 |
-
|
336 |
-
.rt-col-md-9 {
|
337 |
-
width: 75%;
|
338 |
-
}
|
339 |
-
|
340 |
-
.rt-col-md-8 {
|
341 |
-
width: 66.66666667%;
|
342 |
-
}
|
343 |
-
|
344 |
-
.rt-col-md-7 {
|
345 |
-
width: 58.33333333%;
|
346 |
-
}
|
347 |
-
|
348 |
-
.rt-col-md-6 {
|
349 |
-
width: 50%;
|
350 |
-
}
|
351 |
-
|
352 |
-
.rt-col-md-5 {
|
353 |
-
width: 41.66666667%;
|
354 |
-
}
|
355 |
-
|
356 |
-
.rt-col-md-4 {
|
357 |
-
width: 33.33333333%;
|
358 |
-
}
|
359 |
-
|
360 |
-
.rt-col-md-3 {
|
361 |
-
width: 25%;
|
362 |
-
}
|
363 |
-
|
364 |
-
.rt-col-md-2 {
|
365 |
-
width: 16.66666667%;
|
366 |
-
}
|
367 |
-
|
368 |
-
.rt-col-md-1 {
|
369 |
-
width: 8.33333333%;
|
370 |
-
}
|
371 |
-
|
372 |
-
}
|
373 |
-
|
374 |
-
@media (min-width: 1200px) {
|
375 |
-
.rt-col-lg-1, .rt-col-lg-2, .rt-col-lg-3, .rt-col-lg-4, .rt-col-lg-5, .rt-col-lg-6, .rt-col-lg-7, .rt-col-lg-8, .rt-col-lg-9, .rt-col-lg-10, .rt-col-lg-11, .rt-col-lg-12 {
|
376 |
-
float: right;
|
377 |
-
}
|
378 |
-
|
379 |
-
.rt-col-lg-24 {
|
380 |
-
width: 20%;
|
381 |
-
}
|
382 |
-
|
383 |
-
.rt-col-lg-12 {
|
384 |
-
width: 100%;
|
385 |
-
}
|
386 |
-
|
387 |
-
.rt-col-lg-11 {
|
388 |
-
width: 91.66666667%;
|
389 |
-
}
|
390 |
-
|
391 |
-
.rt-col-lg-10 {
|
392 |
-
width: 83.33333333%;
|
393 |
-
}
|
394 |
-
|
395 |
-
.rt-col-lg-9 {
|
396 |
-
width: 75%;
|
397 |
-
}
|
398 |
-
|
399 |
-
.rt-col-lg-8 {
|
400 |
-
width: 66.66666667%;
|
401 |
-
}
|
402 |
-
|
403 |
-
.rt-col-lg-7 {
|
404 |
-
width: 58.33333333%;
|
405 |
-
}
|
406 |
-
|
407 |
-
.rt-col-lg-6 {
|
408 |
-
width: 50%;
|
409 |
-
}
|
410 |
-
|
411 |
-
.rt-col-lg-5 {
|
412 |
-
width: 41.66666667%;
|
413 |
-
}
|
414 |
-
|
415 |
-
.rt-col-lg-4 {
|
416 |
-
width: 33.33333333%;
|
417 |
-
}
|
418 |
-
|
419 |
-
.rt-col-lg-3 {
|
420 |
-
width: 25%;
|
421 |
-
}
|
422 |
-
|
423 |
-
.rt-col-lg-2 {
|
424 |
-
width: 16.66666667%;
|
425 |
-
}
|
426 |
-
|
427 |
-
.rt-col-lg-1 {
|
428 |
-
width: 8.33333333%;
|
429 |
-
}
|
430 |
-
|
431 |
-
}
|
432 |
-
|
433 |
-
|
434 |
-
/***************************************
|
435 |
-
Pagination Style
|
436 |
-
**************************************/
|
437 |
-
|
438 |
-
.paginationjs {
|
439 |
-
line-height: 1.6;
|
440 |
-
font-family: Marmelad, "Lucida Grande", Arial, "Hiragino Sans GB", Georgia, sans-serif;
|
441 |
-
font-size: 14px;
|
442 |
-
box-sizing: initial
|
443 |
-
}
|
444 |
-
|
445 |
-
.paginationjs:after {
|
446 |
-
display: table;
|
447 |
-
content: " ";
|
448 |
-
clear: both
|
449 |
-
}
|
450 |
-
|
451 |
-
.paginationjs .paginationjs-pages {
|
452 |
-
float: right
|
453 |
-
}
|
454 |
-
|
455 |
-
.paginationjs .paginationjs-pages ul {
|
456 |
-
float: right;
|
457 |
-
margin: 0;
|
458 |
-
padding: 0
|
459 |
-
}
|
460 |
-
|
461 |
-
.paginationjs .paginationjs-go-button, .paginationjs .paginationjs-go-input, .paginationjs .paginationjs-nav {
|
462 |
-
float: right;
|
463 |
-
margin-right: 10px;
|
464 |
-
font-size: 14px
|
465 |
-
}
|
466 |
-
|
467 |
-
.paginationjs .paginationjs-pages li {
|
468 |
-
float: right;
|
469 |
-
border: 1px solid #aaa;
|
470 |
-
border-left: none;
|
471 |
-
list-style: none
|
472 |
-
}
|
473 |
-
|
474 |
-
.paginationjs .paginationjs-pages li > a {
|
475 |
-
min-width: 30px;
|
476 |
-
height: 28px;
|
477 |
-
line-height: 28px;
|
478 |
-
display: block;
|
479 |
-
background: #fff;
|
480 |
-
font-size: 14px;
|
481 |
-
color: #333;
|
482 |
-
text-decoration: none;
|
483 |
-
text-align: center
|
484 |
-
}
|
485 |
-
|
486 |
-
.paginationjs .paginationjs-pages li:hover > a {
|
487 |
-
background: var(--tpg-primary-color);
|
488 |
-
color: #ffffff !important;
|
489 |
-
border-color: var(--tpg-primary-color) !important;
|
490 |
-
}
|
491 |
-
|
492 |
-
.paginationjs .paginationjs-pages li.active {
|
493 |
-
border: none
|
494 |
-
}
|
495 |
-
|
496 |
-
.paginationjs .paginationjs-pages li.active > a {
|
497 |
-
height: 30px;
|
498 |
-
line-height: 30px;
|
499 |
-
background: #aaa;
|
500 |
-
color: #fff
|
501 |
-
}
|
502 |
-
|
503 |
-
.paginationjs .paginationjs-pages li.disabled > a {
|
504 |
-
opacity: .3
|
505 |
-
}
|
506 |
-
|
507 |
-
.paginationjs .paginationjs-pages li.disabled > a:hover {
|
508 |
-
background: 100% 0
|
509 |
-
}
|
510 |
-
|
511 |
-
.paginationjs .paginationjs-pages li:first-child, .paginationjs .paginationjs-pages li:first-child > a {
|
512 |
-
border-radius: 0 3px 3px 0
|
513 |
-
}
|
514 |
-
|
515 |
-
.paginationjs .paginationjs-pages li:last-child {
|
516 |
-
border-left: 1px solid #aaa;
|
517 |
-
border-radius: 3px 0 0 3px
|
518 |
-
}
|
519 |
-
|
520 |
-
.paginationjs .paginationjs-pages li:last-child > a {
|
521 |
-
border-radius: 3px 0 0 3px
|
522 |
-
}
|
523 |
-
|
524 |
-
.paginationjs .paginationjs-go-input > input[type=text] {
|
525 |
-
width: 30px;
|
526 |
-
height: 28px;
|
527 |
-
background: #fff;
|
528 |
-
border-radius: 3px;
|
529 |
-
border: 1px solid #aaa;
|
530 |
-
padding: 0;
|
531 |
-
font-size: 14px;
|
532 |
-
text-align: center;
|
533 |
-
vertical-align: baseline;
|
534 |
-
outline: 0;
|
535 |
-
box-shadow: none;
|
536 |
-
box-sizing: initial
|
537 |
-
}
|
538 |
-
|
539 |
-
.paginationjs .paginationjs-go-button > input[type=button] {
|
540 |
-
min-width: 40px;
|
541 |
-
height: 30px;
|
542 |
-
line-height: 28px;
|
543 |
-
background: #fff;
|
544 |
-
border-radius: 3px;
|
545 |
-
border: 1px solid #aaa;
|
546 |
-
text-align: center;
|
547 |
-
padding: 0 8px;
|
548 |
-
font-size: 14px;
|
549 |
-
vertical-align: baseline;
|
550 |
-
outline: 0;
|
551 |
-
box-shadow: none;
|
552 |
-
color: #333;
|
553 |
-
cursor: pointer;
|
554 |
-
vertical-align: middle \9
|
555 |
-
}
|
556 |
-
|
557 |
-
.paginationjs.paginationjs-theme-blue .paginationjs-go-input > input[type=text], .paginationjs.paginationjs-theme-blue .paginationjs-pages li {
|
558 |
-
border-color: #289de9
|
559 |
-
}
|
560 |
-
|
561 |
-
.paginationjs .paginationjs-go-button > input[type=button]:hover {
|
562 |
-
background-color: #f8f8f8
|
563 |
-
}
|
564 |
-
|
565 |
-
.paginationjs .paginationjs-nav {
|
566 |
-
height: 30px;
|
567 |
-
line-height: 30px
|
568 |
-
}
|
569 |
-
|
570 |
-
.paginationjs .paginationjs-go-button, .paginationjs .paginationjs-go-input {
|
571 |
-
margin-right: 5px \9
|
572 |
-
}
|
573 |
-
|
574 |
-
.paginationjs.paginationjs-small {
|
575 |
-
font-size: 12px
|
576 |
-
}
|
577 |
-
|
578 |
-
.paginationjs.paginationjs-small .paginationjs-pages li > a {
|
579 |
-
min-width: 26px;
|
580 |
-
height: 24px;
|
581 |
-
line-height: 24px;
|
582 |
-
font-size: 12px
|
583 |
-
}
|
584 |
-
|
585 |
-
.paginationjs.paginationjs-small .paginationjs-pages li.active > a {
|
586 |
-
height: 26px;
|
587 |
-
line-height: 26px
|
588 |
-
}
|
589 |
-
|
590 |
-
.paginationjs.paginationjs-small .paginationjs-go-input {
|
591 |
-
font-size: 12px
|
592 |
-
}
|
593 |
-
|
594 |
-
.paginationjs.paginationjs-small .paginationjs-go-input > input[type=text] {
|
595 |
-
width: 26px;
|
596 |
-
height: 24px;
|
597 |
-
font-size: 12px
|
598 |
-
}
|
599 |
-
|
600 |
-
.paginationjs.paginationjs-small .paginationjs-go-button {
|
601 |
-
font-size: 12px
|
602 |
-
}
|
603 |
-
|
604 |
-
.paginationjs.paginationjs-small .paginationjs-go-button > input[type=button] {
|
605 |
-
min-width: 30px;
|
606 |
-
height: 26px;
|
607 |
-
line-height: 24px;
|
608 |
-
padding: 0 6px;
|
609 |
-
font-size: 12px
|
610 |
-
}
|
611 |
-
|
612 |
-
.paginationjs.paginationjs-small .paginationjs-nav {
|
613 |
-
height: 26px;
|
614 |
-
line-height: 26px;
|
615 |
-
font-size: 12px
|
616 |
-
}
|
617 |
-
|
618 |
-
.paginationjs.paginationjs-big {
|
619 |
-
font-size: 16px
|
620 |
-
}
|
621 |
-
|
622 |
-
.paginationjs.paginationjs-big .paginationjs-pages li > a {
|
623 |
-
min-width: 36px;
|
624 |
-
height: 34px;
|
625 |
-
line-height: 34px;
|
626 |
-
font-size: 16px
|
627 |
-
}
|
628 |
-
|
629 |
-
.paginationjs.paginationjs-big .paginationjs-pages li.active > a {
|
630 |
-
height: 36px;
|
631 |
-
line-height: 36px
|
632 |
-
}
|
633 |
-
|
634 |
-
.paginationjs.paginationjs-big .paginationjs-go-input {
|
635 |
-
font-size: 16px
|
636 |
-
}
|
637 |
-
|
638 |
-
.paginationjs.paginationjs-big .paginationjs-go-input > input[type=text] {
|
639 |
-
width: 36px;
|
640 |
-
height: 34px;
|
641 |
-
font-size: 16px
|
642 |
-
}
|
643 |
-
|
644 |
-
.paginationjs.paginationjs-big .paginationjs-go-button {
|
645 |
-
font-size: 16px
|
646 |
-
}
|
647 |
-
|
648 |
-
.paginationjs.paginationjs-big .paginationjs-go-button > input[type=button] {
|
649 |
-
min-width: 50px;
|
650 |
-
height: 36px;
|
651 |
-
line-height: 34px;
|
652 |
-
padding: 0 12px;
|
653 |
-
font-size: 16px
|
654 |
-
}
|
655 |
-
|
656 |
-
.paginationjs.paginationjs-big .paginationjs-nav {
|
657 |
-
height: 36px;
|
658 |
-
line-height: 36px;
|
659 |
-
font-size: 16px
|
660 |
-
}
|
661 |
-
|
662 |
-
.paginationjs.paginationjs-theme-blue .paginationjs-pages li > a {
|
663 |
-
color: #289de9
|
664 |
-
}
|
665 |
-
|
666 |
-
.paginationjs.paginationjs-theme-blue .paginationjs-pages li:hover > a {
|
667 |
-
background: #e9f4fc
|
668 |
-
}
|
669 |
-
|
670 |
-
.paginationjs.paginationjs-theme-blue .paginationjs-pages li.active > a {
|
671 |
-
background: #289de9;
|
672 |
-
color: #fff
|
673 |
-
}
|
674 |
-
|
675 |
-
.paginationjs.paginationjs-theme-blue .paginationjs-pages li.disabled:hover > a {
|
676 |
-
background: 100% 0
|
677 |
-
}
|
678 |
-
|
679 |
-
.paginationjs.paginationjs-theme-blue .paginationjs-go-button > input[type=button] {
|
680 |
-
background: #289de9;
|
681 |
-
border-color: #289de9;
|
682 |
-
color: #fff
|
683 |
-
}
|
684 |
-
|
685 |
-
.paginationjs.paginationjs-theme-green .paginationjs-go-input > input[type=text], .paginationjs.paginationjs-theme-green .paginationjs-pages li {
|
686 |
-
border-color: #449d44
|
687 |
-
}
|
688 |
-
|
689 |
-
.paginationjs.paginationjs-theme-blue .paginationjs-go-button > input[type=button]:hover {
|
690 |
-
background-color: #3ca5ea
|
691 |
-
}
|
692 |
-
|
693 |
-
.paginationjs.paginationjs-theme-green .paginationjs-pages li > a {
|
694 |
-
color: #449d44
|
695 |
-
}
|
696 |
-
|
697 |
-
.paginationjs.paginationjs-theme-green .paginationjs-pages li:hover > a {
|
698 |
-
background: #ebf4eb
|
699 |
-
}
|
700 |
-
|
701 |
-
.paginationjs.paginationjs-theme-green .paginationjs-pages li.active > a {
|
702 |
-
background: #449d44;
|
703 |
-
color: #fff
|
704 |
-
}
|
705 |
-
|
706 |
-
.paginationjs.paginationjs-theme-green .paginationjs-pages li.disabled:hover > a {
|
707 |
-
background: 100% 0
|
708 |
-
}
|
709 |
-
|
710 |
-
.paginationjs.paginationjs-theme-green .paginationjs-go-button > input[type=button] {
|
711 |
-
background: #449d44;
|
712 |
-
border-color: #449d44;
|
713 |
-
color: #fff
|
714 |
-
}
|
715 |
-
|
716 |
-
.paginationjs.paginationjs-theme-yellow .paginationjs-go-input > input[type=text], .paginationjs.paginationjs-theme-yellow .paginationjs-pages li {
|
717 |
-
border-color: #ec971f
|
718 |
-
}
|
719 |
-
|
720 |
-
.paginationjs.paginationjs-theme-green .paginationjs-go-button > input[type=button]:hover {
|
721 |
-
background-color: #55a555
|
722 |
-
}
|
723 |
-
|
724 |
-
.paginationjs.paginationjs-theme-yellow .paginationjs-pages li > a {
|
725 |
-
color: #ec971f
|
726 |
-
}
|
727 |
-
|
728 |
-
.paginationjs.paginationjs-theme-yellow .paginationjs-pages li:hover > a {
|
729 |
-
background: #fdf5e9
|
730 |
-
}
|
731 |
-
|
732 |
-
.paginationjs.paginationjs-theme-yellow .paginationjs-pages li.active > a {
|
733 |
-
background: #ec971f;
|
734 |
-
color: #fff
|
735 |
-
}
|
736 |
-
|
737 |
-
.paginationjs.paginationjs-theme-yellow .paginationjs-pages li.disabled:hover > a {
|
738 |
-
background: 100% 0
|
739 |
-
}
|
740 |
-
|
741 |
-
.paginationjs.paginationjs-theme-yellow .paginationjs-go-button > input[type=button] {
|
742 |
-
background: #ec971f;
|
743 |
-
border-color: #ec971f;
|
744 |
-
color: #fff
|
745 |
-
}
|
746 |
-
|
747 |
-
.paginationjs.paginationjs-theme-red .paginationjs-go-input > input[type=text], .paginationjs.paginationjs-theme-red .paginationjs-pages li {
|
748 |
-
border-color: #c9302c
|
749 |
-
}
|
750 |
-
|
751 |
-
.paginationjs.paginationjs-theme-yellow .paginationjs-go-button > input[type=button]:hover {
|
752 |
-
background-color: #eea135
|
753 |
-
}
|
754 |
-
|
755 |
-
.paginationjs.paginationjs-theme-red .paginationjs-pages li > a {
|
756 |
-
color: #c9302c
|
757 |
-
}
|
758 |
-
|
759 |
-
.paginationjs.paginationjs-theme-red .paginationjs-pages li:hover > a {
|
760 |
-
background: #faeaea
|
761 |
-
}
|
762 |
-
|
763 |
-
.paginationjs.paginationjs-theme-red .paginationjs-pages li.active > a {
|
764 |
-
background: #c9302c;
|
765 |
-
color: #fff
|
766 |
-
}
|
767 |
-
|
768 |
-
.paginationjs.paginationjs-theme-red .paginationjs-pages li.disabled:hover > a {
|
769 |
-
background: 100% 0
|
770 |
-
}
|
771 |
-
|
772 |
-
.paginationjs.paginationjs-theme-red .paginationjs-go-button > input[type=button] {
|
773 |
-
background: #c9302c;
|
774 |
-
border-color: #c9302c;
|
775 |
-
color: #fff
|
776 |
-
}
|
777 |
-
|
778 |
-
.paginationjs.paginationjs-theme-red .paginationjs-go-button > input[type=button]:hover {
|
779 |
-
background-color: #ce4541
|
780 |
-
}
|
781 |
-
|
782 |
-
.paginationjs .paginationjs-pages li.paginationjs-next {
|
783 |
-
border-left: 1px solid #aaa \9
|
784 |
-
}
|
785 |
-
|
786 |
-
.paginationjs .paginationjs-go-input > input[type=text] {
|
787 |
-
line-height: 28px \9;
|
788 |
-
vertical-align: middle \9
|
789 |
-
}
|
790 |
-
|
791 |
-
.paginationjs.paginationjs-big .paginationjs-pages li > a {
|
792 |
-
line-height: 36px \9
|
793 |
-
}
|
794 |
-
|
795 |
-
.paginationjs.paginationjs-big .paginationjs-go-input > input[type=text] {
|
796 |
-
height: 36px \9;
|
797 |
-
line-height: 36px \9
|
798 |
-
}
|
799 |
-
|
800 |
-
|
801 |
-
.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li:not(.paginationjs-next):not(.paginationjs-prev) {
|
802 |
-
display: none;
|
803 |
-
}
|
804 |
-
|
805 |
-
.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li {
|
806 |
-
color: #ffffff;
|
807 |
-
}
|
808 |
-
|
809 |
-
.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li > a {
|
810 |
-
color: #ffffff;
|
811 |
-
background-color: var(--tpg-primary-color);
|
812 |
-
}
|
813 |
-
|
814 |
-
.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li:hover a {
|
815 |
-
background-color: var(--tpg-secondary-color);
|
816 |
-
}
|
817 |
-
|
818 |
-
.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-page:nth-child(2) {
|
819 |
-
display: inline-block;
|
820 |
-
position: relative;
|
821 |
-
pointer-events: none;
|
822 |
-
}
|
823 |
-
|
824 |
-
.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-page:nth-child(2) a {
|
825 |
-
text-indent: -99999px;
|
826 |
-
pointer-events: none;
|
827 |
-
}
|
828 |
-
|
829 |
-
.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-page:nth-child(2):before {
|
830 |
-
content: "\f100";
|
831 |
-
font-family: "Font Awesome 5 Free";
|
832 |
-
position: absolute;
|
833 |
-
right: 50%;
|
834 |
-
top: 50%;
|
835 |
-
z-index: 99;
|
836 |
-
opacity: .5;
|
837 |
-
font-weight: 900;
|
838 |
-
transform: translate(50%, -50%);
|
839 |
-
|
840 |
-
}
|
841 |
-
|
842 |
-
.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-prev + li {
|
843 |
-
display: none !important;
|
844 |
-
}
|
845 |
-
|
846 |
-
|
847 |
-
/************************ Common ***************************/
|
848 |
-
|
849 |
-
.rt-tpg-container button {
|
850 |
-
border: none;
|
851 |
-
padding: 10px 15px;
|
852 |
-
}
|
853 |
-
|
854 |
-
.rt-tpg-container .rt-tgp-load-more button {
|
855 |
-
background: #8e8e8e;
|
856 |
-
border-radius: 4px;
|
857 |
-
}
|
858 |
-
|
859 |
-
.rt-tpg-container .tpg-wc-product-filter {
|
860 |
-
margin-bottom: 15px;
|
861 |
-
text-align: left;
|
862 |
-
padding-left: 15px;
|
863 |
-
}
|
864 |
-
|
865 |
-
.rt-img-holder > a {
|
866 |
-
text-align: center;
|
867 |
-
display: block;
|
868 |
-
}
|
869 |
-
|
870 |
-
.rt-img-responsive {
|
871 |
-
max-width: 100%;
|
872 |
-
display: block;
|
873 |
-
height: auto;
|
874 |
-
transition: 0.4s ease-in-out;
|
875 |
-
}
|
876 |
-
|
877 |
-
|
878 |
-
@media (max-width: 991px) {
|
879 |
-
.rt-img-holder > a,
|
880 |
-
.rt-img-responsive {
|
881 |
-
width: 100%;
|
882 |
-
}
|
883 |
-
}
|
884 |
-
|
885 |
-
.rt-tpg-container .no-margin {
|
886 |
-
margin: 0px !important;
|
887 |
-
padding: 0px !important;
|
888 |
-
}
|
889 |
-
|
890 |
-
span.more-loading {
|
891 |
-
background: url("../images/loading.gif") center left no-repeat;
|
892 |
-
padding-left: 20px;
|
893 |
-
display: inline-block;
|
894 |
-
}
|
895 |
-
|
896 |
-
.rt-tgp-scroll-load-more, .rt-tgp-load-more {
|
897 |
-
text-align: center;
|
898 |
-
display: block;
|
899 |
-
margin: 30px 0 20px;
|
900 |
-
}
|
901 |
-
|
902 |
-
.post-meta-user,
|
903 |
-
.post-meta-tags {
|
904 |
-
padding: 0;
|
905 |
-
margin-bottom: 15px;
|
906 |
-
line-height: 1.5;
|
907 |
-
font-size: 95%;
|
908 |
-
}
|
909 |
-
|
910 |
-
.post-meta-user span,
|
911 |
-
.post-meta-tags span {
|
912 |
-
display: inline-block;
|
913 |
-
padding-left: 8px;
|
914 |
-
}
|
915 |
-
|
916 |
-
.post-meta-user span.rt-separator,
|
917 |
-
.post-meta-tags span.rt-separator {
|
918 |
-
display: inline-block;
|
919 |
-
padding-left: 5px;
|
920 |
-
}
|
921 |
-
|
922 |
-
.post-meta-user span.comment-link {
|
923 |
-
text-align: left;
|
924 |
-
float: left;
|
925 |
-
padding-left: 0px;
|
926 |
-
}
|
927 |
-
|
928 |
-
.rt-holder .entry-title a {
|
929 |
-
color: #000000;
|
930 |
-
}
|
931 |
-
|
932 |
-
.rt-tpg-container .rt-holder .post-meta.center .read-more {
|
933 |
-
float: none;
|
934 |
-
}
|
935 |
-
|
936 |
-
.rt-tpg-container .rt-holder .post-meta .rt-tpg-social-share {
|
937 |
-
float: none;
|
938 |
-
text-align: right;
|
939 |
-
display: block;
|
940 |
-
margin-bottom: 15px;
|
941 |
-
width: 100%;
|
942 |
-
}
|
943 |
-
|
944 |
-
.rt-tpg-container .rt-holder .post-meta.center .rt-tpg-social-share {
|
945 |
-
text-align: right;
|
946 |
-
}
|
947 |
-
|
948 |
-
.rt-tpg-container .rt-holder .post-meta.right .rt-tpg-social-share {
|
949 |
-
text-align: right;
|
950 |
-
}
|
951 |
-
|
952 |
-
.rt-tpg-container .rt-holder .read-more a {
|
953 |
-
/*padding: 8px 15px;*/
|
954 |
-
font-size: 15px;
|
955 |
-
display: inline-block;
|
956 |
-
line-height: 1.5;
|
957 |
-
}
|
958 |
-
|
959 |
-
.rt-tpg-container .rt-holder .tpg-excerpt {
|
960 |
-
margin-bottom: 10px;
|
961 |
-
}
|
962 |
-
|
963 |
-
@media (max-width: 991px) {
|
964 |
-
.rt-tpg-container .rt-holder .tpg-excerpt {
|
965 |
-
overflow: hidden !important;
|
966 |
-
text-overflow: ellipsis !important;
|
967 |
-
display: -webkit-box !important;
|
968 |
-
-webkit-line-clamp: 3 !important;
|
969 |
-
-webkit-box-orient: vertical;
|
970 |
-
}
|
971 |
-
}
|
972 |
-
|
973 |
-
|
974 |
-
/***************************************************
|
975 |
-
Isotope Buttons
|
976 |
-
****************************************************/
|
977 |
-
|
978 |
-
.rt-tpg-container .tpg-iso-filter {
|
979 |
-
text-align: center;
|
980 |
-
margin: 15px 0 45px;
|
981 |
-
}
|
982 |
-
|
983 |
-
.rt-tpg-container .tpg-iso-filter input[type="text"] {
|
984 |
-
display: inline-block;
|
985 |
-
padding: 12px 10px;
|
986 |
-
border-radius: 3px;
|
987 |
-
margin-right: 4px;
|
988 |
-
}
|
989 |
-
|
990 |
-
.rt-tpg-container .tpg-iso-filter > div {
|
991 |
-
display: inline-block;
|
992 |
-
}
|
993 |
-
|
994 |
-
.rt-tpg-container .rt-tpg-isotope-buttons .selected {
|
995 |
-
background: var(--tpg-primary-color);
|
996 |
-
}
|
997 |
-
|
998 |
-
.rt-tpg-container .rt-tpg-isotope-buttons button {
|
999 |
-
border: none;
|
1000 |
-
margin: 4px;
|
1001 |
-
padding: 8px 20px;
|
1002 |
-
outline: 0;
|
1003 |
-
text-transform: none;
|
1004 |
-
font-weight: 400;
|
1005 |
-
font-size: 15px;
|
1006 |
-
line-height: 1.8;
|
1007 |
-
background: #8e8e8e;
|
1008 |
-
color: #fff;
|
1009 |
-
border-radius: 3px;
|
1010 |
-
box-shadow: none !important;
|
1011 |
-
text-shadow: none !important;
|
1012 |
-
}
|
1013 |
-
|
1014 |
-
.rt-tpg-container .rt-tpg-isotope-buttons button {
|
1015 |
-
box-shadow: none !important;
|
1016 |
-
text-shadow: none !important;
|
1017 |
-
}
|
1018 |
-
|
1019 |
-
/**********************************
|
1020 |
-
Ajax Loader
|
1021 |
-
*************************************/
|
1022 |
-
|
1023 |
-
.rt-tpg-container .tpg-pre-loader {
|
1024 |
-
position: relative;
|
1025 |
-
overflow: hidden;
|
1026 |
-
}
|
1027 |
-
|
1028 |
-
.rt-tpg-container .rt-loading-overlay {
|
1029 |
-
opacity: 0;
|
1030 |
-
visibility: hidden;
|
1031 |
-
position: absolute;
|
1032 |
-
top: 0;
|
1033 |
-
right: 0;
|
1034 |
-
width: 100%;
|
1035 |
-
height: 100%;
|
1036 |
-
z-index: 1;
|
1037 |
-
background-color: #fff;
|
1038 |
-
}
|
1039 |
-
|
1040 |
-
.rt-tpg-container .rt-loading {
|
1041 |
-
color: var(--tpg-primary-color);
|
1042 |
-
position: absolute;
|
1043 |
-
top: 40%;
|
1044 |
-
right: 50%;
|
1045 |
-
margin-right: -16px;
|
1046 |
-
z-index: 2;
|
1047 |
-
opacity: 0;
|
1048 |
-
visibility: hidden;
|
1049 |
-
}
|
1050 |
-
|
1051 |
-
.rt-tpg-container .tpg-pre-loader .rt-loading-overlay {
|
1052 |
-
opacity: 0.8;
|
1053 |
-
visibility: visible;
|
1054 |
-
}
|
1055 |
-
|
1056 |
-
.rt-tpg-container .tpg-pre-loader .rt-loading {
|
1057 |
-
opacity: 1;
|
1058 |
-
visibility: visible;
|
1059 |
-
}
|
1060 |
-
|
1061 |
-
.rt-ball-clip-rotate {
|
1062 |
-
width: 32px;
|
1063 |
-
height: 32px;
|
1064 |
-
}
|
1065 |
-
|
1066 |
-
.rt-ball-clip-rotate {
|
1067 |
-
display: block;
|
1068 |
-
font-size: 0;
|
1069 |
-
color: #fff;
|
1070 |
-
}
|
1071 |
-
|
1072 |
-
.rt-ball-clip-rotate, .rt-ball-clip-rotate > div {
|
1073 |
-
position: relative;
|
1074 |
-
-webkit-box-sizing: border-box;
|
1075 |
-
-moz-box-sizing: border-box;
|
1076 |
-
box-sizing: border-box;
|
1077 |
-
}
|
1078 |
-
|
1079 |
-
.rt-ball-clip-rotate > div {
|
1080 |
-
display: inline-block;
|
1081 |
-
float: none;
|
1082 |
-
background-color: currentColor;
|
1083 |
-
border: 0 solid currentColor;
|
1084 |
-
}
|
1085 |
-
|
1086 |
-
.rt-ball-clip-rotate > div {
|
1087 |
-
width: 32px;
|
1088 |
-
height: 32px;
|
1089 |
-
background: transparent;
|
1090 |
-
border-width: 2px;
|
1091 |
-
border-bottom-color: transparent;
|
1092 |
-
border-radius: 100%;
|
1093 |
-
-webkit-animation: ball-clip-rotate 0.75s linear infinite;
|
1094 |
-
-moz-animation: ball-clip-rotate 0.75s linear infinite;
|
1095 |
-
-o-animation: ball-clip-rotate 0.75s linear infinite;
|
1096 |
-
animation: ball-clip-rotate 0.75s linear infinite;
|
1097 |
-
}
|
1098 |
-
|
1099 |
-
/****************************************
|
1100 |
-
Filter
|
1101 |
-
*****************************************/
|
1102 |
-
|
1103 |
-
.rt-layout-filter-container.rt-clear:after {
|
1104 |
-
clear: both;
|
1105 |
-
display: block;
|
1106 |
-
content: "";
|
1107 |
-
}
|
1108 |
-
|
1109 |
-
.rt-clear:after,
|
1110 |
-
.rt-clear::-ms-ticks-after {
|
1111 |
-
clear: both;
|
1112 |
-
display: block;
|
1113 |
-
content: "";
|
1114 |
-
}
|
1115 |
-
|
1116 |
-
.rt-layout-filter-container {
|
1117 |
-
font-size: 0;
|
1118 |
-
line-height: 0;
|
1119 |
-
padding: 0;
|
1120 |
-
margin: -5px -5px 30px;
|
1121 |
-
}
|
1122 |
-
|
1123 |
-
.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item {
|
1124 |
-
padding: 8px 10px;
|
1125 |
-
border: 1px solid;
|
1126 |
-
margin: 4px;
|
1127 |
-
display: inline-block;
|
1128 |
-
transition: 0.4s;
|
1129 |
-
}
|
1130 |
-
|
1131 |
-
.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item.selected,
|
1132 |
-
.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item:hover {
|
1133 |
-
background: #222222;
|
1134 |
-
color: #b4b4b4;
|
1135 |
-
}
|
1136 |
-
|
1137 |
-
/*Filter carousel style*/
|
1138 |
-
|
1139 |
-
|
1140 |
-
.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap {
|
1141 |
-
padding-left: 82px;
|
1142 |
-
}
|
1143 |
-
|
1144 |
-
.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper {
|
1145 |
-
margin-left: 0;
|
1146 |
-
width: 100%;
|
1147 |
-
position: static;
|
1148 |
-
}
|
1149 |
-
|
1150 |
-
.tpg-header-wrapper.carousel {
|
1151 |
-
display: flex;
|
1152 |
-
overflow: hidden;
|
1153 |
-
margin-bottom: 30px;
|
1154 |
-
align-items: center;
|
1155 |
-
}
|
1156 |
-
|
1157 |
-
.section-title-style-style1 .tpg-header-wrapper.carousel,
|
1158 |
-
.section-title-style-default .tpg-header-wrapper.carousel {
|
1159 |
-
min-height: 36px;
|
1160 |
-
}
|
1161 |
-
|
1162 |
-
.tpg-header-wrapper.carousel .swiper {
|
1163 |
-
overflow: hidden;
|
1164 |
-
}
|
1165 |
-
|
1166 |
-
.section-title-style-style2 .tpg-header-wrapper.carousel .swiper,
|
1167 |
-
.section-title-style-style3 .tpg-header-wrapper.carousel .swiper {
|
1168 |
-
height: 51px;
|
1169 |
-
margin-bottom: -0.5px;
|
1170 |
-
}
|
1171 |
-
|
1172 |
-
.tpg-header-wrapper.carousel .swiper .swiper-navigation {
|
1173 |
-
position: absolute;
|
1174 |
-
top: 50%;
|
1175 |
-
left: 0;
|
1176 |
-
z-index: 9;
|
1177 |
-
transform: translateY(-50%);
|
1178 |
-
}
|
1179 |
-
|
1180 |
-
.tpg-header-wrapper.carousel .swiper .swiper-button-next, .tpg-header-wrapper.carousel .swiper .swiper-button-prev {
|
1181 |
-
top: 0;
|
1182 |
-
margin-top: 0;
|
1183 |
-
}
|
1184 |
-
|
1185 |
-
.tpg-header-wrapper.carousel .tpg-widget-heading-wrapper {
|
1186 |
-
flex: 1;
|
1187 |
-
margin: 0;
|
1188 |
-
padding-left: 10px;
|
1189 |
-
}
|
1190 |
-
|
1191 |
-
.tpg-header-wrapper.carousel .rt-layout-filter-container {
|
1192 |
-
margin: 0;
|
1193 |
-
flex: 0 0 60%;
|
1194 |
-
max-width: 60%;
|
1195 |
-
}
|
1196 |
-
|
1197 |
-
.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper {
|
1198 |
-
position: relative;
|
1199 |
-
width: 100%;
|
1200 |
-
height: 100%;
|
1201 |
-
z-index: 1;
|
1202 |
-
display: flex;
|
1203 |
-
transition-property: transform;
|
1204 |
-
box-sizing: content-box;
|
1205 |
-
margin: 0;
|
1206 |
-
}
|
1207 |
-
|
1208 |
-
.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide {
|
1209 |
-
text-align: center;
|
1210 |
-
width: auto;
|
1211 |
-
height: auto;
|
1212 |
-
padding: 0 10px;
|
1213 |
-
border: none;
|
1214 |
-
text-transform: initial;
|
1215 |
-
font-size: 15px;
|
1216 |
-
color: #212121;
|
1217 |
-
/* Center slide text vertically */
|
1218 |
-
display: -webkit-box;
|
1219 |
-
display: -ms-flexbox;
|
1220 |
-
display: -webkit-flex;
|
1221 |
-
display: flex;
|
1222 |
-
-webkit-box-pack: center;
|
1223 |
-
-ms-flex-pack: center;
|
1224 |
-
-webkit-justify-content: center;
|
1225 |
-
justify-content: center;
|
1226 |
-
-webkit-box-align: center;
|
1227 |
-
-ms-flex-align: center;
|
1228 |
-
-webkit-align-items: center;
|
1229 |
-
align-items: center;
|
1230 |
-
margin: 0;
|
1231 |
-
position: relative;
|
1232 |
-
}
|
1233 |
-
|
1234 |
-
.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide::before,
|
1235 |
-
.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide::before {
|
1236 |
-
content: "";
|
1237 |
-
position: absolute;
|
1238 |
-
right: 50%;
|
1239 |
-
bottom: 0;
|
1240 |
-
-webkit-transform: translateX(50%);
|
1241 |
-
transform: translateX(50%);
|
1242 |
-
width: 0;
|
1243 |
-
height: 0;
|
1244 |
-
border-style: solid;
|
1245 |
-
border-width: 0 7px 7px 7px;
|
1246 |
-
border-top-color: transparent;
|
1247 |
-
border-right-color: transparent;
|
1248 |
-
border-left-color: transparent;
|
1249 |
-
border-bottom-color: var(--tpg-primary-color);
|
1250 |
-
visibility: hidden;
|
1251 |
-
opacity: 0;
|
1252 |
-
transition: all 0.3s ease;
|
1253 |
-
}
|
1254 |
-
|
1255 |
-
.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected::before,
|
1256 |
-
.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover::before,
|
1257 |
-
.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected::before,
|
1258 |
-
.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover::before {
|
1259 |
-
opacity: 1;
|
1260 |
-
visibility: visible;
|
1261 |
-
}
|
1262 |
-
|
1263 |
-
|
1264 |
-
.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected,
|
1265 |
-
.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover {
|
1266 |
-
color: var(--tpg-primary-color);
|
1267 |
-
}
|
1268 |
-
|
1269 |
-
.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .filter-right-wrapper,
|
1270 |
-
.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .rt-author-filter {
|
1271 |
-
display: none;
|
1272 |
-
}
|
1273 |
-
|
1274 |
-
.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.swiper-wrapper {
|
1275 |
-
letter-spacing: 0;
|
1276 |
-
}
|
1277 |
-
|
1278 |
-
.tpg-header-wrapper.carousel .swiper-button-next.swiper-button-disabled,
|
1279 |
-
.tpg-header-wrapper.carousel .swiper-button-prev.swiper-button-disabled {
|
1280 |
-
opacity: 1;
|
1281 |
-
}
|
1282 |
-
|
1283 |
-
.tpg-header-wrapper.carousel .swiper-button-next.swiper-button-disabled::after,
|
1284 |
-
.tpg-header-wrapper.carousel .swiper-button-prev.swiper-button-disabled::after {
|
1285 |
-
opacity: .35;
|
1286 |
-
}
|
1287 |
-
|
1288 |
-
.filter-button-border-enable .tpg-header-wrapper.carousel .rt-layout-filter-container {
|
1289 |
-
border: 1px solid #ddd;
|
1290 |
-
border-radius: 3px;
|
1291 |
-
}
|
1292 |
-
|
1293 |
-
.filter-button-border-enable .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide {
|
1294 |
-
padding: 6px 15px;
|
1295 |
-
white-space: nowrap;
|
1296 |
-
}
|
1297 |
-
|
1298 |
-
.filter-button-border-enable .tpg-header-wrapper.carousel .swiper .swiper-navigation {
|
1299 |
-
left: 3px;
|
1300 |
-
}
|
1301 |
-
|
1302 |
-
.filter-nex-prev-btn-hidden .tpg-header-wrapper.carousel .swiper .swiper-navigation {
|
1303 |
-
display: none;
|
1304 |
-
}
|
1305 |
-
|
1306 |
-
.filter-nex-prev-btn-hidden .tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap {
|
1307 |
-
margin-left: 0;
|
1308 |
-
}
|
1309 |
-
|
1310 |
-
@media (max-width: 767px) {
|
1311 |
-
.tpg-header-wrapper.carousel {
|
1312 |
-
display: block;
|
1313 |
-
}
|
1314 |
-
|
1315 |
-
.tpg-header-wrapper.carousel .rt-layout-filter-container {
|
1316 |
-
max-width: 100%;
|
1317 |
-
position: relative;
|
1318 |
-
margin-bottom: 8px;
|
1319 |
-
}
|
1320 |
-
|
1321 |
-
.tpg-header-wrapper.carousel .rt-layout-filter-container {
|
1322 |
-
margin-right: -9px;
|
1323 |
-
margin-top: 10px;
|
1324 |
-
}
|
1325 |
-
}
|
1326 |
-
|
1327 |
-
/*End Filter Carousel*/
|
1328 |
-
|
1329 |
-
.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item.selected,
|
1330 |
-
.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item:hover {
|
1331 |
-
background: none;
|
1332 |
-
color: #000000;
|
1333 |
-
}
|
1334 |
-
|
1335 |
-
|
1336 |
-
.rt-filter-item-wrap.rt-order-by-action, .rt-filter-item-wrap.rt-sort-order-action {
|
1337 |
-
float: left;
|
1338 |
-
}
|
1339 |
-
|
1340 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap {
|
1341 |
-
line-height: 1.55;
|
1342 |
-
display: inline-block;
|
1343 |
-
vertical-align: top;
|
1344 |
-
font-size: 13px;
|
1345 |
-
letter-spacing: 0.1em;
|
1346 |
-
text-transform: uppercase;
|
1347 |
-
margin: 4px;
|
1348 |
-
padding: 8px 10px;
|
1349 |
-
cursor: pointer;
|
1350 |
-
position: relative;
|
1351 |
-
user-select: none;
|
1352 |
-
-webkit-user-select: none;
|
1353 |
-
-moz-user-select: none;
|
1354 |
-
transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
|
1355 |
-
-webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
|
1356 |
-
-ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
|
1357 |
-
color: #666;
|
1358 |
-
}
|
1359 |
-
|
1360 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-button-wrap {
|
1361 |
-
padding: 0;
|
1362 |
-
margin-top: 0;
|
1363 |
-
margin-right: 0;
|
1364 |
-
}
|
1365 |
-
|
1366 |
-
@media (max-width: 767px) {
|
1367 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-button-wrap {
|
1368 |
-
display: inline;
|
1369 |
-
}
|
1370 |
-
}
|
1371 |
-
|
1372 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-button-item .rt-filter-sub-tax {
|
1373 |
-
display: none;
|
1374 |
-
}
|
1375 |
-
|
1376 |
-
.rt-layout-filter-container .rt-filter-sub-tax.sub-button-group {
|
1377 |
-
margin: 0 4px;
|
1378 |
-
}
|
1379 |
-
|
1380 |
-
.rt-layout-filter-container .rt-filter-sub-tax.sub-button-group .rt-filter-button-item {
|
1381 |
-
cursor: pointer;
|
1382 |
-
}
|
1383 |
-
|
1384 |
-
.rt-layout-filter-container > .rt-filter-sub-tax.sub-button-group > span {
|
1385 |
-
padding: 8px 10px;
|
1386 |
-
border: 1px solid;
|
1387 |
-
margin: 4px;
|
1388 |
-
display: inline-block;
|
1389 |
-
line-height: 1.55;
|
1390 |
-
vertical-align: top;
|
1391 |
-
font-size: 13px;
|
1392 |
-
letter-spacing: 0.1em;
|
1393 |
-
text-transform: uppercase;
|
1394 |
-
}
|
1395 |
-
|
1396 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap {
|
1397 |
-
border: 1px solid #666;
|
1398 |
-
color: #666;
|
1399 |
-
position: relative;
|
1400 |
-
}
|
1401 |
-
|
1402 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap:hover {
|
1403 |
-
border-color: #222;
|
1404 |
-
color: #222;
|
1405 |
-
}
|
1406 |
-
|
1407 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-sort-order-action:hover {
|
1408 |
-
border-color: #222;
|
1409 |
-
}
|
1410 |
-
|
1411 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap > .rt-filter-dropdown-default {
|
1412 |
-
min-width: 135px;
|
1413 |
-
max-width: 135px;
|
1414 |
-
overflow: hidden;
|
1415 |
-
text-overflow: ellipsis;
|
1416 |
-
text-align: center;
|
1417 |
-
display: block;
|
1418 |
-
white-space: nowrap;
|
1419 |
-
}
|
1420 |
-
|
1421 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown {
|
1422 |
-
display: block;
|
1423 |
-
position: absolute;
|
1424 |
-
top: 100%;
|
1425 |
-
right: -1px;
|
1426 |
-
left: -1px;
|
1427 |
-
background-color: #222;
|
1428 |
-
z-index: 2;
|
1429 |
-
margin-top: 1px;
|
1430 |
-
border: none;
|
1431 |
-
opacity: 0;
|
1432 |
-
visibility: hidden;
|
1433 |
-
transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
|
1434 |
-
-webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
|
1435 |
-
-ms-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
|
1436 |
-
border-top: 1px solid transparent;
|
1437 |
-
}
|
1438 |
-
|
1439 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap:hover .rt-filter-dropdown {
|
1440 |
-
border-top-color: #000;
|
1441 |
-
}
|
1442 |
-
|
1443 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown .rt-filter-dropdown-item.selected {
|
1444 |
-
background: #000;
|
1445 |
-
}
|
1446 |
-
|
1447 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap.active-dropdown .rt-filter-dropdown {
|
1448 |
-
opacity: 1;
|
1449 |
-
visibility: visible;
|
1450 |
-
}
|
1451 |
-
|
1452 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap.active-dropdown .rt-arrow-angle {
|
1453 |
-
transform: rotate(-180deg);
|
1454 |
-
-webkit-transform: rotate(-180deg);
|
1455 |
-
-ms-transform: rotate(-180deg);
|
1456 |
-
}
|
1457 |
-
|
1458 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown .rt-filter-dropdown-item {
|
1459 |
-
display: block;
|
1460 |
-
padding: 10px 15px 9px 15px;
|
1461 |
-
border-bottom: 1px solid #323232;
|
1462 |
-
color: #b4b4b4;
|
1463 |
-
text-align: center;
|
1464 |
-
}
|
1465 |
-
|
1466 |
-
.rt-filter-dropdown-item .sub-dropdown-wrap,
|
1467 |
-
.rt-filter-dropdown-default .sub-dropdown-wrap {
|
1468 |
-
display: none !important;
|
1469 |
-
}
|
1470 |
-
|
1471 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-arrow-angle {
|
1472 |
-
letter-spacing: 0;
|
1473 |
-
transition: transform 0.2s ease-in-out;
|
1474 |
-
-webkit-transition: transform 0.2s ease-in-out;
|
1475 |
-
-ms-transition: transform 0.2s ease-in-out;
|
1476 |
-
backface-visibility: hidden;
|
1477 |
-
-webkit-backface-visibility: hidden;
|
1478 |
-
}
|
1479 |
-
|
1480 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-sort-order-action {
|
1481 |
-
border: 1px solid #666;
|
1482 |
-
color: #666;
|
1483 |
-
position: relative;
|
1484 |
-
min-width: 38px;
|
1485 |
-
}
|
1486 |
-
|
1487 |
-
.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow {
|
1488 |
-
position: static;
|
1489 |
-
}
|
1490 |
-
|
1491 |
-
.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow > span {
|
1492 |
-
display: block;
|
1493 |
-
position: absolute;
|
1494 |
-
width: 14px;
|
1495 |
-
height: 8px;
|
1496 |
-
top: 50%;
|
1497 |
-
right: 50%;
|
1498 |
-
margin-top: -4px;
|
1499 |
-
margin-right: -7px;
|
1500 |
-
backface-visibility: hidden;
|
1501 |
-
-webkit-backface-visibility: hidden;
|
1502 |
-
transition: transform 0.2s ease-in-out;
|
1503 |
-
-webkit-transition: transform 0.2s ease-in-out;
|
1504 |
-
-ms-transition: transform 0.2s ease-in-out;
|
1505 |
-
}
|
1506 |
-
|
1507 |
-
.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow[data-sort-order="ASC"] > span {
|
1508 |
-
transform: rotate(-180deg);
|
1509 |
-
-webkit-transform: rotate(-180deg);
|
1510 |
-
-ms-transform: rotate(-180deg);
|
1511 |
-
}
|
1512 |
-
|
1513 |
-
.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow > span:before {
|
1514 |
-
content: '';
|
1515 |
-
display: block;
|
1516 |
-
width: 2px;
|
1517 |
-
height: 9px;
|
1518 |
-
position: absolute;
|
1519 |
-
background-color: #666;
|
1520 |
-
transform: rotate(45deg);
|
1521 |
-
-webkit-transform: rotate(45deg);
|
1522 |
-
-ms-transform: rotate(45deg);
|
1523 |
-
top: 0;
|
1524 |
-
right: 3px;
|
1525 |
-
transition: background-color 0.2s ease-in-out;
|
1526 |
-
-webkit-transition: background-color 0.2s ease-in-out;
|
1527 |
-
-ms-transition: background-color 0.2s ease-in-out;
|
1528 |
-
}
|
1529 |
-
|
1530 |
-
.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow > span:after {
|
1531 |
-
content: '';
|
1532 |
-
display: block;
|
1533 |
-
width: 2px;
|
1534 |
-
height: 9px;
|
1535 |
-
position: absolute;
|
1536 |
-
background-color: #666;
|
1537 |
-
transform: rotate(-45deg);
|
1538 |
-
-webkit-transform: rotate(-45deg);
|
1539 |
-
-ms-transform: rotate(-45deg);
|
1540 |
-
top: 0;
|
1541 |
-
right: 9px;
|
1542 |
-
transition: background-color 0.2s ease-in-out;
|
1543 |
-
-webkit-transition: background-color 0.2s ease-in-out;
|
1544 |
-
-ms-transition: background-color 0.2s ease-in-out;
|
1545 |
-
}
|
1546 |
-
|
1547 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-search-filter-wrap {
|
1548 |
-
padding: 0;
|
1549 |
-
position: relative;
|
1550 |
-
float: left;
|
1551 |
-
}
|
1552 |
-
|
1553 |
-
.rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input {
|
1554 |
-
-webkit-appearance: none;
|
1555 |
-
-moz-appearance: none;
|
1556 |
-
appearance: none;
|
1557 |
-
padding: 11px;
|
1558 |
-
background: transparent;
|
1559 |
-
font-size: 12px;
|
1560 |
-
font-weight: 600;
|
1561 |
-
font-family: "Dosis", sans-serif;
|
1562 |
-
border: 1px solid #666;
|
1563 |
-
color: #666;
|
1564 |
-
}
|
1565 |
-
|
1566 |
-
.rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input:focus {
|
1567 |
-
box-shadow: none;
|
1568 |
-
outline: none;
|
1569 |
-
}
|
1570 |
-
|
1571 |
-
.rt-filter-item-wrap.rt-search-filter-wrap span.rt-action {
|
1572 |
-
position: absolute;
|
1573 |
-
left: 5px;
|
1574 |
-
top: 6px;
|
1575 |
-
font-size: 15px;
|
1576 |
-
display: inline-block;
|
1577 |
-
cursor: pointer;
|
1578 |
-
}
|
1579 |
-
|
1580 |
-
.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input::-webkit-input-placeholder {
|
1581 |
-
font-size: 12px;
|
1582 |
-
font-weight: 600;
|
1583 |
-
font-family: "Dosis", sans-serif;
|
1584 |
-
}
|
1585 |
-
|
1586 |
-
.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input::-moz-placeholder {
|
1587 |
-
font-size: 12px;
|
1588 |
-
font-weight: 600;
|
1589 |
-
font-family: "Dosis", sans-serif;
|
1590 |
-
}
|
1591 |
-
|
1592 |
-
.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input:-ms-input-placeholder {
|
1593 |
-
font-size: 12px;
|
1594 |
-
font-weight: 600;
|
1595 |
-
font-family: "Dosis", sans-serif;
|
1596 |
-
}
|
1597 |
-
|
1598 |
-
.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input:-moz-placeholder {
|
1599 |
-
font-size: 12px;
|
1600 |
-
font-weight: 600;
|
1601 |
-
font-family: "Dosis", sans-serif;
|
1602 |
-
}
|
1603 |
-
|
1604 |
-
@media (max-width: 600px) {
|
1605 |
-
.rt-filter-item-wrap.rt-tax-filter.rt-filter-dropdown-wrap {
|
1606 |
-
display: block;
|
1607 |
-
margin-bottom: 10px;
|
1608 |
-
}
|
1609 |
-
|
1610 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap > .rt-filter-dropdown-default {
|
1611 |
-
margin: 0 auto;
|
1612 |
-
}
|
1613 |
-
}
|
1614 |
-
|
1615 |
-
/***************************
|
1616 |
-
Tooltip Style
|
1617 |
-
****************************/
|
1618 |
-
|
1619 |
-
.rt-tpg-social-share.a {
|
1620 |
-
position: relative;
|
1621 |
-
}
|
1622 |
-
|
1623 |
-
body > .rt-tooltip {
|
1624 |
-
font-size: 100%;
|
1625 |
-
position: absolute;
|
1626 |
-
z-index: 9999;
|
1627 |
-
-o-box-shadow: 0 0 5px #aaa;
|
1628 |
-
-moz-box-shadow: 0 0 5px #aaa;
|
1629 |
-
-webkit-box-shadow: 0 0 5px #aaa;
|
1630 |
-
box-shadow: 0 0 5px #aaa;
|
1631 |
-
color: #fff;
|
1632 |
-
border-radius: 3px;
|
1633 |
-
background: #666;
|
1634 |
-
padding: 5px 10px;
|
1635 |
-
border-width: 2px;
|
1636 |
-
opacity: 0;
|
1637 |
-
pointer-events: none;
|
1638 |
-
-webkit-transition: opacity 1s ease-in-out;
|
1639 |
-
-moz-transition: opacity 1s ease-in-out;
|
1640 |
-
-ms-transition: opacity 1s ease-in-out;
|
1641 |
-
-o-transition: opacity 1s ease-in-out;
|
1642 |
-
transition: opacity 1s ease-in-out;
|
1643 |
-
}
|
1644 |
-
|
1645 |
-
body > .rt-tooltip .rt-tooltip-content {
|
1646 |
-
font-size: 90%;
|
1647 |
-
}
|
1648 |
-
|
1649 |
-
body > .rt-tooltip,
|
1650 |
-
body > .rt-tooltip .rt-tooltip-bottom:after {
|
1651 |
-
background: #000;
|
1652 |
-
border-radius: 2px;
|
1653 |
-
}
|
1654 |
-
|
1655 |
-
body > .rt-tooltip .rt-tooltip-bottom {
|
1656 |
-
width: 70px;
|
1657 |
-
height: 18px;
|
1658 |
-
overflow: hidden;
|
1659 |
-
position: absolute;
|
1660 |
-
right: 50%;
|
1661 |
-
margin-right: -32px;
|
1662 |
-
bottom: -16px;
|
1663 |
-
}
|
1664 |
-
|
1665 |
-
body > .rt-tooltip .rt-tooltip-bottom:after {
|
1666 |
-
content: "";
|
1667 |
-
position: absolute;
|
1668 |
-
right: 20px;
|
1669 |
-
top: -20px;
|
1670 |
-
width: 25px;
|
1671 |
-
height: 25px;
|
1672 |
-
-webkit-transform: rotate(-45deg);
|
1673 |
-
-moz-transform: rotate(-45deg);
|
1674 |
-
-ms-transform: rotate(-45deg);
|
1675 |
-
-o-transform: rotate(-45deg);
|
1676 |
-
tranform: rotate(45deg);
|
1677 |
-
}
|
1678 |
-
|
1679 |
-
/******************************************
|
1680 |
-
Common Layout Style
|
1681 |
-
********************************************/
|
1682 |
-
|
1683 |
-
|
1684 |
-
.rt-tpg-container .rt-holder .rt-img-holder {
|
1685 |
-
position: relative;
|
1686 |
-
overflow: hidden;
|
1687 |
-
}
|
1688 |
-
|
1689 |
-
.rt-tpg-container .rt-holder .tpg-el-image-wrap {
|
1690 |
-
margin: -15px -15px 15px;
|
1691 |
-
}
|
1692 |
-
|
1693 |
-
.rt-tpg-container .list-behaviour .rt-holder .tpg-el-image-wrap {
|
1694 |
-
margin: 0;
|
1695 |
-
}
|
1696 |
-
|
1697 |
-
.rt-tpg-container .rt-holder:hover .rt-img-holder img:not(.avatar) {
|
1698 |
-
-webkit-transform: scale(1.1);
|
1699 |
-
-moz-transform: scale(1.1);
|
1700 |
-
-ms-transform: scale(1.1);
|
1701 |
-
-o-transform: scale(1.1);
|
1702 |
-
transform: scale(1.1);
|
1703 |
-
}
|
1704 |
-
|
1705 |
-
.rt-tpg-container .img_zoom_out .rt-holder .rt-img-holder img:not(.avatar) {
|
1706 |
-
-webkit-transform: scale(1.1);
|
1707 |
-
-moz-transform: scale(1.1);
|
1708 |
-
-ms-transform: scale(1.1);
|
1709 |
-
-o-transform: scale(1.1);
|
1710 |
-
transform: scale(1.1);
|
1711 |
-
}
|
1712 |
-
|
1713 |
-
.rt-tpg-container .img_no_effect .rt-holder:hover .rt-img-holder img,
|
1714 |
-
.rt-tpg-container .img_zoom_out .rt-holder:hover .rt-img-holder img {
|
1715 |
-
-webkit-transform: scale(1);
|
1716 |
-
-moz-transform: scale(1);
|
1717 |
-
-ms-transform: scale(1);
|
1718 |
-
-o-transform: scale(1);
|
1719 |
-
transform: scale(1);
|
1720 |
-
}
|
1721 |
-
|
1722 |
-
|
1723 |
-
.rt-tpg-container .rt-holder .rt-detail {
|
1724 |
-
padding: 15px 15px 0;
|
1725 |
-
}
|
1726 |
-
|
1727 |
-
.rt-tpg-container .entry-title-wrapper .entry-title {
|
1728 |
-
font-size: 26px;
|
1729 |
-
line-height: 1.25;
|
1730 |
-
margin: 0 0 18px;
|
1731 |
-
font-weight: 500;
|
1732 |
-
}
|
1733 |
-
|
1734 |
-
@media (max-width: 767px) {
|
1735 |
-
.rt-tpg-container .entry-title-wrapper .entry-title {
|
1736 |
-
font-size: 20px;
|
1737 |
-
margin: 0 0 15px;
|
1738 |
-
}
|
1739 |
-
}
|
1740 |
-
|
1741 |
-
.rt-tpg-container .rt-holder .rt-detail .entry-title-wrapper {
|
1742 |
-
margin-bottom: 15px;
|
1743 |
-
}
|
1744 |
-
|
1745 |
-
.rt-tpg-container .rt-detail .tpg-excerpt-inner {
|
1746 |
-
margin-bottom: 15px;
|
1747 |
-
}
|
1748 |
-
|
1749 |
-
.rt-tpg-container .list-layout2 .rt-detail .tpg-excerpt-inner,
|
1750 |
-
.rt-tpg-container .list-layout3 .rt-detail .tpg-excerpt-inner {
|
1751 |
-
margin-bottom: 0;
|
1752 |
-
}
|
1753 |
-
|
1754 |
-
|
1755 |
-
.rt-tpg-container .rt-holder .rt-detail .post-meta {
|
1756 |
-
line-height: 25px;
|
1757 |
-
overflow: hidden;
|
1758 |
-
}
|
1759 |
-
|
1760 |
-
.rt-tpg-container .rt-holder .rt-detail .read-more a {
|
1761 |
-
overflow: hidden;
|
1762 |
-
display: inline-flex;
|
1763 |
-
flex-direction: row;
|
1764 |
-
flex-wrap: wrap;
|
1765 |
-
justify-content: left;
|
1766 |
-
align-items: center;
|
1767 |
-
padding: 8px 20px;
|
1768 |
-
font-size: 15px;
|
1769 |
-
line-height: 1.8;
|
1770 |
-
border: 1px solid rgb(203 203 203 / 40%)
|
1771 |
-
}
|
1772 |
-
|
1773 |
-
.rt-tpg-container .rt-holder .rt-detail .read-more a:hover {
|
1774 |
-
color: #7a64f2;
|
1775 |
-
border-color: #7a64f2;
|
1776 |
-
}
|
1777 |
-
|
1778 |
-
.rt-tpg-container .rt-holder .rt-detail .read-more a {
|
1779 |
-
color: #1a1a1a;
|
1780 |
-
}
|
1781 |
-
|
1782 |
-
.rt-tpg-container .rt-holder .rt-detail .post-meta.right {
|
1783 |
-
text-align: left;
|
1784 |
-
}
|
1785 |
-
|
1786 |
-
.rt-tpg-container .rt-holder .rt-detail .post-meta.center {
|
1787 |
-
text-align: center;
|
1788 |
-
}
|
1789 |
-
|
1790 |
-
.tpg-img-circle .rt-img-holder img {
|
1791 |
-
border-radius: 50% !important;
|
1792 |
-
}
|
1793 |
-
|
1794 |
-
|
1795 |
-
/*
|
1796 |
-
* Animation
|
1797 |
-
*/
|
1798 |
-
@-webkit-keyframes ball-scale-multiple {
|
1799 |
-
0% {
|
1800 |
-
opacity: 0;
|
1801 |
-
-webkit-transform: scale(0);
|
1802 |
-
transform: scale(0);
|
1803 |
-
}
|
1804 |
-
5% {
|
1805 |
-
opacity: .75;
|
1806 |
-
}
|
1807 |
-
100% {
|
1808 |
-
opacity: 0;
|
1809 |
-
-webkit-transform: scale(1);
|
1810 |
-
transform: scale(1);
|
1811 |
-
}
|
1812 |
-
}
|
1813 |
-
|
1814 |
-
@-moz-keyframes ball-scale-multiple {
|
1815 |
-
0% {
|
1816 |
-
opacity: 0;
|
1817 |
-
-moz-transform: scale(0);
|
1818 |
-
transform: scale(0);
|
1819 |
-
}
|
1820 |
-
5% {
|
1821 |
-
opacity: .75;
|
1822 |
-
}
|
1823 |
-
100% {
|
1824 |
-
opacity: 0;
|
1825 |
-
-moz-transform: scale(1);
|
1826 |
-
transform: scale(1);
|
1827 |
-
}
|
1828 |
-
}
|
1829 |
-
|
1830 |
-
@-o-keyframes ball-scale-multiple {
|
1831 |
-
0% {
|
1832 |
-
opacity: 0;
|
1833 |
-
-o-transform: scale(0);
|
1834 |
-
transform: scale(0);
|
1835 |
-
}
|
1836 |
-
5% {
|
1837 |
-
opacity: .75;
|
1838 |
-
}
|
1839 |
-
100% {
|
1840 |
-
opacity: 0;
|
1841 |
-
-o-transform: scale(1);
|
1842 |
-
transform: scale(1);
|
1843 |
-
}
|
1844 |
-
}
|
1845 |
-
|
1846 |
-
@keyframes ball-scale-multiple {
|
1847 |
-
0% {
|
1848 |
-
opacity: 0;
|
1849 |
-
-webkit-transform: scale(0);
|
1850 |
-
-moz-transform: scale(0);
|
1851 |
-
-o-transform: scale(0);
|
1852 |
-
transform: scale(0);
|
1853 |
-
}
|
1854 |
-
5% {
|
1855 |
-
opacity: .75;
|
1856 |
-
}
|
1857 |
-
100% {
|
1858 |
-
opacity: 0;
|
1859 |
-
-webkit-transform: scale(1);
|
1860 |
-
-moz-transform: scale(1);
|
1861 |
-
-o-transform: scale(1);
|
1862 |
-
transform: scale(1);
|
1863 |
-
}
|
1864 |
-
}
|
1865 |
-
|
1866 |
-
@-webkit-keyframes ball-clip-rotate {
|
1867 |
-
0% {
|
1868 |
-
-webkit-transform: rotate(0deg);
|
1869 |
-
transform: rotate(0deg);
|
1870 |
-
}
|
1871 |
-
50% {
|
1872 |
-
-webkit-transform: rotate(-180deg);
|
1873 |
-
transform: rotate(-180deg);
|
1874 |
-
}
|
1875 |
-
100% {
|
1876 |
-
-webkit-transform: rotate(-360deg);
|
1877 |
-
transform: rotate(-360deg);
|
1878 |
-
}
|
1879 |
-
}
|
1880 |
-
|
1881 |
-
@-moz-keyframes ball-clip-rotate {
|
1882 |
-
0% {
|
1883 |
-
-moz-transform: rotate(0deg);
|
1884 |
-
transform: rotate(0deg);
|
1885 |
-
}
|
1886 |
-
50% {
|
1887 |
-
-moz-transform: rotate(-180deg);
|
1888 |
-
transform: rotate(-180deg);
|
1889 |
-
}
|
1890 |
-
100% {
|
1891 |
-
-moz-transform: rotate(-360deg);
|
1892 |
-
transform: rotate(-360deg);
|
1893 |
-
}
|
1894 |
-
}
|
1895 |
-
|
1896 |
-
@-o-keyframes ball-clip-rotate {
|
1897 |
-
0% {
|
1898 |
-
-o-transform: rotate(0deg);
|
1899 |
-
transform: rotate(0deg);
|
1900 |
-
}
|
1901 |
-
50% {
|
1902 |
-
-o-transform: rotate(-180deg);
|
1903 |
-
transform: rotate(-180deg);
|
1904 |
-
}
|
1905 |
-
100% {
|
1906 |
-
-o-transform: rotate(-360deg);
|
1907 |
-
transform: rotate(-360deg);
|
1908 |
-
}
|
1909 |
-
}
|
1910 |
-
|
1911 |
-
@keyframes ball-clip-rotate {
|
1912 |
-
0% {
|
1913 |
-
-webkit-transform: rotate(0deg);
|
1914 |
-
-moz-transform: rotate(0deg);
|
1915 |
-
-o-transform: rotate(0deg);
|
1916 |
-
transform: rotate(0deg);
|
1917 |
-
}
|
1918 |
-
50% {
|
1919 |
-
-webkit-transform: rotate(-180deg);
|
1920 |
-
-moz-transform: rotate(-180deg);
|
1921 |
-
-o-transform: rotate(-180deg);
|
1922 |
-
transform: rotate(-180deg);
|
1923 |
-
}
|
1924 |
-
100% {
|
1925 |
-
-webkit-transform: rotate(-360deg);
|
1926 |
-
-moz-transform: rotate(-360deg);
|
1927 |
-
-o-transform: rotate(-360deg);
|
1928 |
-
transform: rotate(-360deg);
|
1929 |
-
}
|
1930 |
-
}
|
1931 |
-
|
1932 |
-
.rt-container-fluid {
|
1933 |
-
position: relative;
|
1934 |
-
}
|
1935 |
-
|
1936 |
-
#bottom-script-loader {
|
1937 |
-
position: absolute;
|
1938 |
-
width: 100%;
|
1939 |
-
height: 100%;
|
1940 |
-
z-index: 20;
|
1941 |
-
background: rgba(255, 255, 255, 0.95);
|
1942 |
-
}
|
1943 |
-
|
1944 |
-
#bottom-script-loader .rt-ball-clip-rotate {
|
1945 |
-
color: var(--tpg-primary-color);
|
1946 |
-
position: absolute;
|
1947 |
-
top: 80px;
|
1948 |
-
right: 50%;
|
1949 |
-
margin-right: -16px;
|
1950 |
-
z-index: 2;
|
1951 |
-
}
|
1952 |
-
|
1953 |
-
/*----------- Widget Heading -------------*/
|
1954 |
-
|
1955 |
-
.tpg-widget-heading-wrapper {
|
1956 |
-
position: relative;
|
1957 |
-
margin-bottom: 30px;
|
1958 |
-
display: flex;
|
1959 |
-
}
|
1960 |
-
|
1961 |
-
.tpg-widget-heading-wrapper .tpg-widget-heading {
|
1962 |
-
position: relative;
|
1963 |
-
padding-left: 15px;
|
1964 |
-
margin-top: 0;
|
1965 |
-
padding-top: 0;
|
1966 |
-
margin-bottom: -1px;
|
1967 |
-
line-height: 1;
|
1968 |
-
}
|
1969 |
-
|
1970 |
-
.search .tpg-widget-heading-wrapper .tpg-widget-heading {
|
1971 |
-
line-height: 1.5
|
1972 |
-
}
|
1973 |
-
|
1974 |
-
@meia (max-width: 767px) {
|
1975 |
-
.tpg-widget-heading-wrapper .tpg-widget-heading {
|
1976 |
-
line-height: 1.2;
|
1977 |
-
}
|
1978 |
-
}
|
1979 |
-
|
1980 |
-
.tpg-widget-heading-wrapper.center .tpg-widget-heading {
|
1981 |
-
margin: 0;
|
1982 |
-
padding: 0;
|
1983 |
-
}
|
1984 |
-
|
1985 |
-
.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading::before {
|
1986 |
-
content: '';
|
1987 |
-
position: absolute;
|
1988 |
-
top: 50%;
|
1989 |
-
left: -7.5px;
|
1990 |
-
width: 8px;
|
1991 |
-
height: 8px;
|
1992 |
-
margin-top: -4px;
|
1993 |
-
border-radius: 50%;
|
1994 |
-
background-color: var(--tpg-primary-color);
|
1995 |
-
margin-left: 7px;
|
1996 |
-
display: inline-block;
|
1997 |
-
}
|
1998 |
-
|
1999 |
-
.tpg-widget-heading-wrapper.heading-style1.center .tpg-widget-heading::before {
|
2000 |
-
display: none;
|
2001 |
-
}
|
2002 |
-
|
2003 |
-
.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-left {
|
2004 |
-
display: none;
|
2005 |
-
}
|
2006 |
-
|
2007 |
-
.tpg-widget-heading-wrapper.heading-style1.center .tpg-widget-heading-line.line-left {
|
2008 |
-
display: block;
|
2009 |
-
margin-right: 0;
|
2010 |
-
margin-left: 15px;
|
2011 |
-
}
|
2012 |
-
|
2013 |
-
.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line-left,
|
2014 |
-
.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line {
|
2015 |
-
/*border: 1px solid;*/
|
2016 |
-
border-style: solid;
|
2017 |
-
border-color: #e5e5e5;
|
2018 |
-
border-width: 1px 0;
|
2019 |
-
-webkit-box-flex: 1;
|
2020 |
-
align-self: center;
|
2021 |
-
margin-right: 15px;
|
2022 |
-
-ms-flex-positive: 1;
|
2023 |
-
flex-grow: 1;
|
2024 |
-
height: 4px;
|
2025 |
-
}
|
2026 |
-
|
2027 |
-
.tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading,
|
2028 |
-
.tpg-widget-heading-wrapper.heading-style3 .tpg-widget-heading {
|
2029 |
-
background-color: var(--tpg-primary-color);
|
2030 |
-
color: #fff;
|
2031 |
-
line-height: 1.4;
|
2032 |
-
padding: 5px 15px;
|
2033 |
-
margin-bottom: -.5px;
|
2034 |
-
}
|
2035 |
-
|
2036 |
-
.tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading a,
|
2037 |
-
.tpg-widget-heading-wrapper.heading-style3 .tpg-widget-heading a {
|
2038 |
-
color: inherit;
|
2039 |
-
}
|
2040 |
-
|
2041 |
-
.tpg-widget-heading-wrapper.center {
|
2042 |
-
justify-content: center;
|
2043 |
-
}
|
2044 |
-
|
2045 |
-
.tpg-widget-heading-wrapper.right {
|
2046 |
-
flex-direction: row-reverse;
|
2047 |
-
}
|
2048 |
-
|
2049 |
-
.tpg-widget-heading-wrapper.right .tpg-widget-heading {
|
2050 |
-
padding-right: 15px;
|
2051 |
-
padding-left: 0;
|
2052 |
-
}
|
2053 |
-
|
2054 |
-
.tpg-widget-heading-wrapper.right .tpg-widget-heading::before {
|
2055 |
-
right: 0;
|
2056 |
-
left: auto;
|
2057 |
-
}
|
2058 |
-
|
2059 |
-
.tpg-widget-heading-wrapper.right .tpg-widget-heading-line {
|
2060 |
-
margin-right: 0;
|
2061 |
-
margin-left: 15px;
|
2062 |
-
}
|
2063 |
-
|
2064 |
-
.tpg-el-main-wrapper .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading::before,
|
2065 |
-
.tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading::after {
|
2066 |
-
content: "";
|
2067 |
-
position: absolute;
|
2068 |
-
top: 0;
|
2069 |
-
left: -11px;
|
2070 |
-
border-width: 12px 0 0 12px;
|
2071 |
-
border-style: solid;
|
2072 |
-
border-color: var(--tpg-primary-color) transparent;
|
2073 |
-
}
|
2074 |
-
|
2075 |
-
.section-title-align-center .tpg-el-main-wrapper .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading::before {
|
2076 |
-
left: auto;
|
2077 |
-
right: -11px;
|
2078 |
-
border-width: 12px 12px 0 0;
|
2079 |
-
}
|
2080 |
-
|
2081 |
-
.tpg-widget-heading-wrapper.heading-style2.right .tpg-widget-heading::after {
|
2082 |
-
right: -11px;
|
2083 |
-
left: auto;
|
2084 |
-
border-width: 12px 12px 0 0;
|
2085 |
-
}
|
2086 |
-
|
2087 |
-
.tpg-widget-heading-wrapper.heading-style2.center .tpg-widget-heading::after {
|
2088 |
-
content: none;
|
2089 |
-
}
|
2090 |
-
|
2091 |
-
.section-title-style-style2 .tpg-header-wrapper:not(.carousel) .tpg-widget-heading-wrapper,
|
2092 |
-
.section-title-style-style3 .tpg-header-wrapper:not(.carousel) .tpg-widget-heading-wrapper,
|
2093 |
-
.section-title-style-style2 .tpg-header-wrapper.carousel,
|
2094 |
-
.section-title-style-style3 .tpg-header-wrapper.carousel {
|
2095 |
-
border-bottom: 2px solid var(--tpg-primary-color);
|
2096 |
-
}
|
2097 |
-
|
2098 |
-
|
2099 |
-
/*End Widget Heading*/
|
2100 |
-
|
2101 |
-
/*===============
|
2102 |
-
TPG EVEN Style
|
2103 |
-
==================*/
|
2104 |
-
|
2105 |
-
.tpg-full-height,
|
2106 |
-
.tpg-even {
|
2107 |
-
display: -ms-flexbox;
|
2108 |
-
display: flex;
|
2109 |
-
-ms-flex-wrap: wrap;
|
2110 |
-
flex-wrap: wrap;
|
2111 |
-
}
|
2112 |
-
|
2113 |
-
@media (max-width: 767px) {
|
2114 |
-
.rt-content-loader .rt-holder,
|
2115 |
-
.tpg-even .rt-holder {
|
2116 |
-
flex-direction: column;
|
2117 |
-
}
|
2118 |
-
}
|
2119 |
-
|
2120 |
-
/**********************************************************************/
|
2121 |
-
/********************************* pagination *************************/
|
2122 |
-
/**********************************************************************/
|
2123 |
-
.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next > * {
|
2124 |
-
margin-right: 1px;
|
2125 |
-
margin-left: 1px;
|
2126 |
-
display: inline-block;
|
2127 |
-
width: 30px;
|
2128 |
-
height: 30px;
|
2129 |
-
text-align: center;
|
2130 |
-
font-size: 18px;
|
2131 |
-
background-color: #bcbcbc;
|
2132 |
-
color: #fff;
|
2133 |
-
line-height: 30px;
|
2134 |
-
bottom: auto;
|
2135 |
-
cursor: pointer;
|
2136 |
-
transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
|
2137 |
-
-webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
|
2138 |
-
-ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
|
2139 |
-
}
|
2140 |
-
|
2141 |
-
.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next > * i {
|
2142 |
-
line-height: 1;
|
2143 |
-
}
|
2144 |
-
|
2145 |
-
.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next > .rt-disabled {
|
2146 |
-
opacity: 0.5;
|
2147 |
-
pointer-events: none;
|
2148 |
-
}
|
2149 |
-
|
2150 |
-
.rt-cb-page-prev-next {
|
2151 |
-
text-align: right;
|
2152 |
-
}
|
2153 |
-
|
2154 |
-
.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style .rt-loadmore-loading {
|
2155 |
-
color: #fff;
|
2156 |
-
position: absolute;
|
2157 |
-
top: 50%;
|
2158 |
-
right: 50%;
|
2159 |
-
margin-top: -32px;
|
2160 |
-
margin-right: -32px;
|
2161 |
-
visibility: hidden;
|
2162 |
-
opacity: 0;
|
2163 |
-
}
|
2164 |
-
|
2165 |
-
.rt-ball-scale-multiple.rt-2x {
|
2166 |
-
width: 64px;
|
2167 |
-
height: 64px;
|
2168 |
-
}
|
2169 |
-
|
2170 |
-
.rt-ball-scale-multiple.rt-2x > div {
|
2171 |
-
width: 64px;
|
2172 |
-
height: 64px;
|
2173 |
-
}
|
2174 |
-
|
2175 |
-
.rt-ball-scale-multiple, .rt-ball-scale-multiple > div {
|
2176 |
-
position: relative;
|
2177 |
-
-webkit-box-sizing: border-box;
|
2178 |
-
-moz-box-sizing: border-box;
|
2179 |
-
box-sizing: border-box;
|
2180 |
-
}
|
2181 |
-
|
2182 |
-
.rt-ball-scale-multiple > div {
|
2183 |
-
display: inline-block;
|
2184 |
-
float: none;
|
2185 |
-
background-color: currentColor;
|
2186 |
-
border: 0 solid currentColor;
|
2187 |
-
}
|
2188 |
-
|
2189 |
-
.rt-ball-scale-multiple > div:nth-child(2) {
|
2190 |
-
-webkit-animation-delay: .2s;
|
2191 |
-
-moz-animation-delay: .2s;
|
2192 |
-
-o-animation-delay: .2s;
|
2193 |
-
animation-delay: .2s;
|
2194 |
-
}
|
2195 |
-
|
2196 |
-
.rt-ball-scale-multiple > div {
|
2197 |
-
position: absolute;
|
2198 |
-
top: 0;
|
2199 |
-
right: 0;
|
2200 |
-
width: 32px;
|
2201 |
-
height: 32px;
|
2202 |
-
border-radius: 100%;
|
2203 |
-
opacity: 0;
|
2204 |
-
-webkit-animation: ball-scale-multiple 1s 0s linear infinite;
|
2205 |
-
-moz-animation: ball-scale-multiple 1s 0s linear infinite;
|
2206 |
-
-o-animation: ball-scale-multiple 1s 0s linear infinite;
|
2207 |
-
animation: ball-scale-multiple 1s 0s linear infinite;
|
2208 |
-
}
|
2209 |
-
|
2210 |
-
.rt-tpg-container .rt-pagination-wrap {
|
2211 |
-
text-align: center;
|
2212 |
-
margin-top: 10px;
|
2213 |
-
display: inline-block;
|
2214 |
-
width: 100%;
|
2215 |
-
}
|
2216 |
-
|
2217 |
-
.tpg-el-main-wrapper .rt-pagination-wrap {
|
2218 |
-
display: flex;
|
2219 |
-
flex-direction: row;
|
2220 |
-
justify-content: center;
|
2221 |
-
margin-top: 30px;
|
2222 |
-
}
|
2223 |
-
|
2224 |
-
.tpg-el-main-wrapper .rt-pagination-wrap .rt-pagination {
|
2225 |
-
margin: 0;
|
2226 |
-
}
|
2227 |
-
|
2228 |
-
.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style {
|
2229 |
-
cursor: pointer;
|
2230 |
-
position: relative;
|
2231 |
-
user-select: none;
|
2232 |
-
-webkit-user-select: none;
|
2233 |
-
}
|
2234 |
-
|
2235 |
-
.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style.rt-hidden-elm,
|
2236 |
-
.rt-tpg-container .rt-pagination-wrap .rt-infinite-action.rt-hidden-elm,
|
2237 |
-
.rt-tpg-container .rt-pagination-wrap .rt-page-numbers.rt-hidden-elm,
|
2238 |
-
.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next.rt-hidden-elm {
|
2239 |
-
display: none !important;
|
2240 |
-
}
|
2241 |
-
|
2242 |
-
.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style.rt-lm-loading .rt-loadmore-text {
|
2243 |
-
opacity: 0;
|
2244 |
-
visibility: hidden;
|
2245 |
-
}
|
2246 |
-
|
2247 |
-
.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style.rt-lm-loading .rt-loadmore-loading {
|
2248 |
-
opacity: 1;
|
2249 |
-
visibility: visible;
|
2250 |
-
}
|
2251 |
-
|
2252 |
-
.rt-tpg-container .rt-pagination-wrap .rt-loadmore-btn {
|
2253 |
-
font-size: 13px;
|
2254 |
-
letter-spacing: 0.1em;
|
2255 |
-
text-transform: uppercase;
|
2256 |
-
margin-top: 30px;
|
2257 |
-
color: #fff;
|
2258 |
-
background-color: var(--tpg-primary-color);
|
2259 |
-
text-decoration: none;
|
2260 |
-
padding: 9px 20px 8px 20px;
|
2261 |
-
display: inline-block;
|
2262 |
-
transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
|
2263 |
-
-webkit-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
|
2264 |
-
-ms-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
|
2265 |
-
}
|
2266 |
-
|
2267 |
-
.rt-tpg-container .rt-loadmore-btn:hover {
|
2268 |
-
background-color: var(--tpg-secondary-color);
|
2269 |
-
}
|
2270 |
-
|
2271 |
-
.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages {
|
2272 |
-
float: none;
|
2273 |
-
padding-top: 0.1px;
|
2274 |
-
padding-bottom: 0.1px;
|
2275 |
-
}
|
2276 |
-
|
2277 |
-
.rt-tpg-container .rt-pagination-wrap .rt-page-numbers.rt-lm-loading {
|
2278 |
-
pointer-events: none;
|
2279 |
-
opacity: 0.5;
|
2280 |
-
}
|
2281 |
-
|
2282 |
-
.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul {
|
2283 |
-
float: none;
|
2284 |
-
text-align: center;
|
2285 |
-
font-size: 0;
|
2286 |
-
line-height: 0;
|
2287 |
-
margin: -2px;
|
2288 |
-
}
|
2289 |
-
|
2290 |
-
.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li {
|
2291 |
-
float: none;
|
2292 |
-
font-size: 16px;
|
2293 |
-
line-height: 1.55;
|
2294 |
-
display: inline-block;
|
2295 |
-
min-width: 48px;
|
2296 |
-
min-height: 45px;
|
2297 |
-
border: none;
|
2298 |
-
padding: 2px;
|
2299 |
-
}
|
2300 |
-
|
2301 |
-
.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li > a {
|
2302 |
-
border-radius: 3px;
|
2303 |
-
text-decoration: none;
|
2304 |
-
min-width: 48px;
|
2305 |
-
min-height: 45px;
|
2306 |
-
line-height: 45px;
|
2307 |
-
font-size: 16px;
|
2308 |
-
font-weight: normal;
|
2309 |
-
letter-spacing: 0;
|
2310 |
-
border: 1px solid #dee2e6;
|
2311 |
-
display: block;
|
2312 |
-
padding-right: 8px;
|
2313 |
-
padding-left: 8px;
|
2314 |
-
color: #212121;
|
2315 |
-
}
|
2316 |
-
|
2317 |
-
.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.active > a {
|
2318 |
-
background-color: var(--tpg-primary-color);
|
2319 |
-
border-color: var(--tpg-primary-color);
|
2320 |
-
color: #ffffff;
|
2321 |
-
}
|
2322 |
-
|
2323 |
-
.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.paginationjs-ellipsis {
|
2324 |
-
padding: 0;
|
2325 |
-
min-width: auto;
|
2326 |
-
}
|
2327 |
-
|
2328 |
-
.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.paginationjs-ellipsis a {
|
2329 |
-
border: none !important;
|
2330 |
-
pointer-events: none !important;
|
2331 |
-
color: #000 !important;
|
2332 |
-
opacity: 1;
|
2333 |
-
font-size: 18px;
|
2334 |
-
min-width: auto;
|
2335 |
-
background: none !important;
|
2336 |
-
}
|
2337 |
-
|
2338 |
-
/* old pagination */
|
2339 |
-
|
2340 |
-
.rt-pagination {
|
2341 |
-
text-align: center;
|
2342 |
-
margin: 30px 0;
|
2343 |
-
}
|
2344 |
-
|
2345 |
-
.rt-pagination .pagination-list {
|
2346 |
-
display: inline-block;
|
2347 |
-
padding-right: 0;
|
2348 |
-
border-radius: 4px;
|
2349 |
-
background: transparent;
|
2350 |
-
border-top: 0;
|
2351 |
-
}
|
2352 |
-
|
2353 |
-
.rt-pagination .pagination-list a {
|
2354 |
-
box-shadow: none;
|
2355 |
-
}
|
2356 |
-
|
2357 |
-
.rt-pagination .pagination-list > li {
|
2358 |
-
display: inline-block;
|
2359 |
-
margin: 2px 2px;
|
2360 |
-
}
|
2361 |
-
|
2362 |
-
.rt-pagination .pagination-list > li > a,
|
2363 |
-
.rt-pagination .pagination-list > li > span {
|
2364 |
-
position: relative;
|
2365 |
-
padding: 0 5px;
|
2366 |
-
line-height: 45px;
|
2367 |
-
text-decoration: none;
|
2368 |
-
color: #212121;
|
2369 |
-
background-color: #ffffff;
|
2370 |
-
border: 1px solid #dddddd;
|
2371 |
-
margin-right: -1px;
|
2372 |
-
transition: 0.4s ease-in-out;
|
2373 |
-
min-width: 48px;
|
2374 |
-
min-height: 45px;
|
2375 |
-
border-radius: 3px;
|
2376 |
-
display: block;
|
2377 |
-
}
|
2378 |
-
|
2379 |
-
.rt-pagination .pagination-list > li > a:hover,
|
2380 |
-
.rt-pagination .pagination-list > li > span:hover,
|
2381 |
-
.rt-pagination .pagination-list > li > a:focus,
|
2382 |
-
.rt-pagination .pagination-list > li > span:focus {
|
2383 |
-
z-index: 2;
|
2384 |
-
color: #ffffff;
|
2385 |
-
background-color: var(--tpg-primary-color);
|
2386 |
-
border-color: var(--tpg-primary-color);
|
2387 |
-
}
|
2388 |
-
|
2389 |
-
.rt-pagination .pagination-list > .active > a,
|
2390 |
-
.rt-pagination .pagination-list > .active > span,
|
2391 |
-
.rt-pagination .pagination-list > .active > a:hover,
|
2392 |
-
.rt-pagination .pagination-list > .active > span:hover,
|
2393 |
-
.rt-pagination .pagination-list > .active > a:focus,
|
2394 |
-
.rt-pagination .pagination-list > .active > span:focus {
|
2395 |
-
z-index: 3;
|
2396 |
-
color: #ffffff;
|
2397 |
-
background-color: var(--tpg-primary-color);
|
2398 |
-
border-color: var(--tpg-primary-color);
|
2399 |
-
cursor: default;
|
2400 |
-
}
|
2401 |
-
|
2402 |
-
.rt-pagination .pagination-list > .disabled > span,
|
2403 |
-
.rt-pagination .pagination-list > .disabled > span:hover,
|
2404 |
-
.rt-pagination .pagination-list > .disabled > span:focus,
|
2405 |
-
.rt-pagination .pagination-list > .disabled > a,
|
2406 |
-
.rt-pagination .pagination-list > .disabled > a:hover,
|
2407 |
-
.rt-pagination .pagination-list > .disabled > a:focus {
|
2408 |
-
color: #212121;
|
2409 |
-
background-color: #ffffff;
|
2410 |
-
border-color: #dddddd;
|
2411 |
-
cursor: not-allowed;
|
2412 |
-
/*pointer-events: none;*/
|
2413 |
-
}
|
2414 |
-
|
2415 |
-
|
2416 |
-
/*---------- Swiper Pagination --------*/
|
2417 |
-
|
2418 |
-
.rt-tpg-container .swiper-pagination-bullet {
|
2419 |
-
background: #D6D6D6;
|
2420 |
-
opacity: 1;
|
2421 |
-
width: 10px;
|
2422 |
-
height: 10px;
|
2423 |
-
}
|
2424 |
-
|
2425 |
-
.rt-tpg-container .swiper-wrapper {
|
2426 |
-
padding-bottom: 45px;
|
2427 |
-
}
|
2428 |
-
|
2429 |
-
.rt-tpg-container.slider-layout13-main .swiper-wrapper {
|
2430 |
-
padding-bottom: 0;
|
2431 |
-
}
|
2432 |
-
|
2433 |
-
.rt-tpg-container .swiper-pagination-bullets.swiper-pagination-horizontal {
|
2434 |
-
bottom: 0;
|
2435 |
-
}
|
2436 |
-
|
2437 |
-
.rt-tpg-container .swiper-pagination-bullet.swiper-pagination-bullet-active-main {
|
2438 |
-
background: #007bff;
|
2439 |
-
}
|
2440 |
-
|
2441 |
-
.rt-tpg-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev,
|
2442 |
-
.rt-tpg-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
|
2443 |
-
transform: scale(.6);
|
2444 |
-
}
|
2445 |
-
|
2446 |
-
.rt-tpg-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next,
|
2447 |
-
.rt-tpg-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
|
2448 |
-
transform: scale(0.8);
|
2449 |
-
}
|
2450 |
-
|
2451 |
-
/*---------- Swiper Navigation -------------*/
|
2452 |
-
|
2453 |
-
.rt-tpg-container > div {
|
2454 |
-
position: relative;
|
2455 |
-
}
|
2456 |
-
|
2457 |
-
.rt-tpg-container .slider-main-wrapper {
|
2458 |
-
position: relative;
|
2459 |
-
}
|
2460 |
-
|
2461 |
-
.rt-tpg-container .swiper-navigation .slider-btn {
|
2462 |
-
position: absolute;
|
2463 |
-
font-size: 14px;
|
2464 |
-
color: #2962ff;
|
2465 |
-
background-color: #fff;
|
2466 |
-
width: 34px;
|
2467 |
-
height: 32px;
|
2468 |
-
border-radius: 3px;
|
2469 |
-
display: -webkit-inline-box;
|
2470 |
-
display: -ms-inline-flexbox;
|
2471 |
-
display: inline-flex;
|
2472 |
-
-webkit-box-pack: center;
|
2473 |
-
-ms-flex-pack: center;
|
2474 |
-
justify-content: center;
|
2475 |
-
-webkit-box-align: center;
|
2476 |
-
-ms-flex-align: center;
|
2477 |
-
align-items: center;
|
2478 |
-
border: 1px solid #e5e5e5;
|
2479 |
-
background-image: none;
|
2480 |
-
transition: all 0.3s ease;
|
2481 |
-
-webkit-transition: all 0.3s ease;
|
2482 |
-
-moz-transition: all 0.3s ease;
|
2483 |
-
-ms-transition: all 0.3s ease;
|
2484 |
-
}
|
2485 |
-
|
2486 |
-
.rt-tpg-container .tpg-header-wrapper .swiper-navigation .slider-btn,
|
2487 |
-
.slider-arrow-position-top-left .rt-tpg-container .swiper-navigation .slider-btn,
|
2488 |
-
.slider-arrow-position-top-right .rt-tpg-container .swiper-navigation .slider-btn {
|
2489 |
-
position: static;
|
2490 |
-
}
|
2491 |
-
|
2492 |
-
.rt-tpg-container .swiper-navigation .slider-btn:hover {
|
2493 |
-
color: #fff;
|
2494 |
-
background-color: #2962ff;
|
2495 |
-
border-color: #2962ff;
|
2496 |
-
}
|
2497 |
-
|
2498 |
-
.rt-tpg-container .swiper-navigation .slider-btn:focus {
|
2499 |
-
outline: 0;
|
2500 |
-
-webkit-box-shadow: none;
|
2501 |
-
box-shadow: none;
|
2502 |
-
}
|
2503 |
-
|
2504 |
-
.rt-tpg-container .swiper-navigation .slider-btn.swiper-button-next {
|
2505 |
-
margin-right: 3px;
|
2506 |
-
}
|
2507 |
-
|
2508 |
-
.rt-tpg-container .swiper-navigation .swiper-button-next:after,
|
2509 |
-
.rt-tpg-container .swiper-navigation .swiper-button-prev:after {
|
2510 |
-
font-size: inherit;
|
2511 |
-
}
|
2512 |
-
|
2513 |
-
/*ACF Style*/
|
2514 |
-
|
2515 |
-
.rt-tpg-container .tpg-cf-group-title {
|
2516 |
-
font-size: 16px;
|
2517 |
-
margin-bottom: 0;
|
2518 |
-
}
|
2519 |
-
|
2520 |
-
.rt-tpg-container .tpg-cf-fields {
|
2521 |
-
margin-top: 0;
|
2522 |
-
font-size: 95%;
|
2523 |
-
line-height: 1.6;
|
2524 |
-
}
|
2525 |
-
|
2526 |
-
.tpg-el-main-wrapper .tpg-cf-wrap {
|
2527 |
-
margin: 10px 0 0;
|
2528 |
-
}
|
2529 |
-
|
2530 |
-
.rt-tpg-container .tpg-cf-wrap:empty {
|
2531 |
-
margin: 0;
|
2532 |
-
}
|
2533 |
-
|
2534 |
-
.act-label-style-inline .tgp-cf-field-label {
|
2535 |
-
margin-left: 8px;
|
2536 |
-
min-width: inherit;
|
2537 |
-
}
|
2538 |
-
|
2539 |
-
.act-label-style-inline .tgp-cf-field-label::after {
|
2540 |
-
content: ":";
|
2541 |
-
}
|
2542 |
-
|
2543 |
-
.act-label-style-block .tgp-cf-field-label {
|
2544 |
-
margin-left: 0;
|
2545 |
-
float: none;
|
2546 |
-
display: block !important;
|
2547 |
-
min-width: inherit;
|
2548 |
-
}
|
2549 |
-
|
2550 |
-
.act-label-style-block .tpg-cf-fields {
|
2551 |
-
display: block;
|
2552 |
-
margin-bottom: 5px;
|
2553 |
-
}
|
2554 |
-
|
2555 |
-
.rt-tpg-container .rt-holder .tgp-cf-field-value * {
|
2556 |
-
color: inherit;
|
2557 |
-
transition: none;
|
2558 |
-
margin: 0;
|
2559 |
-
display: inline;
|
2560 |
-
}
|
2561 |
-
|
2562 |
-
/*End ACF Style*/
|
2563 |
-
|
2564 |
-
.isotope-term-no-post {
|
2565 |
-
min-height: 30px;
|
2566 |
-
}
|
2567 |
-
.isotope-term-no-post p {
|
2568 |
-
margin-bottom: 0;
|
2569 |
-
display: none;
|
2570 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/css/rt-tpg-common.css
DELETED
@@ -1,2570 +0,0 @@
|
|
1 |
-
/***********************************************************************/
|
2 |
-
/**************************** The Post Grid ****************************/
|
3 |
-
/********************** support@radiustheme.com ************************/
|
4 |
-
/*************************** Common Style ******************************/
|
5 |
-
/***********************************************************************/
|
6 |
-
|
7 |
-
|
8 |
-
/***************************** Common Grid Style ******************************/
|
9 |
-
|
10 |
-
body .tpg-el-main-wrapper .rt-grid-item {
|
11 |
-
padding: 0 15px;
|
12 |
-
}
|
13 |
-
|
14 |
-
body .elementor-section .tpg-el-main-wrapper .rt-grid-item {
|
15 |
-
background: none;
|
16 |
-
}
|
17 |
-
|
18 |
-
body .elementor-section .tpg-el-main-wrapper .offset-left,
|
19 |
-
body .elementor-section .tpg-el-main-wrapper .offset-right {
|
20 |
-
padding-bottom: 0;
|
21 |
-
}
|
22 |
-
|
23 |
-
.rt-tpg-container a {
|
24 |
-
text-decoration: none;
|
25 |
-
}
|
26 |
-
|
27 |
-
html.rt-model-open,
|
28 |
-
body.rt-model-open,
|
29 |
-
.rt-model-open {
|
30 |
-
overflow: hidden;
|
31 |
-
}
|
32 |
-
|
33 |
-
.rt-tpg-container * {
|
34 |
-
-webkit-box-sizing: border-box;
|
35 |
-
-moz-box-sizing: border-box;
|
36 |
-
box-sizing: border-box;
|
37 |
-
}
|
38 |
-
|
39 |
-
.rt-tpg-container *:before,
|
40 |
-
.rt-tpg-container *:after {
|
41 |
-
-webkit-box-sizing: border-box;
|
42 |
-
-moz-box-sizing: border-box;
|
43 |
-
box-sizing: border-box;
|
44 |
-
}
|
45 |
-
|
46 |
-
.rt-container {
|
47 |
-
margin-right: auto;
|
48 |
-
margin-left: auto;
|
49 |
-
padding-left: 15px;
|
50 |
-
padding-right: 15px;
|
51 |
-
}
|
52 |
-
|
53 |
-
.rt-container-fluid {
|
54 |
-
margin-right: auto;
|
55 |
-
margin-left: auto;
|
56 |
-
padding-left: 15px;
|
57 |
-
padding-right: 15px;
|
58 |
-
}
|
59 |
-
|
60 |
-
.rt-container-fluid.slider-layout13-main {
|
61 |
-
padding: 0 0 15px;
|
62 |
-
}
|
63 |
-
|
64 |
-
.rt-tpg-container ul {
|
65 |
-
margin: 0;
|
66 |
-
}
|
67 |
-
|
68 |
-
img, svg {
|
69 |
-
vertical-align: middle;
|
70 |
-
}
|
71 |
-
|
72 |
-
a:link, a:visited {
|
73 |
-
transition: all ease 0.31s;
|
74 |
-
}
|
75 |
-
|
76 |
-
.clearfix:before, .clearfix:after, .rt-container-fluid:before, .rt-container-fluid:after, .rt-row:before, .rt-row:after {
|
77 |
-
content: " ";
|
78 |
-
display: table;
|
79 |
-
}
|
80 |
-
|
81 |
-
.clearfix:after,
|
82 |
-
.rt-container:after,
|
83 |
-
.rt-container-fluid:after,
|
84 |
-
.rt-row:after {
|
85 |
-
clear: both;
|
86 |
-
}
|
87 |
-
|
88 |
-
.rt-row {
|
89 |
-
margin-left: -15px;
|
90 |
-
margin-right: -15px;
|
91 |
-
}
|
92 |
-
|
93 |
-
.grid-layout2.rt-row {
|
94 |
-
margin-left: 0;
|
95 |
-
margin-right: 0;
|
96 |
-
}
|
97 |
-
|
98 |
-
.rt-row > .rt-row {
|
99 |
-
padding-left: 15px;
|
100 |
-
padding-right: 15px;
|
101 |
-
}
|
102 |
-
|
103 |
-
.grid_hover6.rt-row {
|
104 |
-
margin-left: -2px;
|
105 |
-
margin-right: -2px;
|
106 |
-
}
|
107 |
-
|
108 |
-
.rt-col-xs-1, .rt-col-sm-1, .rt-col-md-1, .rt-col-lg-1, .rt-col-xs-2, .rt-col-sm-2, .rt-col-md-2, .rt-col-lg-2, .rt-col-xs-3, .rt-col-sm-3, .rt-col-md-3, .rt-col-lg-3, .rt-col-xs-4, .rt-col-sm-4, .rt-col-md-4, .rt-col-lg-4, .rt-col-xs-5, .rt-col-sm-5, .rt-col-md-5, .rt-col-lg-5, .rt-col-xs-6, .rt-col-sm-6, .rt-col-md-6, .rt-col-lg-6, .rt-col-xs-7, .rt-col-sm-7, .rt-col-md-7, .rt-col-lg-7, .rt-col-xs-8, .rt-col-sm-8, .rt-col-md-8, .rt-col-lg-8, .rt-col-xs-9, .rt-col-sm-9, .rt-col-md-9, .rt-col-lg-9, .rt-col-xs-10, .rt-col-sm-10, .rt-col-md-10, .rt-col-lg-10, .rt-col-xs-11, .rt-col-sm-11, .rt-col-md-11, .rt-col-lg-11, .rt-col-xs-12, .rt-col-sm-12, .rt-col-md-12, .rt-col-lg-12, .rt-col-xs-24, .rt-col-sm-24, .rt-col-md-24, .rt-col-lg-24 {
|
109 |
-
position: relative;
|
110 |
-
min-height: 1px;
|
111 |
-
padding-left: 15px;
|
112 |
-
padding-right: 15px;
|
113 |
-
}
|
114 |
-
|
115 |
-
.rt-col-xs-1, .rt-col-xs-2, .rt-col-xs-3, .rt-col-xs-4, .rt-col-xs-5, .rt-col-xs-6, .rt-col-xs-7, .rt-col-xs-8, .rt-col-xs-9, .rt-col-xs-10, .rt-col-xs-11, .rt-col-xs-12, .rt-col-xs-24 {
|
116 |
-
float: left;
|
117 |
-
}
|
118 |
-
|
119 |
-
.rt-col-xs-24 {
|
120 |
-
width: 20%;
|
121 |
-
}
|
122 |
-
|
123 |
-
.rt-col-xs-12 {
|
124 |
-
width: 100%;
|
125 |
-
}
|
126 |
-
|
127 |
-
.rt-col-xs-11 {
|
128 |
-
width: 91.66666667%;
|
129 |
-
}
|
130 |
-
|
131 |
-
.rt-col-xs-10 {
|
132 |
-
width: 83.33333333%;
|
133 |
-
}
|
134 |
-
|
135 |
-
.rt-col-xs-9 {
|
136 |
-
width: 75%;
|
137 |
-
}
|
138 |
-
|
139 |
-
.rt-col-xs-8 {
|
140 |
-
width: 66.66666667%;
|
141 |
-
}
|
142 |
-
|
143 |
-
.rt-col-xs-7 {
|
144 |
-
width: 58.33333333%;
|
145 |
-
}
|
146 |
-
|
147 |
-
.rt-col-xs-6 {
|
148 |
-
width: 50%;
|
149 |
-
}
|
150 |
-
|
151 |
-
.rt-col-xs-5 {
|
152 |
-
width: 41.66666667%;
|
153 |
-
}
|
154 |
-
|
155 |
-
.rt-col-xs-4 {
|
156 |
-
width: 33.33333333%;
|
157 |
-
}
|
158 |
-
|
159 |
-
.rt-col-xs-3 {
|
160 |
-
width: 25%;
|
161 |
-
}
|
162 |
-
|
163 |
-
.rt-col-xs-2 {
|
164 |
-
width: 16.66666667%;
|
165 |
-
}
|
166 |
-
|
167 |
-
.rt-col-xs-1 {
|
168 |
-
width: 8.33333333%;
|
169 |
-
}
|
170 |
-
|
171 |
-
#rt-main {
|
172 |
-
margin: 35px auto;
|
173 |
-
}
|
174 |
-
|
175 |
-
.rt-tpg-container h3.entry-title {
|
176 |
-
line-height: 1.25;
|
177 |
-
margin: 0px 0px 12px;
|
178 |
-
}
|
179 |
-
|
180 |
-
.rt-tpg-container .offset-small-wrap .rt-holder .overlay {
|
181 |
-
min-height: 60px !important;
|
182 |
-
}
|
183 |
-
|
184 |
-
.rt-tpg-container .offset-small-wrap .rt-holder .rt-img-responsive {
|
185 |
-
height: auto;
|
186 |
-
width: 100%;
|
187 |
-
object-fit: cover;
|
188 |
-
}
|
189 |
-
|
190 |
-
.rt-tpg-container .offset-small-wrap .rt-col-md-6 .rt-holder .rt-img-responsive {
|
191 |
-
height: auto;
|
192 |
-
}
|
193 |
-
|
194 |
-
.rt-tpg-container .offset-small-wrap .rt-holder .overlay h3 a {
|
195 |
-
overflow: hidden !important;
|
196 |
-
text-overflow: ellipsis !important;
|
197 |
-
display: -webkit-box !important;
|
198 |
-
-webkit-line-clamp: 1 !important;
|
199 |
-
-webkit-box-orient: vertical;
|
200 |
-
}
|
201 |
-
|
202 |
-
.rt-tpg-container .offset-big .post-meta-user.above_title {
|
203 |
-
margin-top: 15px;
|
204 |
-
}
|
205 |
-
|
206 |
-
.rt-tpg-container .offset-big .post-meta-user.above_title + h3.entry-title {
|
207 |
-
margin-top: 0;
|
208 |
-
}
|
209 |
-
|
210 |
-
.rt-tpg-container .offset-big h3.entry-title {
|
211 |
-
margin: 20px 0px 15px;
|
212 |
-
}
|
213 |
-
|
214 |
-
.rt-tpg-container .offset-big .cat-above-title {
|
215 |
-
margin-bottom: -15px;
|
216 |
-
padding-top: 10px;
|
217 |
-
}
|
218 |
-
|
219 |
-
.rt-tpg-container .owl-controls .owl-dots {
|
220 |
-
margin-top: 15px;
|
221 |
-
}
|
222 |
-
|
223 |
-
.rt-popup-content .rt-tpg-container i {
|
224 |
-
margin-right: 5px;
|
225 |
-
}
|
226 |
-
|
227 |
-
/**********************************************************************/
|
228 |
-
/********************************* Media Query *************************/
|
229 |
-
/**********************************************************************/
|
230 |
-
|
231 |
-
@media (min-width: 992px) {
|
232 |
-
.rt-container {
|
233 |
-
width: 970px;
|
234 |
-
}
|
235 |
-
}
|
236 |
-
|
237 |
-
@media (min-width: 1200px) {
|
238 |
-
.rt-container {
|
239 |
-
width: 1170px;
|
240 |
-
}
|
241 |
-
}
|
242 |
-
|
243 |
-
@media (max-width: 767px) {
|
244 |
-
.hidden-xs {
|
245 |
-
display: none !important;
|
246 |
-
}
|
247 |
-
}
|
248 |
-
|
249 |
-
@media screen and (max-width: 768px) {
|
250 |
-
.rt-member-feature-img, .rt-member-description-container {
|
251 |
-
float: none;
|
252 |
-
width: 100%;
|
253 |
-
}
|
254 |
-
}
|
255 |
-
|
256 |
-
@media (min-width: 768px) {
|
257 |
-
.rt-col-sm-1, .rt-col-sm-2, .rt-col-sm-3, .rt-col-sm-4, .rt-col-sm-5, .rt-col-sm-6, .rt-col-sm-7, .rt-col-sm-8, .rt-col-sm-9, .rt-col-sm-10, .rt-col-sm-11, .rt-col-sm-12, .rt-col-sm-24 {
|
258 |
-
float: left;
|
259 |
-
}
|
260 |
-
|
261 |
-
.rt-col-sm-24 {
|
262 |
-
width: 20%;
|
263 |
-
}
|
264 |
-
|
265 |
-
.rt-col-sm-12 {
|
266 |
-
width: 100%;
|
267 |
-
}
|
268 |
-
|
269 |
-
.rt-col-sm-11 {
|
270 |
-
width: 91.66666667%;
|
271 |
-
}
|
272 |
-
|
273 |
-
.rt-col-sm-10 {
|
274 |
-
width: 83.33333333%;
|
275 |
-
}
|
276 |
-
|
277 |
-
.rt-col-sm-9 {
|
278 |
-
width: 75%;
|
279 |
-
}
|
280 |
-
|
281 |
-
.rt-col-sm-8 {
|
282 |
-
width: 66.66666667%;
|
283 |
-
}
|
284 |
-
|
285 |
-
.rt-col-sm-7 {
|
286 |
-
width: 58.33333333%;
|
287 |
-
}
|
288 |
-
|
289 |
-
.rt-col-sm-6 {
|
290 |
-
width: 50%;
|
291 |
-
}
|
292 |
-
|
293 |
-
.rt-col-sm-5 {
|
294 |
-
width: 41.66666667%;
|
295 |
-
}
|
296 |
-
|
297 |
-
.rt-col-sm-4 {
|
298 |
-
width: 33.33333333%;
|
299 |
-
}
|
300 |
-
|
301 |
-
.rt-col-sm-3 {
|
302 |
-
width: 25%;
|
303 |
-
}
|
304 |
-
|
305 |
-
.rt-col-sm-2 {
|
306 |
-
width: 16.66666667%;
|
307 |
-
}
|
308 |
-
|
309 |
-
.rt-col-sm-1 {
|
310 |
-
width: 8.33333333%;
|
311 |
-
}
|
312 |
-
|
313 |
-
}
|
314 |
-
|
315 |
-
@media (min-width: 992px) {
|
316 |
-
.rt-col-md-1, .rt-col-md-2, .rt-col-md-3, .rt-col-md-4, .rt-col-md-5, .rt-col-md-6, .rt-col-md-7, .rt-col-md-8, .rt-col-md-9, .rt-col-md-10, .rt-col-md-11, .rt-col-md-12, .rt-col-md-24 {
|
317 |
-
float: left;
|
318 |
-
}
|
319 |
-
|
320 |
-
.rt-col-md-24 {
|
321 |
-
width: 20%;
|
322 |
-
}
|
323 |
-
|
324 |
-
.rt-col-md-12 {
|
325 |
-
width: 100%;
|
326 |
-
}
|
327 |
-
|
328 |
-
.rt-col-md-11 {
|
329 |
-
width: 91.66666667%;
|
330 |
-
}
|
331 |
-
|
332 |
-
.rt-col-md-10 {
|
333 |
-
width: 83.33333333%;
|
334 |
-
}
|
335 |
-
|
336 |
-
.rt-col-md-9 {
|
337 |
-
width: 75%;
|
338 |
-
}
|
339 |
-
|
340 |
-
.rt-col-md-8 {
|
341 |
-
width: 66.66666667%;
|
342 |
-
}
|
343 |
-
|
344 |
-
.rt-col-md-7 {
|
345 |
-
width: 58.33333333%;
|
346 |
-
}
|
347 |
-
|
348 |
-
.rt-col-md-6 {
|
349 |
-
width: 50%;
|
350 |
-
}
|
351 |
-
|
352 |
-
.rt-col-md-5 {
|
353 |
-
width: 41.66666667%;
|
354 |
-
}
|
355 |
-
|
356 |
-
.rt-col-md-4 {
|
357 |
-
width: 33.33333333%;
|
358 |
-
}
|
359 |
-
|
360 |
-
.rt-col-md-3 {
|
361 |
-
width: 25%;
|
362 |
-
}
|
363 |
-
|
364 |
-
.rt-col-md-2 {
|
365 |
-
width: 16.66666667%;
|
366 |
-
}
|
367 |
-
|
368 |
-
.rt-col-md-1 {
|
369 |
-
width: 8.33333333%;
|
370 |
-
}
|
371 |
-
|
372 |
-
}
|
373 |
-
|
374 |
-
@media (min-width: 1200px) {
|
375 |
-
.rt-col-lg-1, .rt-col-lg-2, .rt-col-lg-3, .rt-col-lg-4, .rt-col-lg-5, .rt-col-lg-6, .rt-col-lg-7, .rt-col-lg-8, .rt-col-lg-9, .rt-col-lg-10, .rt-col-lg-11, .rt-col-lg-12 {
|
376 |
-
float: left;
|
377 |
-
}
|
378 |
-
|
379 |
-
.rt-col-lg-24 {
|
380 |
-
width: 20%;
|
381 |
-
}
|
382 |
-
|
383 |
-
.rt-col-lg-12 {
|
384 |
-
width: 100%;
|
385 |
-
}
|
386 |
-
|
387 |
-
.rt-col-lg-11 {
|
388 |
-
width: 91.66666667%;
|
389 |
-
}
|
390 |
-
|
391 |
-
.rt-col-lg-10 {
|
392 |
-
width: 83.33333333%;
|
393 |
-
}
|
394 |
-
|
395 |
-
.rt-col-lg-9 {
|
396 |
-
width: 75%;
|
397 |
-
}
|
398 |
-
|
399 |
-
.rt-col-lg-8 {
|
400 |
-
width: 66.66666667%;
|
401 |
-
}
|
402 |
-
|
403 |
-
.rt-col-lg-7 {
|
404 |
-
width: 58.33333333%;
|
405 |
-
}
|
406 |
-
|
407 |
-
.rt-col-lg-6 {
|
408 |
-
width: 50%;
|
409 |
-
}
|
410 |
-
|
411 |
-
.rt-col-lg-5 {
|
412 |
-
width: 41.66666667%;
|
413 |
-
}
|
414 |
-
|
415 |
-
.rt-col-lg-4 {
|
416 |
-
width: 33.33333333%;
|
417 |
-
}
|
418 |
-
|
419 |
-
.rt-col-lg-3 {
|
420 |
-
width: 25%;
|
421 |
-
}
|
422 |
-
|
423 |
-
.rt-col-lg-2 {
|
424 |
-
width: 16.66666667%;
|
425 |
-
}
|
426 |
-
|
427 |
-
.rt-col-lg-1 {
|
428 |
-
width: 8.33333333%;
|
429 |
-
}
|
430 |
-
|
431 |
-
}
|
432 |
-
|
433 |
-
|
434 |
-
/***************************************
|
435 |
-
Pagination Style
|
436 |
-
**************************************/
|
437 |
-
|
438 |
-
.paginationjs {
|
439 |
-
line-height: 1.6;
|
440 |
-
font-family: Marmelad, "Lucida Grande", Arial, "Hiragino Sans GB", Georgia, sans-serif;
|
441 |
-
font-size: 14px;
|
442 |
-
box-sizing: initial
|
443 |
-
}
|
444 |
-
|
445 |
-
.paginationjs:after {
|
446 |
-
display: table;
|
447 |
-
content: " ";
|
448 |
-
clear: both
|
449 |
-
}
|
450 |
-
|
451 |
-
.paginationjs .paginationjs-pages {
|
452 |
-
float: left
|
453 |
-
}
|
454 |
-
|
455 |
-
.paginationjs .paginationjs-pages ul {
|
456 |
-
float: left;
|
457 |
-
margin: 0;
|
458 |
-
padding: 0
|
459 |
-
}
|
460 |
-
|
461 |
-
.paginationjs .paginationjs-go-button, .paginationjs .paginationjs-go-input, .paginationjs .paginationjs-nav {
|
462 |
-
float: left;
|
463 |
-
margin-left: 10px;
|
464 |
-
font-size: 14px
|
465 |
-
}
|
466 |
-
|
467 |
-
.paginationjs .paginationjs-pages li {
|
468 |
-
float: left;
|
469 |
-
border: 1px solid #aaa;
|
470 |
-
border-right: none;
|
471 |
-
list-style: none
|
472 |
-
}
|
473 |
-
|
474 |
-
.paginationjs .paginationjs-pages li > a {
|
475 |
-
min-width: 30px;
|
476 |
-
height: 28px;
|
477 |
-
line-height: 28px;
|
478 |
-
display: block;
|
479 |
-
background: #fff;
|
480 |
-
font-size: 14px;
|
481 |
-
color: #333;
|
482 |
-
text-decoration: none;
|
483 |
-
text-align: center
|
484 |
-
}
|
485 |
-
|
486 |
-
.paginationjs .paginationjs-pages li:hover > a {
|
487 |
-
background: var(--tpg-primary-color);
|
488 |
-
color: #ffffff !important;
|
489 |
-
border-color: var(--tpg-primary-color) !important;
|
490 |
-
}
|
491 |
-
|
492 |
-
.paginationjs .paginationjs-pages li.active {
|
493 |
-
border: none
|
494 |
-
}
|
495 |
-
|
496 |
-
.paginationjs .paginationjs-pages li.active > a {
|
497 |
-
height: 30px;
|
498 |
-
line-height: 30px;
|
499 |
-
background: #aaa;
|
500 |
-
color: #fff
|
501 |
-
}
|
502 |
-
|
503 |
-
.paginationjs .paginationjs-pages li.disabled > a {
|
504 |
-
opacity: .3
|
505 |
-
}
|
506 |
-
|
507 |
-
.paginationjs .paginationjs-pages li.disabled > a:hover {
|
508 |
-
background: 0 0
|
509 |
-
}
|
510 |
-
|
511 |
-
.paginationjs .paginationjs-pages li:first-child, .paginationjs .paginationjs-pages li:first-child > a {
|
512 |
-
border-radius: 3px 0 0 3px
|
513 |
-
}
|
514 |
-
|
515 |
-
.paginationjs .paginationjs-pages li:last-child {
|
516 |
-
border-right: 1px solid #aaa;
|
517 |
-
border-radius: 0 3px 3px 0
|
518 |
-
}
|
519 |
-
|
520 |
-
.paginationjs .paginationjs-pages li:last-child > a {
|
521 |
-
border-radius: 0 3px 3px 0
|
522 |
-
}
|
523 |
-
|
524 |
-
.paginationjs .paginationjs-go-input > input[type=text] {
|
525 |
-
width: 30px;
|
526 |
-
height: 28px;
|
527 |
-
background: #fff;
|
528 |
-
border-radius: 3px;
|
529 |
-
border: 1px solid #aaa;
|
530 |
-
padding: 0;
|
531 |
-
font-size: 14px;
|
532 |
-
text-align: center;
|
533 |
-
vertical-align: baseline;
|
534 |
-
outline: 0;
|
535 |
-
box-shadow: none;
|
536 |
-
box-sizing: initial
|
537 |
-
}
|
538 |
-
|
539 |
-
.paginationjs .paginationjs-go-button > input[type=button] {
|
540 |
-
min-width: 40px;
|
541 |
-
height: 30px;
|
542 |
-
line-height: 28px;
|
543 |
-
background: #fff;
|
544 |
-
border-radius: 3px;
|
545 |
-
border: 1px solid #aaa;
|
546 |
-
text-align: center;
|
547 |
-
padding: 0 8px;
|
548 |
-
font-size: 14px;
|
549 |
-
vertical-align: baseline;
|
550 |
-
outline: 0;
|
551 |
-
box-shadow: none;
|
552 |
-
color: #333;
|
553 |
-
cursor: pointer;
|
554 |
-
vertical-align: middle \9
|
555 |
-
}
|
556 |
-
|
557 |
-
.paginationjs.paginationjs-theme-blue .paginationjs-go-input > input[type=text], .paginationjs.paginationjs-theme-blue .paginationjs-pages li {
|
558 |
-
border-color: #289de9
|
559 |
-
}
|
560 |
-
|
561 |
-
.paginationjs .paginationjs-go-button > input[type=button]:hover {
|
562 |
-
background-color: #f8f8f8
|
563 |
-
}
|
564 |
-
|
565 |
-
.paginationjs .paginationjs-nav {
|
566 |
-
height: 30px;
|
567 |
-
line-height: 30px
|
568 |
-
}
|
569 |
-
|
570 |
-
.paginationjs .paginationjs-go-button, .paginationjs .paginationjs-go-input {
|
571 |
-
margin-left: 5px \9
|
572 |
-
}
|
573 |
-
|
574 |
-
.paginationjs.paginationjs-small {
|
575 |
-
font-size: 12px
|
576 |
-
}
|
577 |
-
|
578 |
-
.paginationjs.paginationjs-small .paginationjs-pages li > a {
|
579 |
-
min-width: 26px;
|
580 |
-
height: 24px;
|
581 |
-
line-height: 24px;
|
582 |
-
font-size: 12px
|
583 |
-
}
|
584 |
-
|
585 |
-
.paginationjs.paginationjs-small .paginationjs-pages li.active > a {
|
586 |
-
height: 26px;
|
587 |
-
line-height: 26px
|
588 |
-
}
|
589 |
-
|
590 |
-
.paginationjs.paginationjs-small .paginationjs-go-input {
|
591 |
-
font-size: 12px
|
592 |
-
}
|
593 |
-
|
594 |
-
.paginationjs.paginationjs-small .paginationjs-go-input > input[type=text] {
|
595 |
-
width: 26px;
|
596 |
-
height: 24px;
|
597 |
-
font-size: 12px
|
598 |
-
}
|
599 |
-
|
600 |
-
.paginationjs.paginationjs-small .paginationjs-go-button {
|
601 |
-
font-size: 12px
|
602 |
-
}
|
603 |
-
|
604 |
-
.paginationjs.paginationjs-small .paginationjs-go-button > input[type=button] {
|
605 |
-
min-width: 30px;
|
606 |
-
height: 26px;
|
607 |
-
line-height: 24px;
|
608 |
-
padding: 0 6px;
|
609 |
-
font-size: 12px
|
610 |
-
}
|
611 |
-
|
612 |
-
.paginationjs.paginationjs-small .paginationjs-nav {
|
613 |
-
height: 26px;
|
614 |
-
line-height: 26px;
|
615 |
-
font-size: 12px
|
616 |
-
}
|
617 |
-
|
618 |
-
.paginationjs.paginationjs-big {
|
619 |
-
font-size: 16px
|
620 |
-
}
|
621 |
-
|
622 |
-
.paginationjs.paginationjs-big .paginationjs-pages li > a {
|
623 |
-
min-width: 36px;
|
624 |
-
height: 34px;
|
625 |
-
line-height: 34px;
|
626 |
-
font-size: 16px
|
627 |
-
}
|
628 |
-
|
629 |
-
.paginationjs.paginationjs-big .paginationjs-pages li.active > a {
|
630 |
-
height: 36px;
|
631 |
-
line-height: 36px
|
632 |
-
}
|
633 |
-
|
634 |
-
.paginationjs.paginationjs-big .paginationjs-go-input {
|
635 |
-
font-size: 16px
|
636 |
-
}
|
637 |
-
|
638 |
-
.paginationjs.paginationjs-big .paginationjs-go-input > input[type=text] {
|
639 |
-
width: 36px;
|
640 |
-
height: 34px;
|
641 |
-
font-size: 16px
|
642 |
-
}
|
643 |
-
|
644 |
-
.paginationjs.paginationjs-big .paginationjs-go-button {
|
645 |
-
font-size: 16px
|
646 |
-
}
|
647 |
-
|
648 |
-
.paginationjs.paginationjs-big .paginationjs-go-button > input[type=button] {
|
649 |
-
min-width: 50px;
|
650 |
-
height: 36px;
|
651 |
-
line-height: 34px;
|
652 |
-
padding: 0 12px;
|
653 |
-
font-size: 16px
|
654 |
-
}
|
655 |
-
|
656 |
-
.paginationjs.paginationjs-big .paginationjs-nav {
|
657 |
-
height: 36px;
|
658 |
-
line-height: 36px;
|
659 |
-
font-size: 16px
|
660 |
-
}
|
661 |
-
|
662 |
-
.paginationjs.paginationjs-theme-blue .paginationjs-pages li > a {
|
663 |
-
color: #289de9
|
664 |
-
}
|
665 |
-
|
666 |
-
.paginationjs.paginationjs-theme-blue .paginationjs-pages li:hover > a {
|
667 |
-
background: #e9f4fc
|
668 |
-
}
|
669 |
-
|
670 |
-
.paginationjs.paginationjs-theme-blue .paginationjs-pages li.active > a {
|
671 |
-
background: #289de9;
|
672 |
-
color: #fff
|
673 |
-
}
|
674 |
-
|
675 |
-
.paginationjs.paginationjs-theme-blue .paginationjs-pages li.disabled:hover > a {
|
676 |
-
background: 0 0
|
677 |
-
}
|
678 |
-
|
679 |
-
.paginationjs.paginationjs-theme-blue .paginationjs-go-button > input[type=button] {
|
680 |
-
background: #289de9;
|
681 |
-
border-color: #289de9;
|
682 |
-
color: #fff
|
683 |
-
}
|
684 |
-
|
685 |
-
.paginationjs.paginationjs-theme-green .paginationjs-go-input > input[type=text], .paginationjs.paginationjs-theme-green .paginationjs-pages li {
|
686 |
-
border-color: #449d44
|
687 |
-
}
|
688 |
-
|
689 |
-
.paginationjs.paginationjs-theme-blue .paginationjs-go-button > input[type=button]:hover {
|
690 |
-
background-color: #3ca5ea
|
691 |
-
}
|
692 |
-
|
693 |
-
.paginationjs.paginationjs-theme-green .paginationjs-pages li > a {
|
694 |
-
color: #449d44
|
695 |
-
}
|
696 |
-
|
697 |
-
.paginationjs.paginationjs-theme-green .paginationjs-pages li:hover > a {
|
698 |
-
background: #ebf4eb
|
699 |
-
}
|
700 |
-
|
701 |
-
.paginationjs.paginationjs-theme-green .paginationjs-pages li.active > a {
|
702 |
-
background: #449d44;
|
703 |
-
color: #fff
|
704 |
-
}
|
705 |
-
|
706 |
-
.paginationjs.paginationjs-theme-green .paginationjs-pages li.disabled:hover > a {
|
707 |
-
background: 0 0
|
708 |
-
}
|
709 |
-
|
710 |
-
.paginationjs.paginationjs-theme-green .paginationjs-go-button > input[type=button] {
|
711 |
-
background: #449d44;
|
712 |
-
border-color: #449d44;
|
713 |
-
color: #fff
|
714 |
-
}
|
715 |
-
|
716 |
-
.paginationjs.paginationjs-theme-yellow .paginationjs-go-input > input[type=text], .paginationjs.paginationjs-theme-yellow .paginationjs-pages li {
|
717 |
-
border-color: #ec971f
|
718 |
-
}
|
719 |
-
|
720 |
-
.paginationjs.paginationjs-theme-green .paginationjs-go-button > input[type=button]:hover {
|
721 |
-
background-color: #55a555
|
722 |
-
}
|
723 |
-
|
724 |
-
.paginationjs.paginationjs-theme-yellow .paginationjs-pages li > a {
|
725 |
-
color: #ec971f
|
726 |
-
}
|
727 |
-
|
728 |
-
.paginationjs.paginationjs-theme-yellow .paginationjs-pages li:hover > a {
|
729 |
-
background: #fdf5e9
|
730 |
-
}
|
731 |
-
|
732 |
-
.paginationjs.paginationjs-theme-yellow .paginationjs-pages li.active > a {
|
733 |
-
background: #ec971f;
|
734 |
-
color: #fff
|
735 |
-
}
|
736 |
-
|
737 |
-
.paginationjs.paginationjs-theme-yellow .paginationjs-pages li.disabled:hover > a {
|
738 |
-
background: 0 0
|
739 |
-
}
|
740 |
-
|
741 |
-
.paginationjs.paginationjs-theme-yellow .paginationjs-go-button > input[type=button] {
|
742 |
-
background: #ec971f;
|
743 |
-
border-color: #ec971f;
|
744 |
-
color: #fff
|
745 |
-
}
|
746 |
-
|
747 |
-
.paginationjs.paginationjs-theme-red .paginationjs-go-input > input[type=text], .paginationjs.paginationjs-theme-red .paginationjs-pages li {
|
748 |
-
border-color: #c9302c
|
749 |
-
}
|
750 |
-
|
751 |
-
.paginationjs.paginationjs-theme-yellow .paginationjs-go-button > input[type=button]:hover {
|
752 |
-
background-color: #eea135
|
753 |
-
}
|
754 |
-
|
755 |
-
.paginationjs.paginationjs-theme-red .paginationjs-pages li > a {
|
756 |
-
color: #c9302c
|
757 |
-
}
|
758 |
-
|
759 |
-
.paginationjs.paginationjs-theme-red .paginationjs-pages li:hover > a {
|
760 |
-
background: #faeaea
|
761 |
-
}
|
762 |
-
|
763 |
-
.paginationjs.paginationjs-theme-red .paginationjs-pages li.active > a {
|
764 |
-
background: #c9302c;
|
765 |
-
color: #fff
|
766 |
-
}
|
767 |
-
|
768 |
-
.paginationjs.paginationjs-theme-red .paginationjs-pages li.disabled:hover > a {
|
769 |
-
background: 0 0
|
770 |
-
}
|
771 |
-
|
772 |
-
.paginationjs.paginationjs-theme-red .paginationjs-go-button > input[type=button] {
|
773 |
-
background: #c9302c;
|
774 |
-
border-color: #c9302c;
|
775 |
-
color: #fff
|
776 |
-
}
|
777 |
-
|
778 |
-
.paginationjs.paginationjs-theme-red .paginationjs-go-button > input[type=button]:hover {
|
779 |
-
background-color: #ce4541
|
780 |
-
}
|
781 |
-
|
782 |
-
.paginationjs .paginationjs-pages li.paginationjs-next {
|
783 |
-
border-right: 1px solid #aaa \9
|
784 |
-
}
|
785 |
-
|
786 |
-
.paginationjs .paginationjs-go-input > input[type=text] {
|
787 |
-
line-height: 28px \9;
|
788 |
-
vertical-align: middle \9
|
789 |
-
}
|
790 |
-
|
791 |
-
.paginationjs.paginationjs-big .paginationjs-pages li > a {
|
792 |
-
line-height: 36px \9
|
793 |
-
}
|
794 |
-
|
795 |
-
.paginationjs.paginationjs-big .paginationjs-go-input > input[type=text] {
|
796 |
-
height: 36px \9;
|
797 |
-
line-height: 36px \9
|
798 |
-
}
|
799 |
-
|
800 |
-
|
801 |
-
.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li:not(.paginationjs-next):not(.paginationjs-prev) {
|
802 |
-
display: none;
|
803 |
-
}
|
804 |
-
|
805 |
-
.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li {
|
806 |
-
color: #ffffff;
|
807 |
-
}
|
808 |
-
|
809 |
-
.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li > a {
|
810 |
-
color: #ffffff;
|
811 |
-
background-color: var(--tpg-primary-color);
|
812 |
-
}
|
813 |
-
|
814 |
-
.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li:hover a {
|
815 |
-
background-color: var(--tpg-secondary-color);
|
816 |
-
}
|
817 |
-
|
818 |
-
.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-page:nth-child(2) {
|
819 |
-
display: inline-block;
|
820 |
-
position: relative;
|
821 |
-
pointer-events: none;
|
822 |
-
}
|
823 |
-
|
824 |
-
.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-page:nth-child(2) a {
|
825 |
-
text-indent: -99999px;
|
826 |
-
pointer-events: none;
|
827 |
-
}
|
828 |
-
|
829 |
-
.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-page:nth-child(2):before {
|
830 |
-
content: "\f100";
|
831 |
-
font-family: "Font Awesome 5 Free";
|
832 |
-
position: absolute;
|
833 |
-
left: 50%;
|
834 |
-
top: 50%;
|
835 |
-
z-index: 99;
|
836 |
-
opacity: .5;
|
837 |
-
font-weight: 900;
|
838 |
-
transform: translate(-50%, -50%);
|
839 |
-
|
840 |
-
}
|
841 |
-
|
842 |
-
.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-prev + li {
|
843 |
-
display: none !important;
|
844 |
-
}
|
845 |
-
|
846 |
-
|
847 |
-
/************************ Common ***************************/
|
848 |
-
|
849 |
-
.rt-tpg-container button {
|
850 |
-
border: none;
|
851 |
-
padding: 10px 15px;
|
852 |
-
}
|
853 |
-
|
854 |
-
.rt-tpg-container .rt-tgp-load-more button {
|
855 |
-
background: #8e8e8e;
|
856 |
-
border-radius: 4px;
|
857 |
-
}
|
858 |
-
|
859 |
-
.rt-tpg-container .tpg-wc-product-filter {
|
860 |
-
margin-bottom: 15px;
|
861 |
-
text-align: right;
|
862 |
-
padding-right: 15px;
|
863 |
-
}
|
864 |
-
|
865 |
-
.rt-img-holder > a {
|
866 |
-
text-align: center;
|
867 |
-
display: block;
|
868 |
-
}
|
869 |
-
|
870 |
-
.rt-img-responsive {
|
871 |
-
max-width: 100%;
|
872 |
-
display: block;
|
873 |
-
height: auto;
|
874 |
-
transition: 0.4s ease-in-out;
|
875 |
-
}
|
876 |
-
|
877 |
-
|
878 |
-
@media (max-width: 991px) {
|
879 |
-
.rt-img-holder > a,
|
880 |
-
.rt-img-responsive {
|
881 |
-
width: 100%;
|
882 |
-
}
|
883 |
-
}
|
884 |
-
|
885 |
-
.rt-tpg-container .no-margin {
|
886 |
-
margin: 0px !important;
|
887 |
-
padding: 0px !important;
|
888 |
-
}
|
889 |
-
|
890 |
-
span.more-loading {
|
891 |
-
background: url("../images/loading.gif") center right no-repeat;
|
892 |
-
padding-right: 20px;
|
893 |
-
display: inline-block;
|
894 |
-
}
|
895 |
-
|
896 |
-
.rt-tgp-scroll-load-more, .rt-tgp-load-more {
|
897 |
-
text-align: center;
|
898 |
-
display: block;
|
899 |
-
margin: 30px 0 20px;
|
900 |
-
}
|
901 |
-
|
902 |
-
.post-meta-user,
|
903 |
-
.post-meta-tags {
|
904 |
-
padding: 0;
|
905 |
-
margin-bottom: 15px;
|
906 |
-
line-height: 1.5;
|
907 |
-
font-size: 95%;
|
908 |
-
}
|
909 |
-
|
910 |
-
.post-meta-user span,
|
911 |
-
.post-meta-tags span {
|
912 |
-
display: inline-block;
|
913 |
-
padding-right: 8px;
|
914 |
-
}
|
915 |
-
|
916 |
-
.post-meta-user span.rt-separator,
|
917 |
-
.post-meta-tags span.rt-separator {
|
918 |
-
display: inline-block;
|
919 |
-
padding-right: 5px;
|
920 |
-
}
|
921 |
-
|
922 |
-
.post-meta-user span.comment-link {
|
923 |
-
text-align: right;
|
924 |
-
float: right;
|
925 |
-
padding-right: 0px;
|
926 |
-
}
|
927 |
-
|
928 |
-
.rt-holder .entry-title a {
|
929 |
-
color: #000000;
|
930 |
-
}
|
931 |
-
|
932 |
-
.rt-tpg-container .rt-holder .post-meta.center .read-more {
|
933 |
-
float: none;
|
934 |
-
}
|
935 |
-
|
936 |
-
.rt-tpg-container .rt-holder .post-meta .rt-tpg-social-share {
|
937 |
-
float: none;
|
938 |
-
text-align: left;
|
939 |
-
display: block;
|
940 |
-
margin-bottom: 15px;
|
941 |
-
width: 100%;
|
942 |
-
}
|
943 |
-
|
944 |
-
.rt-tpg-container .rt-holder .post-meta.center .rt-tpg-social-share {
|
945 |
-
text-align: left;
|
946 |
-
}
|
947 |
-
|
948 |
-
.rt-tpg-container .rt-holder .post-meta.right .rt-tpg-social-share {
|
949 |
-
text-align: left;
|
950 |
-
}
|
951 |
-
|
952 |
-
.rt-tpg-container .rt-holder .read-more a {
|
953 |
-
/*padding: 8px 15px;*/
|
954 |
-
font-size: 15px;
|
955 |
-
display: inline-block;
|
956 |
-
line-height: 1.5;
|
957 |
-
}
|
958 |
-
|
959 |
-
.rt-tpg-container .rt-holder .tpg-excerpt {
|
960 |
-
margin-bottom: 10px;
|
961 |
-
}
|
962 |
-
|
963 |
-
@media (max-width: 991px) {
|
964 |
-
.rt-tpg-container .rt-holder .tpg-excerpt {
|
965 |
-
overflow: hidden !important;
|
966 |
-
text-overflow: ellipsis !important;
|
967 |
-
display: -webkit-box !important;
|
968 |
-
-webkit-line-clamp: 3 !important;
|
969 |
-
-webkit-box-orient: vertical;
|
970 |
-
}
|
971 |
-
}
|
972 |
-
|
973 |
-
|
974 |
-
/***************************************************
|
975 |
-
Isotope Buttons
|
976 |
-
****************************************************/
|
977 |
-
|
978 |
-
.rt-tpg-container .tpg-iso-filter {
|
979 |
-
text-align: center;
|
980 |
-
margin: 15px 0 45px;
|
981 |
-
}
|
982 |
-
|
983 |
-
.rt-tpg-container .tpg-iso-filter input[type="text"] {
|
984 |
-
display: inline-block;
|
985 |
-
padding: 12px 10px;
|
986 |
-
border-radius: 3px;
|
987 |
-
margin-left: 4px;
|
988 |
-
}
|
989 |
-
|
990 |
-
.rt-tpg-container .tpg-iso-filter > div {
|
991 |
-
display: inline-block;
|
992 |
-
}
|
993 |
-
|
994 |
-
.rt-tpg-container .rt-tpg-isotope-buttons .selected {
|
995 |
-
background: var(--tpg-primary-color);
|
996 |
-
}
|
997 |
-
|
998 |
-
.rt-tpg-container .rt-tpg-isotope-buttons button {
|
999 |
-
border: none;
|
1000 |
-
margin: 4px;
|
1001 |
-
padding: 8px 20px;
|
1002 |
-
outline: 0;
|
1003 |
-
text-transform: none;
|
1004 |
-
font-weight: 400;
|
1005 |
-
font-size: 15px;
|
1006 |
-
line-height: 1.8;
|
1007 |
-
background: #8e8e8e;
|
1008 |
-
color: #fff;
|
1009 |
-
border-radius: 3px;
|
1010 |
-
box-shadow: none !important;
|
1011 |
-
text-shadow: none !important;
|
1012 |
-
}
|
1013 |
-
|
1014 |
-
.rt-tpg-container .rt-tpg-isotope-buttons button {
|
1015 |
-
box-shadow: none !important;
|
1016 |
-
text-shadow: none !important;
|
1017 |
-
}
|
1018 |
-
|
1019 |
-
/**********************************
|
1020 |
-
Ajax Loader
|
1021 |
-
*************************************/
|
1022 |
-
|
1023 |
-
.rt-tpg-container .tpg-pre-loader {
|
1024 |
-
position: relative;
|
1025 |
-
overflow: hidden;
|
1026 |
-
}
|
1027 |
-
|
1028 |
-
.rt-tpg-container .rt-loading-overlay {
|
1029 |
-
opacity: 0;
|
1030 |
-
visibility: hidden;
|
1031 |
-
position: absolute;
|
1032 |
-
top: 0;
|
1033 |
-
left: 0;
|
1034 |
-
width: 100%;
|
1035 |
-
height: 100%;
|
1036 |
-
z-index: 1;
|
1037 |
-
background-color: #fff;
|
1038 |
-
}
|
1039 |
-
|
1040 |
-
.rt-tpg-container .rt-loading {
|
1041 |
-
color: var(--tpg-primary-color);
|
1042 |
-
position: absolute;
|
1043 |
-
top: 40%;
|
1044 |
-
left: 50%;
|
1045 |
-
margin-left: -16px;
|
1046 |
-
z-index: 2;
|
1047 |
-
opacity: 0;
|
1048 |
-
visibility: hidden;
|
1049 |
-
}
|
1050 |
-
|
1051 |
-
.rt-tpg-container .tpg-pre-loader .rt-loading-overlay {
|
1052 |
-
opacity: 0.8;
|
1053 |
-
visibility: visible;
|
1054 |
-
}
|
1055 |
-
|
1056 |
-
.rt-tpg-container .tpg-pre-loader .rt-loading {
|
1057 |
-
opacity: 1;
|
1058 |
-
visibility: visible;
|
1059 |
-
}
|
1060 |
-
|
1061 |
-
.rt-ball-clip-rotate {
|
1062 |
-
width: 32px;
|
1063 |
-
height: 32px;
|
1064 |
-
}
|
1065 |
-
|
1066 |
-
.rt-ball-clip-rotate {
|
1067 |
-
display: block;
|
1068 |
-
font-size: 0;
|
1069 |
-
color: #fff;
|
1070 |
-
}
|
1071 |
-
|
1072 |
-
.rt-ball-clip-rotate, .rt-ball-clip-rotate > div {
|
1073 |
-
position: relative;
|
1074 |
-
-webkit-box-sizing: border-box;
|
1075 |
-
-moz-box-sizing: border-box;
|
1076 |
-
box-sizing: border-box;
|
1077 |
-
}
|
1078 |
-
|
1079 |
-
.rt-ball-clip-rotate > div {
|
1080 |
-
display: inline-block;
|
1081 |
-
float: none;
|
1082 |
-
background-color: currentColor;
|
1083 |
-
border: 0 solid currentColor;
|
1084 |
-
}
|
1085 |
-
|
1086 |
-
.rt-ball-clip-rotate > div {
|
1087 |
-
width: 32px;
|
1088 |
-
height: 32px;
|
1089 |
-
background: transparent;
|
1090 |
-
border-width: 2px;
|
1091 |
-
border-bottom-color: transparent;
|
1092 |
-
border-radius: 100%;
|
1093 |
-
-webkit-animation: ball-clip-rotate 0.75s linear infinite;
|
1094 |
-
-moz-animation: ball-clip-rotate 0.75s linear infinite;
|
1095 |
-
-o-animation: ball-clip-rotate 0.75s linear infinite;
|
1096 |
-
animation: ball-clip-rotate 0.75s linear infinite;
|
1097 |
-
}
|
1098 |
-
|
1099 |
-
/****************************************
|
1100 |
-
Filter
|
1101 |
-
*****************************************/
|
1102 |
-
|
1103 |
-
.rt-layout-filter-container.rt-clear:after {
|
1104 |
-
clear: both;
|
1105 |
-
display: block;
|
1106 |
-
content: "";
|
1107 |
-
}
|
1108 |
-
|
1109 |
-
.rt-clear:after,
|
1110 |
-
.rt-clear::-ms-ticks-after {
|
1111 |
-
clear: both;
|
1112 |
-
display: block;
|
1113 |
-
content: "";
|
1114 |
-
}
|
1115 |
-
|
1116 |
-
.rt-layout-filter-container {
|
1117 |
-
font-size: 0;
|
1118 |
-
line-height: 0;
|
1119 |
-
padding: 0;
|
1120 |
-
margin: -5px -5px 30px;
|
1121 |
-
}
|
1122 |
-
|
1123 |
-
.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item {
|
1124 |
-
padding: 8px 10px;
|
1125 |
-
border: 1px solid;
|
1126 |
-
margin: 4px;
|
1127 |
-
display: inline-block;
|
1128 |
-
transition: 0.4s;
|
1129 |
-
}
|
1130 |
-
|
1131 |
-
.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item.selected,
|
1132 |
-
.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item:hover {
|
1133 |
-
background: #222222;
|
1134 |
-
color: #b4b4b4;
|
1135 |
-
}
|
1136 |
-
|
1137 |
-
/*Filter carousel style*/
|
1138 |
-
|
1139 |
-
|
1140 |
-
.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap {
|
1141 |
-
padding-right: 82px;
|
1142 |
-
}
|
1143 |
-
|
1144 |
-
.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper {
|
1145 |
-
margin-right: 0;
|
1146 |
-
width: 100%;
|
1147 |
-
position: static;
|
1148 |
-
}
|
1149 |
-
|
1150 |
-
.tpg-header-wrapper.carousel {
|
1151 |
-
display: flex;
|
1152 |
-
overflow: hidden;
|
1153 |
-
margin-bottom: 30px;
|
1154 |
-
align-items: center;
|
1155 |
-
}
|
1156 |
-
|
1157 |
-
.section-title-style-style1 .tpg-header-wrapper.carousel,
|
1158 |
-
.section-title-style-default .tpg-header-wrapper.carousel {
|
1159 |
-
min-height: 36px;
|
1160 |
-
}
|
1161 |
-
|
1162 |
-
.tpg-header-wrapper.carousel .swiper {
|
1163 |
-
overflow: hidden;
|
1164 |
-
}
|
1165 |
-
|
1166 |
-
.section-title-style-style2 .tpg-header-wrapper.carousel .swiper,
|
1167 |
-
.section-title-style-style3 .tpg-header-wrapper.carousel .swiper {
|
1168 |
-
height: 51px;
|
1169 |
-
margin-bottom: -0.5px;
|
1170 |
-
}
|
1171 |
-
|
1172 |
-
.tpg-header-wrapper.carousel .swiper .swiper-navigation {
|
1173 |
-
position: absolute;
|
1174 |
-
top: 50%;
|
1175 |
-
right: 0;
|
1176 |
-
z-index: 9;
|
1177 |
-
transform: translateY(-50%);
|
1178 |
-
}
|
1179 |
-
|
1180 |
-
.tpg-header-wrapper.carousel .swiper .swiper-button-next, .tpg-header-wrapper.carousel .swiper .swiper-button-prev {
|
1181 |
-
top: 0;
|
1182 |
-
margin-top: 0;
|
1183 |
-
}
|
1184 |
-
|
1185 |
-
.tpg-header-wrapper.carousel .tpg-widget-heading-wrapper {
|
1186 |
-
flex: 1;
|
1187 |
-
margin: 0;
|
1188 |
-
padding-right: 10px;
|
1189 |
-
}
|
1190 |
-
|
1191 |
-
.tpg-header-wrapper.carousel .rt-layout-filter-container {
|
1192 |
-
margin: 0;
|
1193 |
-
flex: 0 0 60%;
|
1194 |
-
max-width: 60%;
|
1195 |
-
}
|
1196 |
-
|
1197 |
-
.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper {
|
1198 |
-
position: relative;
|
1199 |
-
width: 100%;
|
1200 |
-
height: 100%;
|
1201 |
-
z-index: 1;
|
1202 |
-
display: flex;
|
1203 |
-
transition-property: transform;
|
1204 |
-
box-sizing: content-box;
|
1205 |
-
margin: 0;
|
1206 |
-
}
|
1207 |
-
|
1208 |
-
.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide {
|
1209 |
-
text-align: center;
|
1210 |
-
width: auto;
|
1211 |
-
height: auto;
|
1212 |
-
padding: 0 10px;
|
1213 |
-
border: none;
|
1214 |
-
text-transform: initial;
|
1215 |
-
font-size: 15px;
|
1216 |
-
color: #212121;
|
1217 |
-
/* Center slide text vertically */
|
1218 |
-
display: -webkit-box;
|
1219 |
-
display: -ms-flexbox;
|
1220 |
-
display: -webkit-flex;
|
1221 |
-
display: flex;
|
1222 |
-
-webkit-box-pack: center;
|
1223 |
-
-ms-flex-pack: center;
|
1224 |
-
-webkit-justify-content: center;
|
1225 |
-
justify-content: center;
|
1226 |
-
-webkit-box-align: center;
|
1227 |
-
-ms-flex-align: center;
|
1228 |
-
-webkit-align-items: center;
|
1229 |
-
align-items: center;
|
1230 |
-
margin: 0;
|
1231 |
-
position: relative;
|
1232 |
-
}
|
1233 |
-
|
1234 |
-
.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide::before,
|
1235 |
-
.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide::before {
|
1236 |
-
content: "";
|
1237 |
-
position: absolute;
|
1238 |
-
left: 50%;
|
1239 |
-
bottom: 0;
|
1240 |
-
-webkit-transform: translateX(-50%);
|
1241 |
-
transform: translateX(-50%);
|
1242 |
-
width: 0;
|
1243 |
-
height: 0;
|
1244 |
-
border-style: solid;
|
1245 |
-
border-width: 0 7px 7px 7px;
|
1246 |
-
border-top-color: transparent;
|
1247 |
-
border-left-color: transparent;
|
1248 |
-
border-right-color: transparent;
|
1249 |
-
border-bottom-color: var(--tpg-primary-color);
|
1250 |
-
visibility: hidden;
|
1251 |
-
opacity: 0;
|
1252 |
-
transition: all 0.3s ease;
|
1253 |
-
}
|
1254 |
-
|
1255 |
-
.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected::before,
|
1256 |
-
.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover::before,
|
1257 |
-
.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected::before,
|
1258 |
-
.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover::before {
|
1259 |
-
opacity: 1;
|
1260 |
-
visibility: visible;
|
1261 |
-
}
|
1262 |
-
|
1263 |
-
|
1264 |
-
.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected,
|
1265 |
-
.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover {
|
1266 |
-
color: var(--tpg-primary-color);
|
1267 |
-
}
|
1268 |
-
|
1269 |
-
.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .filter-right-wrapper,
|
1270 |
-
.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .rt-author-filter {
|
1271 |
-
display: none;
|
1272 |
-
}
|
1273 |
-
|
1274 |
-
.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.swiper-wrapper {
|
1275 |
-
letter-spacing: 0;
|
1276 |
-
}
|
1277 |
-
|
1278 |
-
.tpg-header-wrapper.carousel .swiper-button-next.swiper-button-disabled,
|
1279 |
-
.tpg-header-wrapper.carousel .swiper-button-prev.swiper-button-disabled {
|
1280 |
-
opacity: 1;
|
1281 |
-
}
|
1282 |
-
|
1283 |
-
.tpg-header-wrapper.carousel .swiper-button-next.swiper-button-disabled::after,
|
1284 |
-
.tpg-header-wrapper.carousel .swiper-button-prev.swiper-button-disabled::after {
|
1285 |
-
opacity: .35;
|
1286 |
-
}
|
1287 |
-
|
1288 |
-
.filter-button-border-enable .tpg-header-wrapper.carousel .rt-layout-filter-container {
|
1289 |
-
border: 1px solid #ddd;
|
1290 |
-
border-radius: 3px;
|
1291 |
-
}
|
1292 |
-
|
1293 |
-
.filter-button-border-enable .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide {
|
1294 |
-
padding: 6px 15px;
|
1295 |
-
white-space: nowrap;
|
1296 |
-
}
|
1297 |
-
|
1298 |
-
.filter-button-border-enable .tpg-header-wrapper.carousel .swiper .swiper-navigation {
|
1299 |
-
right: 3px;
|
1300 |
-
}
|
1301 |
-
|
1302 |
-
.filter-nex-prev-btn-hidden .tpg-header-wrapper.carousel .swiper .swiper-navigation {
|
1303 |
-
display: none;
|
1304 |
-
}
|
1305 |
-
|
1306 |
-
.filter-nex-prev-btn-hidden .tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap {
|
1307 |
-
margin-right: 0;
|
1308 |
-
}
|
1309 |
-
|
1310 |
-
@media (max-width: 767px) {
|
1311 |
-
.tpg-header-wrapper.carousel {
|
1312 |
-
display: block;
|
1313 |
-
}
|
1314 |
-
|
1315 |
-
.tpg-header-wrapper.carousel .rt-layout-filter-container {
|
1316 |
-
max-width: 100%;
|
1317 |
-
position: relative;
|
1318 |
-
margin-bottom: 8px;
|
1319 |
-
}
|
1320 |
-
|
1321 |
-
.tpg-header-wrapper.carousel .rt-layout-filter-container {
|
1322 |
-
margin-left: -9px;
|
1323 |
-
margin-top: 10px;
|
1324 |
-
}
|
1325 |
-
}
|
1326 |
-
|
1327 |
-
/*End Filter Carousel*/
|
1328 |
-
|
1329 |
-
.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item.selected,
|
1330 |
-
.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item:hover {
|
1331 |
-
background: none;
|
1332 |
-
color: #000000;
|
1333 |
-
}
|
1334 |
-
|
1335 |
-
|
1336 |
-
.rt-filter-item-wrap.rt-order-by-action, .rt-filter-item-wrap.rt-sort-order-action {
|
1337 |
-
float: right;
|
1338 |
-
}
|
1339 |
-
|
1340 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap {
|
1341 |
-
line-height: 1.55;
|
1342 |
-
display: inline-block;
|
1343 |
-
vertical-align: top;
|
1344 |
-
font-size: 13px;
|
1345 |
-
letter-spacing: 0.1em;
|
1346 |
-
text-transform: uppercase;
|
1347 |
-
margin: 4px;
|
1348 |
-
padding: 8px 10px;
|
1349 |
-
cursor: pointer;
|
1350 |
-
position: relative;
|
1351 |
-
user-select: none;
|
1352 |
-
-webkit-user-select: none;
|
1353 |
-
-moz-user-select: none;
|
1354 |
-
transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
|
1355 |
-
-webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
|
1356 |
-
-ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
|
1357 |
-
color: #666;
|
1358 |
-
}
|
1359 |
-
|
1360 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-button-wrap {
|
1361 |
-
padding: 0;
|
1362 |
-
margin-top: 0;
|
1363 |
-
margin-left: 0;
|
1364 |
-
}
|
1365 |
-
|
1366 |
-
@media (max-width: 767px) {
|
1367 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-button-wrap {
|
1368 |
-
display: inline;
|
1369 |
-
}
|
1370 |
-
}
|
1371 |
-
|
1372 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-button-item .rt-filter-sub-tax {
|
1373 |
-
display: none;
|
1374 |
-
}
|
1375 |
-
|
1376 |
-
.rt-layout-filter-container .rt-filter-sub-tax.sub-button-group {
|
1377 |
-
margin: 0 4px;
|
1378 |
-
}
|
1379 |
-
|
1380 |
-
.rt-layout-filter-container .rt-filter-sub-tax.sub-button-group .rt-filter-button-item {
|
1381 |
-
cursor: pointer;
|
1382 |
-
}
|
1383 |
-
|
1384 |
-
.rt-layout-filter-container > .rt-filter-sub-tax.sub-button-group > span {
|
1385 |
-
padding: 8px 10px;
|
1386 |
-
border: 1px solid;
|
1387 |
-
margin: 4px;
|
1388 |
-
display: inline-block;
|
1389 |
-
line-height: 1.55;
|
1390 |
-
vertical-align: top;
|
1391 |
-
font-size: 13px;
|
1392 |
-
letter-spacing: 0.1em;
|
1393 |
-
text-transform: uppercase;
|
1394 |
-
}
|
1395 |
-
|
1396 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap {
|
1397 |
-
border: 1px solid #666;
|
1398 |
-
color: #666;
|
1399 |
-
position: relative;
|
1400 |
-
}
|
1401 |
-
|
1402 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap:hover {
|
1403 |
-
border-color: #222;
|
1404 |
-
color: #222;
|
1405 |
-
}
|
1406 |
-
|
1407 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-sort-order-action:hover {
|
1408 |
-
border-color: #222;
|
1409 |
-
}
|
1410 |
-
|
1411 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap > .rt-filter-dropdown-default {
|
1412 |
-
min-width: 135px;
|
1413 |
-
max-width: 135px;
|
1414 |
-
overflow: hidden;
|
1415 |
-
text-overflow: ellipsis;
|
1416 |
-
text-align: center;
|
1417 |
-
display: block;
|
1418 |
-
white-space: nowrap;
|
1419 |
-
}
|
1420 |
-
|
1421 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown {
|
1422 |
-
display: block;
|
1423 |
-
position: absolute;
|
1424 |
-
top: 100%;
|
1425 |
-
left: -1px;
|
1426 |
-
right: -1px;
|
1427 |
-
background-color: #222;
|
1428 |
-
z-index: 2;
|
1429 |
-
margin-top: 1px;
|
1430 |
-
border: none;
|
1431 |
-
opacity: 0;
|
1432 |
-
visibility: hidden;
|
1433 |
-
transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
|
1434 |
-
-webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
|
1435 |
-
-ms-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
|
1436 |
-
border-top: 1px solid transparent;
|
1437 |
-
}
|
1438 |
-
|
1439 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap:hover .rt-filter-dropdown {
|
1440 |
-
border-top-color: #000;
|
1441 |
-
}
|
1442 |
-
|
1443 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown .rt-filter-dropdown-item.selected {
|
1444 |
-
background: #000;
|
1445 |
-
}
|
1446 |
-
|
1447 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap.active-dropdown .rt-filter-dropdown {
|
1448 |
-
opacity: 1;
|
1449 |
-
visibility: visible;
|
1450 |
-
}
|
1451 |
-
|
1452 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap.active-dropdown .rt-arrow-angle {
|
1453 |
-
transform: rotate(180deg);
|
1454 |
-
-webkit-transform: rotate(180deg);
|
1455 |
-
-ms-transform: rotate(180deg);
|
1456 |
-
}
|
1457 |
-
|
1458 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown .rt-filter-dropdown-item {
|
1459 |
-
display: block;
|
1460 |
-
padding: 10px 15px 9px 15px;
|
1461 |
-
border-bottom: 1px solid #323232;
|
1462 |
-
color: #b4b4b4;
|
1463 |
-
text-align: center;
|
1464 |
-
}
|
1465 |
-
|
1466 |
-
.rt-filter-dropdown-item .sub-dropdown-wrap,
|
1467 |
-
.rt-filter-dropdown-default .sub-dropdown-wrap {
|
1468 |
-
display: none !important;
|
1469 |
-
}
|
1470 |
-
|
1471 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-arrow-angle {
|
1472 |
-
letter-spacing: 0;
|
1473 |
-
transition: transform 0.2s ease-in-out;
|
1474 |
-
-webkit-transition: transform 0.2s ease-in-out;
|
1475 |
-
-ms-transition: transform 0.2s ease-in-out;
|
1476 |
-
backface-visibility: hidden;
|
1477 |
-
-webkit-backface-visibility: hidden;
|
1478 |
-
}
|
1479 |
-
|
1480 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-sort-order-action {
|
1481 |
-
border: 1px solid #666;
|
1482 |
-
color: #666;
|
1483 |
-
position: relative;
|
1484 |
-
min-width: 38px;
|
1485 |
-
}
|
1486 |
-
|
1487 |
-
.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow {
|
1488 |
-
position: static;
|
1489 |
-
}
|
1490 |
-
|
1491 |
-
.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow > span {
|
1492 |
-
display: block;
|
1493 |
-
position: absolute;
|
1494 |
-
width: 14px;
|
1495 |
-
height: 8px;
|
1496 |
-
top: 50%;
|
1497 |
-
left: 50%;
|
1498 |
-
margin-top: -4px;
|
1499 |
-
margin-left: -7px;
|
1500 |
-
backface-visibility: hidden;
|
1501 |
-
-webkit-backface-visibility: hidden;
|
1502 |
-
transition: transform 0.2s ease-in-out;
|
1503 |
-
-webkit-transition: transform 0.2s ease-in-out;
|
1504 |
-
-ms-transition: transform 0.2s ease-in-out;
|
1505 |
-
}
|
1506 |
-
|
1507 |
-
.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow[data-sort-order="ASC"] > span {
|
1508 |
-
transform: rotate(180deg);
|
1509 |
-
-webkit-transform: rotate(180deg);
|
1510 |
-
-ms-transform: rotate(180deg);
|
1511 |
-
}
|
1512 |
-
|
1513 |
-
.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow > span:before {
|
1514 |
-
content: '';
|
1515 |
-
display: block;
|
1516 |
-
width: 2px;
|
1517 |
-
height: 9px;
|
1518 |
-
position: absolute;
|
1519 |
-
background-color: #666;
|
1520 |
-
transform: rotate(-45deg);
|
1521 |
-
-webkit-transform: rotate(-45deg);
|
1522 |
-
-ms-transform: rotate(-45deg);
|
1523 |
-
top: 0;
|
1524 |
-
left: 3px;
|
1525 |
-
transition: background-color 0.2s ease-in-out;
|
1526 |
-
-webkit-transition: background-color 0.2s ease-in-out;
|
1527 |
-
-ms-transition: background-color 0.2s ease-in-out;
|
1528 |
-
}
|
1529 |
-
|
1530 |
-
.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow > span:after {
|
1531 |
-
content: '';
|
1532 |
-
display: block;
|
1533 |
-
width: 2px;
|
1534 |
-
height: 9px;
|
1535 |
-
position: absolute;
|
1536 |
-
background-color: #666;
|
1537 |
-
transform: rotate(45deg);
|
1538 |
-
-webkit-transform: rotate(45deg);
|
1539 |
-
-ms-transform: rotate(45deg);
|
1540 |
-
top: 0;
|
1541 |
-
left: 9px;
|
1542 |
-
transition: background-color 0.2s ease-in-out;
|
1543 |
-
-webkit-transition: background-color 0.2s ease-in-out;
|
1544 |
-
-ms-transition: background-color 0.2s ease-in-out;
|
1545 |
-
}
|
1546 |
-
|
1547 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-search-filter-wrap {
|
1548 |
-
padding: 0;
|
1549 |
-
position: relative;
|
1550 |
-
float: right;
|
1551 |
-
}
|
1552 |
-
|
1553 |
-
.rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input {
|
1554 |
-
-webkit-appearance: none;
|
1555 |
-
-moz-appearance: none;
|
1556 |
-
appearance: none;
|
1557 |
-
padding: 11px;
|
1558 |
-
background: transparent;
|
1559 |
-
font-size: 12px;
|
1560 |
-
font-weight: 600;
|
1561 |
-
font-family: "Dosis", sans-serif;
|
1562 |
-
border: 1px solid #666;
|
1563 |
-
color: #666;
|
1564 |
-
}
|
1565 |
-
|
1566 |
-
.rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input:focus {
|
1567 |
-
box-shadow: none;
|
1568 |
-
outline: none;
|
1569 |
-
}
|
1570 |
-
|
1571 |
-
.rt-filter-item-wrap.rt-search-filter-wrap span.rt-action {
|
1572 |
-
position: absolute;
|
1573 |
-
right: 5px;
|
1574 |
-
top: 6px;
|
1575 |
-
font-size: 15px;
|
1576 |
-
display: inline-block;
|
1577 |
-
cursor: pointer;
|
1578 |
-
}
|
1579 |
-
|
1580 |
-
.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input::-webkit-input-placeholder {
|
1581 |
-
font-size: 12px;
|
1582 |
-
font-weight: 600;
|
1583 |
-
font-family: "Dosis", sans-serif;
|
1584 |
-
}
|
1585 |
-
|
1586 |
-
.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input::-moz-placeholder {
|
1587 |
-
font-size: 12px;
|
1588 |
-
font-weight: 600;
|
1589 |
-
font-family: "Dosis", sans-serif;
|
1590 |
-
}
|
1591 |
-
|
1592 |
-
.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input:-ms-input-placeholder {
|
1593 |
-
font-size: 12px;
|
1594 |
-
font-weight: 600;
|
1595 |
-
font-family: "Dosis", sans-serif;
|
1596 |
-
}
|
1597 |
-
|
1598 |
-
.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input:-moz-placeholder {
|
1599 |
-
font-size: 12px;
|
1600 |
-
font-weight: 600;
|
1601 |
-
font-family: "Dosis", sans-serif;
|
1602 |
-
}
|
1603 |
-
|
1604 |
-
@media (max-width: 600px) {
|
1605 |
-
.rt-filter-item-wrap.rt-tax-filter.rt-filter-dropdown-wrap {
|
1606 |
-
display: block;
|
1607 |
-
margin-bottom: 10px;
|
1608 |
-
}
|
1609 |
-
|
1610 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap > .rt-filter-dropdown-default {
|
1611 |
-
margin: 0 auto;
|
1612 |
-
}
|
1613 |
-
}
|
1614 |
-
|
1615 |
-
/***************************
|
1616 |
-
Tooltip Style
|
1617 |
-
****************************/
|
1618 |
-
|
1619 |
-
.rt-tpg-social-share.a {
|
1620 |
-
position: relative;
|
1621 |
-
}
|
1622 |
-
|
1623 |
-
body > .rt-tooltip {
|
1624 |
-
font-size: 100%;
|
1625 |
-
position: absolute;
|
1626 |
-
z-index: 9999;
|
1627 |
-
-o-box-shadow: 0 0 5px #aaa;
|
1628 |
-
-moz-box-shadow: 0 0 5px #aaa;
|
1629 |
-
-webkit-box-shadow: 0 0 5px #aaa;
|
1630 |
-
box-shadow: 0 0 5px #aaa;
|
1631 |
-
color: #fff;
|
1632 |
-
border-radius: 3px;
|
1633 |
-
background: #666;
|
1634 |
-
padding: 5px 10px;
|
1635 |
-
border-width: 2px;
|
1636 |
-
opacity: 0;
|
1637 |
-
pointer-events: none;
|
1638 |
-
-webkit-transition: opacity 1s ease-in-out;
|
1639 |
-
-moz-transition: opacity 1s ease-in-out;
|
1640 |
-
-ms-transition: opacity 1s ease-in-out;
|
1641 |
-
-o-transition: opacity 1s ease-in-out;
|
1642 |
-
transition: opacity 1s ease-in-out;
|
1643 |
-
}
|
1644 |
-
|
1645 |
-
body > .rt-tooltip .rt-tooltip-content {
|
1646 |
-
font-size: 90%;
|
1647 |
-
}
|
1648 |
-
|
1649 |
-
body > .rt-tooltip,
|
1650 |
-
body > .rt-tooltip .rt-tooltip-bottom:after {
|
1651 |
-
background: #000;
|
1652 |
-
border-radius: 2px;
|
1653 |
-
}
|
1654 |
-
|
1655 |
-
body > .rt-tooltip .rt-tooltip-bottom {
|
1656 |
-
width: 70px;
|
1657 |
-
height: 18px;
|
1658 |
-
overflow: hidden;
|
1659 |
-
position: absolute;
|
1660 |
-
left: 50%;
|
1661 |
-
margin-left: -32px;
|
1662 |
-
bottom: -16px;
|
1663 |
-
}
|
1664 |
-
|
1665 |
-
body > .rt-tooltip .rt-tooltip-bottom:after {
|
1666 |
-
content: "";
|
1667 |
-
position: absolute;
|
1668 |
-
left: 20px;
|
1669 |
-
top: -20px;
|
1670 |
-
width: 25px;
|
1671 |
-
height: 25px;
|
1672 |
-
-webkit-transform: rotate(45deg);
|
1673 |
-
-moz-transform: rotate(45deg);
|
1674 |
-
-ms-transform: rotate(45deg);
|
1675 |
-
-o-transform: rotate(45deg);
|
1676 |
-
tranform: rotate(45deg);
|
1677 |
-
}
|
1678 |
-
|
1679 |
-
/******************************************
|
1680 |
-
Common Layout Style
|
1681 |
-
********************************************/
|
1682 |
-
|
1683 |
-
|
1684 |
-
.rt-tpg-container .rt-holder .rt-img-holder {
|
1685 |
-
position: relative;
|
1686 |
-
overflow: hidden;
|
1687 |
-
}
|
1688 |
-
|
1689 |
-
.rt-tpg-container .rt-holder .tpg-el-image-wrap {
|
1690 |
-
margin: -15px -15px 15px;
|
1691 |
-
}
|
1692 |
-
|
1693 |
-
.rt-tpg-container .list-behaviour .rt-holder .tpg-el-image-wrap {
|
1694 |
-
margin: 0;
|
1695 |
-
}
|
1696 |
-
|
1697 |
-
.rt-tpg-container .rt-holder:hover .rt-img-holder img:not(.avatar) {
|
1698 |
-
-webkit-transform: scale(1.1);
|
1699 |
-
-moz-transform: scale(1.1);
|
1700 |
-
-ms-transform: scale(1.1);
|
1701 |
-
-o-transform: scale(1.1);
|
1702 |
-
transform: scale(1.1);
|
1703 |
-
}
|
1704 |
-
|
1705 |
-
.rt-tpg-container .img_zoom_out .rt-holder .rt-img-holder img:not(.avatar) {
|
1706 |
-
-webkit-transform: scale(1.1);
|
1707 |
-
-moz-transform: scale(1.1);
|
1708 |
-
-ms-transform: scale(1.1);
|
1709 |
-
-o-transform: scale(1.1);
|
1710 |
-
transform: scale(1.1);
|
1711 |
-
}
|
1712 |
-
|
1713 |
-
.rt-tpg-container .img_no_effect .rt-holder:hover .rt-img-holder img,
|
1714 |
-
.rt-tpg-container .img_zoom_out .rt-holder:hover .rt-img-holder img {
|
1715 |
-
-webkit-transform: scale(1);
|
1716 |
-
-moz-transform: scale(1);
|
1717 |
-
-ms-transform: scale(1);
|
1718 |
-
-o-transform: scale(1);
|
1719 |
-
transform: scale(1);
|
1720 |
-
}
|
1721 |
-
|
1722 |
-
|
1723 |
-
.rt-tpg-container .rt-holder .rt-detail {
|
1724 |
-
padding: 15px 15px 0;
|
1725 |
-
}
|
1726 |
-
|
1727 |
-
.rt-tpg-container .entry-title-wrapper .entry-title {
|
1728 |
-
font-size: 26px;
|
1729 |
-
line-height: 1.25;
|
1730 |
-
margin: 0 0 18px;
|
1731 |
-
font-weight: 500;
|
1732 |
-
}
|
1733 |
-
|
1734 |
-
@media (max-width: 767px) {
|
1735 |
-
.rt-tpg-container .entry-title-wrapper .entry-title {
|
1736 |
-
font-size: 20px;
|
1737 |
-
margin: 0 0 15px;
|
1738 |
-
}
|
1739 |
-
}
|
1740 |
-
|
1741 |
-
.rt-tpg-container .rt-holder .rt-detail .entry-title-wrapper {
|
1742 |
-
margin-bottom: 15px;
|
1743 |
-
}
|
1744 |
-
|
1745 |
-
.rt-tpg-container .rt-detail .tpg-excerpt-inner {
|
1746 |
-
margin-bottom: 15px;
|
1747 |
-
}
|
1748 |
-
|
1749 |
-
.rt-tpg-container .list-layout2 .rt-detail .tpg-excerpt-inner,
|
1750 |
-
.rt-tpg-container .list-layout3 .rt-detail .tpg-excerpt-inner {
|
1751 |
-
margin-bottom: 0;
|
1752 |
-
}
|
1753 |
-
|
1754 |
-
|
1755 |
-
.rt-tpg-container .rt-holder .rt-detail .post-meta {
|
1756 |
-
line-height: 25px;
|
1757 |
-
overflow: hidden;
|
1758 |
-
}
|
1759 |
-
|
1760 |
-
.rt-tpg-container .rt-holder .rt-detail .read-more a {
|
1761 |
-
overflow: hidden;
|
1762 |
-
display: inline-flex;
|
1763 |
-
flex-direction: row;
|
1764 |
-
flex-wrap: wrap;
|
1765 |
-
justify-content: left;
|
1766 |
-
align-items: center;
|
1767 |
-
padding: 8px 20px;
|
1768 |
-
font-size: 15px;
|
1769 |
-
line-height: 1.8;
|
1770 |
-
border: 1px solid rgb(203 203 203 / 40%)
|
1771 |
-
}
|
1772 |
-
|
1773 |
-
.rt-tpg-container .rt-holder .rt-detail .read-more a:hover {
|
1774 |
-
color: #7a64f2;
|
1775 |
-
border-color: #7a64f2;
|
1776 |
-
}
|
1777 |
-
|
1778 |
-
.rt-tpg-container .rt-holder .rt-detail .read-more a {
|
1779 |
-
color: #1a1a1a;
|
1780 |
-
}
|
1781 |
-
|
1782 |
-
.rt-tpg-container .rt-holder .rt-detail .post-meta.right {
|
1783 |
-
text-align: right;
|
1784 |
-
}
|
1785 |
-
|
1786 |
-
.rt-tpg-container .rt-holder .rt-detail .post-meta.center {
|
1787 |
-
text-align: center;
|
1788 |
-
}
|
1789 |
-
|
1790 |
-
.tpg-img-circle .rt-img-holder img {
|
1791 |
-
border-radius: 50% !important;
|
1792 |
-
}
|
1793 |
-
|
1794 |
-
|
1795 |
-
/*
|
1796 |
-
* Animation
|
1797 |
-
*/
|
1798 |
-
@-webkit-keyframes ball-scale-multiple {
|
1799 |
-
0% {
|
1800 |
-
opacity: 0;
|
1801 |
-
-webkit-transform: scale(0);
|
1802 |
-
transform: scale(0);
|
1803 |
-
}
|
1804 |
-
5% {
|
1805 |
-
opacity: .75;
|
1806 |
-
}
|
1807 |
-
100% {
|
1808 |
-
opacity: 0;
|
1809 |
-
-webkit-transform: scale(1);
|
1810 |
-
transform: scale(1);
|
1811 |
-
}
|
1812 |
-
}
|
1813 |
-
|
1814 |
-
@-moz-keyframes ball-scale-multiple {
|
1815 |
-
0% {
|
1816 |
-
opacity: 0;
|
1817 |
-
-moz-transform: scale(0);
|
1818 |
-
transform: scale(0);
|
1819 |
-
}
|
1820 |
-
5% {
|
1821 |
-
opacity: .75;
|
1822 |
-
}
|
1823 |
-
100% {
|
1824 |
-
opacity: 0;
|
1825 |
-
-moz-transform: scale(1);
|
1826 |
-
transform: scale(1);
|
1827 |
-
}
|
1828 |
-
}
|
1829 |
-
|
1830 |
-
@-o-keyframes ball-scale-multiple {
|
1831 |
-
0% {
|
1832 |
-
opacity: 0;
|
1833 |
-
-o-transform: scale(0);
|
1834 |
-
transform: scale(0);
|
1835 |
-
}
|
1836 |
-
5% {
|
1837 |
-
opacity: .75;
|
1838 |
-
}
|
1839 |
-
100% {
|
1840 |
-
opacity: 0;
|
1841 |
-
-o-transform: scale(1);
|
1842 |
-
transform: scale(1);
|
1843 |
-
}
|
1844 |
-
}
|
1845 |
-
|
1846 |
-
@keyframes ball-scale-multiple {
|
1847 |
-
0% {
|
1848 |
-
opacity: 0;
|
1849 |
-
-webkit-transform: scale(0);
|
1850 |
-
-moz-transform: scale(0);
|
1851 |
-
-o-transform: scale(0);
|
1852 |
-
transform: scale(0);
|
1853 |
-
}
|
1854 |
-
5% {
|
1855 |
-
opacity: .75;
|
1856 |
-
}
|
1857 |
-
100% {
|
1858 |
-
opacity: 0;
|
1859 |
-
-webkit-transform: scale(1);
|
1860 |
-
-moz-transform: scale(1);
|
1861 |
-
-o-transform: scale(1);
|
1862 |
-
transform: scale(1);
|
1863 |
-
}
|
1864 |
-
}
|
1865 |
-
|
1866 |
-
@-webkit-keyframes ball-clip-rotate {
|
1867 |
-
0% {
|
1868 |
-
-webkit-transform: rotate(0deg);
|
1869 |
-
transform: rotate(0deg);
|
1870 |
-
}
|
1871 |
-
50% {
|
1872 |
-
-webkit-transform: rotate(180deg);
|
1873 |
-
transform: rotate(180deg);
|
1874 |
-
}
|
1875 |
-
100% {
|
1876 |
-
-webkit-transform: rotate(360deg);
|
1877 |
-
transform: rotate(360deg);
|
1878 |
-
}
|
1879 |
-
}
|
1880 |
-
|
1881 |
-
@-moz-keyframes ball-clip-rotate {
|
1882 |
-
0% {
|
1883 |
-
-moz-transform: rotate(0deg);
|
1884 |
-
transform: rotate(0deg);
|
1885 |
-
}
|
1886 |
-
50% {
|
1887 |
-
-moz-transform: rotate(180deg);
|
1888 |
-
transform: rotate(180deg);
|
1889 |
-
}
|
1890 |
-
100% {
|
1891 |
-
-moz-transform: rotate(360deg);
|
1892 |
-
transform: rotate(360deg);
|
1893 |
-
}
|
1894 |
-
}
|
1895 |
-
|
1896 |
-
@-o-keyframes ball-clip-rotate {
|
1897 |
-
0% {
|
1898 |
-
-o-transform: rotate(0deg);
|
1899 |
-
transform: rotate(0deg);
|
1900 |
-
}
|
1901 |
-
50% {
|
1902 |
-
-o-transform: rotate(180deg);
|
1903 |
-
transform: rotate(180deg);
|
1904 |
-
}
|
1905 |
-
100% {
|
1906 |
-
-o-transform: rotate(360deg);
|
1907 |
-
transform: rotate(360deg);
|
1908 |
-
}
|
1909 |
-
}
|
1910 |
-
|
1911 |
-
@keyframes ball-clip-rotate {
|
1912 |
-
0% {
|
1913 |
-
-webkit-transform: rotate(0deg);
|
1914 |
-
-moz-transform: rotate(0deg);
|
1915 |
-
-o-transform: rotate(0deg);
|
1916 |
-
transform: rotate(0deg);
|
1917 |
-
}
|
1918 |
-
50% {
|
1919 |
-
-webkit-transform: rotate(180deg);
|
1920 |
-
-moz-transform: rotate(180deg);
|
1921 |
-
-o-transform: rotate(180deg);
|
1922 |
-
transform: rotate(180deg);
|
1923 |
-
}
|
1924 |
-
100% {
|
1925 |
-
-webkit-transform: rotate(360deg);
|
1926 |
-
-moz-transform: rotate(360deg);
|
1927 |
-
-o-transform: rotate(360deg);
|
1928 |
-
transform: rotate(360deg);
|
1929 |
-
}
|
1930 |
-
}
|
1931 |
-
|
1932 |
-
.rt-container-fluid {
|
1933 |
-
position: relative;
|
1934 |
-
}
|
1935 |
-
|
1936 |
-
#bottom-script-loader {
|
1937 |
-
position: absolute;
|
1938 |
-
width: 100%;
|
1939 |
-
height: 100%;
|
1940 |
-
z-index: 20;
|
1941 |
-
background: rgba(255, 255, 255, 0.95);
|
1942 |
-
}
|
1943 |
-
|
1944 |
-
#bottom-script-loader .rt-ball-clip-rotate {
|
1945 |
-
color: var(--tpg-primary-color);
|
1946 |
-
position: absolute;
|
1947 |
-
top: 80px;
|
1948 |
-
left: 50%;
|
1949 |
-
margin-left: -16px;
|
1950 |
-
z-index: 2;
|
1951 |
-
}
|
1952 |
-
|
1953 |
-
/*----------- Widget Heading -------------*/
|
1954 |
-
|
1955 |
-
.tpg-widget-heading-wrapper {
|
1956 |
-
position: relative;
|
1957 |
-
margin-bottom: 30px;
|
1958 |
-
display: flex;
|
1959 |
-
}
|
1960 |
-
|
1961 |
-
.tpg-widget-heading-wrapper .tpg-widget-heading {
|
1962 |
-
position: relative;
|
1963 |
-
padding-right: 15px;
|
1964 |
-
margin-top: 0;
|
1965 |
-
padding-top: 0;
|
1966 |
-
margin-bottom: -1px;
|
1967 |
-
line-height: 1;
|
1968 |
-
}
|
1969 |
-
|
1970 |
-
.search .tpg-widget-heading-wrapper .tpg-widget-heading {
|
1971 |
-
line-height: 1.5
|
1972 |
-
}
|
1973 |
-
|
1974 |
-
@meia (max-width: 767px) {
|
1975 |
-
.tpg-widget-heading-wrapper .tpg-widget-heading {
|
1976 |
-
line-height: 1.2;
|
1977 |
-
}
|
1978 |
-
}
|
1979 |
-
|
1980 |
-
.tpg-widget-heading-wrapper.center .tpg-widget-heading {
|
1981 |
-
margin: 0;
|
1982 |
-
padding: 0;
|
1983 |
-
}
|
1984 |
-
|
1985 |
-
.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading::before {
|
1986 |
-
content: '';
|
1987 |
-
position: absolute;
|
1988 |
-
top: 50%;
|
1989 |
-
right: -7.5px;
|
1990 |
-
width: 8px;
|
1991 |
-
height: 8px;
|
1992 |
-
margin-top: -4px;
|
1993 |
-
border-radius: 50%;
|
1994 |
-
background-color: var(--tpg-primary-color);
|
1995 |
-
margin-right: 7px;
|
1996 |
-
display: inline-block;
|
1997 |
-
}
|
1998 |
-
|
1999 |
-
.tpg-widget-heading-wrapper.heading-style1.center .tpg-widget-heading::before {
|
2000 |
-
display: none;
|
2001 |
-
}
|
2002 |
-
|
2003 |
-
.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-left {
|
2004 |
-
display: none;
|
2005 |
-
}
|
2006 |
-
|
2007 |
-
.tpg-widget-heading-wrapper.heading-style1.center .tpg-widget-heading-line.line-left {
|
2008 |
-
display: block;
|
2009 |
-
margin-left: 0;
|
2010 |
-
margin-right: 15px;
|
2011 |
-
}
|
2012 |
-
|
2013 |
-
.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line-left,
|
2014 |
-
.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line {
|
2015 |
-
/*border: 1px solid;*/
|
2016 |
-
border-style: solid;
|
2017 |
-
border-color: #e5e5e5;
|
2018 |
-
border-width: 1px 0;
|
2019 |
-
-webkit-box-flex: 1;
|
2020 |
-
align-self: center;
|
2021 |
-
margin-left: 15px;
|
2022 |
-
-ms-flex-positive: 1;
|
2023 |
-
flex-grow: 1;
|
2024 |
-
height: 4px;
|
2025 |
-
}
|
2026 |
-
|
2027 |
-
.tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading,
|
2028 |
-
.tpg-widget-heading-wrapper.heading-style3 .tpg-widget-heading {
|
2029 |
-
background-color: var(--tpg-primary-color);
|
2030 |
-
color: #fff;
|
2031 |
-
line-height: 1.4;
|
2032 |
-
padding: 5px 15px;
|
2033 |
-
margin-bottom: -.5px;
|
2034 |
-
}
|
2035 |
-
|
2036 |
-
.tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading a,
|
2037 |
-
.tpg-widget-heading-wrapper.heading-style3 .tpg-widget-heading a {
|
2038 |
-
color: inherit;
|
2039 |
-
}
|
2040 |
-
|
2041 |
-
.tpg-widget-heading-wrapper.center {
|
2042 |
-
justify-content: center;
|
2043 |
-
}
|
2044 |
-
|
2045 |
-
.tpg-widget-heading-wrapper.right {
|
2046 |
-
flex-direction: row-reverse;
|
2047 |
-
}
|
2048 |
-
|
2049 |
-
.tpg-widget-heading-wrapper.right .tpg-widget-heading {
|
2050 |
-
padding-left: 15px;
|
2051 |
-
padding-right: 0;
|
2052 |
-
}
|
2053 |
-
|
2054 |
-
.tpg-widget-heading-wrapper.right .tpg-widget-heading::before {
|
2055 |
-
left: 0;
|
2056 |
-
right: auto;
|
2057 |
-
}
|
2058 |
-
|
2059 |
-
.tpg-widget-heading-wrapper.right .tpg-widget-heading-line {
|
2060 |
-
margin-left: 0;
|
2061 |
-
margin-right: 15px;
|
2062 |
-
}
|
2063 |
-
|
2064 |
-
.tpg-el-main-wrapper .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading::before,
|
2065 |
-
.tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading::after {
|
2066 |
-
content: "";
|
2067 |
-
position: absolute;
|
2068 |
-
top: 0;
|
2069 |
-
right: -11px;
|
2070 |
-
border-width: 12px 12px 0 0;
|
2071 |
-
border-style: solid;
|
2072 |
-
border-color: var(--tpg-primary-color) transparent;
|
2073 |
-
}
|
2074 |
-
|
2075 |
-
.section-title-align-center .tpg-el-main-wrapper .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading::before {
|
2076 |
-
right: auto;
|
2077 |
-
left: -11px;
|
2078 |
-
border-width: 12px 0 0 12px;
|
2079 |
-
}
|
2080 |
-
|
2081 |
-
.tpg-widget-heading-wrapper.heading-style2.right .tpg-widget-heading::after {
|
2082 |
-
left: -11px;
|
2083 |
-
right: auto;
|
2084 |
-
border-width: 12px 0 0 12px;
|
2085 |
-
}
|
2086 |
-
|
2087 |
-
.tpg-widget-heading-wrapper.heading-style2.center .tpg-widget-heading::after {
|
2088 |
-
content: none;
|
2089 |
-
}
|
2090 |
-
|
2091 |
-
.section-title-style-style2 .tpg-header-wrapper:not(.carousel) .tpg-widget-heading-wrapper,
|
2092 |
-
.section-title-style-style3 .tpg-header-wrapper:not(.carousel) .tpg-widget-heading-wrapper,
|
2093 |
-
.section-title-style-style2 .tpg-header-wrapper.carousel,
|
2094 |
-
.section-title-style-style3 .tpg-header-wrapper.carousel {
|
2095 |
-
border-bottom: 2px solid var(--tpg-primary-color);
|
2096 |
-
}
|
2097 |
-
|
2098 |
-
|
2099 |
-
/*End Widget Heading*/
|
2100 |
-
|
2101 |
-
/*===============
|
2102 |
-
TPG EVEN Style
|
2103 |
-
==================*/
|
2104 |
-
|
2105 |
-
.tpg-full-height,
|
2106 |
-
.tpg-even {
|
2107 |
-
display: -ms-flexbox;
|
2108 |
-
display: flex;
|
2109 |
-
-ms-flex-wrap: wrap;
|
2110 |
-
flex-wrap: wrap;
|
2111 |
-
}
|
2112 |
-
|
2113 |
-
@media (max-width: 767px) {
|
2114 |
-
.rt-content-loader .rt-holder,
|
2115 |
-
.tpg-even .rt-holder {
|
2116 |
-
flex-direction: column;
|
2117 |
-
}
|
2118 |
-
}
|
2119 |
-
|
2120 |
-
/**********************************************************************/
|
2121 |
-
/********************************* pagination *************************/
|
2122 |
-
/**********************************************************************/
|
2123 |
-
.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next > * {
|
2124 |
-
margin-left: 1px;
|
2125 |
-
margin-right: 1px;
|
2126 |
-
display: inline-block;
|
2127 |
-
width: 30px;
|
2128 |
-
height: 30px;
|
2129 |
-
text-align: center;
|
2130 |
-
font-size: 18px;
|
2131 |
-
background-color: #bcbcbc;
|
2132 |
-
color: #fff;
|
2133 |
-
line-height: 30px;
|
2134 |
-
bottom: auto;
|
2135 |
-
cursor: pointer;
|
2136 |
-
transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
|
2137 |
-
-webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
|
2138 |
-
-ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
|
2139 |
-
}
|
2140 |
-
|
2141 |
-
.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next > * i {
|
2142 |
-
line-height: 1;
|
2143 |
-
}
|
2144 |
-
|
2145 |
-
.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next > .rt-disabled {
|
2146 |
-
opacity: 0.5;
|
2147 |
-
pointer-events: none;
|
2148 |
-
}
|
2149 |
-
|
2150 |
-
.rt-cb-page-prev-next {
|
2151 |
-
text-align: left;
|
2152 |
-
}
|
2153 |
-
|
2154 |
-
.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style .rt-loadmore-loading {
|
2155 |
-
color: #fff;
|
2156 |
-
position: absolute;
|
2157 |
-
top: 50%;
|
2158 |
-
left: 50%;
|
2159 |
-
margin-top: -32px;
|
2160 |
-
margin-left: -32px;
|
2161 |
-
visibility: hidden;
|
2162 |
-
opacity: 0;
|
2163 |
-
}
|
2164 |
-
|
2165 |
-
.rt-ball-scale-multiple.rt-2x {
|
2166 |
-
width: 64px;
|
2167 |
-
height: 64px;
|
2168 |
-
}
|
2169 |
-
|
2170 |
-
.rt-ball-scale-multiple.rt-2x > div {
|
2171 |
-
width: 64px;
|
2172 |
-
height: 64px;
|
2173 |
-
}
|
2174 |
-
|
2175 |
-
.rt-ball-scale-multiple, .rt-ball-scale-multiple > div {
|
2176 |
-
position: relative;
|
2177 |
-
-webkit-box-sizing: border-box;
|
2178 |
-
-moz-box-sizing: border-box;
|
2179 |
-
box-sizing: border-box;
|
2180 |
-
}
|
2181 |
-
|
2182 |
-
.rt-ball-scale-multiple > div {
|
2183 |
-
display: inline-block;
|
2184 |
-
float: none;
|
2185 |
-
background-color: currentColor;
|
2186 |
-
border: 0 solid currentColor;
|
2187 |
-
}
|
2188 |
-
|
2189 |
-
.rt-ball-scale-multiple > div:nth-child(2) {
|
2190 |
-
-webkit-animation-delay: .2s;
|
2191 |
-
-moz-animation-delay: .2s;
|
2192 |
-
-o-animation-delay: .2s;
|
2193 |
-
animation-delay: .2s;
|
2194 |
-
}
|
2195 |
-
|
2196 |
-
.rt-ball-scale-multiple > div {
|
2197 |
-
position: absolute;
|
2198 |
-
top: 0;
|
2199 |
-
left: 0;
|
2200 |
-
width: 32px;
|
2201 |
-
height: 32px;
|
2202 |
-
border-radius: 100%;
|
2203 |
-
opacity: 0;
|
2204 |
-
-webkit-animation: ball-scale-multiple 1s 0s linear infinite;
|
2205 |
-
-moz-animation: ball-scale-multiple 1s 0s linear infinite;
|
2206 |
-
-o-animation: ball-scale-multiple 1s 0s linear infinite;
|
2207 |
-
animation: ball-scale-multiple 1s 0s linear infinite;
|
2208 |
-
}
|
2209 |
-
|
2210 |
-
.rt-tpg-container .rt-pagination-wrap {
|
2211 |
-
text-align: center;
|
2212 |
-
margin-top: 10px;
|
2213 |
-
display: inline-block;
|
2214 |
-
width: 100%;
|
2215 |
-
}
|
2216 |
-
|
2217 |
-
.tpg-el-main-wrapper .rt-pagination-wrap {
|
2218 |
-
display: flex;
|
2219 |
-
flex-direction: row;
|
2220 |
-
justify-content: center;
|
2221 |
-
margin-top: 30px;
|
2222 |
-
}
|
2223 |
-
|
2224 |
-
.tpg-el-main-wrapper .rt-pagination-wrap .rt-pagination {
|
2225 |
-
margin: 0;
|
2226 |
-
}
|
2227 |
-
|
2228 |
-
.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style {
|
2229 |
-
cursor: pointer;
|
2230 |
-
position: relative;
|
2231 |
-
user-select: none;
|
2232 |
-
-webkit-user-select: none;
|
2233 |
-
}
|
2234 |
-
|
2235 |
-
.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style.rt-hidden-elm,
|
2236 |
-
.rt-tpg-container .rt-pagination-wrap .rt-infinite-action.rt-hidden-elm,
|
2237 |
-
.rt-tpg-container .rt-pagination-wrap .rt-page-numbers.rt-hidden-elm,
|
2238 |
-
.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next.rt-hidden-elm {
|
2239 |
-
display: none !important;
|
2240 |
-
}
|
2241 |
-
|
2242 |
-
.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style.rt-lm-loading .rt-loadmore-text {
|
2243 |
-
opacity: 0;
|
2244 |
-
visibility: hidden;
|
2245 |
-
}
|
2246 |
-
|
2247 |
-
.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style.rt-lm-loading .rt-loadmore-loading {
|
2248 |
-
opacity: 1;
|
2249 |
-
visibility: visible;
|
2250 |
-
}
|
2251 |
-
|
2252 |
-
.rt-tpg-container .rt-pagination-wrap .rt-loadmore-btn {
|
2253 |
-
font-size: 13px;
|
2254 |
-
letter-spacing: 0.1em;
|
2255 |
-
text-transform: uppercase;
|
2256 |
-
margin-top: 30px;
|
2257 |
-
color: #fff;
|
2258 |
-
background-color: var(--tpg-primary-color);
|
2259 |
-
text-decoration: none;
|
2260 |
-
padding: 9px 20px 8px 20px;
|
2261 |
-
display: inline-block;
|
2262 |
-
transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
|
2263 |
-
-webkit-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
|
2264 |
-
-ms-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
|
2265 |
-
}
|
2266 |
-
|
2267 |
-
.rt-tpg-container .rt-loadmore-btn:hover {
|
2268 |
-
background-color: var(--tpg-secondary-color);
|
2269 |
-
}
|
2270 |
-
|
2271 |
-
.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages {
|
2272 |
-
float: none;
|
2273 |
-
padding-top: 0.1px;
|
2274 |
-
padding-bottom: 0.1px;
|
2275 |
-
}
|
2276 |
-
|
2277 |
-
.rt-tpg-container .rt-pagination-wrap .rt-page-numbers.rt-lm-loading {
|
2278 |
-
pointer-events: none;
|
2279 |
-
opacity: 0.5;
|
2280 |
-
}
|
2281 |
-
|
2282 |
-
.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul {
|
2283 |
-
float: none;
|
2284 |
-
text-align: center;
|
2285 |
-
font-size: 0;
|
2286 |
-
line-height: 0;
|
2287 |
-
margin: -2px;
|
2288 |
-
}
|
2289 |
-
|
2290 |
-
.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li {
|
2291 |
-
float: none;
|
2292 |
-
font-size: 16px;
|
2293 |
-
line-height: 1.55;
|
2294 |
-
display: inline-block;
|
2295 |
-
min-width: 48px;
|
2296 |
-
min-height: 45px;
|
2297 |
-
border: none;
|
2298 |
-
padding: 2px;
|
2299 |
-
}
|
2300 |
-
|
2301 |
-
.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li > a {
|
2302 |
-
border-radius: 3px;
|
2303 |
-
text-decoration: none;
|
2304 |
-
min-width: 48px;
|
2305 |
-
min-height: 45px;
|
2306 |
-
line-height: 45px;
|
2307 |
-
font-size: 16px;
|
2308 |
-
font-weight: normal;
|
2309 |
-
letter-spacing: 0;
|
2310 |
-
border: 1px solid #dee2e6;
|
2311 |
-
display: block;
|
2312 |
-
padding-left: 8px;
|
2313 |
-
padding-right: 8px;
|
2314 |
-
color: #212121;
|
2315 |
-
}
|
2316 |
-
|
2317 |
-
.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.active > a {
|
2318 |
-
background-color: var(--tpg-primary-color);
|
2319 |
-
border-color: var(--tpg-primary-color);
|
2320 |
-
color: #ffffff;
|
2321 |
-
}
|
2322 |
-
|
2323 |
-
.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.paginationjs-ellipsis {
|
2324 |
-
padding: 0;
|
2325 |
-
min-width: auto;
|
2326 |
-
}
|
2327 |
-
|
2328 |
-
.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.paginationjs-ellipsis a {
|
2329 |
-
border: none !important;
|
2330 |
-
pointer-events: none !important;
|
2331 |
-
color: #000 !important;
|
2332 |
-
opacity: 1;
|
2333 |
-
font-size: 18px;
|
2334 |
-
min-width: auto;
|
2335 |
-
background: none !important;
|
2336 |
-
}
|
2337 |
-
|
2338 |
-
/* old pagination */
|
2339 |
-
|
2340 |
-
.rt-pagination {
|
2341 |
-
text-align: center;
|
2342 |
-
margin: 30px 0;
|
2343 |
-
}
|
2344 |
-
|
2345 |
-
.rt-pagination .pagination-list {
|
2346 |
-
display: inline-block;
|
2347 |
-
padding-left: 0;
|
2348 |
-
border-radius: 4px;
|
2349 |
-
background: transparent;
|
2350 |
-
border-top: 0;
|
2351 |
-
}
|
2352 |
-
|
2353 |
-
.rt-pagination .pagination-list a {
|
2354 |
-
box-shadow: none;
|
2355 |
-
}
|
2356 |
-
|
2357 |
-
.rt-pagination .pagination-list > li {
|
2358 |
-
display: inline-block;
|
2359 |
-
margin: 2px 2px;
|
2360 |
-
}
|
2361 |
-
|
2362 |
-
.rt-pagination .pagination-list > li > a,
|
2363 |
-
.rt-pagination .pagination-list > li > span {
|
2364 |
-
position: relative;
|
2365 |
-
padding: 0 5px;
|
2366 |
-
line-height: 45px;
|
2367 |
-
text-decoration: none;
|
2368 |
-
color: #212121;
|
2369 |
-
background-color: #ffffff;
|
2370 |
-
border: 1px solid #dddddd;
|
2371 |
-
margin-left: -1px;
|
2372 |
-
transition: 0.4s ease-in-out;
|
2373 |
-
min-width: 48px;
|
2374 |
-
min-height: 45px;
|
2375 |
-
border-radius: 3px;
|
2376 |
-
display: block;
|
2377 |
-
}
|
2378 |
-
|
2379 |
-
.rt-pagination .pagination-list > li > a:hover,
|
2380 |
-
.rt-pagination .pagination-list > li > span:hover,
|
2381 |
-
.rt-pagination .pagination-list > li > a:focus,
|
2382 |
-
.rt-pagination .pagination-list > li > span:focus {
|
2383 |
-
z-index: 2;
|
2384 |
-
color: #ffffff;
|
2385 |
-
background-color: var(--tpg-primary-color);
|
2386 |
-
border-color: var(--tpg-primary-color);
|
2387 |
-
}
|
2388 |
-
|
2389 |
-
.rt-pagination .pagination-list > .active > a,
|
2390 |
-
.rt-pagination .pagination-list > .active > span,
|
2391 |
-
.rt-pagination .pagination-list > .active > a:hover,
|
2392 |
-
.rt-pagination .pagination-list > .active > span:hover,
|
2393 |
-
.rt-pagination .pagination-list > .active > a:focus,
|
2394 |
-
.rt-pagination .pagination-list > .active > span:focus {
|
2395 |
-
z-index: 3;
|
2396 |
-
color: #ffffff;
|
2397 |
-
background-color: var(--tpg-primary-color);
|
2398 |
-
border-color: var(--tpg-primary-color);
|
2399 |
-
cursor: default;
|
2400 |
-
}
|
2401 |
-
|
2402 |
-
.rt-pagination .pagination-list > .disabled > span,
|
2403 |
-
.rt-pagination .pagination-list > .disabled > span:hover,
|
2404 |
-
.rt-pagination .pagination-list > .disabled > span:focus,
|
2405 |
-
.rt-pagination .pagination-list > .disabled > a,
|
2406 |
-
.rt-pagination .pagination-list > .disabled > a:hover,
|
2407 |
-
.rt-pagination .pagination-list > .disabled > a:focus {
|
2408 |
-
color: #212121;
|
2409 |
-
background-color: #ffffff;
|
2410 |
-
border-color: #dddddd;
|
2411 |
-
cursor: not-allowed;
|
2412 |
-
/*pointer-events: none;*/
|
2413 |
-
}
|
2414 |
-
|
2415 |
-
|
2416 |
-
/*---------- Swiper Pagination --------*/
|
2417 |
-
|
2418 |
-
.rt-tpg-container .swiper-pagination-bullet {
|
2419 |
-
background: #D6D6D6;
|
2420 |
-
opacity: 1;
|
2421 |
-
width: 10px;
|
2422 |
-
height: 10px;
|
2423 |
-
}
|
2424 |
-
|
2425 |
-
.rt-tpg-container .swiper-wrapper {
|
2426 |
-
padding-bottom: 45px;
|
2427 |
-
}
|
2428 |
-
|
2429 |
-
.rt-tpg-container.slider-layout13-main .swiper-wrapper {
|
2430 |
-
padding-bottom: 0;
|
2431 |
-
}
|
2432 |
-
|
2433 |
-
.rt-tpg-container .swiper-pagination-bullets.swiper-pagination-horizontal {
|
2434 |
-
bottom: 0;
|
2435 |
-
}
|
2436 |
-
|
2437 |
-
.rt-tpg-container .swiper-pagination-bullet.swiper-pagination-bullet-active-main {
|
2438 |
-
background: #007bff;
|
2439 |
-
}
|
2440 |
-
|
2441 |
-
.rt-tpg-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev,
|
2442 |
-
.rt-tpg-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
|
2443 |
-
transform: scale(.6);
|
2444 |
-
}
|
2445 |
-
|
2446 |
-
.rt-tpg-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next,
|
2447 |
-
.rt-tpg-container .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
|
2448 |
-
transform: scale(0.8);
|
2449 |
-
}
|
2450 |
-
|
2451 |
-
/*---------- Swiper Navigation -------------*/
|
2452 |
-
|
2453 |
-
.rt-tpg-container > div {
|
2454 |
-
position: relative;
|
2455 |
-
}
|
2456 |
-
|
2457 |
-
.rt-tpg-container .slider-main-wrapper {
|
2458 |
-
position: relative;
|
2459 |
-
}
|
2460 |
-
|
2461 |
-
.rt-tpg-container .swiper-navigation .slider-btn {
|
2462 |
-
position: absolute;
|
2463 |
-
font-size: 14px;
|
2464 |
-
color: #2962ff;
|
2465 |
-
background-color: #fff;
|
2466 |
-
width: 34px;
|
2467 |
-
height: 32px;
|
2468 |
-
border-radius: 3px;
|
2469 |
-
display: -webkit-inline-box;
|
2470 |
-
display: -ms-inline-flexbox;
|
2471 |
-
display: inline-flex;
|
2472 |
-
-webkit-box-pack: center;
|
2473 |
-
-ms-flex-pack: center;
|
2474 |
-
justify-content: center;
|
2475 |
-
-webkit-box-align: center;
|
2476 |
-
-ms-flex-align: center;
|
2477 |
-
align-items: center;
|
2478 |
-
border: 1px solid #e5e5e5;
|
2479 |
-
background-image: none;
|
2480 |
-
transition: all 0.3s ease;
|
2481 |
-
-webkit-transition: all 0.3s ease;
|
2482 |
-
-moz-transition: all 0.3s ease;
|
2483 |
-
-ms-transition: all 0.3s ease;
|
2484 |
-
}
|
2485 |
-
|
2486 |
-
.rt-tpg-container .tpg-header-wrapper .swiper-navigation .slider-btn,
|
2487 |
-
.slider-arrow-position-top-left .rt-tpg-container .swiper-navigation .slider-btn,
|
2488 |
-
.slider-arrow-position-top-right .rt-tpg-container .swiper-navigation .slider-btn {
|
2489 |
-
position: static;
|
2490 |
-
}
|
2491 |
-
|
2492 |
-
.rt-tpg-container .swiper-navigation .slider-btn:hover {
|
2493 |
-
color: #fff;
|
2494 |
-
background-color: #2962ff;
|
2495 |
-
border-color: #2962ff;
|
2496 |
-
}
|
2497 |
-
|
2498 |
-
.rt-tpg-container .swiper-navigation .slider-btn:focus {
|
2499 |
-
outline: 0;
|
2500 |
-
-webkit-box-shadow: none;
|
2501 |
-
box-shadow: none;
|
2502 |
-
}
|
2503 |
-
|
2504 |
-
.rt-tpg-container .swiper-navigation .slider-btn.swiper-button-next {
|
2505 |
-
margin-left: 3px;
|
2506 |
-
}
|
2507 |
-
|
2508 |
-
.rt-tpg-container .swiper-navigation .swiper-button-next:after,
|
2509 |
-
.rt-tpg-container .swiper-navigation .swiper-button-prev:after {
|
2510 |
-
font-size: inherit;
|
2511 |
-
}
|
2512 |
-
|
2513 |
-
/*ACF Style*/
|
2514 |
-
|
2515 |
-
.rt-tpg-container .tpg-cf-group-title {
|
2516 |
-
font-size: 16px;
|
2517 |
-
margin-bottom: 0;
|
2518 |
-
}
|
2519 |
-
|
2520 |
-
.rt-tpg-container .tpg-cf-fields {
|
2521 |
-
margin-top: 0;
|
2522 |
-
font-size: 95%;
|
2523 |
-
line-height: 1.6;
|
2524 |
-
}
|
2525 |
-
|
2526 |
-
.tpg-el-main-wrapper .tpg-cf-wrap {
|
2527 |
-
margin: 10px 0 0;
|
2528 |
-
}
|
2529 |
-
|
2530 |
-
.rt-tpg-container .tpg-cf-wrap:empty {
|
2531 |
-
margin: 0;
|
2532 |
-
}
|
2533 |
-
|
2534 |
-
.act-label-style-inline .tgp-cf-field-label {
|
2535 |
-
margin-right: 8px;
|
2536 |
-
min-width: inherit;
|
2537 |
-
}
|
2538 |
-
|
2539 |
-
.act-label-style-inline .tgp-cf-field-label::after {
|
2540 |
-
content: ":";
|
2541 |
-
}
|
2542 |
-
|
2543 |
-
.act-label-style-block .tgp-cf-field-label {
|
2544 |
-
margin-right: 0;
|
2545 |
-
float: none;
|
2546 |
-
display: block !important;
|
2547 |
-
min-width: inherit;
|
2548 |
-
}
|
2549 |
-
|
2550 |
-
.act-label-style-block .tpg-cf-fields {
|
2551 |
-
display: block;
|
2552 |
-
margin-bottom: 5px;
|
2553 |
-
}
|
2554 |
-
|
2555 |
-
.rt-tpg-container .rt-holder .tgp-cf-field-value * {
|
2556 |
-
color: inherit;
|
2557 |
-
transition: none;
|
2558 |
-
margin: 0;
|
2559 |
-
display: inline;
|
2560 |
-
}
|
2561 |
-
|
2562 |
-
/*End ACF Style*/
|
2563 |
-
|
2564 |
-
.isotope-term-no-post {
|
2565 |
-
min-height: 30px;
|
2566 |
-
}
|
2567 |
-
.isotope-term-no-post p {
|
2568 |
-
margin-bottom: 0;
|
2569 |
-
display: none;
|
2570 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/css/thepostgrid-rtl.css
DELETED
@@ -1,1419 +0,0 @@
|
|
1 |
-
/**********************************************************************/
|
2 |
-
/************************* The Post Grid **************************/
|
3 |
-
/********************** support@radiustheme.com ***********************/
|
4 |
-
/************ Copyright @ 2015-2017, RadiusTheme.com ******************/
|
5 |
-
/**********************************************************************/
|
6 |
-
|
7 |
-
|
8 |
-
/************************ Common ***************************/
|
9 |
-
|
10 |
-
.tpg-shortcode-main-wrapper .masonry-grid-item,
|
11 |
-
.tpg-shortcode-main-wrapper .even-grid-item {
|
12 |
-
margin-bottom: 30px;
|
13 |
-
}
|
14 |
-
|
15 |
-
.tpg-shortcode-main-wrapper i {
|
16 |
-
margin-left: 5px;
|
17 |
-
}
|
18 |
-
|
19 |
-
.tpg-shortcode-main-wrapper .list_layout1 .masonry-grid-item,
|
20 |
-
.tpg-shortcode-main-wrapper .list_layout1 .even-grid-item,
|
21 |
-
.tpg-shortcode-main-wrapper .grid_hover5 .masonry-grid-item,
|
22 |
-
.tpg-shortcode-main-wrapper .grid_hover5 .even-grid-item,
|
23 |
-
.tpg-shortcode-main-wrapper .grid_hover4 .masonry-grid-item,
|
24 |
-
.tpg-shortcode-main-wrapper .grid_hover4 .even-grid-item,
|
25 |
-
.tpg-shortcode-main-wrapper .grid_hover3 .masonry-grid-item,
|
26 |
-
.tpg-shortcode-main-wrapper .grid_hover3 .even-grid-item,
|
27 |
-
.tpg-shortcode-main-wrapper .grid_hover2 .masonry-grid-item,
|
28 |
-
.tpg-shortcode-main-wrapper .grid_hover2 .even-grid-item,
|
29 |
-
.tpg-shortcode-main-wrapper .grid_hover1 .masonry-grid-item,
|
30 |
-
.tpg-shortcode-main-wrapper .grid_hover1 .even-grid-item {
|
31 |
-
margin-bottom: initial;
|
32 |
-
}
|
33 |
-
|
34 |
-
.layout3 .rt-img-responsive {
|
35 |
-
display: inline-block;
|
36 |
-
}
|
37 |
-
|
38 |
-
.list_layout2 .post-meta-user,
|
39 |
-
.list_layout2 .post-meta-tags {
|
40 |
-
font-size: 14px;
|
41 |
-
color: #A5A6AA;
|
42 |
-
}
|
43 |
-
|
44 |
-
.rt-content-loader.layout14 .post-meta-user,
|
45 |
-
.rt-content-loader.layout14 .post-meta-tags {
|
46 |
-
margin-bottom: 0;
|
47 |
-
}
|
48 |
-
|
49 |
-
.offset06 .post-meta-user span,
|
50 |
-
.offset06 .post-meta-tags span {
|
51 |
-
font-weight: 500;
|
52 |
-
padding-left: 15px;
|
53 |
-
font-size: 14px;
|
54 |
-
color: #A5A6AA;
|
55 |
-
}
|
56 |
-
|
57 |
-
.offset06 .post-meta-user span a,
|
58 |
-
.offset06 .post-meta-tags span a {
|
59 |
-
color: #444444;
|
60 |
-
}
|
61 |
-
|
62 |
-
.offset06 .post-meta-user span a:hover,
|
63 |
-
.offset06 .post-meta-tags span a:hover {
|
64 |
-
color: #2962ff;
|
65 |
-
}
|
66 |
-
|
67 |
-
.tpg-shortcode-main-wrapper .rt-detail .entry-title a {
|
68 |
-
text-decoration: none;
|
69 |
-
}
|
70 |
-
|
71 |
-
.categories-links {
|
72 |
-
display: inline-block;
|
73 |
-
line-height: 1.3;
|
74 |
-
}
|
75 |
-
|
76 |
-
.tpg-shortcode-main-wrapper .rt-holder {
|
77 |
-
overflow: hidden;
|
78 |
-
}
|
79 |
-
|
80 |
-
.tpg-shortcode-main-wrapper .grid_hover6 .rt-grid-item {
|
81 |
-
padding: 0 2px;
|
82 |
-
margin-bottom: 4px;
|
83 |
-
}
|
84 |
-
|
85 |
-
.tpg-shortcode-main-wrapper .grid_hover7 .rt-grid-item .post-img img,
|
86 |
-
.tpg-shortcode-main-wrapper .grid_hover6 .rt-grid-item .post-img img {
|
87 |
-
min-height: 350px;
|
88 |
-
object-fit: cover;
|
89 |
-
}
|
90 |
-
|
91 |
-
.grid_hover4 .rt-grid-item {
|
92 |
-
padding: 0;
|
93 |
-
}
|
94 |
-
|
95 |
-
/*********************************************************************
|
96 |
-
/********************************* Layout 1 *************************/
|
97 |
-
/**********************************************************************/
|
98 |
-
|
99 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-img-holder,
|
100 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-img-holder,
|
101 |
-
.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-img-holder {
|
102 |
-
position: relative;
|
103 |
-
overflow: hidden;
|
104 |
-
}
|
105 |
-
|
106 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-img-holder img,
|
107 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-img-holder img,
|
108 |
-
.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-img-holder img {
|
109 |
-
-webkit-transition: all 1.1s ease;
|
110 |
-
-moz-transition: all 1.1s ease;
|
111 |
-
-o-transition: all 1.1s ease;
|
112 |
-
-ms-transition: all 1.1s ease;
|
113 |
-
transition: all 1.1s ease;
|
114 |
-
max-width: 100%;
|
115 |
-
}
|
116 |
-
|
117 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-img-holder:hover img,
|
118 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-img-holder:hover img,
|
119 |
-
.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-img-holder:hover img {
|
120 |
-
-webkit-transform: scale(1.1);
|
121 |
-
-moz-transform: scale(1.1);
|
122 |
-
-ms-transform: scale(1.1);
|
123 |
-
-o-transform: scale(1.1);
|
124 |
-
transform: scale(1.1);
|
125 |
-
}
|
126 |
-
|
127 |
-
.tpg-shortcode-main-wrapper .layout1 .img_zoom_out .rt-holder .rt-img-holder img {
|
128 |
-
-webkit-transform: scale(1.1);
|
129 |
-
-moz-transform: scale(1.1);
|
130 |
-
-ms-transform: scale(1.1);
|
131 |
-
-o-transform: scale(1.1);
|
132 |
-
transform: scale(1.1);
|
133 |
-
}
|
134 |
-
|
135 |
-
.tpg-shortcode-main-wrapper .layout1 .img_no_effect .rt-holder .rt-img-holder:hover img,
|
136 |
-
.tpg-shortcode-main-wrapper .layout1 .img_zoom_out .rt-holder .rt-img-holder:hover img {
|
137 |
-
-webkit-transform: scale(1);
|
138 |
-
-moz-transform: scale(1);
|
139 |
-
-ms-transform: scale(1);
|
140 |
-
-o-transform: scale(1);
|
141 |
-
transform: scale(1);
|
142 |
-
}
|
143 |
-
|
144 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-holder,
|
145 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-holder,
|
146 |
-
.tpg-shortcode-main-wrapper .carousel1 .rt-holder {
|
147 |
-
box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.3);
|
148 |
-
-webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.3);
|
149 |
-
-moz-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.3);
|
150 |
-
}
|
151 |
-
|
152 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail,
|
153 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail,
|
154 |
-
.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail {
|
155 |
-
background: #fff;
|
156 |
-
padding: 15px;
|
157 |
-
}
|
158 |
-
|
159 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail h2,
|
160 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail h3,
|
161 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail h4,
|
162 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail h2,
|
163 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail h3,
|
164 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail h4,
|
165 |
-
.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail h2,
|
166 |
-
.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail h3,
|
167 |
-
.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail h4 {
|
168 |
-
font-size: 26px;
|
169 |
-
line-height: 1.25;
|
170 |
-
margin: 0 0 18px;
|
171 |
-
font-weight: 400;
|
172 |
-
}
|
173 |
-
|
174 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail.rt-with-title h2,
|
175 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail.rt-with-title h3,
|
176 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail.rt-with-title h4,
|
177 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail.rt-with-title h2,
|
178 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail.rt-with-title h3,
|
179 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail.rt-with-title h4,
|
180 |
-
.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail.rt-with-title h2,
|
181 |
-
.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail.rt-with-title h3,
|
182 |
-
.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail.rt-with-title h4 {
|
183 |
-
margin-bottom: 15px;
|
184 |
-
}
|
185 |
-
|
186 |
-
.tpg-shortcode-main-wrapper .rt-holder .rt-detail.rt-with-title {
|
187 |
-
padding-top: 0;
|
188 |
-
}
|
189 |
-
|
190 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-detail .tpg-excerpt,
|
191 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-detail .tpg-excerpt {
|
192 |
-
margin-bottom: 20px;
|
193 |
-
}
|
194 |
-
|
195 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail .post-meta,
|
196 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail .post-meta,
|
197 |
-
.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail .post-meta {
|
198 |
-
line-height: 25px;
|
199 |
-
overflow: hidden;
|
200 |
-
}
|
201 |
-
|
202 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail .read-more a,
|
203 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail .read-more a,
|
204 |
-
.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail .read-more a {
|
205 |
-
padding: 8px 20px;
|
206 |
-
display: inline-block;
|
207 |
-
font-size: 15px;
|
208 |
-
line-height: 1.8;
|
209 |
-
border: 1px solid rgb(203 203 203 / 40%)
|
210 |
-
}
|
211 |
-
|
212 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail .read-more a,
|
213 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail .read-more a,
|
214 |
-
.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail .read-more a {
|
215 |
-
color: #1a1a1a;
|
216 |
-
}
|
217 |
-
|
218 |
-
.tpg-shortcode-main-wrapper .rt-holder .rt-detail .post-meta.right {
|
219 |
-
text-align: left;
|
220 |
-
}
|
221 |
-
|
222 |
-
.tpg-shortcode-main-wrapper .rt-holder .rt-detail .post-meta.center {
|
223 |
-
text-align: center;
|
224 |
-
}
|
225 |
-
|
226 |
-
.tpg-img-circle .rt-img-holder img {
|
227 |
-
border-radius: 50% !important;
|
228 |
-
}
|
229 |
-
|
230 |
-
/**********************************************************************/
|
231 |
-
/********************************* Layout 2 *************************/
|
232 |
-
/**********************************************************************/
|
233 |
-
|
234 |
-
.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-img-holder {
|
235 |
-
position: relative;
|
236 |
-
overflow: hidden;
|
237 |
-
}
|
238 |
-
|
239 |
-
.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-img-holder img {
|
240 |
-
-webkit-transition: all 1.1s ease;
|
241 |
-
-moz-transition: all 1.1s ease;
|
242 |
-
-o-transition: all 1.1s ease;
|
243 |
-
-ms-transition: all 1.1s ease;
|
244 |
-
transition: all 1.1s ease;
|
245 |
-
max-width: 100%;
|
246 |
-
}
|
247 |
-
|
248 |
-
.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-img-holder:hover img {
|
249 |
-
-webkit-transform: scale(1.1);
|
250 |
-
-moz-transform: scale(1.1);
|
251 |
-
-ms-transform: scale(1.1);
|
252 |
-
-o-transform: scale(1.1);
|
253 |
-
transform: scale(1.1);
|
254 |
-
}
|
255 |
-
|
256 |
-
.tpg-shortcode-main-wrapper .layout2 .img_zoom_out .rt-holder .rt-img-holder img {
|
257 |
-
-webkit-transform: scale(1.1);
|
258 |
-
-moz-transform: scale(1.1);
|
259 |
-
-ms-transform: scale(1.1);
|
260 |
-
-o-transform: scale(1.1);
|
261 |
-
transform: scale(1.1);
|
262 |
-
}
|
263 |
-
|
264 |
-
.tpg-shortcode-main-wrapper .layout2 .img_zoom_out .rt-holder .rt-img-holder:hover img {
|
265 |
-
-webkit-transform: scale(1);
|
266 |
-
-moz-transform: scale(1);
|
267 |
-
-ms-transform: scale(1);
|
268 |
-
-o-transform: scale(1);
|
269 |
-
transform: scale(1);
|
270 |
-
}
|
271 |
-
|
272 |
-
.tpg-shortcode-main-wrapper .layout2 .img_no_effect .rt-holder .rt-img-holder img,
|
273 |
-
.tpg-shortcode-main-wrapper .layout2 .img_no_effect .rt-holder .rt-img-holder:hover img {
|
274 |
-
-webkit-transform: scale(1);
|
275 |
-
-moz-transform: scale(1);
|
276 |
-
-ms-transform: scale(1);
|
277 |
-
-o-transform: scale(1);
|
278 |
-
transform: scale(1);
|
279 |
-
}
|
280 |
-
|
281 |
-
.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail h2,
|
282 |
-
.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail h3,
|
283 |
-
.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail h4 {
|
284 |
-
font-size: 26px;
|
285 |
-
line-height: 1.25;
|
286 |
-
margin: 0px 0 15px 0;
|
287 |
-
font-weight: 400;
|
288 |
-
}
|
289 |
-
|
290 |
-
.tpg-shortcode-main-wrapper .layout2 .rt-detail .tpg-excerpt {
|
291 |
-
margin-bottom: 20px;
|
292 |
-
}
|
293 |
-
|
294 |
-
.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .read-more a {
|
295 |
-
line-height: 1.8;
|
296 |
-
border-radius: 5px;
|
297 |
-
display: inline-block;
|
298 |
-
}
|
299 |
-
|
300 |
-
.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .read-more {
|
301 |
-
display: inline-block;
|
302 |
-
width: 100%;
|
303 |
-
}
|
304 |
-
|
305 |
-
.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .read-more.right {
|
306 |
-
text-align: left;
|
307 |
-
}
|
308 |
-
|
309 |
-
.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .read-more.center {
|
310 |
-
text-align: center;
|
311 |
-
}
|
312 |
-
|
313 |
-
.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .rt-tpg-social-share {
|
314 |
-
margin-bottom: 15px;
|
315 |
-
}
|
316 |
-
|
317 |
-
@media all and (max-width: 767px) {
|
318 |
-
.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail,
|
319 |
-
.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail {
|
320 |
-
padding: 15px 0;
|
321 |
-
}
|
322 |
-
}
|
323 |
-
|
324 |
-
/**********************************************************************/
|
325 |
-
/********************************* Layout 3 *************************/
|
326 |
-
/**********************************************************************/
|
327 |
-
|
328 |
-
.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail p {
|
329 |
-
margin-bottom: 20px;
|
330 |
-
}
|
331 |
-
|
332 |
-
.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail h2,
|
333 |
-
.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail h3,
|
334 |
-
.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail h4 {
|
335 |
-
font-size: 26px;
|
336 |
-
margin: 0px 0 18px 0;
|
337 |
-
line-height: 1.25;
|
338 |
-
font-weight: 400;
|
339 |
-
}
|
340 |
-
|
341 |
-
.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-img-holder .overlay {
|
342 |
-
width: 100%;
|
343 |
-
height: 100%;
|
344 |
-
display: block;
|
345 |
-
background: rgba(0, 0, 0, 0.7);
|
346 |
-
position: absolute;
|
347 |
-
z-index: 1;
|
348 |
-
opacity: 0;
|
349 |
-
-webkit-transition: all 0.3s ease-out 0s;
|
350 |
-
-moz-transition: all 0.3s ease-out 0s;
|
351 |
-
-ms-transition: all 0.3s ease-out 0s;
|
352 |
-
-o-transition: all 0.3s ease-out 0s;
|
353 |
-
transition: all 0.3s ease-out 0s;
|
354 |
-
text-align: center;
|
355 |
-
}
|
356 |
-
|
357 |
-
.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .read-more a {
|
358 |
-
line-height: 1.8;
|
359 |
-
display: inline-block;
|
360 |
-
}
|
361 |
-
|
362 |
-
.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-img-holder,
|
363 |
-
.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-img-holder > a.rounded img {
|
364 |
-
border-radius: 50%;
|
365 |
-
overflow: hidden;
|
366 |
-
}
|
367 |
-
|
368 |
-
.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .read-more {
|
369 |
-
display: inline-block;
|
370 |
-
width: 100%;
|
371 |
-
}
|
372 |
-
|
373 |
-
.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .read-more.right {
|
374 |
-
text-align: left;
|
375 |
-
}
|
376 |
-
|
377 |
-
.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .read-more.center {
|
378 |
-
text-align: center;
|
379 |
-
}
|
380 |
-
|
381 |
-
.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .rt-tpg-social-share {
|
382 |
-
margin-bottom: 15px;
|
383 |
-
}
|
384 |
-
|
385 |
-
/**********************************************************************/
|
386 |
-
/********************************* Layout 5 *************************/
|
387 |
-
/**********************************************************************/
|
388 |
-
|
389 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder,
|
390 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder,
|
391 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder,
|
392 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder {
|
393 |
-
position: relative;
|
394 |
-
overflow: hidden;
|
395 |
-
}
|
396 |
-
|
397 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay,
|
398 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay,
|
399 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay,
|
400 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay {
|
401 |
-
right: 0;
|
402 |
-
bottom: 0;
|
403 |
-
display: block;
|
404 |
-
background: rgba(235, 0, 0, 0.8);
|
405 |
-
position: absolute;
|
406 |
-
z-index: 1;
|
407 |
-
opacity: 1;
|
408 |
-
padding: 20px;
|
409 |
-
width: 100%;
|
410 |
-
height: 25%;
|
411 |
-
transition: all 1s ease;
|
412 |
-
min-height: 150px;
|
413 |
-
}
|
414 |
-
|
415 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .rt-detail,
|
416 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .rt-detail,
|
417 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .rt-detail {
|
418 |
-
opacity: 0;
|
419 |
-
visibility: hidden;
|
420 |
-
padding: 0;
|
421 |
-
color: #fff;
|
422 |
-
transition: all 0.8s ease-in-out;
|
423 |
-
max-height: 0;
|
424 |
-
}
|
425 |
-
|
426 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder:hover .overlay .rt-detail,
|
427 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder:hover .overlay .rt-detail,
|
428 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder:hover .overlay .rt-detail {
|
429 |
-
max-height: 450px;
|
430 |
-
transition: all 1.2s ease-in-out 0.2s;
|
431 |
-
}
|
432 |
-
|
433 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .rt-detail {
|
434 |
-
padding: 0 0 15px;
|
435 |
-
color: #fff;
|
436 |
-
}
|
437 |
-
|
438 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .rt-detail > *:not(.post-meta-user) {
|
439 |
-
opacity: 0;
|
440 |
-
visibility: hidden;
|
441 |
-
}
|
442 |
-
|
443 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder:hover .overlay .rt-detail > *:not(.post-meta-user) {
|
444 |
-
opacity: 1;
|
445 |
-
visibility: visible;
|
446 |
-
}
|
447 |
-
|
448 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .post-meta-user,
|
449 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .post-meta-user a,
|
450 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .post-meta-user,
|
451 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .post-meta-user a,
|
452 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .post-meta-user,
|
453 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .post-meta-user a,
|
454 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .post-meta-user,
|
455 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .post-meta-user a {
|
456 |
-
color: #fff;
|
457 |
-
}
|
458 |
-
|
459 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h2,
|
460 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h3,
|
461 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h4,
|
462 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h2,
|
463 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h3,
|
464 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h4,
|
465 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h2,
|
466 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h3,
|
467 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h4,
|
468 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h2,
|
469 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h3,
|
470 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h4 {
|
471 |
-
font-size: 22px;
|
472 |
-
line-height: 1.3;
|
473 |
-
color: #ffffff;
|
474 |
-
margin: 0px 0 10px;
|
475 |
-
font-weight: 400;
|
476 |
-
}
|
477 |
-
|
478 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h2 a,
|
479 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h3 a,
|
480 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h4 a,
|
481 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h2 a,
|
482 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h3 a,
|
483 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h4 a,
|
484 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h2 a,
|
485 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h3 a,
|
486 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h4 a,
|
487 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h2 a,
|
488 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h3 a,
|
489 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h4 a {
|
490 |
-
color: #ffffff;
|
491 |
-
}
|
492 |
-
|
493 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder:hover .overlay,
|
494 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder:hover .overlay,
|
495 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder:hover .overlay,
|
496 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder:hover .overlay {
|
497 |
-
width: 100%;
|
498 |
-
height: 100%;
|
499 |
-
}
|
500 |
-
|
501 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder:hover .overlay .rt-detail,
|
502 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder:hover .overlay .rt-detail,
|
503 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder:hover .overlay .rt-detail,
|
504 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder:hover .overlay .rt-detail {
|
505 |
-
opacity: 1;
|
506 |
-
visibility: visible;
|
507 |
-
}
|
508 |
-
|
509 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .post-meta-user,
|
510 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .post-meta-user,
|
511 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .post-meta-user,
|
512 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .post-meta-user {
|
513 |
-
display: block;
|
514 |
-
}
|
515 |
-
|
516 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .post-meta .rt-tpg-social-share,
|
517 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .post-meta {
|
518 |
-
text-align: center;
|
519 |
-
}
|
520 |
-
|
521 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .post-meta.left {
|
522 |
-
text-align: right;
|
523 |
-
}
|
524 |
-
|
525 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay > *:not(.entry-title),
|
526 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .rt-detail,
|
527 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay > *:not(.entry-title) {
|
528 |
-
overflow: hidden;
|
529 |
-
max-height: 0;
|
530 |
-
transition: 0.6s !important;
|
531 |
-
opacity: 0;
|
532 |
-
}
|
533 |
-
|
534 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .overlay > *:not(.entry-title),
|
535 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder:hover .overlay .rt-detail,
|
536 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .overlay > *:not(.entry-title) {
|
537 |
-
max-height: 300px;
|
538 |
-
opacity: 1;
|
539 |
-
}
|
540 |
-
|
541 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder {
|
542 |
-
min-height: 250px;
|
543 |
-
display: flex;
|
544 |
-
}
|
545 |
-
|
546 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .rt-img-responsive {
|
547 |
-
height: 100%;
|
548 |
-
object-fit: cover;
|
549 |
-
}
|
550 |
-
|
551 |
-
/**********************************************************************/
|
552 |
-
/********************************* Layout 6 *************************/
|
553 |
-
/**********************************************************************/
|
554 |
-
|
555 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder,
|
556 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder,
|
557 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder {
|
558 |
-
position: relative;
|
559 |
-
}
|
560 |
-
|
561 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay,
|
562 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay,
|
563 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay {
|
564 |
-
width: 100%;
|
565 |
-
height: 100%;
|
566 |
-
display: flex;
|
567 |
-
background: rgba(0, 0, 0, 0.7);
|
568 |
-
position: absolute;
|
569 |
-
-webkit-transition: all 300ms ease-out;
|
570 |
-
-moz-transition: all 300ms ease-out;
|
571 |
-
-o-transition: all 300ms ease-out;
|
572 |
-
transition: all 300ms ease-out;
|
573 |
-
opacity: 0;
|
574 |
-
text-decoration: none;
|
575 |
-
text-align: center;
|
576 |
-
padding: 15px;
|
577 |
-
z-index: 9;
|
578 |
-
flex-direction: column;
|
579 |
-
justify-content: center;
|
580 |
-
align-items: center;
|
581 |
-
}
|
582 |
-
|
583 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .line,
|
584 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .line,
|
585 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .line {
|
586 |
-
height: 2px;
|
587 |
-
min-height: 2px;
|
588 |
-
width: 0%;
|
589 |
-
margin: 12px auto;
|
590 |
-
background-color: #ffffff;
|
591 |
-
-webkit-transition: all 500ms ease-out;
|
592 |
-
-moz-transition: all 500ms ease-out;
|
593 |
-
-o-transition: all 500ms ease-out;
|
594 |
-
transition: all 500ms ease-out;
|
595 |
-
}
|
596 |
-
|
597 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay:hover .line,
|
598 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay:hover .line,
|
599 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay:hover .line {
|
600 |
-
width: 40%;
|
601 |
-
}
|
602 |
-
|
603 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h2,
|
604 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h3,
|
605 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h4,
|
606 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h2,
|
607 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h3,
|
608 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h4,
|
609 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h2,
|
610 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h3,
|
611 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h4 {
|
612 |
-
padding-top: 5%;
|
613 |
-
color: #ffffff;
|
614 |
-
font-size: 22px;
|
615 |
-
line-height: 1.25;
|
616 |
-
font-weight: 400;
|
617 |
-
margin: 0px 0 18px 0;
|
618 |
-
}
|
619 |
-
|
620 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h2 a,
|
621 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h3 a,
|
622 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h4 a,
|
623 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h2 a,
|
624 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h3 a,
|
625 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h4 a,
|
626 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h2 a,
|
627 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h3 a,
|
628 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h4 a {
|
629 |
-
color: #ffffff;
|
630 |
-
}
|
631 |
-
|
632 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta.left,
|
633 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta.left,
|
634 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta.left {
|
635 |
-
text-align: right;
|
636 |
-
}
|
637 |
-
|
638 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta.right,
|
639 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta.right,
|
640 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta.right {
|
641 |
-
text-align: left;
|
642 |
-
}
|
643 |
-
|
644 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .rt-tpg-social-share,
|
645 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .rt-tpg-social-share,
|
646 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .rt-tpg-social-share {
|
647 |
-
float: none;
|
648 |
-
text-align: center;
|
649 |
-
}
|
650 |
-
|
651 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .read-more,
|
652 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .read-more,
|
653 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .read-more {
|
654 |
-
float: none;
|
655 |
-
}
|
656 |
-
|
657 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta-user,
|
658 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta-user,
|
659 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta-user {
|
660 |
-
color: #fff;
|
661 |
-
}
|
662 |
-
|
663 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta-user p,
|
664 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta-user p,
|
665 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta-user p {
|
666 |
-
margin-bottom: 0;
|
667 |
-
}
|
668 |
-
|
669 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta-user a,
|
670 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta-user a,
|
671 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta-user a {
|
672 |
-
color: #fff;
|
673 |
-
}
|
674 |
-
|
675 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder:hover .overlay .tpg-excerpt,
|
676 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder:hover .overlay .tpg-excerpt,
|
677 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder:hover .overlay .tpg-excerpt {
|
678 |
-
color: #ffffff;
|
679 |
-
}
|
680 |
-
|
681 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder:hover .overlay,
|
682 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder:hover .overlay,
|
683 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder:hover .overlay {
|
684 |
-
opacity: 1;
|
685 |
-
}
|
686 |
-
|
687 |
-
/**********************************************************************/
|
688 |
-
/********************************* Layout 7 *************************/
|
689 |
-
/**********************************************************************/
|
690 |
-
|
691 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder,
|
692 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder,
|
693 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder {
|
694 |
-
position: relative;
|
695 |
-
}
|
696 |
-
|
697 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder img,
|
698 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder img,
|
699 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder img {
|
700 |
-
opacity: 0.9;
|
701 |
-
-webkit-transition: opacity 0.35s;
|
702 |
-
transition: opacity 0.35s;
|
703 |
-
}
|
704 |
-
|
705 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay,
|
706 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay,
|
707 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay {
|
708 |
-
display: flex;
|
709 |
-
justify-content: center;
|
710 |
-
flex-direction: column;
|
711 |
-
align-items: center;
|
712 |
-
position: absolute;
|
713 |
-
top: 0;
|
714 |
-
right: 0;
|
715 |
-
width: 100%;
|
716 |
-
height: 100%;
|
717 |
-
padding: 0 12px;
|
718 |
-
background: rgba(0, 0, 0, 0.3);
|
719 |
-
}
|
720 |
-
|
721 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay:hover,
|
722 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay:hover,
|
723 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay:hover {
|
724 |
-
background: rgba(0, 0, 0, 0.5);
|
725 |
-
}
|
726 |
-
|
727 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay::before,
|
728 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay::before,
|
729 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay::before {
|
730 |
-
position: absolute;
|
731 |
-
top: 20px;
|
732 |
-
left: 20px;
|
733 |
-
bottom: 20px;
|
734 |
-
right: 20px;
|
735 |
-
border: 2px solid #fff;
|
736 |
-
box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.2);
|
737 |
-
content: '';
|
738 |
-
opacity: 0;
|
739 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
740 |
-
transition: opacity 0.35s, transform 0.35s;
|
741 |
-
-webkit-transform: scale3d(1.4, 1.4, 1);
|
742 |
-
transform: scale3d(1.4, 1.4, 1);
|
743 |
-
}
|
744 |
-
|
745 |
-
|
746 |
-
.tpg-shortcode-main-wrapper .carousel12 .rt-holder .post-info .cat-above-title,
|
747 |
-
.tpg-shortcode-main-wrapper .carousel11 .rt-holder .post-info .cat-above-title,
|
748 |
-
.tpg-shortcode-main-wrapper .carousel7 .rt-holder .cat-above-title {
|
749 |
-
color: #ffffff;
|
750 |
-
text-align: center;
|
751 |
-
}
|
752 |
-
|
753 |
-
.tpg-shortcode-main-wrapper .carousel5 .rt-holder .cat-above-title,
|
754 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .cat-above-title {
|
755 |
-
text-align: center;
|
756 |
-
opacity: 0;
|
757 |
-
margin-top: 30px;
|
758 |
-
color: #ffffff;
|
759 |
-
}
|
760 |
-
|
761 |
-
.tpg-shortcode-main-wrapper .carousel12 .rt-holder .post-info .cat-above-title *,
|
762 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .cat-above-title *,
|
763 |
-
.tpg-shortcode-main-wrapper .carousel7 .rt-holder .cat-above-title a,
|
764 |
-
.tpg-shortcode-main-wrapper .carousel5 .rt-holder .cat-above-title a,
|
765 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .cat-above-title a {
|
766 |
-
color: inherit;
|
767 |
-
}
|
768 |
-
|
769 |
-
.tpg-shortcode-main-wrapper .carousel5 .rt-holder:hover .cat-above-title,
|
770 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .cat-above-title {
|
771 |
-
opacity: 1;
|
772 |
-
}
|
773 |
-
|
774 |
-
.tpg-shortcode-main-wrapper .carousel12 .rt-holder .post-info .cat-above-title,
|
775 |
-
.tpg-shortcode-main-wrapper .carousel11 .rt-holder .post-info .cat-above-title,
|
776 |
-
.tpg-shortcode-main-wrapper .carousel5 .rt-holder:hover .cat-above-title + .entry-title {
|
777 |
-
padding-top: 10px;
|
778 |
-
}
|
779 |
-
|
780 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .cat-above-title + .entry-title {
|
781 |
-
margin-top: 10px;
|
782 |
-
}
|
783 |
-
|
784 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder h2,
|
785 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder h3,
|
786 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder h4,
|
787 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder h2,
|
788 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder h3,
|
789 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder h4,
|
790 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder h2,
|
791 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder h3,
|
792 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder h4 {
|
793 |
-
color: #ffffff;
|
794 |
-
font-size: 22px;
|
795 |
-
font-weight: 400;
|
796 |
-
line-height: 1.25;
|
797 |
-
margin: 30% 0 10px 0;
|
798 |
-
text-align: center;
|
799 |
-
-webkit-transition: -webkit-transform 0.35s;
|
800 |
-
transition: transform 0.35s;
|
801 |
-
}
|
802 |
-
|
803 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder h2 a,
|
804 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder h3 a,
|
805 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder h4 a,
|
806 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder h2 a,
|
807 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder h3 a,
|
808 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder h4 a,
|
809 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder h2 a,
|
810 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder h3 a,
|
811 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder h4 a {
|
812 |
-
color: #ffffff;
|
813 |
-
}
|
814 |
-
|
815 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder p,
|
816 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder p,
|
817 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder p,
|
818 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .tpg-excerpt,
|
819 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder .tpg-excerpt,
|
820 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .tpg-excerpt {
|
821 |
-
color: #ffffff;
|
822 |
-
padding: 0 15px;
|
823 |
-
opacity: 0;
|
824 |
-
text-align: center;
|
825 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
826 |
-
transition: opacity 0.35s, transform 0.35s;
|
827 |
-
-webkit-transform: scale(1.5);
|
828 |
-
transform: scale(1.5);
|
829 |
-
}
|
830 |
-
|
831 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .post-meta-user p,
|
832 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder .post-meta-user p,
|
833 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .post-meta-user p {
|
834 |
-
margin-bottom: 0;
|
835 |
-
}
|
836 |
-
|
837 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .post-meta-user a,
|
838 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder .post-meta-user a,
|
839 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .post-meta-user a {
|
840 |
-
color: #ffffff;
|
841 |
-
}
|
842 |
-
|
843 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover h3,
|
844 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover h3,
|
845 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover h3 {
|
846 |
-
margin: 7% 0 10px 0;
|
847 |
-
-webkit-transform: scale(0.9);
|
848 |
-
transform: scale(0.9);
|
849 |
-
}
|
850 |
-
|
851 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .overlay::before,
|
852 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover .overlay::before,
|
853 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .overlay::before,
|
854 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .tpg-excerpt,
|
855 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover .tpg-excerpt,
|
856 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .tpg-excerpt,
|
857 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover p,
|
858 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover p,
|
859 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover p {
|
860 |
-
opacity: 1;
|
861 |
-
-webkit-transform: scale3d(1, 1, 1);
|
862 |
-
transform: scale3d(1, 1, 1);
|
863 |
-
}
|
864 |
-
|
865 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .cat-above-title,
|
866 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .post-meta,
|
867 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay .post-meta,
|
868 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay .post-meta {
|
869 |
-
color: #ffffff;
|
870 |
-
text-align: center;
|
871 |
-
overflow: hidden;
|
872 |
-
opacity: 0;
|
873 |
-
}
|
874 |
-
|
875 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .post-meta.left,
|
876 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay .post-meta.left,
|
877 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay .post-meta.left {
|
878 |
-
text-align: right;
|
879 |
-
}
|
880 |
-
|
881 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .post-meta.right,
|
882 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay .post-meta.right,
|
883 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay .post-meta.right {
|
884 |
-
text-align: left;
|
885 |
-
}
|
886 |
-
|
887 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .cat-above-title,
|
888 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .overlay .post-meta,
|
889 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover .overlay .post-meta,
|
890 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .overlay .post-meta {
|
891 |
-
opacity: 1;
|
892 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
893 |
-
transition: opacity 0.35s, transform 0.35s;
|
894 |
-
-webkit-transform: scale(1);
|
895 |
-
transform: scale(1);
|
896 |
-
}
|
897 |
-
|
898 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .rt-tpg-social-share,
|
899 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay .rt-tpg-social-share,
|
900 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay .rt-tpg-social-share {
|
901 |
-
float: none;
|
902 |
-
text-align: center;
|
903 |
-
}
|
904 |
-
|
905 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .read-more,
|
906 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder .read-more,
|
907 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .read-more {
|
908 |
-
float: none;
|
909 |
-
}
|
910 |
-
|
911 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .entry-title,
|
912 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder h3 {
|
913 |
-
margin: 0 !important;
|
914 |
-
transition: 0.4s;
|
915 |
-
}
|
916 |
-
|
917 |
-
/**********************************************************************/
|
918 |
-
/********************************* Layout 12 *************************/
|
919 |
-
/**********************************************************************/
|
920 |
-
|
921 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder,
|
922 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder,
|
923 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder {
|
924 |
-
background: #fff;
|
925 |
-
-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.22);
|
926 |
-
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.22);
|
927 |
-
}
|
928 |
-
|
929 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-img-holder,
|
930 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-img-holder,
|
931 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-img-holder {
|
932 |
-
position: relative;
|
933 |
-
overflow: hidden;
|
934 |
-
}
|
935 |
-
|
936 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover img,
|
937 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover img,
|
938 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover img {
|
939 |
-
-webkit-transition: all 0.25s ease-in-out;
|
940 |
-
transform: scale(1.05, 1.05);
|
941 |
-
-webkit-transform: scale(1.05, 1.05);
|
942 |
-
-moz-transform: scale(1.05, 1.05);
|
943 |
-
-ms-transform: scale(1.05, 1.05);
|
944 |
-
-o-transform: scale(1.05, 1.05);
|
945 |
-
}
|
946 |
-
|
947 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail,
|
948 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail,
|
949 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail {
|
950 |
-
background: #fff;
|
951 |
-
padding: 25px;
|
952 |
-
-webkit-transition: all 0.3s ease-out 0s;
|
953 |
-
-moz-transition: all 0.3s ease-out 0s;
|
954 |
-
-ms-transition: all 0.3s ease-out 0s;
|
955 |
-
-o-transition: all 0.3s ease-out 0s;
|
956 |
-
transition: all 0.3s ease-out 0s;
|
957 |
-
display: inline-block;
|
958 |
-
width: 100%;
|
959 |
-
}
|
960 |
-
|
961 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail.rt-with-title,
|
962 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail.rt-with-title,
|
963 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail.rt-with-title {
|
964 |
-
padding-top: 0;
|
965 |
-
padding-bottom: 0;
|
966 |
-
}
|
967 |
-
|
968 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder.rt-with-title-below h2.entry-title,
|
969 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder.rt-with-title-below h3.entry-title,
|
970 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder.rt-with-title-below h4.entry-title,
|
971 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder.rt-with-title-below h2.entry-title,
|
972 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder.rt-with-title-below h3.entry-title,
|
973 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder.rt-with-title-below h4.entry-title,
|
974 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder.rt-with-title-below h2.entry-title,
|
975 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder.rt-with-title-below h3.entry-title,
|
976 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder.rt-with-title-below h4.entry-title {
|
977 |
-
margin-top: 0;
|
978 |
-
}
|
979 |
-
|
980 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail.rt-with-title .entry-title,
|
981 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail.rt-with-title .entry-title,
|
982 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail.rt-with-title .entry-title {
|
983 |
-
display: inline-block;
|
984 |
-
}
|
985 |
-
|
986 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder.rt-with-title .post-meta-user,
|
987 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder.rt-with-title .post-meta-user,
|
988 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder.rt-with-title .post-meta-user {
|
989 |
-
margin-bottom: 15px;
|
990 |
-
}
|
991 |
-
|
992 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h2,
|
993 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h3,
|
994 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h4,
|
995 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h2,
|
996 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h3,
|
997 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h4,
|
998 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h2,
|
999 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h3,
|
1000 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h4 {
|
1001 |
-
font-size: 22px;
|
1002 |
-
line-height: 1.25;
|
1003 |
-
margin: 15px 0px 15px;
|
1004 |
-
font-weight: 400;
|
1005 |
-
}
|
1006 |
-
|
1007 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h2 a,
|
1008 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h3 a,
|
1009 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h4 a,
|
1010 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h2 a,
|
1011 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h3 a,
|
1012 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h4 a,
|
1013 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h2 a,
|
1014 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h3 a,
|
1015 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h4 a {
|
1016 |
-
color: #000;
|
1017 |
-
}
|
1018 |
-
|
1019 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h2 a:hover,
|
1020 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h3 a:hover,
|
1021 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h4 a:hover,
|
1022 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h2 a:hover,
|
1023 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h3 a:hover,
|
1024 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h4 a:hover,
|
1025 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h2 a:hover,
|
1026 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h3 a:hover,
|
1027 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h4 a:hover {
|
1028 |
-
color: #fff;
|
1029 |
-
}
|
1030 |
-
|
1031 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail {
|
1032 |
-
flex-grow: 1;
|
1033 |
-
}
|
1034 |
-
|
1035 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover .rt-detail,
|
1036 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail,
|
1037 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail {
|
1038 |
-
background: #0850d0;
|
1039 |
-
color: #fff;
|
1040 |
-
}
|
1041 |
-
|
1042 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover .rt-detail a,
|
1043 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail a,
|
1044 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail a {
|
1045 |
-
color: #fff;
|
1046 |
-
}
|
1047 |
-
|
1048 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail .read-more,
|
1049 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail .read-more,
|
1050 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail .read-more {
|
1051 |
-
text-align: left;
|
1052 |
-
}
|
1053 |
-
|
1054 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail .post-meta-user,
|
1055 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail .post-meta-user .meta-data,
|
1056 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail .post-meta-user a,
|
1057 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail .post-meta-user i[class^='fa'],
|
1058 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail h3 a,
|
1059 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail .post-meta-user,
|
1060 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail .post-meta-user .meta-data,
|
1061 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail .post-meta-user i[class^='fa'],
|
1062 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail .post-meta-user a,
|
1063 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover .rt-detail .post-meta-user,
|
1064 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover .rt-detail i,
|
1065 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover .rt-detail .post-meta-user a {
|
1066 |
-
color: #fff !important;
|
1067 |
-
}
|
1068 |
-
|
1069 |
-
|
1070 |
-
/**********************************************************************/
|
1071 |
-
/********************************* Media Query *************************/
|
1072 |
-
/**********************************************************************/
|
1073 |
-
|
1074 |
-
@media (min-width: 992px) {
|
1075 |
-
.rt-container {
|
1076 |
-
width: 970px;
|
1077 |
-
}
|
1078 |
-
}
|
1079 |
-
|
1080 |
-
@media (min-width: 1200px) {
|
1081 |
-
.rt-container {
|
1082 |
-
width: 1170px;
|
1083 |
-
}
|
1084 |
-
}
|
1085 |
-
|
1086 |
-
@media (max-width: 767px) {
|
1087 |
-
.hidden-xs {
|
1088 |
-
display: none !important;
|
1089 |
-
}
|
1090 |
-
}
|
1091 |
-
|
1092 |
-
@media screen and (max-width: 768px) {
|
1093 |
-
.rt-member-feature-img, .rt-member-description-container {
|
1094 |
-
float: none;
|
1095 |
-
width: 100%;
|
1096 |
-
}
|
1097 |
-
}
|
1098 |
-
|
1099 |
-
@media (min-width: 768px) {
|
1100 |
-
.rt-col-sm-1, .rt-col-sm-2, .rt-col-sm-3, .rt-col-sm-4, .rt-col-sm-5, .rt-col-sm-6, .rt-col-sm-7, .rt-col-sm-8, .rt-col-sm-9, .rt-col-sm-10, .rt-col-sm-11, .rt-col-sm-12, .rt-col-sm-24 {
|
1101 |
-
float: right;
|
1102 |
-
}
|
1103 |
-
|
1104 |
-
.rt-col-sm-24 {
|
1105 |
-
width: 20%;
|
1106 |
-
}
|
1107 |
-
|
1108 |
-
.rt-col-sm-12 {
|
1109 |
-
width: 100%;
|
1110 |
-
}
|
1111 |
-
|
1112 |
-
.rt-col-sm-11 {
|
1113 |
-
width: 91.66666667%;
|
1114 |
-
}
|
1115 |
-
|
1116 |
-
.rt-col-sm-10 {
|
1117 |
-
width: 83.33333333%;
|
1118 |
-
}
|
1119 |
-
|
1120 |
-
.rt-col-sm-9 {
|
1121 |
-
width: 75%;
|
1122 |
-
}
|
1123 |
-
|
1124 |
-
.rt-col-sm-8 {
|
1125 |
-
width: 66.66666667%;
|
1126 |
-
}
|
1127 |
-
|
1128 |
-
.rt-col-sm-7 {
|
1129 |
-
width: 58.33333333%;
|
1130 |
-
}
|
1131 |
-
|
1132 |
-
.rt-col-sm-6 {
|
1133 |
-
width: 50%;
|
1134 |
-
}
|
1135 |
-
|
1136 |
-
.rt-col-sm-5 {
|
1137 |
-
width: 41.66666667%;
|
1138 |
-
}
|
1139 |
-
|
1140 |
-
.rt-col-sm-4 {
|
1141 |
-
width: 33.33333333%;
|
1142 |
-
}
|
1143 |
-
|
1144 |
-
.rt-col-sm-3 {
|
1145 |
-
width: 25%;
|
1146 |
-
}
|
1147 |
-
|
1148 |
-
.rt-col-sm-2 {
|
1149 |
-
width: 16.66666667%;
|
1150 |
-
}
|
1151 |
-
|
1152 |
-
.rt-col-sm-1 {
|
1153 |
-
width: 8.33333333%;
|
1154 |
-
}
|
1155 |
-
|
1156 |
-
}
|
1157 |
-
|
1158 |
-
@media (min-width: 992px) {
|
1159 |
-
.rt-col-md-1, .rt-col-md-2, .rt-col-md-3, .rt-col-md-4, .rt-col-md-5, .rt-col-md-6, .rt-col-md-7, .rt-col-md-8, .rt-col-md-9, .rt-col-md-10, .rt-col-md-11, .rt-col-md-12, .rt-col-md-24 {
|
1160 |
-
float: right;
|
1161 |
-
}
|
1162 |
-
|
1163 |
-
.rt-col-md-24 {
|
1164 |
-
width: 20%;
|
1165 |
-
}
|
1166 |
-
|
1167 |
-
.rt-col-md-12 {
|
1168 |
-
width: 100%;
|
1169 |
-
}
|
1170 |
-
|
1171 |
-
.rt-col-md-11 {
|
1172 |
-
width: 91.66666667%;
|
1173 |
-
}
|
1174 |
-
|
1175 |
-
.rt-col-md-10 {
|
1176 |
-
width: 83.33333333%;
|
1177 |
-
}
|
1178 |
-
|
1179 |
-
.rt-col-md-9 {
|
1180 |
-
width: 75%;
|
1181 |
-
}
|
1182 |
-
|
1183 |
-
.rt-col-md-8 {
|
1184 |
-
width: 66.66666667%;
|
1185 |
-
}
|
1186 |
-
|
1187 |
-
.rt-col-md-7 {
|
1188 |
-
width: 58.33333333%;
|
1189 |
-
}
|
1190 |
-
|
1191 |
-
.rt-col-md-6 {
|
1192 |
-
width: 50%;
|
1193 |
-
}
|
1194 |
-
|
1195 |
-
.rt-col-md-5 {
|
1196 |
-
width: 41.66666667%;
|
1197 |
-
}
|
1198 |
-
|
1199 |
-
.rt-col-md-4 {
|
1200 |
-
width: 33.33333333%;
|
1201 |
-
}
|
1202 |
-
|
1203 |
-
.rt-col-md-3 {
|
1204 |
-
width: 25%;
|
1205 |
-
}
|
1206 |
-
|
1207 |
-
.rt-col-md-2 {
|
1208 |
-
width: 16.66666667%;
|
1209 |
-
}
|
1210 |
-
|
1211 |
-
.rt-col-md-1 {
|
1212 |
-
width: 8.33333333%;
|
1213 |
-
}
|
1214 |
-
|
1215 |
-
}
|
1216 |
-
|
1217 |
-
@media (min-width: 1200px) {
|
1218 |
-
.rt-col-lg-1, .rt-col-lg-2, .rt-col-lg-3, .rt-col-lg-4, .rt-col-lg-5, .rt-col-lg-6, .rt-col-lg-7, .rt-col-lg-8, .rt-col-lg-9, .rt-col-lg-10, .rt-col-lg-11, .rt-col-lg-12 {
|
1219 |
-
float: right;
|
1220 |
-
}
|
1221 |
-
|
1222 |
-
.rt-col-lg-24 {
|
1223 |
-
width: 20%;
|
1224 |
-
}
|
1225 |
-
|
1226 |
-
.rt-col-lg-12 {
|
1227 |
-
width: 100%;
|
1228 |
-
}
|
1229 |
-
|
1230 |
-
.rt-col-lg-11 {
|
1231 |
-
width: 91.66666667%;
|
1232 |
-
}
|
1233 |
-
|
1234 |
-
.rt-col-lg-10 {
|
1235 |
-
width: 83.33333333%;
|
1236 |
-
}
|
1237 |
-
|
1238 |
-
.rt-col-lg-9 {
|
1239 |
-
width: 75%;
|
1240 |
-
}
|
1241 |
-
|
1242 |
-
.rt-col-lg-8 {
|
1243 |
-
width: 66.66666667%;
|
1244 |
-
}
|
1245 |
-
|
1246 |
-
.rt-col-lg-7 {
|
1247 |
-
width: 58.33333333%;
|
1248 |
-
}
|
1249 |
-
|
1250 |
-
.rt-col-lg-6 {
|
1251 |
-
width: 50%;
|
1252 |
-
}
|
1253 |
-
|
1254 |
-
.rt-col-lg-5 {
|
1255 |
-
width: 41.66666667%;
|
1256 |
-
}
|
1257 |
-
|
1258 |
-
.rt-col-lg-4 {
|
1259 |
-
width: 33.33333333%;
|
1260 |
-
}
|
1261 |
-
|
1262 |
-
.rt-col-lg-3 {
|
1263 |
-
width: 25%;
|
1264 |
-
}
|
1265 |
-
|
1266 |
-
.rt-col-lg-2 {
|
1267 |
-
width: 16.66666667%;
|
1268 |
-
}
|
1269 |
-
|
1270 |
-
.rt-col-lg-1 {
|
1271 |
-
width: 8.33333333%;
|
1272 |
-
}
|
1273 |
-
|
1274 |
-
}
|
1275 |
-
|
1276 |
-
/**********************************************************************/
|
1277 |
-
/**************************** End Media Query *************************/
|
1278 |
-
/**********************************************************************/
|
1279 |
-
|
1280 |
-
/*--------- Settings Style -----------*/
|
1281 |
-
|
1282 |
-
|
1283 |
-
/*Image ZoomIn Effect*/
|
1284 |
-
.rt-img-holder {
|
1285 |
-
overflow: hidden;
|
1286 |
-
}
|
1287 |
-
|
1288 |
-
.layout4 .rt-img-holder,
|
1289 |
-
.layout4 .rt-img-holder a,
|
1290 |
-
.layout4 .rt-img-holder img {
|
1291 |
-
height: 100%;
|
1292 |
-
}
|
1293 |
-
|
1294 |
-
.img_zoom_out img.rt-img-responsive,
|
1295 |
-
.img_zoom_in img.rt-img-responsive {
|
1296 |
-
transition: all 1s !important;
|
1297 |
-
min-width: 100%;
|
1298 |
-
}
|
1299 |
-
|
1300 |
-
.img_zoom_in:hover img.rt-img-responsive {
|
1301 |
-
transform: scale(1.2) !important;
|
1302 |
-
}
|
1303 |
-
|
1304 |
-
.img_zoom_out img.rt-img-responsive {
|
1305 |
-
transform: scale(1.2) !important;
|
1306 |
-
}
|
1307 |
-
|
1308 |
-
.img_zoom_out:hover img.rt-img-responsive {
|
1309 |
-
transform: scale(1) !important;
|
1310 |
-
}
|
1311 |
-
|
1312 |
-
.tpg-shortcode-main-wrapper .img_no_effect:hover img.rt-img-responsive {
|
1313 |
-
transform: none;
|
1314 |
-
}
|
1315 |
-
|
1316 |
-
/*TPG EVEN Style */
|
1317 |
-
|
1318 |
-
.tpg-even .rt-holder {
|
1319 |
-
display: flex;
|
1320 |
-
height: 100%;
|
1321 |
-
}
|
1322 |
-
|
1323 |
-
.tpg-even.layout12 .rt-holder,
|
1324 |
-
.tpg-even.edd1 .rt-holder,
|
1325 |
-
.tpg-even.layout1 .rt-holder,
|
1326 |
-
.tpg-even.offset02 .offset-big .rt-holder,
|
1327 |
-
.tpg-even.offset01 .offset-big .rt-holder {
|
1328 |
-
flex-direction: column;
|
1329 |
-
}
|
1330 |
-
|
1331 |
-
.tpg-even.layout1 .rt-holder .rt-img-holder,
|
1332 |
-
.tpg-even.edd1 .rt-holder .rt-img-holder,
|
1333 |
-
.tpg-even.layout11 .rt-holder .rt-img-holder,
|
1334 |
-
.tpg-even.layout11 .rt-holder .rt-img-holder * {
|
1335 |
-
height: auto;
|
1336 |
-
}
|
1337 |
-
|
1338 |
-
|
1339 |
-
@media (min-width: 768px) and (max-width: 991px) {
|
1340 |
-
.tpg-even.layout4 .even-grid-item:nth-of-type(4n+2) .rt-holder [class*='rt-col']:first-child {
|
1341 |
-
order: 2;
|
1342 |
-
}
|
1343 |
-
|
1344 |
-
.tpg-even.layout4 .even-grid-item:nth-of-type(4n+3) .rt-holder [class*='rt-col']:first-child {
|
1345 |
-
order: 2;
|
1346 |
-
}
|
1347 |
-
}
|
1348 |
-
|
1349 |
-
@media (max-width: 767px) {
|
1350 |
-
.tpg-even.layout4 .even-grid-item .rt-holder .layoutInner-img {
|
1351 |
-
order: -1 !important;
|
1352 |
-
}
|
1353 |
-
}
|
1354 |
-
|
1355 |
-
.tpg-shortcode-main-wrapper .rt-holder .overlay,
|
1356 |
-
.tpg-shortcode-main-wrapper .rt-holder .overlay > a[data-id],
|
1357 |
-
.tpg-shortcode-main-wrapper .rt-holder > a[data-id] {
|
1358 |
-
width: 100%;
|
1359 |
-
}
|
1360 |
-
|
1361 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay,
|
1362 |
-
.tpg-shortcode-main-wrapper .carousel12 .rt-holder .post-info,
|
1363 |
-
.tpg-shortcode-main-wrapper .carousel11 .rt-holder .post-info,
|
1364 |
-
.tpg-shortcode-main-wrapper .carousel7 .rt-holder .overlay .post-info,
|
1365 |
-
.tpg-shortcode-main-wrapper .carousel5 .rt-holder .overlay,
|
1366 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay,
|
1367 |
-
.tpg-shortcode-main-wrapper .isotope12 .rt-holder .post-info,
|
1368 |
-
.tpg-shortcode-main-wrapper .isotope9 .rt-holder .overlay .post-info,
|
1369 |
-
.tpg-shortcode-main-wrapper .isotope7 .rt-holder .post-info,
|
1370 |
-
.tpg-shortcode-main-wrapper .isotope5 .rt-holder .overlay,
|
1371 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder:hover .overlay,
|
1372 |
-
.tpg-shortcode-main-wrapper .layout16 .rt-holder .overlay .post-info,
|
1373 |
-
.tpg-shortcode-main-wrapper .layout15 .rt-holder .overlay .post-info,
|
1374 |
-
.tpg-shortcode-main-wrapper .isotope11 .rt-holder .overlay .post-info,
|
1375 |
-
.tpg-shortcode-main-wrapper .carousel11 .rt-holder .overlay .post-info
|
1376 |
-
.tpg-shortcode-main-wrapper .layout13 .rt-holder .overlay .post-info,
|
1377 |
-
.tpg-shortcode-main-wrapper .layout10 .rt-holder .overlay .post-info,
|
1378 |
-
.tpg-shortcode-main-wrapper .layout8 .rt-holder .overlay {
|
1379 |
-
display: flex;
|
1380 |
-
flex-direction: column;
|
1381 |
-
justify-content: center;
|
1382 |
-
}
|
1383 |
-
|
1384 |
-
.tpg-shortcode-main-wrapper .carousel9 .rt-holder .overlay .post-info .read-more a,
|
1385 |
-
.tpg-shortcode-main-wrapper .isotope5 .rt-holder .overlay .post-meta .read-more a,
|
1386 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder .post-meta .read-more a,
|
1387 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .post-meta .read-more a,
|
1388 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .read-more a,
|
1389 |
-
.tpg-shortcode-main-wrapper .carousel12 .rt-holder .post-info .read-more a,
|
1390 |
-
.tpg-shortcode-main-wrapper .carousel11 .rt-holder .post-info .read-more a,
|
1391 |
-
.tpg-shortcode-main-wrapper .carousel7 .rt-holder .overlay .post-info .read-more a,
|
1392 |
-
.tpg-shortcode-main-wrapper .carousel5 .rt-holder .overlay .post-info .read-more a,
|
1393 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .read-more a,
|
1394 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .read-more a,
|
1395 |
-
.tpg-shortcode-main-wrapper .isotope12 .rt-holder .post-info .read-more a,
|
1396 |
-
.tpg-shortcode-main-wrapper .isotope11 .rt-holder .overlay .post-info .read-more a,
|
1397 |
-
.tpg-shortcode-main-wrapper .isotope9 .rt-holder .overlay .post-info .read-more a,
|
1398 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder .post-meta .read-more a,
|
1399 |
-
.tpg-shortcode-main-wrapper .layout16 .rt-holder .read-more a,
|
1400 |
-
.tpg-shortcode-main-wrapper .layout15 .rt-holder .read-more a,
|
1401 |
-
.tpg-shortcode-main-wrapper .layout13 .rt-holder .read-more a,
|
1402 |
-
.tpg-shortcode-main-wrapper .layout10 .rt-holder .read-more a,
|
1403 |
-
.tpg-shortcode-main-wrapper .layout8 .rt-holder .read-more a,
|
1404 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .read-more a,
|
1405 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .read-more a,
|
1406 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .read-more a,
|
1407 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .read-more a {
|
1408 |
-
border: 1px solid rgba(255, 255, 255, .4);
|
1409 |
-
padding: 8px 15px;
|
1410 |
-
}
|
1411 |
-
|
1412 |
-
.tpg-shortcode-main-wrapper .isotope12 .rt-holder .post-info .post-meta .rt-tpg-social-share,
|
1413 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta,
|
1414 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta,
|
1415 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta {
|
1416 |
-
color: #ffffff;
|
1417 |
-
text-align: center;
|
1418 |
-
overflow: hidden;
|
1419 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/css/thepostgrid.css
DELETED
@@ -1,1419 +0,0 @@
|
|
1 |
-
/**********************************************************************/
|
2 |
-
/************************* The Post Grid **************************/
|
3 |
-
/********************** support@radiustheme.com ***********************/
|
4 |
-
/************ Copyright @ 2015-2017, RadiusTheme.com ******************/
|
5 |
-
/**********************************************************************/
|
6 |
-
|
7 |
-
|
8 |
-
/************************ Common ***************************/
|
9 |
-
|
10 |
-
.tpg-shortcode-main-wrapper .masonry-grid-item,
|
11 |
-
.tpg-shortcode-main-wrapper .even-grid-item {
|
12 |
-
margin-bottom: 30px;
|
13 |
-
}
|
14 |
-
|
15 |
-
.tpg-shortcode-main-wrapper i {
|
16 |
-
margin-right: 5px;
|
17 |
-
}
|
18 |
-
|
19 |
-
.tpg-shortcode-main-wrapper .list_layout1 .masonry-grid-item,
|
20 |
-
.tpg-shortcode-main-wrapper .list_layout1 .even-grid-item,
|
21 |
-
.tpg-shortcode-main-wrapper .grid_hover5 .masonry-grid-item,
|
22 |
-
.tpg-shortcode-main-wrapper .grid_hover5 .even-grid-item,
|
23 |
-
.tpg-shortcode-main-wrapper .grid_hover4 .masonry-grid-item,
|
24 |
-
.tpg-shortcode-main-wrapper .grid_hover4 .even-grid-item,
|
25 |
-
.tpg-shortcode-main-wrapper .grid_hover3 .masonry-grid-item,
|
26 |
-
.tpg-shortcode-main-wrapper .grid_hover3 .even-grid-item,
|
27 |
-
.tpg-shortcode-main-wrapper .grid_hover2 .masonry-grid-item,
|
28 |
-
.tpg-shortcode-main-wrapper .grid_hover2 .even-grid-item,
|
29 |
-
.tpg-shortcode-main-wrapper .grid_hover1 .masonry-grid-item,
|
30 |
-
.tpg-shortcode-main-wrapper .grid_hover1 .even-grid-item {
|
31 |
-
margin-bottom: initial;
|
32 |
-
}
|
33 |
-
|
34 |
-
.layout3 .rt-img-responsive {
|
35 |
-
display: inline-block;
|
36 |
-
}
|
37 |
-
|
38 |
-
.list_layout2 .post-meta-user,
|
39 |
-
.list_layout2 .post-meta-tags {
|
40 |
-
font-size: 14px;
|
41 |
-
color: #A5A6AA;
|
42 |
-
}
|
43 |
-
|
44 |
-
.rt-content-loader.layout14 .post-meta-user,
|
45 |
-
.rt-content-loader.layout14 .post-meta-tags {
|
46 |
-
margin-bottom: 0;
|
47 |
-
}
|
48 |
-
|
49 |
-
.offset06 .post-meta-user span,
|
50 |
-
.offset06 .post-meta-tags span {
|
51 |
-
font-weight: 500;
|
52 |
-
padding-right: 15px;
|
53 |
-
font-size: 14px;
|
54 |
-
color: #A5A6AA;
|
55 |
-
}
|
56 |
-
|
57 |
-
.offset06 .post-meta-user span a,
|
58 |
-
.offset06 .post-meta-tags span a {
|
59 |
-
color: #444444;
|
60 |
-
}
|
61 |
-
|
62 |
-
.offset06 .post-meta-user span a:hover,
|
63 |
-
.offset06 .post-meta-tags span a:hover {
|
64 |
-
color: #2962ff;
|
65 |
-
}
|
66 |
-
|
67 |
-
.tpg-shortcode-main-wrapper .rt-detail .entry-title a {
|
68 |
-
text-decoration: none;
|
69 |
-
}
|
70 |
-
|
71 |
-
.categories-links {
|
72 |
-
display: inline-block;
|
73 |
-
line-height: 1.3;
|
74 |
-
}
|
75 |
-
|
76 |
-
.tpg-shortcode-main-wrapper .rt-holder {
|
77 |
-
overflow: hidden;
|
78 |
-
}
|
79 |
-
|
80 |
-
.tpg-shortcode-main-wrapper .grid_hover6 .rt-grid-item {
|
81 |
-
padding: 0 2px;
|
82 |
-
margin-bottom: 4px;
|
83 |
-
}
|
84 |
-
|
85 |
-
.tpg-shortcode-main-wrapper .grid_hover7 .rt-grid-item .post-img img,
|
86 |
-
.tpg-shortcode-main-wrapper .grid_hover6 .rt-grid-item .post-img img {
|
87 |
-
min-height: 350px;
|
88 |
-
object-fit: cover;
|
89 |
-
}
|
90 |
-
|
91 |
-
.grid_hover4 .rt-grid-item {
|
92 |
-
padding: 0;
|
93 |
-
}
|
94 |
-
|
95 |
-
/*********************************************************************
|
96 |
-
/********************************* Layout 1 *************************/
|
97 |
-
/**********************************************************************/
|
98 |
-
|
99 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-img-holder,
|
100 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-img-holder,
|
101 |
-
.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-img-holder {
|
102 |
-
position: relative;
|
103 |
-
overflow: hidden;
|
104 |
-
}
|
105 |
-
|
106 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-img-holder img,
|
107 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-img-holder img,
|
108 |
-
.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-img-holder img {
|
109 |
-
-webkit-transition: all 1.1s ease;
|
110 |
-
-moz-transition: all 1.1s ease;
|
111 |
-
-o-transition: all 1.1s ease;
|
112 |
-
-ms-transition: all 1.1s ease;
|
113 |
-
transition: all 1.1s ease;
|
114 |
-
max-width: 100%;
|
115 |
-
}
|
116 |
-
|
117 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-img-holder:hover img,
|
118 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-img-holder:hover img,
|
119 |
-
.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-img-holder:hover img {
|
120 |
-
-webkit-transform: scale(1.1);
|
121 |
-
-moz-transform: scale(1.1);
|
122 |
-
-ms-transform: scale(1.1);
|
123 |
-
-o-transform: scale(1.1);
|
124 |
-
transform: scale(1.1);
|
125 |
-
}
|
126 |
-
|
127 |
-
.tpg-shortcode-main-wrapper .layout1 .img_zoom_out .rt-holder .rt-img-holder img {
|
128 |
-
-webkit-transform: scale(1.1);
|
129 |
-
-moz-transform: scale(1.1);
|
130 |
-
-ms-transform: scale(1.1);
|
131 |
-
-o-transform: scale(1.1);
|
132 |
-
transform: scale(1.1);
|
133 |
-
}
|
134 |
-
|
135 |
-
.tpg-shortcode-main-wrapper .layout1 .img_no_effect .rt-holder .rt-img-holder:hover img,
|
136 |
-
.tpg-shortcode-main-wrapper .layout1 .img_zoom_out .rt-holder .rt-img-holder:hover img {
|
137 |
-
-webkit-transform: scale(1);
|
138 |
-
-moz-transform: scale(1);
|
139 |
-
-ms-transform: scale(1);
|
140 |
-
-o-transform: scale(1);
|
141 |
-
transform: scale(1);
|
142 |
-
}
|
143 |
-
|
144 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-holder,
|
145 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-holder,
|
146 |
-
.tpg-shortcode-main-wrapper .carousel1 .rt-holder {
|
147 |
-
box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.3);
|
148 |
-
-webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.3);
|
149 |
-
-moz-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.3);
|
150 |
-
}
|
151 |
-
|
152 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail,
|
153 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail,
|
154 |
-
.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail {
|
155 |
-
background: #fff;
|
156 |
-
padding: 15px;
|
157 |
-
}
|
158 |
-
|
159 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail h2,
|
160 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail h3,
|
161 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail h4,
|
162 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail h2,
|
163 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail h3,
|
164 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail h4,
|
165 |
-
.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail h2,
|
166 |
-
.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail h3,
|
167 |
-
.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail h4 {
|
168 |
-
font-size: 26px;
|
169 |
-
line-height: 1.25;
|
170 |
-
margin: 0 0 18px;
|
171 |
-
font-weight: 400;
|
172 |
-
}
|
173 |
-
|
174 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail.rt-with-title h2,
|
175 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail.rt-with-title h3,
|
176 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail.rt-with-title h4,
|
177 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail.rt-with-title h2,
|
178 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail.rt-with-title h3,
|
179 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail.rt-with-title h4,
|
180 |
-
.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail.rt-with-title h2,
|
181 |
-
.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail.rt-with-title h3,
|
182 |
-
.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail.rt-with-title h4 {
|
183 |
-
margin-bottom: 15px;
|
184 |
-
}
|
185 |
-
|
186 |
-
.tpg-shortcode-main-wrapper .rt-holder .rt-detail.rt-with-title {
|
187 |
-
padding-top: 0;
|
188 |
-
}
|
189 |
-
|
190 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-detail .tpg-excerpt,
|
191 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-detail .tpg-excerpt {
|
192 |
-
margin-bottom: 20px;
|
193 |
-
}
|
194 |
-
|
195 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail .post-meta,
|
196 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail .post-meta,
|
197 |
-
.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail .post-meta {
|
198 |
-
line-height: 25px;
|
199 |
-
overflow: hidden;
|
200 |
-
}
|
201 |
-
|
202 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail .read-more a,
|
203 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail .read-more a,
|
204 |
-
.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail .read-more a {
|
205 |
-
padding: 8px 20px;
|
206 |
-
display: inline-block;
|
207 |
-
font-size: 15px;
|
208 |
-
line-height: 1.8;
|
209 |
-
border: 1px solid rgb(203 203 203 / 40%)
|
210 |
-
}
|
211 |
-
|
212 |
-
.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail .read-more a,
|
213 |
-
.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail .read-more a,
|
214 |
-
.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail .read-more a {
|
215 |
-
color: #1a1a1a;
|
216 |
-
}
|
217 |
-
|
218 |
-
.tpg-shortcode-main-wrapper .rt-holder .rt-detail .post-meta.right {
|
219 |
-
text-align: right;
|
220 |
-
}
|
221 |
-
|
222 |
-
.tpg-shortcode-main-wrapper .rt-holder .rt-detail .post-meta.center {
|
223 |
-
text-align: center;
|
224 |
-
}
|
225 |
-
|
226 |
-
.tpg-img-circle .rt-img-holder img {
|
227 |
-
border-radius: 50% !important;
|
228 |
-
}
|
229 |
-
|
230 |
-
/**********************************************************************/
|
231 |
-
/********************************* Layout 2 *************************/
|
232 |
-
/**********************************************************************/
|
233 |
-
|
234 |
-
.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-img-holder {
|
235 |
-
position: relative;
|
236 |
-
overflow: hidden;
|
237 |
-
}
|
238 |
-
|
239 |
-
.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-img-holder img {
|
240 |
-
-webkit-transition: all 1.1s ease;
|
241 |
-
-moz-transition: all 1.1s ease;
|
242 |
-
-o-transition: all 1.1s ease;
|
243 |
-
-ms-transition: all 1.1s ease;
|
244 |
-
transition: all 1.1s ease;
|
245 |
-
max-width: 100%;
|
246 |
-
}
|
247 |
-
|
248 |
-
.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-img-holder:hover img {
|
249 |
-
-webkit-transform: scale(1.1);
|
250 |
-
-moz-transform: scale(1.1);
|
251 |
-
-ms-transform: scale(1.1);
|
252 |
-
-o-transform: scale(1.1);
|
253 |
-
transform: scale(1.1);
|
254 |
-
}
|
255 |
-
|
256 |
-
.tpg-shortcode-main-wrapper .layout2 .img_zoom_out .rt-holder .rt-img-holder img {
|
257 |
-
-webkit-transform: scale(1.1);
|
258 |
-
-moz-transform: scale(1.1);
|
259 |
-
-ms-transform: scale(1.1);
|
260 |
-
-o-transform: scale(1.1);
|
261 |
-
transform: scale(1.1);
|
262 |
-
}
|
263 |
-
|
264 |
-
.tpg-shortcode-main-wrapper .layout2 .img_zoom_out .rt-holder .rt-img-holder:hover img {
|
265 |
-
-webkit-transform: scale(1);
|
266 |
-
-moz-transform: scale(1);
|
267 |
-
-ms-transform: scale(1);
|
268 |
-
-o-transform: scale(1);
|
269 |
-
transform: scale(1);
|
270 |
-
}
|
271 |
-
|
272 |
-
.tpg-shortcode-main-wrapper .layout2 .img_no_effect .rt-holder .rt-img-holder img,
|
273 |
-
.tpg-shortcode-main-wrapper .layout2 .img_no_effect .rt-holder .rt-img-holder:hover img {
|
274 |
-
-webkit-transform: scale(1);
|
275 |
-
-moz-transform: scale(1);
|
276 |
-
-ms-transform: scale(1);
|
277 |
-
-o-transform: scale(1);
|
278 |
-
transform: scale(1);
|
279 |
-
}
|
280 |
-
|
281 |
-
.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail h2,
|
282 |
-
.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail h3,
|
283 |
-
.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail h4 {
|
284 |
-
font-size: 26px;
|
285 |
-
line-height: 1.25;
|
286 |
-
margin: 0px 0 15px 0;
|
287 |
-
font-weight: 400;
|
288 |
-
}
|
289 |
-
|
290 |
-
.tpg-shortcode-main-wrapper .layout2 .rt-detail .tpg-excerpt {
|
291 |
-
margin-bottom: 20px;
|
292 |
-
}
|
293 |
-
|
294 |
-
.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .read-more a {
|
295 |
-
line-height: 1.8;
|
296 |
-
border-radius: 5px;
|
297 |
-
display: inline-block;
|
298 |
-
}
|
299 |
-
|
300 |
-
.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .read-more {
|
301 |
-
display: inline-block;
|
302 |
-
width: 100%;
|
303 |
-
}
|
304 |
-
|
305 |
-
.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .read-more.right {
|
306 |
-
text-align: right;
|
307 |
-
}
|
308 |
-
|
309 |
-
.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .read-more.center {
|
310 |
-
text-align: center;
|
311 |
-
}
|
312 |
-
|
313 |
-
.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .rt-tpg-social-share {
|
314 |
-
margin-bottom: 15px;
|
315 |
-
}
|
316 |
-
|
317 |
-
@media all and (max-width: 767px) {
|
318 |
-
.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail,
|
319 |
-
.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail {
|
320 |
-
padding: 15px 0;
|
321 |
-
}
|
322 |
-
}
|
323 |
-
|
324 |
-
/**********************************************************************/
|
325 |
-
/********************************* Layout 3 *************************/
|
326 |
-
/**********************************************************************/
|
327 |
-
|
328 |
-
.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail p {
|
329 |
-
margin-bottom: 20px;
|
330 |
-
}
|
331 |
-
|
332 |
-
.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail h2,
|
333 |
-
.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail h3,
|
334 |
-
.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail h4 {
|
335 |
-
font-size: 26px;
|
336 |
-
margin: 0px 0 18px 0;
|
337 |
-
line-height: 1.25;
|
338 |
-
font-weight: 400;
|
339 |
-
}
|
340 |
-
|
341 |
-
.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-img-holder .overlay {
|
342 |
-
width: 100%;
|
343 |
-
height: 100%;
|
344 |
-
display: block;
|
345 |
-
background: rgba(0, 0, 0, 0.7);
|
346 |
-
position: absolute;
|
347 |
-
z-index: 1;
|
348 |
-
opacity: 0;
|
349 |
-
-webkit-transition: all 0.3s ease-out 0s;
|
350 |
-
-moz-transition: all 0.3s ease-out 0s;
|
351 |
-
-ms-transition: all 0.3s ease-out 0s;
|
352 |
-
-o-transition: all 0.3s ease-out 0s;
|
353 |
-
transition: all 0.3s ease-out 0s;
|
354 |
-
text-align: center;
|
355 |
-
}
|
356 |
-
|
357 |
-
.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .read-more a {
|
358 |
-
line-height: 1.8;
|
359 |
-
display: inline-block;
|
360 |
-
}
|
361 |
-
|
362 |
-
.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-img-holder,
|
363 |
-
.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-img-holder > a.rounded img {
|
364 |
-
border-radius: 50%;
|
365 |
-
overflow: hidden;
|
366 |
-
}
|
367 |
-
|
368 |
-
.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .read-more {
|
369 |
-
display: inline-block;
|
370 |
-
width: 100%;
|
371 |
-
}
|
372 |
-
|
373 |
-
.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .read-more.right {
|
374 |
-
text-align: right;
|
375 |
-
}
|
376 |
-
|
377 |
-
.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .read-more.center {
|
378 |
-
text-align: center;
|
379 |
-
}
|
380 |
-
|
381 |
-
.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .rt-tpg-social-share {
|
382 |
-
margin-bottom: 15px;
|
383 |
-
}
|
384 |
-
|
385 |
-
/**********************************************************************/
|
386 |
-
/********************************* Layout 5 *************************/
|
387 |
-
/**********************************************************************/
|
388 |
-
|
389 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder,
|
390 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder,
|
391 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder,
|
392 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder {
|
393 |
-
position: relative;
|
394 |
-
overflow: hidden;
|
395 |
-
}
|
396 |
-
|
397 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay,
|
398 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay,
|
399 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay,
|
400 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay {
|
401 |
-
left: 0;
|
402 |
-
bottom: 0;
|
403 |
-
display: block;
|
404 |
-
background: rgba(235, 0, 0, 0.8);
|
405 |
-
position: absolute;
|
406 |
-
z-index: 1;
|
407 |
-
opacity: 1;
|
408 |
-
padding: 20px;
|
409 |
-
width: 100%;
|
410 |
-
height: 25%;
|
411 |
-
transition: all 1s ease;
|
412 |
-
min-height: 150px;
|
413 |
-
}
|
414 |
-
|
415 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .rt-detail,
|
416 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .rt-detail,
|
417 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .rt-detail {
|
418 |
-
opacity: 0;
|
419 |
-
visibility: hidden;
|
420 |
-
padding: 0;
|
421 |
-
color: #fff;
|
422 |
-
transition: all 0.8s ease-in-out;
|
423 |
-
max-height: 0;
|
424 |
-
}
|
425 |
-
|
426 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder:hover .overlay .rt-detail,
|
427 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder:hover .overlay .rt-detail,
|
428 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder:hover .overlay .rt-detail {
|
429 |
-
max-height: 450px;
|
430 |
-
transition: all 1.2s ease-in-out 0.2s;
|
431 |
-
}
|
432 |
-
|
433 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .rt-detail {
|
434 |
-
padding: 0 0 15px;
|
435 |
-
color: #fff;
|
436 |
-
}
|
437 |
-
|
438 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .rt-detail > *:not(.post-meta-user) {
|
439 |
-
opacity: 0;
|
440 |
-
visibility: hidden;
|
441 |
-
}
|
442 |
-
|
443 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder:hover .overlay .rt-detail > *:not(.post-meta-user) {
|
444 |
-
opacity: 1;
|
445 |
-
visibility: visible;
|
446 |
-
}
|
447 |
-
|
448 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .post-meta-user,
|
449 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .post-meta-user a,
|
450 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .post-meta-user,
|
451 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .post-meta-user a,
|
452 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .post-meta-user,
|
453 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .post-meta-user a,
|
454 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .post-meta-user,
|
455 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .post-meta-user a {
|
456 |
-
color: #fff;
|
457 |
-
}
|
458 |
-
|
459 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h2,
|
460 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h3,
|
461 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h4,
|
462 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h2,
|
463 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h3,
|
464 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h4,
|
465 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h2,
|
466 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h3,
|
467 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h4,
|
468 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h2,
|
469 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h3,
|
470 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h4 {
|
471 |
-
font-size: 22px;
|
472 |
-
line-height: 1.3;
|
473 |
-
color: #ffffff;
|
474 |
-
margin: 0px 0 10px;
|
475 |
-
font-weight: 400;
|
476 |
-
}
|
477 |
-
|
478 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h2 a,
|
479 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h3 a,
|
480 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h4 a,
|
481 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h2 a,
|
482 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h3 a,
|
483 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h4 a,
|
484 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h2 a,
|
485 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h3 a,
|
486 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h4 a,
|
487 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h2 a,
|
488 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h3 a,
|
489 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h4 a {
|
490 |
-
color: #ffffff;
|
491 |
-
}
|
492 |
-
|
493 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder:hover .overlay,
|
494 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder:hover .overlay,
|
495 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder:hover .overlay,
|
496 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder:hover .overlay {
|
497 |
-
width: 100%;
|
498 |
-
height: 100%;
|
499 |
-
}
|
500 |
-
|
501 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder:hover .overlay .rt-detail,
|
502 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder:hover .overlay .rt-detail,
|
503 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder:hover .overlay .rt-detail,
|
504 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder:hover .overlay .rt-detail {
|
505 |
-
opacity: 1;
|
506 |
-
visibility: visible;
|
507 |
-
}
|
508 |
-
|
509 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .post-meta-user,
|
510 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .post-meta-user,
|
511 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .post-meta-user,
|
512 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .post-meta-user {
|
513 |
-
display: block;
|
514 |
-
}
|
515 |
-
|
516 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .post-meta .rt-tpg-social-share,
|
517 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .post-meta {
|
518 |
-
text-align: center;
|
519 |
-
}
|
520 |
-
|
521 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .post-meta.left {
|
522 |
-
text-align: left;
|
523 |
-
}
|
524 |
-
|
525 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay > *:not(.entry-title),
|
526 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .rt-detail,
|
527 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay > *:not(.entry-title) {
|
528 |
-
overflow: hidden;
|
529 |
-
max-height: 0;
|
530 |
-
transition: 0.6s !important;
|
531 |
-
opacity: 0;
|
532 |
-
}
|
533 |
-
|
534 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .overlay > *:not(.entry-title),
|
535 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder:hover .overlay .rt-detail,
|
536 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .overlay > *:not(.entry-title) {
|
537 |
-
max-height: 300px;
|
538 |
-
opacity: 1;
|
539 |
-
}
|
540 |
-
|
541 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder {
|
542 |
-
min-height: 250px;
|
543 |
-
display: flex;
|
544 |
-
}
|
545 |
-
|
546 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .rt-img-responsive {
|
547 |
-
height: 100%;
|
548 |
-
object-fit: cover;
|
549 |
-
}
|
550 |
-
|
551 |
-
/**********************************************************************/
|
552 |
-
/********************************* Layout 6 *************************/
|
553 |
-
/**********************************************************************/
|
554 |
-
|
555 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder,
|
556 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder,
|
557 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder {
|
558 |
-
position: relative;
|
559 |
-
}
|
560 |
-
|
561 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay,
|
562 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay,
|
563 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay {
|
564 |
-
width: 100%;
|
565 |
-
height: 100%;
|
566 |
-
display: flex;
|
567 |
-
background: rgba(0, 0, 0, 0.7);
|
568 |
-
position: absolute;
|
569 |
-
-webkit-transition: all 300ms ease-out;
|
570 |
-
-moz-transition: all 300ms ease-out;
|
571 |
-
-o-transition: all 300ms ease-out;
|
572 |
-
transition: all 300ms ease-out;
|
573 |
-
opacity: 0;
|
574 |
-
text-decoration: none;
|
575 |
-
text-align: center;
|
576 |
-
padding: 15px;
|
577 |
-
z-index: 9;
|
578 |
-
flex-direction: column;
|
579 |
-
justify-content: center;
|
580 |
-
align-items: center;
|
581 |
-
}
|
582 |
-
|
583 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .line,
|
584 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .line,
|
585 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .line {
|
586 |
-
height: 2px;
|
587 |
-
min-height: 2px;
|
588 |
-
width: 0%;
|
589 |
-
margin: 12px auto;
|
590 |
-
background-color: #ffffff;
|
591 |
-
-webkit-transition: all 500ms ease-out;
|
592 |
-
-moz-transition: all 500ms ease-out;
|
593 |
-
-o-transition: all 500ms ease-out;
|
594 |
-
transition: all 500ms ease-out;
|
595 |
-
}
|
596 |
-
|
597 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay:hover .line,
|
598 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay:hover .line,
|
599 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay:hover .line {
|
600 |
-
width: 40%;
|
601 |
-
}
|
602 |
-
|
603 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h2,
|
604 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h3,
|
605 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h4,
|
606 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h2,
|
607 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h3,
|
608 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h4,
|
609 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h2,
|
610 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h3,
|
611 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h4 {
|
612 |
-
padding-top: 5%;
|
613 |
-
color: #ffffff;
|
614 |
-
font-size: 22px;
|
615 |
-
line-height: 1.25;
|
616 |
-
font-weight: 400;
|
617 |
-
margin: 0px 0 18px 0;
|
618 |
-
}
|
619 |
-
|
620 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h2 a,
|
621 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h3 a,
|
622 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h4 a,
|
623 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h2 a,
|
624 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h3 a,
|
625 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h4 a,
|
626 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h2 a,
|
627 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h3 a,
|
628 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h4 a {
|
629 |
-
color: #ffffff;
|
630 |
-
}
|
631 |
-
|
632 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta.left,
|
633 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta.left,
|
634 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta.left {
|
635 |
-
text-align: left;
|
636 |
-
}
|
637 |
-
|
638 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta.right,
|
639 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta.right,
|
640 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta.right {
|
641 |
-
text-align: right;
|
642 |
-
}
|
643 |
-
|
644 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .rt-tpg-social-share,
|
645 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .rt-tpg-social-share,
|
646 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .rt-tpg-social-share {
|
647 |
-
float: none;
|
648 |
-
text-align: center;
|
649 |
-
}
|
650 |
-
|
651 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .read-more,
|
652 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .read-more,
|
653 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .read-more {
|
654 |
-
float: none;
|
655 |
-
}
|
656 |
-
|
657 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta-user,
|
658 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta-user,
|
659 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta-user {
|
660 |
-
color: #fff;
|
661 |
-
}
|
662 |
-
|
663 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta-user p,
|
664 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta-user p,
|
665 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta-user p {
|
666 |
-
margin-bottom: 0;
|
667 |
-
}
|
668 |
-
|
669 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta-user a,
|
670 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta-user a,
|
671 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta-user a {
|
672 |
-
color: #fff;
|
673 |
-
}
|
674 |
-
|
675 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder:hover .overlay .tpg-excerpt,
|
676 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder:hover .overlay .tpg-excerpt,
|
677 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder:hover .overlay .tpg-excerpt {
|
678 |
-
color: #ffffff;
|
679 |
-
}
|
680 |
-
|
681 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder:hover .overlay,
|
682 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder:hover .overlay,
|
683 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder:hover .overlay {
|
684 |
-
opacity: 1;
|
685 |
-
}
|
686 |
-
|
687 |
-
/**********************************************************************/
|
688 |
-
/********************************* Layout 7 *************************/
|
689 |
-
/**********************************************************************/
|
690 |
-
|
691 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder,
|
692 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder,
|
693 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder {
|
694 |
-
position: relative;
|
695 |
-
}
|
696 |
-
|
697 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder img,
|
698 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder img,
|
699 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder img {
|
700 |
-
opacity: 0.9;
|
701 |
-
-webkit-transition: opacity 0.35s;
|
702 |
-
transition: opacity 0.35s;
|
703 |
-
}
|
704 |
-
|
705 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay,
|
706 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay,
|
707 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay {
|
708 |
-
display: flex;
|
709 |
-
justify-content: center;
|
710 |
-
flex-direction: column;
|
711 |
-
align-items: center;
|
712 |
-
position: absolute;
|
713 |
-
top: 0;
|
714 |
-
left: 0;
|
715 |
-
width: 100%;
|
716 |
-
height: 100%;
|
717 |
-
padding: 0 12px;
|
718 |
-
background: rgba(0, 0, 0, 0.3);
|
719 |
-
}
|
720 |
-
|
721 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay:hover,
|
722 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay:hover,
|
723 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay:hover {
|
724 |
-
background: rgba(0, 0, 0, 0.5);
|
725 |
-
}
|
726 |
-
|
727 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay::before,
|
728 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay::before,
|
729 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay::before {
|
730 |
-
position: absolute;
|
731 |
-
top: 20px;
|
732 |
-
right: 20px;
|
733 |
-
bottom: 20px;
|
734 |
-
left: 20px;
|
735 |
-
border: 2px solid #fff;
|
736 |
-
box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.2);
|
737 |
-
content: '';
|
738 |
-
opacity: 0;
|
739 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
740 |
-
transition: opacity 0.35s, transform 0.35s;
|
741 |
-
-webkit-transform: scale3d(1.4, 1.4, 1);
|
742 |
-
transform: scale3d(1.4, 1.4, 1);
|
743 |
-
}
|
744 |
-
|
745 |
-
|
746 |
-
.tpg-shortcode-main-wrapper .carousel12 .rt-holder .post-info .cat-above-title,
|
747 |
-
.tpg-shortcode-main-wrapper .carousel11 .rt-holder .post-info .cat-above-title,
|
748 |
-
.tpg-shortcode-main-wrapper .carousel7 .rt-holder .cat-above-title {
|
749 |
-
color: #ffffff;
|
750 |
-
text-align: center;
|
751 |
-
}
|
752 |
-
|
753 |
-
.tpg-shortcode-main-wrapper .carousel5 .rt-holder .cat-above-title,
|
754 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .cat-above-title {
|
755 |
-
text-align: center;
|
756 |
-
opacity: 0;
|
757 |
-
margin-top: 30px;
|
758 |
-
color: #ffffff;
|
759 |
-
}
|
760 |
-
|
761 |
-
.tpg-shortcode-main-wrapper .carousel12 .rt-holder .post-info .cat-above-title *,
|
762 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .cat-above-title *,
|
763 |
-
.tpg-shortcode-main-wrapper .carousel7 .rt-holder .cat-above-title a,
|
764 |
-
.tpg-shortcode-main-wrapper .carousel5 .rt-holder .cat-above-title a,
|
765 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .cat-above-title a {
|
766 |
-
color: inherit;
|
767 |
-
}
|
768 |
-
|
769 |
-
.tpg-shortcode-main-wrapper .carousel5 .rt-holder:hover .cat-above-title,
|
770 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .cat-above-title {
|
771 |
-
opacity: 1;
|
772 |
-
}
|
773 |
-
|
774 |
-
.tpg-shortcode-main-wrapper .carousel12 .rt-holder .post-info .cat-above-title,
|
775 |
-
.tpg-shortcode-main-wrapper .carousel11 .rt-holder .post-info .cat-above-title,
|
776 |
-
.tpg-shortcode-main-wrapper .carousel5 .rt-holder:hover .cat-above-title + .entry-title {
|
777 |
-
padding-top: 10px;
|
778 |
-
}
|
779 |
-
|
780 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .cat-above-title + .entry-title {
|
781 |
-
margin-top: 10px;
|
782 |
-
}
|
783 |
-
|
784 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder h2,
|
785 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder h3,
|
786 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder h4,
|
787 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder h2,
|
788 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder h3,
|
789 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder h4,
|
790 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder h2,
|
791 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder h3,
|
792 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder h4 {
|
793 |
-
color: #ffffff;
|
794 |
-
font-size: 22px;
|
795 |
-
font-weight: 400;
|
796 |
-
line-height: 1.25;
|
797 |
-
margin: 30% 0 10px 0;
|
798 |
-
text-align: center;
|
799 |
-
-webkit-transition: -webkit-transform 0.35s;
|
800 |
-
transition: transform 0.35s;
|
801 |
-
}
|
802 |
-
|
803 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder h2 a,
|
804 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder h3 a,
|
805 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder h4 a,
|
806 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder h2 a,
|
807 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder h3 a,
|
808 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder h4 a,
|
809 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder h2 a,
|
810 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder h3 a,
|
811 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder h4 a {
|
812 |
-
color: #ffffff;
|
813 |
-
}
|
814 |
-
|
815 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder p,
|
816 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder p,
|
817 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder p,
|
818 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .tpg-excerpt,
|
819 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder .tpg-excerpt,
|
820 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .tpg-excerpt {
|
821 |
-
color: #ffffff;
|
822 |
-
padding: 0 15px;
|
823 |
-
opacity: 0;
|
824 |
-
text-align: center;
|
825 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
826 |
-
transition: opacity 0.35s, transform 0.35s;
|
827 |
-
-webkit-transform: scale(1.5);
|
828 |
-
transform: scale(1.5);
|
829 |
-
}
|
830 |
-
|
831 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .post-meta-user p,
|
832 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder .post-meta-user p,
|
833 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .post-meta-user p {
|
834 |
-
margin-bottom: 0;
|
835 |
-
}
|
836 |
-
|
837 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .post-meta-user a,
|
838 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder .post-meta-user a,
|
839 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .post-meta-user a {
|
840 |
-
color: #ffffff;
|
841 |
-
}
|
842 |
-
|
843 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover h3,
|
844 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover h3,
|
845 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover h3 {
|
846 |
-
margin: 7% 0 10px 0;
|
847 |
-
-webkit-transform: scale(0.9);
|
848 |
-
transform: scale(0.9);
|
849 |
-
}
|
850 |
-
|
851 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .overlay::before,
|
852 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover .overlay::before,
|
853 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .overlay::before,
|
854 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .tpg-excerpt,
|
855 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover .tpg-excerpt,
|
856 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .tpg-excerpt,
|
857 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover p,
|
858 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover p,
|
859 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover p {
|
860 |
-
opacity: 1;
|
861 |
-
-webkit-transform: scale3d(1, 1, 1);
|
862 |
-
transform: scale3d(1, 1, 1);
|
863 |
-
}
|
864 |
-
|
865 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .cat-above-title,
|
866 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .post-meta,
|
867 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay .post-meta,
|
868 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay .post-meta {
|
869 |
-
color: #ffffff;
|
870 |
-
text-align: center;
|
871 |
-
overflow: hidden;
|
872 |
-
opacity: 0;
|
873 |
-
}
|
874 |
-
|
875 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .post-meta.left,
|
876 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay .post-meta.left,
|
877 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay .post-meta.left {
|
878 |
-
text-align: left;
|
879 |
-
}
|
880 |
-
|
881 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .post-meta.right,
|
882 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay .post-meta.right,
|
883 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay .post-meta.right {
|
884 |
-
text-align: right;
|
885 |
-
}
|
886 |
-
|
887 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .cat-above-title,
|
888 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .overlay .post-meta,
|
889 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover .overlay .post-meta,
|
890 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .overlay .post-meta {
|
891 |
-
opacity: 1;
|
892 |
-
-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
|
893 |
-
transition: opacity 0.35s, transform 0.35s;
|
894 |
-
-webkit-transform: scale(1);
|
895 |
-
transform: scale(1);
|
896 |
-
}
|
897 |
-
|
898 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .rt-tpg-social-share,
|
899 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay .rt-tpg-social-share,
|
900 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay .rt-tpg-social-share {
|
901 |
-
float: none;
|
902 |
-
text-align: center;
|
903 |
-
}
|
904 |
-
|
905 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .read-more,
|
906 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder .read-more,
|
907 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .read-more {
|
908 |
-
float: none;
|
909 |
-
}
|
910 |
-
|
911 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .entry-title,
|
912 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder h3 {
|
913 |
-
margin: 0 !important;
|
914 |
-
transition: 0.4s;
|
915 |
-
}
|
916 |
-
|
917 |
-
/**********************************************************************/
|
918 |
-
/********************************* Layout 12 *************************/
|
919 |
-
/**********************************************************************/
|
920 |
-
|
921 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder,
|
922 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder,
|
923 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder {
|
924 |
-
background: #fff;
|
925 |
-
-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.22);
|
926 |
-
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.22);
|
927 |
-
}
|
928 |
-
|
929 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-img-holder,
|
930 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-img-holder,
|
931 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-img-holder {
|
932 |
-
position: relative;
|
933 |
-
overflow: hidden;
|
934 |
-
}
|
935 |
-
|
936 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover img,
|
937 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover img,
|
938 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover img {
|
939 |
-
-webkit-transition: all 0.25s ease-in-out;
|
940 |
-
transform: scale(1.05, 1.05);
|
941 |
-
-webkit-transform: scale(1.05, 1.05);
|
942 |
-
-moz-transform: scale(1.05, 1.05);
|
943 |
-
-ms-transform: scale(1.05, 1.05);
|
944 |
-
-o-transform: scale(1.05, 1.05);
|
945 |
-
}
|
946 |
-
|
947 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail,
|
948 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail,
|
949 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail {
|
950 |
-
background: #fff;
|
951 |
-
padding: 25px;
|
952 |
-
-webkit-transition: all 0.3s ease-out 0s;
|
953 |
-
-moz-transition: all 0.3s ease-out 0s;
|
954 |
-
-ms-transition: all 0.3s ease-out 0s;
|
955 |
-
-o-transition: all 0.3s ease-out 0s;
|
956 |
-
transition: all 0.3s ease-out 0s;
|
957 |
-
display: inline-block;
|
958 |
-
width: 100%;
|
959 |
-
}
|
960 |
-
|
961 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail.rt-with-title,
|
962 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail.rt-with-title,
|
963 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail.rt-with-title {
|
964 |
-
padding-top: 0;
|
965 |
-
padding-bottom: 0;
|
966 |
-
}
|
967 |
-
|
968 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder.rt-with-title-below h2.entry-title,
|
969 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder.rt-with-title-below h3.entry-title,
|
970 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder.rt-with-title-below h4.entry-title,
|
971 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder.rt-with-title-below h2.entry-title,
|
972 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder.rt-with-title-below h3.entry-title,
|
973 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder.rt-with-title-below h4.entry-title,
|
974 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder.rt-with-title-below h2.entry-title,
|
975 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder.rt-with-title-below h3.entry-title,
|
976 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder.rt-with-title-below h4.entry-title {
|
977 |
-
margin-top: 0;
|
978 |
-
}
|
979 |
-
|
980 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail.rt-with-title .entry-title,
|
981 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail.rt-with-title .entry-title,
|
982 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail.rt-with-title .entry-title {
|
983 |
-
display: inline-block;
|
984 |
-
}
|
985 |
-
|
986 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder.rt-with-title .post-meta-user,
|
987 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder.rt-with-title .post-meta-user,
|
988 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder.rt-with-title .post-meta-user {
|
989 |
-
margin-bottom: 15px;
|
990 |
-
}
|
991 |
-
|
992 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h2,
|
993 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h3,
|
994 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h4,
|
995 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h2,
|
996 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h3,
|
997 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h4,
|
998 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h2,
|
999 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h3,
|
1000 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h4 {
|
1001 |
-
font-size: 22px;
|
1002 |
-
line-height: 1.25;
|
1003 |
-
margin: 15px 0px 15px;
|
1004 |
-
font-weight: 400;
|
1005 |
-
}
|
1006 |
-
|
1007 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h2 a,
|
1008 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h3 a,
|
1009 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h4 a,
|
1010 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h2 a,
|
1011 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h3 a,
|
1012 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h4 a,
|
1013 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h2 a,
|
1014 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h3 a,
|
1015 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h4 a {
|
1016 |
-
color: #000;
|
1017 |
-
}
|
1018 |
-
|
1019 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h2 a:hover,
|
1020 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h3 a:hover,
|
1021 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h4 a:hover,
|
1022 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h2 a:hover,
|
1023 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h3 a:hover,
|
1024 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h4 a:hover,
|
1025 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h2 a:hover,
|
1026 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h3 a:hover,
|
1027 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h4 a:hover {
|
1028 |
-
color: #fff;
|
1029 |
-
}
|
1030 |
-
|
1031 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail {
|
1032 |
-
flex-grow: 1;
|
1033 |
-
}
|
1034 |
-
|
1035 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover .rt-detail,
|
1036 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail,
|
1037 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail {
|
1038 |
-
background: #0850d0;
|
1039 |
-
color: #fff;
|
1040 |
-
}
|
1041 |
-
|
1042 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover .rt-detail a,
|
1043 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail a,
|
1044 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail a {
|
1045 |
-
color: #fff;
|
1046 |
-
}
|
1047 |
-
|
1048 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail .read-more,
|
1049 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail .read-more,
|
1050 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail .read-more {
|
1051 |
-
text-align: right;
|
1052 |
-
}
|
1053 |
-
|
1054 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail .post-meta-user,
|
1055 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail .post-meta-user .meta-data,
|
1056 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail .post-meta-user a,
|
1057 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail .post-meta-user i[class^='fa'],
|
1058 |
-
.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail h3 a,
|
1059 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail .post-meta-user,
|
1060 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail .post-meta-user .meta-data,
|
1061 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail .post-meta-user i[class^='fa'],
|
1062 |
-
.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail .post-meta-user a,
|
1063 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover .rt-detail .post-meta-user,
|
1064 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover .rt-detail i,
|
1065 |
-
.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover .rt-detail .post-meta-user a {
|
1066 |
-
color: #fff !important;
|
1067 |
-
}
|
1068 |
-
|
1069 |
-
|
1070 |
-
/**********************************************************************/
|
1071 |
-
/********************************* Media Query *************************/
|
1072 |
-
/**********************************************************************/
|
1073 |
-
|
1074 |
-
@media (min-width: 992px) {
|
1075 |
-
.rt-container {
|
1076 |
-
width: 970px;
|
1077 |
-
}
|
1078 |
-
}
|
1079 |
-
|
1080 |
-
@media (min-width: 1200px) {
|
1081 |
-
.rt-container {
|
1082 |
-
width: 1170px;
|
1083 |
-
}
|
1084 |
-
}
|
1085 |
-
|
1086 |
-
@media (max-width: 767px) {
|
1087 |
-
.hidden-xs {
|
1088 |
-
display: none !important;
|
1089 |
-
}
|
1090 |
-
}
|
1091 |
-
|
1092 |
-
@media screen and (max-width: 768px) {
|
1093 |
-
.rt-member-feature-img, .rt-member-description-container {
|
1094 |
-
float: none;
|
1095 |
-
width: 100%;
|
1096 |
-
}
|
1097 |
-
}
|
1098 |
-
|
1099 |
-
@media (min-width: 768px) {
|
1100 |
-
.rt-col-sm-1, .rt-col-sm-2, .rt-col-sm-3, .rt-col-sm-4, .rt-col-sm-5, .rt-col-sm-6, .rt-col-sm-7, .rt-col-sm-8, .rt-col-sm-9, .rt-col-sm-10, .rt-col-sm-11, .rt-col-sm-12, .rt-col-sm-24 {
|
1101 |
-
float: left;
|
1102 |
-
}
|
1103 |
-
|
1104 |
-
.rt-col-sm-24 {
|
1105 |
-
width: 20%;
|
1106 |
-
}
|
1107 |
-
|
1108 |
-
.rt-col-sm-12 {
|
1109 |
-
width: 100%;
|
1110 |
-
}
|
1111 |
-
|
1112 |
-
.rt-col-sm-11 {
|
1113 |
-
width: 91.66666667%;
|
1114 |
-
}
|
1115 |
-
|
1116 |
-
.rt-col-sm-10 {
|
1117 |
-
width: 83.33333333%;
|
1118 |
-
}
|
1119 |
-
|
1120 |
-
.rt-col-sm-9 {
|
1121 |
-
width: 75%;
|
1122 |
-
}
|
1123 |
-
|
1124 |
-
.rt-col-sm-8 {
|
1125 |
-
width: 66.66666667%;
|
1126 |
-
}
|
1127 |
-
|
1128 |
-
.rt-col-sm-7 {
|
1129 |
-
width: 58.33333333%;
|
1130 |
-
}
|
1131 |
-
|
1132 |
-
.rt-col-sm-6 {
|
1133 |
-
width: 50%;
|
1134 |
-
}
|
1135 |
-
|
1136 |
-
.rt-col-sm-5 {
|
1137 |
-
width: 41.66666667%;
|
1138 |
-
}
|
1139 |
-
|
1140 |
-
.rt-col-sm-4 {
|
1141 |
-
width: 33.33333333%;
|
1142 |
-
}
|
1143 |
-
|
1144 |
-
.rt-col-sm-3 {
|
1145 |
-
width: 25%;
|
1146 |
-
}
|
1147 |
-
|
1148 |
-
.rt-col-sm-2 {
|
1149 |
-
width: 16.66666667%;
|
1150 |
-
}
|
1151 |
-
|
1152 |
-
.rt-col-sm-1 {
|
1153 |
-
width: 8.33333333%;
|
1154 |
-
}
|
1155 |
-
|
1156 |
-
}
|
1157 |
-
|
1158 |
-
@media (min-width: 992px) {
|
1159 |
-
.rt-col-md-1, .rt-col-md-2, .rt-col-md-3, .rt-col-md-4, .rt-col-md-5, .rt-col-md-6, .rt-col-md-7, .rt-col-md-8, .rt-col-md-9, .rt-col-md-10, .rt-col-md-11, .rt-col-md-12, .rt-col-md-24 {
|
1160 |
-
float: left;
|
1161 |
-
}
|
1162 |
-
|
1163 |
-
.rt-col-md-24 {
|
1164 |
-
width: 20%;
|
1165 |
-
}
|
1166 |
-
|
1167 |
-
.rt-col-md-12 {
|
1168 |
-
width: 100%;
|
1169 |
-
}
|
1170 |
-
|
1171 |
-
.rt-col-md-11 {
|
1172 |
-
width: 91.66666667%;
|
1173 |
-
}
|
1174 |
-
|
1175 |
-
.rt-col-md-10 {
|
1176 |
-
width: 83.33333333%;
|
1177 |
-
}
|
1178 |
-
|
1179 |
-
.rt-col-md-9 {
|
1180 |
-
width: 75%;
|
1181 |
-
}
|
1182 |
-
|
1183 |
-
.rt-col-md-8 {
|
1184 |
-
width: 66.66666667%;
|
1185 |
-
}
|
1186 |
-
|
1187 |
-
.rt-col-md-7 {
|
1188 |
-
width: 58.33333333%;
|
1189 |
-
}
|
1190 |
-
|
1191 |
-
.rt-col-md-6 {
|
1192 |
-
width: 50%;
|
1193 |
-
}
|
1194 |
-
|
1195 |
-
.rt-col-md-5 {
|
1196 |
-
width: 41.66666667%;
|
1197 |
-
}
|
1198 |
-
|
1199 |
-
.rt-col-md-4 {
|
1200 |
-
width: 33.33333333%;
|
1201 |
-
}
|
1202 |
-
|
1203 |
-
.rt-col-md-3 {
|
1204 |
-
width: 25%;
|
1205 |
-
}
|
1206 |
-
|
1207 |
-
.rt-col-md-2 {
|
1208 |
-
width: 16.66666667%;
|
1209 |
-
}
|
1210 |
-
|
1211 |
-
.rt-col-md-1 {
|
1212 |
-
width: 8.33333333%;
|
1213 |
-
}
|
1214 |
-
|
1215 |
-
}
|
1216 |
-
|
1217 |
-
@media (min-width: 1200px) {
|
1218 |
-
.rt-col-lg-1, .rt-col-lg-2, .rt-col-lg-3, .rt-col-lg-4, .rt-col-lg-5, .rt-col-lg-6, .rt-col-lg-7, .rt-col-lg-8, .rt-col-lg-9, .rt-col-lg-10, .rt-col-lg-11, .rt-col-lg-12 {
|
1219 |
-
float: left;
|
1220 |
-
}
|
1221 |
-
|
1222 |
-
.rt-col-lg-24 {
|
1223 |
-
width: 20%;
|
1224 |
-
}
|
1225 |
-
|
1226 |
-
.rt-col-lg-12 {
|
1227 |
-
width: 100%;
|
1228 |
-
}
|
1229 |
-
|
1230 |
-
.rt-col-lg-11 {
|
1231 |
-
width: 91.66666667%;
|
1232 |
-
}
|
1233 |
-
|
1234 |
-
.rt-col-lg-10 {
|
1235 |
-
width: 83.33333333%;
|
1236 |
-
}
|
1237 |
-
|
1238 |
-
.rt-col-lg-9 {
|
1239 |
-
width: 75%;
|
1240 |
-
}
|
1241 |
-
|
1242 |
-
.rt-col-lg-8 {
|
1243 |
-
width: 66.66666667%;
|
1244 |
-
}
|
1245 |
-
|
1246 |
-
.rt-col-lg-7 {
|
1247 |
-
width: 58.33333333%;
|
1248 |
-
}
|
1249 |
-
|
1250 |
-
.rt-col-lg-6 {
|
1251 |
-
width: 50%;
|
1252 |
-
}
|
1253 |
-
|
1254 |
-
.rt-col-lg-5 {
|
1255 |
-
width: 41.66666667%;
|
1256 |
-
}
|
1257 |
-
|
1258 |
-
.rt-col-lg-4 {
|
1259 |
-
width: 33.33333333%;
|
1260 |
-
}
|
1261 |
-
|
1262 |
-
.rt-col-lg-3 {
|
1263 |
-
width: 25%;
|
1264 |
-
}
|
1265 |
-
|
1266 |
-
.rt-col-lg-2 {
|
1267 |
-
width: 16.66666667%;
|
1268 |
-
}
|
1269 |
-
|
1270 |
-
.rt-col-lg-1 {
|
1271 |
-
width: 8.33333333%;
|
1272 |
-
}
|
1273 |
-
|
1274 |
-
}
|
1275 |
-
|
1276 |
-
/**********************************************************************/
|
1277 |
-
/**************************** End Media Query *************************/
|
1278 |
-
/**********************************************************************/
|
1279 |
-
|
1280 |
-
/*--------- Settings Style -----------*/
|
1281 |
-
|
1282 |
-
|
1283 |
-
/*Image ZoomIn Effect*/
|
1284 |
-
.rt-img-holder {
|
1285 |
-
overflow: hidden;
|
1286 |
-
}
|
1287 |
-
|
1288 |
-
.layout4 .rt-img-holder,
|
1289 |
-
.layout4 .rt-img-holder a,
|
1290 |
-
.layout4 .rt-img-holder img {
|
1291 |
-
height: 100%;
|
1292 |
-
}
|
1293 |
-
|
1294 |
-
.img_zoom_out img.rt-img-responsive,
|
1295 |
-
.img_zoom_in img.rt-img-responsive {
|
1296 |
-
transition: all 1s !important;
|
1297 |
-
min-width: 100%;
|
1298 |
-
}
|
1299 |
-
|
1300 |
-
.img_zoom_in:hover img.rt-img-responsive {
|
1301 |
-
transform: scale(1.2) !important;
|
1302 |
-
}
|
1303 |
-
|
1304 |
-
.img_zoom_out img.rt-img-responsive {
|
1305 |
-
transform: scale(1.2) !important;
|
1306 |
-
}
|
1307 |
-
|
1308 |
-
.img_zoom_out:hover img.rt-img-responsive {
|
1309 |
-
transform: scale(1) !important;
|
1310 |
-
}
|
1311 |
-
|
1312 |
-
.tpg-shortcode-main-wrapper .img_no_effect:hover img.rt-img-responsive {
|
1313 |
-
transform: none;
|
1314 |
-
}
|
1315 |
-
|
1316 |
-
/*TPG EVEN Style */
|
1317 |
-
|
1318 |
-
.tpg-even .rt-holder {
|
1319 |
-
display: flex;
|
1320 |
-
height: 100%;
|
1321 |
-
}
|
1322 |
-
|
1323 |
-
.tpg-even.layout12 .rt-holder,
|
1324 |
-
.tpg-even.edd1 .rt-holder,
|
1325 |
-
.tpg-even.layout1 .rt-holder,
|
1326 |
-
.tpg-even.offset02 .offset-big .rt-holder,
|
1327 |
-
.tpg-even.offset01 .offset-big .rt-holder {
|
1328 |
-
flex-direction: column;
|
1329 |
-
}
|
1330 |
-
|
1331 |
-
.tpg-even.layout1 .rt-holder .rt-img-holder,
|
1332 |
-
.tpg-even.edd1 .rt-holder .rt-img-holder,
|
1333 |
-
.tpg-even.layout11 .rt-holder .rt-img-holder,
|
1334 |
-
.tpg-even.layout11 .rt-holder .rt-img-holder * {
|
1335 |
-
height: auto;
|
1336 |
-
}
|
1337 |
-
|
1338 |
-
|
1339 |
-
@media (min-width: 768px) and (max-width: 991px) {
|
1340 |
-
.tpg-even.layout4 .even-grid-item:nth-of-type(4n+2) .rt-holder [class*='rt-col']:first-child {
|
1341 |
-
order: 2;
|
1342 |
-
}
|
1343 |
-
|
1344 |
-
.tpg-even.layout4 .even-grid-item:nth-of-type(4n+3) .rt-holder [class*='rt-col']:first-child {
|
1345 |
-
order: 2;
|
1346 |
-
}
|
1347 |
-
}
|
1348 |
-
|
1349 |
-
@media (max-width: 767px) {
|
1350 |
-
.tpg-even.layout4 .even-grid-item .rt-holder .layoutInner-img {
|
1351 |
-
order: -1 !important;
|
1352 |
-
}
|
1353 |
-
}
|
1354 |
-
|
1355 |
-
.tpg-shortcode-main-wrapper .rt-holder .overlay,
|
1356 |
-
.tpg-shortcode-main-wrapper .rt-holder .overlay > a[data-id],
|
1357 |
-
.tpg-shortcode-main-wrapper .rt-holder > a[data-id] {
|
1358 |
-
width: 100%;
|
1359 |
-
}
|
1360 |
-
|
1361 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay,
|
1362 |
-
.tpg-shortcode-main-wrapper .carousel12 .rt-holder .post-info,
|
1363 |
-
.tpg-shortcode-main-wrapper .carousel11 .rt-holder .post-info,
|
1364 |
-
.tpg-shortcode-main-wrapper .carousel7 .rt-holder .overlay .post-info,
|
1365 |
-
.tpg-shortcode-main-wrapper .carousel5 .rt-holder .overlay,
|
1366 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay,
|
1367 |
-
.tpg-shortcode-main-wrapper .isotope12 .rt-holder .post-info,
|
1368 |
-
.tpg-shortcode-main-wrapper .isotope9 .rt-holder .overlay .post-info,
|
1369 |
-
.tpg-shortcode-main-wrapper .isotope7 .rt-holder .post-info,
|
1370 |
-
.tpg-shortcode-main-wrapper .isotope5 .rt-holder .overlay,
|
1371 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder:hover .overlay,
|
1372 |
-
.tpg-shortcode-main-wrapper .layout16 .rt-holder .overlay .post-info,
|
1373 |
-
.tpg-shortcode-main-wrapper .layout15 .rt-holder .overlay .post-info,
|
1374 |
-
.tpg-shortcode-main-wrapper .isotope11 .rt-holder .overlay .post-info,
|
1375 |
-
.tpg-shortcode-main-wrapper .carousel11 .rt-holder .overlay .post-info
|
1376 |
-
.tpg-shortcode-main-wrapper .layout13 .rt-holder .overlay .post-info,
|
1377 |
-
.tpg-shortcode-main-wrapper .layout10 .rt-holder .overlay .post-info,
|
1378 |
-
.tpg-shortcode-main-wrapper .layout8 .rt-holder .overlay {
|
1379 |
-
display: flex;
|
1380 |
-
flex-direction: column;
|
1381 |
-
justify-content: center;
|
1382 |
-
}
|
1383 |
-
|
1384 |
-
.tpg-shortcode-main-wrapper .carousel9 .rt-holder .overlay .post-info .read-more a,
|
1385 |
-
.tpg-shortcode-main-wrapper .isotope5 .rt-holder .overlay .post-meta .read-more a,
|
1386 |
-
.tpg-shortcode-main-wrapper .isotope4 .rt-holder .post-meta .read-more a,
|
1387 |
-
.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .post-meta .read-more a,
|
1388 |
-
.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .read-more a,
|
1389 |
-
.tpg-shortcode-main-wrapper .carousel12 .rt-holder .post-info .read-more a,
|
1390 |
-
.tpg-shortcode-main-wrapper .carousel11 .rt-holder .post-info .read-more a,
|
1391 |
-
.tpg-shortcode-main-wrapper .carousel7 .rt-holder .overlay .post-info .read-more a,
|
1392 |
-
.tpg-shortcode-main-wrapper .carousel5 .rt-holder .overlay .post-info .read-more a,
|
1393 |
-
.tpg-shortcode-main-wrapper .carousel4 .rt-holder .read-more a,
|
1394 |
-
.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .read-more a,
|
1395 |
-
.tpg-shortcode-main-wrapper .isotope12 .rt-holder .post-info .read-more a,
|
1396 |
-
.tpg-shortcode-main-wrapper .isotope11 .rt-holder .overlay .post-info .read-more a,
|
1397 |
-
.tpg-shortcode-main-wrapper .isotope9 .rt-holder .overlay .post-info .read-more a,
|
1398 |
-
.tpg-shortcode-main-wrapper .offset03 .rt-holder .post-meta .read-more a,
|
1399 |
-
.tpg-shortcode-main-wrapper .layout16 .rt-holder .read-more a,
|
1400 |
-
.tpg-shortcode-main-wrapper .layout15 .rt-holder .read-more a,
|
1401 |
-
.tpg-shortcode-main-wrapper .layout13 .rt-holder .read-more a,
|
1402 |
-
.tpg-shortcode-main-wrapper .layout10 .rt-holder .read-more a,
|
1403 |
-
.tpg-shortcode-main-wrapper .layout8 .rt-holder .read-more a,
|
1404 |
-
.tpg-shortcode-main-wrapper .layout7 .rt-holder .read-more a,
|
1405 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .read-more a,
|
1406 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .read-more a,
|
1407 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .read-more a {
|
1408 |
-
border: 1px solid rgba(255, 255, 255, .4);
|
1409 |
-
padding: 8px 15px;
|
1410 |
-
}
|
1411 |
-
|
1412 |
-
.tpg-shortcode-main-wrapper .isotope12 .rt-holder .post-info .post-meta .rt-tpg-social-share,
|
1413 |
-
.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta,
|
1414 |
-
.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta,
|
1415 |
-
.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta {
|
1416 |
-
color: #ffffff;
|
1417 |
-
text-align: center;
|
1418 |
-
overflow: hidden;
|
1419 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/css/thepostgrid.min.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
body .tpg-el-main-wrapper .rt-grid-item{padding:0 15px}body .elementor-section .tpg-el-main-wrapper .rt-grid-item{background:none}body .elementor-section .tpg-el-main-wrapper .offset-left,body .elementor-section .tpg-el-main-wrapper .offset-right{padding-bottom:0}.rt-tpg-container a{text-decoration:none}.rt-model-open,body.rt-model-open,html.rt-model-open{overflow:hidden}.rt-tpg-container img{height:auto;max-width:100%}.rt-tpg-container *{box-sizing:border-box}.entry .rt-tpg-container .entry-title:before{content:none}.rt-tpg-container .entry{margin-top:0}.rt-tpg-container :after,.rt-tpg-container :before{box-sizing:border-box}.rt-container,.rt-container-fluid{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px}.rt-container-fluid.slider-layout13-main{padding:0 0 15px}.rt-tpg-container ul{margin:0}img,svg{vertical-align:middle}a:link,a:visited{transition:all .31s ease}.clearfix:after,.clearfix:before,.rt-container-fluid:after,.rt-container-fluid:before,.rt-row:after,.rt-row:before{content:" ";display:table}.clearfix:after,.rt-container-fluid:after,.rt-container:after,.rt-row:after{clear:both}.rt-row{margin-left:-15px;margin-right:-15px}.grid-layout2.rt-row{margin-left:0;margin-right:0}.rt-row>.rt-row{padding-left:15px;padding-right:15px}.grid_hover6.rt-row{margin-left:-2px;margin-right:-2px}.rt-col-lg-1,.rt-col-lg-2,.rt-col-lg-3,.rt-col-lg-4,.rt-col-lg-5,.rt-col-lg-6,.rt-col-lg-7,.rt-col-lg-8,.rt-col-lg-9,.rt-col-lg-10,.rt-col-lg-11,.rt-col-lg-12,.rt-col-lg-24,.rt-col-md-1,.rt-col-md-2,.rt-col-md-3,.rt-col-md-4,.rt-col-md-5,.rt-col-md-6,.rt-col-md-7,.rt-col-md-8,.rt-col-md-9,.rt-col-md-10,.rt-col-md-11,.rt-col-md-12,.rt-col-md-24,.rt-col-sm-1,.rt-col-sm-2,.rt-col-sm-3,.rt-col-sm-4,.rt-col-sm-5,.rt-col-sm-6,.rt-col-sm-7,.rt-col-sm-8,.rt-col-sm-9,.rt-col-sm-10,.rt-col-sm-11,.rt-col-sm-12,.rt-col-sm-24,.rt-col-xs-1,.rt-col-xs-2,.rt-col-xs-3,.rt-col-xs-4,.rt-col-xs-5,.rt-col-xs-6,.rt-col-xs-7,.rt-col-xs-8,.rt-col-xs-9,.rt-col-xs-10,.rt-col-xs-11,.rt-col-xs-12,.rt-col-xs-24{min-height:1px;padding-left:15px;padding-right:15px;position:relative}.rt-col-xs-1,.rt-col-xs-2,.rt-col-xs-3,.rt-col-xs-4,.rt-col-xs-5,.rt-col-xs-6,.rt-col-xs-7,.rt-col-xs-8,.rt-col-xs-9,.rt-col-xs-10,.rt-col-xs-11,.rt-col-xs-12,.rt-col-xs-24{float:left}.rt-col-xs-24{width:20%}.rt-col-xs-12{width:100%}.rt-col-xs-11{width:91.66666667%}.rt-col-xs-10{width:83.33333333%}.rt-col-xs-9{width:75%}.rt-col-xs-8{width:66.66666667%}.rt-col-xs-7{width:58.33333333%}.rt-col-xs-6{width:50%}.rt-col-xs-5{width:41.66666667%}.rt-col-xs-4{width:33.33333333%}.rt-col-xs-3{width:25%}.rt-col-xs-2{width:16.66666667%}.rt-col-xs-1{width:8.33333333%}#rt-main{margin:35px auto}.rt-tpg-container h3.entry-title{line-height:1.25;margin:0 0 12px}.rt-tpg-container .offset-small-wrap .rt-holder .overlay{min-height:60px!important}.rt-tpg-container .offset-small-wrap .rt-holder .rt-img-responsive{height:auto;-o-object-fit:cover;object-fit:cover;width:100%}.rt-tpg-container .offset-small-wrap .rt-col-md-6 .rt-holder .rt-img-responsive{height:auto}.rt-tpg-container .offset-small-wrap .rt-holder .overlay h3 a{-webkit-line-clamp:1!important;-webkit-box-orient:vertical;display:-webkit-box!important;overflow:hidden!important;text-overflow:ellipsis!important}.rt-tpg-container .offset-big .post-meta-user.above_title{margin-top:15px}.rt-tpg-container .offset-big .post-meta-user.above_title+h3.entry-title{margin-top:0}.rt-tpg-container .offset-big h3.entry-title{margin:20px 0 15px}.rt-tpg-container .offset-big .cat-above-title{margin-bottom:-15px;padding-top:10px}.rt-tpg-container .owl-controls .owl-dots{margin-top:15px}.rt-popup-content .rt-tpg-container i{margin-right:5px}.rt-popup-content ol,.rt-popup-content ul{list-style-position:inside}.paginationjs{box-sizing:initial;font-family:Marmelad,Lucida Grande,Arial,Hiragino Sans GB,Georgia,sans-serif;font-size:14px;line-height:1.6}.paginationjs:after{clear:both;content:" ";display:table}.paginationjs .paginationjs-pages{float:left}.paginationjs .paginationjs-pages ul{float:left;margin:0;padding:0}.paginationjs .paginationjs-go-button,.paginationjs .paginationjs-go-input,.paginationjs .paginationjs-nav{float:left;font-size:14px;margin-left:10px}.paginationjs .paginationjs-pages li{border:1px solid #aaa;border-right:none;float:left;list-style:none}.paginationjs .paginationjs-pages li>a{background:#fff;color:#333;display:block;font-size:14px;height:28px;line-height:28px;min-width:30px;text-align:center;text-decoration:none}.paginationjs .paginationjs-pages li:hover>a{background:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd)!important;color:#fff!important}.paginationjs .paginationjs-pages li.active{border:none}.paginationjs .paginationjs-pages li.active>a{background:#aaa;color:#fff;height:30px;line-height:30px}.paginationjs .paginationjs-pages li.disabled>a{opacity:.3}.paginationjs .paginationjs-pages li.disabled>a:hover{background:0 0}.paginationjs .paginationjs-pages li:first-child,.paginationjs .paginationjs-pages li:first-child>a{border-radius:3px 0 0 3px}.paginationjs .paginationjs-pages li:last-child{border-radius:0 3px 3px 0;border-right:1px solid #aaa}.paginationjs .paginationjs-pages li:last-child>a{border-radius:0 3px 3px 0}.paginationjs .paginationjs-go-input>input[type=text]{box-sizing:initial;height:28px;padding:0;width:30px}.paginationjs .paginationjs-go-button>input[type=button],.paginationjs .paginationjs-go-input>input[type=text]{background:#fff;border:1px solid #aaa;border-radius:3px;box-shadow:none;font-size:14px;outline:0;text-align:center;vertical-align:baseline}.paginationjs .paginationjs-go-button>input[type=button]{color:#333;cursor:pointer;height:30px;line-height:28px;min-width:40px;padding:0 8px;vertical-align:middle\9}.paginationjs.paginationjs-theme-blue .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-blue .paginationjs-pages li{border-color:#289de9}.paginationjs .paginationjs-go-button>input[type=button]:hover{background-color:#f8f8f8}.paginationjs .paginationjs-nav{height:30px;line-height:30px}.paginationjs .paginationjs-go-button,.paginationjs .paginationjs-go-input{margin-left:5px\9}.paginationjs.paginationjs-small{font-size:12px}.paginationjs.paginationjs-small .paginationjs-pages li>a{font-size:12px;height:24px;line-height:24px;min-width:26px}.paginationjs.paginationjs-small .paginationjs-pages li.active>a{height:26px;line-height:26px}.paginationjs.paginationjs-small .paginationjs-go-input{font-size:12px}.paginationjs.paginationjs-small .paginationjs-go-input>input[type=text]{font-size:12px;height:24px;width:26px}.paginationjs.paginationjs-small .paginationjs-go-button{font-size:12px}.paginationjs.paginationjs-small .paginationjs-go-button>input[type=button]{font-size:12px;height:26px;line-height:24px;min-width:30px;padding:0 6px}.paginationjs.paginationjs-small .paginationjs-nav{font-size:12px;height:26px;line-height:26px}.paginationjs.paginationjs-big{font-size:16px}.paginationjs.paginationjs-big .paginationjs-pages li>a{font-size:16px;height:34px;line-height:34px;min-width:36px}.paginationjs.paginationjs-big .paginationjs-pages li.active>a{height:36px;line-height:36px}.paginationjs.paginationjs-big .paginationjs-go-input{font-size:16px}.paginationjs.paginationjs-big .paginationjs-go-input>input[type=text]{font-size:16px;height:34px;width:36px}.paginationjs.paginationjs-big .paginationjs-go-button{font-size:16px}.paginationjs.paginationjs-big .paginationjs-go-button>input[type=button]{font-size:16px;height:36px;line-height:34px;min-width:50px;padding:0 12px}.paginationjs.paginationjs-big .paginationjs-nav{font-size:16px;height:36px;line-height:36px}.paginationjs.paginationjs-theme-blue .paginationjs-pages li>a{color:#289de9}.paginationjs.paginationjs-theme-blue .paginationjs-pages li:hover>a{background:#e9f4fc}.paginationjs.paginationjs-theme-blue .paginationjs-pages li.active>a{background:#289de9;color:#fff}.paginationjs.paginationjs-theme-blue .paginationjs-pages li.disabled:hover>a{background:0 0}.paginationjs.paginationjs-theme-blue .paginationjs-go-button>input[type=button]{background:#289de9;border-color:#289de9;color:#fff}.paginationjs.paginationjs-theme-green .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-green .paginationjs-pages li{border-color:#449d44}.paginationjs.paginationjs-theme-blue .paginationjs-go-button>input[type=button]:hover{background-color:#3ca5ea}.paginationjs.paginationjs-theme-green .paginationjs-pages li>a{color:#449d44}.paginationjs.paginationjs-theme-green .paginationjs-pages li:hover>a{background:#ebf4eb}.paginationjs.paginationjs-theme-green .paginationjs-pages li.active>a{background:#449d44;color:#fff}.paginationjs.paginationjs-theme-green .paginationjs-pages li.disabled:hover>a{background:0 0}.paginationjs.paginationjs-theme-green .paginationjs-go-button>input[type=button]{background:#449d44;border-color:#449d44;color:#fff}.paginationjs.paginationjs-theme-yellow .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-yellow .paginationjs-pages li{border-color:#ec971f}.paginationjs.paginationjs-theme-green .paginationjs-go-button>input[type=button]:hover{background-color:#55a555}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li>a{color:#ec971f}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li:hover>a{background:#fdf5e9}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li.active>a{background:#ec971f;color:#fff}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li.disabled:hover>a{background:0 0}.paginationjs.paginationjs-theme-yellow .paginationjs-go-button>input[type=button]{background:#ec971f;border-color:#ec971f;color:#fff}.paginationjs.paginationjs-theme-red .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-red .paginationjs-pages li{border-color:#c9302c}.paginationjs.paginationjs-theme-yellow .paginationjs-go-button>input[type=button]:hover{background-color:#eea135}.paginationjs.paginationjs-theme-red .paginationjs-pages li>a{color:#c9302c}.paginationjs.paginationjs-theme-red .paginationjs-pages li:hover>a{background:#faeaea}.paginationjs.paginationjs-theme-red .paginationjs-pages li.active>a{background:#c9302c;color:#fff}.paginationjs.paginationjs-theme-red .paginationjs-pages li.disabled:hover>a{background:0 0}.paginationjs.paginationjs-theme-red .paginationjs-go-button>input[type=button]{background:#c9302c;border-color:#c9302c;color:#fff}.paginationjs.paginationjs-theme-red .paginationjs-go-button>input[type=button]:hover{background-color:#ce4541}.paginationjs .paginationjs-pages li.paginationjs-next{border-right:1px solid\9}.paginationjs .paginationjs-go-input>input[type=text]{line-height:28px\9;vertical-align:middle\9}.paginationjs.paginationjs-big .paginationjs-pages li>a{line-height:36px\9}.paginationjs.paginationjs-big .paginationjs-go-input>input[type=text]{height:36px\9;line-height:36px\9}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li:not(.paginationjs-next):not(.paginationjs-prev){display:none}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li{color:#fff}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li>a{background-color:var(--tpg-primary-color,#0d6efd);color:#fff}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li:hover a{background-color:var(--tpg-secondary-color,#0654c4)}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-page:nth-child(2){display:inline-block;pointer-events:none;position:relative}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-page:nth-child(2) a{pointer-events:none;text-indent:-99999px}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-page:nth-child(2):before{content:"\f100";font-family:Font Awesome\ 5 Free;font-weight:900;left:50%;opacity:.5;position:absolute;top:50%;transform:translate(-50%,-50%);z-index:99}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-prev+li{display:none!important}.rt-tpg-container button{border:none;padding:10px 15px}.rt-tpg-container .rt-tgp-load-more button{background:#8e8e8e;border-radius:4px}.rt-tpg-container .tpg-wc-product-filter{margin-bottom:15px;padding-right:15px;text-align:right}.rt-img-holder>a{display:block;text-align:center}.rt-img-responsive{display:block;height:auto;max-width:100%;transition:.4s ease-in-out}@media (max-width:991px){.rt-img-holder>a,.rt-img-responsive{width:100%}}.rt-tpg-container .no-margin{margin:0!important;padding:0!important}span.more-loading{background:url(../images/loading.gif) 100% no-repeat;display:inline-block;padding-right:20px}.rt-tgp-load-more,.rt-tgp-scroll-load-more{display:block;margin:30px 0 20px;text-align:center}.post-meta-tags,.post-meta-user{font-size:95%;line-height:1.5;margin-bottom:15px;padding:0}.post-meta-tags span,.post-meta-user span{display:inline-block;padding-right:8px}.post-meta-tags span.rt-separator,.post-meta-user span.rt-separator{display:inline-block;padding-right:5px}.post-meta-user span.comment-link{float:right;padding-right:0;text-align:right}.rt-holder .entry-title a{color:#000}.rt-tpg-container .rt-holder .post-meta.center .read-more{float:none}.rt-tpg-container .rt-holder .post-meta .rt-tpg-social-share{display:block;float:none;margin-bottom:15px;text-align:left;width:100%}.rt-tpg-container .rt-holder .post-meta.center .rt-tpg-social-share,.rt-tpg-container .rt-holder .post-meta.right .rt-tpg-social-share{text-align:left}.rt-tpg-container .rt-holder .read-more a{display:inline-block;font-size:15px;line-height:1.5}.rt-tpg-container .rt-holder .tpg-excerpt{margin-bottom:10px}.rt-tpg-container .tpg-iso-filter{margin:15px 0 45px;text-align:center}.rt-tpg-container .tpg-iso-filter input[type=text]{border-radius:3px;display:inline-block;margin-left:4px;padding:12px 10px}.rt-tpg-container .tpg-iso-filter>div{display:inline-block}.rt-tpg-container .rt-tpg-isotope-buttons .selected{background:var(--tpg-primary-color,#0d6efd)}.rt-tpg-container .rt-tpg-isotope-buttons button{background:#8e8e8e;border:none;border-radius:3px;box-shadow:none!important;color:#fff;font-size:15px;font-weight:400;line-height:1.8;margin:4px;outline:0;padding:8px 20px;text-shadow:none!important;text-transform:none}.rt-tpg-container .tpg-pre-loader{overflow:hidden;position:relative}.rt-tpg-container .rt-loading-overlay{background-color:#fff;height:100%;left:0;opacity:0;position:absolute;top:0;visibility:hidden;width:100%;z-index:1}.rt-tpg-container .rt-loading{color:var(--tpg-primary-color,#0d6efd);left:50%;margin-left:-16px;opacity:0;position:absolute;top:40%;visibility:hidden;z-index:2}.rt-tpg-container .tpg-pre-loader .rt-loading-overlay{opacity:.8;visibility:visible}.tpg-carousel-main .tpg-pre-loader .rt-loading-overlay{opacity:1}.rt-tpg-container .tpg-pre-loader .rt-loading{opacity:1;visibility:visible}.rt-ball-clip-rotate{color:#fff;display:block;font-size:0;height:32px;width:32px}.rt-ball-clip-rotate,.rt-ball-clip-rotate>div{box-sizing:border-box;position:relative}.rt-ball-clip-rotate>div{-webkit-animation:ball-clip-rotate .75s linear infinite;animation:ball-clip-rotate .75s linear infinite;background-color:currentColor;background:transparent;border-radius:100%;border:2px solid;border-bottom:2px solid transparent;display:inline-block;float:none;height:32px;width:32px}.rt-layout-filter-container.rt-clear:after{clear:both;content:"";display:block}.rt-clear::-ms-ticks-after,.rt-clear:after{clear:both;content:"";display:block}.rt-layout-filter-container{font-size:0;line-height:0;margin:-5px -5px 30px;padding:0}.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item{border:1px solid;display:inline-block;margin:4px;padding:8px 10px;transition:.4s}.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item.selected,.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item:hover{background:#222;color:#b4b4b4}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap{padding-right:82px}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper{margin-right:0;position:static;width:100%}.tpg-header-wrapper.carousel{align-items:center;display:flex;margin-bottom:30px;overflow:hidden}.section-title-style-default .tpg-header-wrapper.carousel,.section-title-style-style1 .tpg-header-wrapper.carousel{min-height:36px}.tpg-header-wrapper.carousel .swiper{overflow:hidden}.section-title-style-style2 .tpg-header-wrapper.carousel .swiper,.section-title-style-style3 .tpg-header-wrapper.carousel .swiper{height:51px;margin-bottom:-.5px}.tpg-header-wrapper.carousel .swiper .swiper-navigation{position:absolute;right:0;top:50%;transform:translateY(-50%);z-index:9}.tpg-header-wrapper.carousel .swiper .swiper-button-next,.tpg-header-wrapper.carousel .swiper .swiper-button-prev{margin-top:0;top:0}.tpg-header-wrapper.carousel .tpg-widget-heading-wrapper{flex:1;margin:0;padding-right:10px}.tpg-header-wrapper.carousel .rt-layout-filter-container{flex:0 0 60%;margin:0;max-width:60%}.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper{box-sizing:content-box;display:flex;height:100%;margin:0;position:relative;transition-property:transform;width:100%;z-index:1}.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide{align-items:center;border:none;color:#212121;display:flex;font-size:15px;height:auto;justify-content:center;margin:0;padding:0 10px;position:relative;text-align:center;text-transform:none;width:auto}.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:before,.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:before{border-bottom:7px solid var(--tpg-primary-color,#0d6efd);border-left:7px solid transparent;border-right:7px solid transparent;border-top:0 solid transparent;bottom:0;content:"";height:0;left:50%;opacity:0;position:absolute;transform:translateX(-50%);transition:all .3s ease;visibility:hidden;width:0}.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected:before,.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover:before,.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected:before,.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover:before{opacity:1;visibility:visible}.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected,.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover{color:var(--tpg-primary-color,#0d6efd)}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .filter-right-wrapper,.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .rt-author-filter{display:none}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.swiper-wrapper{letter-spacing:0}.tpg-header-wrapper.carousel .swiper-button-next.swiper-button-disabled,.tpg-header-wrapper.carousel .swiper-button-prev.swiper-button-disabled{opacity:1}.tpg-header-wrapper.carousel .swiper-button-next.swiper-button-disabled:after,.tpg-header-wrapper.carousel .swiper-button-prev.swiper-button-disabled:after{opacity:.35}.filter-button-border-enable .tpg-header-wrapper.carousel .rt-layout-filter-container{border:1px solid #ddd;border-radius:3px}.filter-button-border-enable .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide{padding:6px 15px;white-space:nowrap}.filter-button-border-enable .tpg-header-wrapper.carousel .swiper .swiper-navigation{right:3px}.filter-nex-prev-btn-hidden .tpg-header-wrapper.carousel .swiper .swiper-navigation{display:none}.filter-nex-prev-btn-hidden .tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap{margin-right:0}@media (max-width:767px){.tpg-header-wrapper.carousel{display:block}.tpg-header-wrapper.carousel .rt-layout-filter-container{margin-bottom:8px;margin-left:-9px;margin-top:10px;max-width:100%;position:relative}}.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item.selected,.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item:hover{background:none;color:#000}.rt-filter-item-wrap.rt-order-by-action,.rt-filter-item-wrap.rt-sort-order-action{float:right}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap{color:#666;cursor:pointer;display:inline-block;font-size:13px;letter-spacing:.1em;line-height:1.55;margin:4px;padding:8px 10px;position:relative;text-transform:uppercase;transition:background-color .2s ease-in-out,color .2s ease-in-out,border-color .2s ease-in-out;-webkit-transition:background-color .2s ease-in-out,color .2s ease-in-out,border-color .2s ease-in-out;-ms-transition:background-color .2s ease-in-out,color .2s ease-in-out,border-color .2s ease-in-out;-ms-user-select:none;user-select:none;-webkit-user-select:none;-moz-user-select:none;vertical-align:top}.rt-layout-filter-container .rt-filter-wrap .rt-filter-button-wrap{margin-left:0;margin-top:0;padding:0}@media (max-width:767px){.rt-layout-filter-container .rt-filter-wrap .rt-filter-button-wrap{display:inline}}.rt-layout-filter-container .rt-filter-wrap .rt-filter-button-item .rt-filter-sub-tax{display:none}.rt-layout-filter-container .rt-filter-sub-tax.sub-button-group{margin:0 4px}.rt-layout-filter-container .rt-filter-sub-tax.sub-button-group .rt-filter-button-item{cursor:pointer}.rt-layout-filter-container>.rt-filter-sub-tax.sub-button-group>span{border:1px solid;display:inline-block;font-size:13px;letter-spacing:.1em;line-height:1.55;margin:4px;padding:8px 10px;text-transform:uppercase;vertical-align:top}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap{border:1px solid #666;color:#666;position:relative}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap:hover{border-color:#222;color:#222}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-sort-order-action:hover{border-color:#222}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap>.rt-filter-dropdown-default{display:block;max-width:135px;min-width:135px;overflow:hidden;text-align:center;text-overflow:ellipsis;white-space:nowrap}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown{background-color:#222;border:none;border-top:1px solid transparent;display:block;left:-1px;margin-top:1px;opacity:0;position:absolute;right:-1px;top:100%;transition:opacity .3s ease-in-out,visibility .3s ease-in-out;-webkit-transition:opacity .3s ease-in-out,visibility .3s ease-in-out;-ms-transition:opacity .3s ease-in-out,visibility .3s ease-in-out;visibility:hidden;z-index:20}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap:hover .rt-filter-dropdown{border-top-color:#000}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown .rt-filter-dropdown-item.selected{background:#000}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap.active-dropdown .rt-filter-dropdown{opacity:1;visibility:visible}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap.active-dropdown .rt-arrow-angle{transform:rotate(180deg);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg)}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown .rt-filter-dropdown-item{border-bottom:1px solid rgba(0,0,0,.2);color:#b4b4b4;display:block;padding:10px 15px 9px;text-align:center}.rt-filter-dropdown-default .sub-dropdown-wrap,.rt-filter-dropdown-item .sub-dropdown-wrap{display:none!important}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-arrow-angle{backface-visibility:hidden;-webkit-backface-visibility:hidden;letter-spacing:0;transition:transform .2s ease-in-out;-webkit-transition:transform .2s ease-in-out;-ms-transition:transform .2s ease-in-out}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-sort-order-action{border:1px solid #666;color:#666;min-width:38px;position:relative}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow{position:static}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span{backface-visibility:hidden;-webkit-backface-visibility:hidden;display:block;height:8px;left:50%;margin-left:-7px;margin-top:-4px;position:absolute;top:50%;transition:transform .2s ease-in-out;-webkit-transition:transform .2s ease-in-out;-ms-transition:transform .2s ease-in-out;width:14px}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow[data-sort-order=ASC]>span{transform:rotate(180deg);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg)}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span:before{left:3px;transform:rotate(-45deg);-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg)}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span:after,.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span:before{background-color:#666;content:"";display:block;height:9px;position:absolute;top:0;transition:background-color .2s ease-in-out;-webkit-transition:background-color .2s ease-in-out;-ms-transition:background-color .2s ease-in-out;width:2px}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span:after{left:9px;transform:rotate(45deg);-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg)}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-search-filter-wrap{float:right;padding:0;position:relative}.rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:1px solid #666;color:#666;font-family:Dosis,sans-serif;font-size:12px;font-weight:600;height:39px;padding:11px}.rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input:focus{box-shadow:none;outline:none}.rt-filter-item-wrap.rt-search-filter-wrap span.rt-action{cursor:pointer;display:inline-block;font-size:15px;position:absolute;right:5px;top:6px}.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input::-webkit-input-placeholder{font-family:Dosis,sans-serif;font-size:12px;font-weight:600}.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input::-moz-placeholder{font-family:Dosis,sans-serif;font-size:12px;font-weight:600}.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input:-ms-input-placeholder{font-family:Dosis,sans-serif;font-size:12px;font-weight:600}.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input:-moz-placeholder{font-family:Dosis,sans-serif;font-size:12px;font-weight:600}@media (max-width:600px){.rt-filter-item-wrap.rt-tax-filter.rt-filter-dropdown-wrap{display:block;margin-bottom:10px}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap>.rt-filter-dropdown-default{margin:0 auto}}.rt-tpg-social-share.a{position:relative}body>.rt-tooltip{background:#666;border-radius:3px;border-width:2px;-o-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa;color:#fff;font-size:100%;opacity:0;padding:5px 10px;pointer-events:none;position:absolute;transition:opacity 1s ease-in-out;z-index:9999}body>.rt-tooltip .rt-tooltip-content{font-size:90%}body>.rt-tooltip,body>.rt-tooltip .rt-tooltip-bottom:after{background:#000;border-radius:2px}body>.rt-tooltip .rt-tooltip-bottom{bottom:-16px;height:18px;left:50%;margin-left:-32px;overflow:hidden;position:absolute;width:70px}body>.rt-tooltip .rt-tooltip-bottom:after{tranform:rotate(45deg);content:"";height:25px;left:20px;position:absolute;top:-20px;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);width:25px}.rt-tpg-container .rt-holder .rt-img-holder{overflow:hidden;position:relative}.rt-tpg-container .rt-holder .tpg-el-image-wrap{margin:-15px -15px 15px}.rt-tpg-container .list-behaviour .rt-holder .tpg-el-image-wrap{margin:0}.rt-tpg-container .img_zoom_out .rt-holder .rt-img-holder img:not(.avatar),.rt-tpg-container .rt-holder:hover .rt-img-holder img:not(.avatar){transform:scale(1.1)}.rt-tpg-container .img_no_effect .rt-holder:hover .rt-img-holder img,.rt-tpg-container .img_zoom_out .rt-holder:hover .rt-img-holder img{transform:scale(1)}.rt-tpg-container .rt-holder .rt-detail{padding:15px 15px 0}.rt-tpg-container .entry-title-wrapper .entry-title{font-size:26px;font-weight:500;line-height:1.25;margin:0 0 18px}@media (max-width:767px){.rt-tpg-container .entry-title-wrapper .entry-title{font-size:20px;margin:0 0 15px}}.rt-tpg-container .rt-detail .tpg-excerpt-inner,.rt-tpg-container .rt-holder .rt-detail .entry-title-wrapper{margin-bottom:15px}.rt-tpg-container .list-layout2 .rt-detail .tpg-excerpt-inner,.rt-tpg-container .list-layout3 .rt-detail .tpg-excerpt-inner{margin-bottom:0}.rt-tpg-container .rt-holder .rt-detail .post-meta{line-height:25px;overflow:hidden}.rt-tpg-container .rt-holder .rt-detail .read-more a{align-items:center;border:1px solid hsla(0,0%,80%,.4);display:inline-flex;flex-direction:row;flex-wrap:wrap;font-size:15px;justify-content:left;line-height:1.8;overflow:hidden;padding:8px 20px}.rt-tpg-container .rt-holder .rt-detail .read-more a:hover{border-color:#7a64f2;color:#7a64f2}.rt-tpg-container .rt-holder .rt-detail .read-more a{color:#1a1a1a}.rt-tpg-container .rt-holder .rt-detail .post-meta.right{text-align:right}.rt-tpg-container .rt-holder .rt-detail .post-meta.center{text-align:center}@-webkit-keyframes ball-scale-multiple{0%{opacity:0;transform:scale(0)}5%{opacity:.75}to{opacity:0;transform:scale(1)}}@keyframes ball-scale-multiple{0%{opacity:0;transform:scale(0)}5%{opacity:.75}to{opacity:0;transform:scale(1)}}@-webkit-keyframes ball-clip-rotate{0%{transform:rotate(0deg)}50%{transform:rotate(180deg)}to{transform:rotate(1turn)}}@keyframes ball-clip-rotate{0%{transform:rotate(0deg)}50%{transform:rotate(180deg)}to{transform:rotate(1turn)}}.rt-container-fluid{position:relative}#bottom-script-loader{background:hsla(0,0%,100%,.95);height:calc(100% + 60px);margin:-30px;position:absolute;width:calc(100% + 60px);z-index:999}#bottom-script-loader .rt-ball-clip-rotate{color:var(--tpg-primary-color,#0d6efd);margin-right:-16px;position:absolute;right:50%;top:80px;z-index:2}.tpg-widget-heading-wrapper{display:flex;margin-bottom:30px;position:relative}.tpg-widget-heading-wrapper .tpg-widget-heading{line-height:1;margin-bottom:-1px;margin-top:0;padding-right:15px;padding-top:0;position:relative}.search .tpg-widget-heading-wrapper .tpg-widget-heading{line-height:1.5}@meia (max-width: 767px){.tpg-widget-heading-wrapper .tpg-widget-heading{line-height:1.2}}.tpg-widget-heading-wrapper.center .tpg-widget-heading{margin:0;padding:0}.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading:before{background-color:var(--tpg-primary-color,#0d6efd);border-radius:50%;content:"";display:inline-block;height:8px;margin-right:7px;margin-top:-4px;position:absolute;right:-7.5px;top:50%;width:8px}.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-left,.tpg-widget-heading-wrapper.heading-style1.center .tpg-widget-heading:before{display:none}.tpg-widget-heading-wrapper.heading-style1.center .tpg-widget-heading-line.line-left{display:block;margin-left:0;margin-right:15px}.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line,.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line-left{-webkit-box-flex:1;align-self:center;border-color:#e5e5e5;border-style:solid;border-width:1px 0;flex-grow:1;height:4px;margin-left:15px}.tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading,.tpg-widget-heading-wrapper.heading-style3 .tpg-widget-heading{background-color:var(--tpg-primary-color,#0d6efd);color:#fff;line-height:1.4;margin-bottom:-.5px;padding:5px 15px}.tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading a,.tpg-widget-heading-wrapper.heading-style3 .tpg-widget-heading a{color:inherit}.tpg-widget-heading-wrapper.center{justify-content:center}.tpg-widget-heading-wrapper.right{flex-direction:row-reverse}.tpg-widget-heading-wrapper.right .tpg-widget-heading{padding-left:15px;padding-right:0}.tpg-widget-heading-wrapper.right .tpg-widget-heading:before{left:0;right:auto}.tpg-widget-heading-wrapper.right .tpg-widget-heading-line{margin-left:0;margin-right:15px}.tpg-el-main-wrapper .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:before,.tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:after{border-left:0 solid transparent;border-bottom:0 solid var(--tpg-primary-color,#0d6efd);border-right:12px solid transparent;border-top:12px solid var(--tpg-primary-color,#0d6efd);content:"";position:absolute;right:-11px;top:0}.section-title-align-center .tpg-el-main-wrapper .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:before,.tpg-widget-heading-wrapper.heading-style2.right .tpg-widget-heading:after{border-width:12px 0 0 12px;left:-11px;right:auto}.tpg-widget-heading-wrapper.heading-style2.center .tpg-widget-heading:after{content:none}.section-title-style-style2 .tpg-header-wrapper.carousel,.section-title-style-style2 .tpg-header-wrapper:not(.carousel) .tpg-widget-heading-wrapper,.section-title-style-style3 .tpg-header-wrapper.carousel,.section-title-style-style3 .tpg-header-wrapper:not(.carousel) .tpg-widget-heading-wrapper{border-bottom:2px solid var(--tpg-primary-color,#0d6efd)}.tpg-even,.tpg-full-height{display:flex;flex-wrap:wrap}@media (max-width:767px){.rt-content-loader .rt-holder,.tpg-even .rt-holder{flex-direction:column}}.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next>*{background-color:#bcbcbc;bottom:auto;color:#fff;cursor:pointer;display:inline-block;font-size:18px;height:30px;line-height:30px;margin-left:1px;margin-right:1px;text-align:center;transition:background-color .2s ease-in-out,color .2s ease-in-out,opacity .2s ease-in-out,visibility .2s ease-in-out;-webkit-transition:background-color .2s ease-in-out,color .2s ease-in-out,opacity .2s ease-in-out,visibility .2s ease-in-out;-ms-transition:background-color .2s ease-in-out,color .2s ease-in-out,opacity .2s ease-in-out,visibility .2s ease-in-out;width:30px}.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next>* i{line-height:1}.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next>.rt-disabled{opacity:.5;pointer-events:none}.rt-cb-page-prev-next{text-align:left}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style .rt-loadmore-loading{color:#fff;left:50%;margin-left:-32px;margin-top:-32px;opacity:0;position:absolute;top:50%;visibility:hidden}.rt-ball-scale-multiple.rt-2x,.rt-ball-scale-multiple.rt-2x>div{height:64px;width:64px}.rt-ball-scale-multiple,.rt-ball-scale-multiple>div{box-sizing:border-box;position:relative}.rt-ball-scale-multiple>div{background-color:currentColor;border:0 solid;display:inline-block;float:none}.rt-ball-scale-multiple>div:nth-child(2){-webkit-animation-delay:.2s;animation-delay:.2s}.rt-ball-scale-multiple>div{-webkit-animation:ball-scale-multiple 1s linear 0s infinite;animation:ball-scale-multiple 1s linear 0s infinite;border-radius:100%;height:32px;left:0;opacity:0;position:absolute;top:0;width:32px}.rt-tpg-container .rt-pagination-wrap{display:inline-block;margin-top:10px;text-align:center;width:100%}.tpg-el-main-wrapper .rt-pagination-wrap{display:flex;flex-direction:row;justify-content:center;margin-top:30px}.tpg-el-main-wrapper .rt-pagination-wrap .rt-pagination{margin:0}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style{cursor:pointer;position:relative;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next.rt-hidden-elm,.rt-tpg-container .rt-pagination-wrap .rt-infinite-action.rt-hidden-elm,.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style.rt-hidden-elm,.rt-tpg-container .rt-pagination-wrap .rt-page-numbers.rt-hidden-elm{display:none!important}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style.rt-lm-loading .rt-loadmore-text{opacity:0;visibility:hidden}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style.rt-lm-loading .rt-loadmore-loading{opacity:1;visibility:visible}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-btn{background-color:var(--tpg-primary-color,#0d6efd);color:#fff;display:inline-block;font-size:13px;letter-spacing:.1em;margin-top:30px;padding:9px 20px 8px;text-decoration:none;text-transform:uppercase;transition:color .2s ease-in-out,background-color .2s ease-in-out;-webkit-transition:color .2s ease-in-out,background-color .2s ease-in-out;-ms-transition:color .2s ease-in-out,background-color .2s ease-in-out}.rt-tpg-container .rt-loadmore-btn:hover{background-color:var(--tpg-secondary-color,#0654c4)}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages{float:none;padding-bottom:.1px;padding-top:.1px}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers.rt-lm-loading{opacity:.5;pointer-events:none}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul{float:none;font-size:0;line-height:0;margin:-2px;text-align:center}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li{border:none;display:inline-block;float:none;font-size:16px;line-height:1.55;min-height:45px;min-width:48px;padding:2px}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li>a{border:1px solid #dee2e6;border-radius:3px;color:#212121;display:block;font-size:16px;font-weight:400;letter-spacing:0;line-height:45px;min-height:45px;min-width:48px;padding-left:8px;padding-right:8px;text-decoration:none}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.active>a{background-color:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd);color:#fff}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.paginationjs-ellipsis{min-width:auto;padding:0}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.paginationjs-ellipsis a{background:none!important;border:none!important;color:#000!important;font-size:18px;min-width:auto;opacity:1;pointer-events:none!important}.rt-pagination{margin:30px 0;text-align:center}.rt-pagination .pagination-list{background:transparent;border-radius:4px;border-top:0;display:inline-block;padding-left:0}.rt-pagination .pagination-list a{box-shadow:none}.rt-pagination .pagination-list>li{display:inline-block;margin:2px}.rt-pagination .pagination-list>li>a,.rt-pagination .pagination-list>li>span{background-color:#fff;border:1px solid #ddd;border-radius:3px;color:#212121;display:block;line-height:45px;margin-left:-1px;min-height:45px;min-width:48px;padding:0 5px;position:relative;text-decoration:none;transition:.4s ease-in-out}.rt-pagination .pagination-list>li>a:focus,.rt-pagination .pagination-list>li>a:hover,.rt-pagination .pagination-list>li>span:focus,.rt-pagination .pagination-list>li>span:hover{background-color:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd);color:#fff;z-index:2}.rt-pagination .pagination-list>.active>a,.rt-pagination .pagination-list>.active>a:focus,.rt-pagination .pagination-list>.active>a:hover,.rt-pagination .pagination-list>.active>span,.rt-pagination .pagination-list>.active>span:focus,.rt-pagination .pagination-list>.active>span:hover{background-color:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd);color:#fff;cursor:default;z-index:3}.rt-pagination .pagination-list>.disabled>a,.rt-pagination .pagination-list>.disabled>a:focus,.rt-pagination .pagination-list>.disabled>a:hover,.rt-pagination .pagination-list>.disabled>span,.rt-pagination .pagination-list>.disabled>span:focus,.rt-pagination .pagination-list>.disabled>span:hover{background-color:#fff;border-color:#ddd;color:#212121;cursor:not-allowed}.rt-tpg-container .swiper-pagination-bullet{background:#d6d6d6;height:10px;opacity:1;width:10px}.rt-tpg-container .swiper-wrapper{padding-bottom:45px}.rt-tpg-container.slider-layout13-main .swiper-wrapper{padding-bottom:0}.rt-tpg-container .swiper-pagination-bullets.swiper-pagination-horizontal{bottom:0}.rt-tpg-container .swiper-pagination-bullet.swiper-pagination-bullet-active-main{background:#007bff}.rt-tpg-container>div{position:relative}.rt-tpg-container .slider-main-wrapper{opacity:0;position:relative}.rt-tpg-container .swiper-navigation .slider-btn{align-items:center;background-color:#fff;background-image:none;border:1px solid #e5e5e5;border-radius:3px;color:#2962ff;display:inline-flex;font-size:14px;height:32px;justify-content:center;position:absolute;transition:all .3s ease;-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;width:34px}.rt-tpg-container .tpg-header-wrapper .swiper-navigation .slider-btn,.slider-arrow-position-top-left .rt-tpg-container .swiper-navigation .slider-btn,.slider-arrow-position-top-right .rt-tpg-container .swiper-navigation .slider-btn{position:static}.rt-tpg-container .swiper-navigation .slider-btn:hover{background-color:#2962ff;border-color:#2962ff;color:#fff}.rt-tpg-container .swiper-navigation .slider-btn:focus{box-shadow:none;outline:0}.rt-tpg-container .swiper-navigation .slider-btn.swiper-button-next{margin-left:3px}.rt-tpg-container .swiper-navigation .swiper-button-next:after,.rt-tpg-container .swiper-navigation .swiper-button-prev:after{font-size:inherit}.rt-tpg-container .tpg-cf-group-title{font-size:16px;margin-bottom:0}.rt-tpg-container .tpg-cf-fields{font-size:95%;line-height:1.6;margin-top:0}.tpg-el-main-wrapper .tpg-cf-wrap{margin:10px 0 0}.rt-tpg-container .tpg-cf-wrap:empty{margin:0}.act-label-style-inline .tgp-cf-field-label{margin-right:8px;min-width:inherit}.act-label-style-inline .tgp-cf-field-label:after{content:":"}.act-label-style-block .tgp-cf-field-label{display:block!important;float:none;margin-right:0;min-width:inherit}.act-label-style-block .tpg-cf-fields{display:block;margin-bottom:5px}.rt-tpg-container .rt-holder .tgp-cf-field-value *{color:inherit;display:inline;margin:0;transition:none}.isotope-term-no-post{min-height:30px}.isotope-term-no-post p{display:none;margin-bottom:0}.tpg-el-main-wrapper.loading{min-height:300px;transition:.4s}.tpg-el-main-wrapper.loading:before{-webkit-animation:ball-clip-rotate .75s linear infinite;animation:ball-clip-rotate .75s linear infinite;background:transparent;border:2px solid;border-bottom:2px solid transparent;border-radius:100%;color:red;display:inline-block;float:none;height:32px;left:50%;position:absolute;top:50%;width:32px;z-index:9999999999}.tpg-shortcode-main-wrapper .even-grid-item,.tpg-shortcode-main-wrapper .masonry-grid-item{margin-bottom:30px}.tpg-shortcode-main-wrapper i{margin-right:5px}.tpg-shortcode-main-wrapper .product-more i{margin-right:0}.tpg-shortcode-main-wrapper .grid_hover1 .even-grid-item,.tpg-shortcode-main-wrapper .grid_hover1 .masonry-grid-item,.tpg-shortcode-main-wrapper .grid_hover2 .even-grid-item,.tpg-shortcode-main-wrapper .grid_hover2 .masonry-grid-item,.tpg-shortcode-main-wrapper .grid_hover3 .even-grid-item,.tpg-shortcode-main-wrapper .grid_hover3 .masonry-grid-item,.tpg-shortcode-main-wrapper .grid_hover4 .even-grid-item,.tpg-shortcode-main-wrapper .grid_hover4 .masonry-grid-item,.tpg-shortcode-main-wrapper .grid_hover5 .even-grid-item,.tpg-shortcode-main-wrapper .grid_hover5 .masonry-grid-item,.tpg-shortcode-main-wrapper .list_layout1 .even-grid-item,.tpg-shortcode-main-wrapper .list_layout1 .masonry-grid-item{margin-bottom:0}.layout3 .rt-img-responsive{display:inline-block}.list_layout2 .post-meta-tags,.list_layout2 .post-meta-user{color:#a5a6aa;font-size:14px}.rt-content-loader.layout14 .post-meta-tags,.rt-content-loader.layout14 .post-meta-user{margin-bottom:0}.offset06 .post-meta-tags span,.offset06 .post-meta-user span{color:#a5a6aa;font-size:14px;font-weight:500;padding-right:15px}.offset06 .post-meta-tags span a,.offset06 .post-meta-user span a{color:#444}.offset06 .post-meta-tags span a:hover,.offset06 .post-meta-user span a:hover{color:#2962ff}.tpg-shortcode-main-wrapper .rt-detail .entry-title a{text-decoration:none}.categories-links{display:inline-block;line-height:1.3}.tpg-shortcode-main-wrapper .rt-holder{overflow:hidden}.tpg-shortcode-main-wrapper .grid_hover6 .rt-grid-item{margin-bottom:4px;overflow:hidden;padding:0 2px}.tpg-shortcode-main-wrapper .grid_hover6 .rt-grid-item .post-img img,.tpg-shortcode-main-wrapper .grid_hover7 .rt-grid-item .post-img img{min-height:350px;-o-object-fit:cover;object-fit:cover}.grid_hover4 .rt-grid-item{padding:0}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-img-holder,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-img-holder,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-img-holder{overflow:hidden;position:relative}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-img-holder img,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-img-holder img,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-img-holder img{max-width:100%;transition:all 1.1s ease}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-img-holder:hover img,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-img-holder:hover img,.tpg-shortcode-main-wrapper .layout1 .img_zoom_out .rt-holder .rt-img-holder img,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-img-holder:hover img{transform:scale(1.1)}.tpg-shortcode-main-wrapper .layout1 .img_no_effect .rt-holder .rt-img-holder:hover img,.tpg-shortcode-main-wrapper .layout1 .img_zoom_out .rt-holder .rt-img-holder:hover img{transform:scale(1)}.tpg-shortcode-main-wrapper .carousel1 .rt-holder,.tpg-shortcode-main-wrapper .isotope1 .rt-holder,.tpg-shortcode-main-wrapper .layout1 .rt-holder{box-shadow:0 0 2px 0 rgba(0,0,0,.3);-webkit-box-shadow:0 0 2px 0 rgba(0,0,0,.3);-moz-box-shadow:0 0 2px 0 rgba(0,0,0,.3)}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail{background:#fff;padding:15px}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail h4,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail h4,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail h4{font-size:26px;font-weight:400;line-height:1.25;margin:0 0 18px}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail.rt-with-title h2,.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail.rt-with-title h3,.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail.rt-with-title h4,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail.rt-with-title h2,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail.rt-with-title h3,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail.rt-with-title h4,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail.rt-with-title h2,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail.rt-with-title h3,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail.rt-with-title h4{margin-bottom:15px}.tpg-shortcode-main-wrapper .rt-holder .rt-detail.rt-with-title{padding-top:0}.tpg-shortcode-main-wrapper .isotope1 .rt-detail .tpg-excerpt,.tpg-shortcode-main-wrapper .layout1 .rt-detail .tpg-excerpt{margin-bottom:20px}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail .post-meta,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail .post-meta,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail .post-meta{line-height:25px;overflow:hidden}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail .read-more a,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail .read-more a,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail .read-more a{border:1px solid hsla(0,0%,80%,.4);color:#1a1a1a;display:inline-block;font-size:15px;line-height:1.8;padding:8px 20px}.tpg-shortcode-main-wrapper .rt-holder .rt-detail .post-meta.right{text-align:right}.tpg-shortcode-main-wrapper .rt-holder .rt-detail .post-meta.center{text-align:center}.tpg-img-circle .rt-img-holder img{border-radius:50%!important}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-img-holder{overflow:hidden;position:relative}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-img-holder img{max-width:100%;transition:all 1.1s ease}.tpg-shortcode-main-wrapper .layout2 .img_zoom_out .rt-holder .rt-img-holder img,.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-img-holder:hover img{transform:scale(1.1)}.tpg-shortcode-main-wrapper .layout2 .img_no_effect .rt-holder .rt-img-holder:hover img,.tpg-shortcode-main-wrapper .layout2 .img_no_effect .rt-holder .rt-img-holder img,.tpg-shortcode-main-wrapper .layout2 .img_zoom_out .rt-holder .rt-img-holder:hover img{transform:scale(1)}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail h4{font-size:26px;font-weight:400;line-height:1.25;margin:0 0 15px}.tpg-shortcode-main-wrapper .layout2 .rt-detail .tpg-excerpt{margin-bottom:20px}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .read-more a{border-radius:5px;display:inline-block;line-height:1.8}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .read-more{display:inline-block;width:100%}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .read-more.right{text-align:right}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .read-more.center{text-align:center}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .rt-tpg-social-share{margin-bottom:15px}@media (max-width:767px){.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail,.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail{padding:15px 0}}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail p{margin-bottom:20px}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail h4{font-size:26px;font-weight:400;line-height:1.25;margin:0 0 18px}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-img-holder .overlay{background:rgba(0,0,0,.7);display:block;height:100%;opacity:0;position:absolute;text-align:center;transition:all .3s ease-out 0s;width:100%;z-index:1}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .read-more a{display:inline-block;line-height:1.8}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-img-holder,.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-img-holder>a.rounded img{border-radius:50%;overflow:hidden}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .read-more{display:inline-block;width:100%}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .read-more.right{text-align:right}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .read-more.center{text-align:center}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .rt-tpg-social-share{margin-bottom:15px}.tpg-shortcode-main-wrapper .carousel2 .rt-holder,.tpg-shortcode-main-wrapper .isotope2 .rt-holder,.tpg-shortcode-main-wrapper .layout5 .rt-holder,.tpg-shortcode-main-wrapper .offset03 .rt-holder{overflow:hidden;position:relative}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay{background:rgba(235,0,0,.8);bottom:0;display:block;height:25%;left:0;min-height:150px;opacity:1;padding:20px;position:absolute;transition:all 1s ease;width:100%;z-index:1}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .rt-detail,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .rt-detail,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .rt-detail{color:#fff;max-height:0;opacity:0;padding:0;transition:all .8s ease-in-out;visibility:hidden}.tpg-shortcode-main-wrapper .carousel2 .rt-holder:hover .overlay .rt-detail,.tpg-shortcode-main-wrapper .isotope2 .rt-holder:hover .overlay .rt-detail,.tpg-shortcode-main-wrapper .layout5 .rt-holder:hover .overlay .rt-detail{max-height:450px;transition:all 1.2s ease-in-out .2s}.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .rt-detail{color:#fff;padding:0 0 15px}.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .rt-detail>:not(.post-meta-user){opacity:0;visibility:hidden}.tpg-shortcode-main-wrapper .offset03 .rt-holder:hover .overlay .rt-detail>:not(.post-meta-user){opacity:1;visibility:visible}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .post-meta-user a,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .post-meta-user a,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .post-meta-user a,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .post-meta-user a{color:#fff}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h2,.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h3,.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h4,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h2,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h3,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h4,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h2,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h3,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h4,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h2,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h3,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h4{color:#fff;font-size:22px;font-weight:400;line-height:1.3;margin:0 0 10px}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h2 a,.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h3 a,.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h4 a,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h2 a,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h3 a,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h4 a,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h2 a,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h3 a,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h4 a,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h2 a,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h3 a,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h4 a{color:#fff}.tpg-shortcode-main-wrapper .carousel2 .rt-holder:hover .overlay,.tpg-shortcode-main-wrapper .isotope2 .rt-holder:hover .overlay,.tpg-shortcode-main-wrapper .layout5 .rt-holder:hover .overlay,.tpg-shortcode-main-wrapper .offset03 .rt-holder:hover .overlay{height:100%;width:100%}.tpg-shortcode-main-wrapper .carousel2 .rt-holder:hover .overlay .rt-detail,.tpg-shortcode-main-wrapper .isotope2 .rt-holder:hover .overlay .rt-detail,.tpg-shortcode-main-wrapper .layout5 .rt-holder:hover .overlay .rt-detail,.tpg-shortcode-main-wrapper .offset03 .rt-holder:hover .overlay .rt-detail{opacity:1;visibility:visible}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .post-meta-user{display:block}.tpg-shortcode-main-wrapper .isotope2 .rt-holder .post-meta,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .post-meta .rt-tpg-social-share{text-align:center}.tpg-shortcode-main-wrapper .isotope2 .rt-holder .post-meta.left{text-align:left}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay>:not(.entry-title),.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .rt-detail,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay>:not(.entry-title){max-height:0;opacity:0;overflow:hidden;transition:.6s!important}.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .overlay>:not(.entry-title),.tpg-shortcode-main-wrapper .layout5 .rt-holder:hover .overlay .rt-detail,.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .overlay>:not(.entry-title){max-height:300px;opacity:1}.tpg-shortcode-main-wrapper .layout5 .rt-holder{display:flex;min-height:250px}.tpg-shortcode-main-wrapper .layout5 .rt-holder .rt-img-responsive{height:100%;-o-object-fit:cover;object-fit:cover}.tpg-shortcode-main-wrapper .carousel3 .rt-holder,.tpg-shortcode-main-wrapper .isotope3 .rt-holder,.tpg-shortcode-main-wrapper .layout6 .rt-holder{position:relative}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay{align-items:center;background:rgba(0,0,0,.7);display:flex;flex-direction:column;height:100%;justify-content:center;opacity:0;padding:15px;position:absolute;text-align:center;text-decoration:none;transition:all .3s ease-out;width:100%;z-index:9}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .line,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .line,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .line{background-color:#fff;height:2px;margin:12px auto;min-height:2px;transition:all .5s ease-out;width:0}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay:hover .line,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay:hover .line,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay:hover .line{width:40%}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h2,.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h3,.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h4,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h2,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h3,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h4,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h2,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h3,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h4{color:#fff;font-size:22px;font-weight:400;line-height:1.25;margin:0 0 18px;padding-top:5%}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h2 a,.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h3 a,.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h4 a,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h2 a,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h3 a,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h4 a,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h2 a,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h3 a,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h4 a{color:#fff}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta.left,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta.left,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta.left{text-align:left}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta.right,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta.right,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta.right{text-align:right}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .rt-tpg-social-share,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .rt-tpg-social-share,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .rt-tpg-social-share{float:none;text-align:center}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .read-more,.tpg-shortcode-main-wrapper .layout6 .rt-holder .read-more{float:none}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta-user{color:#fff}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta-user p,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta-user p,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta-user p{margin-bottom:0}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta-user a,.tpg-shortcode-main-wrapper .carousel3 .rt-holder:hover .overlay .tpg-excerpt,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta-user a,.tpg-shortcode-main-wrapper .isotope3 .rt-holder:hover .overlay .tpg-excerpt,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta-user a,.tpg-shortcode-main-wrapper .layout6 .rt-holder:hover .overlay .tpg-excerpt{color:#fff}.tpg-shortcode-main-wrapper .carousel3 .rt-holder:hover .overlay,.tpg-shortcode-main-wrapper .isotope3 .rt-holder:hover .overlay,.tpg-shortcode-main-wrapper .layout6 .rt-holder:hover .overlay{opacity:1}.tpg-shortcode-main-wrapper .carousel4 .rt-holder,.tpg-shortcode-main-wrapper .isotope4 .rt-holder,.tpg-shortcode-main-wrapper .layout7 .rt-holder{position:relative}.tpg-shortcode-main-wrapper .carousel4 .rt-holder img,.tpg-shortcode-main-wrapper .isotope4 .rt-holder img,.tpg-shortcode-main-wrapper .layout7 .rt-holder img{opacity:.9;transition:opacity .35s}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay{align-items:center;background:rgba(0,0,0,.3);display:flex;flex-direction:column;height:100%;justify-content:center;left:0;padding:0 12px;position:absolute;top:0;width:100%}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay:hover,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay:hover,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay:hover{background:rgba(0,0,0,.5)}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay:before,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay:before,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay:before{border:2px solid #fff;bottom:20px;box-shadow:0 0 0 30px hsla(0,0%,100%,.2);content:"";left:20px;opacity:0;position:absolute;right:20px;top:20px;transform:scale3d(1.4,1.4,1);transition:opacity .35s,transform .35s}.tpg-shortcode-main-wrapper .carousel7 .rt-holder .cat-above-title,.tpg-shortcode-main-wrapper .carousel11 .rt-holder .post-info .cat-above-title,.tpg-shortcode-main-wrapper .carousel12 .rt-holder .post-info .cat-above-title{color:#fff;text-align:center}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .cat-above-title,.tpg-shortcode-main-wrapper .carousel5 .rt-holder .cat-above-title{color:#fff;margin-top:30px;opacity:0;text-align:center}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .cat-above-title a,.tpg-shortcode-main-wrapper .carousel5 .rt-holder .cat-above-title a,.tpg-shortcode-main-wrapper .carousel7 .rt-holder .cat-above-title a,.tpg-shortcode-main-wrapper .carousel8 .rt-holder .cat-above-title *,.tpg-shortcode-main-wrapper .carousel12 .rt-holder .post-info .cat-above-title *{color:inherit}.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .cat-above-title,.tpg-shortcode-main-wrapper .carousel5 .rt-holder:hover .cat-above-title{opacity:1}.tpg-shortcode-main-wrapper .carousel5 .rt-holder:hover .cat-above-title+.entry-title,.tpg-shortcode-main-wrapper .carousel11 .rt-holder .post-info .cat-above-title,.tpg-shortcode-main-wrapper .carousel12 .rt-holder .post-info .cat-above-title{padding-top:10px}.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .cat-above-title+.entry-title{margin-top:10px}.tpg-shortcode-main-wrapper .carousel4 .rt-holder h2,.tpg-shortcode-main-wrapper .carousel4 .rt-holder h3,.tpg-shortcode-main-wrapper .carousel4 .rt-holder h4,.tpg-shortcode-main-wrapper .isotope4 .rt-holder h2,.tpg-shortcode-main-wrapper .isotope4 .rt-holder h3,.tpg-shortcode-main-wrapper .isotope4 .rt-holder h4,.tpg-shortcode-main-wrapper .layout7 .rt-holder h2,.tpg-shortcode-main-wrapper .layout7 .rt-holder h3,.tpg-shortcode-main-wrapper .layout7 .rt-holder h4{color:#fff;font-size:22px;font-weight:400;line-height:1.25;margin:30% 0 10px;text-align:center;transition:transform .35s}.tpg-shortcode-main-wrapper .carousel4 .rt-holder h2 a,.tpg-shortcode-main-wrapper .carousel4 .rt-holder h3 a,.tpg-shortcode-main-wrapper .carousel4 .rt-holder h4 a,.tpg-shortcode-main-wrapper .isotope4 .rt-holder h2 a,.tpg-shortcode-main-wrapper .isotope4 .rt-holder h3 a,.tpg-shortcode-main-wrapper .isotope4 .rt-holder h4 a,.tpg-shortcode-main-wrapper .layout7 .rt-holder h2 a,.tpg-shortcode-main-wrapper .layout7 .rt-holder h3 a,.tpg-shortcode-main-wrapper .layout7 .rt-holder h4 a{color:#fff}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .tpg-excerpt,.tpg-shortcode-main-wrapper .carousel4 .rt-holder p,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .tpg-excerpt,.tpg-shortcode-main-wrapper .isotope4 .rt-holder p,.tpg-shortcode-main-wrapper .layout7 .rt-holder .tpg-excerpt,.tpg-shortcode-main-wrapper .layout7 .rt-holder p{color:#fff;opacity:0;padding:0 15px;text-align:center;transform:scale(1.5);transition:opacity .35s,transform .35s}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .post-meta-user p,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .post-meta-user p,.tpg-shortcode-main-wrapper .layout7 .rt-holder .post-meta-user p{margin-bottom:0}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .post-meta-user a,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .post-meta-user a,.tpg-shortcode-main-wrapper .layout7 .rt-holder .post-meta-user a{color:#fff}.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover h3,.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover h3,.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover h3{margin:7% 0 10px;transform:scale(.9)}.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .overlay:before,.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .tpg-excerpt,.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover p,.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover .overlay:before,.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover .tpg-excerpt,.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover p,.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .overlay:before,.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .tpg-excerpt,.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover p{opacity:1;transform:scaleX(1)}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay .post-meta,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay .post-meta,.tpg-shortcode-main-wrapper .layout7 .rt-holder .cat-above-title,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .post-meta{color:#fff;opacity:0;overflow:hidden;text-align:center}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay .post-meta.left,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay .post-meta.left,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .post-meta.left{text-align:left}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay .post-meta.right,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay .post-meta.right,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .post-meta.right{text-align:right}.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .overlay .post-meta,.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover .overlay .post-meta,.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .cat-above-title,.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .overlay .post-meta{opacity:1;transform:scale(1);transition:opacity .35s,transform .35s}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay .rt-tpg-social-share,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay .rt-tpg-social-share,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .rt-tpg-social-share{float:none;text-align:center}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .read-more,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .read-more,.tpg-shortcode-main-wrapper .layout7 .rt-holder .read-more{float:none}.tpg-shortcode-main-wrapper .carousel4 .rt-holder h3,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .entry-title{margin:0!important;transition:.4s}.tpg-shortcode-main-wrapper .carousel8 .rt-holder,.tpg-shortcode-main-wrapper .isotope8 .rt-holder,.tpg-shortcode-main-wrapper .layout12 .rt-holder{background:#fff;box-shadow:0 1px 2px 0 rgba(0,0,0,.22)}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-img-holder,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-img-holder,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-img-holder{overflow:hidden;position:relative}.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover img,.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover img,.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover img{transform:scale(1.05);-webkit-transform:scale(1.05);-moz-transform:scale(1.05);-ms-transform:scale(1.05);-o-transform:scale(1.05);-webkit-transition:all .25s ease-in-out}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail{background:#fff;display:inline-block;padding:25px;transition:all .3s ease-out 0s;width:100%}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail.rt-with-title,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail.rt-with-title,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail.rt-with-title{padding-bottom:0;padding-top:0}.tpg-shortcode-main-wrapper .carousel8 .rt-holder.rt-with-title-below h2.entry-title,.tpg-shortcode-main-wrapper .carousel8 .rt-holder.rt-with-title-below h3.entry-title,.tpg-shortcode-main-wrapper .carousel8 .rt-holder.rt-with-title-below h4.entry-title,.tpg-shortcode-main-wrapper .isotope8 .rt-holder.rt-with-title-below h2.entry-title,.tpg-shortcode-main-wrapper .isotope8 .rt-holder.rt-with-title-below h3.entry-title,.tpg-shortcode-main-wrapper .isotope8 .rt-holder.rt-with-title-below h4.entry-title,.tpg-shortcode-main-wrapper .layout12 .rt-holder.rt-with-title-below h2.entry-title,.tpg-shortcode-main-wrapper .layout12 .rt-holder.rt-with-title-below h3.entry-title,.tpg-shortcode-main-wrapper .layout12 .rt-holder.rt-with-title-below h4.entry-title{margin-top:0}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail.rt-with-title .entry-title,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail.rt-with-title .entry-title,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail.rt-with-title .entry-title{display:inline-block}.tpg-shortcode-main-wrapper .carousel8 .rt-holder.rt-with-title .post-meta-user,.tpg-shortcode-main-wrapper .isotope8 .rt-holder.rt-with-title .post-meta-user,.tpg-shortcode-main-wrapper .layout12 .rt-holder.rt-with-title .post-meta-user{margin-bottom:15px}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h4,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h4,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h4{font-size:22px;font-weight:400;line-height:1.25;margin:15px 0}.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h4{font-weight:500}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h2 a,.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h3 a,.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h4 a,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h2 a,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h3 a,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h4 a,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h2 a,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h3 a,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h4 a{color:#000}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h2 a:hover,.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h3 a:hover,.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h4 a:hover,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h2 a:hover,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h3 a:hover,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h4 a:hover,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h2 a:hover,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h3 a:hover,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h4 a:hover{color:#fff}.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail{flex-grow:1}.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail,.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail,.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover .rt-detail{background:#0850d0;color:#fff}.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail a,.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail a,.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover .rt-detail a{color:#fff}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail .read-more,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail .read-more,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail .read-more{text-align:right}.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail .post-meta-user,.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail .post-meta-user .meta-data,.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail .post-meta-user a,.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail .post-meta-user i[class^=fa],.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail h3 a,.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail .post-meta-user,.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail .post-meta-user .meta-data,.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail .post-meta-user a,.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail .post-meta-user i[class^=fa],.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover .rt-detail .post-meta-user,.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover .rt-detail .post-meta-user a,.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover .rt-detail i{color:#fff!important}@media (min-width:992px){.rt-container{width:970px}}@media (min-width:1200px){.rt-container{width:1170px}}@media (max-width:767px){.hidden-xs{display:none!important}}@media screen and (max-width:768px){.rt-member-description-container,.rt-member-feature-img{float:none;width:100%}}@media (min-width:768px){.rt-col-sm-1,.rt-col-sm-2,.rt-col-sm-3,.rt-col-sm-4,.rt-col-sm-5,.rt-col-sm-6,.rt-col-sm-7,.rt-col-sm-8,.rt-col-sm-9,.rt-col-sm-10,.rt-col-sm-11,.rt-col-sm-12,.rt-col-sm-24{float:left}.rt-col-sm-24{width:20%}.rt-col-sm-12{width:100%}.rt-col-sm-11{width:91.66666667%}.rt-col-sm-10{width:83.33333333%}.rt-col-sm-9{width:75%}.rt-col-sm-8{width:66.66666667%}.rt-col-sm-7{width:58.33333333%}.rt-col-sm-6{width:50%}.rt-col-sm-5{width:41.66666667%}.rt-col-sm-4{width:33.33333333%}.rt-col-sm-3{width:25%}.rt-col-sm-2{width:16.66666667%}.rt-col-sm-1{width:8.33333333%}}@media (min-width:992px){.rt-col-md-1,.rt-col-md-2,.rt-col-md-3,.rt-col-md-4,.rt-col-md-5,.rt-col-md-6,.rt-col-md-7,.rt-col-md-8,.rt-col-md-9,.rt-col-md-10,.rt-col-md-11,.rt-col-md-12,.rt-col-md-24{float:left}.rt-col-md-24{width:20%}.rt-col-md-12{width:100%}.rt-col-md-11{width:91.66666667%}.rt-col-md-10{width:83.33333333%}.rt-col-md-9{width:75%}.rt-col-md-8{width:66.66666667%}.rt-col-md-7{width:58.33333333%}.rt-col-md-6{width:50%}.rt-col-md-5{width:41.66666667%}.rt-col-md-4{width:33.33333333%}.rt-col-md-3{width:25%}.rt-col-md-2{width:16.66666667%}.rt-col-md-1{width:8.33333333%}}@media (min-width:1200px){.rt-col-lg-1,.rt-col-lg-2,.rt-col-lg-3,.rt-col-lg-4,.rt-col-lg-5,.rt-col-lg-6,.rt-col-lg-7,.rt-col-lg-8,.rt-col-lg-9,.rt-col-lg-10,.rt-col-lg-11,.rt-col-lg-12{float:left}.rt-col-lg-24{width:20%}.rt-col-lg-12{width:100%}.rt-col-lg-11{width:91.66666667%}.rt-col-lg-10{width:83.33333333%}.rt-col-lg-9{width:75%}.rt-col-lg-8{width:66.66666667%}.rt-col-lg-7{width:58.33333333%}.rt-col-lg-6{width:50%}.rt-col-lg-5{width:41.66666667%}.rt-col-lg-4{width:33.33333333%}.rt-col-lg-3{width:25%}.rt-col-lg-2{width:16.66666667%}.rt-col-lg-1{width:8.33333333%}}.rt-img-holder{overflow:hidden}.layout4 .rt-img-holder,.layout4 .rt-img-holder a,.layout4 .rt-img-holder img{height:100%}.img_zoom_in img.rt-img-responsive,.img_zoom_out img.rt-img-responsive{min-width:100%;transition:all 1s!important}.img_zoom_in:hover img.rt-img-responsive,.img_zoom_out img.rt-img-responsive{transform:scale(1.2)!important}.img_zoom_out:hover img.rt-img-responsive{transform:scale(1)!important}.tpg-shortcode-main-wrapper .img_no_effect:hover img.rt-img-responsive{transform:none}.tpg-even .rt-holder{display:flex;height:100%}.tpg-even.edd1 .rt-holder,.tpg-even.layout1 .rt-holder,.tpg-even.layout12 .rt-holder,.tpg-even.offset01 .offset-big .rt-holder,.tpg-even.offset02 .offset-big .rt-holder{flex-direction:column}.tpg-even.edd1 .rt-holder .rt-img-holder,.tpg-even.layout1 .rt-holder .rt-img-holder,.tpg-even.layout11 .rt-holder .rt-img-holder,.tpg-even.layout11 .rt-holder .rt-img-holder *{height:auto}@media (min-width:768px) and (max-width:991px){.tpg-even.layout4 .even-grid-item:nth-of-type(4n+2) .rt-holder [class*=rt-col]:first-child,.tpg-even.layout4 .even-grid-item:nth-of-type(4n+3) .rt-holder [class*=rt-col]:first-child{order:2}}@media (max-width:767px){.tpg-even.layout4 .even-grid-item .rt-holder .layoutInner-img{order:-1!important}}.tpg-shortcode-main-wrapper .rt-holder .overlay,.tpg-shortcode-main-wrapper .rt-holder .overlay>a[data-id],.tpg-shortcode-main-wrapper .rt-holder>a[data-id]{width:100%}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay,.tpg-shortcode-main-wrapper .carousel5 .rt-holder .overlay,.tpg-shortcode-main-wrapper .carousel7 .rt-holder .overlay .post-info,.tpg-shortcode-main-wrapper .carousel11 .rt-holder .overlay .post-info .tpg-shortcode-main-wrapper .layout13 .rt-holder .overlay .post-info,.tpg-shortcode-main-wrapper .carousel11 .rt-holder .post-info,.tpg-shortcode-main-wrapper .carousel12 .rt-holder .post-info,.tpg-shortcode-main-wrapper .isotope2 .rt-holder:hover .overlay,.tpg-shortcode-main-wrapper .isotope5 .rt-holder .overlay,.tpg-shortcode-main-wrapper .isotope7 .rt-holder .post-info,.tpg-shortcode-main-wrapper .isotope9 .rt-holder .overlay .post-info,.tpg-shortcode-main-wrapper .isotope11 .rt-holder .overlay .post-info,.tpg-shortcode-main-wrapper .isotope12 .rt-holder .post-info,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay,.tpg-shortcode-main-wrapper .layout8 .rt-holder .overlay,.tpg-shortcode-main-wrapper .layout10 .rt-holder .overlay .post-info,.tpg-shortcode-main-wrapper .layout15 .rt-holder .overlay .post-info,.tpg-shortcode-main-wrapper .layout16 .rt-holder .overlay .post-info{display:flex;flex-direction:column;justify-content:center}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .read-more a,.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .read-more a,.tpg-shortcode-main-wrapper .carousel4 .rt-holder .read-more a,.tpg-shortcode-main-wrapper .carousel5 .rt-holder .overlay .post-info .read-more a,.tpg-shortcode-main-wrapper .carousel7 .rt-holder .overlay .post-info .read-more a,.tpg-shortcode-main-wrapper .carousel9 .rt-holder .overlay .post-info .read-more a,.tpg-shortcode-main-wrapper .carousel11 .rt-holder .post-info .read-more a,.tpg-shortcode-main-wrapper .carousel12 .rt-holder .post-info .read-more a,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .post-meta .read-more a,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .read-more a,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .post-meta .read-more a,.tpg-shortcode-main-wrapper .isotope5 .rt-holder .overlay .post-meta .read-more a,.tpg-shortcode-main-wrapper .isotope9 .rt-holder .overlay .post-info .read-more a,.tpg-shortcode-main-wrapper .isotope11 .rt-holder .overlay .post-info .read-more a,.tpg-shortcode-main-wrapper .isotope12 .rt-holder .post-info .read-more a,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .read-more a,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .read-more a,.tpg-shortcode-main-wrapper .layout7 .rt-holder .read-more a,.tpg-shortcode-main-wrapper .layout8 .rt-holder .read-more a,.tpg-shortcode-main-wrapper .layout10 .rt-holder .read-more a,.tpg-shortcode-main-wrapper .layout13 .rt-holder .read-more a,.tpg-shortcode-main-wrapper .layout15 .rt-holder .read-more a,.tpg-shortcode-main-wrapper .layout16 .rt-holder .read-more a,.tpg-shortcode-main-wrapper .offset03 .rt-holder .post-meta .read-more a{border:1px solid hsla(0,0%,100%,.4);padding:8px 15px}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta,.tpg-shortcode-main-wrapper .isotope12 .rt-holder .post-info .post-meta .rt-tpg-social-share,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta{color:#fff;overflow:hidden;text-align:center}.tpg-even.grid-behaviour{align-items:flex-start}.grid-layout2.tpg-even,.grid-layout6 .tpg-even.grid-behaviour,.tpg-full-height{align-items:inherit}.tpg-el-main-wrapper .tpg-post-holder{height:100%}.grid_hover-layout9-2-main .tpg-even .rt-holder,.grid_hover-layout9-main .tpg-even .rt-holder,.list-layout1-main .tpg-even .rt-holder{display:block}.rt-el-post-meta span.author{margin-bottom:2px}.rt-tpg-container .rt-detail .tpg-excerpt{margin-top:-5px}.tpg-el-main-wrapper .slider_layout_wrapper .tpg-post-holder{margin-top:1px}.tpg-el-main-wrapper .grid-layout5 .tpg-post-holder,.tpg-el-main-wrapper .grid-layout6 .tpg-post-holder,.tpg-el-main-wrapper .slider_layout_wrapper .tpg-post-holder{height:auto}.rt-tpg-container .rt-el-content-wrapper{transition:background-color .4s ease-in-out}.rt-tpg-container .tpg-post-holder .read-more a,.rt-tpg-social-share a i,.tpg-el-main-wrapper .post-meta-tags a,.tpg-el-main-wrapper .post-meta-tags img,.tpg-el-main-wrapper .post-meta-tags span,.tpg-el-main-wrapper .rt-holder:hover .post-meta-tags i,.tpg-el-main-wrapper .tpg-el-excerpt,.tpg-el-main-wrapper .tpg-el-excerpt *,.tpg-el-main-wrapper .tpg-el-image-wrap .overlay,.tpg-el-main-wrapper .tpg-el-image-wrap img,.tpg-el-main-wrapper .tpg-post-holder,.tpg-separate-category .categories-links,.tpg-separate-category .categories-links i{transition:.4s ease-in-out}.tpg-el-main-wrapper .rt-content-loader [class*=rt-col]{margin-top:0;padding-bottom:30px}.tpg-el-main-wrapper .entry-title a{color:inherit}.tpg-el-main-wrapper .entry-title a:hover{color:var(--tpg-primary-color,#0d6efd)}.tpg-widget-heading-wrapper .tpg-widget-heading a{color:inherit}.section-title-align-center .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-left,.section-title-align-right .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-left{display:block;margin-left:0;margin-right:15px}.section-title-align-center .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading:before{display:none}.section-title-align-center .tpg-widget-heading-wrapper .tpg-widget-heading{margin-right:0!important}.section-title-align-right .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-right{display:none}.section-title-align-right .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading{padding-left:15px;padding-right:0}.section-title-align-right .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading:before{left:0;right:auto}.section-title-align-left .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:before{display:none}.section-title-align-left .tpg-widget-heading-wrapper.heading-default,.section-title-align-left .tpg-widget-heading-wrapper.heading-style2,.section-title-align-left .tpg-widget-heading-wrapper.heading-style3{justify-content:flex-start}.section-title-align-center .tpg-widget-heading-wrapper.heading-default,.section-title-align-center .tpg-widget-heading-wrapper.heading-style2,.section-title-align-center .tpg-widget-heading-wrapper.heading-style3{justify-content:center}.section-title-align-right .tpg-widget-heading-wrapper.heading-default,.section-title-align-right .tpg-widget-heading-wrapper.heading-style2,.section-title-align-right .tpg-widget-heading-wrapper.heading-style3{justify-content:flex-end}.section-title-align-right .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:after{display:none}.title-one-line .entry-title,.title-three-line .entry-title,.title-two-line .entry-title{-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;text-overflow:ellipsis}.title-one-line .entry-title{-webkit-line-clamp:1}.title-two-line .entry-title{-webkit-line-clamp:2}.title-three-line .entry-title{-webkit-line-clamp:3}.rt-tpg-container .rt-el-post-meta{margin-bottom:13px}.rt-tpg-container .rt-el-post-meta i{margin-right:5px}.rt-tpg-container .offset-right .rt-el-post-meta{margin-top:-6px}.tpg-el-main-wrapper .tpg-el-image-wrap img{height:100%;-o-object-fit:cover;object-fit:cover}@media (max-width:767px){.tpg-el-main-wrapper .tpg-el-image-wrap img{width:100%!important}}.tpg-el-main-wrapper .tpg-el-image-wrap a.tpg-post-link{height:100%;width:100%}.tpg-el-main-wrapper .tpg-el-image-wrap .overlay{height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%}.tpg-el-main-wrapper .rt-grid-hover-item .tpg-el-image-wrap .overlay.grid-hover-content{display:none!important;opacity:0;visibility:hidden}.tpg-el-main-wrapper .tpg-post-holder .tpg-el-image-wrap .overlay.show-on-hover,.tpg-el-main-wrapper .tpg-post-holder:hover .tpg-el-image-wrap .overlay.hide-on-hover{opacity:0!important}.tpg-el-main-wrapper .tpg-post-holder:hover .tpg-el-image-wrap .overlay.show-on-hover{opacity:1!important}.tpg-el-main-wrapper .post-meta-tags span{display:inline-block;padding-right:8px}.tpg-el-main-wrapper .post-meta-tags span img+span.author-prefix{padding-left:3px}.tpg-el-main-wrapper .post-meta-tags span.author-prefix{padding-right:5px}.tpg-el-main-wrapper .post-meta-tags span img{border-radius:50%;display:inline-block;height:25px!important;margin-right:5px;margin-top:-2%;max-width:25px;width:auto!important}.post-meta-tags span.separator:last-of-type{display:none}body .readmore-btn-only-text .rt-tpg-container .tpg-post-holder .read-more a{background:none!important;border:none!important;padding:0!important}.rt-tpg-container .tpg-post-holder .read-more a i{transition:margin .4s ease-in-out}.rt-tpg-container .tpg-post-holder .read-more a i.left-icon{margin-right:5px}.rt-tpg-container .tpg-post-holder .read-more a i.right-icon{margin-left:5px}.tpg-el-box-border-disable .rt-tpg-container .rt-holder{border:none;box-shadow:none!important}.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{display:flex;justify-content:space-between}.tpg-filter-alignment-left .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{align-items:flex-start}.tpg-filter-alignment-center .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{align-items:center}.tpg-filter-alignment-right .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{align-items:flex-end}.tpg-filter-h-alignment-left .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{justify-content:flex-start}.tpg-filter-h-alignment-center .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{justify-content:center}.tpg-filter-h-alignment-right .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{justify-content:flex-end}.tpg-filter-h-alignment-space-between .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{justify-content:space-between}.rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input{min-width:202px}.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper{margin-right:15px}@media (max-width:1023px){.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper{text-align:center}.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-right-wrapper{align-items:center;display:flex;flex-wrap:wrap;justify-content:center}.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-right-wrapper .rt-order-by-action{order:-1}}@media (max-width:991px){.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{flex-direction:column}}@media (max-width:600px){.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper{margin-right:0}.tpg-filter-type-dropdown .rt-filter-wrap .filter-left-wrapper{display:flex;justify-content:center}.tpg-el-main-wrapper .rt-filter-item-wrap.rt-tax-filter.rt-filter-dropdown-wrap{margin-bottom:4px}.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{flex-direction:column}}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap{min-height:38px}.tpg-el-main-wrapper .rt-holder .rt-el-content-wrapper{display:flex;flex-direction:column}.tpg-el-main-wrapper .rt-holder .rt-el-content-wrapper-flex{display:flex;flex-direction:row}.title_position_above_image .tpg-el-main-wrapper .rt-holder .rt-el-content-wrapper .tpg-el-image-wrap{margin:0 -15px 15px}.rt-tpg-container .rt-holder .rt-detail .entry-title-wrapper .entry-title{margin-bottom:0;transition:.4s}.rt-tpg-container .rt-holder .rt-detail .entry-title-wrapper .tpg-separate-category{margin-bottom:5px}.tpg-el-main-wrapper .rt-holder .tpg-el-excerpt{order:5}.tpg-el-main-wrapper .rt-holder .rt-tpg-social-share{order:10}.tpg-el-main-wrapper .rt-tpg-social-share a{margin-right:10px}.tpg-el-main-wrapper .rt-holder .post-footer{margin-bottom:15px;order:11}.title_position_above_image .tpg-el-main-wrapper .rt-holder .entry-title-wrapper{order:-5}.title_position_below_image .tpg-el-main-wrapper .rt-holder .tpg-el-image-wrap{order:-8}.title_position_below_image .tpg-el-main-wrapper .rt-holder .entry-title-wrapper{order:2}.title_position_above_image.meta_position_above_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:-6}.title_position_above_image.meta_position_below_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:-4}.title_position_below_image.meta_position_above_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:1}.title_position_below_image.meta_position_below_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:3}.meta_position_below_excerpt .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:6}.meta_position_above_excerpt .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:4}.title_position_default.meta_position_above_title .tpg-el-main-wrapper .rt-holder .tpg-el-image-wrap{order:-2}.title_position_default.meta_position_above_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:-1}.title_hover_border_enable .rt-tpg-container .entry-title-wrapper .entry-title a{background:linear-gradient(180deg,var(--tpg-primary-color,#0d6efd) 0,var(--tpg-primary-color,#0d6efd) 98%);background-position:left 100%;background-repeat:no-repeat;background-size:0 2px}.title_hover_border_enable .rt-tpg-container .entry-title-wrapper .entry-title:hover a{background-size:100% 2px}.title_hover_border_disable .rt-tpg-container .entry-title-wrapper .entry-title a{background:none!important}.rt-tpg-container .post-right-content{display:flex;flex-direction:column}.rt-tpg-container .list-layout-wrapper .post-right-content{flex:1}.tpg-separate-category.style1 .rt-separator{margin-right:3px}.tpg-category-position-default .grid-layout4 .rt-detail .entry-title-wrapper .tpg-separate-category,.tpg-is-author-icon-hide .post-meta-tags span.author i,.tpg-is-author-icon-hide .post-meta-tags span.author img{display:none}.rt-tpg-container .rt-holder .rt-img-holder .tpg-zoom{left:50%;opacity:0;position:absolute;top:60%;transform:translate(-50%,-50%);visibility:hidden;z-index:99}.rt-tpg-container .rt-holder:hover .rt-img-holder .tpg-zoom{opacity:1;top:50%;visibility:visible}.rt-tpg-container .rt-holder .rt-img-holder .tpg-zoom .fa{background:hsla(0,0%,100%,.8);border:0 solid;border-radius:50%;box-sizing:border-box;display:inline-block;font-size:20px;height:50px;line-height:40px;margin-right:0;padding:5px;text-align:center;width:50px}@media (min-width:992px){.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-3:nth-child(8n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-3:nth-child(8n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-3:nth-child(8n+7) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-3:nth-child(8n+8) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-4:nth-child(6n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-4:nth-child(6n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-4:nth-child(6n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-6:nth-child(4n+3) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-6:nth-child(4n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-12:nth-child(2n) .rt-el-content-wrapper-flex{flex-direction:row-reverse}}@media (min-width:1200px){.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-4:nth-child(6n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-4:nth-child(6n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-4:nth-child(6n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-6:nth-child(4n+3) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-6:nth-child(4n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-12:nth-child(2n) .rt-el-content-wrapper-flex{flex-direction:row-reverse}}@media (min-width:768px) and (max-width:991px){.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-3:nth-child(8n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-3:nth-child(8n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-3:nth-child(8n+7) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-3:nth-child(8n+8) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-4:nth-child(6n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-4:nth-child(6n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-4:nth-child(6n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-6:nth-child(4n+3) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-6:nth-child(4n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-12:nth-child(2n) .rt-el-content-wrapper-flex{flex-direction:row-reverse}}@media (max-width:768px){.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-3:nth-child(8n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-3:nth-child(8n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-3:nth-child(8n+7) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-3:nth-child(8n+8) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-4:nth-child(4n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-4:nth-child(4n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-4:nth-child(4n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-6:nth-child(4n+3) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-6:nth-child(4n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-12:nth-child(2n) .rt-el-content-wrapper-flex{flex-direction:row-reverse}}.rt-tpg-container .grid-layout4 .rt-holder .tpg-el-image-wrap,.rt-tpg-container .grid-layout5 .rt-holder .tpg-el-image-wrap,.rt-tpg-container .grid-layout6 .rt-holder .tpg-el-image-wrap{margin:0 0 15px}.rt-tpg-container .grid-layout4 .cat-over-image a,.rt-tpg-container .grid-layout5 .tpg-separate-category a,.rt-tpg-container .list-layout4 .tpg-separate-category a{align-items:center;background-color:#ffaf25;color:#fff;display:inline-flex;font-size:12px;justify-content:center;line-height:1;margin-right:5px;min-height:24px;padding:0 8px}.rt-tpg-container .grid-layout4 .cat-over-image a:hover,.rt-tpg-container .grid-layout5 .tpg-separate-category a:hover,.rt-tpg-container .list-layout4 .tpg-separate-category a:hover{background:#e59100}.rt-tpg-container .grid-layout4 .cat-over-image .rt-separator,.rt-tpg-container .grid-layout5 .tpg-separate-category .rt-separator{display:none}.rt-tpg-container .grid-layout1 .rt-holder,.rt-tpg-container .grid-layout3 .rt-holder{box-shadow:0 0 2px 0 rgba(0,0,0,.3);-webkit-box-shadow:0 0 2px 0 rgba(0,0,0,.3);-moz-box-shadow:0 0 2px 0 rgba(0,0,0,.3)}.tpg-el-main-wrapper .grid-layout2 .rt-holder .rt-el-content-wrapper-flex{height:100%;padding:0}.rt-tpg-container .grid-layout2 .rt-holder .tpg-el-image-wrap{flex:0 0 50%;margin:0;max-width:50%}.rt-tpg-container .grid-layout2 .rt-holder .post-right-content{flex-grow:1;flex:0 0 50%;max-width:50%;padding:15px}.tpg-el-main-wrapper .grid-layout2 [class*=rt-col]{padding:0}@media (max-width:500px){.tpg-el-main-wrapper .grid-layout2 .rt-el-content-wrapper-flex,.tpg-post-order-reverse .rt-tpg-container .rt-row .rt-col-xs-12:nth-child(2n) .rt-el-content-wrapper-flex{display:block}.rt-tpg-container .grid-layout2 .rt-holder .post-right-content,.rt-tpg-container .grid-layout2 .rt-holder .tpg-el-image-wrap{flex:inherit;margin:0;max-width:100%}.tpg-el-main-wrapper .grid-layout2 [class*=rt-col]{margin-bottom:15px}}.rt-tpg-container .grid-layout3 .rt-holder{border-radius:4px;overflow:hidden}.meta_position_default .tpg-el-main-wrapper .grid-layout3 .rt-holder .rt-el-post-meta{order:12;padding-bottom:5px;padding-top:20px;position:relative}.meta_position_default .tpg-el-main-wrapper .grid-layout3 .rt-holder .rt-el-post-meta:before{background:#ddd;content:"";height:1px;left:-50px;position:absolute;right:-50px;top:0;width:calc(100% + 100px)}.rt-tpg-container .grid-layout4 .entry-title-wrapper .entry-title{font-size:22px;font-weight:500;line-height:32px}.tpg-el-main-wrapper .grid-layout4 .tpg-el-image-wrap img{height:230px;width:100%}.rt-tpg-container .grid-layout4 .rt-holder .rt-detail{padding:0}.tpg-is-author-icon-default .grid-layout4 .post-meta-tags span.author i,.tpg-is-author-icon-default .grid-layout4 .post-meta-tags span.author img{display:none}.tpg-el-main-wrapper .list-layout-wrapper .rt-holder .rt-el-content-wrapper{display:flex;flex-direction:row;height:100%;padding:0}.tpg-el-main-wrapper.list-layout1-main .list-layout-wrapper .rt-holder .rt-el-content-wrapper{align-items:flex-start}.tpg-el-main-wrapper.list-layout1-2-main .list-layout1 .rt-holder .rt-el-content-wrapper{flex-direction:row-reverse}.rt-tpg-container .list-layout1 .rt-holder .tpg-el-image-wrap{flex:0 0 260px;margin:0 30px 0 0}@media (max-width:991px){.rt-tpg-container .list-layout1 .rt-holder .tpg-el-image-wrap{flex:0 0 200px}}@media (max-width:599px){.tpg-el-main-wrapper.list-layout1-main .list-layout-wrapper .rt-holder .rt-el-content-wrapper{display:block}.rt-tpg-container .list-layout1 .rt-holder .tpg-el-image-wrap{margin:0 0 15px}}.tpg-el-main-wrapper.list-layout1-2-main .list-layout1 .rt-holder .tpg-el-image-wrap{margin:0 0 0 30px}.rt-tpg-container .list-layout1 .rt-detail .read-more a,.rt-tpg-container .list-layout2 .rt-detail .read-more a,.rt-tpg-container .list-layout3 .rt-detail .read-more a{background-color:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd);color:#fff}.rt-tpg-container .list-layout1 .rt-detail .read-more a:hover,.rt-tpg-container .list-layout2 .rt-detail .read-more a:hover,.rt-tpg-container .list-layout3 .rt-detail .read-more a:hover,.rt-tpg-container .list-layout4 .rt-detail .read-more a:hover{background-color:var(--tpg-secondary-color,#0654c4);border-color:var(--tpg-secondary-color,#0654c4);color:#fff}.tags-visibility-default .list-layout1 .post-tags-links,.tags-visibility-default .list-layout1 .post-tags-links+.separator{display:none}.rt-tpg-container .list-layout-wrapper .offset-right .rt-row{display:flex;flex-wrap:wrap;max-width:100%;overflow:hidden;width:100%}.tpg-el-main-wrapper .list-layout2 .offset-left .tpg-el-image-wrap{height:300px}.tpg-el-main-wrapper .list-layout-wrapper .offset-left .rt-holder .rt-el-content-wrapper{flex-direction:column}.rt-tpg-container .list-layout-wrapper .offset-left .rt-holder .tpg-el-image-wrap{flex:inherit;margin:0 0 15px}.tpg-el-main-wrapper .list-layout-wrapper .offset-right .tpg-el-image-wrap{height:100px}.rt-tpg-container .list-layout-wrapper .offset-right .entry-title-wrapper .entry-title{font-size:20px}.tpg-el-main-wrapper.list-layout2-2-main .list-layout2,.tpg-el-main-wrapper.list-layout3-2-main .list-layout3,.tpg-el-main-wrapper.list-layout5-2-main .list-layout5 .rt-holder .rt-el-content-wrapper{flex-direction:row-reverse}.tpg-el-main-wrapper .list-layout-wrapper.list-layout2 .rt-holder .rt-el-content-wrapper{align-items:flex-start}.tags-visibility-default .list-layout2 .post-tags-links,.tags-visibility-default .list-layout2 .post-tags-links+.separator{display:none}.rt-tpg-container .list-layout2 .offset-right .rt-holder .tpg-el-image-wrap{flex:0 0 107px;margin:0 15px 0 0;max-width:107px}.tpg-el-main-wrapper .list-layout3 .offset-right .rt-holder .tpg-el-excerpt{-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;text-overflow:ellipsis}.tpg-el-main-wrapper .list-layout3 [class*=rt-col]{padding-bottom:15px}.tpg-el-main-wrapper .list-layout3 .offset-left .tpg-el-image-wrap{height:390px}.rt-tpg-container .list-layout3 .offset-right .rt-holder .tpg-el-image-wrap{flex:0 0 140px;height:110px;margin:0 15px 0 0;max-width:140px}.tpg-el-main-wrapper .list-layout-wrapper.list-layout4 .rt-el-content-wrapper{align-items:inherit}.rt-tpg-container .list-layout4 .post-right-content,.tpg-el-main-wrapper .list-layout4 .rt-holder .tpg-el-image-wrap{flex:0 0 50%;margin:0}@media (min-width:768px){.tpg-el-main-wrapper .list-layout4 .rt-holder .tpg-el-image-wrap{height:400px}}.rt-tpg-container .list-layout4 .post-right-content{display:flex;justify-content:center;margin:0;padding:30px 50px;text-align:center}.rt-tpg-container .list-layout4 .entry-title-wrapper .categories-links .rt-separator{display:none}.tpg-el-main-wrapper .list-layout4 [class*=rt-col]{padding-bottom:0}@media (min-width:768px){.tpg-el-main-wrapper .list-layout4 [class*=rt-col]:nth-child(2n) .rt-holder .rt-el-content-wrapper{flex-direction:row-reverse}}@media (max-width:768px){.tpg-el-main-wrapper .list-layout4 .rt-holder .tpg-el-image-wrap{flex:0 0 150px;height:120px}.rt-tpg-container .list-layout4 .post-right-content{flex:inherit;flex-grow:1;padding:0 0 0 20px;text-align:left}.tpg-el-main-wrapper .list-layout-wrapper.list-layout4 .rt-holder .rt-el-content-wrapper{align-items:flex-start!important}.tpg-el-main-wrapper .list-layout4 [class*=rt-col]{margin-bottom:30px}}@media (max-width:500px){.tpg-el-main-wrapper .list-layout4 .rt-holder .tpg-el-image-wrap{flex:0 0 100px;height:100px}}.rt-tpg-container .list-layout5 .post-right-content{display:block;overflow:hidden;padding-left:20px}.tpg-el-main-wrapper.list-layout5-2-main .list-layout5 .post-right-content{padding-left:0;padding-right:20px}.rt-tpg-container .list-layout5 .rt-holder .rt-img-holder{border-radius:50%;flex:0 0 100px;height:100px;margin-top:8px}.rt-tpg-container .list-layout5 .entry-title-wrapper .entry-title{font-size:18px}.tags-visibility-default .list-layout5 .rt-el-post-meta{color:#a5a6aa;font-size:14px}.list-layout5 .entry-title-wrapper .tpg-separate-category .categories-links{color:#7a7e83;font-size:14px;font-weight:500}.list-layout5 .entry-title-wrapper .tpg-separate-category .categories-links a{color:inherit}.tpg-el-main-wrapper .list-layout5 [class*=rt-col]{padding-bottom:20px}.rt-tpg-container .list-layout5 .post-right-content{flex:1}.grid_hover_layout_wrapper .rt-row-inner{display:flex;flex-wrap:wrap}.rt-tpg-container .rt-grid-hover-item .entry-title-wrapper .entry-title{font-size:20px;line-height:1.4}.tpg-el-main-wrapper .rt-grid-hover-item .rt-holder .rt-el-content-wrapper{height:100%;overflow:hidden;padding:0;position:relative;width:100%}.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content{bottom:0;display:flex;flex-direction:column;justify-content:flex-end;left:0;min-height:56px;padding:30px 30px 15px;position:absolute;right:0;transition:1.2s;width:100%;z-index:1}.rt-tpg-container .rt-grid-hover-item .rt-holder:hover .grid-hover-content{padding-bottom:15px}.rt-tpg-container .rt-grid-hover-item .rt-holder:hover .grid-hover-content>div:last-of-type{margin-bottom:0}.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before{background-color:rgba(0,0,0,.7);bottom:0;content:"";height:100%;left:0;position:absolute;right:0;transition:.4s ease-in-out;width:100%;z-index:-1}.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after{background-color:rgba(0,0,0,.5)}.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,.rt-tpg-container .rt-grid-hover-item .rt-holder:hover .grid-hover-content:before{opacity:0;visibility:hidden}.rt-tpg-container .rt-grid-hover-item .rt-holder:hover .grid-hover-content:after{opacity:1;visibility:visible}.rt-tpg-container .rt-grid-hover-item .entry-title-wrapper .entry-title,.rt-tpg-container .rt-grid-hover-item .rt-detail .read-more a,.rt-tpg-container .rt-grid-hover-item .rt-el-post-meta,.rt-tpg-container .rt-grid-hover-item .rt-el-post-meta a,.rt-tpg-container .rt-grid-hover-item .rt-holder .tpg-el-excerpt{color:#fff}.rt-tpg-container .rt-grid-hover-item a:hover{color:var(--tpg-primary-color,#0d6efd)}.rt-tpg-container .rt-grid-hover-item .rt-detail .read-more a{border-color:hsla(0,0%,100%,.7)}.rt-tpg-container .rt-grid-hover-item .rt-holder .tpg-el-image-wrap{margin:0}.rt-grid-hover-item .tpg-el-image-wrap{background-color:#e4eaf1;height:100%}.grid-hover-overlay-type-fadein-on-hover .rt-tpg-container .rt-holder .grid-hover-content .entry-title-wrapper .entry-title:before{transition:.5s ease-in-out;width:0}.grid-hover-overlay-type-fadein-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content .entry-title-wrapper .entry-title:before{width:50%}.grid-hover-overlay-type-fadein-on-hover .rt-tpg-container .rt-holder .grid-hover-content{opacity:0;transition:.5s ease-in-out}.grid-hover-overlay-type-fadein-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{opacity:1}.grid-hover-overlay-type-fadeout-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{opacity:0}.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-holder .grid-hover-content{left:-100%;transition:.5s ease-in-out}.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{left:0}.grid-hover-overlay-type-slideout-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{left:100%}.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,.grid-hover-overlay-type-slideout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before{transition:.5s ease-in-out}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,.grid-hover-overlay-type-slideout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before{background:var(--tpg-primary-color,#0d6efd);opacity:1;visibility:visible}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,.grid-hover-overlay-type-slideout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after{content:none}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content{height:100%}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content,.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .tpg-el-image-wrap,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .rt-img-holder{transition:all .5s}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .rt-img-holder img{transform:none!important}.grid-hover-overlay-type-zoomin-on-hover .rt-tpg-container .rt-holder .grid-hover-content,.grid-hover-overlay-type-zoomout-on-hover .rt-tpg-container .rt-holder .grid-hover-content{transition:.5s ease-in-out}.grid-hover-overlay-type-zoomin-on-hover .rt-tpg-container .rt-holder .grid-hover-content,.grid-hover-overlay-type-zoomout-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{opacity:0;transform:scale(0)}.grid-hover-overlay-type-zoomin-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{opacity:1;transform:scale(1)}.grid-hover-overlay-type-zoominall-on-hover .rt-tpg-container .rt-holder .grid-hover-content *,.grid-hover-overlay-type-zoomoutall-on-hover .rt-tpg-container .rt-holder .grid-hover-content *{transition:.4s ease-in-out!important}.grid-hover-overlay-type-zoominall-on-hover .rt-tpg-container .rt-holder .grid-hover-content *,.grid-hover-overlay-type-zoomoutall-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content *{opacity:0;transform:scale(0)}.grid-hover-overlay-type-zoominall-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content *{opacity:1;transform:scale(1)}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content{-webkit-backface-visibility:hidden;backface-visibility:hidden;opacity:0;transform:rotateY(-180deg)}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .grid-hover-content{-webkit-backface-visibility:visible;backface-visibility:visible;opacity:1;transform:rotateY(0deg)}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .rt-img-holder,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .grid-hover-content{opacity:0;transform:rotateY(180deg);visibility:hidden}.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .rt-img-holder{-webkit-backface-visibility:hidden;backface-visibility:hidden;opacity:0;transform:rotateY(-180deg)}.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .rt-img-holder{-webkit-backface-visibility:visible;backface-visibility:visible;opacity:1;transform:rotateY(0deg)}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .post-footer,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .rt-el-post-meta,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .rt-tpg-social-share,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .tpg-el-excerpt{margin-bottom:0;max-height:0;opacity:0;transition:.6s;visibility:hidden}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .post-footer,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .rt-el-post-meta,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .rt-tpg-social-share,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .tpg-el-excerpt{margin-bottom:15px}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .rt-el-post-meta{transition:all .6s,opacity .6s}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .tpg-el-excerpt{transition:all .6s,opacity .5s}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .post-footer{transition:all .6s,opacity .4s}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .rt-tpg-social-share{transition:all .6s,opacity .3s}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .rt-el-post-meta{margin-bottom:15px;max-height:var(--tpg-meta-height,80px);opacity:1;visibility:visible}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .tpg-el-excerpt{max-height:var(--tpg-excerpt-height,140px);opacity:1;visibility:visible}.rt-tpg-container .grid_hover_layout_wrapper .rt-holder:hover .rt-tpg-social-share{margin-bottom:15px;max-height:var(--tpg-share-height,50px);opacity:1;visibility:visible}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .post-footer{max-height:var(--tpg-footer-height,50px);opacity:1;visibility:visible}.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .post-footer,.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .rt-el-post-meta,.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .rt-tpg-social-share,.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .tpg-el-excerpt,.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout5 .rt-grid-hover-item .rt-holder .rt-el-post-meta{max-height:inherit;opacity:1;visibility:visible}.meta-visibility-default .rt-tpg-container .grid_hover-layout1 .rt-grid-hover-item .rt-holder .rt-el-post-meta{max-height:inherit}.rt-tpg-container .grid_hover-layout1 .rt-holder .tpg-el-image-wrap{height:300px}.grid-hover-overlay-height-full .rt-tpg-container .rt-content-loader .rt-grid-hover-item .rt-holder .grid-hover-content{min-height:100%}.hover-overlay-height-default .rt-tpg-container .grid_hover-layout1 .rt-grid-hover-item .rt-holder:hover .grid-hover-content,.hover-overlay-height-full .rt-tpg-container .rt-content-loader .rt-grid-hover-item .rt-holder:hover .grid-hover-content{min-height:100%;transition:.5s}.rt-tpg-container .grid_hover-layout1 .entry-title-wrapper .entry-title{font-size:20px;line-height:1.4}.meta-visibility-default .rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder .rt-el-post-meta{margin-bottom:7px;max-height:inherit}.rt-tpg-container .grid_hover-layout2 .rt-holder .tpg-el-image-wrap img{height:300px}.rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder .post-footer,.rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder .tpg-el-excerpt,.tpg-el-main-wrapper .grid_hover-layout2 .rt-holder .rt-tpg-social-share{margin-bottom:0;max-height:0;overflow:hidden;transition:.6s}.tpg-el-main-wrapper .grid_hover-layout2 .rt-holder:hover .rt-tpg-social-share{margin-bottom:15px;max-height:50px}.rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder:hover .post-footer{max-height:50px}.hover-overlay-height-full .rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder:hover .grid-hover-content{min-height:100%}.rt-tpg-container .grid_hover-layout2 .rt-holder .grid-hover-content{justify-content:center;margin:15px;padding:20px;text-align:center;width:calc(100% - 30px)}.rt-tpg-container .grid_hover-layout3 .tpg-el-image-wrap{height:300px}.rt-tpg-container .grid_hover-layout3 .rt-grid-hover-item .rt-holder .grid-hover-content{justify-content:center;min-height:100%;padding:10px 30px;text-align:center}.tpg-title-border-show .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title{margin-bottom:20px;position:relative}.tpg-title-border-show .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before{background-color:#fff;bottom:-16px;content:"";height:2px;left:50%;position:absolute;transform:translateX(-50%);transition:.4s;width:50%}.tpg-title-border-show.title-alignment-justify .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before,.tpg-title-border-show.title-alignment-left .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before,.tpg-title-border-show.tpg-wrapper-align-left .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before{left:0;transform:none}.tpg-title-border-show.title-alignment-right .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before,.tpg-title-border-show.tpg-wrapper-align-right .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before{right:0;transform:none}.elementor-template-full-width .site-content .ast-container{max-width:100%;padding:0;width:100%}.tpg-el-main-wrapper .tgp-cf-field-label{display:inline-block;float:none}.tpg-el-main-wrapper .tpg-cf-fields{display:block}.tpg-el-main-wrapper .tgp-cf-field-value{display:inline}.tpg-el-main-wrapper .tpg-cf-group-title{color:inherit}.tpg-acf-align-left .rt-tpg-container .acf-custom-field-wrap{text-align:left}.grid-layout6 .acf-custom-field-wrap,.list-layout4 .acf-custom-field-wrap,.tpg-acf-align-center .rt-tpg-container .acf-custom-field-wrap{text-align:center}.tpg-acf-align-right .rt-tpg-container .acf-custom-field-wrap{text-align:right}
|
assets/css/thepostgrid.rtl.min.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
body .tpg-el-main-wrapper .rt-grid-item{padding:0 15px}body .elementor-section .tpg-el-main-wrapper .rt-grid-item{background:none}body .elementor-section .tpg-el-main-wrapper .offset-left,body .elementor-section .tpg-el-main-wrapper .offset-right{padding-bottom:0}.rt-tpg-container a{text-decoration:none}.rt-model-open,body.rt-model-open,html.rt-model-open{overflow:hidden}.rt-tpg-container img{height:auto;max-width:100%}.rt-tpg-container *{box-sizing:border-box}.entry .rt-tpg-container .entry-title:before{content:none}.rt-tpg-container .entry{margin-top:0}.rt-tpg-container :after,.rt-tpg-container :before{box-sizing:border-box}.rt-container,.rt-container-fluid{margin-right:auto;margin-left:auto;padding-right:15px;padding-left:15px}.rt-container-fluid.slider-layout13-main{padding:0 0 15px}.rt-tpg-container ul{margin:0}img,svg{vertical-align:middle}a:link,a:visited{transition:all .31s ease}.clearfix:after,.clearfix:before,.rt-container-fluid:after,.rt-container-fluid:before,.rt-row:after,.rt-row:before{content:" ";display:table}.clearfix:after,.rt-container-fluid:after,.rt-container:after,.rt-row:after{clear:both}.rt-row{margin-right:-15px;margin-left:-15px}.grid-layout2.rt-row{margin-right:0;margin-left:0}.rt-row>.rt-row{padding-right:15px;padding-left:15px}.grid_hover6.rt-row{margin-right:-2px;margin-left:-2px}.rt-col-lg-1,.rt-col-lg-2,.rt-col-lg-3,.rt-col-lg-4,.rt-col-lg-5,.rt-col-lg-6,.rt-col-lg-7,.rt-col-lg-8,.rt-col-lg-9,.rt-col-lg-10,.rt-col-lg-11,.rt-col-lg-12,.rt-col-lg-24,.rt-col-md-1,.rt-col-md-2,.rt-col-md-3,.rt-col-md-4,.rt-col-md-5,.rt-col-md-6,.rt-col-md-7,.rt-col-md-8,.rt-col-md-9,.rt-col-md-10,.rt-col-md-11,.rt-col-md-12,.rt-col-md-24,.rt-col-sm-1,.rt-col-sm-2,.rt-col-sm-3,.rt-col-sm-4,.rt-col-sm-5,.rt-col-sm-6,.rt-col-sm-7,.rt-col-sm-8,.rt-col-sm-9,.rt-col-sm-10,.rt-col-sm-11,.rt-col-sm-12,.rt-col-sm-24,.rt-col-xs-1,.rt-col-xs-2,.rt-col-xs-3,.rt-col-xs-4,.rt-col-xs-5,.rt-col-xs-6,.rt-col-xs-7,.rt-col-xs-8,.rt-col-xs-9,.rt-col-xs-10,.rt-col-xs-11,.rt-col-xs-12,.rt-col-xs-24{min-height:1px;padding-right:15px;padding-left:15px;position:relative}.rt-col-xs-1,.rt-col-xs-2,.rt-col-xs-3,.rt-col-xs-4,.rt-col-xs-5,.rt-col-xs-6,.rt-col-xs-7,.rt-col-xs-8,.rt-col-xs-9,.rt-col-xs-10,.rt-col-xs-11,.rt-col-xs-12,.rt-col-xs-24{float:right}.rt-col-xs-24{width:20%}.rt-col-xs-12{width:100%}.rt-col-xs-11{width:91.66666667%}.rt-col-xs-10{width:83.33333333%}.rt-col-xs-9{width:75%}.rt-col-xs-8{width:66.66666667%}.rt-col-xs-7{width:58.33333333%}.rt-col-xs-6{width:50%}.rt-col-xs-5{width:41.66666667%}.rt-col-xs-4{width:33.33333333%}.rt-col-xs-3{width:25%}.rt-col-xs-2{width:16.66666667%}.rt-col-xs-1{width:8.33333333%}#rt-main{margin:35px auto}.rt-tpg-container h3.entry-title{line-height:1.25;margin:0 0 12px}.rt-tpg-container .offset-small-wrap .rt-holder .overlay{min-height:60px!important}.rt-tpg-container .offset-small-wrap .rt-holder .rt-img-responsive{height:auto;-o-object-fit:cover;object-fit:cover;width:100%}.rt-tpg-container .offset-small-wrap .rt-col-md-6 .rt-holder .rt-img-responsive{height:auto}.rt-tpg-container .offset-small-wrap .rt-holder .overlay h3 a{-webkit-line-clamp:1!important;-webkit-box-orient:vertical;display:-webkit-box!important;overflow:hidden!important;text-overflow:ellipsis!important}.rt-tpg-container .offset-big .post-meta-user.above_title{margin-top:15px}.rt-tpg-container .offset-big .post-meta-user.above_title+h3.entry-title{margin-top:0}.rt-tpg-container .offset-big h3.entry-title{margin:20px 0 15px}.rt-tpg-container .offset-big .cat-above-title{margin-bottom:-15px;padding-top:10px}.rt-tpg-container .owl-controls .owl-dots{margin-top:15px}.rt-popup-content .rt-tpg-container i{margin-left:5px}.rt-popup-content ol,.rt-popup-content ul{list-style-position:inside}.paginationjs{box-sizing:initial;font-family:Marmelad,Lucida Grande,Arial,Hiragino Sans GB,Georgia,sans-serif;font-size:14px;line-height:1.6}.paginationjs:after{clear:both;content:" ";display:table}.paginationjs .paginationjs-pages{float:right}.paginationjs .paginationjs-pages ul{float:right;margin:0;padding:0}.paginationjs .paginationjs-go-button,.paginationjs .paginationjs-go-input,.paginationjs .paginationjs-nav{float:right;font-size:14px;margin-right:10px}.paginationjs .paginationjs-pages li{border:1px solid #aaa;border-left:none;float:right;list-style:none}.paginationjs .paginationjs-pages li>a{background:#fff;color:#333;display:block;font-size:14px;height:28px;line-height:28px;min-width:30px;text-align:center;text-decoration:none}.paginationjs .paginationjs-pages li:hover>a{background:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd)!important;color:#fff!important}.paginationjs .paginationjs-pages li.active{border:none}.paginationjs .paginationjs-pages li.active>a{background:#aaa;color:#fff;height:30px;line-height:30px}.paginationjs .paginationjs-pages li.disabled>a{opacity:.3}.paginationjs .paginationjs-pages li.disabled>a:hover{background:100% 0}.paginationjs .paginationjs-pages li:first-child,.paginationjs .paginationjs-pages li:first-child>a{border-radius:0 3px 3px 0}.paginationjs .paginationjs-pages li:last-child{border-radius:3px 0 0 3px;border-left:1px solid #aaa}.paginationjs .paginationjs-pages li:last-child>a{border-radius:3px 0 0 3px}.paginationjs .paginationjs-go-input>input[type=text]{box-sizing:initial;height:28px;padding:0;width:30px}.paginationjs .paginationjs-go-button>input[type=button],.paginationjs .paginationjs-go-input>input[type=text]{background:#fff;border:1px solid #aaa;border-radius:3px;box-shadow:none;font-size:14px;outline:0;text-align:center;vertical-align:baseline}.paginationjs .paginationjs-go-button>input[type=button]{color:#333;cursor:pointer;height:30px;line-height:28px;min-width:40px;padding:0 8px;vertical-align:middle\9}.paginationjs.paginationjs-theme-blue .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-blue .paginationjs-pages li{border-color:#289de9}.paginationjs .paginationjs-go-button>input[type=button]:hover{background-color:#f8f8f8}.paginationjs .paginationjs-nav{height:30px;line-height:30px}.paginationjs .paginationjs-go-button,.paginationjs .paginationjs-go-input{margin-right:5px\9}.paginationjs.paginationjs-small{font-size:12px}.paginationjs.paginationjs-small .paginationjs-pages li>a{font-size:12px;height:24px;line-height:24px;min-width:26px}.paginationjs.paginationjs-small .paginationjs-pages li.active>a{height:26px;line-height:26px}.paginationjs.paginationjs-small .paginationjs-go-input{font-size:12px}.paginationjs.paginationjs-small .paginationjs-go-input>input[type=text]{font-size:12px;height:24px;width:26px}.paginationjs.paginationjs-small .paginationjs-go-button{font-size:12px}.paginationjs.paginationjs-small .paginationjs-go-button>input[type=button]{font-size:12px;height:26px;line-height:24px;min-width:30px;padding:0 6px}.paginationjs.paginationjs-small .paginationjs-nav{font-size:12px;height:26px;line-height:26px}.paginationjs.paginationjs-big{font-size:16px}.paginationjs.paginationjs-big .paginationjs-pages li>a{font-size:16px;height:34px;line-height:34px;min-width:36px}.paginationjs.paginationjs-big .paginationjs-pages li.active>a{height:36px;line-height:36px}.paginationjs.paginationjs-big .paginationjs-go-input{font-size:16px}.paginationjs.paginationjs-big .paginationjs-go-input>input[type=text]{font-size:16px;height:34px;width:36px}.paginationjs.paginationjs-big .paginationjs-go-button{font-size:16px}.paginationjs.paginationjs-big .paginationjs-go-button>input[type=button]{font-size:16px;height:36px;line-height:34px;min-width:50px;padding:0 12px}.paginationjs.paginationjs-big .paginationjs-nav{font-size:16px;height:36px;line-height:36px}.paginationjs.paginationjs-theme-blue .paginationjs-pages li>a{color:#289de9}.paginationjs.paginationjs-theme-blue .paginationjs-pages li:hover>a{background:#e9f4fc}.paginationjs.paginationjs-theme-blue .paginationjs-pages li.active>a{background:#289de9;color:#fff}.paginationjs.paginationjs-theme-blue .paginationjs-pages li.disabled:hover>a{background:100% 0}.paginationjs.paginationjs-theme-blue .paginationjs-go-button>input[type=button]{background:#289de9;border-color:#289de9;color:#fff}.paginationjs.paginationjs-theme-green .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-green .paginationjs-pages li{border-color:#449d44}.paginationjs.paginationjs-theme-blue .paginationjs-go-button>input[type=button]:hover{background-color:#3ca5ea}.paginationjs.paginationjs-theme-green .paginationjs-pages li>a{color:#449d44}.paginationjs.paginationjs-theme-green .paginationjs-pages li:hover>a{background:#ebf4eb}.paginationjs.paginationjs-theme-green .paginationjs-pages li.active>a{background:#449d44;color:#fff}.paginationjs.paginationjs-theme-green .paginationjs-pages li.disabled:hover>a{background:100% 0}.paginationjs.paginationjs-theme-green .paginationjs-go-button>input[type=button]{background:#449d44;border-color:#449d44;color:#fff}.paginationjs.paginationjs-theme-yellow .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-yellow .paginationjs-pages li{border-color:#ec971f}.paginationjs.paginationjs-theme-green .paginationjs-go-button>input[type=button]:hover{background-color:#55a555}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li>a{color:#ec971f}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li:hover>a{background:#fdf5e9}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li.active>a{background:#ec971f;color:#fff}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li.disabled:hover>a{background:100% 0}.paginationjs.paginationjs-theme-yellow .paginationjs-go-button>input[type=button]{background:#ec971f;border-color:#ec971f;color:#fff}.paginationjs.paginationjs-theme-red .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-red .paginationjs-pages li{border-color:#c9302c}.paginationjs.paginationjs-theme-yellow .paginationjs-go-button>input[type=button]:hover{background-color:#eea135}.paginationjs.paginationjs-theme-red .paginationjs-pages li>a{color:#c9302c}.paginationjs.paginationjs-theme-red .paginationjs-pages li:hover>a{background:#faeaea}.paginationjs.paginationjs-theme-red .paginationjs-pages li.active>a{background:#c9302c;color:#fff}.paginationjs.paginationjs-theme-red .paginationjs-pages li.disabled:hover>a{background:100% 0}.paginationjs.paginationjs-theme-red .paginationjs-go-button>input[type=button]{background:#c9302c;border-color:#c9302c;color:#fff}.paginationjs.paginationjs-theme-red .paginationjs-go-button>input[type=button]:hover{background-color:#ce4541}.paginationjs .paginationjs-pages li.paginationjs-next{border-left:1px solid\9}.paginationjs .paginationjs-go-input>input[type=text]{line-height:28px\9;vertical-align:middle\9}.paginationjs.paginationjs-big .paginationjs-pages li>a{line-height:36px\9}.paginationjs.paginationjs-big .paginationjs-go-input>input[type=text]{height:36px\9;line-height:36px\9}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li:not(.paginationjs-next):not(.paginationjs-prev){display:none}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li{color:#fff}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li>a{background-color:var(--tpg-primary-color,#0d6efd);color:#fff}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li:hover a{background-color:var(--tpg-secondary-color,#0654c4)}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-page:nth-child(2){display:inline-block;pointer-events:none;position:relative}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-page:nth-child(2) a{pointer-events:none;text-indent:-99999px}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-page:nth-child(2):before{content:"\f100";font-family:Font Awesome\ 5 Free;font-weight:900;right:50%;opacity:.5;position:absolute;top:50%;transform:translate(50%,-50%);z-index:99}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-prev+li{display:none!important}.rt-tpg-container button{border:none;padding:10px 15px}.rt-tpg-container .rt-tgp-load-more button{background:#8e8e8e;border-radius:4px}.rt-tpg-container .tpg-wc-product-filter{margin-bottom:15px;padding-left:15px;text-align:left}.rt-img-holder>a{display:block;text-align:center}.rt-img-responsive{display:block;height:auto;max-width:100%;transition:.4s ease-in-out}@media (max-width:991px){.rt-img-holder>a,.rt-img-responsive{width:100%}}.rt-tpg-container .no-margin{margin:0!important;padding:0!important}span.more-loading{background:url(../images/loading.gif) 0 no-repeat;display:inline-block;padding-left:20px}.rt-tgp-load-more,.rt-tgp-scroll-load-more{display:block;margin:30px 0 20px;text-align:center}.post-meta-tags,.post-meta-user{font-size:95%;line-height:1.5;margin-bottom:15px;padding:0}.post-meta-tags span,.post-meta-user span{display:inline-block;padding-left:8px}.post-meta-tags span.rt-separator,.post-meta-user span.rt-separator{display:inline-block;padding-left:5px}.post-meta-user span.comment-link{float:left;padding-left:0;text-align:left}.rt-holder .entry-title a{color:#000}.rt-tpg-container .rt-holder .post-meta.center .read-more{float:none}.rt-tpg-container .rt-holder .post-meta .rt-tpg-social-share{display:block;float:none;margin-bottom:15px;text-align:right;width:100%}.rt-tpg-container .rt-holder .post-meta.center .rt-tpg-social-share,.rt-tpg-container .rt-holder .post-meta.right .rt-tpg-social-share{text-align:right}.rt-tpg-container .rt-holder .read-more a{display:inline-block;font-size:15px;line-height:1.5}.rt-tpg-container .rt-holder .tpg-excerpt{margin-bottom:10px}.rt-tpg-container .tpg-iso-filter{margin:15px 0 45px;text-align:center}.rt-tpg-container .tpg-iso-filter input[type=text]{border-radius:3px;display:inline-block;margin-right:4px;padding:12px 10px}.rt-tpg-container .tpg-iso-filter>div{display:inline-block}.rt-tpg-container .rt-tpg-isotope-buttons .selected{background:var(--tpg-primary-color,#0d6efd)}.rt-tpg-container .rt-tpg-isotope-buttons button{background:#8e8e8e;border:none;border-radius:3px;box-shadow:none!important;color:#fff;font-size:15px;font-weight:400;line-height:1.8;margin:4px;outline:0;padding:8px 20px;text-shadow:none!important;text-transform:none}.rt-tpg-container .tpg-pre-loader{overflow:hidden;position:relative}.rt-tpg-container .rt-loading-overlay{background-color:#fff;height:100%;right:0;opacity:0;position:absolute;top:0;visibility:hidden;width:100%;z-index:1}.rt-tpg-container .rt-loading{color:var(--tpg-primary-color,#0d6efd);right:50%;margin-right:-16px;opacity:0;position:absolute;top:40%;visibility:hidden;z-index:2}.rt-tpg-container .tpg-pre-loader .rt-loading-overlay{opacity:.8;visibility:visible}.tpg-carousel-main .tpg-pre-loader .rt-loading-overlay{opacity:1}.rt-tpg-container .tpg-pre-loader .rt-loading{opacity:1;visibility:visible}.rt-ball-clip-rotate{color:#fff;display:block;font-size:0;height:32px;width:32px}.rt-ball-clip-rotate,.rt-ball-clip-rotate>div{box-sizing:border-box;position:relative}.rt-ball-clip-rotate>div{-webkit-animation:ball-clip-rotate .75s linear infinite;animation:ball-clip-rotate .75s linear infinite;background-color:currentColor;background:transparent;border-radius:100%;border:2px solid;border-bottom:2px solid transparent;display:inline-block;float:none;height:32px;width:32px}.rt-layout-filter-container.rt-clear:after{clear:both;content:"";display:block}.rt-clear::-ms-ticks-after,.rt-clear:after{clear:both;content:"";display:block}.rt-layout-filter-container{font-size:0;line-height:0;margin:-5px -5px 30px;padding:0}.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item{border:1px solid;display:inline-block;margin:4px;padding:8px 10px;transition:.4s}.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item.selected,.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item:hover{background:#222;color:#b4b4b4}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap{padding-left:82px}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper{margin-left:0;position:static;width:100%}.tpg-header-wrapper.carousel{align-items:center;display:flex;margin-bottom:30px;overflow:hidden}.section-title-style-default .tpg-header-wrapper.carousel,.section-title-style-style1 .tpg-header-wrapper.carousel{min-height:36px}.tpg-header-wrapper.carousel .swiper{overflow:hidden}.section-title-style-style2 .tpg-header-wrapper.carousel .swiper,.section-title-style-style3 .tpg-header-wrapper.carousel .swiper{height:51px;margin-bottom:-.5px}.tpg-header-wrapper.carousel .swiper .swiper-navigation{position:absolute;left:0;top:50%;transform:translateY(-50%);z-index:9}.tpg-header-wrapper.carousel .swiper .swiper-button-next,.tpg-header-wrapper.carousel .swiper .swiper-button-prev{margin-top:0;top:0}.tpg-header-wrapper.carousel .tpg-widget-heading-wrapper{flex:1;margin:0;padding-left:10px}.tpg-header-wrapper.carousel .rt-layout-filter-container{flex:0 0 60%;margin:0;max-width:60%}.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper{box-sizing:content-box;display:flex;height:100%;margin:0;position:relative;transition-property:transform;width:100%;z-index:1}.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide{align-items:center;border:none;color:#212121;display:flex;font-size:15px;height:auto;justify-content:center;margin:0;padding:0 10px;position:relative;text-align:center;text-transform:none;width:auto}.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:before,.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:before{border-bottom:7px solid var(--tpg-primary-color,#0d6efd);border-right:7px solid transparent;border-left:7px solid transparent;border-top:0 solid transparent;bottom:0;content:"";height:0;right:50%;opacity:0;position:absolute;transform:translateX(50%);transition:all .3s ease;visibility:hidden;width:0}.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected:before,.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover:before,.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected:before,.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover:before{opacity:1;visibility:visible}.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected,.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover{color:var(--tpg-primary-color,#0d6efd)}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .filter-right-wrapper,.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .rt-author-filter{display:none}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.swiper-wrapper{letter-spacing:0}.tpg-header-wrapper.carousel .swiper-button-next.swiper-button-disabled,.tpg-header-wrapper.carousel .swiper-button-prev.swiper-button-disabled{opacity:1}.tpg-header-wrapper.carousel .swiper-button-next.swiper-button-disabled:after,.tpg-header-wrapper.carousel .swiper-button-prev.swiper-button-disabled:after{opacity:.35}.filter-button-border-enable .tpg-header-wrapper.carousel .rt-layout-filter-container{border:1px solid #ddd;border-radius:3px}.filter-button-border-enable .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide{padding:6px 15px;white-space:nowrap}.filter-button-border-enable .tpg-header-wrapper.carousel .swiper .swiper-navigation{left:3px}.filter-nex-prev-btn-hidden .tpg-header-wrapper.carousel .swiper .swiper-navigation{display:none}.filter-nex-prev-btn-hidden .tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap{margin-left:0}@media (max-width:767px){.tpg-header-wrapper.carousel{display:block}.tpg-header-wrapper.carousel .rt-layout-filter-container{margin-bottom:8px;margin-right:-9px;margin-top:10px;max-width:100%;position:relative}}.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item.selected,.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item:hover{background:none;color:#000}.rt-filter-item-wrap.rt-order-by-action,.rt-filter-item-wrap.rt-sort-order-action{float:left}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap{color:#666;cursor:pointer;display:inline-block;font-size:13px;letter-spacing:.1em;line-height:1.55;margin:4px;padding:8px 10px;position:relative;text-transform:uppercase;transition:background-color .2s ease-in-out,color .2s ease-in-out,border-color .2s ease-in-out;-webkit-transition:background-color .2s ease-in-out,color .2s ease-in-out,border-color .2s ease-in-out;-ms-transition:background-color .2s ease-in-out,color .2s ease-in-out,border-color .2s ease-in-out;-ms-user-select:none;user-select:none;-webkit-user-select:none;-moz-user-select:none;vertical-align:top}.rt-layout-filter-container .rt-filter-wrap .rt-filter-button-wrap{margin-right:0;margin-top:0;padding:0}@media (max-width:767px){.rt-layout-filter-container .rt-filter-wrap .rt-filter-button-wrap{display:inline}}.rt-layout-filter-container .rt-filter-wrap .rt-filter-button-item .rt-filter-sub-tax{display:none}.rt-layout-filter-container .rt-filter-sub-tax.sub-button-group{margin:0 4px}.rt-layout-filter-container .rt-filter-sub-tax.sub-button-group .rt-filter-button-item{cursor:pointer}.rt-layout-filter-container>.rt-filter-sub-tax.sub-button-group>span{border:1px solid;display:inline-block;font-size:13px;letter-spacing:.1em;line-height:1.55;margin:4px;padding:8px 10px;text-transform:uppercase;vertical-align:top}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap{border:1px solid #666;color:#666;position:relative}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap:hover{border-color:#222;color:#222}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-sort-order-action:hover{border-color:#222}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap>.rt-filter-dropdown-default{display:block;max-width:135px;min-width:135px;overflow:hidden;text-align:center;text-overflow:ellipsis;white-space:nowrap}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown{background-color:#222;border:none;border-top:1px solid transparent;display:block;right:-1px;margin-top:1px;opacity:0;position:absolute;left:-1px;top:100%;transition:opacity .3s ease-in-out,visibility .3s ease-in-out;-webkit-transition:opacity .3s ease-in-out,visibility .3s ease-in-out;-ms-transition:opacity .3s ease-in-out,visibility .3s ease-in-out;visibility:hidden;z-index:20}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap:hover .rt-filter-dropdown{border-top-color:#000}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown .rt-filter-dropdown-item.selected{background:#000}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap.active-dropdown .rt-filter-dropdown{opacity:1;visibility:visible}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap.active-dropdown .rt-arrow-angle{transform:rotate(-180deg);-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg)}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown .rt-filter-dropdown-item{border-bottom:1px solid rgba(0,0,0,.2);color:#b4b4b4;display:block;padding:10px 15px 9px;text-align:center}.rt-filter-dropdown-default .sub-dropdown-wrap,.rt-filter-dropdown-item .sub-dropdown-wrap{display:none!important}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-arrow-angle{backface-visibility:hidden;-webkit-backface-visibility:hidden;letter-spacing:0;transition:transform .2s ease-in-out;-webkit-transition:transform .2s ease-in-out;-ms-transition:transform .2s ease-in-out}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-sort-order-action{border:1px solid #666;color:#666;min-width:38px;position:relative}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow{position:static}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span{backface-visibility:hidden;-webkit-backface-visibility:hidden;display:block;height:8px;right:50%;margin-right:-7px;margin-top:-4px;position:absolute;top:50%;transition:transform .2s ease-in-out;-webkit-transition:transform .2s ease-in-out;-ms-transition:transform .2s ease-in-out;width:14px}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow[data-sort-order=ASC]>span{transform:rotate(-180deg);-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg)}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span:before{right:3px;transform:rotate(45deg);-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg)}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span:after,.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span:before{background-color:#666;content:"";display:block;height:9px;position:absolute;top:0;transition:background-color .2s ease-in-out;-webkit-transition:background-color .2s ease-in-out;-ms-transition:background-color .2s ease-in-out;width:2px}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span:after{right:9px;transform:rotate(-45deg);-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg)}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-search-filter-wrap{float:left;padding:0;position:relative}.rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:1px solid #666;color:#666;font-family:Dosis,sans-serif;font-size:12px;font-weight:600;height:39px;padding:11px}.rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input:focus{box-shadow:none;outline:none}.rt-filter-item-wrap.rt-search-filter-wrap span.rt-action{cursor:pointer;display:inline-block;font-size:15px;position:absolute;left:5px;top:6px}.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input::-webkit-input-placeholder{font-family:Dosis,sans-serif;font-size:12px;font-weight:600}.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input::-moz-placeholder{font-family:Dosis,sans-serif;font-size:12px;font-weight:600}.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input:-ms-input-placeholder{font-family:Dosis,sans-serif;font-size:12px;font-weight:600}.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input:-moz-placeholder{font-family:Dosis,sans-serif;font-size:12px;font-weight:600}@media (max-width:600px){.rt-filter-item-wrap.rt-tax-filter.rt-filter-dropdown-wrap{display:block;margin-bottom:10px}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap>.rt-filter-dropdown-default{margin:0 auto}}.rt-tpg-social-share.a{position:relative}body>.rt-tooltip{background:#666;border-radius:3px;border-width:2px;-o-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa;color:#fff;font-size:100%;opacity:0;padding:5px 10px;pointer-events:none;position:absolute;transition:opacity 1s ease-in-out;z-index:9999}body>.rt-tooltip .rt-tooltip-content{font-size:90%}body>.rt-tooltip,body>.rt-tooltip .rt-tooltip-bottom:after{background:#000;border-radius:2px}body>.rt-tooltip .rt-tooltip-bottom{bottom:-16px;height:18px;right:50%;margin-right:-32px;overflow:hidden;position:absolute;width:70px}body>.rt-tooltip .rt-tooltip-bottom:after{tranform:rotate(45deg);content:"";height:25px;right:20px;position:absolute;top:-20px;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);width:25px}.rt-tpg-container .rt-holder .rt-img-holder{overflow:hidden;position:relative}.rt-tpg-container .rt-holder .tpg-el-image-wrap{margin:-15px -15px 15px}.rt-tpg-container .list-behaviour .rt-holder .tpg-el-image-wrap{margin:0}.rt-tpg-container .img_zoom_out .rt-holder .rt-img-holder img:not(.avatar),.rt-tpg-container .rt-holder:hover .rt-img-holder img:not(.avatar){transform:scale(1.1)}.rt-tpg-container .img_no_effect .rt-holder:hover .rt-img-holder img,.rt-tpg-container .img_zoom_out .rt-holder:hover .rt-img-holder img{transform:scale(1)}.rt-tpg-container .rt-holder .rt-detail{padding:15px 15px 0}.rt-tpg-container .entry-title-wrapper .entry-title{font-size:26px;font-weight:500;line-height:1.25;margin:0 0 18px}@media (max-width:767px){.rt-tpg-container .entry-title-wrapper .entry-title{font-size:20px;margin:0 0 15px}}.rt-tpg-container .rt-detail .tpg-excerpt-inner,.rt-tpg-container .rt-holder .rt-detail .entry-title-wrapper{margin-bottom:15px}.rt-tpg-container .list-layout2 .rt-detail .tpg-excerpt-inner,.rt-tpg-container .list-layout3 .rt-detail .tpg-excerpt-inner{margin-bottom:0}.rt-tpg-container .rt-holder .rt-detail .post-meta{line-height:25px;overflow:hidden}.rt-tpg-container .rt-holder .rt-detail .read-more a{align-items:center;border:1px solid hsla(0,0%,80%,.4);display:inline-flex;flex-direction:row;flex-wrap:wrap;font-size:15px;justify-content:left;line-height:1.8;overflow:hidden;padding:8px 20px}.rt-tpg-container .rt-holder .rt-detail .read-more a:hover{border-color:#7a64f2;color:#7a64f2}.rt-tpg-container .rt-holder .rt-detail .read-more a{color:#1a1a1a}.rt-tpg-container .rt-holder .rt-detail .post-meta.right{text-align:left}.rt-tpg-container .rt-holder .rt-detail .post-meta.center{text-align:center}@-webkit-keyframes ball-scale-multiple{0%{opacity:0;transform:scale(0)}5%{opacity:.75}to{opacity:0;transform:scale(1)}}@keyframes ball-scale-multiple{0%{opacity:0;transform:scale(0)}5%{opacity:.75}to{opacity:0;transform:scale(1)}}@-webkit-keyframes ball-clip-rotate{0%{transform:rotate(0deg)}50%{transform:rotate(-180deg)}to{transform:rotate(-1turn)}}@keyframes ball-clip-rotate{0%{transform:rotate(0deg)}50%{transform:rotate(-180deg)}to{transform:rotate(-1turn)}}.rt-container-fluid{position:relative}#bottom-script-loader{background:hsla(0,0%,100%,.95);height:calc(100% + 60px);margin:-30px;position:absolute;width:calc(100% + 60px);z-index:999}#bottom-script-loader .rt-ball-clip-rotate{color:var(--tpg-primary-color,#0d6efd);margin-left:-16px;position:absolute;left:50%;top:80px;z-index:2}.tpg-widget-heading-wrapper{display:flex;margin-bottom:30px;position:relative}.tpg-widget-heading-wrapper .tpg-widget-heading{line-height:1;margin-bottom:-1px;margin-top:0;padding-left:15px;padding-top:0;position:relative}.search .tpg-widget-heading-wrapper .tpg-widget-heading{line-height:1.5}@meia (max-width: 767px){.tpg-widget-heading-wrapper .tpg-widget-heading{line-height:1.2}}.tpg-widget-heading-wrapper.center .tpg-widget-heading{margin:0;padding:0}.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading:before{background-color:var(--tpg-primary-color,#0d6efd);border-radius:50%;content:"";display:inline-block;height:8px;margin-left:7px;margin-top:-4px;position:absolute;left:-7.5px;top:50%;width:8px}.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-left,.tpg-widget-heading-wrapper.heading-style1.center .tpg-widget-heading:before{display:none}.tpg-widget-heading-wrapper.heading-style1.center .tpg-widget-heading-line.line-left{display:block;margin-right:0;margin-left:15px}.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line,.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line-left{-webkit-box-flex:1;align-self:center;border-color:#e5e5e5;border-style:solid;border-width:1px 0;flex-grow:1;height:4px;margin-right:15px}.tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading,.tpg-widget-heading-wrapper.heading-style3 .tpg-widget-heading{background-color:var(--tpg-primary-color,#0d6efd);color:#fff;line-height:1.4;margin-bottom:-.5px;padding:5px 15px}.tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading a,.tpg-widget-heading-wrapper.heading-style3 .tpg-widget-heading a{color:inherit}.tpg-widget-heading-wrapper.center{justify-content:center}.tpg-widget-heading-wrapper.right{flex-direction:row-reverse}.tpg-widget-heading-wrapper.right .tpg-widget-heading{padding-right:15px;padding-left:0}.tpg-widget-heading-wrapper.right .tpg-widget-heading:before{right:0;left:auto}.tpg-widget-heading-wrapper.right .tpg-widget-heading-line{margin-right:0;margin-left:15px}.tpg-el-main-wrapper .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:before,.tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:after{border-left:12px solid transparent;border-bottom:0 solid var(--tpg-primary-color,#0d6efd);border-right:0 solid transparent;border-top:12px solid var(--tpg-primary-color,#0d6efd);content:"";position:absolute;left:-11px;top:0}.section-title-align-center .tpg-el-main-wrapper .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:before,.tpg-widget-heading-wrapper.heading-style2.right .tpg-widget-heading:after{border-width:12px 12px 0 0;right:-11px;left:auto}.tpg-widget-heading-wrapper.heading-style2.center .tpg-widget-heading:after{content:none}.section-title-style-style2 .tpg-header-wrapper.carousel,.section-title-style-style2 .tpg-header-wrapper:not(.carousel) .tpg-widget-heading-wrapper,.section-title-style-style3 .tpg-header-wrapper.carousel,.section-title-style-style3 .tpg-header-wrapper:not(.carousel) .tpg-widget-heading-wrapper{border-bottom:2px solid var(--tpg-primary-color,#0d6efd)}.tpg-even,.tpg-full-height{display:flex;flex-wrap:wrap}@media (max-width:767px){.rt-content-loader .rt-holder,.tpg-even .rt-holder{flex-direction:column}}.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next>*{background-color:#bcbcbc;bottom:auto;color:#fff;cursor:pointer;display:inline-block;font-size:18px;height:30px;line-height:30px;margin-right:1px;margin-left:1px;text-align:center;transition:background-color .2s ease-in-out,color .2s ease-in-out,opacity .2s ease-in-out,visibility .2s ease-in-out;-webkit-transition:background-color .2s ease-in-out,color .2s ease-in-out,opacity .2s ease-in-out,visibility .2s ease-in-out;-ms-transition:background-color .2s ease-in-out,color .2s ease-in-out,opacity .2s ease-in-out,visibility .2s ease-in-out;width:30px}.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next>* i{line-height:1}.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next>.rt-disabled{opacity:.5;pointer-events:none}.rt-cb-page-prev-next{text-align:right}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style .rt-loadmore-loading{color:#fff;right:50%;margin-right:-32px;margin-top:-32px;opacity:0;position:absolute;top:50%;visibility:hidden}.rt-ball-scale-multiple.rt-2x,.rt-ball-scale-multiple.rt-2x>div{height:64px;width:64px}.rt-ball-scale-multiple,.rt-ball-scale-multiple>div{box-sizing:border-box;position:relative}.rt-ball-scale-multiple>div{background-color:currentColor;border:0 solid;display:inline-block;float:none}.rt-ball-scale-multiple>div:nth-child(2){-webkit-animation-delay:.2s;animation-delay:.2s}.rt-ball-scale-multiple>div{-webkit-animation:ball-scale-multiple 1s linear 0s infinite;animation:ball-scale-multiple 1s linear 0s infinite;border-radius:100%;height:32px;right:0;opacity:0;position:absolute;top:0;width:32px}.rt-tpg-container .rt-pagination-wrap{display:inline-block;margin-top:10px;text-align:center;width:100%}.tpg-el-main-wrapper .rt-pagination-wrap{display:flex;flex-direction:row;justify-content:center;margin-top:30px}.tpg-el-main-wrapper .rt-pagination-wrap .rt-pagination{margin:0}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style{cursor:pointer;position:relative;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next.rt-hidden-elm,.rt-tpg-container .rt-pagination-wrap .rt-infinite-action.rt-hidden-elm,.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style.rt-hidden-elm,.rt-tpg-container .rt-pagination-wrap .rt-page-numbers.rt-hidden-elm{display:none!important}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style.rt-lm-loading .rt-loadmore-text{opacity:0;visibility:hidden}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style.rt-lm-loading .rt-loadmore-loading{opacity:1;visibility:visible}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-btn{background-color:var(--tpg-primary-color,#0d6efd);color:#fff;display:inline-block;font-size:13px;letter-spacing:.1em;margin-top:30px;padding:9px 20px 8px;text-decoration:none;text-transform:uppercase;transition:color .2s ease-in-out,background-color .2s ease-in-out;-webkit-transition:color .2s ease-in-out,background-color .2s ease-in-out;-ms-transition:color .2s ease-in-out,background-color .2s ease-in-out}.rt-tpg-container .rt-loadmore-btn:hover{background-color:var(--tpg-secondary-color,#0654c4)}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages{float:none;padding-bottom:.1px;padding-top:.1px}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers.rt-lm-loading{opacity:.5;pointer-events:none}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul{float:none;font-size:0;line-height:0;margin:-2px;text-align:center}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li{border:none;display:inline-block;float:none;font-size:16px;line-height:1.55;min-height:45px;min-width:48px;padding:2px}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li>a{border:1px solid #dee2e6;border-radius:3px;color:#212121;display:block;font-size:16px;font-weight:400;letter-spacing:0;line-height:45px;min-height:45px;min-width:48px;padding-right:8px;padding-left:8px;text-decoration:none}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.active>a{background-color:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd);color:#fff}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.paginationjs-ellipsis{min-width:auto;padding:0}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.paginationjs-ellipsis a{background:none!important;border:none!important;color:#000!important;font-size:18px;min-width:auto;opacity:1;pointer-events:none!important}.rt-pagination{margin:30px 0;text-align:center}.rt-pagination .pagination-list{background:transparent;border-radius:4px;border-top:0;display:inline-block;padding-right:0}.rt-pagination .pagination-list a{box-shadow:none}.rt-pagination .pagination-list>li{display:inline-block;margin:2px}.rt-pagination .pagination-list>li>a,.rt-pagination .pagination-list>li>span{background-color:#fff;border:1px solid #ddd;border-radius:3px;color:#212121;display:block;line-height:45px;margin-right:-1px;min-height:45px;min-width:48px;padding:0 5px;position:relative;text-decoration:none;transition:.4s ease-in-out}.rt-pagination .pagination-list>li>a:focus,.rt-pagination .pagination-list>li>a:hover,.rt-pagination .pagination-list>li>span:focus,.rt-pagination .pagination-list>li>span:hover{background-color:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd);color:#fff;z-index:2}.rt-pagination .pagination-list>.active>a,.rt-pagination .pagination-list>.active>a:focus,.rt-pagination .pagination-list>.active>a:hover,.rt-pagination .pagination-list>.active>span,.rt-pagination .pagination-list>.active>span:focus,.rt-pagination .pagination-list>.active>span:hover{background-color:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd);color:#fff;cursor:default;z-index:3}.rt-pagination .pagination-list>.disabled>a,.rt-pagination .pagination-list>.disabled>a:focus,.rt-pagination .pagination-list>.disabled>a:hover,.rt-pagination .pagination-list>.disabled>span,.rt-pagination .pagination-list>.disabled>span:focus,.rt-pagination .pagination-list>.disabled>span:hover{background-color:#fff;border-color:#ddd;color:#212121;cursor:not-allowed}.rt-tpg-container .swiper-pagination-bullet{background:#d6d6d6;height:10px;opacity:1;width:10px}.rt-tpg-container .swiper-wrapper{padding-bottom:45px}.rt-tpg-container.slider-layout13-main .swiper-wrapper{padding-bottom:0}.rt-tpg-container .swiper-pagination-bullets.swiper-pagination-horizontal{bottom:0}.rt-tpg-container .swiper-pagination-bullet.swiper-pagination-bullet-active-main{background:#007bff}.rt-tpg-container>div{position:relative}.rt-tpg-container .slider-main-wrapper{opacity:0;position:relative}.rt-tpg-container .swiper-navigation .slider-btn{align-items:center;background-color:#fff;background-image:none;border:1px solid #e5e5e5;border-radius:3px;color:#2962ff;display:inline-flex;font-size:14px;height:32px;justify-content:center;position:absolute;transition:all .3s ease;-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;width:34px}.rt-tpg-container .tpg-header-wrapper .swiper-navigation .slider-btn,.slider-arrow-position-top-left .rt-tpg-container .swiper-navigation .slider-btn,.slider-arrow-position-top-right .rt-tpg-container .swiper-navigation .slider-btn{position:static}.rt-tpg-container .swiper-navigation .slider-btn:hover{background-color:#2962ff;border-color:#2962ff;color:#fff}.rt-tpg-container .swiper-navigation .slider-btn:focus{box-shadow:none;outline:0}.rt-tpg-container .swiper-navigation .slider-btn.swiper-button-next{margin-right:3px}.rt-tpg-container .swiper-navigation .swiper-button-next:after,.rt-tpg-container .swiper-navigation .swiper-button-prev:after{font-size:inherit}.rt-tpg-container .tpg-cf-group-title{font-size:16px;margin-bottom:0}.rt-tpg-container .tpg-cf-fields{font-size:95%;line-height:1.6;margin-top:0}.tpg-el-main-wrapper .tpg-cf-wrap{margin:10px 0 0}.rt-tpg-container .tpg-cf-wrap:empty{margin:0}.act-label-style-inline .tgp-cf-field-label{margin-left:8px;min-width:inherit}.act-label-style-inline .tgp-cf-field-label:after{content:":"}.act-label-style-block .tgp-cf-field-label{display:block!important;float:none;margin-left:0;min-width:inherit}.act-label-style-block .tpg-cf-fields{display:block;margin-bottom:5px}.rt-tpg-container .rt-holder .tgp-cf-field-value *{color:inherit;display:inline;margin:0;transition:none}.isotope-term-no-post{min-height:30px}.isotope-term-no-post p{display:none;margin-bottom:0}.tpg-el-main-wrapper.loading{min-height:300px;transition:.4s}.tpg-el-main-wrapper.loading:before{-webkit-animation:ball-clip-rotate .75s linear infinite;animation:ball-clip-rotate .75s linear infinite;background:transparent;border:2px solid;border-bottom:2px solid transparent;border-radius:100%;color:red;display:inline-block;float:none;height:32px;right:50%;position:absolute;top:50%;width:32px;z-index:9999999999}.tpg-shortcode-main-wrapper .even-grid-item,.tpg-shortcode-main-wrapper .masonry-grid-item{margin-bottom:30px}.tpg-shortcode-main-wrapper i{margin-left:5px}.tpg-shortcode-main-wrapper .product-more i{margin-left:0}.tpg-shortcode-main-wrapper .grid_hover1 .even-grid-item,.tpg-shortcode-main-wrapper .grid_hover1 .masonry-grid-item,.tpg-shortcode-main-wrapper .grid_hover2 .even-grid-item,.tpg-shortcode-main-wrapper .grid_hover2 .masonry-grid-item,.tpg-shortcode-main-wrapper .grid_hover3 .even-grid-item,.tpg-shortcode-main-wrapper .grid_hover3 .masonry-grid-item,.tpg-shortcode-main-wrapper .grid_hover4 .even-grid-item,.tpg-shortcode-main-wrapper .grid_hover4 .masonry-grid-item,.tpg-shortcode-main-wrapper .grid_hover5 .even-grid-item,.tpg-shortcode-main-wrapper .grid_hover5 .masonry-grid-item,.tpg-shortcode-main-wrapper .list_layout1 .even-grid-item,.tpg-shortcode-main-wrapper .list_layout1 .masonry-grid-item{margin-bottom:0}.layout3 .rt-img-responsive{display:inline-block}.list_layout2 .post-meta-tags,.list_layout2 .post-meta-user{color:#a5a6aa;font-size:14px}.rt-content-loader.layout14 .post-meta-tags,.rt-content-loader.layout14 .post-meta-user{margin-bottom:0}.offset06 .post-meta-tags span,.offset06 .post-meta-user span{color:#a5a6aa;font-size:14px;font-weight:500;padding-left:15px}.offset06 .post-meta-tags span a,.offset06 .post-meta-user span a{color:#444}.offset06 .post-meta-tags span a:hover,.offset06 .post-meta-user span a:hover{color:#2962ff}.tpg-shortcode-main-wrapper .rt-detail .entry-title a{text-decoration:none}.categories-links{display:inline-block;line-height:1.3}.tpg-shortcode-main-wrapper .rt-holder{overflow:hidden}.tpg-shortcode-main-wrapper .grid_hover6 .rt-grid-item{margin-bottom:4px;overflow:hidden;padding:0 2px}.tpg-shortcode-main-wrapper .grid_hover6 .rt-grid-item .post-img img,.tpg-shortcode-main-wrapper .grid_hover7 .rt-grid-item .post-img img{min-height:350px;-o-object-fit:cover;object-fit:cover}.grid_hover4 .rt-grid-item{padding:0}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-img-holder,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-img-holder,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-img-holder{overflow:hidden;position:relative}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-img-holder img,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-img-holder img,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-img-holder img{max-width:100%;transition:all 1.1s ease}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-img-holder:hover img,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-img-holder:hover img,.tpg-shortcode-main-wrapper .layout1 .img_zoom_out .rt-holder .rt-img-holder img,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-img-holder:hover img{transform:scale(1.1)}.tpg-shortcode-main-wrapper .layout1 .img_no_effect .rt-holder .rt-img-holder:hover img,.tpg-shortcode-main-wrapper .layout1 .img_zoom_out .rt-holder .rt-img-holder:hover img{transform:scale(1)}.tpg-shortcode-main-wrapper .carousel1 .rt-holder,.tpg-shortcode-main-wrapper .isotope1 .rt-holder,.tpg-shortcode-main-wrapper .layout1 .rt-holder{box-shadow:0 0 2px 0 rgba(0,0,0,.3);-webkit-box-shadow:0 0 2px 0 rgba(0,0,0,.3);-moz-box-shadow:0 0 2px 0 rgba(0,0,0,.3)}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail{background:#fff;padding:15px}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail h4,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail h4,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail h4{font-size:26px;font-weight:400;line-height:1.25;margin:0 0 18px}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail.rt-with-title h2,.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail.rt-with-title h3,.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail.rt-with-title h4,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail.rt-with-title h2,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail.rt-with-title h3,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail.rt-with-title h4,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail.rt-with-title h2,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail.rt-with-title h3,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail.rt-with-title h4{margin-bottom:15px}.tpg-shortcode-main-wrapper .rt-holder .rt-detail.rt-with-title{padding-top:0}.tpg-shortcode-main-wrapper .isotope1 .rt-detail .tpg-excerpt,.tpg-shortcode-main-wrapper .layout1 .rt-detail .tpg-excerpt{margin-bottom:20px}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail .post-meta,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail .post-meta,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail .post-meta{line-height:25px;overflow:hidden}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail .read-more a,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail .read-more a,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail .read-more a{border:1px solid hsla(0,0%,80%,.4);color:#1a1a1a;display:inline-block;font-size:15px;line-height:1.8;padding:8px 20px}.tpg-shortcode-main-wrapper .rt-holder .rt-detail .post-meta.right{text-align:left}.tpg-shortcode-main-wrapper .rt-holder .rt-detail .post-meta.center{text-align:center}.tpg-img-circle .rt-img-holder img{border-radius:50%!important}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-img-holder{overflow:hidden;position:relative}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-img-holder img{max-width:100%;transition:all 1.1s ease}.tpg-shortcode-main-wrapper .layout2 .img_zoom_out .rt-holder .rt-img-holder img,.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-img-holder:hover img{transform:scale(1.1)}.tpg-shortcode-main-wrapper .layout2 .img_no_effect .rt-holder .rt-img-holder:hover img,.tpg-shortcode-main-wrapper .layout2 .img_no_effect .rt-holder .rt-img-holder img,.tpg-shortcode-main-wrapper .layout2 .img_zoom_out .rt-holder .rt-img-holder:hover img{transform:scale(1)}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail h4{font-size:26px;font-weight:400;line-height:1.25;margin:0 0 15px}.tpg-shortcode-main-wrapper .layout2 .rt-detail .tpg-excerpt{margin-bottom:20px}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .read-more a{border-radius:5px;display:inline-block;line-height:1.8}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .read-more{display:inline-block;width:100%}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .read-more.right{text-align:left}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .read-more.center{text-align:center}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .rt-tpg-social-share{margin-bottom:15px}@media (max-width:767px){.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail,.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail{padding:15px 0}}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail p{margin-bottom:20px}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail h4{font-size:26px;font-weight:400;line-height:1.25;margin:0 0 18px}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-img-holder .overlay{background:rgba(0,0,0,.7);display:block;height:100%;opacity:0;position:absolute;text-align:center;transition:all .3s ease-out 0s;width:100%;z-index:1}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .read-more a{display:inline-block;line-height:1.8}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-img-holder,.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-img-holder>a.rounded img{border-radius:50%;overflow:hidden}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .read-more{display:inline-block;width:100%}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .read-more.right{text-align:left}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .read-more.center{text-align:center}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .rt-tpg-social-share{margin-bottom:15px}.tpg-shortcode-main-wrapper .carousel2 .rt-holder,.tpg-shortcode-main-wrapper .isotope2 .rt-holder,.tpg-shortcode-main-wrapper .layout5 .rt-holder,.tpg-shortcode-main-wrapper .offset03 .rt-holder{overflow:hidden;position:relative}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay{background:rgba(235,0,0,.8);bottom:0;display:block;height:25%;right:0;min-height:150px;opacity:1;padding:20px;position:absolute;transition:all 1s ease;width:100%;z-index:1}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .rt-detail,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .rt-detail,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .rt-detail{color:#fff;max-height:0;opacity:0;padding:0;transition:all .8s ease-in-out;visibility:hidden}.tpg-shortcode-main-wrapper .carousel2 .rt-holder:hover .overlay .rt-detail,.tpg-shortcode-main-wrapper .isotope2 .rt-holder:hover .overlay .rt-detail,.tpg-shortcode-main-wrapper .layout5 .rt-holder:hover .overlay .rt-detail{max-height:450px;transition:all 1.2s ease-in-out .2s}.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .rt-detail{color:#fff;padding:0 0 15px}.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .rt-detail>:not(.post-meta-user){opacity:0;visibility:hidden}.tpg-shortcode-main-wrapper .offset03 .rt-holder:hover .overlay .rt-detail>:not(.post-meta-user){opacity:1;visibility:visible}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .post-meta-user a,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .post-meta-user a,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .post-meta-user a,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .post-meta-user a{color:#fff}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h2,.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h3,.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h4,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h2,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h3,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h4,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h2,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h3,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h4,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h2,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h3,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h4{color:#fff;font-size:22px;font-weight:400;line-height:1.3;margin:0 0 10px}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h2 a,.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h3 a,.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h4 a,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h2 a,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h3 a,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h4 a,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h2 a,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h3 a,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h4 a,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h2 a,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h3 a,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h4 a{color:#fff}.tpg-shortcode-main-wrapper .carousel2 .rt-holder:hover .overlay,.tpg-shortcode-main-wrapper .isotope2 .rt-holder:hover .overlay,.tpg-shortcode-main-wrapper .layout5 .rt-holder:hover .overlay,.tpg-shortcode-main-wrapper .offset03 .rt-holder:hover .overlay{height:100%;width:100%}.tpg-shortcode-main-wrapper .carousel2 .rt-holder:hover .overlay .rt-detail,.tpg-shortcode-main-wrapper .isotope2 .rt-holder:hover .overlay .rt-detail,.tpg-shortcode-main-wrapper .layout5 .rt-holder:hover .overlay .rt-detail,.tpg-shortcode-main-wrapper .offset03 .rt-holder:hover .overlay .rt-detail{opacity:1;visibility:visible}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .post-meta-user{display:block}.tpg-shortcode-main-wrapper .isotope2 .rt-holder .post-meta,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .post-meta .rt-tpg-social-share{text-align:center}.tpg-shortcode-main-wrapper .isotope2 .rt-holder .post-meta.left{text-align:right}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay>:not(.entry-title),.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .rt-detail,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay>:not(.entry-title){max-height:0;opacity:0;overflow:hidden;transition:.6s!important}.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .overlay>:not(.entry-title),.tpg-shortcode-main-wrapper .layout5 .rt-holder:hover .overlay .rt-detail,.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .overlay>:not(.entry-title){max-height:300px;opacity:1}.tpg-shortcode-main-wrapper .layout5 .rt-holder{display:flex;min-height:250px}.tpg-shortcode-main-wrapper .layout5 .rt-holder .rt-img-responsive{height:100%;-o-object-fit:cover;object-fit:cover}.tpg-shortcode-main-wrapper .carousel3 .rt-holder,.tpg-shortcode-main-wrapper .isotope3 .rt-holder,.tpg-shortcode-main-wrapper .layout6 .rt-holder{position:relative}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay{align-items:center;background:rgba(0,0,0,.7);display:flex;flex-direction:column;height:100%;justify-content:center;opacity:0;padding:15px;position:absolute;text-align:center;text-decoration:none;transition:all .3s ease-out;width:100%;z-index:9}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .line,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .line,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .line{background-color:#fff;height:2px;margin:12px auto;min-height:2px;transition:all .5s ease-out;width:0}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay:hover .line,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay:hover .line,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay:hover .line{width:40%}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h2,.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h3,.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h4,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h2,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h3,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h4,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h2,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h3,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h4{color:#fff;font-size:22px;font-weight:400;line-height:1.25;margin:0 0 18px;padding-top:5%}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h2 a,.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h3 a,.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h4 a,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h2 a,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h3 a,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h4 a,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h2 a,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h3 a,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h4 a{color:#fff}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta.left,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta.left,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta.left{text-align:right}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta.right,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta.right,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta.right{text-align:left}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .rt-tpg-social-share,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .rt-tpg-social-share,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .rt-tpg-social-share{float:none;text-align:center}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .read-more,.tpg-shortcode-main-wrapper .layout6 .rt-holder .read-more{float:none}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta-user{color:#fff}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta-user p,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta-user p,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta-user p{margin-bottom:0}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta-user a,.tpg-shortcode-main-wrapper .carousel3 .rt-holder:hover .overlay .tpg-excerpt,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta-user a,.tpg-shortcode-main-wrapper .isotope3 .rt-holder:hover .overlay .tpg-excerpt,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta-user a,.tpg-shortcode-main-wrapper .layout6 .rt-holder:hover .overlay .tpg-excerpt{color:#fff}.tpg-shortcode-main-wrapper .carousel3 .rt-holder:hover .overlay,.tpg-shortcode-main-wrapper .isotope3 .rt-holder:hover .overlay,.tpg-shortcode-main-wrapper .layout6 .rt-holder:hover .overlay{opacity:1}.tpg-shortcode-main-wrapper .carousel4 .rt-holder,.tpg-shortcode-main-wrapper .isotope4 .rt-holder,.tpg-shortcode-main-wrapper .layout7 .rt-holder{position:relative}.tpg-shortcode-main-wrapper .carousel4 .rt-holder img,.tpg-shortcode-main-wrapper .isotope4 .rt-holder img,.tpg-shortcode-main-wrapper .layout7 .rt-holder img{opacity:.9;transition:opacity .35s}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay{align-items:center;background:rgba(0,0,0,.3);display:flex;flex-direction:column;height:100%;justify-content:center;right:0;padding:0 12px;position:absolute;top:0;width:100%}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay:hover,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay:hover,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay:hover{background:rgba(0,0,0,.5)}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay:before,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay:before,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay:before{border:2px solid #fff;bottom:20px;box-shadow:0 0 0 30px hsla(0,0%,100%,.2);content:"";right:20px;opacity:0;position:absolute;left:20px;top:20px;transform:scale3d(1.4,1.4,1);transition:opacity .35s,transform .35s}.tpg-shortcode-main-wrapper .carousel7 .rt-holder .cat-above-title,.tpg-shortcode-main-wrapper .carousel11 .rt-holder .post-info .cat-above-title,.tpg-shortcode-main-wrapper .carousel12 .rt-holder .post-info .cat-above-title{color:#fff;text-align:center}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .cat-above-title,.tpg-shortcode-main-wrapper .carousel5 .rt-holder .cat-above-title{color:#fff;margin-top:30px;opacity:0;text-align:center}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .cat-above-title a,.tpg-shortcode-main-wrapper .carousel5 .rt-holder .cat-above-title a,.tpg-shortcode-main-wrapper .carousel7 .rt-holder .cat-above-title a,.tpg-shortcode-main-wrapper .carousel8 .rt-holder .cat-above-title *,.tpg-shortcode-main-wrapper .carousel12 .rt-holder .post-info .cat-above-title *{color:inherit}.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .cat-above-title,.tpg-shortcode-main-wrapper .carousel5 .rt-holder:hover .cat-above-title{opacity:1}.tpg-shortcode-main-wrapper .carousel5 .rt-holder:hover .cat-above-title+.entry-title,.tpg-shortcode-main-wrapper .carousel11 .rt-holder .post-info .cat-above-title,.tpg-shortcode-main-wrapper .carousel12 .rt-holder .post-info .cat-above-title{padding-top:10px}.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .cat-above-title+.entry-title{margin-top:10px}.tpg-shortcode-main-wrapper .carousel4 .rt-holder h2,.tpg-shortcode-main-wrapper .carousel4 .rt-holder h3,.tpg-shortcode-main-wrapper .carousel4 .rt-holder h4,.tpg-shortcode-main-wrapper .isotope4 .rt-holder h2,.tpg-shortcode-main-wrapper .isotope4 .rt-holder h3,.tpg-shortcode-main-wrapper .isotope4 .rt-holder h4,.tpg-shortcode-main-wrapper .layout7 .rt-holder h2,.tpg-shortcode-main-wrapper .layout7 .rt-holder h3,.tpg-shortcode-main-wrapper .layout7 .rt-holder h4{color:#fff;font-size:22px;font-weight:400;line-height:1.25;margin:30% 0 10px;text-align:center;transition:transform .35s}.tpg-shortcode-main-wrapper .carousel4 .rt-holder h2 a,.tpg-shortcode-main-wrapper .carousel4 .rt-holder h3 a,.tpg-shortcode-main-wrapper .carousel4 .rt-holder h4 a,.tpg-shortcode-main-wrapper .isotope4 .rt-holder h2 a,.tpg-shortcode-main-wrapper .isotope4 .rt-holder h3 a,.tpg-shortcode-main-wrapper .isotope4 .rt-holder h4 a,.tpg-shortcode-main-wrapper .layout7 .rt-holder h2 a,.tpg-shortcode-main-wrapper .layout7 .rt-holder h3 a,.tpg-shortcode-main-wrapper .layout7 .rt-holder h4 a{color:#fff}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .tpg-excerpt,.tpg-shortcode-main-wrapper .carousel4 .rt-holder p,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .tpg-excerpt,.tpg-shortcode-main-wrapper .isotope4 .rt-holder p,.tpg-shortcode-main-wrapper .layout7 .rt-holder .tpg-excerpt,.tpg-shortcode-main-wrapper .layout7 .rt-holder p{color:#fff;opacity:0;padding:0 15px;text-align:center;transform:scale(1.5);transition:opacity .35s,transform .35s}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .post-meta-user p,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .post-meta-user p,.tpg-shortcode-main-wrapper .layout7 .rt-holder .post-meta-user p{margin-bottom:0}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .post-meta-user a,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .post-meta-user a,.tpg-shortcode-main-wrapper .layout7 .rt-holder .post-meta-user a{color:#fff}.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover h3,.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover h3,.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover h3{margin:7% 0 10px;transform:scale(.9)}.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .overlay:before,.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .tpg-excerpt,.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover p,.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover .overlay:before,.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover .tpg-excerpt,.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover p,.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .overlay:before,.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .tpg-excerpt,.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover p{opacity:1;transform:scaleX(1)}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay .post-meta,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay .post-meta,.tpg-shortcode-main-wrapper .layout7 .rt-holder .cat-above-title,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .post-meta{color:#fff;opacity:0;overflow:hidden;text-align:center}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay .post-meta.left,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay .post-meta.left,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .post-meta.left{text-align:right}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay .post-meta.right,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay .post-meta.right,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .post-meta.right{text-align:left}.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .overlay .post-meta,.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover .overlay .post-meta,.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .cat-above-title,.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .overlay .post-meta{opacity:1;transform:scale(1);transition:opacity .35s,transform .35s}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay .rt-tpg-social-share,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay .rt-tpg-social-share,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .rt-tpg-social-share{float:none;text-align:center}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .read-more,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .read-more,.tpg-shortcode-main-wrapper .layout7 .rt-holder .read-more{float:none}.tpg-shortcode-main-wrapper .carousel4 .rt-holder h3,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .entry-title{margin:0!important;transition:.4s}.tpg-shortcode-main-wrapper .carousel8 .rt-holder,.tpg-shortcode-main-wrapper .isotope8 .rt-holder,.tpg-shortcode-main-wrapper .layout12 .rt-holder{background:#fff;box-shadow:0 1px 2px 0 rgba(0,0,0,.22)}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-img-holder,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-img-holder,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-img-holder{overflow:hidden;position:relative}.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover img,.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover img,.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover img{transform:scale(1.05);-webkit-transform:scale(1.05);-moz-transform:scale(1.05);-ms-transform:scale(1.05);-o-transform:scale(1.05);-webkit-transition:all .25s ease-in-out}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail{background:#fff;display:inline-block;padding:25px;transition:all .3s ease-out 0s;width:100%}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail.rt-with-title,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail.rt-with-title,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail.rt-with-title{padding-bottom:0;padding-top:0}.tpg-shortcode-main-wrapper .carousel8 .rt-holder.rt-with-title-below h2.entry-title,.tpg-shortcode-main-wrapper .carousel8 .rt-holder.rt-with-title-below h3.entry-title,.tpg-shortcode-main-wrapper .carousel8 .rt-holder.rt-with-title-below h4.entry-title,.tpg-shortcode-main-wrapper .isotope8 .rt-holder.rt-with-title-below h2.entry-title,.tpg-shortcode-main-wrapper .isotope8 .rt-holder.rt-with-title-below h3.entry-title,.tpg-shortcode-main-wrapper .isotope8 .rt-holder.rt-with-title-below h4.entry-title,.tpg-shortcode-main-wrapper .layout12 .rt-holder.rt-with-title-below h2.entry-title,.tpg-shortcode-main-wrapper .layout12 .rt-holder.rt-with-title-below h3.entry-title,.tpg-shortcode-main-wrapper .layout12 .rt-holder.rt-with-title-below h4.entry-title{margin-top:0}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail.rt-with-title .entry-title,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail.rt-with-title .entry-title,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail.rt-with-title .entry-title{display:inline-block}.tpg-shortcode-main-wrapper .carousel8 .rt-holder.rt-with-title .post-meta-user,.tpg-shortcode-main-wrapper .isotope8 .rt-holder.rt-with-title .post-meta-user,.tpg-shortcode-main-wrapper .layout12 .rt-holder.rt-with-title .post-meta-user{margin-bottom:15px}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h4,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h4,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h4{font-size:22px;font-weight:400;line-height:1.25;margin:15px 0}.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h4{font-weight:500}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h2 a,.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h3 a,.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h4 a,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h2 a,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h3 a,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h4 a,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h2 a,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h3 a,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h4 a{color:#000}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h2 a:hover,.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h3 a:hover,.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h4 a:hover,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h2 a:hover,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h3 a:hover,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h4 a:hover,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h2 a:hover,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h3 a:hover,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h4 a:hover{color:#fff}.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail{flex-grow:1}.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail,.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail,.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover .rt-detail{background:#0850d0;color:#fff}.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail a,.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail a,.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover .rt-detail a{color:#fff}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail .read-more,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail .read-more,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail .read-more{text-align:left}.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail .post-meta-user,.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail .post-meta-user .meta-data,.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail .post-meta-user a,.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail .post-meta-user i[class^=fa],.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail h3 a,.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail .post-meta-user,.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail .post-meta-user .meta-data,.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail .post-meta-user a,.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail .post-meta-user i[class^=fa],.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover .rt-detail .post-meta-user,.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover .rt-detail .post-meta-user a,.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover .rt-detail i{color:#fff!important}@media (min-width:992px){.rt-container{width:970px}}@media (min-width:1200px){.rt-container{width:1170px}}@media (max-width:767px){.hidden-xs{display:none!important}}@media screen and (max-width:768px){.rt-member-description-container,.rt-member-feature-img{float:none;width:100%}}@media (min-width:768px){.rt-col-sm-1,.rt-col-sm-2,.rt-col-sm-3,.rt-col-sm-4,.rt-col-sm-5,.rt-col-sm-6,.rt-col-sm-7,.rt-col-sm-8,.rt-col-sm-9,.rt-col-sm-10,.rt-col-sm-11,.rt-col-sm-12,.rt-col-sm-24{float:right}.rt-col-sm-24{width:20%}.rt-col-sm-12{width:100%}.rt-col-sm-11{width:91.66666667%}.rt-col-sm-10{width:83.33333333%}.rt-col-sm-9{width:75%}.rt-col-sm-8{width:66.66666667%}.rt-col-sm-7{width:58.33333333%}.rt-col-sm-6{width:50%}.rt-col-sm-5{width:41.66666667%}.rt-col-sm-4{width:33.33333333%}.rt-col-sm-3{width:25%}.rt-col-sm-2{width:16.66666667%}.rt-col-sm-1{width:8.33333333%}}@media (min-width:992px){.rt-col-md-1,.rt-col-md-2,.rt-col-md-3,.rt-col-md-4,.rt-col-md-5,.rt-col-md-6,.rt-col-md-7,.rt-col-md-8,.rt-col-md-9,.rt-col-md-10,.rt-col-md-11,.rt-col-md-12,.rt-col-md-24{float:right}.rt-col-md-24{width:20%}.rt-col-md-12{width:100%}.rt-col-md-11{width:91.66666667%}.rt-col-md-10{width:83.33333333%}.rt-col-md-9{width:75%}.rt-col-md-8{width:66.66666667%}.rt-col-md-7{width:58.33333333%}.rt-col-md-6{width:50%}.rt-col-md-5{width:41.66666667%}.rt-col-md-4{width:33.33333333%}.rt-col-md-3{width:25%}.rt-col-md-2{width:16.66666667%}.rt-col-md-1{width:8.33333333%}}@media (min-width:1200px){.rt-col-lg-1,.rt-col-lg-2,.rt-col-lg-3,.rt-col-lg-4,.rt-col-lg-5,.rt-col-lg-6,.rt-col-lg-7,.rt-col-lg-8,.rt-col-lg-9,.rt-col-lg-10,.rt-col-lg-11,.rt-col-lg-12{float:right}.rt-col-lg-24{width:20%}.rt-col-lg-12{width:100%}.rt-col-lg-11{width:91.66666667%}.rt-col-lg-10{width:83.33333333%}.rt-col-lg-9{width:75%}.rt-col-lg-8{width:66.66666667%}.rt-col-lg-7{width:58.33333333%}.rt-col-lg-6{width:50%}.rt-col-lg-5{width:41.66666667%}.rt-col-lg-4{width:33.33333333%}.rt-col-lg-3{width:25%}.rt-col-lg-2{width:16.66666667%}.rt-col-lg-1{width:8.33333333%}}.rt-img-holder{overflow:hidden}.layout4 .rt-img-holder,.layout4 .rt-img-holder a,.layout4 .rt-img-holder img{height:100%}.img_zoom_in img.rt-img-responsive,.img_zoom_out img.rt-img-responsive{min-width:100%;transition:all 1s!important}.img_zoom_in:hover img.rt-img-responsive,.img_zoom_out img.rt-img-responsive{transform:scale(1.2)!important}.img_zoom_out:hover img.rt-img-responsive{transform:scale(1)!important}.tpg-shortcode-main-wrapper .img_no_effect:hover img.rt-img-responsive{transform:none}.tpg-even .rt-holder{display:flex;height:100%}.tpg-even.edd1 .rt-holder,.tpg-even.layout1 .rt-holder,.tpg-even.layout12 .rt-holder,.tpg-even.offset01 .offset-big .rt-holder,.tpg-even.offset02 .offset-big .rt-holder{flex-direction:column}.tpg-even.edd1 .rt-holder .rt-img-holder,.tpg-even.layout1 .rt-holder .rt-img-holder,.tpg-even.layout11 .rt-holder .rt-img-holder,.tpg-even.layout11 .rt-holder .rt-img-holder *{height:auto}@media (min-width:768px) and (max-width:991px){.tpg-even.layout4 .even-grid-item:nth-of-type(4n+2) .rt-holder [class*=rt-col]:first-child,.tpg-even.layout4 .even-grid-item:nth-of-type(4n+3) .rt-holder [class*=rt-col]:first-child{order:2}}@media (max-width:767px){.tpg-even.layout4 .even-grid-item .rt-holder .layoutInner-img{order:-1!important}}.tpg-shortcode-main-wrapper .rt-holder .overlay,.tpg-shortcode-main-wrapper .rt-holder .overlay>a[data-id],.tpg-shortcode-main-wrapper .rt-holder>a[data-id]{width:100%}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay,.tpg-shortcode-main-wrapper .carousel5 .rt-holder .overlay,.tpg-shortcode-main-wrapper .carousel7 .rt-holder .overlay .post-info,.tpg-shortcode-main-wrapper .carousel11 .rt-holder .overlay .post-info .tpg-shortcode-main-wrapper .layout13 .rt-holder .overlay .post-info,.tpg-shortcode-main-wrapper .carousel11 .rt-holder .post-info,.tpg-shortcode-main-wrapper .carousel12 .rt-holder .post-info,.tpg-shortcode-main-wrapper .isotope2 .rt-holder:hover .overlay,.tpg-shortcode-main-wrapper .isotope5 .rt-holder .overlay,.tpg-shortcode-main-wrapper .isotope7 .rt-holder .post-info,.tpg-shortcode-main-wrapper .isotope9 .rt-holder .overlay .post-info,.tpg-shortcode-main-wrapper .isotope11 .rt-holder .overlay .post-info,.tpg-shortcode-main-wrapper .isotope12 .rt-holder .post-info,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay,.tpg-shortcode-main-wrapper .layout8 .rt-holder .overlay,.tpg-shortcode-main-wrapper .layout10 .rt-holder .overlay .post-info,.tpg-shortcode-main-wrapper .layout15 .rt-holder .overlay .post-info,.tpg-shortcode-main-wrapper .layout16 .rt-holder .overlay .post-info{display:flex;flex-direction:column;justify-content:center}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .read-more a,.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .read-more a,.tpg-shortcode-main-wrapper .carousel4 .rt-holder .read-more a,.tpg-shortcode-main-wrapper .carousel5 .rt-holder .overlay .post-info .read-more a,.tpg-shortcode-main-wrapper .carousel7 .rt-holder .overlay .post-info .read-more a,.tpg-shortcode-main-wrapper .carousel9 .rt-holder .overlay .post-info .read-more a,.tpg-shortcode-main-wrapper .carousel11 .rt-holder .post-info .read-more a,.tpg-shortcode-main-wrapper .carousel12 .rt-holder .post-info .read-more a,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .post-meta .read-more a,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .read-more a,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .post-meta .read-more a,.tpg-shortcode-main-wrapper .isotope5 .rt-holder .overlay .post-meta .read-more a,.tpg-shortcode-main-wrapper .isotope9 .rt-holder .overlay .post-info .read-more a,.tpg-shortcode-main-wrapper .isotope11 .rt-holder .overlay .post-info .read-more a,.tpg-shortcode-main-wrapper .isotope12 .rt-holder .post-info .read-more a,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .read-more a,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .read-more a,.tpg-shortcode-main-wrapper .layout7 .rt-holder .read-more a,.tpg-shortcode-main-wrapper .layout8 .rt-holder .read-more a,.tpg-shortcode-main-wrapper .layout10 .rt-holder .read-more a,.tpg-shortcode-main-wrapper .layout13 .rt-holder .read-more a,.tpg-shortcode-main-wrapper .layout15 .rt-holder .read-more a,.tpg-shortcode-main-wrapper .layout16 .rt-holder .read-more a,.tpg-shortcode-main-wrapper .offset03 .rt-holder .post-meta .read-more a{border:1px solid hsla(0,0%,100%,.4);padding:8px 15px}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta,.tpg-shortcode-main-wrapper .isotope12 .rt-holder .post-info .post-meta .rt-tpg-social-share,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta{color:#fff;overflow:hidden;text-align:center}.tpg-even.grid-behaviour{align-items:flex-start}.grid-layout2.tpg-even,.grid-layout6 .tpg-even.grid-behaviour,.tpg-full-height{align-items:inherit}.tpg-el-main-wrapper .tpg-post-holder{height:100%}.grid_hover-layout9-2-main .tpg-even .rt-holder,.grid_hover-layout9-main .tpg-even .rt-holder,.list-layout1-main .tpg-even .rt-holder{display:block}.rt-el-post-meta span.author{margin-bottom:2px}.rt-tpg-container .rt-detail .tpg-excerpt{margin-top:-5px}.tpg-el-main-wrapper .slider_layout_wrapper .tpg-post-holder{margin-top:1px}.tpg-el-main-wrapper .grid-layout5 .tpg-post-holder,.tpg-el-main-wrapper .grid-layout6 .tpg-post-holder,.tpg-el-main-wrapper .slider_layout_wrapper .tpg-post-holder{height:auto}.rt-tpg-container .rt-el-content-wrapper{transition:background-color .4s ease-in-out}.rt-tpg-container .tpg-post-holder .read-more a,.rt-tpg-social-share a i,.tpg-el-main-wrapper .post-meta-tags a,.tpg-el-main-wrapper .post-meta-tags img,.tpg-el-main-wrapper .post-meta-tags span,.tpg-el-main-wrapper .rt-holder:hover .post-meta-tags i,.tpg-el-main-wrapper .tpg-el-excerpt,.tpg-el-main-wrapper .tpg-el-excerpt *,.tpg-el-main-wrapper .tpg-el-image-wrap .overlay,.tpg-el-main-wrapper .tpg-el-image-wrap img,.tpg-el-main-wrapper .tpg-post-holder,.tpg-separate-category .categories-links,.tpg-separate-category .categories-links i{transition:.4s ease-in-out}.tpg-el-main-wrapper .rt-content-loader [class*=rt-col]{margin-top:0;padding-bottom:30px}.tpg-el-main-wrapper .entry-title a{color:inherit}.tpg-el-main-wrapper .entry-title a:hover{color:var(--tpg-primary-color,#0d6efd)}.tpg-widget-heading-wrapper .tpg-widget-heading a{color:inherit}.section-title-align-center .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-left,.section-title-align-right .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-left{display:block;margin-right:0;margin-left:15px}.section-title-align-center .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading:before{display:none}.section-title-align-center .tpg-widget-heading-wrapper .tpg-widget-heading{margin-left:0!important}.section-title-align-right .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-right{display:none}.section-title-align-right .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading{padding-right:15px;padding-left:0}.section-title-align-right .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading:before{right:0;left:auto}.section-title-align-left .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:before{display:none}.section-title-align-left .tpg-widget-heading-wrapper.heading-default,.section-title-align-left .tpg-widget-heading-wrapper.heading-style2,.section-title-align-left .tpg-widget-heading-wrapper.heading-style3{justify-content:flex-start}.section-title-align-center .tpg-widget-heading-wrapper.heading-default,.section-title-align-center .tpg-widget-heading-wrapper.heading-style2,.section-title-align-center .tpg-widget-heading-wrapper.heading-style3{justify-content:center}.section-title-align-right .tpg-widget-heading-wrapper.heading-default,.section-title-align-right .tpg-widget-heading-wrapper.heading-style2,.section-title-align-right .tpg-widget-heading-wrapper.heading-style3{justify-content:flex-end}.section-title-align-right .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:after{display:none}.title-one-line .entry-title,.title-three-line .entry-title,.title-two-line .entry-title{-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;text-overflow:ellipsis}.title-one-line .entry-title{-webkit-line-clamp:1}.title-two-line .entry-title{-webkit-line-clamp:2}.title-three-line .entry-title{-webkit-line-clamp:3}.rt-tpg-container .rt-el-post-meta{margin-bottom:13px}.rt-tpg-container .rt-el-post-meta i{margin-left:5px}.rt-tpg-container .offset-right .rt-el-post-meta{margin-top:-6px}.tpg-el-main-wrapper .tpg-el-image-wrap img{height:100%;-o-object-fit:cover;object-fit:cover}@media (max-width:767px){.tpg-el-main-wrapper .tpg-el-image-wrap img{width:100%!important}}.tpg-el-main-wrapper .tpg-el-image-wrap a.tpg-post-link{height:100%;width:100%}.tpg-el-main-wrapper .tpg-el-image-wrap .overlay{height:100%;right:0;pointer-events:none;position:absolute;top:0;width:100%}.tpg-el-main-wrapper .rt-grid-hover-item .tpg-el-image-wrap .overlay.grid-hover-content{display:none!important;opacity:0;visibility:hidden}.tpg-el-main-wrapper .tpg-post-holder .tpg-el-image-wrap .overlay.show-on-hover,.tpg-el-main-wrapper .tpg-post-holder:hover .tpg-el-image-wrap .overlay.hide-on-hover{opacity:0!important}.tpg-el-main-wrapper .tpg-post-holder:hover .tpg-el-image-wrap .overlay.show-on-hover{opacity:1!important}.tpg-el-main-wrapper .post-meta-tags span{display:inline-block;padding-left:8px}.tpg-el-main-wrapper .post-meta-tags span img+span.author-prefix{padding-right:3px}.tpg-el-main-wrapper .post-meta-tags span.author-prefix{padding-left:5px}.tpg-el-main-wrapper .post-meta-tags span img{border-radius:50%;display:inline-block;height:25px!important;margin-left:5px;margin-top:-2%;max-width:25px;width:auto!important}.post-meta-tags span.separator:last-of-type{display:none}body .readmore-btn-only-text .rt-tpg-container .tpg-post-holder .read-more a{background:none!important;border:none!important;padding:0!important}.rt-tpg-container .tpg-post-holder .read-more a i{transition:margin .4s ease-in-out}.rt-tpg-container .tpg-post-holder .read-more a i.left-icon{margin-left:5px}.rt-tpg-container .tpg-post-holder .read-more a i.right-icon{margin-right:5px}.tpg-el-box-border-disable .rt-tpg-container .rt-holder{border:none;box-shadow:none!important}.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{display:flex;justify-content:space-between}.tpg-filter-alignment-left .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{align-items:flex-start}.tpg-filter-alignment-center .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{align-items:center}.tpg-filter-alignment-right .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{align-items:flex-end}.tpg-filter-h-alignment-left .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{justify-content:flex-start}.tpg-filter-h-alignment-center .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{justify-content:center}.tpg-filter-h-alignment-right .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{justify-content:flex-end}.tpg-filter-h-alignment-space-between .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{justify-content:space-between}.rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input{min-width:202px}.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper{margin-left:15px}@media (max-width:1023px){.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper{text-align:center}.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-right-wrapper{align-items:center;display:flex;flex-wrap:wrap;justify-content:center}.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-right-wrapper .rt-order-by-action{order:-1}}@media (max-width:991px){.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{flex-direction:column}}@media (max-width:600px){.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper{margin-left:0}.tpg-filter-type-dropdown .rt-filter-wrap .filter-left-wrapper{display:flex;justify-content:center}.tpg-el-main-wrapper .rt-filter-item-wrap.rt-tax-filter.rt-filter-dropdown-wrap{margin-bottom:4px}.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{flex-direction:column}}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap{min-height:38px}.tpg-el-main-wrapper .rt-holder .rt-el-content-wrapper{display:flex;flex-direction:column}.tpg-el-main-wrapper .rt-holder .rt-el-content-wrapper-flex{display:flex;flex-direction:row}.title_position_above_image .tpg-el-main-wrapper .rt-holder .rt-el-content-wrapper .tpg-el-image-wrap{margin:0 -15px 15px}.rt-tpg-container .rt-holder .rt-detail .entry-title-wrapper .entry-title{margin-bottom:0;transition:.4s}.rt-tpg-container .rt-holder .rt-detail .entry-title-wrapper .tpg-separate-category{margin-bottom:5px}.tpg-el-main-wrapper .rt-holder .tpg-el-excerpt{order:5}.tpg-el-main-wrapper .rt-holder .rt-tpg-social-share{order:10}.tpg-el-main-wrapper .rt-tpg-social-share a{margin-left:10px}.tpg-el-main-wrapper .rt-holder .post-footer{margin-bottom:15px;order:11}.title_position_above_image .tpg-el-main-wrapper .rt-holder .entry-title-wrapper{order:-5}.title_position_below_image .tpg-el-main-wrapper .rt-holder .tpg-el-image-wrap{order:-8}.title_position_below_image .tpg-el-main-wrapper .rt-holder .entry-title-wrapper{order:2}.title_position_above_image.meta_position_above_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:-6}.title_position_above_image.meta_position_below_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:-4}.title_position_below_image.meta_position_above_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:1}.title_position_below_image.meta_position_below_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:3}.meta_position_below_excerpt .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:6}.meta_position_above_excerpt .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:4}.title_position_default.meta_position_above_title .tpg-el-main-wrapper .rt-holder .tpg-el-image-wrap{order:-2}.title_position_default.meta_position_above_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:-1}.title_hover_border_enable .rt-tpg-container .entry-title-wrapper .entry-title a{background:linear-gradient(180deg,var(--tpg-primary-color,#0d6efd) 0,var(--tpg-primary-color,#0d6efd) 98%);background-position:right 100%;background-repeat:no-repeat;background-size:0 2px}.title_hover_border_enable .rt-tpg-container .entry-title-wrapper .entry-title:hover a{background-size:100% 2px}.title_hover_border_disable .rt-tpg-container .entry-title-wrapper .entry-title a{background:none!important}.rt-tpg-container .post-right-content{display:flex;flex-direction:column}.rt-tpg-container .list-layout-wrapper .post-right-content{flex:1}.tpg-separate-category.style1 .rt-separator{margin-left:3px}.tpg-category-position-default .grid-layout4 .rt-detail .entry-title-wrapper .tpg-separate-category,.tpg-is-author-icon-hide .post-meta-tags span.author i,.tpg-is-author-icon-hide .post-meta-tags span.author img{display:none}.rt-tpg-container .rt-holder .rt-img-holder .tpg-zoom{right:50%;opacity:0;position:absolute;top:60%;transform:translate(50%,-50%);visibility:hidden;z-index:99}.rt-tpg-container .rt-holder:hover .rt-img-holder .tpg-zoom{opacity:1;top:50%;visibility:visible}.rt-tpg-container .rt-holder .rt-img-holder .tpg-zoom .fa{background:hsla(0,0%,100%,.8);border:0 solid;border-radius:50%;box-sizing:border-box;display:inline-block;font-size:20px;height:50px;line-height:40px;margin-left:0;padding:5px;text-align:center;width:50px}@media (min-width:992px){.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-3:nth-child(8n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-3:nth-child(8n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-3:nth-child(8n+7) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-3:nth-child(8n+8) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-4:nth-child(6n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-4:nth-child(6n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-4:nth-child(6n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-6:nth-child(4n+3) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-6:nth-child(4n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-12:nth-child(2n) .rt-el-content-wrapper-flex{flex-direction:row-reverse}}@media (min-width:1200px){.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-4:nth-child(6n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-4:nth-child(6n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-4:nth-child(6n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-6:nth-child(4n+3) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-6:nth-child(4n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-12:nth-child(2n) .rt-el-content-wrapper-flex{flex-direction:row-reverse}}@media (min-width:768px) and (max-width:991px){.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-3:nth-child(8n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-3:nth-child(8n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-3:nth-child(8n+7) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-3:nth-child(8n+8) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-4:nth-child(6n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-4:nth-child(6n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-4:nth-child(6n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-6:nth-child(4n+3) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-6:nth-child(4n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-12:nth-child(2n) .rt-el-content-wrapper-flex{flex-direction:row-reverse}}@media (max-width:768px){.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-3:nth-child(8n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-3:nth-child(8n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-3:nth-child(8n+7) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-3:nth-child(8n+8) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-4:nth-child(4n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-4:nth-child(4n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-4:nth-child(4n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-6:nth-child(4n+3) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-6:nth-child(4n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-12:nth-child(2n) .rt-el-content-wrapper-flex{flex-direction:row-reverse}}.rt-tpg-container .grid-layout4 .rt-holder .tpg-el-image-wrap,.rt-tpg-container .grid-layout5 .rt-holder .tpg-el-image-wrap,.rt-tpg-container .grid-layout6 .rt-holder .tpg-el-image-wrap{margin:0 0 15px}.rt-tpg-container .grid-layout4 .cat-over-image a,.rt-tpg-container .grid-layout5 .tpg-separate-category a,.rt-tpg-container .list-layout4 .tpg-separate-category a{align-items:center;background-color:#ffaf25;color:#fff;display:inline-flex;font-size:12px;justify-content:center;line-height:1;margin-left:5px;min-height:24px;padding:0 8px}.rt-tpg-container .grid-layout4 .cat-over-image a:hover,.rt-tpg-container .grid-layout5 .tpg-separate-category a:hover,.rt-tpg-container .list-layout4 .tpg-separate-category a:hover{background:#e59100}.rt-tpg-container .grid-layout4 .cat-over-image .rt-separator,.rt-tpg-container .grid-layout5 .tpg-separate-category .rt-separator{display:none}.rt-tpg-container .grid-layout1 .rt-holder,.rt-tpg-container .grid-layout3 .rt-holder{box-shadow:0 0 2px 0 rgba(0,0,0,.3);-webkit-box-shadow:0 0 2px 0 rgba(0,0,0,.3);-moz-box-shadow:0 0 2px 0 rgba(0,0,0,.3)}.tpg-el-main-wrapper .grid-layout2 .rt-holder .rt-el-content-wrapper-flex{height:100%;padding:0}.rt-tpg-container .grid-layout2 .rt-holder .tpg-el-image-wrap{flex:0 0 50%;margin:0;max-width:50%}.rt-tpg-container .grid-layout2 .rt-holder .post-right-content{flex-grow:1;flex:0 0 50%;max-width:50%;padding:15px}.tpg-el-main-wrapper .grid-layout2 [class*=rt-col]{padding:0}@media (max-width:500px){.tpg-el-main-wrapper .grid-layout2 .rt-el-content-wrapper-flex,.tpg-post-order-reverse .rt-tpg-container .rt-row .rt-col-xs-12:nth-child(2n) .rt-el-content-wrapper-flex{display:block}.rt-tpg-container .grid-layout2 .rt-holder .post-right-content,.rt-tpg-container .grid-layout2 .rt-holder .tpg-el-image-wrap{flex:inherit;margin:0;max-width:100%}.tpg-el-main-wrapper .grid-layout2 [class*=rt-col]{margin-bottom:15px}}.rt-tpg-container .grid-layout3 .rt-holder{border-radius:4px;overflow:hidden}.meta_position_default .tpg-el-main-wrapper .grid-layout3 .rt-holder .rt-el-post-meta{order:12;padding-bottom:5px;padding-top:20px;position:relative}.meta_position_default .tpg-el-main-wrapper .grid-layout3 .rt-holder .rt-el-post-meta:before{background:#ddd;content:"";height:1px;right:-50px;position:absolute;left:-50px;top:0;width:calc(100% + 100px)}.rt-tpg-container .grid-layout4 .entry-title-wrapper .entry-title{font-size:22px;font-weight:500;line-height:32px}.tpg-el-main-wrapper .grid-layout4 .tpg-el-image-wrap img{height:230px;width:100%}.rt-tpg-container .grid-layout4 .rt-holder .rt-detail{padding:0}.tpg-is-author-icon-default .grid-layout4 .post-meta-tags span.author i,.tpg-is-author-icon-default .grid-layout4 .post-meta-tags span.author img{display:none}.tpg-el-main-wrapper .list-layout-wrapper .rt-holder .rt-el-content-wrapper{display:flex;flex-direction:row;height:100%;padding:0}.tpg-el-main-wrapper.list-layout1-main .list-layout-wrapper .rt-holder .rt-el-content-wrapper{align-items:flex-start}.tpg-el-main-wrapper.list-layout1-2-main .list-layout1 .rt-holder .rt-el-content-wrapper{flex-direction:row-reverse}.rt-tpg-container .list-layout1 .rt-holder .tpg-el-image-wrap{flex:0 0 260px;margin:0 0 0 30px}@media (max-width:991px){.rt-tpg-container .list-layout1 .rt-holder .tpg-el-image-wrap{flex:0 0 200px}}@media (max-width:599px){.tpg-el-main-wrapper.list-layout1-main .list-layout-wrapper .rt-holder .rt-el-content-wrapper{display:block}.rt-tpg-container .list-layout1 .rt-holder .tpg-el-image-wrap{margin:0 0 15px}}.tpg-el-main-wrapper.list-layout1-2-main .list-layout1 .rt-holder .tpg-el-image-wrap{margin:0 30px 0 0}.rt-tpg-container .list-layout1 .rt-detail .read-more a,.rt-tpg-container .list-layout2 .rt-detail .read-more a,.rt-tpg-container .list-layout3 .rt-detail .read-more a{background-color:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd);color:#fff}.rt-tpg-container .list-layout1 .rt-detail .read-more a:hover,.rt-tpg-container .list-layout2 .rt-detail .read-more a:hover,.rt-tpg-container .list-layout3 .rt-detail .read-more a:hover,.rt-tpg-container .list-layout4 .rt-detail .read-more a:hover{background-color:var(--tpg-secondary-color,#0654c4);border-color:var(--tpg-secondary-color,#0654c4);color:#fff}.tags-visibility-default .list-layout1 .post-tags-links,.tags-visibility-default .list-layout1 .post-tags-links+.separator{display:none}.rt-tpg-container .list-layout-wrapper .offset-right .rt-row{display:flex;flex-wrap:wrap;max-width:100%;overflow:hidden;width:100%}.tpg-el-main-wrapper .list-layout2 .offset-left .tpg-el-image-wrap{height:300px}.tpg-el-main-wrapper .list-layout-wrapper .offset-left .rt-holder .rt-el-content-wrapper{flex-direction:column}.rt-tpg-container .list-layout-wrapper .offset-left .rt-holder .tpg-el-image-wrap{flex:inherit;margin:0 0 15px}.tpg-el-main-wrapper .list-layout-wrapper .offset-right .tpg-el-image-wrap{height:100px}.rt-tpg-container .list-layout-wrapper .offset-right .entry-title-wrapper .entry-title{font-size:20px}.tpg-el-main-wrapper.list-layout2-2-main .list-layout2,.tpg-el-main-wrapper.list-layout3-2-main .list-layout3,.tpg-el-main-wrapper.list-layout5-2-main .list-layout5 .rt-holder .rt-el-content-wrapper{flex-direction:row-reverse}.tpg-el-main-wrapper .list-layout-wrapper.list-layout2 .rt-holder .rt-el-content-wrapper{align-items:flex-start}.tags-visibility-default .list-layout2 .post-tags-links,.tags-visibility-default .list-layout2 .post-tags-links+.separator{display:none}.rt-tpg-container .list-layout2 .offset-right .rt-holder .tpg-el-image-wrap{flex:0 0 107px;margin:0 0 0 15px;max-width:107px}.tpg-el-main-wrapper .list-layout3 .offset-right .rt-holder .tpg-el-excerpt{-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;text-overflow:ellipsis}.tpg-el-main-wrapper .list-layout3 [class*=rt-col]{padding-bottom:15px}.tpg-el-main-wrapper .list-layout3 .offset-left .tpg-el-image-wrap{height:390px}.rt-tpg-container .list-layout3 .offset-right .rt-holder .tpg-el-image-wrap{flex:0 0 140px;height:110px;margin:0 0 0 15px;max-width:140px}.tpg-el-main-wrapper .list-layout-wrapper.list-layout4 .rt-el-content-wrapper{align-items:inherit}.rt-tpg-container .list-layout4 .post-right-content,.tpg-el-main-wrapper .list-layout4 .rt-holder .tpg-el-image-wrap{flex:0 0 50%;margin:0}@media (min-width:768px){.tpg-el-main-wrapper .list-layout4 .rt-holder .tpg-el-image-wrap{height:400px}}.rt-tpg-container .list-layout4 .post-right-content{display:flex;justify-content:center;margin:0;padding:30px 50px;text-align:center}.rt-tpg-container .list-layout4 .entry-title-wrapper .categories-links .rt-separator{display:none}.tpg-el-main-wrapper .list-layout4 [class*=rt-col]{padding-bottom:0}@media (min-width:768px){.tpg-el-main-wrapper .list-layout4 [class*=rt-col]:nth-child(2n) .rt-holder .rt-el-content-wrapper{flex-direction:row-reverse}}@media (max-width:768px){.tpg-el-main-wrapper .list-layout4 .rt-holder .tpg-el-image-wrap{flex:0 0 150px;height:120px}.rt-tpg-container .list-layout4 .post-right-content{flex:inherit;flex-grow:1;padding:0 20px 0 0;text-align:right}.tpg-el-main-wrapper .list-layout-wrapper.list-layout4 .rt-holder .rt-el-content-wrapper{align-items:flex-start!important}.tpg-el-main-wrapper .list-layout4 [class*=rt-col]{margin-bottom:30px}}@media (max-width:500px){.tpg-el-main-wrapper .list-layout4 .rt-holder .tpg-el-image-wrap{flex:0 0 100px;height:100px}}.rt-tpg-container .list-layout5 .post-right-content{display:block;overflow:hidden;padding-right:20px}.tpg-el-main-wrapper.list-layout5-2-main .list-layout5 .post-right-content{padding-right:0;padding-left:20px}.rt-tpg-container .list-layout5 .rt-holder .rt-img-holder{border-radius:50%;flex:0 0 100px;height:100px;margin-top:8px}.rt-tpg-container .list-layout5 .entry-title-wrapper .entry-title{font-size:18px}.tags-visibility-default .list-layout5 .rt-el-post-meta{color:#a5a6aa;font-size:14px}.list-layout5 .entry-title-wrapper .tpg-separate-category .categories-links{color:#7a7e83;font-size:14px;font-weight:500}.list-layout5 .entry-title-wrapper .tpg-separate-category .categories-links a{color:inherit}.tpg-el-main-wrapper .list-layout5 [class*=rt-col]{padding-bottom:20px}.rt-tpg-container .list-layout5 .post-right-content{flex:1}.grid_hover_layout_wrapper .rt-row-inner{display:flex;flex-wrap:wrap}.rt-tpg-container .rt-grid-hover-item .entry-title-wrapper .entry-title{font-size:20px;line-height:1.4}.tpg-el-main-wrapper .rt-grid-hover-item .rt-holder .rt-el-content-wrapper{height:100%;overflow:hidden;padding:0;position:relative;width:100%}.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content{bottom:0;display:flex;flex-direction:column;justify-content:flex-end;right:0;min-height:56px;padding:30px 30px 15px;position:absolute;left:0;transition:1.2s;width:100%;z-index:1}.rt-tpg-container .rt-grid-hover-item .rt-holder:hover .grid-hover-content{padding-bottom:15px}.rt-tpg-container .rt-grid-hover-item .rt-holder:hover .grid-hover-content>div:last-of-type{margin-bottom:0}.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before{background-color:rgba(0,0,0,.7);bottom:0;content:"";height:100%;right:0;position:absolute;left:0;transition:.4s ease-in-out;width:100%;z-index:-1}.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after{background-color:rgba(0,0,0,.5)}.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,.rt-tpg-container .rt-grid-hover-item .rt-holder:hover .grid-hover-content:before{opacity:0;visibility:hidden}.rt-tpg-container .rt-grid-hover-item .rt-holder:hover .grid-hover-content:after{opacity:1;visibility:visible}.rt-tpg-container .rt-grid-hover-item .entry-title-wrapper .entry-title,.rt-tpg-container .rt-grid-hover-item .rt-detail .read-more a,.rt-tpg-container .rt-grid-hover-item .rt-el-post-meta,.rt-tpg-container .rt-grid-hover-item .rt-el-post-meta a,.rt-tpg-container .rt-grid-hover-item .rt-holder .tpg-el-excerpt{color:#fff}.rt-tpg-container .rt-grid-hover-item a:hover{color:var(--tpg-primary-color,#0d6efd)}.rt-tpg-container .rt-grid-hover-item .rt-detail .read-more a{border-color:hsla(0,0%,100%,.7)}.rt-tpg-container .rt-grid-hover-item .rt-holder .tpg-el-image-wrap{margin:0}.rt-grid-hover-item .tpg-el-image-wrap{background-color:#e4eaf1;height:100%}.grid-hover-overlay-type-fadein-on-hover .rt-tpg-container .rt-holder .grid-hover-content .entry-title-wrapper .entry-title:before{transition:.5s ease-in-out;width:0}.grid-hover-overlay-type-fadein-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content .entry-title-wrapper .entry-title:before{width:50%}.grid-hover-overlay-type-fadein-on-hover .rt-tpg-container .rt-holder .grid-hover-content{opacity:0;transition:.5s ease-in-out}.grid-hover-overlay-type-fadein-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{opacity:1}.grid-hover-overlay-type-fadeout-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{opacity:0}.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-holder .grid-hover-content{right:-100%;transition:.5s ease-in-out}.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{right:0}.grid-hover-overlay-type-slideout-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{right:100%}.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,.grid-hover-overlay-type-slideout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before{transition:.5s ease-in-out}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,.grid-hover-overlay-type-slideout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before{background:var(--tpg-primary-color,#0d6efd);opacity:1;visibility:visible}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,.grid-hover-overlay-type-slideout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after{content:none}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content{height:100%}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content,.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .tpg-el-image-wrap,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .rt-img-holder{transition:all .5s}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .rt-img-holder img{transform:none!important}.grid-hover-overlay-type-zoomin-on-hover .rt-tpg-container .rt-holder .grid-hover-content,.grid-hover-overlay-type-zoomout-on-hover .rt-tpg-container .rt-holder .grid-hover-content{transition:.5s ease-in-out}.grid-hover-overlay-type-zoomin-on-hover .rt-tpg-container .rt-holder .grid-hover-content,.grid-hover-overlay-type-zoomout-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{opacity:0;transform:scale(0)}.grid-hover-overlay-type-zoomin-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{opacity:1;transform:scale(1)}.grid-hover-overlay-type-zoominall-on-hover .rt-tpg-container .rt-holder .grid-hover-content *,.grid-hover-overlay-type-zoomoutall-on-hover .rt-tpg-container .rt-holder .grid-hover-content *{transition:.4s ease-in-out!important}.grid-hover-overlay-type-zoominall-on-hover .rt-tpg-container .rt-holder .grid-hover-content *,.grid-hover-overlay-type-zoomoutall-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content *{opacity:0;transform:scale(0)}.grid-hover-overlay-type-zoominall-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content *{opacity:1;transform:scale(1)}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content{-webkit-backface-visibility:hidden;backface-visibility:hidden;opacity:0;transform:rotateY(-180deg)}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .grid-hover-content{-webkit-backface-visibility:visible;backface-visibility:visible;opacity:1;transform:rotateY(0deg)}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .rt-img-holder,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .grid-hover-content{opacity:0;transform:rotateY(180deg);visibility:hidden}.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .rt-img-holder{-webkit-backface-visibility:hidden;backface-visibility:hidden;opacity:0;transform:rotateY(-180deg)}.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .rt-img-holder{-webkit-backface-visibility:visible;backface-visibility:visible;opacity:1;transform:rotateY(0deg)}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .post-footer,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .rt-el-post-meta,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .rt-tpg-social-share,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .tpg-el-excerpt{margin-bottom:0;max-height:0;opacity:0;transition:.6s;visibility:hidden}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .post-footer,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .rt-el-post-meta,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .rt-tpg-social-share,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .tpg-el-excerpt{margin-bottom:15px}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .rt-el-post-meta{transition:all .6s,opacity .6s}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .tpg-el-excerpt{transition:all .6s,opacity .5s}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .post-footer{transition:all .6s,opacity .4s}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .rt-tpg-social-share{transition:all .6s,opacity .3s}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .rt-el-post-meta{margin-bottom:15px;max-height:var(--tpg-meta-height,80px);opacity:1;visibility:visible}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .tpg-el-excerpt{max-height:var(--tpg-excerpt-height,140px);opacity:1;visibility:visible}.rt-tpg-container .grid_hover_layout_wrapper .rt-holder:hover .rt-tpg-social-share{margin-bottom:15px;max-height:var(--tpg-share-height,50px);opacity:1;visibility:visible}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .post-footer{max-height:var(--tpg-footer-height,50px);opacity:1;visibility:visible}.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .post-footer,.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .rt-el-post-meta,.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .rt-tpg-social-share,.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .tpg-el-excerpt,.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout5 .rt-grid-hover-item .rt-holder .rt-el-post-meta{max-height:inherit;opacity:1;visibility:visible}.meta-visibility-default .rt-tpg-container .grid_hover-layout1 .rt-grid-hover-item .rt-holder .rt-el-post-meta{max-height:inherit}.rt-tpg-container .grid_hover-layout1 .rt-holder .tpg-el-image-wrap{height:300px}.grid-hover-overlay-height-full .rt-tpg-container .rt-content-loader .rt-grid-hover-item .rt-holder .grid-hover-content{min-height:100%}.hover-overlay-height-default .rt-tpg-container .grid_hover-layout1 .rt-grid-hover-item .rt-holder:hover .grid-hover-content,.hover-overlay-height-full .rt-tpg-container .rt-content-loader .rt-grid-hover-item .rt-holder:hover .grid-hover-content{min-height:100%;transition:.5s}.rt-tpg-container .grid_hover-layout1 .entry-title-wrapper .entry-title{font-size:20px;line-height:1.4}.meta-visibility-default .rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder .rt-el-post-meta{margin-bottom:7px;max-height:inherit}.rt-tpg-container .grid_hover-layout2 .rt-holder .tpg-el-image-wrap img{height:300px}.rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder .post-footer,.rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder .tpg-el-excerpt,.tpg-el-main-wrapper .grid_hover-layout2 .rt-holder .rt-tpg-social-share{margin-bottom:0;max-height:0;overflow:hidden;transition:.6s}.tpg-el-main-wrapper .grid_hover-layout2 .rt-holder:hover .rt-tpg-social-share{margin-bottom:15px;max-height:50px}.rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder:hover .post-footer{max-height:50px}.hover-overlay-height-full .rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder:hover .grid-hover-content{min-height:100%}.rt-tpg-container .grid_hover-layout2 .rt-holder .grid-hover-content{justify-content:center;margin:15px;padding:20px;text-align:center;width:calc(100% - 30px)}.rt-tpg-container .grid_hover-layout3 .tpg-el-image-wrap{height:300px}.rt-tpg-container .grid_hover-layout3 .rt-grid-hover-item .rt-holder .grid-hover-content{justify-content:center;min-height:100%;padding:10px 30px;text-align:center}.tpg-title-border-show .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title{margin-bottom:20px;position:relative}.tpg-title-border-show .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before{background-color:#fff;bottom:-16px;content:"";height:2px;right:50%;position:absolute;transform:translateX(50%);transition:.4s;width:50%}.tpg-title-border-show.title-alignment-justify .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before,.tpg-title-border-show.title-alignment-left .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before,.tpg-title-border-show.tpg-wrapper-align-left .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before{right:0;transform:none}.tpg-title-border-show.title-alignment-right .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before,.tpg-title-border-show.tpg-wrapper-align-right .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before{left:0;transform:none}.elementor-template-full-width .site-content .ast-container{max-width:100%;padding:0;width:100%}.tpg-el-main-wrapper .tgp-cf-field-label{display:inline-block;float:none}.tpg-el-main-wrapper .tpg-cf-fields{display:block}.tpg-el-main-wrapper .tgp-cf-field-value{display:inline}.tpg-el-main-wrapper .tpg-cf-group-title{color:inherit}.tpg-acf-align-left .rt-tpg-container .acf-custom-field-wrap{text-align:right}.grid-layout6 .acf-custom-field-wrap,.list-layout4 .acf-custom-field-wrap,.tpg-acf-align-center .rt-tpg-container .acf-custom-field-wrap{text-align:center}.tpg-acf-align-right .rt-tpg-container .acf-custom-field-wrap{text-align:left}
|
assets/css/tpg-elementor-rtl.css
DELETED
@@ -1,3284 +0,0 @@
|
|
1 |
-
/************************* The Post Grid **************************/
|
2 |
-
/*Elementor CSS */
|
3 |
-
|
4 |
-
.tpg-even.grid-behaviour {
|
5 |
-
align-items: flex-start;
|
6 |
-
}
|
7 |
-
|
8 |
-
.grid-layout6 .tpg-even.grid-behaviour {
|
9 |
-
align-items: inherit;
|
10 |
-
}
|
11 |
-
|
12 |
-
.tpg-full-height,
|
13 |
-
.grid-layout2.tpg-even {
|
14 |
-
align-items: inherit;
|
15 |
-
}
|
16 |
-
|
17 |
-
.tpg-el-main-wrapper .tpg-post-holder {
|
18 |
-
height: 100%;
|
19 |
-
}
|
20 |
-
|
21 |
-
.grid_hover-layout9-main .tpg-even .rt-holder,
|
22 |
-
.grid_hover-layout9-2-main .tpg-even .rt-holder {
|
23 |
-
display: block;
|
24 |
-
}
|
25 |
-
|
26 |
-
.rt-el-post-meta span.author {
|
27 |
-
margin-bottom: 2px;
|
28 |
-
}
|
29 |
-
|
30 |
-
.rt-tpg-container .rt-detail .tpg-excerpt {
|
31 |
-
margin-top: -5px;
|
32 |
-
}
|
33 |
-
|
34 |
-
.tpg-el-main-wrapper .slider_layout_wrapper .tpg-post-holder {
|
35 |
-
margin-top: 1px;
|
36 |
-
}
|
37 |
-
|
38 |
-
.tpg-el-main-wrapper .slider_layout_wrapper .tpg-post-holder,
|
39 |
-
.tpg-el-main-wrapper .grid-layout5 .tpg-post-holder,
|
40 |
-
.tpg-el-main-wrapper .grid-layout6 .tpg-post-holder {
|
41 |
-
height: auto;
|
42 |
-
}
|
43 |
-
|
44 |
-
.rt-tpg-container .rt-el-content-wrapper {
|
45 |
-
transition: background-color 0.4s ease-in-out;
|
46 |
-
}
|
47 |
-
|
48 |
-
/*Only Transition*/
|
49 |
-
|
50 |
-
.tpg-separate-category .categories-links,
|
51 |
-
.tpg-separate-category .categories-links i,
|
52 |
-
.rt-tpg-social-share a i,
|
53 |
-
.rt-tpg-container .tpg-post-holder .read-more a,
|
54 |
-
.tpg-el-main-wrapper .tpg-el-image-wrap img,
|
55 |
-
.tpg-el-main-wrapper .post-meta-tags span,
|
56 |
-
.tpg-el-main-wrapper .post-meta-tags a,
|
57 |
-
.tpg-el-main-wrapper .rt-holder:hover .post-meta-tags i,
|
58 |
-
.tpg-el-main-wrapper .post-meta-tags img,
|
59 |
-
.tpg-el-main-wrapper .tpg-el-excerpt,
|
60 |
-
.tpg-el-main-wrapper .tpg-el-excerpt *,
|
61 |
-
.tpg-el-main-wrapper .tpg-el-image-wrap .overlay,
|
62 |
-
.tpg-el-main-wrapper .tpg-post-holder {
|
63 |
-
transition: 0.4s ease-in-out;
|
64 |
-
}
|
65 |
-
|
66 |
-
.tpg-el-main-wrapper .rt-content-loader [class*='rt-col'] {
|
67 |
-
padding-bottom: 30px;
|
68 |
-
margin-top: 0;
|
69 |
-
}
|
70 |
-
|
71 |
-
.tpg-el-main-wrapper .entry-title a {
|
72 |
-
color: inherit;
|
73 |
-
}
|
74 |
-
|
75 |
-
.tpg-el-main-wrapper .entry-title a:hover {
|
76 |
-
color: var(--tpg-primary-color);
|
77 |
-
}
|
78 |
-
|
79 |
-
/*Section title style */
|
80 |
-
|
81 |
-
.tpg-widget-heading-wrapper .tpg-widget-heading a {
|
82 |
-
color: inherit;
|
83 |
-
}
|
84 |
-
|
85 |
-
.section-title-align-right .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-left,
|
86 |
-
.section-title-align-center .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-left {
|
87 |
-
display: block;
|
88 |
-
margin-right: 0;
|
89 |
-
margin-left: 15px;
|
90 |
-
}
|
91 |
-
|
92 |
-
.section-title-align-center .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading::before {
|
93 |
-
display: none;
|
94 |
-
}
|
95 |
-
|
96 |
-
.section-title-align-center .tpg-widget-heading-wrapper .tpg-widget-heading {
|
97 |
-
margin-left: 0 !important;
|
98 |
-
}
|
99 |
-
|
100 |
-
.section-title-align-right .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-right {
|
101 |
-
display: none;
|
102 |
-
}
|
103 |
-
|
104 |
-
.section-title-align-right .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading {
|
105 |
-
padding-right: 15px;
|
106 |
-
padding-left: 0;
|
107 |
-
}
|
108 |
-
|
109 |
-
.section-title-align-right .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading::before {
|
110 |
-
left: auto;
|
111 |
-
right: 0;
|
112 |
-
}
|
113 |
-
|
114 |
-
.section-title-align-left .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading::before {
|
115 |
-
display: none;
|
116 |
-
}
|
117 |
-
|
118 |
-
.section-title-align-left .tpg-widget-heading-wrapper.heading-default,
|
119 |
-
.section-title-align-left .tpg-widget-heading-wrapper.heading-style2,
|
120 |
-
.section-title-align-left .tpg-widget-heading-wrapper.heading-style3 {
|
121 |
-
justify-content: flex-start;
|
122 |
-
}
|
123 |
-
|
124 |
-
.section-title-align-center .tpg-widget-heading-wrapper.heading-default,
|
125 |
-
.section-title-align-center .tpg-widget-heading-wrapper.heading-style2,
|
126 |
-
.section-title-align-center .tpg-widget-heading-wrapper.heading-style3 {
|
127 |
-
justify-content: center;
|
128 |
-
}
|
129 |
-
|
130 |
-
.section-title-align-right .tpg-widget-heading-wrapper.heading-default,
|
131 |
-
.section-title-align-right .tpg-widget-heading-wrapper.heading-style2,
|
132 |
-
.section-title-align-right .tpg-widget-heading-wrapper.heading-style3 {
|
133 |
-
justify-content: flex-end;
|
134 |
-
}
|
135 |
-
|
136 |
-
.section-title-align-right .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading::after {
|
137 |
-
display: none;
|
138 |
-
}
|
139 |
-
|
140 |
-
|
141 |
-
/*Post title global style */
|
142 |
-
.title-one-line .entry-title,
|
143 |
-
.title-two-line .entry-title,
|
144 |
-
.title-three-line .entry-title {
|
145 |
-
overflow: hidden;
|
146 |
-
text-overflow: ellipsis;
|
147 |
-
display: -webkit-box;
|
148 |
-
-webkit-line-clamp: 1;
|
149 |
-
-webkit-box-orient: vertical;
|
150 |
-
}
|
151 |
-
|
152 |
-
.title-one-line .entry-title {
|
153 |
-
-webkit-line-clamp: 1;
|
154 |
-
}
|
155 |
-
|
156 |
-
.title-two-line .entry-title {
|
157 |
-
-webkit-line-clamp: 2;
|
158 |
-
}
|
159 |
-
|
160 |
-
.title-three-line .entry-title {
|
161 |
-
-webkit-line-clamp: 3;
|
162 |
-
}
|
163 |
-
|
164 |
-
.rt-tpg-container .rt-el-post-meta {
|
165 |
-
margin-bottom: 13px;
|
166 |
-
}
|
167 |
-
|
168 |
-
.rt-tpg-container .rt-el-post-meta i {
|
169 |
-
margin-left: 5px;
|
170 |
-
}
|
171 |
-
|
172 |
-
.rt-tpg-container .offset-right .rt-el-post-meta {
|
173 |
-
margin-top: -6px;
|
174 |
-
}
|
175 |
-
|
176 |
-
/*Post Image Style */
|
177 |
-
.tpg-el-main-wrapper .tpg-el-image-wrap img {
|
178 |
-
height: 100%;
|
179 |
-
object-fit: cover;
|
180 |
-
}
|
181 |
-
|
182 |
-
@media (max-width: 767px) {
|
183 |
-
.tpg-el-main-wrapper .tpg-el-image-wrap img {
|
184 |
-
width: 100% !important;
|
185 |
-
}
|
186 |
-
}
|
187 |
-
|
188 |
-
.tpg-el-main-wrapper .tpg-el-image-wrap a.tpg-post-link {
|
189 |
-
width: 100%;
|
190 |
-
height: 100%;
|
191 |
-
}
|
192 |
-
|
193 |
-
/*.tpg-el-main-wrapper.slider-layout-main .tpg-el-image-wrap a.tpg-post-link {*/
|
194 |
-
/* pointer-events: none;*/
|
195 |
-
/*}*/
|
196 |
-
|
197 |
-
.tpg-el-main-wrapper .tpg-el-image-wrap .overlay {
|
198 |
-
position: absolute;
|
199 |
-
top: 0;
|
200 |
-
right: 0;
|
201 |
-
width: 100%;
|
202 |
-
height: 100%;
|
203 |
-
pointer-events: none;
|
204 |
-
}
|
205 |
-
|
206 |
-
.tpg-el-main-wrapper .rt-grid-hover-item .tpg-el-image-wrap .overlay.grid-hover-content {
|
207 |
-
display: none !important;
|
208 |
-
opacity: 0;
|
209 |
-
visibility: hidden;
|
210 |
-
}
|
211 |
-
|
212 |
-
.tpg-el-main-wrapper .tpg-post-holder .tpg-el-image-wrap .overlay.show-on-hover,
|
213 |
-
.tpg-el-main-wrapper .tpg-post-holder:hover .tpg-el-image-wrap .overlay.hide-on-hover {
|
214 |
-
opacity: 0 !important;
|
215 |
-
}
|
216 |
-
|
217 |
-
.tpg-el-main-wrapper .tpg-post-holder:hover .tpg-el-image-wrap .overlay.show-on-hover {
|
218 |
-
opacity: 1 !important;
|
219 |
-
}
|
220 |
-
|
221 |
-
.tpg-el-main-wrapper .post-meta-tags span {
|
222 |
-
display: inline-block;
|
223 |
-
padding-left: 8px;
|
224 |
-
}
|
225 |
-
|
226 |
-
.tpg-el-main-wrapper .post-meta-tags span img + span.author-prefix {
|
227 |
-
padding-right: 3px;
|
228 |
-
}
|
229 |
-
|
230 |
-
.tpg-el-main-wrapper .post-meta-tags span.author-prefix {
|
231 |
-
padding-left: 5px;
|
232 |
-
}
|
233 |
-
|
234 |
-
.tpg-el-main-wrapper .post-meta-tags span img {
|
235 |
-
display: inline-block;
|
236 |
-
border-radius: 50%;
|
237 |
-
margin-left: 5px;
|
238 |
-
width: auto !important;
|
239 |
-
max-width: 25px;
|
240 |
-
height: 25px !important;
|
241 |
-
margin-top: -2%;
|
242 |
-
}
|
243 |
-
|
244 |
-
.post-meta-tags span.separator:nth-last-of-type(1) {
|
245 |
-
display: none;
|
246 |
-
}
|
247 |
-
|
248 |
-
/*Read more icon*/
|
249 |
-
|
250 |
-
body .readmore-btn-only-text .rt-tpg-container .tpg-post-holder .read-more a {
|
251 |
-
border: none !important;
|
252 |
-
padding: 0 !important;
|
253 |
-
background: none !important;
|
254 |
-
}
|
255 |
-
|
256 |
-
.rt-tpg-container .tpg-post-holder .read-more a i {
|
257 |
-
transition: margin 0.4s ease-in-out;
|
258 |
-
}
|
259 |
-
|
260 |
-
.rt-tpg-container .tpg-post-holder .read-more a i.left-icon {
|
261 |
-
margin-left: 5px;
|
262 |
-
}
|
263 |
-
|
264 |
-
.rt-tpg-container .tpg-post-holder .read-more a i.right-icon {
|
265 |
-
margin-right: 5px;
|
266 |
-
}
|
267 |
-
|
268 |
-
/*Disable Border */
|
269 |
-
|
270 |
-
.tpg-el-box-border-disable .rt-tpg-container .rt-holder {
|
271 |
-
box-shadow: none !important;
|
272 |
-
border: none;
|
273 |
-
}
|
274 |
-
|
275 |
-
/*Frontend Filter Style */
|
276 |
-
|
277 |
-
.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap {
|
278 |
-
display: flex;
|
279 |
-
justify-content: space-between;
|
280 |
-
}
|
281 |
-
|
282 |
-
.tpg-filter-alignment-left .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap {
|
283 |
-
align-items: flex-start;
|
284 |
-
}
|
285 |
-
|
286 |
-
.tpg-filter-alignment-center .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap {
|
287 |
-
align-items: center;
|
288 |
-
}
|
289 |
-
|
290 |
-
.tpg-filter-alignment-right .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap {
|
291 |
-
align-items: flex-end;
|
292 |
-
}
|
293 |
-
|
294 |
-
.tpg-filter-h-alignment-left .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap {
|
295 |
-
justify-content: flex-start;
|
296 |
-
}
|
297 |
-
|
298 |
-
.tpg-filter-h-alignment-center .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap {
|
299 |
-
justify-content: center;
|
300 |
-
}
|
301 |
-
|
302 |
-
.tpg-filter-h-alignment-right .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap {
|
303 |
-
justify-content: flex-end;
|
304 |
-
}
|
305 |
-
|
306 |
-
.tpg-filter-h-alignment-space-between .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap {
|
307 |
-
justify-content: space-between;
|
308 |
-
}
|
309 |
-
|
310 |
-
.rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input {
|
311 |
-
min-width: 202px;
|
312 |
-
}
|
313 |
-
|
314 |
-
.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper {
|
315 |
-
margin-left: 15px;
|
316 |
-
}
|
317 |
-
|
318 |
-
@media (max-width: 1023px) {
|
319 |
-
|
320 |
-
.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper {
|
321 |
-
text-align: center;
|
322 |
-
}
|
323 |
-
|
324 |
-
.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-right-wrapper {
|
325 |
-
display: flex;
|
326 |
-
justify-content: center;
|
327 |
-
flex-wrap: wrap;
|
328 |
-
align-items: center;
|
329 |
-
}
|
330 |
-
|
331 |
-
.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-right-wrapper .rt-order-by-action {
|
332 |
-
order: -1;
|
333 |
-
}
|
334 |
-
}
|
335 |
-
|
336 |
-
@media (max-width: 991px) {
|
337 |
-
.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap {
|
338 |
-
flex-direction: column;
|
339 |
-
}
|
340 |
-
}
|
341 |
-
|
342 |
-
@media (max-width: 600px) {
|
343 |
-
.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper {
|
344 |
-
margin-left: 0;
|
345 |
-
}
|
346 |
-
|
347 |
-
.tpg-filter-type-dropdown .rt-filter-wrap .filter-left-wrapper {
|
348 |
-
display: flex;
|
349 |
-
justify-content: center;
|
350 |
-
}
|
351 |
-
|
352 |
-
.tpg-el-main-wrapper .rt-filter-item-wrap.rt-tax-filter.rt-filter-dropdown-wrap {
|
353 |
-
margin-bottom: 4px;
|
354 |
-
}
|
355 |
-
|
356 |
-
.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap {
|
357 |
-
flex-direction: column;
|
358 |
-
}
|
359 |
-
}
|
360 |
-
|
361 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap {
|
362 |
-
min-height: 38px;
|
363 |
-
}
|
364 |
-
|
365 |
-
/*Post element ordering*/
|
366 |
-
|
367 |
-
.tpg-el-main-wrapper .rt-holder .rt-el-content-wrapper {
|
368 |
-
display: flex;
|
369 |
-
flex-direction: column;
|
370 |
-
}
|
371 |
-
|
372 |
-
.tpg-el-main-wrapper .rt-holder .rt-el-content-wrapper-flex {
|
373 |
-
display: flex;
|
374 |
-
flex-direction: row;
|
375 |
-
}
|
376 |
-
|
377 |
-
.title_position_above_image .tpg-el-main-wrapper .rt-holder .rt-el-content-wrapper .tpg-el-image-wrap {
|
378 |
-
margin: 0 -15px 15px;
|
379 |
-
}
|
380 |
-
|
381 |
-
.rt-tpg-container .rt-holder .rt-detail .entry-title-wrapper .entry-title {
|
382 |
-
margin-bottom: 0;
|
383 |
-
transition: 0.4s;
|
384 |
-
}
|
385 |
-
|
386 |
-
|
387 |
-
.rt-tpg-container .rt-holder .rt-detail .entry-title-wrapper .tpg-separate-category {
|
388 |
-
margin-bottom: 5px;
|
389 |
-
}
|
390 |
-
|
391 |
-
.tpg-el-main-wrapper .rt-holder .tpg-el-excerpt {
|
392 |
-
order: 5;
|
393 |
-
}
|
394 |
-
|
395 |
-
.tpg-el-main-wrapper .rt-holder .rt-tpg-social-share {
|
396 |
-
order: 10;
|
397 |
-
}
|
398 |
-
|
399 |
-
.tpg-el-main-wrapper .rt-tpg-social-share a {
|
400 |
-
margin-left: 10px;
|
401 |
-
}
|
402 |
-
|
403 |
-
.tpg-el-main-wrapper .rt-holder .post-footer {
|
404 |
-
order: 11;
|
405 |
-
margin-bottom: 15px;
|
406 |
-
}
|
407 |
-
|
408 |
-
|
409 |
-
/*Title Position */
|
410 |
-
.title_position_above_image .tpg-el-main-wrapper .rt-holder .entry-title-wrapper {
|
411 |
-
order: -5;
|
412 |
-
}
|
413 |
-
|
414 |
-
/*Title Above Image */
|
415 |
-
.title_position_below_image .tpg-el-main-wrapper .rt-holder .tpg-el-image-wrap {
|
416 |
-
order: -8;
|
417 |
-
}
|
418 |
-
|
419 |
-
.title_position_below_image .tpg-el-main-wrapper .rt-holder .entry-title-wrapper {
|
420 |
-
order: 2;
|
421 |
-
}
|
422 |
-
|
423 |
-
|
424 |
-
/*Meta Position */
|
425 |
-
.title_position_above_image.meta_position_above_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta {
|
426 |
-
order: -6;
|
427 |
-
}
|
428 |
-
|
429 |
-
.title_position_above_image.meta_position_below_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta {
|
430 |
-
order: -4;
|
431 |
-
}
|
432 |
-
|
433 |
-
.title_position_below_image.meta_position_above_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta {
|
434 |
-
order: 1;
|
435 |
-
}
|
436 |
-
|
437 |
-
.title_position_below_image.meta_position_above_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta {
|
438 |
-
order: 1;
|
439 |
-
}
|
440 |
-
|
441 |
-
.title_position_below_image.meta_position_below_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta {
|
442 |
-
order: 3;
|
443 |
-
}
|
444 |
-
|
445 |
-
.meta_position_below_excerpt .tpg-el-main-wrapper .rt-holder .rt-el-post-meta {
|
446 |
-
order: 6;
|
447 |
-
}
|
448 |
-
|
449 |
-
.meta_position_above_excerpt .tpg-el-main-wrapper .rt-holder .rt-el-post-meta {
|
450 |
-
order: 4;
|
451 |
-
}
|
452 |
-
|
453 |
-
|
454 |
-
.title_position_default.meta_position_above_title .tpg-el-main-wrapper .rt-holder .tpg-el-image-wrap {
|
455 |
-
order: -2;
|
456 |
-
}
|
457 |
-
|
458 |
-
.title_position_default.meta_position_above_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta {
|
459 |
-
order: -1;
|
460 |
-
}
|
461 |
-
|
462 |
-
|
463 |
-
/*********************************
|
464 |
-
# Layout Common
|
465 |
-
**********************************/
|
466 |
-
|
467 |
-
.title_hover_border_enable .rt-tpg-container .entry-title-wrapper .entry-title a {
|
468 |
-
background: -webkit-gradient(linear, right top, right bottom, from(var(--tpg-primary-color)), color-stop(98%, var(--tpg-primary-color)));
|
469 |
-
background: linear-gradient(to bottom, var(--tpg-primary-color) 0%, var(--tpg-primary-color) 98%);
|
470 |
-
background-size: 0 2px;
|
471 |
-
background-repeat: no-repeat;
|
472 |
-
background-position: right 100%;
|
473 |
-
}
|
474 |
-
|
475 |
-
.title_hover_border_enable .rt-tpg-container .entry-title-wrapper .entry-title:hover a {
|
476 |
-
background-size: 100% 2px;
|
477 |
-
}
|
478 |
-
|
479 |
-
.title_hover_border_disable .rt-tpg-container .entry-title-wrapper .entry-title a {
|
480 |
-
background: none !important;
|
481 |
-
}
|
482 |
-
|
483 |
-
.rt-tpg-container .post-right-content {
|
484 |
-
display: flex;
|
485 |
-
flex-direction: column;
|
486 |
-
}
|
487 |
-
|
488 |
-
.rt-tpg-container .list-layout-wrapper .post-right-content {
|
489 |
-
flex: 1;
|
490 |
-
}
|
491 |
-
|
492 |
-
.tpg-separate-category.style1 .rt-separator {
|
493 |
-
margin-left: 3px;
|
494 |
-
}
|
495 |
-
|
496 |
-
.tpg-category-position-default .grid-layout4 .rt-detail .entry-title-wrapper .tpg-separate-category {
|
497 |
-
display: none;
|
498 |
-
}
|
499 |
-
|
500 |
-
.tpg-is-author-icon-hide .post-meta-tags span.author i,
|
501 |
-
.tpg-is-author-icon-hide .post-meta-tags span.author img {
|
502 |
-
display: none;
|
503 |
-
}
|
504 |
-
|
505 |
-
/*Thumbnail Gallery Icon*/
|
506 |
-
|
507 |
-
.rt-tpg-container .rt-holder .rt-img-holder .tpg-zoom {
|
508 |
-
position: absolute;
|
509 |
-
top: 60%;
|
510 |
-
right: 50%;
|
511 |
-
transform: translate(50%, -50%);
|
512 |
-
z-index: 99;
|
513 |
-
visibility: hidden;
|
514 |
-
opacity: 0;
|
515 |
-
}
|
516 |
-
|
517 |
-
.rt-tpg-container .rt-holder:hover .rt-img-holder .tpg-zoom {
|
518 |
-
top: 50%;
|
519 |
-
visibility: visible;
|
520 |
-
opacity: 1;
|
521 |
-
}
|
522 |
-
|
523 |
-
.rt-tpg-container .rt-holder .rt-img-holder .tpg-zoom .fa {
|
524 |
-
display: inline-block;
|
525 |
-
border: 0 solid;
|
526 |
-
border-radius: 50%;
|
527 |
-
line-height: 40px;
|
528 |
-
font-size: 20px;
|
529 |
-
padding: 5px;
|
530 |
-
width: 50px;
|
531 |
-
height: 50px;
|
532 |
-
text-align: center;
|
533 |
-
box-sizing: border-box;
|
534 |
-
background: rgba(255, 255, 255, .8);
|
535 |
-
margin-left: 0;
|
536 |
-
}
|
537 |
-
|
538 |
-
/*End Thumbnail Gallery Icon*/
|
539 |
-
|
540 |
-
@media (min-width: 992px) {
|
541 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-12:nth-child(even) .rt-el-content-wrapper-flex {
|
542 |
-
flex-direction: row-reverse;
|
543 |
-
}
|
544 |
-
|
545 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-6:nth-child(4n+3) .rt-el-content-wrapper-flex,
|
546 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-6:nth-child(4n+4) .rt-el-content-wrapper-flex {
|
547 |
-
flex-direction: row-reverse;
|
548 |
-
}
|
549 |
-
|
550 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-4:nth-child(6n+4) .rt-el-content-wrapper-flex,
|
551 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-4:nth-child(6n+5) .rt-el-content-wrapper-flex,
|
552 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-4:nth-child(6n+6) .rt-el-content-wrapper-flex {
|
553 |
-
flex-direction: row-reverse;
|
554 |
-
}
|
555 |
-
|
556 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-3:nth-child(8n+5) .rt-el-content-wrapper-flex,
|
557 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-3:nth-child(8n+6) .rt-el-content-wrapper-flex,
|
558 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-3:nth-child(8n+7) .rt-el-content-wrapper-flex,
|
559 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-3:nth-child(8n+8) .rt-el-content-wrapper-flex {
|
560 |
-
flex-direction: row-reverse;
|
561 |
-
}
|
562 |
-
}
|
563 |
-
|
564 |
-
@media (min-width: 1200px) {
|
565 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-12:nth-child(even) .rt-el-content-wrapper-flex {
|
566 |
-
flex-direction: row-reverse;
|
567 |
-
}
|
568 |
-
|
569 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-6:nth-child(4n+3) .rt-el-content-wrapper-flex,
|
570 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-6:nth-child(4n+4) .rt-el-content-wrapper-flex {
|
571 |
-
flex-direction: row-reverse;
|
572 |
-
}
|
573 |
-
|
574 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-4:nth-child(6n+4) .rt-el-content-wrapper-flex,
|
575 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-4:nth-child(6n+5) .rt-el-content-wrapper-flex,
|
576 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-4:nth-child(6n+6) .rt-el-content-wrapper-flex {
|
577 |
-
flex-direction: row-reverse;
|
578 |
-
}
|
579 |
-
}
|
580 |
-
|
581 |
-
|
582 |
-
@media (min-width: 768px) and (max-width: 991px) {
|
583 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-12:nth-child(even) .rt-el-content-wrapper-flex {
|
584 |
-
flex-direction: row-reverse;
|
585 |
-
}
|
586 |
-
|
587 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-6:nth-child(4n+3) .rt-el-content-wrapper-flex,
|
588 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-6:nth-child(4n+4) .rt-el-content-wrapper-flex {
|
589 |
-
flex-direction: row-reverse;
|
590 |
-
}
|
591 |
-
|
592 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-4:nth-child(6n+4) .rt-el-content-wrapper-flex,
|
593 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-4:nth-child(6n+5) .rt-el-content-wrapper-flex,
|
594 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-4:nth-child(6n+6) .rt-el-content-wrapper-flex {
|
595 |
-
flex-direction: row-reverse;
|
596 |
-
}
|
597 |
-
|
598 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-3:nth-child(8n+5) .rt-el-content-wrapper-flex,
|
599 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-3:nth-child(8n+6) .rt-el-content-wrapper-flex,
|
600 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-3:nth-child(8n+7) .rt-el-content-wrapper-flex,
|
601 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-3:nth-child(8n+8) .rt-el-content-wrapper-flex {
|
602 |
-
flex-direction: row-reverse;
|
603 |
-
}
|
604 |
-
}
|
605 |
-
|
606 |
-
|
607 |
-
@media (max-width: 768px) {
|
608 |
-
|
609 |
-
|
610 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-12:nth-child(even) .rt-el-content-wrapper-flex {
|
611 |
-
flex-direction: row-reverse;
|
612 |
-
}
|
613 |
-
|
614 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-6:nth-child(4n+3) .rt-el-content-wrapper-flex,
|
615 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-6:nth-child(4n+4) .rt-el-content-wrapper-flex {
|
616 |
-
flex-direction: row-reverse;
|
617 |
-
}
|
618 |
-
|
619 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-4:nth-child(4n+4) .rt-el-content-wrapper-flex,
|
620 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-4:nth-child(4n+5) .rt-el-content-wrapper-flex,
|
621 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-4:nth-child(4n+6) .rt-el-content-wrapper-flex {
|
622 |
-
flex-direction: row-reverse;
|
623 |
-
}
|
624 |
-
|
625 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-3:nth-child(8n+5) .rt-el-content-wrapper-flex,
|
626 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-3:nth-child(8n+6) .rt-el-content-wrapper-flex,
|
627 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-3:nth-child(8n+7) .rt-el-content-wrapper-flex,
|
628 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-3:nth-child(8n+8) .rt-el-content-wrapper-flex {
|
629 |
-
flex-direction: row-reverse;
|
630 |
-
}
|
631 |
-
}
|
632 |
-
|
633 |
-
.rt-tpg-container .grid-layout6 .rt-holder .tpg-el-image-wrap,
|
634 |
-
.rt-tpg-container .grid-layout5 .rt-holder .tpg-el-image-wrap,
|
635 |
-
.rt-tpg-container .grid-layout4 .rt-holder .tpg-el-image-wrap {
|
636 |
-
margin: 0 0 15px;
|
637 |
-
}
|
638 |
-
|
639 |
-
|
640 |
-
/*Category color*/
|
641 |
-
|
642 |
-
.rt-tpg-container .list-layout4 .tpg-separate-category a,
|
643 |
-
.rt-tpg-container .grid-layout5 .tpg-separate-category a,
|
644 |
-
.rt-tpg-container .grid-layout4 .cat-over-image a {
|
645 |
-
background-color: #ffaf25;
|
646 |
-
color: #ffffff;
|
647 |
-
font-size: 12px;
|
648 |
-
padding: 0 8px;
|
649 |
-
margin-left: 5px;
|
650 |
-
line-height: 1;
|
651 |
-
display: inline-flex;
|
652 |
-
min-height: 24px;
|
653 |
-
align-items: center;
|
654 |
-
justify-content: center;
|
655 |
-
}
|
656 |
-
|
657 |
-
.rt-tpg-container .list-layout4 .tpg-separate-category a:hover,
|
658 |
-
.rt-tpg-container .grid-layout5 .tpg-separate-category a:hover,
|
659 |
-
.rt-tpg-container .grid-layout4 .cat-over-image a:hover {
|
660 |
-
background: #e59100;
|
661 |
-
}
|
662 |
-
|
663 |
-
.rt-tpg-container .grid-layout5 .tpg-separate-category .rt-separator,
|
664 |
-
.rt-tpg-container .grid-layout4 .cat-over-image .rt-separator {
|
665 |
-
display: none;
|
666 |
-
}
|
667 |
-
|
668 |
-
/*End Category color*/
|
669 |
-
|
670 |
-
/*End Layout Common*/
|
671 |
-
|
672 |
-
|
673 |
-
/******************************************************************
|
674 |
-
*******************************************************************
|
675 |
-
## TODO: GRID LAYOUT STYLE
|
676 |
-
******************************************************************
|
677 |
-
******************************************************************/
|
678 |
-
|
679 |
-
/*********************************
|
680 |
-
# Grid Layout 1
|
681 |
-
**********************************/
|
682 |
-
|
683 |
-
.rt-tpg-container .grid-layout1 .rt-holder,
|
684 |
-
.rt-tpg-container .grid-layout3 .rt-holder {
|
685 |
-
box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
|
686 |
-
-webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
|
687 |
-
-moz-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
|
688 |
-
}
|
689 |
-
|
690 |
-
/*********************************
|
691 |
-
# Grid Layout 2
|
692 |
-
**********************************/
|
693 |
-
|
694 |
-
.tpg-el-main-wrapper .grid-layout2 .rt-holder .rt-el-content-wrapper-flex {
|
695 |
-
padding: 0;
|
696 |
-
height: 100%;
|
697 |
-
}
|
698 |
-
|
699 |
-
.rt-tpg-container .grid-layout2 .rt-holder .tpg-el-image-wrap {
|
700 |
-
margin: 0;
|
701 |
-
flex: 0 0 50%;
|
702 |
-
max-width: 50%;
|
703 |
-
}
|
704 |
-
|
705 |
-
.rt-tpg-container .grid-layout2 .rt-holder .post-right-content {
|
706 |
-
padding: 15px;
|
707 |
-
flex-grow: 1;
|
708 |
-
flex: 0 0 50%;
|
709 |
-
max-width: 50%;
|
710 |
-
}
|
711 |
-
|
712 |
-
.tpg-el-main-wrapper .grid-layout2 [class*='rt-col'] {
|
713 |
-
padding: 0;
|
714 |
-
}
|
715 |
-
|
716 |
-
@media (max-width: 500px) {
|
717 |
-
.tpg-post-order-reverse .rt-tpg-container .rt-row .rt-col-xs-12:nth-child(even) .rt-el-content-wrapper-flex,
|
718 |
-
.tpg-el-main-wrapper .grid-layout2 .rt-el-content-wrapper-flex {
|
719 |
-
display: block;
|
720 |
-
}
|
721 |
-
|
722 |
-
.rt-tpg-container .grid-layout2 .rt-holder .post-right-content,
|
723 |
-
.rt-tpg-container .grid-layout2 .rt-holder .tpg-el-image-wrap {
|
724 |
-
margin: 0;
|
725 |
-
flex: inherit;
|
726 |
-
max-width: 100%;
|
727 |
-
}
|
728 |
-
|
729 |
-
.tpg-el-main-wrapper .grid-layout2 [class*='rt-col'] {
|
730 |
-
margin-bottom: 15px;
|
731 |
-
}
|
732 |
-
}
|
733 |
-
|
734 |
-
|
735 |
-
/*********************************
|
736 |
-
# Grid Layout 3
|
737 |
-
**********************************/
|
738 |
-
|
739 |
-
.rt-tpg-container .grid-layout3 .rt-holder {
|
740 |
-
overflow: hidden;
|
741 |
-
border-radius: 4px;
|
742 |
-
}
|
743 |
-
|
744 |
-
.meta_position_default .tpg-el-main-wrapper .grid-layout3 .rt-holder .rt-el-post-meta {
|
745 |
-
order: 12;
|
746 |
-
padding-top: 20px;
|
747 |
-
position: relative;
|
748 |
-
padding-bottom: 5px;
|
749 |
-
}
|
750 |
-
|
751 |
-
.meta_position_default .tpg-el-main-wrapper .grid-layout3 .rt-holder .rt-el-post-meta::before {
|
752 |
-
content: "";
|
753 |
-
position: absolute;
|
754 |
-
top: 0;
|
755 |
-
right: -50px;
|
756 |
-
left: -50px;
|
757 |
-
width: calc(100% + 100px);
|
758 |
-
height: 1px;
|
759 |
-
background: #dddddd;
|
760 |
-
}
|
761 |
-
|
762 |
-
/*********************************
|
763 |
-
# Grid Layout 4
|
764 |
-
**********************************/
|
765 |
-
|
766 |
-
|
767 |
-
.rt-tpg-container .grid-layout4 .entry-title-wrapper .entry-title {
|
768 |
-
font-size: 22px;
|
769 |
-
font-weight: 500;
|
770 |
-
line-height: 32px;
|
771 |
-
}
|
772 |
-
|
773 |
-
.tpg-el-main-wrapper .grid-layout4 .tpg-el-image-wrap img {
|
774 |
-
width: 100%;
|
775 |
-
height: 230px;
|
776 |
-
}
|
777 |
-
|
778 |
-
.rt-tpg-container .grid-layout4 .rt-holder .rt-detail {
|
779 |
-
padding: 0;
|
780 |
-
}
|
781 |
-
|
782 |
-
|
783 |
-
.tpg-is-author-icon-default .grid-layout4 .post-meta-tags span.author i,
|
784 |
-
.tpg-is-author-icon-default .grid-layout4 .post-meta-tags span.author img {
|
785 |
-
display: none;
|
786 |
-
}
|
787 |
-
|
788 |
-
/*********************************
|
789 |
-
# Grid Layout 5
|
790 |
-
**********************************/
|
791 |
-
|
792 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-left .tpg-el-image-wrap {
|
793 |
-
height: 524px;
|
794 |
-
}
|
795 |
-
|
796 |
-
@media (max-width: 767px) {
|
797 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-left .tpg-el-image-wrap {
|
798 |
-
height: 400px;
|
799 |
-
}
|
800 |
-
}
|
801 |
-
|
802 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-right .tpg-el-image-wrap {
|
803 |
-
height: 115px;
|
804 |
-
margin: 0 0 0 15px;
|
805 |
-
flex: 0 0 150px;
|
806 |
-
max-width: 150px;
|
807 |
-
}
|
808 |
-
|
809 |
-
@media (max-width: 500px) {
|
810 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-right .tpg-el-image-wrap {
|
811 |
-
flex: 0 0 130px;
|
812 |
-
max-width: 130px;
|
813 |
-
}
|
814 |
-
}
|
815 |
-
|
816 |
-
.rt-tpg-container .grid-layout5 .rt-holder .rt-detail,
|
817 |
-
.rt-tpg-container .grid-layout6 .rt-holder .rt-detail {
|
818 |
-
padding: 0;
|
819 |
-
}
|
820 |
-
|
821 |
-
.rt-tpg-container .grid-layout5 .offset-left .rt-holder .rt-el-content-wrapper {
|
822 |
-
position: relative;
|
823 |
-
}
|
824 |
-
|
825 |
-
.rt-tpg-container .grid-layout5 .offset-right .rt-holder .rt-el-content-wrapper {
|
826 |
-
display: flex;
|
827 |
-
flex-direction: row-reverse;
|
828 |
-
}
|
829 |
-
|
830 |
-
.rt-tpg-container .grid-layout5 .offset-left .rt-holder .tpg-el-image-wrap,
|
831 |
-
.rt-tpg-container .grid-layout6 .offset-left .rt-holder .tpg-el-image-wrap {
|
832 |
-
margin: 0;
|
833 |
-
}
|
834 |
-
|
835 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-left .tpg-post-holder .offset-content {
|
836 |
-
position: absolute;
|
837 |
-
top: auto;
|
838 |
-
right: 0;
|
839 |
-
bottom: 0;
|
840 |
-
width: 100%;
|
841 |
-
height: 100%;
|
842 |
-
display: flex;
|
843 |
-
flex-direction: column;
|
844 |
-
justify-content: flex-end;
|
845 |
-
padding: 30px 30px 17px;
|
846 |
-
}
|
847 |
-
|
848 |
-
.tpg-el-main-wrapper .grid-layout5 .tpg-el-image-wrap .overlay {
|
849 |
-
background-image: -webkit-gradient(linear, right top, right bottom, from(rgba(0, 0, 0, 0.2)), color-stop(59%, rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.8)));
|
850 |
-
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 59%, rgba(0, 0, 0, 0.8) 100%);
|
851 |
-
}
|
852 |
-
|
853 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-left .entry-title {
|
854 |
-
color: #fff;
|
855 |
-
font-size: 29px;
|
856 |
-
font-weight: 500;
|
857 |
-
margin-top: 5px;
|
858 |
-
}
|
859 |
-
|
860 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-right .entry-title {
|
861 |
-
font-size: 18px;
|
862 |
-
line-height: 25px;
|
863 |
-
color: #212121;
|
864 |
-
font-weight: 500;
|
865 |
-
}
|
866 |
-
|
867 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-left .rt-el-post-meta a,
|
868 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-left .rt-el-post-meta *,
|
869 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-left .rt-el-post-meta {
|
870 |
-
color: rgba(255, 255, 255, .7) !important;
|
871 |
-
font-size: 14px;
|
872 |
-
}
|
873 |
-
|
874 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-left .rt-el-post-meta .author a {
|
875 |
-
color: #ffffff !important;
|
876 |
-
}
|
877 |
-
|
878 |
-
.rt-tpg-container .grid-layout5 .rt-holder .rt-detail .read-more a,
|
879 |
-
.tpg-el-main-wrapper .grid-layout5 .rt-holder .tpg-el-excerpt {
|
880 |
-
color: #ffffff;
|
881 |
-
}
|
882 |
-
|
883 |
-
.rt-tpg-container .grid-layout5 .rt-holder .rt-detail .read-more a {
|
884 |
-
border-color: rgba(255, 255, 255, .8);
|
885 |
-
background: rgba(255, 255, 255, .4);
|
886 |
-
}
|
887 |
-
|
888 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-right .tpg-el-image-wrap .overlay {
|
889 |
-
display: none !important;
|
890 |
-
}
|
891 |
-
|
892 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-right .offset-content {
|
893 |
-
flex: 1;
|
894 |
-
}
|
895 |
-
|
896 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-right .rt-el-post-meta {
|
897 |
-
margin-bottom: 0;
|
898 |
-
}
|
899 |
-
|
900 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-right .offset-item {
|
901 |
-
margin-bottom: 20px;
|
902 |
-
}
|
903 |
-
|
904 |
-
/*Layout-5 and Layout-6 column order*/
|
905 |
-
.tpg-el-main-wrapper.grid-layout5-2-main .grid-layout5,
|
906 |
-
.tpg-el-main-wrapper.grid-layout6-2-main .grid-layout6 {
|
907 |
-
display: flex;
|
908 |
-
flex-direction: row-reverse;
|
909 |
-
}
|
910 |
-
|
911 |
-
.rt-tpg-container .grid-layout5 .offset-right .rt-holder .rt-el-content-wrapper {
|
912 |
-
flex-direction: row;
|
913 |
-
}
|
914 |
-
|
915 |
-
|
916 |
-
/*End Layout-5 and Layout-6 column order*/
|
917 |
-
|
918 |
-
|
919 |
-
@media (max-width: 991px) {
|
920 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-left,
|
921 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-right {
|
922 |
-
width: 100% !important;
|
923 |
-
}
|
924 |
-
}
|
925 |
-
|
926 |
-
/*********************************
|
927 |
-
# Grid Layout 6
|
928 |
-
**********************************/
|
929 |
-
|
930 |
-
.tpg-wrapper-align-left .rt-tpg-container .grid-layout6 .offset-left .offset-content,
|
931 |
-
.tpg-wrapper-align-right .rt-tpg-container .grid-layout6 .offset-left .offset-content {
|
932 |
-
padding: 0;
|
933 |
-
}
|
934 |
-
|
935 |
-
.rt-tpg-container .grid-layout6 .offset-right .offset-item {
|
936 |
-
margin-bottom: 15px;
|
937 |
-
}
|
938 |
-
|
939 |
-
.tpg-el-main-wrapper .grid-layout6 .offset-left .tpg-el-image-wrap img {
|
940 |
-
height: 615px;
|
941 |
-
}
|
942 |
-
|
943 |
-
.tpg-el-main-wrapper .grid-layout6 .tpg-el-image-wrap img {
|
944 |
-
width: 100% !important;
|
945 |
-
}
|
946 |
-
|
947 |
-
.rt-tpg-container .grid-layout6 .offset-left .rt-holder .tpg-el-image-wrap {
|
948 |
-
margin-bottom: 15px;
|
949 |
-
}
|
950 |
-
|
951 |
-
.rt-tpg-container .grid-layout6 .offset-left .rt-holder .tpg-separate-category {
|
952 |
-
margin-bottom: 5px;
|
953 |
-
}
|
954 |
-
|
955 |
-
.tpg-wrapper-align-center .rt-tpg-container .grid-layout6 .offset-left .offset-content {
|
956 |
-
padding: 0 90px;
|
957 |
-
text-align: center;
|
958 |
-
}
|
959 |
-
|
960 |
-
.rt-tpg-container .grid-layout6 .tpg-separate-category,
|
961 |
-
.rt-tpg-container .grid-layout6 .tpg-separate-category a {
|
962 |
-
color: #777777;
|
963 |
-
font-weight: 500;
|
964 |
-
}
|
965 |
-
|
966 |
-
.rt-tpg-container .grid-layout6 .tpg-separate-category a:hover {
|
967 |
-
color: var(--tpg-primary-color);
|
968 |
-
}
|
969 |
-
|
970 |
-
.rt-tpg-container .grid-layout6 .offset-left .entry-title-wrapper .entry-title {
|
971 |
-
font-size: 30px;
|
972 |
-
font-weight: 500;
|
973 |
-
}
|
974 |
-
|
975 |
-
.rt-tpg-container .grid-layout6 .offset-right .entry-title-wrapper .entry-title {
|
976 |
-
font-size: 24px;
|
977 |
-
font-weight: 500;
|
978 |
-
}
|
979 |
-
|
980 |
-
@media (max-width: 1200px) {
|
981 |
-
.rt-tpg-container .grid-layout6 .offset-left .offset-content {
|
982 |
-
padding: 0 70px;
|
983 |
-
}
|
984 |
-
}
|
985 |
-
|
986 |
-
@media (max-width: 991px) {
|
987 |
-
.rt-tpg-container .grid-layout6 .offset-left .offset-content {
|
988 |
-
padding: 0 60px;
|
989 |
-
}
|
990 |
-
|
991 |
-
.rt-tpg-container .grid-layout6 .offset-left {
|
992 |
-
width: 100%;
|
993 |
-
}
|
994 |
-
|
995 |
-
.rt-tpg-container .grid-layout6 .offset-right {
|
996 |
-
width: calc(100% + 30px);
|
997 |
-
display: flex;
|
998 |
-
margin-right: -15px;
|
999 |
-
margin-left: -15px;
|
1000 |
-
flex-wrap: wrap;
|
1001 |
-
}
|
1002 |
-
|
1003 |
-
.rt-tpg-container .grid-layout6 .offset-right .offset-item {
|
1004 |
-
flex: 0 0 50%;
|
1005 |
-
padding-right: 15px;
|
1006 |
-
padding-left: 15px;
|
1007 |
-
}
|
1008 |
-
}
|
1009 |
-
|
1010 |
-
@media (max-width: 767px) {
|
1011 |
-
.rt-tpg-container .grid-layout6 .offset-left .offset-content {
|
1012 |
-
padding: 0 50px;
|
1013 |
-
}
|
1014 |
-
|
1015 |
-
.rt-tpg-container .grid-layout6 .offset-right .offset-item {
|
1016 |
-
flex: 0 0 100%;
|
1017 |
-
padding-right: 15px;
|
1018 |
-
padding-left: 15px;
|
1019 |
-
}
|
1020 |
-
}
|
1021 |
-
|
1022 |
-
|
1023 |
-
@media (min-width: 992px) {
|
1024 |
-
.tpg-el-main-wrapper .grid-layout6 .offset-right {
|
1025 |
-
padding-right: 80px;
|
1026 |
-
position: relative;
|
1027 |
-
}
|
1028 |
-
|
1029 |
-
.tpg-el-main-wrapper.grid-layout6-2-main .grid-layout6 .offset-right {
|
1030 |
-
padding-left: 80px;
|
1031 |
-
padding-right: 15px;
|
1032 |
-
}
|
1033 |
-
|
1034 |
-
.tpg-el-main-wrapper .grid-layout6 .offset-right::before {
|
1035 |
-
content: "";
|
1036 |
-
position: absolute;
|
1037 |
-
top: 0;
|
1038 |
-
right: 32px;
|
1039 |
-
height: calc(100% - 30px);
|
1040 |
-
width: 1px;
|
1041 |
-
background-color: #dddddd;
|
1042 |
-
}
|
1043 |
-
|
1044 |
-
.tpg-el-main-wrapper.grid-layout6-2-main .grid-layout6 .offset-right::before {
|
1045 |
-
left: 32px;
|
1046 |
-
right: auto;
|
1047 |
-
}
|
1048 |
-
}
|
1049 |
-
|
1050 |
-
@media (max-width: 767px) {
|
1051 |
-
.tpg-el-main-wrapper .grid-layout6 .offset-left .tpg-el-image-wrap img {
|
1052 |
-
height: 380px;
|
1053 |
-
}
|
1054 |
-
}
|
1055 |
-
|
1056 |
-
|
1057 |
-
/*********************************
|
1058 |
-
# Grid Layout 7 - Gallery
|
1059 |
-
**********************************/
|
1060 |
-
|
1061 |
-
.rt-tpg-container .rt-el-content-wrapper .gallery-content {
|
1062 |
-
display: flex;
|
1063 |
-
flex-direction: column;
|
1064 |
-
position: absolute;
|
1065 |
-
top: 0;
|
1066 |
-
right: 0;
|
1067 |
-
width: 100%;
|
1068 |
-
height: 100%;
|
1069 |
-
padding: 20px 20px 0;
|
1070 |
-
justify-content: flex-end;
|
1071 |
-
align-items: flex-start;
|
1072 |
-
}
|
1073 |
-
|
1074 |
-
.rt-tpg-container .grid-layout7 .gallery-content .entry-title,
|
1075 |
-
.rt-tpg-container .grid-layout7 .gallery-content .rt-el-post-meta,
|
1076 |
-
.rt-tpg-container .grid-layout7 .gallery-content .rt-el-post-meta a,
|
1077 |
-
.rt-tpg-container .grid-layout7 .gallery-content .tpg-el-excerpt {
|
1078 |
-
color: #ffffff;
|
1079 |
-
}
|
1080 |
-
|
1081 |
-
.rt-tpg-container .grid-layout7 .overlay {
|
1082 |
-
background-image: -webkit-gradient(linear, right top, right bottom, from(rgba(0, 0, 0, 0.2)), color-stop(59%, rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.8)));
|
1083 |
-
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 59%, rgba(0, 0, 0, 0.8) 100%);
|
1084 |
-
}
|
1085 |
-
|
1086 |
-
.rt-tpg-container .grid-layout7 .rt-holder .rt-img-holder,
|
1087 |
-
.rt-tpg-container .grid-layout7 .rt-holder .rt-detail {
|
1088 |
-
height: 100%;
|
1089 |
-
margin: 0;
|
1090 |
-
padding: 0;
|
1091 |
-
}
|
1092 |
-
|
1093 |
-
.rt-tpg-container .grid-layout7 .rt-holder .rt-img-holder {
|
1094 |
-
height: 300px;
|
1095 |
-
}
|
1096 |
-
|
1097 |
-
|
1098 |
-
/******************************************************************
|
1099 |
-
*******************************************************************
|
1100 |
-
## TODO: LIST LAYOUT STYLE
|
1101 |
-
******************************************************************
|
1102 |
-
******************************************************************/
|
1103 |
-
|
1104 |
-
/*********************************
|
1105 |
-
# List Layout 1
|
1106 |
-
**********************************/
|
1107 |
-
|
1108 |
-
.tpg-el-main-wrapper .list-layout-wrapper .rt-holder .rt-el-content-wrapper {
|
1109 |
-
display: flex;
|
1110 |
-
flex-direction: row;
|
1111 |
-
padding: 0;
|
1112 |
-
height: 100%;
|
1113 |
-
}
|
1114 |
-
|
1115 |
-
.tpg-el-main-wrapper.list-layout1-2-main .list-layout1 .rt-holder .rt-el-content-wrapper {
|
1116 |
-
flex-direction: row-reverse;
|
1117 |
-
}
|
1118 |
-
|
1119 |
-
.rt-tpg-container .list-layout1 .rt-holder .tpg-el-image-wrap {
|
1120 |
-
margin: 0 0 0 30px;
|
1121 |
-
flex: 0 0 260px;
|
1122 |
-
}
|
1123 |
-
|
1124 |
-
.tpg-el-main-wrapper.list-layout1-2-main .list-layout1 .rt-holder .tpg-el-image-wrap {
|
1125 |
-
margin: 0 30px 0 0;
|
1126 |
-
}
|
1127 |
-
|
1128 |
-
.rt-tpg-container .list-layout1 .rt-detail .read-more a,
|
1129 |
-
.rt-tpg-container .list-layout2 .rt-detail .read-more a,
|
1130 |
-
.rt-tpg-container .list-layout3 .rt-detail .read-more a {
|
1131 |
-
color: #fff;
|
1132 |
-
background-color: var(--tpg-primary-color);
|
1133 |
-
border-color: var(--tpg-primary-color);
|
1134 |
-
}
|
1135 |
-
|
1136 |
-
.rt-tpg-container .list-layout4 .rt-detail .read-more a:hover,
|
1137 |
-
.rt-tpg-container .list-layout1 .rt-detail .read-more a:hover,
|
1138 |
-
.rt-tpg-container .list-layout2 .rt-detail .read-more a:hover,
|
1139 |
-
.rt-tpg-container .list-layout3 .rt-detail .read-more a:hover {
|
1140 |
-
color: #fff;
|
1141 |
-
background-color: var(--tpg-secondary-color);
|
1142 |
-
border-color: var(--tpg-secondary-color);
|
1143 |
-
}
|
1144 |
-
|
1145 |
-
.tags-visibility-default .list-layout1 .post-tags-links,
|
1146 |
-
.tags-visibility-default .list-layout1 .post-tags-links + .separator {
|
1147 |
-
display: none;
|
1148 |
-
}
|
1149 |
-
|
1150 |
-
/*********************************
|
1151 |
-
# List Layout 2 (offset)
|
1152 |
-
**********************************/
|
1153 |
-
|
1154 |
-
/*List Offset common */
|
1155 |
-
.rt-tpg-container .list-layout-wrapper .offset-right .rt-row {
|
1156 |
-
display: flex;
|
1157 |
-
flex-wrap: wrap;
|
1158 |
-
max-width: 100%;
|
1159 |
-
overflow: hidden;
|
1160 |
-
width: 100%;
|
1161 |
-
}
|
1162 |
-
|
1163 |
-
.tpg-el-main-wrapper .list-layout2 .offset-left .tpg-el-image-wrap {
|
1164 |
-
height: 300px;
|
1165 |
-
}
|
1166 |
-
|
1167 |
-
.tpg-el-main-wrapper .list-layout-wrapper .offset-left .rt-holder .rt-el-content-wrapper {
|
1168 |
-
flex-direction: column;
|
1169 |
-
}
|
1170 |
-
|
1171 |
-
.rt-tpg-container .list-layout-wrapper .offset-left .rt-holder .tpg-el-image-wrap {
|
1172 |
-
margin: 0 0 15px;
|
1173 |
-
flex: inherit;
|
1174 |
-
}
|
1175 |
-
|
1176 |
-
.tpg-el-main-wrapper .list-layout-wrapper .offset-right .tpg-el-image-wrap {
|
1177 |
-
height: 100px;
|
1178 |
-
}
|
1179 |
-
|
1180 |
-
.rt-tpg-container .list-layout-wrapper .offset-right .entry-title-wrapper .entry-title {
|
1181 |
-
font-size: 20px;
|
1182 |
-
}
|
1183 |
-
|
1184 |
-
.tpg-el-main-wrapper.list-layout5-2-main .list-layout5 .rt-holder .rt-el-content-wrapper,
|
1185 |
-
.tpg-el-main-wrapper.list-layout2-2-main .list-layout2,
|
1186 |
-
.tpg-el-main-wrapper.list-layout3-2-main .list-layout3 {
|
1187 |
-
flex-direction: row-reverse;
|
1188 |
-
}
|
1189 |
-
|
1190 |
-
|
1191 |
-
.tpg-el-main-wrapper .list-layout-wrapper.list-layout2 .rt-holder .rt-el-content-wrapper {
|
1192 |
-
align-items: flex-start;
|
1193 |
-
}
|
1194 |
-
|
1195 |
-
/*End List Offset common */
|
1196 |
-
|
1197 |
-
.tags-visibility-default .list-layout2 .post-tags-links,
|
1198 |
-
.tags-visibility-default .list-layout2 .post-tags-links + .separator {
|
1199 |
-
display: none;
|
1200 |
-
}
|
1201 |
-
|
1202 |
-
.rt-tpg-container .list-layout2 .offset-right .rt-holder .tpg-el-image-wrap {
|
1203 |
-
margin: 0 0 0 15px;
|
1204 |
-
flex: 0 0 107px;
|
1205 |
-
max-width: 107px;
|
1206 |
-
}
|
1207 |
-
|
1208 |
-
/*********************************
|
1209 |
-
# List Layout 3 (offset)
|
1210 |
-
**********************************/
|
1211 |
-
|
1212 |
-
.tpg-el-main-wrapper .list-layout3 .offset-right .rt-holder .tpg-el-excerpt {
|
1213 |
-
overflow: hidden;
|
1214 |
-
text-overflow: ellipsis;
|
1215 |
-
display: -webkit-box;
|
1216 |
-
-webkit-line-clamp: 2;
|
1217 |
-
-webkit-box-orient: vertical;
|
1218 |
-
}
|
1219 |
-
|
1220 |
-
.tpg-el-main-wrapper .list-layout3 [class*='rt-col'] {
|
1221 |
-
padding-bottom: 15px;
|
1222 |
-
}
|
1223 |
-
|
1224 |
-
.tpg-el-main-wrapper .list-layout3 .offset-left .tpg-el-image-wrap {
|
1225 |
-
height: 390px;
|
1226 |
-
}
|
1227 |
-
|
1228 |
-
.rt-tpg-container .list-layout3 .offset-right .rt-holder .tpg-el-image-wrap {
|
1229 |
-
margin: 0 0 0 15px;
|
1230 |
-
flex: 0 0 140px;
|
1231 |
-
max-width: 140px;
|
1232 |
-
height: 110px;
|
1233 |
-
}
|
1234 |
-
|
1235 |
-
|
1236 |
-
/*********************************
|
1237 |
-
# List Layout 4
|
1238 |
-
**********************************/
|
1239 |
-
|
1240 |
-
.tpg-el-main-wrapper .list-layout-wrapper.list-layout4 .rt-el-content-wrapper {
|
1241 |
-
align-items: inherit;
|
1242 |
-
}
|
1243 |
-
|
1244 |
-
.rt-tpg-container .list-layout4 .post-right-content,
|
1245 |
-
.tpg-el-main-wrapper .list-layout4 .rt-holder .tpg-el-image-wrap {
|
1246 |
-
margin: 0;
|
1247 |
-
flex: 0 0 50%;
|
1248 |
-
}
|
1249 |
-
|
1250 |
-
@media (min-width: 768px) {
|
1251 |
-
.tpg-el-main-wrapper .list-layout4 .rt-holder .tpg-el-image-wrap {
|
1252 |
-
height: 400px;
|
1253 |
-
}
|
1254 |
-
}
|
1255 |
-
|
1256 |
-
.rt-tpg-container .list-layout4 .post-right-content {
|
1257 |
-
margin: 0;
|
1258 |
-
padding: 30px 50px;
|
1259 |
-
text-align: center;
|
1260 |
-
display: flex;
|
1261 |
-
justify-content: center;
|
1262 |
-
}
|
1263 |
-
|
1264 |
-
.rt-tpg-container .list-layout4 .entry-title-wrapper .categories-links .rt-separator {
|
1265 |
-
display: none;
|
1266 |
-
}
|
1267 |
-
|
1268 |
-
.tpg-el-main-wrapper .list-layout4 [class*='rt-col'] {
|
1269 |
-
padding-bottom: 0;
|
1270 |
-
}
|
1271 |
-
|
1272 |
-
@media (min-width: 768px) {
|
1273 |
-
.tpg-el-main-wrapper .list-layout4 [class*='rt-col']:nth-child(even) .rt-holder .rt-el-content-wrapper {
|
1274 |
-
flex-direction: row-reverse;
|
1275 |
-
}
|
1276 |
-
}
|
1277 |
-
|
1278 |
-
@media (max-width: 768px) {
|
1279 |
-
.tpg-el-main-wrapper .list-layout4 .rt-holder .tpg-el-image-wrap {
|
1280 |
-
flex: 0 0 150px;
|
1281 |
-
height: 120px;
|
1282 |
-
}
|
1283 |
-
|
1284 |
-
.rt-tpg-container .list-layout4 .post-right-content {
|
1285 |
-
flex: inherit;
|
1286 |
-
flex-grow: 1;
|
1287 |
-
text-align: right;
|
1288 |
-
padding: 0 20px 0 0;
|
1289 |
-
}
|
1290 |
-
|
1291 |
-
.tpg-el-main-wrapper .list-layout-wrapper.list-layout4 .rt-holder .rt-el-content-wrapper {
|
1292 |
-
align-items: flex-start !important;
|
1293 |
-
}
|
1294 |
-
|
1295 |
-
.tpg-el-main-wrapper .list-layout4 [class*='rt-col'] {
|
1296 |
-
margin-bottom: 30px;
|
1297 |
-
}
|
1298 |
-
}
|
1299 |
-
|
1300 |
-
@media (max-width: 500px) {
|
1301 |
-
.tpg-el-main-wrapper .list-layout4 .rt-holder .tpg-el-image-wrap {
|
1302 |
-
flex: 0 0 100px;
|
1303 |
-
height: 100px;
|
1304 |
-
}
|
1305 |
-
}
|
1306 |
-
|
1307 |
-
/*********************************
|
1308 |
-
# List Layout 5
|
1309 |
-
**********************************/
|
1310 |
-
|
1311 |
-
.rt-tpg-container .list-layout5 .post-right-content {
|
1312 |
-
padding-right: 20px;
|
1313 |
-
display: block;
|
1314 |
-
overflow: hidden;
|
1315 |
-
}
|
1316 |
-
|
1317 |
-
.tpg-el-main-wrapper.list-layout5-2-main .list-layout5 .post-right-content {
|
1318 |
-
padding-right: 0;
|
1319 |
-
padding-left: 20px;
|
1320 |
-
}
|
1321 |
-
|
1322 |
-
.rt-tpg-container .list-layout5 .rt-holder .rt-img-holder {
|
1323 |
-
border-radius: 50%;
|
1324 |
-
flex: 0 0 100px;
|
1325 |
-
height: 100px;
|
1326 |
-
margin-top: 8px;
|
1327 |
-
}
|
1328 |
-
|
1329 |
-
.rt-tpg-container .list-layout5 .entry-title-wrapper .entry-title {
|
1330 |
-
font-size: 18px;
|
1331 |
-
}
|
1332 |
-
|
1333 |
-
.tags-visibility-default .list-layout5 .rt-el-post-meta {
|
1334 |
-
color: #A5A6AA;
|
1335 |
-
font-size: 14px;
|
1336 |
-
}
|
1337 |
-
|
1338 |
-
.list-layout5 .entry-title-wrapper .tpg-separate-category .categories-links {
|
1339 |
-
font-size: 14px;
|
1340 |
-
color: #7A7E83;
|
1341 |
-
font-weight: 500;
|
1342 |
-
}
|
1343 |
-
|
1344 |
-
.list-layout5 .entry-title-wrapper .tpg-separate-category .categories-links a {
|
1345 |
-
color: inherit;
|
1346 |
-
}
|
1347 |
-
|
1348 |
-
.tpg-el-main-wrapper .list-layout5 [class*='rt-col'] {
|
1349 |
-
padding-bottom: 20px;
|
1350 |
-
}
|
1351 |
-
|
1352 |
-
.rt-tpg-container .list-layout5 .post-right-content {
|
1353 |
-
flex: 1;
|
1354 |
-
}
|
1355 |
-
|
1356 |
-
|
1357 |
-
/*********************************
|
1358 |
-
# Grid Hover Layout 1
|
1359 |
-
**********************************/
|
1360 |
-
|
1361 |
-
/*Grid Hover common*/
|
1362 |
-
|
1363 |
-
.grid_hover_layout_wrapper .rt-row-inner {
|
1364 |
-
display: -ms-flexbox;
|
1365 |
-
display: flex;
|
1366 |
-
-ms-flex-wrap: wrap;
|
1367 |
-
flex-wrap: wrap;
|
1368 |
-
}
|
1369 |
-
|
1370 |
-
.rt-tpg-container .rt-grid-hover-item .entry-title-wrapper .entry-title {
|
1371 |
-
font-size: 20px;
|
1372 |
-
line-height: 1.4;
|
1373 |
-
}
|
1374 |
-
|
1375 |
-
.tpg-el-main-wrapper .rt-grid-hover-item .rt-holder .rt-el-content-wrapper {
|
1376 |
-
padding: 0;
|
1377 |
-
position: relative;
|
1378 |
-
overflow: hidden;
|
1379 |
-
height: 100%;
|
1380 |
-
}
|
1381 |
-
|
1382 |
-
.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content {
|
1383 |
-
position: absolute;
|
1384 |
-
padding: 30px 30px 15px;
|
1385 |
-
bottom: 0;
|
1386 |
-
right: 0;
|
1387 |
-
left: 0;
|
1388 |
-
width: 100%;
|
1389 |
-
display: flex;
|
1390 |
-
flex-direction: column;
|
1391 |
-
justify-content: flex-end;
|
1392 |
-
transition: 1.2s;
|
1393 |
-
z-index: 1;
|
1394 |
-
min-height: 56px;
|
1395 |
-
}
|
1396 |
-
|
1397 |
-
|
1398 |
-
.rt-tpg-container .rt-grid-hover-item .rt-holder:hover .grid-hover-content {
|
1399 |
-
padding-bottom: 15px;
|
1400 |
-
}
|
1401 |
-
|
1402 |
-
|
1403 |
-
.rt-tpg-container .rt-grid-hover-item .rt-holder:hover .grid-hover-content > div:last-of-type {
|
1404 |
-
margin-bottom: 0;
|
1405 |
-
}
|
1406 |
-
|
1407 |
-
.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,
|
1408 |
-
.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after {
|
1409 |
-
content: "";
|
1410 |
-
background-color: rgba(0, 0, 0, 0.7);
|
1411 |
-
width: 100%;
|
1412 |
-
height: 100%;
|
1413 |
-
right: 0;
|
1414 |
-
bottom: 0;
|
1415 |
-
left: 0;
|
1416 |
-
position: absolute;
|
1417 |
-
z-index: -1;
|
1418 |
-
transition: 0.4s ease-in-out;
|
1419 |
-
}
|
1420 |
-
|
1421 |
-
.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after {
|
1422 |
-
background-color: rgba(0, 0, 0, 0.5);
|
1423 |
-
}
|
1424 |
-
|
1425 |
-
.rt-tpg-container .rt-grid-hover-item .rt-holder:hover .grid-hover-content:before,
|
1426 |
-
.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after {
|
1427 |
-
opacity: 0;
|
1428 |
-
visibility: hidden;
|
1429 |
-
}
|
1430 |
-
|
1431 |
-
.rt-tpg-container .rt-grid-hover-item .rt-holder:hover .grid-hover-content:after {
|
1432 |
-
opacity: 1;
|
1433 |
-
visibility: visible;
|
1434 |
-
}
|
1435 |
-
|
1436 |
-
.rt-tpg-container .rt-grid-hover-item .entry-title-wrapper .entry-title,
|
1437 |
-
.rt-tpg-container .rt-grid-hover-item .rt-el-post-meta,
|
1438 |
-
.rt-tpg-container .rt-grid-hover-item .rt-el-post-meta a,
|
1439 |
-
.rt-tpg-container .rt-grid-hover-item .rt-holder .tpg-el-excerpt,
|
1440 |
-
.rt-tpg-container .rt-grid-hover-item .rt-detail .read-more a {
|
1441 |
-
color: #ffffff;
|
1442 |
-
}
|
1443 |
-
|
1444 |
-
.rt-tpg-container .rt-grid-hover-item a:hover {
|
1445 |
-
color: var(--tpg-primary-color);
|
1446 |
-
}
|
1447 |
-
|
1448 |
-
.rt-tpg-container .rt-grid-hover-item .rt-detail .read-more a {
|
1449 |
-
border-color: rgba(255, 255, 255, .7);
|
1450 |
-
}
|
1451 |
-
|
1452 |
-
.rt-tpg-container .rt-grid-hover-item .rt-holder .tpg-el-image-wrap {
|
1453 |
-
margin: 0;
|
1454 |
-
}
|
1455 |
-
|
1456 |
-
.rt-grid-hover-item .tpg-el-image-wrap {
|
1457 |
-
height: 100%;
|
1458 |
-
background-color: #e4eaf1;
|
1459 |
-
}
|
1460 |
-
|
1461 |
-
/*Hover animation
|
1462 |
-
=====================*/
|
1463 |
-
|
1464 |
-
|
1465 |
-
.grid-hover-overlay-type-fadein-on-hover .rt-tpg-container .rt-holder .grid-hover-content .entry-title-wrapper .entry-title::before {
|
1466 |
-
width: 0;
|
1467 |
-
transition: 0.5s ease-in-out;
|
1468 |
-
}
|
1469 |
-
|
1470 |
-
.grid-hover-overlay-type-fadein-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content .entry-title-wrapper .entry-title::before {
|
1471 |
-
width: 50%;
|
1472 |
-
}
|
1473 |
-
|
1474 |
-
/*Fade In-Out CSS*/
|
1475 |
-
.grid-hover-overlay-type-fadein-on-hover .rt-tpg-container .rt-holder .grid-hover-content {
|
1476 |
-
opacity: 0;
|
1477 |
-
transition: 0.5s ease-in-out;
|
1478 |
-
}
|
1479 |
-
|
1480 |
-
.grid-hover-overlay-type-fadein-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content {
|
1481 |
-
opacity: 1;
|
1482 |
-
}
|
1483 |
-
|
1484 |
-
/*Fade In-Out CSS*/
|
1485 |
-
|
1486 |
-
.grid-hover-overlay-type-fadeout-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content {
|
1487 |
-
opacity: 0;
|
1488 |
-
}
|
1489 |
-
|
1490 |
-
/*Slide In-Out CSS*/
|
1491 |
-
.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-holder .grid-hover-content {
|
1492 |
-
right: -100%;
|
1493 |
-
transition: 0.5s ease-in-out;
|
1494 |
-
}
|
1495 |
-
|
1496 |
-
.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content {
|
1497 |
-
right: 0;
|
1498 |
-
}
|
1499 |
-
|
1500 |
-
.grid-hover-overlay-type-slideout-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content {
|
1501 |
-
right: 100%;
|
1502 |
-
}
|
1503 |
-
|
1504 |
-
|
1505 |
-
/*Flip In-Out CSS*/
|
1506 |
-
|
1507 |
-
.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,
|
1508 |
-
.grid-hover-overlay-type-slideout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before {
|
1509 |
-
transition: 0.5s ease-in-out;
|
1510 |
-
}
|
1511 |
-
|
1512 |
-
.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,
|
1513 |
-
.grid-hover-overlay-type-slideout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,
|
1514 |
-
.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,
|
1515 |
-
.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before {
|
1516 |
-
visibility: visible;
|
1517 |
-
opacity: 1;
|
1518 |
-
background: var(--tpg-primary-color);
|
1519 |
-
}
|
1520 |
-
|
1521 |
-
.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,
|
1522 |
-
.grid-hover-overlay-type-slideout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,
|
1523 |
-
.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,
|
1524 |
-
.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after {
|
1525 |
-
content: none;
|
1526 |
-
}
|
1527 |
-
|
1528 |
-
.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content,
|
1529 |
-
.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content {
|
1530 |
-
height: 100%;
|
1531 |
-
}
|
1532 |
-
|
1533 |
-
.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content,
|
1534 |
-
.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .rt-img-holder,
|
1535 |
-
.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content,
|
1536 |
-
.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .tpg-el-image-wrap {
|
1537 |
-
transition: all .5s;
|
1538 |
-
}
|
1539 |
-
|
1540 |
-
.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .rt-img-holder img,
|
1541 |
-
.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .rt-img-holder img {
|
1542 |
-
transform: none !important;
|
1543 |
-
}
|
1544 |
-
|
1545 |
-
|
1546 |
-
/*ZoomIn and ZommOut css*/
|
1547 |
-
.grid-hover-overlay-type-zoomin-on-hover .rt-tpg-container .rt-holder .grid-hover-content,
|
1548 |
-
.grid-hover-overlay-type-zoomout-on-hover .rt-tpg-container .rt-holder .grid-hover-content {
|
1549 |
-
transition: 0.5s ease-in-out;
|
1550 |
-
}
|
1551 |
-
|
1552 |
-
|
1553 |
-
.grid-hover-overlay-type-zoomout-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content,
|
1554 |
-
.grid-hover-overlay-type-zoomin-on-hover .rt-tpg-container .rt-holder .grid-hover-content {
|
1555 |
-
opacity: 0;
|
1556 |
-
transform: scale(0);
|
1557 |
-
}
|
1558 |
-
|
1559 |
-
.grid-hover-overlay-type-zoomin-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content {
|
1560 |
-
opacity: 1;
|
1561 |
-
transform: scale(1);
|
1562 |
-
}
|
1563 |
-
|
1564 |
-
.grid-hover-overlay-type-zoominall-on-hover .rt-tpg-container .rt-holder .grid-hover-content *,
|
1565 |
-
.grid-hover-overlay-type-zoomoutall-on-hover .rt-tpg-container .rt-holder .grid-hover-content * {
|
1566 |
-
transition: 0.4s ease-in-out !important;
|
1567 |
-
}
|
1568 |
-
|
1569 |
-
.grid-hover-overlay-type-zoomoutall-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content *,
|
1570 |
-
.grid-hover-overlay-type-zoominall-on-hover .rt-tpg-container .rt-holder .grid-hover-content * {
|
1571 |
-
opacity: 0;
|
1572 |
-
transform: scale(0);
|
1573 |
-
}
|
1574 |
-
|
1575 |
-
.grid-hover-overlay-type-zoominall-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content * {
|
1576 |
-
opacity: 1;
|
1577 |
-
transform: scale(1);
|
1578 |
-
}
|
1579 |
-
|
1580 |
-
|
1581 |
-
/*end zoomIn-Out*/
|
1582 |
-
.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content {
|
1583 |
-
backface-visibility: hidden;
|
1584 |
-
-webkit-transform: rotateY(180deg);
|
1585 |
-
-moz-transform: rotateY(180deg);
|
1586 |
-
transform: rotateY(180deg);
|
1587 |
-
opacity: 0;
|
1588 |
-
}
|
1589 |
-
|
1590 |
-
.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .grid-hover-content {
|
1591 |
-
-webkit-transform: rotateY(0deg);
|
1592 |
-
-moz-transform: rotateY(0deg);
|
1593 |
-
transform: rotateY(0deg);
|
1594 |
-
backface-visibility: visible;
|
1595 |
-
opacity: 1;
|
1596 |
-
}
|
1597 |
-
|
1598 |
-
.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .rt-img-holder {
|
1599 |
-
-webkit-transform: rotateY(-180deg);
|
1600 |
-
-moz-transform: rotateY(-180deg);
|
1601 |
-
transform: rotateY(-180deg);
|
1602 |
-
opacity: 0;
|
1603 |
-
visibility: hidden;
|
1604 |
-
}
|
1605 |
-
|
1606 |
-
.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .grid-hover-content {
|
1607 |
-
-webkit-transform: rotateY(-180deg);
|
1608 |
-
-moz-transform: rotateY(-180deg);
|
1609 |
-
transform: rotateY(-180deg);
|
1610 |
-
opacity: 0;
|
1611 |
-
visibility: hidden;
|
1612 |
-
}
|
1613 |
-
|
1614 |
-
.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .rt-img-holder {
|
1615 |
-
backface-visibility: hidden;
|
1616 |
-
-webkit-transform: rotateY(180deg);
|
1617 |
-
-moz-transform: rotateY(180deg);
|
1618 |
-
transform: rotateY(180deg);
|
1619 |
-
opacity: 0;
|
1620 |
-
}
|
1621 |
-
|
1622 |
-
.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .rt-img-holder {
|
1623 |
-
-webkit-transform: rotateY(0deg);
|
1624 |
-
-moz-transform: rotateY(0deg);
|
1625 |
-
transform: rotateY(0deg);
|
1626 |
-
backface-visibility: visible;
|
1627 |
-
opacity: 1;
|
1628 |
-
}
|
1629 |
-
|
1630 |
-
/*End hover animation*/
|
1631 |
-
|
1632 |
-
/*Show hide elements
|
1633 |
-
=====================*/
|
1634 |
-
|
1635 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .rt-el-post-meta,
|
1636 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .tpg-el-excerpt,
|
1637 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .post-footer,
|
1638 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .rt-tpg-social-share {
|
1639 |
-
max-height: 0;
|
1640 |
-
margin-bottom: 0;
|
1641 |
-
transition: .6s;
|
1642 |
-
opacity: 0;
|
1643 |
-
visibility: hidden;
|
1644 |
-
}
|
1645 |
-
|
1646 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .rt-el-post-meta,
|
1647 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .tpg-el-excerpt,
|
1648 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .post-footer,
|
1649 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .rt-tpg-social-share {
|
1650 |
-
margin-bottom: 15px;
|
1651 |
-
}
|
1652 |
-
|
1653 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .rt-el-post-meta {
|
1654 |
-
transition: all 0.6s, opacity 0.6s;
|
1655 |
-
}
|
1656 |
-
|
1657 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .tpg-el-excerpt {
|
1658 |
-
transition: all 0.6s, opacity 0.5s;
|
1659 |
-
}
|
1660 |
-
|
1661 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .post-footer {
|
1662 |
-
transition: all 0.6s, opacity 0.4s;
|
1663 |
-
}
|
1664 |
-
|
1665 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .rt-tpg-social-share {
|
1666 |
-
transition: all 0.6s, opacity 0.3s;
|
1667 |
-
}
|
1668 |
-
|
1669 |
-
|
1670 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .rt-el-post-meta {
|
1671 |
-
max-height: var(--tpg-meta-height, 80px);
|
1672 |
-
opacity: 1;
|
1673 |
-
visibility: visible;
|
1674 |
-
margin-bottom: 15px;
|
1675 |
-
}
|
1676 |
-
|
1677 |
-
/*.rt-tpg-container .grid_hover_layout_wrapper .offset-right .rt-grid-hover-item .rt-holder:hover .rt-el-post-meta {*/
|
1678 |
-
/* margin-bottom: 0;*/
|
1679 |
-
/*}*/
|
1680 |
-
|
1681 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .tpg-el-excerpt {
|
1682 |
-
max-height: var(--tpg-excerpt-height, 140px);
|
1683 |
-
opacity: 1;
|
1684 |
-
visibility: visible;
|
1685 |
-
}
|
1686 |
-
|
1687 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-holder:hover .rt-tpg-social-share {
|
1688 |
-
max-height: var(--tpg-share-height, 50px);
|
1689 |
-
margin-bottom: 15px;
|
1690 |
-
opacity: 1;
|
1691 |
-
visibility: visible;
|
1692 |
-
}
|
1693 |
-
|
1694 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .post-footer {
|
1695 |
-
max-height: var(--tpg-footer-height, 50px);
|
1696 |
-
opacity: 1;
|
1697 |
-
visibility: visible;
|
1698 |
-
}
|
1699 |
-
|
1700 |
-
|
1701 |
-
.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout5 .rt-grid-hover-item .rt-holder .rt-el-post-meta,
|
1702 |
-
.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .rt-el-post-meta,
|
1703 |
-
.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .tpg-el-excerpt,
|
1704 |
-
.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .post-footer,
|
1705 |
-
.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .rt-tpg-social-share {
|
1706 |
-
max-height: inherit;
|
1707 |
-
opacity: 1;
|
1708 |
-
visibility: visible;
|
1709 |
-
}
|
1710 |
-
|
1711 |
-
|
1712 |
-
/*End Grid Hover common*/
|
1713 |
-
|
1714 |
-
|
1715 |
-
.meta-visibility-default .rt-tpg-container .grid_hover-layout1 .rt-grid-hover-item .rt-holder .rt-el-post-meta {
|
1716 |
-
max-height: inherit;
|
1717 |
-
}
|
1718 |
-
|
1719 |
-
.rt-tpg-container .grid_hover-layout1 .rt-holder .tpg-el-image-wrap {
|
1720 |
-
height: 300px;
|
1721 |
-
}
|
1722 |
-
|
1723 |
-
.grid-hover-overlay-height-full .rt-tpg-container .rt-content-loader .rt-grid-hover-item .rt-holder .grid-hover-content {
|
1724 |
-
min-height: 100%;
|
1725 |
-
}
|
1726 |
-
|
1727 |
-
.hover-overlay-height-full .rt-tpg-container .rt-content-loader .rt-grid-hover-item .rt-holder:hover .grid-hover-content,
|
1728 |
-
.hover-overlay-height-default .rt-tpg-container .grid_hover-layout1 .rt-grid-hover-item .rt-holder:hover .grid-hover-content {
|
1729 |
-
min-height: 100%;
|
1730 |
-
transition: .5s;
|
1731 |
-
}
|
1732 |
-
|
1733 |
-
.rt-tpg-container .grid_hover-layout1 .entry-title-wrapper .entry-title {
|
1734 |
-
font-size: 20px;
|
1735 |
-
line-height: 1.4;
|
1736 |
-
}
|
1737 |
-
|
1738 |
-
|
1739 |
-
/*********************************
|
1740 |
-
# Grid Hover Layout 2
|
1741 |
-
**********************************/
|
1742 |
-
|
1743 |
-
.meta-visibility-default .rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder .rt-el-post-meta {
|
1744 |
-
max-height: inherit;
|
1745 |
-
margin-bottom: 7px;
|
1746 |
-
}
|
1747 |
-
|
1748 |
-
.rt-tpg-container .grid_hover-layout2 .rt-holder .tpg-el-image-wrap img {
|
1749 |
-
height: 300px;
|
1750 |
-
}
|
1751 |
-
|
1752 |
-
.rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder .tpg-el-excerpt,
|
1753 |
-
.rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder .post-footer,
|
1754 |
-
.tpg-el-main-wrapper .grid_hover-layout2 .rt-holder .rt-tpg-social-share {
|
1755 |
-
max-height: 0;
|
1756 |
-
overflow: hidden;
|
1757 |
-
margin-bottom: 0;
|
1758 |
-
transition: 0.6s;
|
1759 |
-
}
|
1760 |
-
|
1761 |
-
.tpg-el-main-wrapper .grid_hover-layout2 .rt-holder:hover .rt-tpg-social-share {
|
1762 |
-
max-height: 50px;
|
1763 |
-
margin-bottom: 15px
|
1764 |
-
}
|
1765 |
-
|
1766 |
-
.rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder:hover .post-footer {
|
1767 |
-
max-height: 50px;
|
1768 |
-
}
|
1769 |
-
|
1770 |
-
.hover-overlay-height-full .rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder:hover .grid-hover-content {
|
1771 |
-
min-height: 100%;
|
1772 |
-
}
|
1773 |
-
|
1774 |
-
.rt-tpg-container .grid_hover-layout2 .rt-holder .grid-hover-content {
|
1775 |
-
padding: 20px;
|
1776 |
-
justify-content: center;
|
1777 |
-
text-align: center;
|
1778 |
-
margin: 15px;
|
1779 |
-
width: calc(100% - 30px);
|
1780 |
-
}
|
1781 |
-
|
1782 |
-
|
1783 |
-
/*********************************
|
1784 |
-
# Grid Hover Layout 3
|
1785 |
-
**********************************/
|
1786 |
-
|
1787 |
-
.rt-tpg-container .grid_hover-layout3 .tpg-el-image-wrap {
|
1788 |
-
height: 300px;
|
1789 |
-
}
|
1790 |
-
|
1791 |
-
.rt-tpg-container .grid_hover-layout3 .rt-grid-hover-item .rt-holder .grid-hover-content {
|
1792 |
-
min-height: 100%;
|
1793 |
-
justify-content: center;
|
1794 |
-
text-align: center;
|
1795 |
-
padding: 10px 30px;
|
1796 |
-
}
|
1797 |
-
|
1798 |
-
|
1799 |
-
/*Title Border style */
|
1800 |
-
|
1801 |
-
.tpg-title-border-show .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title {
|
1802 |
-
position: relative;
|
1803 |
-
margin-bottom: 20px;
|
1804 |
-
}
|
1805 |
-
|
1806 |
-
.tpg-title-border-show .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title::before {
|
1807 |
-
content: "";
|
1808 |
-
position: absolute;
|
1809 |
-
bottom: -16px;
|
1810 |
-
height: 2px;
|
1811 |
-
width: 50%;
|
1812 |
-
right: 50%;
|
1813 |
-
transform: translateX(50%);
|
1814 |
-
background-color: #fff;
|
1815 |
-
transition: 0.4s;
|
1816 |
-
}
|
1817 |
-
|
1818 |
-
.tpg-title-border-show.title-alignment-justify .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title::before,
|
1819 |
-
.tpg-title-border-show.title-alignment-left .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title::before,
|
1820 |
-
.tpg-title-border-show.tpg-wrapper-align-left .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title::before {
|
1821 |
-
right: 0;
|
1822 |
-
transform: none;
|
1823 |
-
}
|
1824 |
-
|
1825 |
-
.tpg-title-border-show.title-alignment-right .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title::before,
|
1826 |
-
.tpg-title-border-show.tpg-wrapper-align-right .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title::before {
|
1827 |
-
left: 0;
|
1828 |
-
transform: none;
|
1829 |
-
}
|
1830 |
-
|
1831 |
-
|
1832 |
-
/*End Title Border style */
|
1833 |
-
|
1834 |
-
/*********************************
|
1835 |
-
# Grid Hover Layout 4 - Offset
|
1836 |
-
**********************************/
|
1837 |
-
|
1838 |
-
/*Offset Common*/
|
1839 |
-
|
1840 |
-
@media (max-width: 767px) {
|
1841 |
-
.tpg-el-main-wrapper .rt-content-loader .offset-left,
|
1842 |
-
.tpg-el-main-wrapper .rt-content-loader .offset-right {
|
1843 |
-
width: 100% !important;
|
1844 |
-
}
|
1845 |
-
}
|
1846 |
-
|
1847 |
-
.rt-tpg-container .offset-right .entry-title-wrapper .entry-title {
|
1848 |
-
font-size: 18px;
|
1849 |
-
}
|
1850 |
-
|
1851 |
-
.rt-tpg-container .offset-right .rt-grid-hover-item .rt-holder .grid-hover-content {
|
1852 |
-
padding: 15px 15px 10px;
|
1853 |
-
}
|
1854 |
-
|
1855 |
-
.tpg-el-main-wrapper .offset-right .tpg-el-image-wrap img {
|
1856 |
-
height: 100%;
|
1857 |
-
object-fit: cover;
|
1858 |
-
min-height: 170px;
|
1859 |
-
}
|
1860 |
-
|
1861 |
-
.tpg-el-main-wrapper .offset-right .rt-list-item .tpg-el-image-wrap img {
|
1862 |
-
min-height: inherit;
|
1863 |
-
}
|
1864 |
-
|
1865 |
-
.tpg-el-main-wrapper .offset-left .tpg-el-image-wrap {
|
1866 |
-
height: 589px;
|
1867 |
-
}
|
1868 |
-
|
1869 |
-
@media (max-width: 767px) {
|
1870 |
-
.tpg-el-main-wrapper .offset-left .tpg-el-image-wrap {
|
1871 |
-
height: 400px;
|
1872 |
-
}
|
1873 |
-
}
|
1874 |
-
|
1875 |
-
/*end offset common */
|
1876 |
-
|
1877 |
-
.tpg-el-main-wrapper .grid_hover-layout4 .offset-left .tpg-el-image-wrap {
|
1878 |
-
height: 571px;
|
1879 |
-
}
|
1880 |
-
|
1881 |
-
.rt-tpg-container .grid_hover-layout4 .offset-left .rt-holder .rt-el-post-meta {
|
1882 |
-
max-height: inherit;
|
1883 |
-
margin-bottom: 7px;
|
1884 |
-
opacity: 1;
|
1885 |
-
visibility: visible;
|
1886 |
-
}
|
1887 |
-
|
1888 |
-
.rt-tpg-container .grid_hover-layout4 .rt-holder:hover .rt-el-post-meta {
|
1889 |
-
max-height: 30px;
|
1890 |
-
}
|
1891 |
-
|
1892 |
-
.tpg-el-main-wrapper.grid_hover-layout4-2-main .grid_hover-layout4 {
|
1893 |
-
flex-direction: row-reverse;
|
1894 |
-
}
|
1895 |
-
|
1896 |
-
/*********************************
|
1897 |
-
# Grid Hover Layout 5 - Offset
|
1898 |
-
**********************************/
|
1899 |
-
|
1900 |
-
.rt-tpg-container .grid_hover-layout5 .offset-left .tpg-el-image-wrap img {
|
1901 |
-
height: 590px;
|
1902 |
-
}
|
1903 |
-
|
1904 |
-
@media (max-width: 767px) {
|
1905 |
-
.rt-tpg-container .grid_hover-layout5 .offset-left .tpg-el-image-wrap img {
|
1906 |
-
height: 400px;
|
1907 |
-
}
|
1908 |
-
}
|
1909 |
-
|
1910 |
-
body .elementor-section .rt-tpg-container .grid_hover-layout5 [class*='rt-col'] {
|
1911 |
-
padding: 2.5px;
|
1912 |
-
}
|
1913 |
-
|
1914 |
-
.rt-tpg-container .grid_hover-layout5 .rt-row,
|
1915 |
-
.rt-tpg-container .grid_hover-layout5 {
|
1916 |
-
margin-right: -2.5px;
|
1917 |
-
margin-left: -2.5px;
|
1918 |
-
}
|
1919 |
-
|
1920 |
-
.rt-tpg-container .grid_hover-layout5 .rt-row {
|
1921 |
-
margin-top: -2.5px;
|
1922 |
-
margin-bottom: -2.5px;
|
1923 |
-
}
|
1924 |
-
|
1925 |
-
.grid-hover-overlay-height-default .grid_hover-layout5 .rt-holder .grid-hover-content {
|
1926 |
-
min-height: 100%;
|
1927 |
-
}
|
1928 |
-
|
1929 |
-
.grid-hover-overlay-height-default .grid_hover-layout5 .rt-holder .grid-hover-content .post-meta-tags {
|
1930 |
-
margin-top: -7px;
|
1931 |
-
}
|
1932 |
-
|
1933 |
-
.grid-hover-overlay-height-default .grid_hover-layout5 .rt-holder .rt-detail .entry-title-wrapper .tpg-separate-category {
|
1934 |
-
margin-bottom: 0;
|
1935 |
-
}
|
1936 |
-
|
1937 |
-
.rt-tpg-container .grid_hover-layout5 .rt-holder .grid-hover-content:before {
|
1938 |
-
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 59%, rgba(0, 0, 0, 0.8) 100%);
|
1939 |
-
}
|
1940 |
-
|
1941 |
-
.tpg-el-main-wrapper .grid_hover-layout5 .offset-right .tpg-el-image-wrap img {
|
1942 |
-
height: 292px;
|
1943 |
-
}
|
1944 |
-
|
1945 |
-
.tpg-el-main-wrapper .grid_hover-layout5 .entry-title-wrapper .categories-links .rt-separator {
|
1946 |
-
display: none;
|
1947 |
-
}
|
1948 |
-
|
1949 |
-
.tpg-el-main-wrapper .grid_hover-layout5 .entry-title-wrapper .categories-links a {
|
1950 |
-
background-color: #ffaf25;
|
1951 |
-
color: #ffffff;
|
1952 |
-
padding: 4px 8px;
|
1953 |
-
margin-left: 5px;
|
1954 |
-
font-size: 14px;
|
1955 |
-
}
|
1956 |
-
|
1957 |
-
.tpg-el-main-wrapper .grid_hover-layout5 .entry-title-wrapper .categories-links {
|
1958 |
-
margin-bottom: 10px;
|
1959 |
-
}
|
1960 |
-
|
1961 |
-
.tpg-el-main-wrapper .grid_hover-layout5 .entry-title-wrapper .categories-links a:hover {
|
1962 |
-
background-color: #ee9e14;
|
1963 |
-
}
|
1964 |
-
|
1965 |
-
.comment-visibility-default .grid_hover-layout5 .post-meta-tags {
|
1966 |
-
color: rgba(255, 255, 255, .8);
|
1967 |
-
font-size: 14px;
|
1968 |
-
}
|
1969 |
-
|
1970 |
-
.rt-tpg-container .grid_hover-layout5 .offset-right .rt-holder .grid-hover-content {
|
1971 |
-
padding: 30px 30px 15px;
|
1972 |
-
}
|
1973 |
-
|
1974 |
-
@media (max-width: 991px) {
|
1975 |
-
.rt-tpg-container .grid_hover-layout5 .offset-right .rt-holder .grid-hover-content {
|
1976 |
-
padding: 20px;
|
1977 |
-
}
|
1978 |
-
}
|
1979 |
-
|
1980 |
-
.rt-tpg-container .grid_hover-layout5 .offset-left .rt-holder .grid-hover-content {
|
1981 |
-
padding: 40px 40px 25px 20px;
|
1982 |
-
}
|
1983 |
-
|
1984 |
-
.rt-tpg-container .grid_hover-layout5 .offset-left .rt-holder:hover .grid-hover-content {
|
1985 |
-
padding-bottom: 25px;
|
1986 |
-
}
|
1987 |
-
|
1988 |
-
.rt-tpg-container .grid_hover-layout5 .offset-left .entry-title-wrapper .entry-title {
|
1989 |
-
font-size: 26px;
|
1990 |
-
}
|
1991 |
-
|
1992 |
-
.rt-tpg-container .grid_hover-layout5 .offset-right .entry-title-wrapper .entry-title {
|
1993 |
-
font-size: 20px;
|
1994 |
-
}
|
1995 |
-
|
1996 |
-
.tpg-el-main-wrapper.grid_hover-layout5-2-main .grid_hover-layout5 {
|
1997 |
-
flex-direction: row-reverse;
|
1998 |
-
}
|
1999 |
-
|
2000 |
-
|
2001 |
-
/*********************************
|
2002 |
-
# Grid Hover Layout 6
|
2003 |
-
**********************************/
|
2004 |
-
|
2005 |
-
.grid_hover-layout6-2-main .grid_hover_layout_wrapper {
|
2006 |
-
flex-direction: row-reverse;
|
2007 |
-
}
|
2008 |
-
|
2009 |
-
/*********************************
|
2010 |
-
# Grid Hover Layout 7
|
2011 |
-
**********************************/
|
2012 |
-
|
2013 |
-
.tpg-el-main-wrapper.grid_hover-layout7-2-main .grid_hover-layout7 {
|
2014 |
-
flex-direction: row-reverse;
|
2015 |
-
}
|
2016 |
-
|
2017 |
-
|
2018 |
-
/*********************************
|
2019 |
-
# Grid Hover Layout 8
|
2020 |
-
**********************************/
|
2021 |
-
|
2022 |
-
.rt-tpg-container .grid_hover-layout8 .display-grid-wrapper {
|
2023 |
-
display: grid;
|
2024 |
-
grid-template-columns: 1fr 1fr;
|
2025 |
-
grid-gap: 5px;
|
2026 |
-
grid-auto-rows: 280px;
|
2027 |
-
margin-bottom: 5px;
|
2028 |
-
width: 100%;
|
2029 |
-
}
|
2030 |
-
|
2031 |
-
.rt-tpg-container .grid_hover-layout8 .display-grid-wrapper .rt-grid-item {
|
2032 |
-
padding: 0;
|
2033 |
-
}
|
2034 |
-
|
2035 |
-
@media (min-width: 992px) {
|
2036 |
-
.rt-tpg-container .grid_hover-layout8 .display-grid-wrapper {
|
2037 |
-
grid-template-columns: 27% 44% 27%;
|
2038 |
-
}
|
2039 |
-
}
|
2040 |
-
|
2041 |
-
@media (min-width: 768px) {
|
2042 |
-
|
2043 |
-
.rt-tpg-container .grid_hover-layout8 .display-grid-wrapper {
|
2044 |
-
grid-template-columns: 32% 36% 32%;
|
2045 |
-
}
|
2046 |
-
|
2047 |
-
|
2048 |
-
.rt-tpg-container .grid_hover-layout8 .rt-grid-hover-item:nth-child(5n+1) {
|
2049 |
-
grid-column: 1 / 2;
|
2050 |
-
grid-row: 1;
|
2051 |
-
}
|
2052 |
-
|
2053 |
-
.rt-tpg-container .grid_hover-layout8 .rt-grid-hover-item:nth-child(5n+2) {
|
2054 |
-
grid-column: 1 / 2;
|
2055 |
-
grid-row: 2;
|
2056 |
-
}
|
2057 |
-
|
2058 |
-
.rt-tpg-container .grid_hover-layout8 .rt-grid-hover-item:nth-child(5n+3) {
|
2059 |
-
grid-column: 2 / 3;
|
2060 |
-
grid-row: 1/3;
|
2061 |
-
}
|
2062 |
-
|
2063 |
-
.rt-tpg-container .grid_hover-layout8 .rt-grid-hover-item:nth-child(5n+4) {
|
2064 |
-
grid-column: 3 / 4;
|
2065 |
-
grid-row: 1;
|
2066 |
-
}
|
2067 |
-
|
2068 |
-
.rt-tpg-container .grid_hover-layout8 .rt-grid-hover-item:nth-child(5n+5) {
|
2069 |
-
grid-column: 3 / 4;
|
2070 |
-
grid-row: 2;
|
2071 |
-
}
|
2072 |
-
|
2073 |
-
|
2074 |
-
}
|
2075 |
-
|
2076 |
-
@media (max-width: 767px) {
|
2077 |
-
.rt-tpg-container .grid_hover-layout8 .display-grid-wrapper {
|
2078 |
-
grid-template-columns: 1fr;
|
2079 |
-
}
|
2080 |
-
}
|
2081 |
-
|
2082 |
-
.tpg-el-main-wrapper .grid_hover-layout8 .rt-holder .rt-el-content-wrapper {
|
2083 |
-
height: 100%;
|
2084 |
-
}
|
2085 |
-
|
2086 |
-
.tpg-el-main-wrapper .grid_hover-layout8 .rt-holder .rt-el-content-wrapper .rt-img-holder,
|
2087 |
-
.tpg-el-main-wrapper .grid_hover-layout8 .rt-holder .rt-el-content-wrapper .rt-img-holder img {
|
2088 |
-
height: 100%;
|
2089 |
-
}
|
2090 |
-
|
2091 |
-
/*********************************
|
2092 |
-
# Grid Hover Layout 9
|
2093 |
-
**********************************/
|
2094 |
-
|
2095 |
-
.tpg-el-main-wrapper .grid_hover-layout9 {
|
2096 |
-
flex-direction: row-reverse;
|
2097 |
-
}
|
2098 |
-
|
2099 |
-
.tpg-el-main-wrapper.grid_hover-layout9-2-main .grid_hover-layout9 {
|
2100 |
-
flex-direction: row;
|
2101 |
-
}
|
2102 |
-
|
2103 |
-
.tpg-el-main-wrapper .grid_hover-layout9 .offset-right .tpg-el-image-wrap img {
|
2104 |
-
height: 193px;
|
2105 |
-
}
|
2106 |
-
|
2107 |
-
.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout9 .offset-right .rt-grid-hover-item .rt-holder .rt-el-post-meta {
|
2108 |
-
display: none;
|
2109 |
-
}
|
2110 |
-
|
2111 |
-
.rt-tpg-container .grid_hover-layout9 .offset-left .rt-holder .grid-hover-content {
|
2112 |
-
padding: 40px 40px 25px 40px;
|
2113 |
-
}
|
2114 |
-
|
2115 |
-
@media (max-width: 767px) {
|
2116 |
-
.tpg-el-main-wrapper .grid_hover-layout9 .offset-right .tpg-el-image-wrap img {
|
2117 |
-
height: 230px;
|
2118 |
-
}
|
2119 |
-
}
|
2120 |
-
|
2121 |
-
/*********************************
|
2122 |
-
# Grid Hover Layout 10
|
2123 |
-
**********************************/
|
2124 |
-
|
2125 |
-
.rt-tpg-container .grid_hover-layout10 .rt-img-holder {
|
2126 |
-
height: 385px;
|
2127 |
-
}
|
2128 |
-
|
2129 |
-
.grid-hover-overlay-height-default .grid_hover-layout10 .rt-holder .grid-hover-content {
|
2130 |
-
justify-content: center;
|
2131 |
-
text-align: center;
|
2132 |
-
}
|
2133 |
-
|
2134 |
-
|
2135 |
-
/*********************************
|
2136 |
-
# Grid Hover Layout 11
|
2137 |
-
**********************************/
|
2138 |
-
|
2139 |
-
.rt-tpg-container .grid_hover-layout11 .rt-img-holder {
|
2140 |
-
height: 410px;
|
2141 |
-
}
|
2142 |
-
|
2143 |
-
|
2144 |
-
@media (max-width: 991px) {
|
2145 |
-
.rt-tpg-container .grid_hover-layout11 .rt-img-holder {
|
2146 |
-
height: 370px;
|
2147 |
-
}
|
2148 |
-
}
|
2149 |
-
|
2150 |
-
@media (max-width: 767px) {
|
2151 |
-
.rt-tpg-container .grid_hover-layout11 .rt-img-holder {
|
2152 |
-
height: 300px;
|
2153 |
-
}
|
2154 |
-
}
|
2155 |
-
|
2156 |
-
.rt-tpg-container .grid_hover-layout11 .entry-title-wrapper {
|
2157 |
-
margin-top: -8px;
|
2158 |
-
}
|
2159 |
-
|
2160 |
-
.rt-tpg-container .grid_hover-layout11 .entry-title-wrapper .entry-title {
|
2161 |
-
font-size: 26px;
|
2162 |
-
line-height: 1.4;
|
2163 |
-
}
|
2164 |
-
|
2165 |
-
.rt-tpg-container .grid_hover-layout11 .rt-img-holder .tpg-separate-category.style1 {
|
2166 |
-
margin-right: 30px;
|
2167 |
-
margin-top: 20px;
|
2168 |
-
}
|
2169 |
-
|
2170 |
-
.rt-tpg-container .grid_hover-layout11 .rt-img-holder .tpg-separate-category.style1 .categories-links {
|
2171 |
-
padding: 2px 9px 3px;
|
2172 |
-
line-height: 1.3;
|
2173 |
-
letter-spacing: 0.05rem;
|
2174 |
-
text-transform: capitalize;
|
2175 |
-
display: inline-block;
|
2176 |
-
position: relative;
|
2177 |
-
background-color: #ffaf25;
|
2178 |
-
color: #ffffff;
|
2179 |
-
margin-left: 25px;
|
2180 |
-
}
|
2181 |
-
|
2182 |
-
.rt-tpg-container .grid_hover-layout11 .rt-img-holder .tpg-separate-category.style1 .categories-links a {
|
2183 |
-
color: #ffffff;
|
2184 |
-
font-size: 12px;
|
2185 |
-
font-weight: 500;
|
2186 |
-
display: inline;
|
2187 |
-
}
|
2188 |
-
|
2189 |
-
.rt-tpg-container .grid_hover-layout11 .rt-img-holder .tpg-separate-category.style1 .categories-links a:hover {
|
2190 |
-
color: var(--tpg-primary-color);
|
2191 |
-
}
|
2192 |
-
|
2193 |
-
.rt-tpg-container .grid_hover-layout11 .rt-img-holder .tpg-separate-category.style1 .categories-links:after {
|
2194 |
-
content: "";
|
2195 |
-
position: absolute;
|
2196 |
-
top: 0;
|
2197 |
-
left: -7px;
|
2198 |
-
border-top: 8px solid #ffaf25;
|
2199 |
-
border-left: 8px solid transparent;
|
2200 |
-
}
|
2201 |
-
|
2202 |
-
.rt-tpg-container .grid_hover-layout11 .rt-holder .rt-el-post-meta {
|
2203 |
-
order: -1;
|
2204 |
-
}
|
2205 |
-
|
2206 |
-
.category-visibility-default .grid_hover-layout11 .post-meta-tags .categories-links {
|
2207 |
-
display: none;
|
2208 |
-
}
|
2209 |
-
|
2210 |
-
|
2211 |
-
/*********************************
|
2212 |
-
# Slider Layout 1
|
2213 |
-
**********************************/
|
2214 |
-
|
2215 |
-
/*Slider Common style */
|
2216 |
-
|
2217 |
-
.tpg-el-main-wrapper .swiper-button-next:after,
|
2218 |
-
.tpg-el-main-wrapper .swiper-button-prev:after {
|
2219 |
-
font-family: eicons;
|
2220 |
-
font-size: inherit;
|
2221 |
-
font-weight: 400;
|
2222 |
-
|
2223 |
-
}
|
2224 |
-
|
2225 |
-
|
2226 |
-
.tpg-el-main-wrapper .swiper-button-next:after {
|
2227 |
-
content: '\e87d';
|
2228 |
-
}
|
2229 |
-
|
2230 |
-
.tpg-el-main-wrapper .swiper-button-prev:after {
|
2231 |
-
content: '\e87e';
|
2232 |
-
}
|
2233 |
-
|
2234 |
-
.tpg-el-main-wrapper .slider-main-wrapper .swiper-pagination {
|
2235 |
-
position: absolute;
|
2236 |
-
width: 100%;
|
2237 |
-
min-height: 40px;
|
2238 |
-
bottom: -55px;
|
2239 |
-
}
|
2240 |
-
|
2241 |
-
.slider-dot-enable-yes .rt-tpg-container {
|
2242 |
-
padding-bottom: 50px;
|
2243 |
-
}
|
2244 |
-
|
2245 |
-
.tpg-el-main-wrapper .swiper-pagination span {
|
2246 |
-
transition: 0.4s;
|
2247 |
-
margin: 0 3px;
|
2248 |
-
}
|
2249 |
-
|
2250 |
-
.tpg-el-main-wrapper .swiper-pagination span:hover {
|
2251 |
-
background-color: var(--tpg-primary-color);
|
2252 |
-
}
|
2253 |
-
|
2254 |
-
.tpg-el-main-wrapper .swiper-pagination span.swiper-pagination-bullet-active {
|
2255 |
-
background-color: var(--tpg-primary-color);
|
2256 |
-
width: 20px;
|
2257 |
-
border-radius: 10px;
|
2258 |
-
}
|
2259 |
-
|
2260 |
-
.tpg-el-main-wrapper .rt-swiper-holder .tpg-el-image-wrap img {
|
2261 |
-
width: 100%;
|
2262 |
-
}
|
2263 |
-
|
2264 |
-
.tpg-el-main-wrapper .rt-swiper-holder .tpg-el-image-wrap img[src="#none"] {
|
2265 |
-
display: none;
|
2266 |
-
}
|
2267 |
-
|
2268 |
-
.tpg-el-main-wrapper .rt-swiper-holder {
|
2269 |
-
margin-right: -15px;
|
2270 |
-
margin-left: -15px;
|
2271 |
-
}
|
2272 |
-
|
2273 |
-
body .elementor-section .tpg-el-main-wrapper .rt-slider-item {
|
2274 |
-
padding: 0 7px;
|
2275 |
-
background: none;
|
2276 |
-
}
|
2277 |
-
|
2278 |
-
body .elementor-section .tpg-el-main-wrapper.slider-is-disable .rt-slider-item {
|
2279 |
-
padding: 0;
|
2280 |
-
}
|
2281 |
-
|
2282 |
-
.tpg-el-main-wrapper .slider-main-wrapper {
|
2283 |
-
position: relative;
|
2284 |
-
opacity: 0;
|
2285 |
-
}
|
2286 |
-
|
2287 |
-
.tpg-el-main-wrapper.loading {
|
2288 |
-
min-height: 300px;
|
2289 |
-
transition: 0.4s;
|
2290 |
-
}
|
2291 |
-
|
2292 |
-
.tpg-el-main-wrapper.loading::before {
|
2293 |
-
width: 32px;
|
2294 |
-
height: 32px;
|
2295 |
-
display: inline-block;
|
2296 |
-
float: none;
|
2297 |
-
border: 2px solid currentColor;
|
2298 |
-
background: transparent;
|
2299 |
-
border-bottom-color: transparent;
|
2300 |
-
border-radius: 100%;
|
2301 |
-
-webkit-animation: ball-clip-rotate 0.75s linear infinite;
|
2302 |
-
-moz-animation: ball-clip-rotate 0.75s linear infinite;
|
2303 |
-
-o-animation: ball-clip-rotate 0.75s linear infinite;
|
2304 |
-
animation: ball-clip-rotate 0.75s linear infinite;
|
2305 |
-
right: 50%;
|
2306 |
-
top: 50%;
|
2307 |
-
position: absolute;
|
2308 |
-
z-index: 9999999999;
|
2309 |
-
color: red;
|
2310 |
-
}
|
2311 |
-
|
2312 |
-
.tpg-el-main-wrapper .rt-swiper-holder {
|
2313 |
-
overflow: hidden;
|
2314 |
-
}
|
2315 |
-
|
2316 |
-
.is-carousel-overflow-none .tpg-el-main-wrapper .rt-swiper-holder {
|
2317 |
-
overflow: unset;
|
2318 |
-
}
|
2319 |
-
|
2320 |
-
.slider-arrow-position-top-right .slider-main-wrapper,
|
2321 |
-
.slider-arrow-position-top-left .slider-main-wrapper {
|
2322 |
-
margin-top: 45px;
|
2323 |
-
}
|
2324 |
-
|
2325 |
-
.section-title-style-default.slider-arrow-position-top-right .slider-main-wrapper,
|
2326 |
-
.section-title-style-default.slider-arrow-position-top-left .slider-main-wrapper {
|
2327 |
-
margin-top: 0;
|
2328 |
-
}
|
2329 |
-
|
2330 |
-
.slider-arrow-position-top-right .swiper-navigation {
|
2331 |
-
position: absolute;
|
2332 |
-
top: -40px;
|
2333 |
-
left: 0;
|
2334 |
-
}
|
2335 |
-
|
2336 |
-
.slider-arrow-position-top-left .swiper-navigation {
|
2337 |
-
position: absolute;
|
2338 |
-
top: -40px;
|
2339 |
-
right: 0;
|
2340 |
-
}
|
2341 |
-
|
2342 |
-
.slider-arrow-position-show-hover .swiper-navigation .slider-btn,
|
2343 |
-
.slider-arrow-position-default .swiper-navigation .slider-btn {
|
2344 |
-
position: absolute;
|
2345 |
-
top: 50%;
|
2346 |
-
transform: translateY(-50%);
|
2347 |
-
margin: 0 !important;
|
2348 |
-
}
|
2349 |
-
|
2350 |
-
.slider-arrow-position-show-hover .swiper-navigation .slider-btn.swiper-button-next {
|
2351 |
-
left: 0;
|
2352 |
-
right: auto;
|
2353 |
-
opacity: 0;
|
2354 |
-
}
|
2355 |
-
|
2356 |
-
.slider-arrow-position-show-hover .swiper-navigation .slider-btn.swiper-button-prev {
|
2357 |
-
right: 0;
|
2358 |
-
left: auto;
|
2359 |
-
opacity: 0;
|
2360 |
-
}
|
2361 |
-
|
2362 |
-
.slider-arrow-position-show-hover .slider-main-wrapper:hover .swiper-navigation .slider-btn.swiper-button-next {
|
2363 |
-
left: 40px;
|
2364 |
-
opacity: 1;
|
2365 |
-
}
|
2366 |
-
|
2367 |
-
.slider-arrow-position-show-hover .slider-main-wrapper:hover .swiper-navigation .slider-btn.swiper-button-prev {
|
2368 |
-
right: 40px;
|
2369 |
-
opacity: 1;
|
2370 |
-
}
|
2371 |
-
|
2372 |
-
.slider-arrow-position-default .swiper-navigation .slider-btn.swiper-button-next {
|
2373 |
-
left: -50px;
|
2374 |
-
right: auto;
|
2375 |
-
}
|
2376 |
-
|
2377 |
-
.slider-arrow-position-default .swiper-navigation .slider-btn.swiper-button-prev {
|
2378 |
-
left: auto;
|
2379 |
-
right: -50px;
|
2380 |
-
}
|
2381 |
-
|
2382 |
-
body:not(.rtl) .slider-direction-rtl .rt-el-content-wrapper {
|
2383 |
-
text-align: left;
|
2384 |
-
}
|
2385 |
-
|
2386 |
-
body:not(.rtl) .slider-direction-rtl .rt-tpg-container .rt-el-post-meta i,
|
2387 |
-
body:not(.rtl) .slider-direction-rtl .tpg-el-main-wrapper .post-meta-tags span img {
|
2388 |
-
margin-left: 0;
|
2389 |
-
margin-right: 5px;
|
2390 |
-
}
|
2391 |
-
|
2392 |
-
.slider-arrow-position-show-hover .swiper-wrapper,
|
2393 |
-
.slider-arrow-position-default .swiper-wrapper {
|
2394 |
-
padding-bottom: 3px;
|
2395 |
-
}
|
2396 |
-
|
2397 |
-
.slider-dots-align-left .tpg-el-main-wrapper .swiper-pagination {
|
2398 |
-
text-align: right;
|
2399 |
-
}
|
2400 |
-
|
2401 |
-
.slider-dots-align-right .tpg-el-main-wrapper .swiper-pagination {
|
2402 |
-
text-align: left;
|
2403 |
-
}
|
2404 |
-
|
2405 |
-
.slider-dots-style-background .tpg-el-main-wrapper .swiper-pagination {
|
2406 |
-
width: auto;
|
2407 |
-
min-height: 20px;
|
2408 |
-
right: 50%;
|
2409 |
-
transform: translateX(50%);
|
2410 |
-
background: rgba(0, 0, 0, .3);
|
2411 |
-
padding: 9px 20px;
|
2412 |
-
border-radius: 30px;
|
2413 |
-
line-height: 1;
|
2414 |
-
}
|
2415 |
-
|
2416 |
-
/*lazy load css*/
|
2417 |
-
.is-lazy-load-yes .rt-tpg-container .rt-holder .tpg-el-image-wrap {
|
2418 |
-
background: #000;
|
2419 |
-
}
|
2420 |
-
|
2421 |
-
.is-lazy-load-yes .swiper-lazy-preloader {
|
2422 |
-
width: 42px;
|
2423 |
-
height: 42px;
|
2424 |
-
position: absolute;
|
2425 |
-
right: 50%;
|
2426 |
-
top: 50%;
|
2427 |
-
margin-right: -21px;
|
2428 |
-
margin-top: -21px;
|
2429 |
-
z-index: 10;
|
2430 |
-
transform-origin: 50%;
|
2431 |
-
animation: swiper-preloader-spin 1s infinite linear;
|
2432 |
-
box-sizing: border-box;
|
2433 |
-
border: 4px solid #fff;
|
2434 |
-
border-radius: 50%;
|
2435 |
-
border-top-color: transparent;
|
2436 |
-
}
|
2437 |
-
|
2438 |
-
.is-lazy-load-yes .swiper-lazy-preloader:after {
|
2439 |
-
content: none;
|
2440 |
-
}
|
2441 |
-
|
2442 |
-
/*end lazy load css*/
|
2443 |
-
|
2444 |
-
.rt-tpg-container .slider-layout4 .entry-title-wrapper .entry-title,
|
2445 |
-
.rt-tpg-container .slider-layout5 .entry-title-wrapper .entry-title,
|
2446 |
-
.rt-tpg-container .slider-layout6 .entry-title-wrapper .entry-title,
|
2447 |
-
.rt-tpg-container .slider-layout7 .entry-title-wrapper .entry-title,
|
2448 |
-
.rt-tpg-container .slider-layout8 .entry-title-wrapper .entry-title,
|
2449 |
-
.rt-tpg-container .slider-layout9 .entry-title-wrapper .entry-title {
|
2450 |
-
font-size: 22px;
|
2451 |
-
}
|
2452 |
-
|
2453 |
-
@media (max-width: 500px) {
|
2454 |
-
.slider-dots-style-background .tpg-el-main-wrapper .swiper-pagination {
|
2455 |
-
min-width: 225px;
|
2456 |
-
}
|
2457 |
-
}
|
2458 |
-
|
2459 |
-
.slider-dots-style-background .tpg-el-main-wrapper .swiper-pagination span {
|
2460 |
-
background: #fff;
|
2461 |
-
}
|
2462 |
-
|
2463 |
-
.slider-dots-style-background .swiper-pagination span.swiper-pagination-bullet-active,
|
2464 |
-
.slider-dots-style-background .swiper-pagination span:hover {
|
2465 |
-
background: var(--tpg-primary-color);
|
2466 |
-
}
|
2467 |
-
|
2468 |
-
@media (min-width: 768px) and (max-width: 1360px) {
|
2469 |
-
.slider-arrow-position-show-hover .rt-tpg-container .slider-main-wrapper,
|
2470 |
-
.slider-arrow-position-default .rt-tpg-container .slider-main-wrapper {
|
2471 |
-
margin-right: 50px;
|
2472 |
-
margin-left: 50px;
|
2473 |
-
}
|
2474 |
-
}
|
2475 |
-
|
2476 |
-
@media (max-width: 767px) {
|
2477 |
-
.slider-arrow-position-show-hover .rt-tpg-container .slider-main-wrapper .swiper-navigation,
|
2478 |
-
.slider-arrow-position-default .rt-tpg-container .slider-main-wrapper .swiper-navigation {
|
2479 |
-
position: absolute;
|
2480 |
-
top: -27px;
|
2481 |
-
left: 0;
|
2482 |
-
}
|
2483 |
-
|
2484 |
-
.slider-arrow-position-show-hover .swiper-navigation .slider-btn,
|
2485 |
-
.slider-arrow-position-default .swiper-navigation .slider-btn {
|
2486 |
-
position: static;
|
2487 |
-
}
|
2488 |
-
|
2489 |
-
.slider-arrow-position-show-hover .rt-tpg-container .slider-main-wrapper,
|
2490 |
-
.slider-arrow-position-default .rt-tpg-container .slider-main-wrapper {
|
2491 |
-
margin-top: 40px;
|
2492 |
-
}
|
2493 |
-
}
|
2494 |
-
|
2495 |
-
.enable-two-rows-yes .rt-tpg-container .slider-column.swiper-slide .rt-slider-item {
|
2496 |
-
padding-top: 15px;
|
2497 |
-
padding-bottom: 15px;
|
2498 |
-
}
|
2499 |
-
|
2500 |
-
|
2501 |
-
/*Slider layout 1*/
|
2502 |
-
/*Slider layout 2*/
|
2503 |
-
|
2504 |
-
|
2505 |
-
.rt-tpg-container .slider-layout1 .rt-img-holder,
|
2506 |
-
.rt-tpg-container .slider-layout2 .rt-img-holder {
|
2507 |
-
height: 230px;
|
2508 |
-
}
|
2509 |
-
|
2510 |
-
/*Slider layout 6*/
|
2511 |
-
|
2512 |
-
.rt-tpg-container .grid_hover-layout3 .rt-grid-hover-item .rt-holder .rt-tpg-social-share,
|
2513 |
-
.rt-tpg-container .grid_hover-layout3 .rt-grid-hover-item .rt-holder .post-footer,
|
2514 |
-
.rt-tpg-container .grid_hover-layout3 .rt-grid-hover-item .rt-holder .rt-el-post-meta,
|
2515 |
-
.rt-tpg-container .grid_hover-layout5 .rt-grid-hover-item .rt-holder .rt-el-post-meta,
|
2516 |
-
.rt-tpg-container .grid_hover-layout3 .rt-grid-hover-item .rt-holder .tpg-el-excerpt {
|
2517 |
-
margin-bottom: 15px;
|
2518 |
-
}
|
2519 |
-
|
2520 |
-
/*Slider layout 7*/
|
2521 |
-
|
2522 |
-
.rt-tpg-container .slider-layout7 .rt-holder .rt-img-holder {
|
2523 |
-
height: 320px;
|
2524 |
-
}
|
2525 |
-
|
2526 |
-
.rt-tpg-container .slider-layout7 .rt-grid-hover-item .rt-holder .grid-hover-content {
|
2527 |
-
justify-content: center;
|
2528 |
-
align-items: center;
|
2529 |
-
text-align: center;
|
2530 |
-
}
|
2531 |
-
|
2532 |
-
/*Slider layout 8*/
|
2533 |
-
|
2534 |
-
.grid-hover-overlay-height-default .slider-layout8 .rt-holder .grid-hover-content {
|
2535 |
-
text-align: right;
|
2536 |
-
}
|
2537 |
-
|
2538 |
-
/* Slider layout 11 */
|
2539 |
-
|
2540 |
-
/* Common style for layout 11, 12*/
|
2541 |
-
|
2542 |
-
.tpg-el-main-wrapper.slider-layout11-main,
|
2543 |
-
.tpg-el-main-wrapper.slider-layout12-main {
|
2544 |
-
padding: 0 !important;
|
2545 |
-
}
|
2546 |
-
|
2547 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-navigation,
|
2548 |
-
.tpg-el-main-wrapper .slider-layout12 .swiper-navigation {
|
2549 |
-
display: none;
|
2550 |
-
}
|
2551 |
-
|
2552 |
-
body .tpg-el-main-wrapper .slider-layout11 .rt-slider-item,
|
2553 |
-
body .tpg-el-main-wrapper .slider-layout12 .rt-slider-item {
|
2554 |
-
padding-right: 0 !important;
|
2555 |
-
padding-left: 0 !important;
|
2556 |
-
}
|
2557 |
-
|
2558 |
-
body .tpg-el-main-wrapper .slider-layout11 .rt-swiper-holder,
|
2559 |
-
body .tpg-el-main-wrapper .slider-layout12 .rt-swiper-holder {
|
2560 |
-
margin-right: 0 !important;
|
2561 |
-
margin-left: 0 !important;
|
2562 |
-
}
|
2563 |
-
|
2564 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .p-content *,
|
2565 |
-
.tpg-el-main-wrapper .slider-layout12 .swiper-thumb-wrapper .swiper-wrapper .p-content * {
|
2566 |
-
color: #ffffff;
|
2567 |
-
pointer-events: none;
|
2568 |
-
}
|
2569 |
-
|
2570 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .p-content .post-taxonomy,
|
2571 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .p-content .thumb-date,
|
2572 |
-
.tpg-el-main-wrapper .slider-layout12 .swiper-thumb-wrapper .swiper-wrapper .p-content .post-taxonomy,
|
2573 |
-
.tpg-el-main-wrapper .slider-layout12 .swiper-thumb-wrapper .swiper-wrapper .p-content .thumb-date {
|
2574 |
-
opacity: .85;
|
2575 |
-
}
|
2576 |
-
|
2577 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .p-content .rt-separator,
|
2578 |
-
.tpg-el-main-wrapper .slider-layout12 .swiper-thumb-wrapper .swiper-wrapper .p-content .rt-separator {
|
2579 |
-
margin-right: 2px;
|
2580 |
-
margin-left: 5px;
|
2581 |
-
}
|
2582 |
-
|
2583 |
-
.tpg-el-main-wrapper.slider-layout11-main .tpg-widget-heading-wrapper,
|
2584 |
-
.tpg-el-main-wrapper.slider-layout12-main .tpg-widget-heading-wrapper {
|
2585 |
-
padding-right: 30px;
|
2586 |
-
padding-left: 30px;
|
2587 |
-
}
|
2588 |
-
|
2589 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .swiper-slide,
|
2590 |
-
.tpg-el-main-wrapper .slider-layout12 .swiper-thumb-wrapper .swiper-wrapper .swiper-slide {
|
2591 |
-
pointer-events: all;
|
2592 |
-
}
|
2593 |
-
|
2594 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .post-thumbnail-wrap {
|
2595 |
-
overflow: hidden;
|
2596 |
-
align-items: center;
|
2597 |
-
}
|
2598 |
-
|
2599 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .post-thumbnail-wrap,
|
2600 |
-
.tpg-el-main-wrapper .slider-layout12 .swiper-thumb-wrapper .swiper-wrapper .post-thumbnail-wrap {
|
2601 |
-
display: flex;
|
2602 |
-
cursor: pointer;
|
2603 |
-
position: relative;
|
2604 |
-
}
|
2605 |
-
|
2606 |
-
.tpg-el-main-wrapper.slider-layout11-main .rt-holder .rt-img-holder,
|
2607 |
-
.tpg-el-main-wrapper.slider-layout12-main .rt-holder .rt-img-holder {
|
2608 |
-
height: 100%;
|
2609 |
-
}
|
2610 |
-
|
2611 |
-
/* end Common style for layout 11, 12*/
|
2612 |
-
|
2613 |
-
.tpg-el-main-wrapper.slider-layout11-main .slider-content-inner {
|
2614 |
-
max-width: 664px;
|
2615 |
-
}
|
2616 |
-
|
2617 |
-
|
2618 |
-
.slider-layout11-main .rt-holder .rt-detail .read-more a {
|
2619 |
-
background: #2962ff;
|
2620 |
-
border-color: #2962ff;
|
2621 |
-
border-radius: 3px;
|
2622 |
-
padding: 8px 30px;
|
2623 |
-
}
|
2624 |
-
|
2625 |
-
.slider-layout11-main .rt-holder .rt-detail .read-more a:hover {
|
2626 |
-
border-color: #ffffff;
|
2627 |
-
background-color: transparent;
|
2628 |
-
color: #ffffff;
|
2629 |
-
}
|
2630 |
-
|
2631 |
-
|
2632 |
-
.tpg-el-main-wrapper.slider-layout11-main .swiper-wrapper {
|
2633 |
-
padding: 0 !important;
|
2634 |
-
}
|
2635 |
-
|
2636 |
-
.tpg-el-main-wrapper.slider-layout11-main .rt-el-post-meta {
|
2637 |
-
margin-bottom: 15px;
|
2638 |
-
}
|
2639 |
-
|
2640 |
-
|
2641 |
-
.rt-tpg-container.slider-layout11-main .rt-holder .grid-hover-content:before {
|
2642 |
-
background: rgba(24, 24, 24, 0.5);
|
2643 |
-
}
|
2644 |
-
|
2645 |
-
.rt-tpg-container.slider-layout11-main .rt-holder:hover .grid-hover-content:before {
|
2646 |
-
opacity: 1;
|
2647 |
-
visibility: visible;
|
2648 |
-
}
|
2649 |
-
|
2650 |
-
.rt-tpg-container.slider-layout11-main .rt-holder .grid-hover-content:after {
|
2651 |
-
display: none;
|
2652 |
-
}
|
2653 |
-
|
2654 |
-
.tpg-el-main-wrapper.slider-layout11-main .rt-grid-hover-item .rt-holder .grid-hover-content {
|
2655 |
-
justify-content: center;
|
2656 |
-
padding-right: 100px;
|
2657 |
-
}
|
2658 |
-
|
2659 |
-
.elementor-section-full_width .slider-layout11-main .rt-grid-hover-item .rt-holder .grid-hover-content {
|
2660 |
-
padding-right: 250px;
|
2661 |
-
}
|
2662 |
-
|
2663 |
-
.tpg-el-main-wrapper.slider-layout11-main .rt-holder .rt-detail .entry-title-wrapper .entry-title {
|
2664 |
-
font-size: 48px;
|
2665 |
-
font-weight: 600;
|
2666 |
-
line-height: 58px;
|
2667 |
-
}
|
2668 |
-
|
2669 |
-
.rt-tpg-container .slider-layout13 .rt-holder .tpg-el-image-wrap {
|
2670 |
-
height: 650px;
|
2671 |
-
background-color: #e4eaf1;
|
2672 |
-
}
|
2673 |
-
|
2674 |
-
.tpg-el-main-wrapper.slider-layout11-main .rt-grid-hover-item .rt-holder .rt-el-content-wrapper,
|
2675 |
-
.tpg-el-main-wrapper.slider-layout12-main .rt-grid-hover-item .rt-holder .rt-el-content-wrapper {
|
2676 |
-
height: 720px;
|
2677 |
-
}
|
2678 |
-
|
2679 |
-
.slider-layout11-main .slider-thumb-main-wrapper {
|
2680 |
-
z-index: 10;
|
2681 |
-
background: rgba(0, 0, 0, 0.5);
|
2682 |
-
pointer-events: none;
|
2683 |
-
}
|
2684 |
-
|
2685 |
-
.tpg-el-main-wrapper .slider-layout11 .slider-thumb-main-wrapper .swiper-thumb-wrapper {
|
2686 |
-
position: relative;
|
2687 |
-
height: 400px;
|
2688 |
-
padding: 0;
|
2689 |
-
overflow: hidden;
|
2690 |
-
pointer-events: all;
|
2691 |
-
padding-left: 30px;
|
2692 |
-
}
|
2693 |
-
|
2694 |
-
.tpg-el-main-wrapper .slider-layout11 .slider-thumb-main-wrapper .swiper-thumb-wrapper .swiper-thumb-pagination {
|
2695 |
-
height: 100%;
|
2696 |
-
position: absolute;
|
2697 |
-
left: 0;
|
2698 |
-
top: 0;
|
2699 |
-
right: auto;
|
2700 |
-
}
|
2701 |
-
|
2702 |
-
.tpg-el-main-wrapper .swiper-thumb-pagination .swiper-pagination-progressbar-fill {
|
2703 |
-
background: #2962ff;
|
2704 |
-
}
|
2705 |
-
|
2706 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .tpg-post-holder {
|
2707 |
-
height: 120px;
|
2708 |
-
}
|
2709 |
-
|
2710 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .p-thumbnail {
|
2711 |
-
flex: 0 0 100px;
|
2712 |
-
max-width: 100px;
|
2713 |
-
height: 100px;
|
2714 |
-
border-radius: 50%;
|
2715 |
-
margin-left: 15px;
|
2716 |
-
overflow: hidden;
|
2717 |
-
transition: 0.4s ease-in-out;
|
2718 |
-
}
|
2719 |
-
|
2720 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .p-thumbnail img {
|
2721 |
-
border-radius: 50%;
|
2722 |
-
background: rgba(255, 255, 255, .1);
|
2723 |
-
padding: 10px;
|
2724 |
-
transition: 0.5s ease-in-out;
|
2725 |
-
height: 100% !important;
|
2726 |
-
}
|
2727 |
-
|
2728 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .swiper-slide:hover .p-thumbnail img,
|
2729 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .swiper-slide-thumb-active .p-thumbnail img {
|
2730 |
-
background: rgba(255, 255, 255, .4);
|
2731 |
-
}
|
2732 |
-
|
2733 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .p-content {
|
2734 |
-
flex: 0 0 calc(100% - 150px);
|
2735 |
-
max-width: calc(100% - 150px);
|
2736 |
-
display: flex;
|
2737 |
-
flex-direction: column;
|
2738 |
-
justify-content: center;
|
2739 |
-
pointer-events: all;
|
2740 |
-
}
|
2741 |
-
|
2742 |
-
|
2743 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .p-content .thumb-title {
|
2744 |
-
font-size: 16px;
|
2745 |
-
font-weight: 600;
|
2746 |
-
line-height: 1.3;
|
2747 |
-
white-space: nowrap;
|
2748 |
-
text-overflow: ellipsis;
|
2749 |
-
overflow: hidden;
|
2750 |
-
margin: 0 0 5px 0;
|
2751 |
-
}
|
2752 |
-
|
2753 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .p-content .thumb-date {
|
2754 |
-
font-size: 12px;
|
2755 |
-
font-weight: 500;
|
2756 |
-
text-transform: uppercase;
|
2757 |
-
letter-spacing: 0.05rem;
|
2758 |
-
opacity: .9;
|
2759 |
-
}
|
2760 |
-
|
2761 |
-
@media (min-width: 768px) {
|
2762 |
-
.tpg-el-main-wrapper .slider-layout11 .slider-thumb-main-wrapper {
|
2763 |
-
position: absolute;
|
2764 |
-
top: 0;
|
2765 |
-
left: 0;
|
2766 |
-
width: 33%;
|
2767 |
-
padding: 0 50px 0 80px;
|
2768 |
-
height: 100%;
|
2769 |
-
display: flex;
|
2770 |
-
justify-content: center;
|
2771 |
-
align-items: center;
|
2772 |
-
min-width: 450px;
|
2773 |
-
}
|
2774 |
-
|
2775 |
-
.tpg-el-main-wrapper.slider-layout11-main .rt-grid-hover-item .rt-holder .grid-hover-content {
|
2776 |
-
padding-left: calc(120px + min(450px, 33%))
|
2777 |
-
}
|
2778 |
-
|
2779 |
-
}
|
2780 |
-
|
2781 |
-
@media (max-width: 1600px) {
|
2782 |
-
.tpg-el-main-wrapper.slider-layout11-main .rt-grid-hover-item .rt-holder .grid-hover-content {
|
2783 |
-
padding-right: 70px;
|
2784 |
-
}
|
2785 |
-
|
2786 |
-
.elementor-section-full_width .slider-layout11-main .rt-grid-hover-item .rt-holder .grid-hover-content {
|
2787 |
-
padding-right: 200px;
|
2788 |
-
}
|
2789 |
-
}
|
2790 |
-
|
2791 |
-
@media (max-width: 1350px) {
|
2792 |
-
.tpg-el-main-wrapper.slider-layout11-main .rt-grid-hover-item .rt-holder .grid-hover-content {
|
2793 |
-
padding-right: 50px;
|
2794 |
-
}
|
2795 |
-
|
2796 |
-
.elementor-section-full_width .slider-layout11-main .rt-grid-hover-item .rt-holder .grid-hover-content {
|
2797 |
-
padding-right: 100px;
|
2798 |
-
}
|
2799 |
-
|
2800 |
-
.tpg-el-main-wrapper.slider-layout11-main .rt-holder .rt-detail .entry-title-wrapper .entry-title {
|
2801 |
-
font-size: 40px;
|
2802 |
-
line-height: 50px;
|
2803 |
-
}
|
2804 |
-
}
|
2805 |
-
|
2806 |
-
@media (min-width: 1200px) {
|
2807 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .post-thumbnail-wrap::before {
|
2808 |
-
content: "";
|
2809 |
-
position: absolute;
|
2810 |
-
top: 0;
|
2811 |
-
right: 0;
|
2812 |
-
height: 100%;
|
2813 |
-
background: #ffffff;
|
2814 |
-
border-radius: 0 46px 46px 0;
|
2815 |
-
opacity: 0;
|
2816 |
-
width: 0;
|
2817 |
-
transition: .5s ease-in-out;
|
2818 |
-
}
|
2819 |
-
|
2820 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .swiper-slide-thumb-active .post-thumbnail-wrap::before {
|
2821 |
-
width: 100%;
|
2822 |
-
opacity: .1;
|
2823 |
-
}
|
2824 |
-
}
|
2825 |
-
|
2826 |
-
@media (max-width: 1199px) {
|
2827 |
-
.tpg-el-main-wrapper.slider-layout11-main .slider-content-inner {
|
2828 |
-
max-width: 550px;
|
2829 |
-
}
|
2830 |
-
|
2831 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .p-content {
|
2832 |
-
display: none;
|
2833 |
-
}
|
2834 |
-
|
2835 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .p-thumbnail {
|
2836 |
-
flex: 0 0 80px;
|
2837 |
-
max-width: 80px;
|
2838 |
-
height: 80px;
|
2839 |
-
margin-left: 0;
|
2840 |
-
}
|
2841 |
-
|
2842 |
-
.tpg-el-main-wrapper .slider-layout11 .slider-thumb-main-wrapper .swiper-thumb-wrapper .swiper-thumb-pagination {
|
2843 |
-
display: none;
|
2844 |
-
}
|
2845 |
-
|
2846 |
-
.rt-tpg-container .slider-layout13 .rt-holder .tpg-el-image-wrap {
|
2847 |
-
height: 400px;
|
2848 |
-
}
|
2849 |
-
|
2850 |
-
.tpg-el-main-wrapper.slider-layout11-main .rt-grid-hover-item .rt-holder .rt-el-content-wrapper,
|
2851 |
-
.tpg-el-main-wrapper.slider-layout12-main .rt-grid-hover-item .rt-holder .rt-el-content-wrapper {
|
2852 |
-
height: 500px;
|
2853 |
-
}
|
2854 |
-
|
2855 |
-
.tpg-el-main-wrapper .slider-layout11 .slider-thumb-main-wrapper .swiper-thumb-wrapper {
|
2856 |
-
height: 300px;
|
2857 |
-
width: 100px;
|
2858 |
-
padding: 0 !important;
|
2859 |
-
}
|
2860 |
-
|
2861 |
-
|
2862 |
-
.tpg-el-main-wrapper.slider-layout11-main .rt-grid-hover-item .rt-holder .grid-hover-content {
|
2863 |
-
padding-right: 50px;
|
2864 |
-
padding-left: 130px;
|
2865 |
-
}
|
2866 |
-
|
2867 |
-
.tpg-el-main-wrapper.slider-layout11-main .rt-holder .rt-detail .entry-title-wrapper .entry-title {
|
2868 |
-
font-size: 36px;
|
2869 |
-
line-height: 46px;
|
2870 |
-
}
|
2871 |
-
|
2872 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .p-thumbnail {
|
2873 |
-
flex: 0 0 70px;
|
2874 |
-
max-width: 70px;
|
2875 |
-
height: 70px;
|
2876 |
-
}
|
2877 |
-
|
2878 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .p-thumbnail img {
|
2879 |
-
padding: 7px;
|
2880 |
-
}
|
2881 |
-
|
2882 |
-
|
2883 |
-
}
|
2884 |
-
|
2885 |
-
@media (min-width: 768px) and (max-width: 1199px) {
|
2886 |
-
.tpg-el-main-wrapper .slider-layout11 .slider-thumb-main-wrapper {
|
2887 |
-
min-width: 120px;
|
2888 |
-
padding: 0;
|
2889 |
-
width: 120px;
|
2890 |
-
}
|
2891 |
-
|
2892 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .post-thumbnail-wrap {
|
2893 |
-
justify-content: center;
|
2894 |
-
}
|
2895 |
-
}
|
2896 |
-
|
2897 |
-
@media (max-width: 767px) {
|
2898 |
-
.tpg-el-main-wrapper .slider-layout11 .slider-thumb-main-wrapper .swiper-thumb-wrapper {
|
2899 |
-
height: 100px;
|
2900 |
-
width: 300px;
|
2901 |
-
margin: auto;
|
2902 |
-
}
|
2903 |
-
|
2904 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .swiper-slide {
|
2905 |
-
height: 70px;
|
2906 |
-
text-align: center;
|
2907 |
-
justify-content: center;
|
2908 |
-
display: flex;
|
2909 |
-
}
|
2910 |
-
|
2911 |
-
.tpg-el-main-wrapper.slider-layout11-main .swiper-thumb-wrapper .swiper-wrapper {
|
2912 |
-
align-items: center;
|
2913 |
-
}
|
2914 |
-
|
2915 |
-
.tpg-el-main-wrapper .slider-layout11 .slider-thumb-main-wrapper {
|
2916 |
-
position: absolute;
|
2917 |
-
width: 100%;
|
2918 |
-
bottom: 0;
|
2919 |
-
}
|
2920 |
-
|
2921 |
-
.tpg-el-main-wrapper.slider-layout11-main .rt-grid-hover-item .rt-holder .grid-hover-content {
|
2922 |
-
padding: 20px 50px 120px;
|
2923 |
-
}
|
2924 |
-
|
2925 |
-
.tpg-el-main-wrapper.slider-layout11-main .rt-holder .rt-detail .entry-title-wrapper .entry-title {
|
2926 |
-
font-size: 26px;
|
2927 |
-
line-height: 36px;
|
2928 |
-
}
|
2929 |
-
}
|
2930 |
-
|
2931 |
-
|
2932 |
-
/*Slider Layout 12*/
|
2933 |
-
|
2934 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper {
|
2935 |
-
position: absolute;
|
2936 |
-
bottom: 0;
|
2937 |
-
right: 0;
|
2938 |
-
left: 0;
|
2939 |
-
width: 100%;
|
2940 |
-
padding: 30px 30px 60px;
|
2941 |
-
z-index: 10;
|
2942 |
-
}
|
2943 |
-
|
2944 |
-
|
2945 |
-
.elementor-section-boxed .tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper {
|
2946 |
-
padding: 30px 60px 60px;
|
2947 |
-
}
|
2948 |
-
|
2949 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper {
|
2950 |
-
overflow: hidden;
|
2951 |
-
position: relative;
|
2952 |
-
max-width: 1320px;
|
2953 |
-
width: 100%;
|
2954 |
-
padding-top: 50px;
|
2955 |
-
margin-right: auto;
|
2956 |
-
margin-left: auto;
|
2957 |
-
}
|
2958 |
-
|
2959 |
-
/*.tpg-el-main-wrapper .slider-layout12 .swiper-pagination-progressbar {*/
|
2960 |
-
/* height: 2px;*/
|
2961 |
-
/*}*/
|
2962 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper .post-thumbnail-wrap .p-thumbnail::before,
|
2963 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper::before {
|
2964 |
-
content: "";
|
2965 |
-
width: 100%;
|
2966 |
-
height: 2px;
|
2967 |
-
background-color: #fff;
|
2968 |
-
opacity: 0.22;
|
2969 |
-
position: absolute;
|
2970 |
-
top: 0;
|
2971 |
-
right: 0;
|
2972 |
-
left: 0;
|
2973 |
-
z-index: -1;
|
2974 |
-
transition: 0.4s;
|
2975 |
-
}
|
2976 |
-
|
2977 |
-
|
2978 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper .post-thumbnail-wrap .p-thumbnail::before {
|
2979 |
-
opacity: 0;
|
2980 |
-
top: -50px;
|
2981 |
-
background: #2962ff;
|
2982 |
-
}
|
2983 |
-
|
2984 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper .swiper-slide:hover .post-thumbnail-wrap .p-thumbnail::before,
|
2985 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper .swiper-slide.swiper-slide-thumb-active .post-thumbnail-wrap .p-thumbnail::before {
|
2986 |
-
opacity: 1;
|
2987 |
-
}
|
2988 |
-
|
2989 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper .post-thumbnail-wrap .p-thumbnail {
|
2990 |
-
position: relative;
|
2991 |
-
}
|
2992 |
-
|
2993 |
-
|
2994 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper .post-thumbnail-wrap .p-thumbnail {
|
2995 |
-
flex: 0 0 130px;
|
2996 |
-
height: 100px;
|
2997 |
-
margin-left: 16px;
|
2998 |
-
background: rgba(255, 255, 255, .1);
|
2999 |
-
/*transition: 0.4s;*/
|
3000 |
-
}
|
3001 |
-
|
3002 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper .post-thumbnail-wrap .p-thumbnail img {
|
3003 |
-
filter: grayscale(100);
|
3004 |
-
transition: 0.4s;
|
3005 |
-
}
|
3006 |
-
|
3007 |
-
.tpg-el-main-wrapper .slider-layout12 .swiper-thumb-wrapper .swiper-wrapper .swiper-slide.swiper-slide-active .post-thumbnail-wrap .p-thumbnail img,
|
3008 |
-
.tpg-el-main-wrapper .slider-layout12 .swiper-thumb-wrapper .swiper-wrapper .swiper-slide:hover .post-thumbnail-wrap .p-thumbnail img {
|
3009 |
-
padding: 10px;
|
3010 |
-
filter: grayscale(0);
|
3011 |
-
}
|
3012 |
-
|
3013 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper .post-thumbnail-wrap .p-thumbnail img {
|
3014 |
-
width: 100% !important;
|
3015 |
-
height: 100% !important;
|
3016 |
-
object-fit: cover;
|
3017 |
-
}
|
3018 |
-
|
3019 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper .post-thumbnail-wrap .thumb-title {
|
3020 |
-
font-size: 16px;
|
3021 |
-
color: #fff;
|
3022 |
-
font-weight: 600;
|
3023 |
-
overflow: hidden;
|
3024 |
-
text-overflow: ellipsis;
|
3025 |
-
display: -webkit-box;
|
3026 |
-
-webkit-line-clamp: 2;
|
3027 |
-
-webkit-box-orient: vertical;
|
3028 |
-
line-height: 26px;
|
3029 |
-
margin-bottom: 0;
|
3030 |
-
}
|
3031 |
-
|
3032 |
-
.rt-tpg-container .slider-layout12 .rt-grid-hover-item .rt-holder .grid-hover-content {
|
3033 |
-
justify-content: center;
|
3034 |
-
align-items: center;
|
3035 |
-
text-align: center;
|
3036 |
-
padding-bottom: 210px;
|
3037 |
-
}
|
3038 |
-
|
3039 |
-
.rt-tpg-container .slider-layout12 .rt-grid-hover-item .rt-holder .grid-hover-content .slider-content-inner {
|
3040 |
-
max-width: 650px;
|
3041 |
-
width: 100%;
|
3042 |
-
}
|
3043 |
-
|
3044 |
-
.tpg-wrapper-align-left .rt-tpg-container .slider-layout12 .rt-grid-hover-item .rt-holder .grid-hover-content .slider-content-inner,
|
3045 |
-
.tpg-wrapper-align-right .rt-tpg-container .slider-layout12 .rt-grid-hover-item .rt-holder .grid-hover-content .slider-content-inner {
|
3046 |
-
max-width: 100%;
|
3047 |
-
padding-right: 30px;
|
3048 |
-
padding-left: 30px;
|
3049 |
-
}
|
3050 |
-
|
3051 |
-
.rt-tpg-container .slider-layout12 .rt-detail .entry-title-wrapper .entry-title {
|
3052 |
-
font-size: 2.125rem;
|
3053 |
-
font-weight: 600;
|
3054 |
-
line-height: 1.3;
|
3055 |
-
|
3056 |
-
}
|
3057 |
-
|
3058 |
-
.tpg-el-main-wrapper .slider-layout12 .swiper-thumb-wrapper .swiper-wrapper .p-content * {
|
3059 |
-
font-size: 0.75rem;
|
3060 |
-
text-transform: uppercase;
|
3061 |
-
letter-spacing: 0.05rem;
|
3062 |
-
font-weight: 500;
|
3063 |
-
}
|
3064 |
-
|
3065 |
-
.tpg-el-main-wrapper .slider-layout12 .swiper-thumb-wrapper .swiper-wrapper .p-content .post-taxonomy {
|
3066 |
-
display: flex;
|
3067 |
-
flex-wrap: wrap;
|
3068 |
-
line-height: 1.5;
|
3069 |
-
}
|
3070 |
-
|
3071 |
-
.rt-tpg-container .slider-layout12 .rt-holder .grid-hover-content:before {
|
3072 |
-
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 59%, rgba(0, 0, 0, 0.8) 100%);
|
3073 |
-
}
|
3074 |
-
|
3075 |
-
.rt-tpg-container .grid_hover-layout5.slider-layout {
|
3076 |
-
margin: 0 !important;
|
3077 |
-
}
|
3078 |
-
|
3079 |
-
@media (max-width: 767px) {
|
3080 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper {
|
3081 |
-
padding-top: 25px;
|
3082 |
-
}
|
3083 |
-
|
3084 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper {
|
3085 |
-
padding: 30px;
|
3086 |
-
}
|
3087 |
-
|
3088 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper .post-thumbnail-wrap .p-thumbnail::before {
|
3089 |
-
top: -25px;
|
3090 |
-
}
|
3091 |
-
|
3092 |
-
.rt-tpg-container .slider-layout12 .rt-detail .entry-title-wrapper .entry-title {
|
3093 |
-
font-size: 26px;
|
3094 |
-
}
|
3095 |
-
|
3096 |
-
.rt-tpg-container .slider-layout12 .rt-grid-hover-item .rt-holder .grid-hover-content {
|
3097 |
-
padding-bottom: 150px;
|
3098 |
-
}
|
3099 |
-
}
|
3100 |
-
|
3101 |
-
|
3102 |
-
/*Slider Layout 13*/
|
3103 |
-
|
3104 |
-
.img_hover_animation_default .rt-tpg-container .grid_hover-layout4 .rt-holder:hover .rt-img-holder img:not(.avatar),
|
3105 |
-
.img_hover_animation_default .rt-tpg-container .grid_hover-layout5 .rt-holder:hover .rt-img-holder img:not(.avatar),
|
3106 |
-
.img_hover_animation_default .rt-tpg-container .slider-layout5 .rt-holder:hover .rt-img-holder img:not(.avatar),
|
3107 |
-
.img_hover_animation_default .rt-tpg-container .slider-layout7 .rt-holder:hover .rt-img-holder img:not(.avatar),
|
3108 |
-
.img_hover_animation_default .rt-tpg-container .slider-layout8 .rt-holder:hover .rt-img-holder img:not(.avatar),
|
3109 |
-
.img_hover_animation_default .rt-tpg-container .slider-layout9 .rt-holder:hover .rt-img-holder img:not(.avatar),
|
3110 |
-
.img_hover_animation_default .rt-tpg-container .slider-layout10 .rt-holder:hover .rt-img-holder img:not(.avatar),
|
3111 |
-
.img_hover_animation_default .rt-tpg-container .slider-layout11 .rt-holder:hover .rt-img-holder img:not(.avatar),
|
3112 |
-
.img_hover_animation_default .rt-tpg-container .slider-layout12 .rt-holder:hover .rt-img-holder img:not(.avatar),
|
3113 |
-
.img_hover_animation_default .rt-tpg-container .slider-layout13 .rt-holder:hover .rt-img-holder img:not(.avatar) {
|
3114 |
-
transform: none;
|
3115 |
-
}
|
3116 |
-
|
3117 |
-
|
3118 |
-
.rt-tpg-container .slide_to_left .rt-holder .rt-img-holder img:not(.avatar),
|
3119 |
-
.rt-tpg-container .slide_to_right .rt-holder .rt-img-holder img:not(.avatar) {
|
3120 |
-
-webkit-transform: scale(1.2);
|
3121 |
-
-moz-transform: scale(1.2);
|
3122 |
-
-ms-transform: scale(1.2);
|
3123 |
-
-o-transform: scale(1.2);
|
3124 |
-
transform: scale(1.2);
|
3125 |
-
}
|
3126 |
-
|
3127 |
-
.rt-tpg-container .slide_to_left .rt-holder .rt-img-holder img:not(.avatar) {
|
3128 |
-
margin-right: 35px;
|
3129 |
-
}
|
3130 |
-
|
3131 |
-
.rt-tpg-container .slide_to_right .rt-holder .rt-img-holder img:not(.avatar) {
|
3132 |
-
margin-right: -35px;
|
3133 |
-
}
|
3134 |
-
|
3135 |
-
.rt-tpg-container .slide_to_left .rt-holder:hover .rt-img-holder img:not(.avatar),
|
3136 |
-
.rt-tpg-container .slide_to_right .rt-holder:hover .rt-img-holder img:not(.avatar) {
|
3137 |
-
margin-right: 0;
|
3138 |
-
}
|
3139 |
-
|
3140 |
-
|
3141 |
-
body .rt-tpg-container .slider-layout13 .rt-holder .rt-detail,
|
3142 |
-
body .tpg-el-main-wrapper .slider-layout13 .rt-slider-item {
|
3143 |
-
padding-right: 0 !important;
|
3144 |
-
padding-left: 0 !important;
|
3145 |
-
}
|
3146 |
-
|
3147 |
-
body .rt-tpg-container .slider-layout13 .rt-holder .rt-detail {
|
3148 |
-
margin-bottom: 6px;
|
3149 |
-
}
|
3150 |
-
|
3151 |
-
.tpg-el-main-wrapper .slider-layout13 .rt-swiper-holder {
|
3152 |
-
margin-right: 0 !important;
|
3153 |
-
margin-left: 0 !important;
|
3154 |
-
}
|
3155 |
-
|
3156 |
-
.rt-tpg-container .slider-layout13 .rt-holder .tpg-el-image-wrap {
|
3157 |
-
margin: 0;
|
3158 |
-
}
|
3159 |
-
|
3160 |
-
.rt-tpg-container .slider-layout13 .rt-holder .post-content {
|
3161 |
-
text-align: center;
|
3162 |
-
position: relative;
|
3163 |
-
z-index: 2;
|
3164 |
-
padding: 30px 20px 20px;
|
3165 |
-
background-color: #ffffff;
|
3166 |
-
margin: -72px 10% 0;
|
3167 |
-
border-radius: 4px;
|
3168 |
-
box-shadow: 0 0 10px rgba(0,0,0,.1);
|
3169 |
-
}
|
3170 |
-
|
3171 |
-
.tpg-el-main-wrapper .slider-layout13 .post-meta-tags {
|
3172 |
-
font-size: 12px;
|
3173 |
-
font-weight: 500;
|
3174 |
-
text-transform: uppercase;
|
3175 |
-
letter-spacing: 0.8px;
|
3176 |
-
color: #A5A6AA;
|
3177 |
-
}
|
3178 |
-
|
3179 |
-
.tpg-el-main-wrapper .slider-layout13 .post-meta-tags a {
|
3180 |
-
color: #88898c;
|
3181 |
-
}
|
3182 |
-
|
3183 |
-
.tpg-el-main-wrapper .slider-layout13 .post-meta-tags a:hover {
|
3184 |
-
color: var(--tpg-primary-color);
|
3185 |
-
}
|
3186 |
-
|
3187 |
-
.tpg-el-main-wrapper .slider-layout13 .post-meta-tags.meta-default > span {
|
3188 |
-
position: relative;
|
3189 |
-
margin: 0;
|
3190 |
-
}
|
3191 |
-
|
3192 |
-
.tpg-el-main-wrapper .slider-layout13 .post-meta-tags.meta-default > span:last-child:after {
|
3193 |
-
content: none;
|
3194 |
-
}
|
3195 |
-
|
3196 |
-
.tpg-el-main-wrapper .slider-layout13 .post-meta-tags.meta-default > span:after {
|
3197 |
-
content: " . ";
|
3198 |
-
margin-right: 6px;
|
3199 |
-
}
|
3200 |
-
|
3201 |
-
.slider-arrow-position-default .slider-layout13 .swiper-navigation .slider-btn {
|
3202 |
-
font-size: 20px;
|
3203 |
-
color: var(--tpg-primary-color);
|
3204 |
-
background-color: #fff;
|
3205 |
-
width: 52px;
|
3206 |
-
height: 52px;
|
3207 |
-
border-radius: 50%;
|
3208 |
-
opacity: 0;
|
3209 |
-
}
|
3210 |
-
|
3211 |
-
.slider-arrow-position-default .slider-layout13 .swiper-navigation .slider-btn:hover {
|
3212 |
-
background: var(--tpg-primary-color);
|
3213 |
-
color: #ffffff;
|
3214 |
-
}
|
3215 |
-
|
3216 |
-
.slider-arrow-position-default .slider-layout13 .swiper-navigation .slider-btn.swiper-button-prev {
|
3217 |
-
right: 60px;
|
3218 |
-
}
|
3219 |
-
|
3220 |
-
.slider-arrow-position-default .slider-layout13 .swiper-navigation .slider-btn.swiper-button-next {
|
3221 |
-
left: 60px;
|
3222 |
-
}
|
3223 |
-
|
3224 |
-
.slider-arrow-position-default .slider-layout13:hover .swiper-navigation .slider-btn.swiper-button-prev {
|
3225 |
-
right: 40px;
|
3226 |
-
opacity: 1;
|
3227 |
-
}
|
3228 |
-
|
3229 |
-
.slider-arrow-position-default .slider-layout13:hover .swiper-navigation .slider-btn.swiper-button-next {
|
3230 |
-
left: 40px;
|
3231 |
-
opacity: 1;
|
3232 |
-
}
|
3233 |
-
|
3234 |
-
.slider-arrow-position-show-hover .slider-layout13 .swiper-navigation .slider-btn,
|
3235 |
-
.slider-arrow-position-default .slider-layout13 .swiper-navigation .slider-btn {
|
3236 |
-
top: calc(50% - 62px);
|
3237 |
-
}
|
3238 |
-
|
3239 |
-
.rt-tpg-container .slider-layout13 .entry-title-wrapper .entry-title {
|
3240 |
-
font-size: 28px;
|
3241 |
-
}
|
3242 |
-
|
3243 |
-
|
3244 |
-
/*Astara Theme Css*/
|
3245 |
-
.elementor-template-full-width .site-content .ast-container {
|
3246 |
-
max-width: 100%;
|
3247 |
-
width: 100%;
|
3248 |
-
padding: 0;
|
3249 |
-
}
|
3250 |
-
|
3251 |
-
/*ACF Style*/
|
3252 |
-
|
3253 |
-
.tpg-el-main-wrapper .tgp-cf-field-label {
|
3254 |
-
float: none;
|
3255 |
-
display: inline-block;
|
3256 |
-
}
|
3257 |
-
|
3258 |
-
.tpg-el-main-wrapper .tpg-cf-fields {
|
3259 |
-
display: block;
|
3260 |
-
}
|
3261 |
-
|
3262 |
-
.tpg-el-main-wrapper .tgp-cf-field-value {
|
3263 |
-
display: inline;
|
3264 |
-
}
|
3265 |
-
|
3266 |
-
.tpg-el-main-wrapper .tpg-cf-group-title {
|
3267 |
-
color: inherit;
|
3268 |
-
}
|
3269 |
-
|
3270 |
-
.tpg-acf-align-left .rt-tpg-container .acf-custom-field-wrap {
|
3271 |
-
text-align: right;
|
3272 |
-
}
|
3273 |
-
|
3274 |
-
.grid-layout6 .acf-custom-field-wrap,
|
3275 |
-
.list-layout4 .acf-custom-field-wrap,
|
3276 |
-
.tpg-acf-align-center .rt-tpg-container .acf-custom-field-wrap {
|
3277 |
-
text-align: center;
|
3278 |
-
}
|
3279 |
-
|
3280 |
-
.tpg-acf-align-right .rt-tpg-container .acf-custom-field-wrap {
|
3281 |
-
text-align: left;
|
3282 |
-
}
|
3283 |
-
|
3284 |
-
/*End ACF Style*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/css/tpg-elementor.css
DELETED
@@ -1,3284 +0,0 @@
|
|
1 |
-
/************************* The Post Grid **************************/
|
2 |
-
/*Elementor CSS */
|
3 |
-
|
4 |
-
.tpg-even.grid-behaviour {
|
5 |
-
align-items: flex-start;
|
6 |
-
}
|
7 |
-
|
8 |
-
.grid-layout6 .tpg-even.grid-behaviour {
|
9 |
-
align-items: inherit;
|
10 |
-
}
|
11 |
-
|
12 |
-
.tpg-full-height,
|
13 |
-
.grid-layout2.tpg-even {
|
14 |
-
align-items: inherit;
|
15 |
-
}
|
16 |
-
|
17 |
-
.tpg-el-main-wrapper .tpg-post-holder {
|
18 |
-
height: 100%;
|
19 |
-
}
|
20 |
-
|
21 |
-
.grid_hover-layout9-main .tpg-even .rt-holder,
|
22 |
-
.grid_hover-layout9-2-main .tpg-even .rt-holder {
|
23 |
-
display: block;
|
24 |
-
}
|
25 |
-
|
26 |
-
.rt-el-post-meta span.author {
|
27 |
-
margin-bottom: 2px;
|
28 |
-
}
|
29 |
-
|
30 |
-
.rt-tpg-container .rt-detail .tpg-excerpt {
|
31 |
-
margin-top: -5px;
|
32 |
-
}
|
33 |
-
|
34 |
-
.tpg-el-main-wrapper .slider_layout_wrapper .tpg-post-holder {
|
35 |
-
margin-top: 1px;
|
36 |
-
}
|
37 |
-
|
38 |
-
.tpg-el-main-wrapper .slider_layout_wrapper .tpg-post-holder,
|
39 |
-
.tpg-el-main-wrapper .grid-layout5 .tpg-post-holder,
|
40 |
-
.tpg-el-main-wrapper .grid-layout6 .tpg-post-holder {
|
41 |
-
height: auto;
|
42 |
-
}
|
43 |
-
|
44 |
-
.rt-tpg-container .rt-el-content-wrapper {
|
45 |
-
transition: background-color 0.4s ease-in-out;
|
46 |
-
}
|
47 |
-
|
48 |
-
/*Only Transition*/
|
49 |
-
|
50 |
-
.tpg-separate-category .categories-links,
|
51 |
-
.tpg-separate-category .categories-links i,
|
52 |
-
.rt-tpg-social-share a i,
|
53 |
-
.rt-tpg-container .tpg-post-holder .read-more a,
|
54 |
-
.tpg-el-main-wrapper .tpg-el-image-wrap img,
|
55 |
-
.tpg-el-main-wrapper .post-meta-tags span,
|
56 |
-
.tpg-el-main-wrapper .post-meta-tags a,
|
57 |
-
.tpg-el-main-wrapper .rt-holder:hover .post-meta-tags i,
|
58 |
-
.tpg-el-main-wrapper .post-meta-tags img,
|
59 |
-
.tpg-el-main-wrapper .tpg-el-excerpt,
|
60 |
-
.tpg-el-main-wrapper .tpg-el-excerpt *,
|
61 |
-
.tpg-el-main-wrapper .tpg-el-image-wrap .overlay,
|
62 |
-
.tpg-el-main-wrapper .tpg-post-holder {
|
63 |
-
transition: 0.4s ease-in-out;
|
64 |
-
}
|
65 |
-
|
66 |
-
.tpg-el-main-wrapper .rt-content-loader [class*='rt-col'] {
|
67 |
-
padding-bottom: 30px;
|
68 |
-
margin-top: 0;
|
69 |
-
}
|
70 |
-
|
71 |
-
.tpg-el-main-wrapper .entry-title a {
|
72 |
-
color: inherit;
|
73 |
-
}
|
74 |
-
|
75 |
-
.tpg-el-main-wrapper .entry-title a:hover {
|
76 |
-
color: var(--tpg-primary-color);
|
77 |
-
}
|
78 |
-
|
79 |
-
/*Section title style */
|
80 |
-
|
81 |
-
.tpg-widget-heading-wrapper .tpg-widget-heading a {
|
82 |
-
color: inherit;
|
83 |
-
}
|
84 |
-
|
85 |
-
.section-title-align-right .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-left,
|
86 |
-
.section-title-align-center .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-left {
|
87 |
-
display: block;
|
88 |
-
margin-left: 0;
|
89 |
-
margin-right: 15px;
|
90 |
-
}
|
91 |
-
|
92 |
-
.section-title-align-center .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading::before {
|
93 |
-
display: none;
|
94 |
-
}
|
95 |
-
|
96 |
-
.section-title-align-center .tpg-widget-heading-wrapper .tpg-widget-heading {
|
97 |
-
margin-right: 0 !important;
|
98 |
-
}
|
99 |
-
|
100 |
-
.section-title-align-right .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-right {
|
101 |
-
display: none;
|
102 |
-
}
|
103 |
-
|
104 |
-
.section-title-align-right .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading {
|
105 |
-
padding-left: 15px;
|
106 |
-
padding-right: 0;
|
107 |
-
}
|
108 |
-
|
109 |
-
.section-title-align-right .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading::before {
|
110 |
-
right: auto;
|
111 |
-
left: 0;
|
112 |
-
}
|
113 |
-
|
114 |
-
.section-title-align-left .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading::before {
|
115 |
-
display: none;
|
116 |
-
}
|
117 |
-
|
118 |
-
.section-title-align-left .tpg-widget-heading-wrapper.heading-default,
|
119 |
-
.section-title-align-left .tpg-widget-heading-wrapper.heading-style2,
|
120 |
-
.section-title-align-left .tpg-widget-heading-wrapper.heading-style3 {
|
121 |
-
justify-content: flex-start;
|
122 |
-
}
|
123 |
-
|
124 |
-
.section-title-align-center .tpg-widget-heading-wrapper.heading-default,
|
125 |
-
.section-title-align-center .tpg-widget-heading-wrapper.heading-style2,
|
126 |
-
.section-title-align-center .tpg-widget-heading-wrapper.heading-style3 {
|
127 |
-
justify-content: center;
|
128 |
-
}
|
129 |
-
|
130 |
-
.section-title-align-right .tpg-widget-heading-wrapper.heading-default,
|
131 |
-
.section-title-align-right .tpg-widget-heading-wrapper.heading-style2,
|
132 |
-
.section-title-align-right .tpg-widget-heading-wrapper.heading-style3 {
|
133 |
-
justify-content: flex-end;
|
134 |
-
}
|
135 |
-
|
136 |
-
.section-title-align-right .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading::after {
|
137 |
-
display: none;
|
138 |
-
}
|
139 |
-
|
140 |
-
|
141 |
-
/*Post title global style */
|
142 |
-
.title-one-line .entry-title,
|
143 |
-
.title-two-line .entry-title,
|
144 |
-
.title-three-line .entry-title {
|
145 |
-
overflow: hidden;
|
146 |
-
text-overflow: ellipsis;
|
147 |
-
display: -webkit-box;
|
148 |
-
-webkit-line-clamp: 1;
|
149 |
-
-webkit-box-orient: vertical;
|
150 |
-
}
|
151 |
-
|
152 |
-
.title-one-line .entry-title {
|
153 |
-
-webkit-line-clamp: 1;
|
154 |
-
}
|
155 |
-
|
156 |
-
.title-two-line .entry-title {
|
157 |
-
-webkit-line-clamp: 2;
|
158 |
-
}
|
159 |
-
|
160 |
-
.title-three-line .entry-title {
|
161 |
-
-webkit-line-clamp: 3;
|
162 |
-
}
|
163 |
-
|
164 |
-
.rt-tpg-container .rt-el-post-meta {
|
165 |
-
margin-bottom: 13px;
|
166 |
-
}
|
167 |
-
|
168 |
-
.rt-tpg-container .rt-el-post-meta i {
|
169 |
-
margin-right: 5px;
|
170 |
-
}
|
171 |
-
|
172 |
-
.rt-tpg-container .offset-right .rt-el-post-meta {
|
173 |
-
margin-top: -6px;
|
174 |
-
}
|
175 |
-
|
176 |
-
/*Post Image Style */
|
177 |
-
.tpg-el-main-wrapper .tpg-el-image-wrap img {
|
178 |
-
height: 100%;
|
179 |
-
object-fit: cover;
|
180 |
-
}
|
181 |
-
|
182 |
-
@media (max-width: 767px) {
|
183 |
-
.tpg-el-main-wrapper .tpg-el-image-wrap img {
|
184 |
-
width: 100% !important;
|
185 |
-
}
|
186 |
-
}
|
187 |
-
|
188 |
-
.tpg-el-main-wrapper .tpg-el-image-wrap a.tpg-post-link {
|
189 |
-
width: 100%;
|
190 |
-
height: 100%;
|
191 |
-
}
|
192 |
-
|
193 |
-
/*.tpg-el-main-wrapper.slider-layout-main .tpg-el-image-wrap a.tpg-post-link {*/
|
194 |
-
/* pointer-events: none;*/
|
195 |
-
/*}*/
|
196 |
-
|
197 |
-
.tpg-el-main-wrapper .tpg-el-image-wrap .overlay {
|
198 |
-
position: absolute;
|
199 |
-
top: 0;
|
200 |
-
left: 0;
|
201 |
-
width: 100%;
|
202 |
-
height: 100%;
|
203 |
-
pointer-events: none;
|
204 |
-
}
|
205 |
-
|
206 |
-
.tpg-el-main-wrapper .rt-grid-hover-item .tpg-el-image-wrap .overlay.grid-hover-content {
|
207 |
-
display: none !important;
|
208 |
-
opacity: 0;
|
209 |
-
visibility: hidden;
|
210 |
-
}
|
211 |
-
|
212 |
-
.tpg-el-main-wrapper .tpg-post-holder .tpg-el-image-wrap .overlay.show-on-hover,
|
213 |
-
.tpg-el-main-wrapper .tpg-post-holder:hover .tpg-el-image-wrap .overlay.hide-on-hover {
|
214 |
-
opacity: 0 !important;
|
215 |
-
}
|
216 |
-
|
217 |
-
.tpg-el-main-wrapper .tpg-post-holder:hover .tpg-el-image-wrap .overlay.show-on-hover {
|
218 |
-
opacity: 1 !important;
|
219 |
-
}
|
220 |
-
|
221 |
-
.tpg-el-main-wrapper .post-meta-tags span {
|
222 |
-
display: inline-block;
|
223 |
-
padding-right: 8px;
|
224 |
-
}
|
225 |
-
|
226 |
-
.tpg-el-main-wrapper .post-meta-tags span img + span.author-prefix {
|
227 |
-
padding-left: 3px;
|
228 |
-
}
|
229 |
-
|
230 |
-
.tpg-el-main-wrapper .post-meta-tags span.author-prefix {
|
231 |
-
padding-right: 5px;
|
232 |
-
}
|
233 |
-
|
234 |
-
.tpg-el-main-wrapper .post-meta-tags span img {
|
235 |
-
display: inline-block;
|
236 |
-
border-radius: 50%;
|
237 |
-
margin-right: 5px;
|
238 |
-
width: auto !important;
|
239 |
-
max-width: 25px;
|
240 |
-
height: 25px !important;
|
241 |
-
margin-top: -2%;
|
242 |
-
}
|
243 |
-
|
244 |
-
.post-meta-tags span.separator:nth-last-of-type(1) {
|
245 |
-
display: none;
|
246 |
-
}
|
247 |
-
|
248 |
-
/*Read more icon*/
|
249 |
-
|
250 |
-
body .readmore-btn-only-text .rt-tpg-container .tpg-post-holder .read-more a {
|
251 |
-
border: none !important;
|
252 |
-
padding: 0 !important;
|
253 |
-
background: none !important;
|
254 |
-
}
|
255 |
-
|
256 |
-
.rt-tpg-container .tpg-post-holder .read-more a i {
|
257 |
-
transition: margin 0.4s ease-in-out;
|
258 |
-
}
|
259 |
-
|
260 |
-
.rt-tpg-container .tpg-post-holder .read-more a i.left-icon {
|
261 |
-
margin-right: 5px;
|
262 |
-
}
|
263 |
-
|
264 |
-
.rt-tpg-container .tpg-post-holder .read-more a i.right-icon {
|
265 |
-
margin-left: 5px;
|
266 |
-
}
|
267 |
-
|
268 |
-
/*Disable Border */
|
269 |
-
|
270 |
-
.tpg-el-box-border-disable .rt-tpg-container .rt-holder {
|
271 |
-
box-shadow: none !important;
|
272 |
-
border: none;
|
273 |
-
}
|
274 |
-
|
275 |
-
/*Frontend Filter Style */
|
276 |
-
|
277 |
-
.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap {
|
278 |
-
display: flex;
|
279 |
-
justify-content: space-between;
|
280 |
-
}
|
281 |
-
|
282 |
-
.tpg-filter-alignment-left .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap {
|
283 |
-
align-items: flex-start;
|
284 |
-
}
|
285 |
-
|
286 |
-
.tpg-filter-alignment-center .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap {
|
287 |
-
align-items: center;
|
288 |
-
}
|
289 |
-
|
290 |
-
.tpg-filter-alignment-right .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap {
|
291 |
-
align-items: flex-end;
|
292 |
-
}
|
293 |
-
|
294 |
-
.tpg-filter-h-alignment-left .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap {
|
295 |
-
justify-content: flex-start;
|
296 |
-
}
|
297 |
-
|
298 |
-
.tpg-filter-h-alignment-center .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap {
|
299 |
-
justify-content: center;
|
300 |
-
}
|
301 |
-
|
302 |
-
.tpg-filter-h-alignment-right .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap {
|
303 |
-
justify-content: flex-end;
|
304 |
-
}
|
305 |
-
|
306 |
-
.tpg-filter-h-alignment-space-between .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap {
|
307 |
-
justify-content: space-between;
|
308 |
-
}
|
309 |
-
|
310 |
-
.rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input {
|
311 |
-
min-width: 202px;
|
312 |
-
}
|
313 |
-
|
314 |
-
.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper {
|
315 |
-
margin-right: 15px;
|
316 |
-
}
|
317 |
-
|
318 |
-
@media (max-width: 1023px) {
|
319 |
-
|
320 |
-
.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper {
|
321 |
-
text-align: center;
|
322 |
-
}
|
323 |
-
|
324 |
-
.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-right-wrapper {
|
325 |
-
display: flex;
|
326 |
-
justify-content: center;
|
327 |
-
flex-wrap: wrap;
|
328 |
-
align-items: center;
|
329 |
-
}
|
330 |
-
|
331 |
-
.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-right-wrapper .rt-order-by-action {
|
332 |
-
order: -1;
|
333 |
-
}
|
334 |
-
}
|
335 |
-
|
336 |
-
@media (max-width: 991px) {
|
337 |
-
.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap {
|
338 |
-
flex-direction: column;
|
339 |
-
}
|
340 |
-
}
|
341 |
-
|
342 |
-
@media (max-width: 600px) {
|
343 |
-
.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper {
|
344 |
-
margin-right: 0;
|
345 |
-
}
|
346 |
-
|
347 |
-
.tpg-filter-type-dropdown .rt-filter-wrap .filter-left-wrapper {
|
348 |
-
display: flex;
|
349 |
-
justify-content: center;
|
350 |
-
}
|
351 |
-
|
352 |
-
.tpg-el-main-wrapper .rt-filter-item-wrap.rt-tax-filter.rt-filter-dropdown-wrap {
|
353 |
-
margin-bottom: 4px;
|
354 |
-
}
|
355 |
-
|
356 |
-
.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap {
|
357 |
-
flex-direction: column;
|
358 |
-
}
|
359 |
-
}
|
360 |
-
|
361 |
-
.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap {
|
362 |
-
min-height: 38px;
|
363 |
-
}
|
364 |
-
|
365 |
-
/*Post element ordering*/
|
366 |
-
|
367 |
-
.tpg-el-main-wrapper .rt-holder .rt-el-content-wrapper {
|
368 |
-
display: flex;
|
369 |
-
flex-direction: column;
|
370 |
-
}
|
371 |
-
|
372 |
-
.tpg-el-main-wrapper .rt-holder .rt-el-content-wrapper-flex {
|
373 |
-
display: flex;
|
374 |
-
flex-direction: row;
|
375 |
-
}
|
376 |
-
|
377 |
-
.title_position_above_image .tpg-el-main-wrapper .rt-holder .rt-el-content-wrapper .tpg-el-image-wrap {
|
378 |
-
margin: 0 -15px 15px;
|
379 |
-
}
|
380 |
-
|
381 |
-
.rt-tpg-container .rt-holder .rt-detail .entry-title-wrapper .entry-title {
|
382 |
-
margin-bottom: 0;
|
383 |
-
transition: 0.4s;
|
384 |
-
}
|
385 |
-
|
386 |
-
|
387 |
-
.rt-tpg-container .rt-holder .rt-detail .entry-title-wrapper .tpg-separate-category {
|
388 |
-
margin-bottom: 5px;
|
389 |
-
}
|
390 |
-
|
391 |
-
.tpg-el-main-wrapper .rt-holder .tpg-el-excerpt {
|
392 |
-
order: 5;
|
393 |
-
}
|
394 |
-
|
395 |
-
.tpg-el-main-wrapper .rt-holder .rt-tpg-social-share {
|
396 |
-
order: 10;
|
397 |
-
}
|
398 |
-
|
399 |
-
.tpg-el-main-wrapper .rt-tpg-social-share a {
|
400 |
-
margin-right: 10px;
|
401 |
-
}
|
402 |
-
|
403 |
-
.tpg-el-main-wrapper .rt-holder .post-footer {
|
404 |
-
order: 11;
|
405 |
-
margin-bottom: 15px;
|
406 |
-
}
|
407 |
-
|
408 |
-
|
409 |
-
/*Title Position */
|
410 |
-
.title_position_above_image .tpg-el-main-wrapper .rt-holder .entry-title-wrapper {
|
411 |
-
order: -5;
|
412 |
-
}
|
413 |
-
|
414 |
-
/*Title Above Image */
|
415 |
-
.title_position_below_image .tpg-el-main-wrapper .rt-holder .tpg-el-image-wrap {
|
416 |
-
order: -8;
|
417 |
-
}
|
418 |
-
|
419 |
-
.title_position_below_image .tpg-el-main-wrapper .rt-holder .entry-title-wrapper {
|
420 |
-
order: 2;
|
421 |
-
}
|
422 |
-
|
423 |
-
|
424 |
-
/*Meta Position */
|
425 |
-
.title_position_above_image.meta_position_above_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta {
|
426 |
-
order: -6;
|
427 |
-
}
|
428 |
-
|
429 |
-
.title_position_above_image.meta_position_below_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta {
|
430 |
-
order: -4;
|
431 |
-
}
|
432 |
-
|
433 |
-
.title_position_below_image.meta_position_above_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta {
|
434 |
-
order: 1;
|
435 |
-
}
|
436 |
-
|
437 |
-
.title_position_below_image.meta_position_above_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta {
|
438 |
-
order: 1;
|
439 |
-
}
|
440 |
-
|
441 |
-
.title_position_below_image.meta_position_below_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta {
|
442 |
-
order: 3;
|
443 |
-
}
|
444 |
-
|
445 |
-
.meta_position_below_excerpt .tpg-el-main-wrapper .rt-holder .rt-el-post-meta {
|
446 |
-
order: 6;
|
447 |
-
}
|
448 |
-
|
449 |
-
.meta_position_above_excerpt .tpg-el-main-wrapper .rt-holder .rt-el-post-meta {
|
450 |
-
order: 4;
|
451 |
-
}
|
452 |
-
|
453 |
-
|
454 |
-
.title_position_default.meta_position_above_title .tpg-el-main-wrapper .rt-holder .tpg-el-image-wrap {
|
455 |
-
order: -2;
|
456 |
-
}
|
457 |
-
|
458 |
-
.title_position_default.meta_position_above_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta {
|
459 |
-
order: -1;
|
460 |
-
}
|
461 |
-
|
462 |
-
|
463 |
-
/*********************************
|
464 |
-
# Layout Common
|
465 |
-
**********************************/
|
466 |
-
|
467 |
-
.title_hover_border_enable .rt-tpg-container .entry-title-wrapper .entry-title a {
|
468 |
-
background: -webkit-gradient(linear, left top, left bottom, from(var(--tpg-primary-color)), color-stop(98%, var(--tpg-primary-color)));
|
469 |
-
background: linear-gradient(to bottom, var(--tpg-primary-color) 0%, var(--tpg-primary-color) 98%);
|
470 |
-
background-size: 0 2px;
|
471 |
-
background-repeat: no-repeat;
|
472 |
-
background-position: left 100%;
|
473 |
-
}
|
474 |
-
|
475 |
-
.title_hover_border_enable .rt-tpg-container .entry-title-wrapper .entry-title:hover a {
|
476 |
-
background-size: 100% 2px;
|
477 |
-
}
|
478 |
-
|
479 |
-
.title_hover_border_disable .rt-tpg-container .entry-title-wrapper .entry-title a {
|
480 |
-
background: none !important;
|
481 |
-
}
|
482 |
-
|
483 |
-
.rt-tpg-container .post-right-content {
|
484 |
-
display: flex;
|
485 |
-
flex-direction: column;
|
486 |
-
}
|
487 |
-
|
488 |
-
.rt-tpg-container .list-layout-wrapper .post-right-content {
|
489 |
-
flex: 1;
|
490 |
-
}
|
491 |
-
|
492 |
-
.tpg-separate-category.style1 .rt-separator {
|
493 |
-
margin-right: 3px;
|
494 |
-
}
|
495 |
-
|
496 |
-
.tpg-category-position-default .grid-layout4 .rt-detail .entry-title-wrapper .tpg-separate-category {
|
497 |
-
display: none;
|
498 |
-
}
|
499 |
-
|
500 |
-
.tpg-is-author-icon-hide .post-meta-tags span.author i,
|
501 |
-
.tpg-is-author-icon-hide .post-meta-tags span.author img {
|
502 |
-
display: none;
|
503 |
-
}
|
504 |
-
|
505 |
-
/*Thumbnail Gallery Icon*/
|
506 |
-
|
507 |
-
.rt-tpg-container .rt-holder .rt-img-holder .tpg-zoom {
|
508 |
-
position: absolute;
|
509 |
-
top: 60%;
|
510 |
-
left: 50%;
|
511 |
-
transform: translate(-50%, -50%);
|
512 |
-
z-index: 99;
|
513 |
-
visibility: hidden;
|
514 |
-
opacity: 0;
|
515 |
-
}
|
516 |
-
|
517 |
-
.rt-tpg-container .rt-holder:hover .rt-img-holder .tpg-zoom {
|
518 |
-
top: 50%;
|
519 |
-
visibility: visible;
|
520 |
-
opacity: 1;
|
521 |
-
}
|
522 |
-
|
523 |
-
.rt-tpg-container .rt-holder .rt-img-holder .tpg-zoom .fa {
|
524 |
-
display: inline-block;
|
525 |
-
border: 0 solid;
|
526 |
-
border-radius: 50%;
|
527 |
-
line-height: 40px;
|
528 |
-
font-size: 20px;
|
529 |
-
padding: 5px;
|
530 |
-
width: 50px;
|
531 |
-
height: 50px;
|
532 |
-
text-align: center;
|
533 |
-
box-sizing: border-box;
|
534 |
-
background: rgba(255, 255, 255, .8);
|
535 |
-
margin-right: 0;
|
536 |
-
}
|
537 |
-
|
538 |
-
/*End Thumbnail Gallery Icon*/
|
539 |
-
|
540 |
-
@media (min-width: 992px) {
|
541 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-12:nth-child(even) .rt-el-content-wrapper-flex {
|
542 |
-
flex-direction: row-reverse;
|
543 |
-
}
|
544 |
-
|
545 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-6:nth-child(4n+3) .rt-el-content-wrapper-flex,
|
546 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-6:nth-child(4n+4) .rt-el-content-wrapper-flex {
|
547 |
-
flex-direction: row-reverse;
|
548 |
-
}
|
549 |
-
|
550 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-4:nth-child(6n+4) .rt-el-content-wrapper-flex,
|
551 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-4:nth-child(6n+5) .rt-el-content-wrapper-flex,
|
552 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-4:nth-child(6n+6) .rt-el-content-wrapper-flex {
|
553 |
-
flex-direction: row-reverse;
|
554 |
-
}
|
555 |
-
|
556 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-3:nth-child(8n+5) .rt-el-content-wrapper-flex,
|
557 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-3:nth-child(8n+6) .rt-el-content-wrapper-flex,
|
558 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-3:nth-child(8n+7) .rt-el-content-wrapper-flex,
|
559 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-3:nth-child(8n+8) .rt-el-content-wrapper-flex {
|
560 |
-
flex-direction: row-reverse;
|
561 |
-
}
|
562 |
-
}
|
563 |
-
|
564 |
-
@media (min-width: 1200px) {
|
565 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-12:nth-child(even) .rt-el-content-wrapper-flex {
|
566 |
-
flex-direction: row-reverse;
|
567 |
-
}
|
568 |
-
|
569 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-6:nth-child(4n+3) .rt-el-content-wrapper-flex,
|
570 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-6:nth-child(4n+4) .rt-el-content-wrapper-flex {
|
571 |
-
flex-direction: row-reverse;
|
572 |
-
}
|
573 |
-
|
574 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-4:nth-child(6n+4) .rt-el-content-wrapper-flex,
|
575 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-4:nth-child(6n+5) .rt-el-content-wrapper-flex,
|
576 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-4:nth-child(6n+6) .rt-el-content-wrapper-flex {
|
577 |
-
flex-direction: row-reverse;
|
578 |
-
}
|
579 |
-
}
|
580 |
-
|
581 |
-
|
582 |
-
@media (min-width: 768px) and (max-width: 991px) {
|
583 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-12:nth-child(even) .rt-el-content-wrapper-flex {
|
584 |
-
flex-direction: row-reverse;
|
585 |
-
}
|
586 |
-
|
587 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-6:nth-child(4n+3) .rt-el-content-wrapper-flex,
|
588 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-6:nth-child(4n+4) .rt-el-content-wrapper-flex {
|
589 |
-
flex-direction: row-reverse;
|
590 |
-
}
|
591 |
-
|
592 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-4:nth-child(6n+4) .rt-el-content-wrapper-flex,
|
593 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-4:nth-child(6n+5) .rt-el-content-wrapper-flex,
|
594 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-4:nth-child(6n+6) .rt-el-content-wrapper-flex {
|
595 |
-
flex-direction: row-reverse;
|
596 |
-
}
|
597 |
-
|
598 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-3:nth-child(8n+5) .rt-el-content-wrapper-flex,
|
599 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-3:nth-child(8n+6) .rt-el-content-wrapper-flex,
|
600 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-3:nth-child(8n+7) .rt-el-content-wrapper-flex,
|
601 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-3:nth-child(8n+8) .rt-el-content-wrapper-flex {
|
602 |
-
flex-direction: row-reverse;
|
603 |
-
}
|
604 |
-
}
|
605 |
-
|
606 |
-
|
607 |
-
@media (max-width: 768px) {
|
608 |
-
|
609 |
-
|
610 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-12:nth-child(even) .rt-el-content-wrapper-flex {
|
611 |
-
flex-direction: row-reverse;
|
612 |
-
}
|
613 |
-
|
614 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-6:nth-child(4n+3) .rt-el-content-wrapper-flex,
|
615 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-6:nth-child(4n+4) .rt-el-content-wrapper-flex {
|
616 |
-
flex-direction: row-reverse;
|
617 |
-
}
|
618 |
-
|
619 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-4:nth-child(4n+4) .rt-el-content-wrapper-flex,
|
620 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-4:nth-child(4n+5) .rt-el-content-wrapper-flex,
|
621 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-4:nth-child(4n+6) .rt-el-content-wrapper-flex {
|
622 |
-
flex-direction: row-reverse;
|
623 |
-
}
|
624 |
-
|
625 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-3:nth-child(8n+5) .rt-el-content-wrapper-flex,
|
626 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-3:nth-child(8n+6) .rt-el-content-wrapper-flex,
|
627 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-3:nth-child(8n+7) .rt-el-content-wrapper-flex,
|
628 |
-
.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-3:nth-child(8n+8) .rt-el-content-wrapper-flex {
|
629 |
-
flex-direction: row-reverse;
|
630 |
-
}
|
631 |
-
}
|
632 |
-
|
633 |
-
.rt-tpg-container .grid-layout6 .rt-holder .tpg-el-image-wrap,
|
634 |
-
.rt-tpg-container .grid-layout5 .rt-holder .tpg-el-image-wrap,
|
635 |
-
.rt-tpg-container .grid-layout4 .rt-holder .tpg-el-image-wrap {
|
636 |
-
margin: 0 0 15px;
|
637 |
-
}
|
638 |
-
|
639 |
-
|
640 |
-
/*Category color*/
|
641 |
-
|
642 |
-
.rt-tpg-container .list-layout4 .tpg-separate-category a,
|
643 |
-
.rt-tpg-container .grid-layout5 .tpg-separate-category a,
|
644 |
-
.rt-tpg-container .grid-layout4 .cat-over-image a {
|
645 |
-
background-color: #ffaf25;
|
646 |
-
color: #ffffff;
|
647 |
-
font-size: 12px;
|
648 |
-
padding: 0 8px;
|
649 |
-
margin-right: 5px;
|
650 |
-
line-height: 1;
|
651 |
-
display: inline-flex;
|
652 |
-
min-height: 24px;
|
653 |
-
align-items: center;
|
654 |
-
justify-content: center;
|
655 |
-
}
|
656 |
-
|
657 |
-
.rt-tpg-container .list-layout4 .tpg-separate-category a:hover,
|
658 |
-
.rt-tpg-container .grid-layout5 .tpg-separate-category a:hover,
|
659 |
-
.rt-tpg-container .grid-layout4 .cat-over-image a:hover {
|
660 |
-
background: #e59100;
|
661 |
-
}
|
662 |
-
|
663 |
-
.rt-tpg-container .grid-layout5 .tpg-separate-category .rt-separator,
|
664 |
-
.rt-tpg-container .grid-layout4 .cat-over-image .rt-separator {
|
665 |
-
display: none;
|
666 |
-
}
|
667 |
-
|
668 |
-
/*End Category color*/
|
669 |
-
|
670 |
-
/*End Layout Common*/
|
671 |
-
|
672 |
-
|
673 |
-
/******************************************************************
|
674 |
-
*******************************************************************
|
675 |
-
## TODO: GRID LAYOUT STYLE
|
676 |
-
******************************************************************
|
677 |
-
******************************************************************/
|
678 |
-
|
679 |
-
/*********************************
|
680 |
-
# Grid Layout 1
|
681 |
-
**********************************/
|
682 |
-
|
683 |
-
.rt-tpg-container .grid-layout1 .rt-holder,
|
684 |
-
.rt-tpg-container .grid-layout3 .rt-holder {
|
685 |
-
box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
|
686 |
-
-webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
|
687 |
-
-moz-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
|
688 |
-
}
|
689 |
-
|
690 |
-
/*********************************
|
691 |
-
# Grid Layout 2
|
692 |
-
**********************************/
|
693 |
-
|
694 |
-
.tpg-el-main-wrapper .grid-layout2 .rt-holder .rt-el-content-wrapper-flex {
|
695 |
-
padding: 0;
|
696 |
-
height: 100%;
|
697 |
-
}
|
698 |
-
|
699 |
-
.rt-tpg-container .grid-layout2 .rt-holder .tpg-el-image-wrap {
|
700 |
-
margin: 0;
|
701 |
-
flex: 0 0 50%;
|
702 |
-
max-width: 50%;
|
703 |
-
}
|
704 |
-
|
705 |
-
.rt-tpg-container .grid-layout2 .rt-holder .post-right-content {
|
706 |
-
padding: 15px;
|
707 |
-
flex-grow: 1;
|
708 |
-
flex: 0 0 50%;
|
709 |
-
max-width: 50%;
|
710 |
-
}
|
711 |
-
|
712 |
-
.tpg-el-main-wrapper .grid-layout2 [class*='rt-col'] {
|
713 |
-
padding: 0;
|
714 |
-
}
|
715 |
-
|
716 |
-
@media (max-width: 500px) {
|
717 |
-
.tpg-post-order-reverse .rt-tpg-container .rt-row .rt-col-xs-12:nth-child(even) .rt-el-content-wrapper-flex,
|
718 |
-
.tpg-el-main-wrapper .grid-layout2 .rt-el-content-wrapper-flex {
|
719 |
-
display: block;
|
720 |
-
}
|
721 |
-
|
722 |
-
.rt-tpg-container .grid-layout2 .rt-holder .post-right-content,
|
723 |
-
.rt-tpg-container .grid-layout2 .rt-holder .tpg-el-image-wrap {
|
724 |
-
margin: 0;
|
725 |
-
flex: inherit;
|
726 |
-
max-width: 100%;
|
727 |
-
}
|
728 |
-
|
729 |
-
.tpg-el-main-wrapper .grid-layout2 [class*='rt-col'] {
|
730 |
-
margin-bottom: 15px;
|
731 |
-
}
|
732 |
-
}
|
733 |
-
|
734 |
-
|
735 |
-
/*********************************
|
736 |
-
# Grid Layout 3
|
737 |
-
**********************************/
|
738 |
-
|
739 |
-
.rt-tpg-container .grid-layout3 .rt-holder {
|
740 |
-
overflow: hidden;
|
741 |
-
border-radius: 4px;
|
742 |
-
}
|
743 |
-
|
744 |
-
.meta_position_default .tpg-el-main-wrapper .grid-layout3 .rt-holder .rt-el-post-meta {
|
745 |
-
order: 12;
|
746 |
-
padding-top: 20px;
|
747 |
-
position: relative;
|
748 |
-
padding-bottom: 5px;
|
749 |
-
}
|
750 |
-
|
751 |
-
.meta_position_default .tpg-el-main-wrapper .grid-layout3 .rt-holder .rt-el-post-meta::before {
|
752 |
-
content: "";
|
753 |
-
position: absolute;
|
754 |
-
top: 0;
|
755 |
-
left: -50px;
|
756 |
-
right: -50px;
|
757 |
-
width: calc(100% + 100px);
|
758 |
-
height: 1px;
|
759 |
-
background: #dddddd;
|
760 |
-
}
|
761 |
-
|
762 |
-
/*********************************
|
763 |
-
# Grid Layout 4
|
764 |
-
**********************************/
|
765 |
-
|
766 |
-
|
767 |
-
.rt-tpg-container .grid-layout4 .entry-title-wrapper .entry-title {
|
768 |
-
font-size: 22px;
|
769 |
-
font-weight: 500;
|
770 |
-
line-height: 32px;
|
771 |
-
}
|
772 |
-
|
773 |
-
.tpg-el-main-wrapper .grid-layout4 .tpg-el-image-wrap img {
|
774 |
-
width: 100%;
|
775 |
-
height: 230px;
|
776 |
-
}
|
777 |
-
|
778 |
-
.rt-tpg-container .grid-layout4 .rt-holder .rt-detail {
|
779 |
-
padding: 0;
|
780 |
-
}
|
781 |
-
|
782 |
-
|
783 |
-
.tpg-is-author-icon-default .grid-layout4 .post-meta-tags span.author i,
|
784 |
-
.tpg-is-author-icon-default .grid-layout4 .post-meta-tags span.author img {
|
785 |
-
display: none;
|
786 |
-
}
|
787 |
-
|
788 |
-
/*********************************
|
789 |
-
# Grid Layout 5
|
790 |
-
**********************************/
|
791 |
-
|
792 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-left .tpg-el-image-wrap {
|
793 |
-
height: 524px;
|
794 |
-
}
|
795 |
-
|
796 |
-
@media (max-width: 767px) {
|
797 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-left .tpg-el-image-wrap {
|
798 |
-
height: 400px;
|
799 |
-
}
|
800 |
-
}
|
801 |
-
|
802 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-right .tpg-el-image-wrap {
|
803 |
-
height: 115px;
|
804 |
-
margin: 0 15px 0 0;
|
805 |
-
flex: 0 0 150px;
|
806 |
-
max-width: 150px;
|
807 |
-
}
|
808 |
-
|
809 |
-
@media (max-width: 500px) {
|
810 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-right .tpg-el-image-wrap {
|
811 |
-
flex: 0 0 130px;
|
812 |
-
max-width: 130px;
|
813 |
-
}
|
814 |
-
}
|
815 |
-
|
816 |
-
.rt-tpg-container .grid-layout5 .rt-holder .rt-detail,
|
817 |
-
.rt-tpg-container .grid-layout6 .rt-holder .rt-detail {
|
818 |
-
padding: 0;
|
819 |
-
}
|
820 |
-
|
821 |
-
.rt-tpg-container .grid-layout5 .offset-left .rt-holder .rt-el-content-wrapper {
|
822 |
-
position: relative;
|
823 |
-
}
|
824 |
-
|
825 |
-
.rt-tpg-container .grid-layout5 .offset-right .rt-holder .rt-el-content-wrapper {
|
826 |
-
display: flex;
|
827 |
-
flex-direction: row-reverse;
|
828 |
-
}
|
829 |
-
|
830 |
-
.rt-tpg-container .grid-layout5 .offset-left .rt-holder .tpg-el-image-wrap,
|
831 |
-
.rt-tpg-container .grid-layout6 .offset-left .rt-holder .tpg-el-image-wrap {
|
832 |
-
margin: 0;
|
833 |
-
}
|
834 |
-
|
835 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-left .tpg-post-holder .offset-content {
|
836 |
-
position: absolute;
|
837 |
-
top: auto;
|
838 |
-
left: 0;
|
839 |
-
bottom: 0;
|
840 |
-
width: 100%;
|
841 |
-
height: 100%;
|
842 |
-
display: flex;
|
843 |
-
flex-direction: column;
|
844 |
-
justify-content: flex-end;
|
845 |
-
padding: 30px 30px 17px;
|
846 |
-
}
|
847 |
-
|
848 |
-
.tpg-el-main-wrapper .grid-layout5 .tpg-el-image-wrap .overlay {
|
849 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), color-stop(59%, rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.8)));
|
850 |
-
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 59%, rgba(0, 0, 0, 0.8) 100%);
|
851 |
-
}
|
852 |
-
|
853 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-left .entry-title {
|
854 |
-
color: #fff;
|
855 |
-
font-size: 29px;
|
856 |
-
font-weight: 500;
|
857 |
-
margin-top: 5px;
|
858 |
-
}
|
859 |
-
|
860 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-right .entry-title {
|
861 |
-
font-size: 18px;
|
862 |
-
line-height: 25px;
|
863 |
-
color: #212121;
|
864 |
-
font-weight: 500;
|
865 |
-
}
|
866 |
-
|
867 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-left .rt-el-post-meta a,
|
868 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-left .rt-el-post-meta *,
|
869 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-left .rt-el-post-meta {
|
870 |
-
color: rgba(255, 255, 255, .7) !important;
|
871 |
-
font-size: 14px;
|
872 |
-
}
|
873 |
-
|
874 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-left .rt-el-post-meta .author a {
|
875 |
-
color: #ffffff !important;
|
876 |
-
}
|
877 |
-
|
878 |
-
.rt-tpg-container .grid-layout5 .rt-holder .rt-detail .read-more a,
|
879 |
-
.tpg-el-main-wrapper .grid-layout5 .rt-holder .tpg-el-excerpt {
|
880 |
-
color: #ffffff;
|
881 |
-
}
|
882 |
-
|
883 |
-
.rt-tpg-container .grid-layout5 .rt-holder .rt-detail .read-more a {
|
884 |
-
border-color: rgba(255, 255, 255, .8);
|
885 |
-
background: rgba(255, 255, 255, .4);
|
886 |
-
}
|
887 |
-
|
888 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-right .tpg-el-image-wrap .overlay {
|
889 |
-
display: none !important;
|
890 |
-
}
|
891 |
-
|
892 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-right .offset-content {
|
893 |
-
flex: 1;
|
894 |
-
}
|
895 |
-
|
896 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-right .rt-el-post-meta {
|
897 |
-
margin-bottom: 0;
|
898 |
-
}
|
899 |
-
|
900 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-right .offset-item {
|
901 |
-
margin-bottom: 20px;
|
902 |
-
}
|
903 |
-
|
904 |
-
/*Layout-5 and Layout-6 column order*/
|
905 |
-
.tpg-el-main-wrapper.grid-layout5-2-main .grid-layout5,
|
906 |
-
.tpg-el-main-wrapper.grid-layout6-2-main .grid-layout6 {
|
907 |
-
display: flex;
|
908 |
-
flex-direction: row-reverse;
|
909 |
-
}
|
910 |
-
|
911 |
-
.rt-tpg-container .grid-layout5 .offset-right .rt-holder .rt-el-content-wrapper {
|
912 |
-
flex-direction: row;
|
913 |
-
}
|
914 |
-
|
915 |
-
|
916 |
-
/*End Layout-5 and Layout-6 column order*/
|
917 |
-
|
918 |
-
|
919 |
-
@media (max-width: 991px) {
|
920 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-left,
|
921 |
-
.tpg-el-main-wrapper .grid-layout5 .offset-right {
|
922 |
-
width: 100% !important;
|
923 |
-
}
|
924 |
-
}
|
925 |
-
|
926 |
-
/*********************************
|
927 |
-
# Grid Layout 6
|
928 |
-
**********************************/
|
929 |
-
|
930 |
-
.tpg-wrapper-align-left .rt-tpg-container .grid-layout6 .offset-left .offset-content,
|
931 |
-
.tpg-wrapper-align-right .rt-tpg-container .grid-layout6 .offset-left .offset-content {
|
932 |
-
padding: 0;
|
933 |
-
}
|
934 |
-
|
935 |
-
.rt-tpg-container .grid-layout6 .offset-right .offset-item {
|
936 |
-
margin-bottom: 15px;
|
937 |
-
}
|
938 |
-
|
939 |
-
.tpg-el-main-wrapper .grid-layout6 .offset-left .tpg-el-image-wrap img {
|
940 |
-
height: 615px;
|
941 |
-
}
|
942 |
-
|
943 |
-
.tpg-el-main-wrapper .grid-layout6 .tpg-el-image-wrap img {
|
944 |
-
width: 100% !important;
|
945 |
-
}
|
946 |
-
|
947 |
-
.rt-tpg-container .grid-layout6 .offset-left .rt-holder .tpg-el-image-wrap {
|
948 |
-
margin-bottom: 15px;
|
949 |
-
}
|
950 |
-
|
951 |
-
.rt-tpg-container .grid-layout6 .offset-left .rt-holder .tpg-separate-category {
|
952 |
-
margin-bottom: 5px;
|
953 |
-
}
|
954 |
-
|
955 |
-
.tpg-wrapper-align-center .rt-tpg-container .grid-layout6 .offset-left .offset-content {
|
956 |
-
padding: 0 90px;
|
957 |
-
text-align: center;
|
958 |
-
}
|
959 |
-
|
960 |
-
.rt-tpg-container .grid-layout6 .tpg-separate-category,
|
961 |
-
.rt-tpg-container .grid-layout6 .tpg-separate-category a {
|
962 |
-
color: #777777;
|
963 |
-
font-weight: 500;
|
964 |
-
}
|
965 |
-
|
966 |
-
.rt-tpg-container .grid-layout6 .tpg-separate-category a:hover {
|
967 |
-
color: var(--tpg-primary-color);
|
968 |
-
}
|
969 |
-
|
970 |
-
.rt-tpg-container .grid-layout6 .offset-left .entry-title-wrapper .entry-title {
|
971 |
-
font-size: 30px;
|
972 |
-
font-weight: 500;
|
973 |
-
}
|
974 |
-
|
975 |
-
.rt-tpg-container .grid-layout6 .offset-right .entry-title-wrapper .entry-title {
|
976 |
-
font-size: 24px;
|
977 |
-
font-weight: 500;
|
978 |
-
}
|
979 |
-
|
980 |
-
@media (max-width: 1200px) {
|
981 |
-
.rt-tpg-container .grid-layout6 .offset-left .offset-content {
|
982 |
-
padding: 0 70px;
|
983 |
-
}
|
984 |
-
}
|
985 |
-
|
986 |
-
@media (max-width: 991px) {
|
987 |
-
.rt-tpg-container .grid-layout6 .offset-left .offset-content {
|
988 |
-
padding: 0 60px;
|
989 |
-
}
|
990 |
-
|
991 |
-
.rt-tpg-container .grid-layout6 .offset-left {
|
992 |
-
width: 100%;
|
993 |
-
}
|
994 |
-
|
995 |
-
.rt-tpg-container .grid-layout6 .offset-right {
|
996 |
-
width: calc(100% + 30px);
|
997 |
-
display: flex;
|
998 |
-
margin-left: -15px;
|
999 |
-
margin-right: -15px;
|
1000 |
-
flex-wrap: wrap;
|
1001 |
-
}
|
1002 |
-
|
1003 |
-
.rt-tpg-container .grid-layout6 .offset-right .offset-item {
|
1004 |
-
flex: 0 0 50%;
|
1005 |
-
padding-left: 15px;
|
1006 |
-
padding-right: 15px;
|
1007 |
-
}
|
1008 |
-
}
|
1009 |
-
|
1010 |
-
@media (max-width: 767px) {
|
1011 |
-
.rt-tpg-container .grid-layout6 .offset-left .offset-content {
|
1012 |
-
padding: 0 50px;
|
1013 |
-
}
|
1014 |
-
|
1015 |
-
.rt-tpg-container .grid-layout6 .offset-right .offset-item {
|
1016 |
-
flex: 0 0 100%;
|
1017 |
-
padding-left: 15px;
|
1018 |
-
padding-right: 15px;
|
1019 |
-
}
|
1020 |
-
}
|
1021 |
-
|
1022 |
-
|
1023 |
-
@media (min-width: 992px) {
|
1024 |
-
.tpg-el-main-wrapper .grid-layout6 .offset-right {
|
1025 |
-
padding-left: 80px;
|
1026 |
-
position: relative;
|
1027 |
-
}
|
1028 |
-
|
1029 |
-
.tpg-el-main-wrapper.grid-layout6-2-main .grid-layout6 .offset-right {
|
1030 |
-
padding-right: 80px;
|
1031 |
-
padding-left: 15px;
|
1032 |
-
}
|
1033 |
-
|
1034 |
-
.tpg-el-main-wrapper .grid-layout6 .offset-right::before {
|
1035 |
-
content: "";
|
1036 |
-
position: absolute;
|
1037 |
-
top: 0;
|
1038 |
-
left: 32px;
|
1039 |
-
height: calc(100% - 30px);
|
1040 |
-
width: 1px;
|
1041 |
-
background-color: #dddddd;
|
1042 |
-
}
|
1043 |
-
|
1044 |
-
.tpg-el-main-wrapper.grid-layout6-2-main .grid-layout6 .offset-right::before {
|
1045 |
-
right: 32px;
|
1046 |
-
left: auto;
|
1047 |
-
}
|
1048 |
-
}
|
1049 |
-
|
1050 |
-
@media (max-width: 767px) {
|
1051 |
-
.tpg-el-main-wrapper .grid-layout6 .offset-left .tpg-el-image-wrap img {
|
1052 |
-
height: 380px;
|
1053 |
-
}
|
1054 |
-
}
|
1055 |
-
|
1056 |
-
|
1057 |
-
/*********************************
|
1058 |
-
# Grid Layout 7 - Gallery
|
1059 |
-
**********************************/
|
1060 |
-
|
1061 |
-
.rt-tpg-container .rt-el-content-wrapper .gallery-content {
|
1062 |
-
display: flex;
|
1063 |
-
flex-direction: column;
|
1064 |
-
position: absolute;
|
1065 |
-
top: 0;
|
1066 |
-
left: 0;
|
1067 |
-
width: 100%;
|
1068 |
-
height: 100%;
|
1069 |
-
padding: 20px 20px 0;
|
1070 |
-
justify-content: flex-end;
|
1071 |
-
align-items: flex-start;
|
1072 |
-
}
|
1073 |
-
|
1074 |
-
.rt-tpg-container .grid-layout7 .gallery-content .entry-title,
|
1075 |
-
.rt-tpg-container .grid-layout7 .gallery-content .rt-el-post-meta,
|
1076 |
-
.rt-tpg-container .grid-layout7 .gallery-content .rt-el-post-meta a,
|
1077 |
-
.rt-tpg-container .grid-layout7 .gallery-content .tpg-el-excerpt {
|
1078 |
-
color: #ffffff;
|
1079 |
-
}
|
1080 |
-
|
1081 |
-
.rt-tpg-container .grid-layout7 .overlay {
|
1082 |
-
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), color-stop(59%, rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.8)));
|
1083 |
-
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 59%, rgba(0, 0, 0, 0.8) 100%);
|
1084 |
-
}
|
1085 |
-
|
1086 |
-
.rt-tpg-container .grid-layout7 .rt-holder .rt-img-holder,
|
1087 |
-
.rt-tpg-container .grid-layout7 .rt-holder .rt-detail {
|
1088 |
-
height: 100%;
|
1089 |
-
margin: 0;
|
1090 |
-
padding: 0;
|
1091 |
-
}
|
1092 |
-
|
1093 |
-
.rt-tpg-container .grid-layout7 .rt-holder .rt-img-holder {
|
1094 |
-
height: 300px;
|
1095 |
-
}
|
1096 |
-
|
1097 |
-
|
1098 |
-
/******************************************************************
|
1099 |
-
*******************************************************************
|
1100 |
-
## TODO: LIST LAYOUT STYLE
|
1101 |
-
******************************************************************
|
1102 |
-
******************************************************************/
|
1103 |
-
|
1104 |
-
/*********************************
|
1105 |
-
# List Layout 1
|
1106 |
-
**********************************/
|
1107 |
-
|
1108 |
-
.tpg-el-main-wrapper .list-layout-wrapper .rt-holder .rt-el-content-wrapper {
|
1109 |
-
display: flex;
|
1110 |
-
flex-direction: row;
|
1111 |
-
padding: 0;
|
1112 |
-
height: 100%;
|
1113 |
-
}
|
1114 |
-
|
1115 |
-
.tpg-el-main-wrapper.list-layout1-2-main .list-layout1 .rt-holder .rt-el-content-wrapper {
|
1116 |
-
flex-direction: row-reverse;
|
1117 |
-
}
|
1118 |
-
|
1119 |
-
.rt-tpg-container .list-layout1 .rt-holder .tpg-el-image-wrap {
|
1120 |
-
margin: 0 30px 0 0;
|
1121 |
-
flex: 0 0 260px;
|
1122 |
-
}
|
1123 |
-
|
1124 |
-
.tpg-el-main-wrapper.list-layout1-2-main .list-layout1 .rt-holder .tpg-el-image-wrap {
|
1125 |
-
margin: 0 0 0 30px;
|
1126 |
-
}
|
1127 |
-
|
1128 |
-
.rt-tpg-container .list-layout1 .rt-detail .read-more a,
|
1129 |
-
.rt-tpg-container .list-layout2 .rt-detail .read-more a,
|
1130 |
-
.rt-tpg-container .list-layout3 .rt-detail .read-more a {
|
1131 |
-
color: #fff;
|
1132 |
-
background-color: var(--tpg-primary-color);
|
1133 |
-
border-color: var(--tpg-primary-color);
|
1134 |
-
}
|
1135 |
-
|
1136 |
-
.rt-tpg-container .list-layout4 .rt-detail .read-more a:hover,
|
1137 |
-
.rt-tpg-container .list-layout1 .rt-detail .read-more a:hover,
|
1138 |
-
.rt-tpg-container .list-layout2 .rt-detail .read-more a:hover,
|
1139 |
-
.rt-tpg-container .list-layout3 .rt-detail .read-more a:hover {
|
1140 |
-
color: #fff;
|
1141 |
-
background-color: var(--tpg-secondary-color);
|
1142 |
-
border-color: var(--tpg-secondary-color);
|
1143 |
-
}
|
1144 |
-
|
1145 |
-
.tags-visibility-default .list-layout1 .post-tags-links,
|
1146 |
-
.tags-visibility-default .list-layout1 .post-tags-links + .separator {
|
1147 |
-
display: none;
|
1148 |
-
}
|
1149 |
-
|
1150 |
-
/*********************************
|
1151 |
-
# List Layout 2 (offset)
|
1152 |
-
**********************************/
|
1153 |
-
|
1154 |
-
/*List Offset common */
|
1155 |
-
.rt-tpg-container .list-layout-wrapper .offset-right .rt-row {
|
1156 |
-
display: flex;
|
1157 |
-
flex-wrap: wrap;
|
1158 |
-
max-width: 100%;
|
1159 |
-
overflow: hidden;
|
1160 |
-
width: 100%;
|
1161 |
-
}
|
1162 |
-
|
1163 |
-
.tpg-el-main-wrapper .list-layout2 .offset-left .tpg-el-image-wrap {
|
1164 |
-
height: 300px;
|
1165 |
-
}
|
1166 |
-
|
1167 |
-
.tpg-el-main-wrapper .list-layout-wrapper .offset-left .rt-holder .rt-el-content-wrapper {
|
1168 |
-
flex-direction: column;
|
1169 |
-
}
|
1170 |
-
|
1171 |
-
.rt-tpg-container .list-layout-wrapper .offset-left .rt-holder .tpg-el-image-wrap {
|
1172 |
-
margin: 0 0 15px;
|
1173 |
-
flex: inherit;
|
1174 |
-
}
|
1175 |
-
|
1176 |
-
.tpg-el-main-wrapper .list-layout-wrapper .offset-right .tpg-el-image-wrap {
|
1177 |
-
height: 100px;
|
1178 |
-
}
|
1179 |
-
|
1180 |
-
.rt-tpg-container .list-layout-wrapper .offset-right .entry-title-wrapper .entry-title {
|
1181 |
-
font-size: 20px;
|
1182 |
-
}
|
1183 |
-
|
1184 |
-
.tpg-el-main-wrapper.list-layout5-2-main .list-layout5 .rt-holder .rt-el-content-wrapper,
|
1185 |
-
.tpg-el-main-wrapper.list-layout2-2-main .list-layout2,
|
1186 |
-
.tpg-el-main-wrapper.list-layout3-2-main .list-layout3 {
|
1187 |
-
flex-direction: row-reverse;
|
1188 |
-
}
|
1189 |
-
|
1190 |
-
|
1191 |
-
.tpg-el-main-wrapper .list-layout-wrapper.list-layout2 .rt-holder .rt-el-content-wrapper {
|
1192 |
-
align-items: flex-start;
|
1193 |
-
}
|
1194 |
-
|
1195 |
-
/*End List Offset common */
|
1196 |
-
|
1197 |
-
.tags-visibility-default .list-layout2 .post-tags-links,
|
1198 |
-
.tags-visibility-default .list-layout2 .post-tags-links + .separator {
|
1199 |
-
display: none;
|
1200 |
-
}
|
1201 |
-
|
1202 |
-
.rt-tpg-container .list-layout2 .offset-right .rt-holder .tpg-el-image-wrap {
|
1203 |
-
margin: 0 15px 0 0;
|
1204 |
-
flex: 0 0 107px;
|
1205 |
-
max-width: 107px;
|
1206 |
-
}
|
1207 |
-
|
1208 |
-
/*********************************
|
1209 |
-
# List Layout 3 (offset)
|
1210 |
-
**********************************/
|
1211 |
-
|
1212 |
-
.tpg-el-main-wrapper .list-layout3 .offset-right .rt-holder .tpg-el-excerpt {
|
1213 |
-
overflow: hidden;
|
1214 |
-
text-overflow: ellipsis;
|
1215 |
-
display: -webkit-box;
|
1216 |
-
-webkit-line-clamp: 2;
|
1217 |
-
-webkit-box-orient: vertical;
|
1218 |
-
}
|
1219 |
-
|
1220 |
-
.tpg-el-main-wrapper .list-layout3 [class*='rt-col'] {
|
1221 |
-
padding-bottom: 15px;
|
1222 |
-
}
|
1223 |
-
|
1224 |
-
.tpg-el-main-wrapper .list-layout3 .offset-left .tpg-el-image-wrap {
|
1225 |
-
height: 390px;
|
1226 |
-
}
|
1227 |
-
|
1228 |
-
.rt-tpg-container .list-layout3 .offset-right .rt-holder .tpg-el-image-wrap {
|
1229 |
-
margin: 0 15px 0 0;
|
1230 |
-
flex: 0 0 140px;
|
1231 |
-
max-width: 140px;
|
1232 |
-
height: 110px;
|
1233 |
-
}
|
1234 |
-
|
1235 |
-
|
1236 |
-
/*********************************
|
1237 |
-
# List Layout 4
|
1238 |
-
**********************************/
|
1239 |
-
|
1240 |
-
.tpg-el-main-wrapper .list-layout-wrapper.list-layout4 .rt-el-content-wrapper {
|
1241 |
-
align-items: inherit;
|
1242 |
-
}
|
1243 |
-
|
1244 |
-
.rt-tpg-container .list-layout4 .post-right-content,
|
1245 |
-
.tpg-el-main-wrapper .list-layout4 .rt-holder .tpg-el-image-wrap {
|
1246 |
-
margin: 0;
|
1247 |
-
flex: 0 0 50%;
|
1248 |
-
}
|
1249 |
-
|
1250 |
-
@media (min-width: 768px) {
|
1251 |
-
.tpg-el-main-wrapper .list-layout4 .rt-holder .tpg-el-image-wrap {
|
1252 |
-
height: 400px;
|
1253 |
-
}
|
1254 |
-
}
|
1255 |
-
|
1256 |
-
.rt-tpg-container .list-layout4 .post-right-content {
|
1257 |
-
margin: 0;
|
1258 |
-
padding: 30px 50px;
|
1259 |
-
text-align: center;
|
1260 |
-
display: flex;
|
1261 |
-
justify-content: center;
|
1262 |
-
}
|
1263 |
-
|
1264 |
-
.rt-tpg-container .list-layout4 .entry-title-wrapper .categories-links .rt-separator {
|
1265 |
-
display: none;
|
1266 |
-
}
|
1267 |
-
|
1268 |
-
.tpg-el-main-wrapper .list-layout4 [class*='rt-col'] {
|
1269 |
-
padding-bottom: 0;
|
1270 |
-
}
|
1271 |
-
|
1272 |
-
@media (min-width: 768px) {
|
1273 |
-
.tpg-el-main-wrapper .list-layout4 [class*='rt-col']:nth-child(even) .rt-holder .rt-el-content-wrapper {
|
1274 |
-
flex-direction: row-reverse;
|
1275 |
-
}
|
1276 |
-
}
|
1277 |
-
|
1278 |
-
@media (max-width: 768px) {
|
1279 |
-
.tpg-el-main-wrapper .list-layout4 .rt-holder .tpg-el-image-wrap {
|
1280 |
-
flex: 0 0 150px;
|
1281 |
-
height: 120px;
|
1282 |
-
}
|
1283 |
-
|
1284 |
-
.rt-tpg-container .list-layout4 .post-right-content {
|
1285 |
-
flex: inherit;
|
1286 |
-
flex-grow: 1;
|
1287 |
-
text-align: left;
|
1288 |
-
padding: 0 0 0 20px;
|
1289 |
-
}
|
1290 |
-
|
1291 |
-
.tpg-el-main-wrapper .list-layout-wrapper.list-layout4 .rt-holder .rt-el-content-wrapper {
|
1292 |
-
align-items: flex-start !important;
|
1293 |
-
}
|
1294 |
-
|
1295 |
-
.tpg-el-main-wrapper .list-layout4 [class*='rt-col'] {
|
1296 |
-
margin-bottom: 30px;
|
1297 |
-
}
|
1298 |
-
}
|
1299 |
-
|
1300 |
-
@media (max-width: 500px) {
|
1301 |
-
.tpg-el-main-wrapper .list-layout4 .rt-holder .tpg-el-image-wrap {
|
1302 |
-
flex: 0 0 100px;
|
1303 |
-
height: 100px;
|
1304 |
-
}
|
1305 |
-
}
|
1306 |
-
|
1307 |
-
/*********************************
|
1308 |
-
# List Layout 5
|
1309 |
-
**********************************/
|
1310 |
-
|
1311 |
-
.rt-tpg-container .list-layout5 .post-right-content {
|
1312 |
-
padding-left: 20px;
|
1313 |
-
display: block;
|
1314 |
-
overflow: hidden;
|
1315 |
-
}
|
1316 |
-
|
1317 |
-
.tpg-el-main-wrapper.list-layout5-2-main .list-layout5 .post-right-content {
|
1318 |
-
padding-left: 0;
|
1319 |
-
padding-right: 20px;
|
1320 |
-
}
|
1321 |
-
|
1322 |
-
.rt-tpg-container .list-layout5 .rt-holder .rt-img-holder {
|
1323 |
-
border-radius: 50%;
|
1324 |
-
flex: 0 0 100px;
|
1325 |
-
height: 100px;
|
1326 |
-
margin-top: 8px;
|
1327 |
-
}
|
1328 |
-
|
1329 |
-
.rt-tpg-container .list-layout5 .entry-title-wrapper .entry-title {
|
1330 |
-
font-size: 18px;
|
1331 |
-
}
|
1332 |
-
|
1333 |
-
.tags-visibility-default .list-layout5 .rt-el-post-meta {
|
1334 |
-
color: #A5A6AA;
|
1335 |
-
font-size: 14px;
|
1336 |
-
}
|
1337 |
-
|
1338 |
-
.list-layout5 .entry-title-wrapper .tpg-separate-category .categories-links {
|
1339 |
-
font-size: 14px;
|
1340 |
-
color: #7A7E83;
|
1341 |
-
font-weight: 500;
|
1342 |
-
}
|
1343 |
-
|
1344 |
-
.list-layout5 .entry-title-wrapper .tpg-separate-category .categories-links a {
|
1345 |
-
color: inherit;
|
1346 |
-
}
|
1347 |
-
|
1348 |
-
.tpg-el-main-wrapper .list-layout5 [class*='rt-col'] {
|
1349 |
-
padding-bottom: 20px;
|
1350 |
-
}
|
1351 |
-
|
1352 |
-
.rt-tpg-container .list-layout5 .post-right-content {
|
1353 |
-
flex: 1;
|
1354 |
-
}
|
1355 |
-
|
1356 |
-
|
1357 |
-
/*********************************
|
1358 |
-
# Grid Hover Layout 1
|
1359 |
-
**********************************/
|
1360 |
-
|
1361 |
-
/*Grid Hover common*/
|
1362 |
-
|
1363 |
-
.grid_hover_layout_wrapper .rt-row-inner {
|
1364 |
-
display: -ms-flexbox;
|
1365 |
-
display: flex;
|
1366 |
-
-ms-flex-wrap: wrap;
|
1367 |
-
flex-wrap: wrap;
|
1368 |
-
}
|
1369 |
-
|
1370 |
-
.rt-tpg-container .rt-grid-hover-item .entry-title-wrapper .entry-title {
|
1371 |
-
font-size: 20px;
|
1372 |
-
line-height: 1.4;
|
1373 |
-
}
|
1374 |
-
|
1375 |
-
.tpg-el-main-wrapper .rt-grid-hover-item .rt-holder .rt-el-content-wrapper {
|
1376 |
-
padding: 0;
|
1377 |
-
position: relative;
|
1378 |
-
overflow: hidden;
|
1379 |
-
height: 100%;
|
1380 |
-
}
|
1381 |
-
|
1382 |
-
.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content {
|
1383 |
-
position: absolute;
|
1384 |
-
padding: 30px 30px 15px;
|
1385 |
-
bottom: 0;
|
1386 |
-
left: 0;
|
1387 |
-
right: 0;
|
1388 |
-
width: 100%;
|
1389 |
-
display: flex;
|
1390 |
-
flex-direction: column;
|
1391 |
-
justify-content: flex-end;
|
1392 |
-
transition: 1.2s;
|
1393 |
-
z-index: 1;
|
1394 |
-
min-height: 56px;
|
1395 |
-
}
|
1396 |
-
|
1397 |
-
|
1398 |
-
.rt-tpg-container .rt-grid-hover-item .rt-holder:hover .grid-hover-content {
|
1399 |
-
padding-bottom: 15px;
|
1400 |
-
}
|
1401 |
-
|
1402 |
-
|
1403 |
-
.rt-tpg-container .rt-grid-hover-item .rt-holder:hover .grid-hover-content > div:last-of-type {
|
1404 |
-
margin-bottom: 0;
|
1405 |
-
}
|
1406 |
-
|
1407 |
-
.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,
|
1408 |
-
.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after {
|
1409 |
-
content: "";
|
1410 |
-
background-color: rgba(0, 0, 0, 0.7);
|
1411 |
-
width: 100%;
|
1412 |
-
height: 100%;
|
1413 |
-
left: 0;
|
1414 |
-
bottom: 0;
|
1415 |
-
right: 0;
|
1416 |
-
position: absolute;
|
1417 |
-
z-index: -1;
|
1418 |
-
transition: 0.4s ease-in-out;
|
1419 |
-
}
|
1420 |
-
|
1421 |
-
.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after {
|
1422 |
-
background-color: rgba(0, 0, 0, 0.5);
|
1423 |
-
}
|
1424 |
-
|
1425 |
-
.rt-tpg-container .rt-grid-hover-item .rt-holder:hover .grid-hover-content:before,
|
1426 |
-
.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after {
|
1427 |
-
opacity: 0;
|
1428 |
-
visibility: hidden;
|
1429 |
-
}
|
1430 |
-
|
1431 |
-
.rt-tpg-container .rt-grid-hover-item .rt-holder:hover .grid-hover-content:after {
|
1432 |
-
opacity: 1;
|
1433 |
-
visibility: visible;
|
1434 |
-
}
|
1435 |
-
|
1436 |
-
.rt-tpg-container .rt-grid-hover-item .entry-title-wrapper .entry-title,
|
1437 |
-
.rt-tpg-container .rt-grid-hover-item .rt-el-post-meta,
|
1438 |
-
.rt-tpg-container .rt-grid-hover-item .rt-el-post-meta a,
|
1439 |
-
.rt-tpg-container .rt-grid-hover-item .rt-holder .tpg-el-excerpt,
|
1440 |
-
.rt-tpg-container .rt-grid-hover-item .rt-detail .read-more a {
|
1441 |
-
color: #ffffff;
|
1442 |
-
}
|
1443 |
-
|
1444 |
-
.rt-tpg-container .rt-grid-hover-item a:hover {
|
1445 |
-
color: var(--tpg-primary-color);
|
1446 |
-
}
|
1447 |
-
|
1448 |
-
.rt-tpg-container .rt-grid-hover-item .rt-detail .read-more a {
|
1449 |
-
border-color: rgba(255, 255, 255, .7);
|
1450 |
-
}
|
1451 |
-
|
1452 |
-
.rt-tpg-container .rt-grid-hover-item .rt-holder .tpg-el-image-wrap {
|
1453 |
-
margin: 0;
|
1454 |
-
}
|
1455 |
-
|
1456 |
-
.rt-grid-hover-item .tpg-el-image-wrap {
|
1457 |
-
height: 100%;
|
1458 |
-
background-color: #e4eaf1;
|
1459 |
-
}
|
1460 |
-
|
1461 |
-
/*Hover animation
|
1462 |
-
=====================*/
|
1463 |
-
|
1464 |
-
|
1465 |
-
.grid-hover-overlay-type-fadein-on-hover .rt-tpg-container .rt-holder .grid-hover-content .entry-title-wrapper .entry-title::before {
|
1466 |
-
width: 0;
|
1467 |
-
transition: 0.5s ease-in-out;
|
1468 |
-
}
|
1469 |
-
|
1470 |
-
.grid-hover-overlay-type-fadein-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content .entry-title-wrapper .entry-title::before {
|
1471 |
-
width: 50%;
|
1472 |
-
}
|
1473 |
-
|
1474 |
-
/*Fade In-Out CSS*/
|
1475 |
-
.grid-hover-overlay-type-fadein-on-hover .rt-tpg-container .rt-holder .grid-hover-content {
|
1476 |
-
opacity: 0;
|
1477 |
-
transition: 0.5s ease-in-out;
|
1478 |
-
}
|
1479 |
-
|
1480 |
-
.grid-hover-overlay-type-fadein-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content {
|
1481 |
-
opacity: 1;
|
1482 |
-
}
|
1483 |
-
|
1484 |
-
/*Fade In-Out CSS*/
|
1485 |
-
|
1486 |
-
.grid-hover-overlay-type-fadeout-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content {
|
1487 |
-
opacity: 0;
|
1488 |
-
}
|
1489 |
-
|
1490 |
-
/*Slide In-Out CSS*/
|
1491 |
-
.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-holder .grid-hover-content {
|
1492 |
-
left: -100%;
|
1493 |
-
transition: 0.5s ease-in-out;
|
1494 |
-
}
|
1495 |
-
|
1496 |
-
.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content {
|
1497 |
-
left: 0;
|
1498 |
-
}
|
1499 |
-
|
1500 |
-
.grid-hover-overlay-type-slideout-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content {
|
1501 |
-
left: 100%;
|
1502 |
-
}
|
1503 |
-
|
1504 |
-
|
1505 |
-
/*Flip In-Out CSS*/
|
1506 |
-
|
1507 |
-
.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,
|
1508 |
-
.grid-hover-overlay-type-slideout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before {
|
1509 |
-
transition: 0.5s ease-in-out;
|
1510 |
-
}
|
1511 |
-
|
1512 |
-
.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,
|
1513 |
-
.grid-hover-overlay-type-slideout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,
|
1514 |
-
.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,
|
1515 |
-
.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before {
|
1516 |
-
visibility: visible;
|
1517 |
-
opacity: 1;
|
1518 |
-
background: var(--tpg-primary-color);
|
1519 |
-
}
|
1520 |
-
|
1521 |
-
.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,
|
1522 |
-
.grid-hover-overlay-type-slideout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,
|
1523 |
-
.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,
|
1524 |
-
.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after {
|
1525 |
-
content: none;
|
1526 |
-
}
|
1527 |
-
|
1528 |
-
.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content,
|
1529 |
-
.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content {
|
1530 |
-
height: 100%;
|
1531 |
-
}
|
1532 |
-
|
1533 |
-
.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content,
|
1534 |
-
.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .rt-img-holder,
|
1535 |
-
.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content,
|
1536 |
-
.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .tpg-el-image-wrap {
|
1537 |
-
transition: all .5s;
|
1538 |
-
}
|
1539 |
-
|
1540 |
-
.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .rt-img-holder img,
|
1541 |
-
.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .rt-img-holder img {
|
1542 |
-
transform: none !important;
|
1543 |
-
}
|
1544 |
-
|
1545 |
-
|
1546 |
-
/*ZoomIn and ZommOut css*/
|
1547 |
-
.grid-hover-overlay-type-zoomin-on-hover .rt-tpg-container .rt-holder .grid-hover-content,
|
1548 |
-
.grid-hover-overlay-type-zoomout-on-hover .rt-tpg-container .rt-holder .grid-hover-content {
|
1549 |
-
transition: 0.5s ease-in-out;
|
1550 |
-
}
|
1551 |
-
|
1552 |
-
|
1553 |
-
.grid-hover-overlay-type-zoomout-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content,
|
1554 |
-
.grid-hover-overlay-type-zoomin-on-hover .rt-tpg-container .rt-holder .grid-hover-content {
|
1555 |
-
opacity: 0;
|
1556 |
-
transform: scale(0);
|
1557 |
-
}
|
1558 |
-
|
1559 |
-
.grid-hover-overlay-type-zoomin-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content {
|
1560 |
-
opacity: 1;
|
1561 |
-
transform: scale(1);
|
1562 |
-
}
|
1563 |
-
|
1564 |
-
.grid-hover-overlay-type-zoominall-on-hover .rt-tpg-container .rt-holder .grid-hover-content *,
|
1565 |
-
.grid-hover-overlay-type-zoomoutall-on-hover .rt-tpg-container .rt-holder .grid-hover-content * {
|
1566 |
-
transition: 0.4s ease-in-out !important;
|
1567 |
-
}
|
1568 |
-
|
1569 |
-
.grid-hover-overlay-type-zoomoutall-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content *,
|
1570 |
-
.grid-hover-overlay-type-zoominall-on-hover .rt-tpg-container .rt-holder .grid-hover-content * {
|
1571 |
-
opacity: 0;
|
1572 |
-
transform: scale(0);
|
1573 |
-
}
|
1574 |
-
|
1575 |
-
.grid-hover-overlay-type-zoominall-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content * {
|
1576 |
-
opacity: 1;
|
1577 |
-
transform: scale(1);
|
1578 |
-
}
|
1579 |
-
|
1580 |
-
|
1581 |
-
/*end zoomIn-Out*/
|
1582 |
-
.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content {
|
1583 |
-
backface-visibility: hidden;
|
1584 |
-
-webkit-transform: rotateY(-180deg);
|
1585 |
-
-moz-transform: rotateY(-180deg);
|
1586 |
-
transform: rotateY(-180deg);
|
1587 |
-
opacity: 0;
|
1588 |
-
}
|
1589 |
-
|
1590 |
-
.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .grid-hover-content {
|
1591 |
-
-webkit-transform: rotateY(0deg);
|
1592 |
-
-moz-transform: rotateY(0deg);
|
1593 |
-
transform: rotateY(0deg);
|
1594 |
-
backface-visibility: visible;
|
1595 |
-
opacity: 1;
|
1596 |
-
}
|
1597 |
-
|
1598 |
-
.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .rt-img-holder {
|
1599 |
-
-webkit-transform: rotateY(180deg);
|
1600 |
-
-moz-transform: rotateY(180deg);
|
1601 |
-
transform: rotateY(180deg);
|
1602 |
-
opacity: 0;
|
1603 |
-
visibility: hidden;
|
1604 |
-
}
|
1605 |
-
|
1606 |
-
.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .grid-hover-content {
|
1607 |
-
-webkit-transform: rotateY(180deg);
|
1608 |
-
-moz-transform: rotateY(180deg);
|
1609 |
-
transform: rotateY(180deg);
|
1610 |
-
opacity: 0;
|
1611 |
-
visibility: hidden;
|
1612 |
-
}
|
1613 |
-
|
1614 |
-
.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .rt-img-holder {
|
1615 |
-
backface-visibility: hidden;
|
1616 |
-
-webkit-transform: rotateY(-180deg);
|
1617 |
-
-moz-transform: rotateY(-180deg);
|
1618 |
-
transform: rotateY(-180deg);
|
1619 |
-
opacity: 0;
|
1620 |
-
}
|
1621 |
-
|
1622 |
-
.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .rt-img-holder {
|
1623 |
-
-webkit-transform: rotateY(0deg);
|
1624 |
-
-moz-transform: rotateY(0deg);
|
1625 |
-
transform: rotateY(0deg);
|
1626 |
-
backface-visibility: visible;
|
1627 |
-
opacity: 1;
|
1628 |
-
}
|
1629 |
-
|
1630 |
-
/*End hover animation*/
|
1631 |
-
|
1632 |
-
/*Show hide elements
|
1633 |
-
=====================*/
|
1634 |
-
|
1635 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .rt-el-post-meta,
|
1636 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .tpg-el-excerpt,
|
1637 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .post-footer,
|
1638 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .rt-tpg-social-share {
|
1639 |
-
max-height: 0;
|
1640 |
-
margin-bottom: 0;
|
1641 |
-
transition: .6s;
|
1642 |
-
opacity: 0;
|
1643 |
-
visibility: hidden;
|
1644 |
-
}
|
1645 |
-
|
1646 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .rt-el-post-meta,
|
1647 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .tpg-el-excerpt,
|
1648 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .post-footer,
|
1649 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .rt-tpg-social-share {
|
1650 |
-
margin-bottom: 15px;
|
1651 |
-
}
|
1652 |
-
|
1653 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .rt-el-post-meta {
|
1654 |
-
transition: all 0.6s, opacity 0.6s;
|
1655 |
-
}
|
1656 |
-
|
1657 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .tpg-el-excerpt {
|
1658 |
-
transition: all 0.6s, opacity 0.5s;
|
1659 |
-
}
|
1660 |
-
|
1661 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .post-footer {
|
1662 |
-
transition: all 0.6s, opacity 0.4s;
|
1663 |
-
}
|
1664 |
-
|
1665 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .rt-tpg-social-share {
|
1666 |
-
transition: all 0.6s, opacity 0.3s;
|
1667 |
-
}
|
1668 |
-
|
1669 |
-
|
1670 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .rt-el-post-meta {
|
1671 |
-
max-height: var(--tpg-meta-height, 80px);
|
1672 |
-
opacity: 1;
|
1673 |
-
visibility: visible;
|
1674 |
-
margin-bottom: 15px;
|
1675 |
-
}
|
1676 |
-
|
1677 |
-
/*.rt-tpg-container .grid_hover_layout_wrapper .offset-right .rt-grid-hover-item .rt-holder:hover .rt-el-post-meta {*/
|
1678 |
-
/* margin-bottom: 0;*/
|
1679 |
-
/*}*/
|
1680 |
-
|
1681 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .tpg-el-excerpt {
|
1682 |
-
max-height: var(--tpg-excerpt-height, 140px);
|
1683 |
-
opacity: 1;
|
1684 |
-
visibility: visible;
|
1685 |
-
}
|
1686 |
-
|
1687 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-holder:hover .rt-tpg-social-share {
|
1688 |
-
max-height: var(--tpg-share-height, 50px);
|
1689 |
-
margin-bottom: 15px;
|
1690 |
-
opacity: 1;
|
1691 |
-
visibility: visible;
|
1692 |
-
}
|
1693 |
-
|
1694 |
-
.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .post-footer {
|
1695 |
-
max-height: var(--tpg-footer-height, 50px);
|
1696 |
-
opacity: 1;
|
1697 |
-
visibility: visible;
|
1698 |
-
}
|
1699 |
-
|
1700 |
-
|
1701 |
-
.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout5 .rt-grid-hover-item .rt-holder .rt-el-post-meta,
|
1702 |
-
.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .rt-el-post-meta,
|
1703 |
-
.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .tpg-el-excerpt,
|
1704 |
-
.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .post-footer,
|
1705 |
-
.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .rt-tpg-social-share {
|
1706 |
-
max-height: inherit;
|
1707 |
-
opacity: 1;
|
1708 |
-
visibility: visible;
|
1709 |
-
}
|
1710 |
-
|
1711 |
-
|
1712 |
-
/*End Grid Hover common*/
|
1713 |
-
|
1714 |
-
|
1715 |
-
.meta-visibility-default .rt-tpg-container .grid_hover-layout1 .rt-grid-hover-item .rt-holder .rt-el-post-meta {
|
1716 |
-
max-height: inherit;
|
1717 |
-
}
|
1718 |
-
|
1719 |
-
.rt-tpg-container .grid_hover-layout1 .rt-holder .tpg-el-image-wrap {
|
1720 |
-
height: 300px;
|
1721 |
-
}
|
1722 |
-
|
1723 |
-
.grid-hover-overlay-height-full .rt-tpg-container .rt-content-loader .rt-grid-hover-item .rt-holder .grid-hover-content {
|
1724 |
-
min-height: 100%;
|
1725 |
-
}
|
1726 |
-
|
1727 |
-
.hover-overlay-height-full .rt-tpg-container .rt-content-loader .rt-grid-hover-item .rt-holder:hover .grid-hover-content,
|
1728 |
-
.hover-overlay-height-default .rt-tpg-container .grid_hover-layout1 .rt-grid-hover-item .rt-holder:hover .grid-hover-content {
|
1729 |
-
min-height: 100%;
|
1730 |
-
transition: .5s;
|
1731 |
-
}
|
1732 |
-
|
1733 |
-
.rt-tpg-container .grid_hover-layout1 .entry-title-wrapper .entry-title {
|
1734 |
-
font-size: 20px;
|
1735 |
-
line-height: 1.4;
|
1736 |
-
}
|
1737 |
-
|
1738 |
-
|
1739 |
-
/*********************************
|
1740 |
-
# Grid Hover Layout 2
|
1741 |
-
**********************************/
|
1742 |
-
|
1743 |
-
.meta-visibility-default .rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder .rt-el-post-meta {
|
1744 |
-
max-height: inherit;
|
1745 |
-
margin-bottom: 7px;
|
1746 |
-
}
|
1747 |
-
|
1748 |
-
.rt-tpg-container .grid_hover-layout2 .rt-holder .tpg-el-image-wrap img {
|
1749 |
-
height: 300px;
|
1750 |
-
}
|
1751 |
-
|
1752 |
-
.rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder .tpg-el-excerpt,
|
1753 |
-
.rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder .post-footer,
|
1754 |
-
.tpg-el-main-wrapper .grid_hover-layout2 .rt-holder .rt-tpg-social-share {
|
1755 |
-
max-height: 0;
|
1756 |
-
overflow: hidden;
|
1757 |
-
margin-bottom: 0;
|
1758 |
-
transition: 0.6s;
|
1759 |
-
}
|
1760 |
-
|
1761 |
-
.tpg-el-main-wrapper .grid_hover-layout2 .rt-holder:hover .rt-tpg-social-share {
|
1762 |
-
max-height: 50px;
|
1763 |
-
margin-bottom: 15px
|
1764 |
-
}
|
1765 |
-
|
1766 |
-
.rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder:hover .post-footer {
|
1767 |
-
max-height: 50px;
|
1768 |
-
}
|
1769 |
-
|
1770 |
-
.hover-overlay-height-full .rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder:hover .grid-hover-content {
|
1771 |
-
min-height: 100%;
|
1772 |
-
}
|
1773 |
-
|
1774 |
-
.rt-tpg-container .grid_hover-layout2 .rt-holder .grid-hover-content {
|
1775 |
-
padding: 20px;
|
1776 |
-
justify-content: center;
|
1777 |
-
text-align: center;
|
1778 |
-
margin: 15px;
|
1779 |
-
width: calc(100% - 30px);
|
1780 |
-
}
|
1781 |
-
|
1782 |
-
|
1783 |
-
/*********************************
|
1784 |
-
# Grid Hover Layout 3
|
1785 |
-
**********************************/
|
1786 |
-
|
1787 |
-
.rt-tpg-container .grid_hover-layout3 .tpg-el-image-wrap {
|
1788 |
-
height: 300px;
|
1789 |
-
}
|
1790 |
-
|
1791 |
-
.rt-tpg-container .grid_hover-layout3 .rt-grid-hover-item .rt-holder .grid-hover-content {
|
1792 |
-
min-height: 100%;
|
1793 |
-
justify-content: center;
|
1794 |
-
text-align: center;
|
1795 |
-
padding: 10px 30px;
|
1796 |
-
}
|
1797 |
-
|
1798 |
-
|
1799 |
-
/*Title Border style */
|
1800 |
-
|
1801 |
-
.tpg-title-border-show .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title {
|
1802 |
-
position: relative;
|
1803 |
-
margin-bottom: 20px;
|
1804 |
-
}
|
1805 |
-
|
1806 |
-
.tpg-title-border-show .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title::before {
|
1807 |
-
content: "";
|
1808 |
-
position: absolute;
|
1809 |
-
bottom: -16px;
|
1810 |
-
height: 2px;
|
1811 |
-
width: 50%;
|
1812 |
-
left: 50%;
|
1813 |
-
transform: translateX(-50%);
|
1814 |
-
background-color: #fff;
|
1815 |
-
transition: 0.4s;
|
1816 |
-
}
|
1817 |
-
|
1818 |
-
.tpg-title-border-show.title-alignment-justify .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title::before,
|
1819 |
-
.tpg-title-border-show.title-alignment-left .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title::before,
|
1820 |
-
.tpg-title-border-show.tpg-wrapper-align-left .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title::before {
|
1821 |
-
left: 0;
|
1822 |
-
transform: none;
|
1823 |
-
}
|
1824 |
-
|
1825 |
-
.tpg-title-border-show.title-alignment-right .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title::before,
|
1826 |
-
.tpg-title-border-show.tpg-wrapper-align-right .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title::before {
|
1827 |
-
right: 0;
|
1828 |
-
transform: none;
|
1829 |
-
}
|
1830 |
-
|
1831 |
-
|
1832 |
-
/*End Title Border style */
|
1833 |
-
|
1834 |
-
/*********************************
|
1835 |
-
# Grid Hover Layout 4 - Offset
|
1836 |
-
**********************************/
|
1837 |
-
|
1838 |
-
/*Offset Common*/
|
1839 |
-
|
1840 |
-
@media (max-width: 767px) {
|
1841 |
-
.tpg-el-main-wrapper .rt-content-loader .offset-left,
|
1842 |
-
.tpg-el-main-wrapper .rt-content-loader .offset-right {
|
1843 |
-
width: 100% !important;
|
1844 |
-
}
|
1845 |
-
}
|
1846 |
-
|
1847 |
-
.rt-tpg-container .offset-right .entry-title-wrapper .entry-title {
|
1848 |
-
font-size: 18px;
|
1849 |
-
}
|
1850 |
-
|
1851 |
-
.rt-tpg-container .offset-right .rt-grid-hover-item .rt-holder .grid-hover-content {
|
1852 |
-
padding: 15px 15px 10px;
|
1853 |
-
}
|
1854 |
-
|
1855 |
-
.tpg-el-main-wrapper .offset-right .tpg-el-image-wrap img {
|
1856 |
-
height: 100%;
|
1857 |
-
object-fit: cover;
|
1858 |
-
min-height: 170px;
|
1859 |
-
}
|
1860 |
-
|
1861 |
-
.tpg-el-main-wrapper .offset-right .rt-list-item .tpg-el-image-wrap img {
|
1862 |
-
min-height: inherit;
|
1863 |
-
}
|
1864 |
-
|
1865 |
-
.tpg-el-main-wrapper .offset-left .tpg-el-image-wrap {
|
1866 |
-
height: 589px;
|
1867 |
-
}
|
1868 |
-
|
1869 |
-
@media (max-width: 767px) {
|
1870 |
-
.tpg-el-main-wrapper .offset-left .tpg-el-image-wrap {
|
1871 |
-
height: 400px;
|
1872 |
-
}
|
1873 |
-
}
|
1874 |
-
|
1875 |
-
/*end offset common */
|
1876 |
-
|
1877 |
-
.tpg-el-main-wrapper .grid_hover-layout4 .offset-left .tpg-el-image-wrap {
|
1878 |
-
height: 571px;
|
1879 |
-
}
|
1880 |
-
|
1881 |
-
.rt-tpg-container .grid_hover-layout4 .offset-left .rt-holder .rt-el-post-meta {
|
1882 |
-
max-height: inherit;
|
1883 |
-
margin-bottom: 7px;
|
1884 |
-
opacity: 1;
|
1885 |
-
visibility: visible;
|
1886 |
-
}
|
1887 |
-
|
1888 |
-
.rt-tpg-container .grid_hover-layout4 .rt-holder:hover .rt-el-post-meta {
|
1889 |
-
max-height: 30px;
|
1890 |
-
}
|
1891 |
-
|
1892 |
-
.tpg-el-main-wrapper.grid_hover-layout4-2-main .grid_hover-layout4 {
|
1893 |
-
flex-direction: row-reverse;
|
1894 |
-
}
|
1895 |
-
|
1896 |
-
/*********************************
|
1897 |
-
# Grid Hover Layout 5 - Offset
|
1898 |
-
**********************************/
|
1899 |
-
|
1900 |
-
.rt-tpg-container .grid_hover-layout5 .offset-left .tpg-el-image-wrap img {
|
1901 |
-
height: 590px;
|
1902 |
-
}
|
1903 |
-
|
1904 |
-
@media (max-width: 767px) {
|
1905 |
-
.rt-tpg-container .grid_hover-layout5 .offset-left .tpg-el-image-wrap img {
|
1906 |
-
height: 400px;
|
1907 |
-
}
|
1908 |
-
}
|
1909 |
-
|
1910 |
-
body .elementor-section .rt-tpg-container .grid_hover-layout5 [class*='rt-col'] {
|
1911 |
-
padding: 2.5px;
|
1912 |
-
}
|
1913 |
-
|
1914 |
-
.rt-tpg-container .grid_hover-layout5 .rt-row,
|
1915 |
-
.rt-tpg-container .grid_hover-layout5 {
|
1916 |
-
margin-left: -2.5px;
|
1917 |
-
margin-right: -2.5px;
|
1918 |
-
}
|
1919 |
-
|
1920 |
-
.rt-tpg-container .grid_hover-layout5 .rt-row {
|
1921 |
-
margin-top: -2.5px;
|
1922 |
-
margin-bottom: -2.5px;
|
1923 |
-
}
|
1924 |
-
|
1925 |
-
.grid-hover-overlay-height-default .grid_hover-layout5 .rt-holder .grid-hover-content {
|
1926 |
-
min-height: 100%;
|
1927 |
-
}
|
1928 |
-
|
1929 |
-
.grid-hover-overlay-height-default .grid_hover-layout5 .rt-holder .grid-hover-content .post-meta-tags {
|
1930 |
-
margin-top: -7px;
|
1931 |
-
}
|
1932 |
-
|
1933 |
-
.grid-hover-overlay-height-default .grid_hover-layout5 .rt-holder .rt-detail .entry-title-wrapper .tpg-separate-category {
|
1934 |
-
margin-bottom: 0;
|
1935 |
-
}
|
1936 |
-
|
1937 |
-
.rt-tpg-container .grid_hover-layout5 .rt-holder .grid-hover-content:before {
|
1938 |
-
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 59%, rgba(0, 0, 0, 0.8) 100%);
|
1939 |
-
}
|
1940 |
-
|
1941 |
-
.tpg-el-main-wrapper .grid_hover-layout5 .offset-right .tpg-el-image-wrap img {
|
1942 |
-
height: 292px;
|
1943 |
-
}
|
1944 |
-
|
1945 |
-
.tpg-el-main-wrapper .grid_hover-layout5 .entry-title-wrapper .categories-links .rt-separator {
|
1946 |
-
display: none;
|
1947 |
-
}
|
1948 |
-
|
1949 |
-
.tpg-el-main-wrapper .grid_hover-layout5 .entry-title-wrapper .categories-links a {
|
1950 |
-
background-color: #ffaf25;
|
1951 |
-
color: #ffffff;
|
1952 |
-
padding: 4px 8px;
|
1953 |
-
margin-right: 5px;
|
1954 |
-
font-size: 14px;
|
1955 |
-
}
|
1956 |
-
|
1957 |
-
.tpg-el-main-wrapper .grid_hover-layout5 .entry-title-wrapper .categories-links {
|
1958 |
-
margin-bottom: 10px;
|
1959 |
-
}
|
1960 |
-
|
1961 |
-
.tpg-el-main-wrapper .grid_hover-layout5 .entry-title-wrapper .categories-links a:hover {
|
1962 |
-
background-color: #ee9e14;
|
1963 |
-
}
|
1964 |
-
|
1965 |
-
.comment-visibility-default .grid_hover-layout5 .post-meta-tags {
|
1966 |
-
color: rgba(255, 255, 255, .8);
|
1967 |
-
font-size: 14px;
|
1968 |
-
}
|
1969 |
-
|
1970 |
-
.rt-tpg-container .grid_hover-layout5 .offset-right .rt-holder .grid-hover-content {
|
1971 |
-
padding: 30px 30px 15px;
|
1972 |
-
}
|
1973 |
-
|
1974 |
-
@media (max-width: 991px) {
|
1975 |
-
.rt-tpg-container .grid_hover-layout5 .offset-right .rt-holder .grid-hover-content {
|
1976 |
-
padding: 20px;
|
1977 |
-
}
|
1978 |
-
}
|
1979 |
-
|
1980 |
-
.rt-tpg-container .grid_hover-layout5 .offset-left .rt-holder .grid-hover-content {
|
1981 |
-
padding: 40px 20px 25px 40px;
|
1982 |
-
}
|
1983 |
-
|
1984 |
-
.rt-tpg-container .grid_hover-layout5 .offset-left .rt-holder:hover .grid-hover-content {
|
1985 |
-
padding-bottom: 25px;
|
1986 |
-
}
|
1987 |
-
|
1988 |
-
.rt-tpg-container .grid_hover-layout5 .offset-left .entry-title-wrapper .entry-title {
|
1989 |
-
font-size: 26px;
|
1990 |
-
}
|
1991 |
-
|
1992 |
-
.rt-tpg-container .grid_hover-layout5 .offset-right .entry-title-wrapper .entry-title {
|
1993 |
-
font-size: 20px;
|
1994 |
-
}
|
1995 |
-
|
1996 |
-
.tpg-el-main-wrapper.grid_hover-layout5-2-main .grid_hover-layout5 {
|
1997 |
-
flex-direction: row-reverse;
|
1998 |
-
}
|
1999 |
-
|
2000 |
-
|
2001 |
-
/*********************************
|
2002 |
-
# Grid Hover Layout 6
|
2003 |
-
**********************************/
|
2004 |
-
|
2005 |
-
.grid_hover-layout6-2-main .grid_hover_layout_wrapper {
|
2006 |
-
flex-direction: row-reverse;
|
2007 |
-
}
|
2008 |
-
|
2009 |
-
/*********************************
|
2010 |
-
# Grid Hover Layout 7
|
2011 |
-
**********************************/
|
2012 |
-
|
2013 |
-
.tpg-el-main-wrapper.grid_hover-layout7-2-main .grid_hover-layout7 {
|
2014 |
-
flex-direction: row-reverse;
|
2015 |
-
}
|
2016 |
-
|
2017 |
-
|
2018 |
-
/*********************************
|
2019 |
-
# Grid Hover Layout 8
|
2020 |
-
**********************************/
|
2021 |
-
|
2022 |
-
.rt-tpg-container .grid_hover-layout8 .display-grid-wrapper {
|
2023 |
-
display: grid;
|
2024 |
-
grid-template-columns: 1fr 1fr;
|
2025 |
-
grid-gap: 5px;
|
2026 |
-
grid-auto-rows: 280px;
|
2027 |
-
margin-bottom: 5px;
|
2028 |
-
width: 100%;
|
2029 |
-
}
|
2030 |
-
|
2031 |
-
.rt-tpg-container .grid_hover-layout8 .display-grid-wrapper .rt-grid-item {
|
2032 |
-
padding: 0;
|
2033 |
-
}
|
2034 |
-
|
2035 |
-
@media (min-width: 992px) {
|
2036 |
-
.rt-tpg-container .grid_hover-layout8 .display-grid-wrapper {
|
2037 |
-
grid-template-columns: 27% 44% 27%;
|
2038 |
-
}
|
2039 |
-
}
|
2040 |
-
|
2041 |
-
@media (min-width: 768px) {
|
2042 |
-
|
2043 |
-
.rt-tpg-container .grid_hover-layout8 .display-grid-wrapper {
|
2044 |
-
grid-template-columns: 32% 36% 32%;
|
2045 |
-
}
|
2046 |
-
|
2047 |
-
|
2048 |
-
.rt-tpg-container .grid_hover-layout8 .rt-grid-hover-item:nth-child(5n+1) {
|
2049 |
-
grid-column: 1 / 2;
|
2050 |
-
grid-row: 1;
|
2051 |
-
}
|
2052 |
-
|
2053 |
-
.rt-tpg-container .grid_hover-layout8 .rt-grid-hover-item:nth-child(5n+2) {
|
2054 |
-
grid-column: 1 / 2;
|
2055 |
-
grid-row: 2;
|
2056 |
-
}
|
2057 |
-
|
2058 |
-
.rt-tpg-container .grid_hover-layout8 .rt-grid-hover-item:nth-child(5n+3) {
|
2059 |
-
grid-column: 2 / 3;
|
2060 |
-
grid-row: 1/3;
|
2061 |
-
}
|
2062 |
-
|
2063 |
-
.rt-tpg-container .grid_hover-layout8 .rt-grid-hover-item:nth-child(5n+4) {
|
2064 |
-
grid-column: 3 / 4;
|
2065 |
-
grid-row: 1;
|
2066 |
-
}
|
2067 |
-
|
2068 |
-
.rt-tpg-container .grid_hover-layout8 .rt-grid-hover-item:nth-child(5n+5) {
|
2069 |
-
grid-column: 3 / 4;
|
2070 |
-
grid-row: 2;
|
2071 |
-
}
|
2072 |
-
|
2073 |
-
|
2074 |
-
}
|
2075 |
-
|
2076 |
-
@media (max-width: 767px) {
|
2077 |
-
.rt-tpg-container .grid_hover-layout8 .display-grid-wrapper {
|
2078 |
-
grid-template-columns: 1fr;
|
2079 |
-
}
|
2080 |
-
}
|
2081 |
-
|
2082 |
-
.tpg-el-main-wrapper .grid_hover-layout8 .rt-holder .rt-el-content-wrapper {
|
2083 |
-
height: 100%;
|
2084 |
-
}
|
2085 |
-
|
2086 |
-
.tpg-el-main-wrapper .grid_hover-layout8 .rt-holder .rt-el-content-wrapper .rt-img-holder,
|
2087 |
-
.tpg-el-main-wrapper .grid_hover-layout8 .rt-holder .rt-el-content-wrapper .rt-img-holder img {
|
2088 |
-
height: 100%;
|
2089 |
-
}
|
2090 |
-
|
2091 |
-
/*********************************
|
2092 |
-
# Grid Hover Layout 9
|
2093 |
-
**********************************/
|
2094 |
-
|
2095 |
-
.tpg-el-main-wrapper .grid_hover-layout9 {
|
2096 |
-
flex-direction: row-reverse;
|
2097 |
-
}
|
2098 |
-
|
2099 |
-
.tpg-el-main-wrapper.grid_hover-layout9-2-main .grid_hover-layout9 {
|
2100 |
-
flex-direction: row;
|
2101 |
-
}
|
2102 |
-
|
2103 |
-
.tpg-el-main-wrapper .grid_hover-layout9 .offset-right .tpg-el-image-wrap img {
|
2104 |
-
height: 193px;
|
2105 |
-
}
|
2106 |
-
|
2107 |
-
.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout9 .offset-right .rt-grid-hover-item .rt-holder .rt-el-post-meta {
|
2108 |
-
display: none;
|
2109 |
-
}
|
2110 |
-
|
2111 |
-
.rt-tpg-container .grid_hover-layout9 .offset-left .rt-holder .grid-hover-content {
|
2112 |
-
padding: 40px 40px 25px 40px;
|
2113 |
-
}
|
2114 |
-
|
2115 |
-
@media (max-width: 767px) {
|
2116 |
-
.tpg-el-main-wrapper .grid_hover-layout9 .offset-right .tpg-el-image-wrap img {
|
2117 |
-
height: 230px;
|
2118 |
-
}
|
2119 |
-
}
|
2120 |
-
|
2121 |
-
/*********************************
|
2122 |
-
# Grid Hover Layout 10
|
2123 |
-
**********************************/
|
2124 |
-
|
2125 |
-
.rt-tpg-container .grid_hover-layout10 .rt-img-holder {
|
2126 |
-
height: 385px;
|
2127 |
-
}
|
2128 |
-
|
2129 |
-
.grid-hover-overlay-height-default .grid_hover-layout10 .rt-holder .grid-hover-content {
|
2130 |
-
justify-content: center;
|
2131 |
-
text-align: center;
|
2132 |
-
}
|
2133 |
-
|
2134 |
-
|
2135 |
-
/*********************************
|
2136 |
-
# Grid Hover Layout 11
|
2137 |
-
**********************************/
|
2138 |
-
|
2139 |
-
.rt-tpg-container .grid_hover-layout11 .rt-img-holder {
|
2140 |
-
height: 410px;
|
2141 |
-
}
|
2142 |
-
|
2143 |
-
|
2144 |
-
@media (max-width: 991px) {
|
2145 |
-
.rt-tpg-container .grid_hover-layout11 .rt-img-holder {
|
2146 |
-
height: 370px;
|
2147 |
-
}
|
2148 |
-
}
|
2149 |
-
|
2150 |
-
@media (max-width: 767px) {
|
2151 |
-
.rt-tpg-container .grid_hover-layout11 .rt-img-holder {
|
2152 |
-
height: 300px;
|
2153 |
-
}
|
2154 |
-
}
|
2155 |
-
|
2156 |
-
.rt-tpg-container .grid_hover-layout11 .entry-title-wrapper {
|
2157 |
-
margin-top: -8px;
|
2158 |
-
}
|
2159 |
-
|
2160 |
-
.rt-tpg-container .grid_hover-layout11 .entry-title-wrapper .entry-title {
|
2161 |
-
font-size: 26px;
|
2162 |
-
line-height: 1.4;
|
2163 |
-
}
|
2164 |
-
|
2165 |
-
.rt-tpg-container .grid_hover-layout11 .rt-img-holder .tpg-separate-category.style1 {
|
2166 |
-
margin-left: 30px;
|
2167 |
-
margin-top: 20px;
|
2168 |
-
}
|
2169 |
-
|
2170 |
-
.rt-tpg-container .grid_hover-layout11 .rt-img-holder .tpg-separate-category.style1 .categories-links {
|
2171 |
-
padding: 2px 9px 3px;
|
2172 |
-
line-height: 1.3;
|
2173 |
-
letter-spacing: 0.05rem;
|
2174 |
-
text-transform: capitalize;
|
2175 |
-
display: inline-block;
|
2176 |
-
position: relative;
|
2177 |
-
background-color: #ffaf25;
|
2178 |
-
color: #ffffff;
|
2179 |
-
margin-right: 25px;
|
2180 |
-
}
|
2181 |
-
|
2182 |
-
.rt-tpg-container .grid_hover-layout11 .rt-img-holder .tpg-separate-category.style1 .categories-links a {
|
2183 |
-
color: #ffffff;
|
2184 |
-
font-size: 12px;
|
2185 |
-
font-weight: 500;
|
2186 |
-
display: inline;
|
2187 |
-
}
|
2188 |
-
|
2189 |
-
.rt-tpg-container .grid_hover-layout11 .rt-img-holder .tpg-separate-category.style1 .categories-links a:hover {
|
2190 |
-
color: var(--tpg-primary-color);
|
2191 |
-
}
|
2192 |
-
|
2193 |
-
.rt-tpg-container .grid_hover-layout11 .rt-img-holder .tpg-separate-category.style1 .categories-links:after {
|
2194 |
-
content: "";
|
2195 |
-
position: absolute;
|
2196 |
-
top: 0;
|
2197 |
-
right: -7px;
|
2198 |
-
border-top: 8px solid #ffaf25;
|
2199 |
-
border-right: 8px solid transparent;
|
2200 |
-
}
|
2201 |
-
|
2202 |
-
.rt-tpg-container .grid_hover-layout11 .rt-holder .rt-el-post-meta {
|
2203 |
-
order: -1;
|
2204 |
-
}
|
2205 |
-
|
2206 |
-
.category-visibility-default .grid_hover-layout11 .post-meta-tags .categories-links {
|
2207 |
-
display: none;
|
2208 |
-
}
|
2209 |
-
|
2210 |
-
|
2211 |
-
/*********************************
|
2212 |
-
# Slider Layout 1
|
2213 |
-
**********************************/
|
2214 |
-
|
2215 |
-
/*Slider Common style */
|
2216 |
-
|
2217 |
-
.tpg-el-main-wrapper .swiper-button-next:after,
|
2218 |
-
.tpg-el-main-wrapper .swiper-button-prev:after {
|
2219 |
-
font-family: eicons;
|
2220 |
-
font-size: inherit;
|
2221 |
-
font-weight: 400;
|
2222 |
-
|
2223 |
-
}
|
2224 |
-
|
2225 |
-
|
2226 |
-
.tpg-el-main-wrapper .swiper-button-next:after {
|
2227 |
-
content: '\e87d';
|
2228 |
-
}
|
2229 |
-
|
2230 |
-
.tpg-el-main-wrapper .swiper-button-prev:after {
|
2231 |
-
content: '\e87e';
|
2232 |
-
}
|
2233 |
-
|
2234 |
-
.tpg-el-main-wrapper .slider-main-wrapper .swiper-pagination {
|
2235 |
-
position: absolute;
|
2236 |
-
width: 100%;
|
2237 |
-
min-height: 40px;
|
2238 |
-
bottom: -55px;
|
2239 |
-
}
|
2240 |
-
|
2241 |
-
.slider-dot-enable-yes .rt-tpg-container {
|
2242 |
-
padding-bottom: 50px;
|
2243 |
-
}
|
2244 |
-
|
2245 |
-
.tpg-el-main-wrapper .swiper-pagination span {
|
2246 |
-
transition: 0.4s;
|
2247 |
-
margin: 0 3px;
|
2248 |
-
}
|
2249 |
-
|
2250 |
-
.tpg-el-main-wrapper .swiper-pagination span:hover {
|
2251 |
-
background-color: var(--tpg-primary-color);
|
2252 |
-
}
|
2253 |
-
|
2254 |
-
.tpg-el-main-wrapper .swiper-pagination span.swiper-pagination-bullet-active {
|
2255 |
-
background-color: var(--tpg-primary-color);
|
2256 |
-
width: 20px;
|
2257 |
-
border-radius: 10px;
|
2258 |
-
}
|
2259 |
-
|
2260 |
-
.tpg-el-main-wrapper .rt-swiper-holder .tpg-el-image-wrap img {
|
2261 |
-
width: 100%;
|
2262 |
-
}
|
2263 |
-
|
2264 |
-
.tpg-el-main-wrapper .rt-swiper-holder .tpg-el-image-wrap img[src="#none"] {
|
2265 |
-
display: none;
|
2266 |
-
}
|
2267 |
-
|
2268 |
-
.tpg-el-main-wrapper .rt-swiper-holder {
|
2269 |
-
margin-left: -15px;
|
2270 |
-
margin-right: -15px;
|
2271 |
-
}
|
2272 |
-
|
2273 |
-
body .elementor-section .tpg-el-main-wrapper .rt-slider-item {
|
2274 |
-
padding: 0 7px;
|
2275 |
-
background: none;
|
2276 |
-
}
|
2277 |
-
|
2278 |
-
body .elementor-section .tpg-el-main-wrapper.slider-is-disable .rt-slider-item {
|
2279 |
-
padding: 0;
|
2280 |
-
}
|
2281 |
-
|
2282 |
-
.tpg-el-main-wrapper .slider-main-wrapper {
|
2283 |
-
position: relative;
|
2284 |
-
opacity: 0;
|
2285 |
-
}
|
2286 |
-
|
2287 |
-
.tpg-el-main-wrapper.loading {
|
2288 |
-
min-height: 300px;
|
2289 |
-
transition: 0.4s;
|
2290 |
-
}
|
2291 |
-
|
2292 |
-
.tpg-el-main-wrapper.loading::before {
|
2293 |
-
width: 32px;
|
2294 |
-
height: 32px;
|
2295 |
-
display: inline-block;
|
2296 |
-
float: none;
|
2297 |
-
border: 2px solid currentColor;
|
2298 |
-
background: transparent;
|
2299 |
-
border-bottom-color: transparent;
|
2300 |
-
border-radius: 100%;
|
2301 |
-
-webkit-animation: ball-clip-rotate 0.75s linear infinite;
|
2302 |
-
-moz-animation: ball-clip-rotate 0.75s linear infinite;
|
2303 |
-
-o-animation: ball-clip-rotate 0.75s linear infinite;
|
2304 |
-
animation: ball-clip-rotate 0.75s linear infinite;
|
2305 |
-
left: 50%;
|
2306 |
-
top: 50%;
|
2307 |
-
position: absolute;
|
2308 |
-
z-index: 9999999999;
|
2309 |
-
color: red;
|
2310 |
-
}
|
2311 |
-
|
2312 |
-
.tpg-el-main-wrapper .rt-swiper-holder {
|
2313 |
-
overflow: hidden;
|
2314 |
-
}
|
2315 |
-
|
2316 |
-
.is-carousel-overflow-none .tpg-el-main-wrapper .rt-swiper-holder {
|
2317 |
-
overflow: unset;
|
2318 |
-
}
|
2319 |
-
|
2320 |
-
.slider-arrow-position-top-right .slider-main-wrapper,
|
2321 |
-
.slider-arrow-position-top-left .slider-main-wrapper {
|
2322 |
-
margin-top: 45px;
|
2323 |
-
}
|
2324 |
-
|
2325 |
-
.section-title-style-default.slider-arrow-position-top-right .slider-main-wrapper,
|
2326 |
-
.section-title-style-default.slider-arrow-position-top-left .slider-main-wrapper {
|
2327 |
-
margin-top: 0;
|
2328 |
-
}
|
2329 |
-
|
2330 |
-
.slider-arrow-position-top-right .swiper-navigation {
|
2331 |
-
position: absolute;
|
2332 |
-
top: -40px;
|
2333 |
-
right: 0;
|
2334 |
-
}
|
2335 |
-
|
2336 |
-
.slider-arrow-position-top-left .swiper-navigation {
|
2337 |
-
position: absolute;
|
2338 |
-
top: -40px;
|
2339 |
-
left: 0;
|
2340 |
-
}
|
2341 |
-
|
2342 |
-
.slider-arrow-position-show-hover .swiper-navigation .slider-btn,
|
2343 |
-
.slider-arrow-position-default .swiper-navigation .slider-btn {
|
2344 |
-
position: absolute;
|
2345 |
-
top: 50%;
|
2346 |
-
transform: translateY(-50%);
|
2347 |
-
margin: 0 !important;
|
2348 |
-
}
|
2349 |
-
|
2350 |
-
.slider-arrow-position-show-hover .swiper-navigation .slider-btn.swiper-button-next {
|
2351 |
-
right: 0;
|
2352 |
-
left: auto;
|
2353 |
-
opacity: 0;
|
2354 |
-
}
|
2355 |
-
|
2356 |
-
.slider-arrow-position-show-hover .swiper-navigation .slider-btn.swiper-button-prev {
|
2357 |
-
left: 0;
|
2358 |
-
right: auto;
|
2359 |
-
opacity: 0;
|
2360 |
-
}
|
2361 |
-
|
2362 |
-
.slider-arrow-position-show-hover .slider-main-wrapper:hover .swiper-navigation .slider-btn.swiper-button-next {
|
2363 |
-
right: 40px;
|
2364 |
-
opacity: 1;
|
2365 |
-
}
|
2366 |
-
|
2367 |
-
.slider-arrow-position-show-hover .slider-main-wrapper:hover .swiper-navigation .slider-btn.swiper-button-prev {
|
2368 |
-
left: 40px;
|
2369 |
-
opacity: 1;
|
2370 |
-
}
|
2371 |
-
|
2372 |
-
.slider-arrow-position-default .swiper-navigation .slider-btn.swiper-button-next {
|
2373 |
-
right: -50px;
|
2374 |
-
left: auto;
|
2375 |
-
}
|
2376 |
-
|
2377 |
-
.slider-arrow-position-default .swiper-navigation .slider-btn.swiper-button-prev {
|
2378 |
-
right: auto;
|
2379 |
-
left: -50px;
|
2380 |
-
}
|
2381 |
-
|
2382 |
-
body:not(.rtl) .slider-direction-rtl .rt-el-content-wrapper {
|
2383 |
-
text-align: right;
|
2384 |
-
}
|
2385 |
-
|
2386 |
-
body:not(.rtl) .slider-direction-rtl .rt-tpg-container .rt-el-post-meta i,
|
2387 |
-
body:not(.rtl) .slider-direction-rtl .tpg-el-main-wrapper .post-meta-tags span img {
|
2388 |
-
margin-right: 0;
|
2389 |
-
margin-left: 5px;
|
2390 |
-
}
|
2391 |
-
|
2392 |
-
.slider-arrow-position-show-hover .swiper-wrapper,
|
2393 |
-
.slider-arrow-position-default .swiper-wrapper {
|
2394 |
-
padding-bottom: 3px;
|
2395 |
-
}
|
2396 |
-
|
2397 |
-
.slider-dots-align-left .tpg-el-main-wrapper .swiper-pagination {
|
2398 |
-
text-align: left;
|
2399 |
-
}
|
2400 |
-
|
2401 |
-
.slider-dots-align-right .tpg-el-main-wrapper .swiper-pagination {
|
2402 |
-
text-align: right;
|
2403 |
-
}
|
2404 |
-
|
2405 |
-
.slider-dots-style-background .tpg-el-main-wrapper .swiper-pagination {
|
2406 |
-
width: auto;
|
2407 |
-
min-height: 20px;
|
2408 |
-
left: 50%;
|
2409 |
-
transform: translateX(-50%);
|
2410 |
-
background: rgba(0, 0, 0, .3);
|
2411 |
-
padding: 9px 20px;
|
2412 |
-
border-radius: 30px;
|
2413 |
-
line-height: 1;
|
2414 |
-
}
|
2415 |
-
|
2416 |
-
/*lazy load css*/
|
2417 |
-
.is-lazy-load-yes .rt-tpg-container .rt-holder .tpg-el-image-wrap {
|
2418 |
-
background: #000;
|
2419 |
-
}
|
2420 |
-
|
2421 |
-
.is-lazy-load-yes .swiper-lazy-preloader {
|
2422 |
-
width: 42px;
|
2423 |
-
height: 42px;
|
2424 |
-
position: absolute;
|
2425 |
-
left: 50%;
|
2426 |
-
top: 50%;
|
2427 |
-
margin-left: -21px;
|
2428 |
-
margin-top: -21px;
|
2429 |
-
z-index: 10;
|
2430 |
-
transform-origin: 50%;
|
2431 |
-
animation: swiper-preloader-spin 1s infinite linear;
|
2432 |
-
box-sizing: border-box;
|
2433 |
-
border: 4px solid #fff;
|
2434 |
-
border-radius: 50%;
|
2435 |
-
border-top-color: transparent;
|
2436 |
-
}
|
2437 |
-
|
2438 |
-
.is-lazy-load-yes .swiper-lazy-preloader:after {
|
2439 |
-
content: none;
|
2440 |
-
}
|
2441 |
-
|
2442 |
-
/*end lazy load css*/
|
2443 |
-
|
2444 |
-
.rt-tpg-container .slider-layout4 .entry-title-wrapper .entry-title,
|
2445 |
-
.rt-tpg-container .slider-layout5 .entry-title-wrapper .entry-title,
|
2446 |
-
.rt-tpg-container .slider-layout6 .entry-title-wrapper .entry-title,
|
2447 |
-
.rt-tpg-container .slider-layout7 .entry-title-wrapper .entry-title,
|
2448 |
-
.rt-tpg-container .slider-layout8 .entry-title-wrapper .entry-title,
|
2449 |
-
.rt-tpg-container .slider-layout9 .entry-title-wrapper .entry-title {
|
2450 |
-
font-size: 22px;
|
2451 |
-
}
|
2452 |
-
|
2453 |
-
@media (max-width: 500px) {
|
2454 |
-
.slider-dots-style-background .tpg-el-main-wrapper .swiper-pagination {
|
2455 |
-
min-width: 225px;
|
2456 |
-
}
|
2457 |
-
}
|
2458 |
-
|
2459 |
-
.slider-dots-style-background .tpg-el-main-wrapper .swiper-pagination span {
|
2460 |
-
background: #fff;
|
2461 |
-
}
|
2462 |
-
|
2463 |
-
.slider-dots-style-background .swiper-pagination span.swiper-pagination-bullet-active,
|
2464 |
-
.slider-dots-style-background .swiper-pagination span:hover {
|
2465 |
-
background: var(--tpg-primary-color);
|
2466 |
-
}
|
2467 |
-
|
2468 |
-
@media (min-width: 768px) and (max-width: 1360px) {
|
2469 |
-
.slider-arrow-position-show-hover .rt-tpg-container .slider-main-wrapper,
|
2470 |
-
.slider-arrow-position-default .rt-tpg-container .slider-main-wrapper {
|
2471 |
-
margin-left: 50px;
|
2472 |
-
margin-right: 50px;
|
2473 |
-
}
|
2474 |
-
}
|
2475 |
-
|
2476 |
-
@media (max-width: 767px) {
|
2477 |
-
.slider-arrow-position-show-hover .rt-tpg-container .slider-main-wrapper .swiper-navigation,
|
2478 |
-
.slider-arrow-position-default .rt-tpg-container .slider-main-wrapper .swiper-navigation {
|
2479 |
-
position: absolute;
|
2480 |
-
top: -27px;
|
2481 |
-
right: 0;
|
2482 |
-
}
|
2483 |
-
|
2484 |
-
.slider-arrow-position-show-hover .swiper-navigation .slider-btn,
|
2485 |
-
.slider-arrow-position-default .swiper-navigation .slider-btn {
|
2486 |
-
position: static;
|
2487 |
-
}
|
2488 |
-
|
2489 |
-
.slider-arrow-position-show-hover .rt-tpg-container .slider-main-wrapper,
|
2490 |
-
.slider-arrow-position-default .rt-tpg-container .slider-main-wrapper {
|
2491 |
-
margin-top: 40px;
|
2492 |
-
}
|
2493 |
-
}
|
2494 |
-
|
2495 |
-
.enable-two-rows-yes .rt-tpg-container .slider-column.swiper-slide .rt-slider-item {
|
2496 |
-
padding-top: 15px;
|
2497 |
-
padding-bottom: 15px;
|
2498 |
-
}
|
2499 |
-
|
2500 |
-
|
2501 |
-
/*Slider layout 1*/
|
2502 |
-
/*Slider layout 2*/
|
2503 |
-
|
2504 |
-
|
2505 |
-
.rt-tpg-container .slider-layout1 .rt-img-holder,
|
2506 |
-
.rt-tpg-container .slider-layout2 .rt-img-holder {
|
2507 |
-
height: 230px;
|
2508 |
-
}
|
2509 |
-
|
2510 |
-
/*Slider layout 6*/
|
2511 |
-
|
2512 |
-
.rt-tpg-container .grid_hover-layout3 .rt-grid-hover-item .rt-holder .rt-tpg-social-share,
|
2513 |
-
.rt-tpg-container .grid_hover-layout3 .rt-grid-hover-item .rt-holder .post-footer,
|
2514 |
-
.rt-tpg-container .grid_hover-layout3 .rt-grid-hover-item .rt-holder .rt-el-post-meta,
|
2515 |
-
.rt-tpg-container .grid_hover-layout5 .rt-grid-hover-item .rt-holder .rt-el-post-meta,
|
2516 |
-
.rt-tpg-container .grid_hover-layout3 .rt-grid-hover-item .rt-holder .tpg-el-excerpt {
|
2517 |
-
margin-bottom: 15px;
|
2518 |
-
}
|
2519 |
-
|
2520 |
-
/*Slider layout 7*/
|
2521 |
-
|
2522 |
-
.rt-tpg-container .slider-layout7 .rt-holder .rt-img-holder {
|
2523 |
-
height: 320px;
|
2524 |
-
}
|
2525 |
-
|
2526 |
-
.rt-tpg-container .slider-layout7 .rt-grid-hover-item .rt-holder .grid-hover-content {
|
2527 |
-
justify-content: center;
|
2528 |
-
align-items: center;
|
2529 |
-
text-align: center;
|
2530 |
-
}
|
2531 |
-
|
2532 |
-
/*Slider layout 8*/
|
2533 |
-
|
2534 |
-
.grid-hover-overlay-height-default .slider-layout8 .rt-holder .grid-hover-content {
|
2535 |
-
text-align: left;
|
2536 |
-
}
|
2537 |
-
|
2538 |
-
/* Slider layout 11 */
|
2539 |
-
|
2540 |
-
/* Common style for layout 11, 12*/
|
2541 |
-
|
2542 |
-
.tpg-el-main-wrapper.slider-layout11-main,
|
2543 |
-
.tpg-el-main-wrapper.slider-layout12-main {
|
2544 |
-
padding: 0 !important;
|
2545 |
-
}
|
2546 |
-
|
2547 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-navigation,
|
2548 |
-
.tpg-el-main-wrapper .slider-layout12 .swiper-navigation {
|
2549 |
-
display: none;
|
2550 |
-
}
|
2551 |
-
|
2552 |
-
body .tpg-el-main-wrapper .slider-layout11 .rt-slider-item,
|
2553 |
-
body .tpg-el-main-wrapper .slider-layout12 .rt-slider-item {
|
2554 |
-
padding-left: 0 !important;
|
2555 |
-
padding-right: 0 !important;
|
2556 |
-
}
|
2557 |
-
|
2558 |
-
body .tpg-el-main-wrapper .slider-layout11 .rt-swiper-holder,
|
2559 |
-
body .tpg-el-main-wrapper .slider-layout12 .rt-swiper-holder {
|
2560 |
-
margin-left: 0 !important;
|
2561 |
-
margin-right: 0 !important;
|
2562 |
-
}
|
2563 |
-
|
2564 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .p-content *,
|
2565 |
-
.tpg-el-main-wrapper .slider-layout12 .swiper-thumb-wrapper .swiper-wrapper .p-content * {
|
2566 |
-
color: #ffffff;
|
2567 |
-
pointer-events: none;
|
2568 |
-
}
|
2569 |
-
|
2570 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .p-content .post-taxonomy,
|
2571 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .p-content .thumb-date,
|
2572 |
-
.tpg-el-main-wrapper .slider-layout12 .swiper-thumb-wrapper .swiper-wrapper .p-content .post-taxonomy,
|
2573 |
-
.tpg-el-main-wrapper .slider-layout12 .swiper-thumb-wrapper .swiper-wrapper .p-content .thumb-date {
|
2574 |
-
opacity: .85;
|
2575 |
-
}
|
2576 |
-
|
2577 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .p-content .rt-separator,
|
2578 |
-
.tpg-el-main-wrapper .slider-layout12 .swiper-thumb-wrapper .swiper-wrapper .p-content .rt-separator {
|
2579 |
-
margin-left: 2px;
|
2580 |
-
margin-right: 5px;
|
2581 |
-
}
|
2582 |
-
|
2583 |
-
.tpg-el-main-wrapper.slider-layout11-main .tpg-widget-heading-wrapper,
|
2584 |
-
.tpg-el-main-wrapper.slider-layout12-main .tpg-widget-heading-wrapper {
|
2585 |
-
padding-left: 30px;
|
2586 |
-
padding-right: 30px;
|
2587 |
-
}
|
2588 |
-
|
2589 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .swiper-slide,
|
2590 |
-
.tpg-el-main-wrapper .slider-layout12 .swiper-thumb-wrapper .swiper-wrapper .swiper-slide {
|
2591 |
-
pointer-events: all;
|
2592 |
-
}
|
2593 |
-
|
2594 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .post-thumbnail-wrap {
|
2595 |
-
overflow: hidden;
|
2596 |
-
align-items: center;
|
2597 |
-
}
|
2598 |
-
|
2599 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .post-thumbnail-wrap,
|
2600 |
-
.tpg-el-main-wrapper .slider-layout12 .swiper-thumb-wrapper .swiper-wrapper .post-thumbnail-wrap {
|
2601 |
-
display: flex;
|
2602 |
-
cursor: pointer;
|
2603 |
-
position: relative;
|
2604 |
-
}
|
2605 |
-
|
2606 |
-
.tpg-el-main-wrapper.slider-layout11-main .rt-holder .rt-img-holder,
|
2607 |
-
.tpg-el-main-wrapper.slider-layout12-main .rt-holder .rt-img-holder {
|
2608 |
-
height: 100%;
|
2609 |
-
}
|
2610 |
-
|
2611 |
-
/* end Common style for layout 11, 12*/
|
2612 |
-
|
2613 |
-
.tpg-el-main-wrapper.slider-layout11-main .slider-content-inner {
|
2614 |
-
max-width: 664px;
|
2615 |
-
}
|
2616 |
-
|
2617 |
-
|
2618 |
-
.slider-layout11-main .rt-holder .rt-detail .read-more a {
|
2619 |
-
background: #2962ff;
|
2620 |
-
border-color: #2962ff;
|
2621 |
-
border-radius: 3px;
|
2622 |
-
padding: 8px 30px;
|
2623 |
-
}
|
2624 |
-
|
2625 |
-
.slider-layout11-main .rt-holder .rt-detail .read-more a:hover {
|
2626 |
-
border-color: #ffffff;
|
2627 |
-
background-color: transparent;
|
2628 |
-
color: #ffffff;
|
2629 |
-
}
|
2630 |
-
|
2631 |
-
|
2632 |
-
.tpg-el-main-wrapper.slider-layout11-main .swiper-wrapper {
|
2633 |
-
padding: 0 !important;
|
2634 |
-
}
|
2635 |
-
|
2636 |
-
.tpg-el-main-wrapper.slider-layout11-main .rt-el-post-meta {
|
2637 |
-
margin-bottom: 15px;
|
2638 |
-
}
|
2639 |
-
|
2640 |
-
|
2641 |
-
.rt-tpg-container.slider-layout11-main .rt-holder .grid-hover-content:before {
|
2642 |
-
background: rgba(24, 24, 24, 0.5);
|
2643 |
-
}
|
2644 |
-
|
2645 |
-
.rt-tpg-container.slider-layout11-main .rt-holder:hover .grid-hover-content:before {
|
2646 |
-
opacity: 1;
|
2647 |
-
visibility: visible;
|
2648 |
-
}
|
2649 |
-
|
2650 |
-
.rt-tpg-container.slider-layout11-main .rt-holder .grid-hover-content:after {
|
2651 |
-
display: none;
|
2652 |
-
}
|
2653 |
-
|
2654 |
-
.tpg-el-main-wrapper.slider-layout11-main .rt-grid-hover-item .rt-holder .grid-hover-content {
|
2655 |
-
justify-content: center;
|
2656 |
-
padding-left: 100px;
|
2657 |
-
}
|
2658 |
-
|
2659 |
-
.elementor-section-full_width .slider-layout11-main .rt-grid-hover-item .rt-holder .grid-hover-content {
|
2660 |
-
padding-left: 250px;
|
2661 |
-
}
|
2662 |
-
|
2663 |
-
.tpg-el-main-wrapper.slider-layout11-main .rt-holder .rt-detail .entry-title-wrapper .entry-title {
|
2664 |
-
font-size: 48px;
|
2665 |
-
font-weight: 600;
|
2666 |
-
line-height: 58px;
|
2667 |
-
}
|
2668 |
-
|
2669 |
-
.rt-tpg-container .slider-layout13 .rt-holder .tpg-el-image-wrap {
|
2670 |
-
height: 650px;
|
2671 |
-
background-color: #e4eaf1;
|
2672 |
-
}
|
2673 |
-
|
2674 |
-
.tpg-el-main-wrapper.slider-layout11-main .rt-grid-hover-item .rt-holder .rt-el-content-wrapper,
|
2675 |
-
.tpg-el-main-wrapper.slider-layout12-main .rt-grid-hover-item .rt-holder .rt-el-content-wrapper {
|
2676 |
-
height: 720px;
|
2677 |
-
}
|
2678 |
-
|
2679 |
-
.slider-layout11-main .slider-thumb-main-wrapper {
|
2680 |
-
z-index: 10;
|
2681 |
-
background: rgba(0, 0, 0, 0.5);
|
2682 |
-
pointer-events: none;
|
2683 |
-
}
|
2684 |
-
|
2685 |
-
.tpg-el-main-wrapper .slider-layout11 .slider-thumb-main-wrapper .swiper-thumb-wrapper {
|
2686 |
-
position: relative;
|
2687 |
-
height: 400px;
|
2688 |
-
padding: 0;
|
2689 |
-
overflow: hidden;
|
2690 |
-
pointer-events: all;
|
2691 |
-
padding-right: 30px;
|
2692 |
-
}
|
2693 |
-
|
2694 |
-
.tpg-el-main-wrapper .slider-layout11 .slider-thumb-main-wrapper .swiper-thumb-wrapper .swiper-thumb-pagination {
|
2695 |
-
height: 100%;
|
2696 |
-
position: absolute;
|
2697 |
-
right: 0;
|
2698 |
-
top: 0;
|
2699 |
-
left: auto;
|
2700 |
-
}
|
2701 |
-
|
2702 |
-
.tpg-el-main-wrapper .swiper-thumb-pagination .swiper-pagination-progressbar-fill {
|
2703 |
-
background: #2962ff;
|
2704 |
-
}
|
2705 |
-
|
2706 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .tpg-post-holder {
|
2707 |
-
height: 120px;
|
2708 |
-
}
|
2709 |
-
|
2710 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .p-thumbnail {
|
2711 |
-
flex: 0 0 100px;
|
2712 |
-
max-width: 100px;
|
2713 |
-
height: 100px;
|
2714 |
-
border-radius: 50%;
|
2715 |
-
margin-right: 15px;
|
2716 |
-
overflow: hidden;
|
2717 |
-
transition: 0.4s ease-in-out;
|
2718 |
-
}
|
2719 |
-
|
2720 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .p-thumbnail img {
|
2721 |
-
border-radius: 50%;
|
2722 |
-
background: rgba(255, 255, 255, .1);
|
2723 |
-
padding: 10px;
|
2724 |
-
transition: 0.5s ease-in-out;
|
2725 |
-
height: 100% !important;
|
2726 |
-
}
|
2727 |
-
|
2728 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .swiper-slide:hover .p-thumbnail img,
|
2729 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .swiper-slide-thumb-active .p-thumbnail img {
|
2730 |
-
background: rgba(255, 255, 255, .4);
|
2731 |
-
}
|
2732 |
-
|
2733 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .p-content {
|
2734 |
-
flex: 0 0 calc(100% - 150px);
|
2735 |
-
max-width: calc(100% - 150px);
|
2736 |
-
display: flex;
|
2737 |
-
flex-direction: column;
|
2738 |
-
justify-content: center;
|
2739 |
-
pointer-events: all;
|
2740 |
-
}
|
2741 |
-
|
2742 |
-
|
2743 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .p-content .thumb-title {
|
2744 |
-
font-size: 16px;
|
2745 |
-
font-weight: 600;
|
2746 |
-
line-height: 1.3;
|
2747 |
-
white-space: nowrap;
|
2748 |
-
text-overflow: ellipsis;
|
2749 |
-
overflow: hidden;
|
2750 |
-
margin: 0 0 5px 0;
|
2751 |
-
}
|
2752 |
-
|
2753 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .p-content .thumb-date {
|
2754 |
-
font-size: 12px;
|
2755 |
-
font-weight: 500;
|
2756 |
-
text-transform: uppercase;
|
2757 |
-
letter-spacing: 0.05rem;
|
2758 |
-
opacity: .9;
|
2759 |
-
}
|
2760 |
-
|
2761 |
-
@media (min-width: 768px) {
|
2762 |
-
.tpg-el-main-wrapper .slider-layout11 .slider-thumb-main-wrapper {
|
2763 |
-
position: absolute;
|
2764 |
-
top: 0;
|
2765 |
-
right: 0;
|
2766 |
-
width: 33%;
|
2767 |
-
padding: 0 80px 0 50px;
|
2768 |
-
height: 100%;
|
2769 |
-
display: flex;
|
2770 |
-
justify-content: center;
|
2771 |
-
align-items: center;
|
2772 |
-
min-width: 450px;
|
2773 |
-
}
|
2774 |
-
|
2775 |
-
.tpg-el-main-wrapper.slider-layout11-main .rt-grid-hover-item .rt-holder .grid-hover-content {
|
2776 |
-
padding-right: calc(120px + min(450px, 33%))
|
2777 |
-
}
|
2778 |
-
|
2779 |
-
}
|
2780 |
-
|
2781 |
-
@media (max-width: 1600px) {
|
2782 |
-
.tpg-el-main-wrapper.slider-layout11-main .rt-grid-hover-item .rt-holder .grid-hover-content {
|
2783 |
-
padding-left: 70px;
|
2784 |
-
}
|
2785 |
-
|
2786 |
-
.elementor-section-full_width .slider-layout11-main .rt-grid-hover-item .rt-holder .grid-hover-content {
|
2787 |
-
padding-left: 200px;
|
2788 |
-
}
|
2789 |
-
}
|
2790 |
-
|
2791 |
-
@media (max-width: 1350px) {
|
2792 |
-
.tpg-el-main-wrapper.slider-layout11-main .rt-grid-hover-item .rt-holder .grid-hover-content {
|
2793 |
-
padding-left: 50px;
|
2794 |
-
}
|
2795 |
-
|
2796 |
-
.elementor-section-full_width .slider-layout11-main .rt-grid-hover-item .rt-holder .grid-hover-content {
|
2797 |
-
padding-left: 100px;
|
2798 |
-
}
|
2799 |
-
|
2800 |
-
.tpg-el-main-wrapper.slider-layout11-main .rt-holder .rt-detail .entry-title-wrapper .entry-title {
|
2801 |
-
font-size: 40px;
|
2802 |
-
line-height: 50px;
|
2803 |
-
}
|
2804 |
-
}
|
2805 |
-
|
2806 |
-
@media (min-width: 1200px) {
|
2807 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .post-thumbnail-wrap::before {
|
2808 |
-
content: "";
|
2809 |
-
position: absolute;
|
2810 |
-
top: 0;
|
2811 |
-
left: 0;
|
2812 |
-
height: 100%;
|
2813 |
-
background: #ffffff;
|
2814 |
-
border-radius: 46px 0 0 46px;
|
2815 |
-
opacity: 0;
|
2816 |
-
width: 0;
|
2817 |
-
transition: .5s ease-in-out;
|
2818 |
-
}
|
2819 |
-
|
2820 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .swiper-slide-thumb-active .post-thumbnail-wrap::before {
|
2821 |
-
width: 100%;
|
2822 |
-
opacity: .1;
|
2823 |
-
}
|
2824 |
-
}
|
2825 |
-
|
2826 |
-
@media (max-width: 1199px) {
|
2827 |
-
.tpg-el-main-wrapper.slider-layout11-main .slider-content-inner {
|
2828 |
-
max-width: 550px;
|
2829 |
-
}
|
2830 |
-
|
2831 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .p-content {
|
2832 |
-
display: none;
|
2833 |
-
}
|
2834 |
-
|
2835 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .p-thumbnail {
|
2836 |
-
flex: 0 0 80px;
|
2837 |
-
max-width: 80px;
|
2838 |
-
height: 80px;
|
2839 |
-
margin-right: 0;
|
2840 |
-
}
|
2841 |
-
|
2842 |
-
.tpg-el-main-wrapper .slider-layout11 .slider-thumb-main-wrapper .swiper-thumb-wrapper .swiper-thumb-pagination {
|
2843 |
-
display: none;
|
2844 |
-
}
|
2845 |
-
|
2846 |
-
.rt-tpg-container .slider-layout13 .rt-holder .tpg-el-image-wrap {
|
2847 |
-
height: 400px;
|
2848 |
-
}
|
2849 |
-
|
2850 |
-
.tpg-el-main-wrapper.slider-layout11-main .rt-grid-hover-item .rt-holder .rt-el-content-wrapper,
|
2851 |
-
.tpg-el-main-wrapper.slider-layout12-main .rt-grid-hover-item .rt-holder .rt-el-content-wrapper {
|
2852 |
-
height: 500px;
|
2853 |
-
}
|
2854 |
-
|
2855 |
-
.tpg-el-main-wrapper .slider-layout11 .slider-thumb-main-wrapper .swiper-thumb-wrapper {
|
2856 |
-
height: 300px;
|
2857 |
-
width: 100px;
|
2858 |
-
padding: 0 !important;
|
2859 |
-
}
|
2860 |
-
|
2861 |
-
|
2862 |
-
.tpg-el-main-wrapper.slider-layout11-main .rt-grid-hover-item .rt-holder .grid-hover-content {
|
2863 |
-
padding-left: 50px;
|
2864 |
-
padding-right: 130px;
|
2865 |
-
}
|
2866 |
-
|
2867 |
-
.tpg-el-main-wrapper.slider-layout11-main .rt-holder .rt-detail .entry-title-wrapper .entry-title {
|
2868 |
-
font-size: 36px;
|
2869 |
-
line-height: 46px;
|
2870 |
-
}
|
2871 |
-
|
2872 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .p-thumbnail {
|
2873 |
-
flex: 0 0 70px;
|
2874 |
-
max-width: 70px;
|
2875 |
-
height: 70px;
|
2876 |
-
}
|
2877 |
-
|
2878 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .p-thumbnail img {
|
2879 |
-
padding: 7px;
|
2880 |
-
}
|
2881 |
-
|
2882 |
-
|
2883 |
-
}
|
2884 |
-
|
2885 |
-
@media (min-width: 768px) and (max-width: 1199px) {
|
2886 |
-
.tpg-el-main-wrapper .slider-layout11 .slider-thumb-main-wrapper {
|
2887 |
-
min-width: 120px;
|
2888 |
-
padding: 0;
|
2889 |
-
width: 120px;
|
2890 |
-
}
|
2891 |
-
|
2892 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .post-thumbnail-wrap {
|
2893 |
-
justify-content: center;
|
2894 |
-
}
|
2895 |
-
}
|
2896 |
-
|
2897 |
-
@media (max-width: 767px) {
|
2898 |
-
.tpg-el-main-wrapper .slider-layout11 .slider-thumb-main-wrapper .swiper-thumb-wrapper {
|
2899 |
-
height: 100px;
|
2900 |
-
width: 300px;
|
2901 |
-
margin: auto;
|
2902 |
-
}
|
2903 |
-
|
2904 |
-
.tpg-el-main-wrapper .slider-layout11 .swiper-thumb-wrapper .swiper-wrapper .swiper-slide {
|
2905 |
-
height: 70px;
|
2906 |
-
text-align: center;
|
2907 |
-
justify-content: center;
|
2908 |
-
display: flex;
|
2909 |
-
}
|
2910 |
-
|
2911 |
-
.tpg-el-main-wrapper.slider-layout11-main .swiper-thumb-wrapper .swiper-wrapper {
|
2912 |
-
align-items: center;
|
2913 |
-
}
|
2914 |
-
|
2915 |
-
.tpg-el-main-wrapper .slider-layout11 .slider-thumb-main-wrapper {
|
2916 |
-
position: absolute;
|
2917 |
-
width: 100%;
|
2918 |
-
bottom: 0;
|
2919 |
-
}
|
2920 |
-
|
2921 |
-
.tpg-el-main-wrapper.slider-layout11-main .rt-grid-hover-item .rt-holder .grid-hover-content {
|
2922 |
-
padding: 20px 50px 120px;
|
2923 |
-
}
|
2924 |
-
|
2925 |
-
.tpg-el-main-wrapper.slider-layout11-main .rt-holder .rt-detail .entry-title-wrapper .entry-title {
|
2926 |
-
font-size: 26px;
|
2927 |
-
line-height: 36px;
|
2928 |
-
}
|
2929 |
-
}
|
2930 |
-
|
2931 |
-
|
2932 |
-
/*Slider Layout 12*/
|
2933 |
-
|
2934 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper {
|
2935 |
-
position: absolute;
|
2936 |
-
bottom: 0;
|
2937 |
-
left: 0;
|
2938 |
-
right: 0;
|
2939 |
-
width: 100%;
|
2940 |
-
padding: 30px 30px 60px;
|
2941 |
-
z-index: 10;
|
2942 |
-
}
|
2943 |
-
|
2944 |
-
|
2945 |
-
.elementor-section-boxed .tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper {
|
2946 |
-
padding: 30px 60px 60px;
|
2947 |
-
}
|
2948 |
-
|
2949 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper {
|
2950 |
-
overflow: hidden;
|
2951 |
-
position: relative;
|
2952 |
-
max-width: 1320px;
|
2953 |
-
width: 100%;
|
2954 |
-
padding-top: 50px;
|
2955 |
-
margin-left: auto;
|
2956 |
-
margin-right: auto;
|
2957 |
-
}
|
2958 |
-
|
2959 |
-
/*.tpg-el-main-wrapper .slider-layout12 .swiper-pagination-progressbar {*/
|
2960 |
-
/* height: 2px;*/
|
2961 |
-
/*}*/
|
2962 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper .post-thumbnail-wrap .p-thumbnail::before,
|
2963 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper::before {
|
2964 |
-
content: "";
|
2965 |
-
width: 100%;
|
2966 |
-
height: 2px;
|
2967 |
-
background-color: #fff;
|
2968 |
-
opacity: 0.22;
|
2969 |
-
position: absolute;
|
2970 |
-
top: 0;
|
2971 |
-
left: 0;
|
2972 |
-
right: 0;
|
2973 |
-
z-index: -1;
|
2974 |
-
transition: 0.4s;
|
2975 |
-
}
|
2976 |
-
|
2977 |
-
|
2978 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper .post-thumbnail-wrap .p-thumbnail::before {
|
2979 |
-
opacity: 0;
|
2980 |
-
top: -50px;
|
2981 |
-
background: #2962ff;
|
2982 |
-
}
|
2983 |
-
|
2984 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper .swiper-slide:hover .post-thumbnail-wrap .p-thumbnail::before,
|
2985 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper .swiper-slide.swiper-slide-thumb-active .post-thumbnail-wrap .p-thumbnail::before {
|
2986 |
-
opacity: 1;
|
2987 |
-
}
|
2988 |
-
|
2989 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper .post-thumbnail-wrap .p-thumbnail {
|
2990 |
-
position: relative;
|
2991 |
-
}
|
2992 |
-
|
2993 |
-
|
2994 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper .post-thumbnail-wrap .p-thumbnail {
|
2995 |
-
flex: 0 0 130px;
|
2996 |
-
height: 100px;
|
2997 |
-
margin-right: 16px;
|
2998 |
-
background: rgba(255, 255, 255, .1);
|
2999 |
-
/*transition: 0.4s;*/
|
3000 |
-
}
|
3001 |
-
|
3002 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper .post-thumbnail-wrap .p-thumbnail img {
|
3003 |
-
filter: grayscale(100);
|
3004 |
-
transition: 0.4s;
|
3005 |
-
}
|
3006 |
-
|
3007 |
-
.tpg-el-main-wrapper .slider-layout12 .swiper-thumb-wrapper .swiper-wrapper .swiper-slide.swiper-slide-active .post-thumbnail-wrap .p-thumbnail img,
|
3008 |
-
.tpg-el-main-wrapper .slider-layout12 .swiper-thumb-wrapper .swiper-wrapper .swiper-slide:hover .post-thumbnail-wrap .p-thumbnail img {
|
3009 |
-
padding: 10px;
|
3010 |
-
filter: grayscale(0);
|
3011 |
-
}
|
3012 |
-
|
3013 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper .post-thumbnail-wrap .p-thumbnail img {
|
3014 |
-
width: 100% !important;
|
3015 |
-
height: 100% !important;
|
3016 |
-
object-fit: cover;
|
3017 |
-
}
|
3018 |
-
|
3019 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper .post-thumbnail-wrap .thumb-title {
|
3020 |
-
font-size: 16px;
|
3021 |
-
color: #fff;
|
3022 |
-
font-weight: 600;
|
3023 |
-
overflow: hidden;
|
3024 |
-
text-overflow: ellipsis;
|
3025 |
-
display: -webkit-box;
|
3026 |
-
-webkit-line-clamp: 2;
|
3027 |
-
-webkit-box-orient: vertical;
|
3028 |
-
line-height: 26px;
|
3029 |
-
margin-bottom: 0;
|
3030 |
-
}
|
3031 |
-
|
3032 |
-
.rt-tpg-container .slider-layout12 .rt-grid-hover-item .rt-holder .grid-hover-content {
|
3033 |
-
justify-content: center;
|
3034 |
-
align-items: center;
|
3035 |
-
text-align: center;
|
3036 |
-
padding-bottom: 210px;
|
3037 |
-
}
|
3038 |
-
|
3039 |
-
.rt-tpg-container .slider-layout12 .rt-grid-hover-item .rt-holder .grid-hover-content .slider-content-inner {
|
3040 |
-
max-width: 650px;
|
3041 |
-
width: 100%;
|
3042 |
-
}
|
3043 |
-
|
3044 |
-
.tpg-wrapper-align-left .rt-tpg-container .slider-layout12 .rt-grid-hover-item .rt-holder .grid-hover-content .slider-content-inner,
|
3045 |
-
.tpg-wrapper-align-right .rt-tpg-container .slider-layout12 .rt-grid-hover-item .rt-holder .grid-hover-content .slider-content-inner {
|
3046 |
-
max-width: 100%;
|
3047 |
-
padding-left: 30px;
|
3048 |
-
padding-right: 30px;
|
3049 |
-
}
|
3050 |
-
|
3051 |
-
.rt-tpg-container .slider-layout12 .rt-detail .entry-title-wrapper .entry-title {
|
3052 |
-
font-size: 2.125rem;
|
3053 |
-
font-weight: 600;
|
3054 |
-
line-height: 1.3;
|
3055 |
-
|
3056 |
-
}
|
3057 |
-
|
3058 |
-
.tpg-el-main-wrapper .slider-layout12 .swiper-thumb-wrapper .swiper-wrapper .p-content * {
|
3059 |
-
font-size: 0.75rem;
|
3060 |
-
text-transform: uppercase;
|
3061 |
-
letter-spacing: 0.05rem;
|
3062 |
-
font-weight: 500;
|
3063 |
-
}
|
3064 |
-
|
3065 |
-
.tpg-el-main-wrapper .slider-layout12 .swiper-thumb-wrapper .swiper-wrapper .p-content .post-taxonomy {
|
3066 |
-
display: flex;
|
3067 |
-
flex-wrap: wrap;
|
3068 |
-
line-height: 1.5;
|
3069 |
-
}
|
3070 |
-
|
3071 |
-
.rt-tpg-container .slider-layout12 .rt-holder .grid-hover-content:before {
|
3072 |
-
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 59%, rgba(0, 0, 0, 0.8) 100%);
|
3073 |
-
}
|
3074 |
-
|
3075 |
-
.rt-tpg-container .grid_hover-layout5.slider-layout {
|
3076 |
-
margin: 0 !important;
|
3077 |
-
}
|
3078 |
-
|
3079 |
-
@media (max-width: 767px) {
|
3080 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper {
|
3081 |
-
padding-top: 25px;
|
3082 |
-
}
|
3083 |
-
|
3084 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper {
|
3085 |
-
padding: 30px;
|
3086 |
-
}
|
3087 |
-
|
3088 |
-
.tpg-el-main-wrapper .slider-layout12 .slider-thumb-main-wrapper .swiper-thumb-wrapper .post-thumbnail-wrap .p-thumbnail::before {
|
3089 |
-
top: -25px;
|
3090 |
-
}
|
3091 |
-
|
3092 |
-
.rt-tpg-container .slider-layout12 .rt-detail .entry-title-wrapper .entry-title {
|
3093 |
-
font-size: 26px;
|
3094 |
-
}
|
3095 |
-
|
3096 |
-
.rt-tpg-container .slider-layout12 .rt-grid-hover-item .rt-holder .grid-hover-content {
|
3097 |
-
padding-bottom: 150px;
|
3098 |
-
}
|
3099 |
-
}
|
3100 |
-
|
3101 |
-
|
3102 |
-
/*Slider Layout 13*/
|
3103 |
-
|
3104 |
-
.img_hover_animation_default .rt-tpg-container .grid_hover-layout4 .rt-holder:hover .rt-img-holder img:not(.avatar),
|
3105 |
-
.img_hover_animation_default .rt-tpg-container .grid_hover-layout5 .rt-holder:hover .rt-img-holder img:not(.avatar),
|
3106 |
-
.img_hover_animation_default .rt-tpg-container .slider-layout5 .rt-holder:hover .rt-img-holder img:not(.avatar),
|
3107 |
-
.img_hover_animation_default .rt-tpg-container .slider-layout7 .rt-holder:hover .rt-img-holder img:not(.avatar),
|
3108 |
-
.img_hover_animation_default .rt-tpg-container .slider-layout8 .rt-holder:hover .rt-img-holder img:not(.avatar),
|
3109 |
-
.img_hover_animation_default .rt-tpg-container .slider-layout9 .rt-holder:hover .rt-img-holder img:not(.avatar),
|
3110 |
-
.img_hover_animation_default .rt-tpg-container .slider-layout10 .rt-holder:hover .rt-img-holder img:not(.avatar),
|
3111 |
-
.img_hover_animation_default .rt-tpg-container .slider-layout11 .rt-holder:hover .rt-img-holder img:not(.avatar),
|
3112 |
-
.img_hover_animation_default .rt-tpg-container .slider-layout12 .rt-holder:hover .rt-img-holder img:not(.avatar),
|
3113 |
-
.img_hover_animation_default .rt-tpg-container .slider-layout13 .rt-holder:hover .rt-img-holder img:not(.avatar) {
|
3114 |
-
transform: none;
|
3115 |
-
}
|
3116 |
-
|
3117 |
-
|
3118 |
-
.rt-tpg-container .slide_to_left .rt-holder .rt-img-holder img:not(.avatar),
|
3119 |
-
.rt-tpg-container .slide_to_right .rt-holder .rt-img-holder img:not(.avatar) {
|
3120 |
-
-webkit-transform: scale(1.2);
|
3121 |
-
-moz-transform: scale(1.2);
|
3122 |
-
-ms-transform: scale(1.2);
|
3123 |
-
-o-transform: scale(1.2);
|
3124 |
-
transform: scale(1.2);
|
3125 |
-
}
|
3126 |
-
|
3127 |
-
.rt-tpg-container .slide_to_left .rt-holder .rt-img-holder img:not(.avatar) {
|
3128 |
-
margin-left: 35px;
|
3129 |
-
}
|
3130 |
-
|
3131 |
-
.rt-tpg-container .slide_to_right .rt-holder .rt-img-holder img:not(.avatar) {
|
3132 |
-
margin-left: -35px;
|
3133 |
-
}
|
3134 |
-
|
3135 |
-
.rt-tpg-container .slide_to_left .rt-holder:hover .rt-img-holder img:not(.avatar),
|
3136 |
-
.rt-tpg-container .slide_to_right .rt-holder:hover .rt-img-holder img:not(.avatar) {
|
3137 |
-
margin-left: 0;
|
3138 |
-
}
|
3139 |
-
|
3140 |
-
|
3141 |
-
body .rt-tpg-container .slider-layout13 .rt-holder .rt-detail,
|
3142 |
-
body .tpg-el-main-wrapper .slider-layout13 .rt-slider-item {
|
3143 |
-
padding-left: 0 !important;
|
3144 |
-
padding-right: 0 !important;
|
3145 |
-
}
|
3146 |
-
|
3147 |
-
body .rt-tpg-container .slider-layout13 .rt-holder .rt-detail {
|
3148 |
-
margin-bottom: 6px;
|
3149 |
-
}
|
3150 |
-
|
3151 |
-
.tpg-el-main-wrapper .slider-layout13 .rt-swiper-holder {
|
3152 |
-
margin-left: 0 !important;
|
3153 |
-
margin-right: 0 !important;
|
3154 |
-
}
|
3155 |
-
|
3156 |
-
.rt-tpg-container .slider-layout13 .rt-holder .tpg-el-image-wrap {
|
3157 |
-
margin: 0;
|
3158 |
-
}
|
3159 |
-
|
3160 |
-
.rt-tpg-container .slider-layout13 .rt-holder .post-content {
|
3161 |
-
text-align: center;
|
3162 |
-
position: relative;
|
3163 |
-
z-index: 2;
|
3164 |
-
padding: 30px 20px 20px;
|
3165 |
-
background-color: #ffffff;
|
3166 |
-
margin: -72px 10% 0;
|
3167 |
-
border-radius: 4px;
|
3168 |
-
box-shadow: 0 0 10px rgba(0,0,0,.1);
|
3169 |
-
}
|
3170 |
-
|
3171 |
-
.tpg-el-main-wrapper .slider-layout13 .post-meta-tags {
|
3172 |
-
font-size: 12px;
|
3173 |
-
font-weight: 500;
|
3174 |
-
text-transform: uppercase;
|
3175 |
-
letter-spacing: 0.8px;
|
3176 |
-
color: #A5A6AA;
|
3177 |
-
}
|
3178 |
-
|
3179 |
-
.tpg-el-main-wrapper .slider-layout13 .post-meta-tags a {
|
3180 |
-
color: #88898c;
|
3181 |
-
}
|
3182 |
-
|
3183 |
-
.tpg-el-main-wrapper .slider-layout13 .post-meta-tags a:hover {
|
3184 |
-
color: var(--tpg-primary-color);
|
3185 |
-
}
|
3186 |
-
|
3187 |
-
.tpg-el-main-wrapper .slider-layout13 .post-meta-tags.meta-default > span {
|
3188 |
-
position: relative;
|
3189 |
-
margin: 0;
|
3190 |
-
}
|
3191 |
-
|
3192 |
-
.tpg-el-main-wrapper .slider-layout13 .post-meta-tags.meta-default > span:last-child:after {
|
3193 |
-
content: none;
|
3194 |
-
}
|
3195 |
-
|
3196 |
-
.tpg-el-main-wrapper .slider-layout13 .post-meta-tags.meta-default > span:after {
|
3197 |
-
content: " . ";
|
3198 |
-
margin-left: 6px;
|
3199 |
-
}
|
3200 |
-
|
3201 |
-
.slider-arrow-position-default .slider-layout13 .swiper-navigation .slider-btn {
|
3202 |
-
font-size: 20px;
|
3203 |
-
color: var(--tpg-primary-color);
|
3204 |
-
background-color: #fff;
|
3205 |
-
width: 52px;
|
3206 |
-
height: 52px;
|
3207 |
-
border-radius: 50%;
|
3208 |
-
opacity: 0;
|
3209 |
-
}
|
3210 |
-
|
3211 |
-
.slider-arrow-position-default .slider-layout13 .swiper-navigation .slider-btn:hover {
|
3212 |
-
background: var(--tpg-primary-color);
|
3213 |
-
color: #ffffff;
|
3214 |
-
}
|
3215 |
-
|
3216 |
-
.slider-arrow-position-default .slider-layout13 .swiper-navigation .slider-btn.swiper-button-prev {
|
3217 |
-
left: 60px;
|
3218 |
-
}
|
3219 |
-
|
3220 |
-
.slider-arrow-position-default .slider-layout13 .swiper-navigation .slider-btn.swiper-button-next {
|
3221 |
-
right: 60px;
|
3222 |
-
}
|
3223 |
-
|
3224 |
-
.slider-arrow-position-default .slider-layout13:hover .swiper-navigation .slider-btn.swiper-button-prev {
|
3225 |
-
left: 40px;
|
3226 |
-
opacity: 1;
|
3227 |
-
}
|
3228 |
-
|
3229 |
-
.slider-arrow-position-default .slider-layout13:hover .swiper-navigation .slider-btn.swiper-button-next {
|
3230 |
-
right: 40px;
|
3231 |
-
opacity: 1;
|
3232 |
-
}
|
3233 |
-
|
3234 |
-
.slider-arrow-position-show-hover .slider-layout13 .swiper-navigation .slider-btn,
|
3235 |
-
.slider-arrow-position-default .slider-layout13 .swiper-navigation .slider-btn {
|
3236 |
-
top: calc(50% - 62px);
|
3237 |
-
}
|
3238 |
-
|
3239 |
-
.rt-tpg-container .slider-layout13 .entry-title-wrapper .entry-title {
|
3240 |
-
font-size: 28px;
|
3241 |
-
}
|
3242 |
-
|
3243 |
-
|
3244 |
-
/*Astara Theme Css*/
|
3245 |
-
.elementor-template-full-width .site-content .ast-container {
|
3246 |
-
max-width: 100%;
|
3247 |
-
width: 100%;
|
3248 |
-
padding: 0;
|
3249 |
-
}
|
3250 |
-
|
3251 |
-
/*ACF Style*/
|
3252 |
-
|
3253 |
-
.tpg-el-main-wrapper .tgp-cf-field-label {
|
3254 |
-
float: none;
|
3255 |
-
display: inline-block;
|
3256 |
-
}
|
3257 |
-
|
3258 |
-
.tpg-el-main-wrapper .tpg-cf-fields {
|
3259 |
-
display: block;
|
3260 |
-
}
|
3261 |
-
|
3262 |
-
.tpg-el-main-wrapper .tgp-cf-field-value {
|
3263 |
-
display: inline;
|
3264 |
-
}
|
3265 |
-
|
3266 |
-
.tpg-el-main-wrapper .tpg-cf-group-title {
|
3267 |
-
color: inherit;
|
3268 |
-
}
|
3269 |
-
|
3270 |
-
.tpg-acf-align-left .rt-tpg-container .acf-custom-field-wrap {
|
3271 |
-
text-align: left;
|
3272 |
-
}
|
3273 |
-
|
3274 |
-
.grid-layout6 .acf-custom-field-wrap,
|
3275 |
-
.list-layout4 .acf-custom-field-wrap,
|
3276 |
-
.tpg-acf-align-center .rt-tpg-container .acf-custom-field-wrap {
|
3277 |
-
text-align: center;
|
3278 |
-
}
|
3279 |
-
|
3280 |
-
.tpg-acf-align-right .rt-tpg-container .acf-custom-field-wrap {
|
3281 |
-
text-align: right;
|
3282 |
-
}
|
3283 |
-
|
3284 |
-
/*End ACF Style*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/css/tpg-elementor.min.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
body .tpg-el-main-wrapper .rt-grid-item{padding:0 15px}body .elementor-section .tpg-el-main-wrapper .rt-grid-item{background:none}body .elementor-section .tpg-el-main-wrapper .offset-left,body .elementor-section .tpg-el-main-wrapper .offset-right{padding-bottom:0}.rt-tpg-container a{text-decoration:none}.rt-model-open,body.rt-model-open,html.rt-model-open{overflow:hidden}.rt-tpg-container img{height:auto;max-width:100%}.rt-tpg-container *{box-sizing:border-box}.entry .rt-tpg-container .entry-title:before{content:none}.rt-tpg-container .entry{margin-top:0}.rt-tpg-container :after,.rt-tpg-container :before{box-sizing:border-box}.rt-container,.rt-container-fluid{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px}.rt-container-fluid.slider-layout13-main{padding:0 0 15px}.rt-tpg-container ul{margin:0}img,svg{vertical-align:middle}a:link,a:visited{transition:all .31s ease}.clearfix:after,.clearfix:before,.rt-container-fluid:after,.rt-container-fluid:before,.rt-row:after,.rt-row:before{content:" ";display:table}.clearfix:after,.rt-container-fluid:after,.rt-container:after,.rt-row:after{clear:both}.rt-row{margin-left:-15px;margin-right:-15px}.grid-layout2.rt-row{margin-left:0;margin-right:0}.rt-row>.rt-row{padding-left:15px;padding-right:15px}.grid_hover6.rt-row{margin-left:-2px;margin-right:-2px}.rt-col-lg-1,.rt-col-lg-2,.rt-col-lg-3,.rt-col-lg-4,.rt-col-lg-5,.rt-col-lg-6,.rt-col-lg-7,.rt-col-lg-8,.rt-col-lg-9,.rt-col-lg-10,.rt-col-lg-11,.rt-col-lg-12,.rt-col-lg-24,.rt-col-md-1,.rt-col-md-2,.rt-col-md-3,.rt-col-md-4,.rt-col-md-5,.rt-col-md-6,.rt-col-md-7,.rt-col-md-8,.rt-col-md-9,.rt-col-md-10,.rt-col-md-11,.rt-col-md-12,.rt-col-md-24,.rt-col-sm-1,.rt-col-sm-2,.rt-col-sm-3,.rt-col-sm-4,.rt-col-sm-5,.rt-col-sm-6,.rt-col-sm-7,.rt-col-sm-8,.rt-col-sm-9,.rt-col-sm-10,.rt-col-sm-11,.rt-col-sm-12,.rt-col-sm-24,.rt-col-xs-1,.rt-col-xs-2,.rt-col-xs-3,.rt-col-xs-4,.rt-col-xs-5,.rt-col-xs-6,.rt-col-xs-7,.rt-col-xs-8,.rt-col-xs-9,.rt-col-xs-10,.rt-col-xs-11,.rt-col-xs-12,.rt-col-xs-24{min-height:1px;padding-left:15px;padding-right:15px;position:relative}.rt-col-xs-1,.rt-col-xs-2,.rt-col-xs-3,.rt-col-xs-4,.rt-col-xs-5,.rt-col-xs-6,.rt-col-xs-7,.rt-col-xs-8,.rt-col-xs-9,.rt-col-xs-10,.rt-col-xs-11,.rt-col-xs-12,.rt-col-xs-24{float:left}.rt-col-xs-24{width:20%}.rt-col-xs-12{width:100%}.rt-col-xs-11{width:91.66666667%}.rt-col-xs-10{width:83.33333333%}.rt-col-xs-9{width:75%}.rt-col-xs-8{width:66.66666667%}.rt-col-xs-7{width:58.33333333%}.rt-col-xs-6{width:50%}.rt-col-xs-5{width:41.66666667%}.rt-col-xs-4{width:33.33333333%}.rt-col-xs-3{width:25%}.rt-col-xs-2{width:16.66666667%}.rt-col-xs-1{width:8.33333333%}#rt-main{margin:35px auto}.rt-tpg-container h3.entry-title{line-height:1.25;margin:0 0 12px}.rt-tpg-container .offset-small-wrap .rt-holder .overlay{min-height:60px!important}.rt-tpg-container .offset-small-wrap .rt-holder .rt-img-responsive{height:auto;-o-object-fit:cover;object-fit:cover;width:100%}.rt-tpg-container .offset-small-wrap .rt-col-md-6 .rt-holder .rt-img-responsive{height:auto}.rt-tpg-container .offset-small-wrap .rt-holder .overlay h3 a{-webkit-line-clamp:1!important;-webkit-box-orient:vertical;display:-webkit-box!important;overflow:hidden!important;text-overflow:ellipsis!important}.rt-tpg-container .offset-big .post-meta-user.above_title{margin-top:15px}.rt-tpg-container .offset-big .post-meta-user.above_title+h3.entry-title{margin-top:0}.rt-tpg-container .offset-big h3.entry-title{margin:20px 0 15px}.rt-tpg-container .offset-big .cat-above-title{margin-bottom:-15px;padding-top:10px}.rt-tpg-container .owl-controls .owl-dots{margin-top:15px}.rt-popup-content .rt-tpg-container i{margin-right:5px}.rt-popup-content ol,.rt-popup-content ul{list-style-position:inside}@media (min-width:992px){.rt-container{width:970px}}@media (min-width:1200px){.rt-container{width:1170px}}@media (max-width:767px){.hidden-xs{display:none!important}}@media screen and (max-width:768px){.rt-member-description-container,.rt-member-feature-img{float:none;width:100%}}@media (min-width:768px){.rt-col-sm-1,.rt-col-sm-2,.rt-col-sm-3,.rt-col-sm-4,.rt-col-sm-5,.rt-col-sm-6,.rt-col-sm-7,.rt-col-sm-8,.rt-col-sm-9,.rt-col-sm-10,.rt-col-sm-11,.rt-col-sm-12,.rt-col-sm-24{float:left}.rt-col-sm-24{width:20%}.rt-col-sm-12{width:100%}.rt-col-sm-11{width:91.66666667%}.rt-col-sm-10{width:83.33333333%}.rt-col-sm-9{width:75%}.rt-col-sm-8{width:66.66666667%}.rt-col-sm-7{width:58.33333333%}.rt-col-sm-6{width:50%}.rt-col-sm-5{width:41.66666667%}.rt-col-sm-4{width:33.33333333%}.rt-col-sm-3{width:25%}.rt-col-sm-2{width:16.66666667%}.rt-col-sm-1{width:8.33333333%}}@media (min-width:992px){.rt-col-md-1,.rt-col-md-2,.rt-col-md-3,.rt-col-md-4,.rt-col-md-5,.rt-col-md-6,.rt-col-md-7,.rt-col-md-8,.rt-col-md-9,.rt-col-md-10,.rt-col-md-11,.rt-col-md-12,.rt-col-md-24{float:left}.rt-col-md-24{width:20%}.rt-col-md-12{width:100%}.rt-col-md-11{width:91.66666667%}.rt-col-md-10{width:83.33333333%}.rt-col-md-9{width:75%}.rt-col-md-8{width:66.66666667%}.rt-col-md-7{width:58.33333333%}.rt-col-md-6{width:50%}.rt-col-md-5{width:41.66666667%}.rt-col-md-4{width:33.33333333%}.rt-col-md-3{width:25%}.rt-col-md-2{width:16.66666667%}.rt-col-md-1{width:8.33333333%}}@media (min-width:1200px){.rt-col-lg-1,.rt-col-lg-2,.rt-col-lg-3,.rt-col-lg-4,.rt-col-lg-5,.rt-col-lg-6,.rt-col-lg-7,.rt-col-lg-8,.rt-col-lg-9,.rt-col-lg-10,.rt-col-lg-11,.rt-col-lg-12{float:left}.rt-col-lg-24{width:20%}.rt-col-lg-12{width:100%}.rt-col-lg-11{width:91.66666667%}.rt-col-lg-10{width:83.33333333%}.rt-col-lg-9{width:75%}.rt-col-lg-8{width:66.66666667%}.rt-col-lg-7{width:58.33333333%}.rt-col-lg-6{width:50%}.rt-col-lg-5{width:41.66666667%}.rt-col-lg-4{width:33.33333333%}.rt-col-lg-3{width:25%}.rt-col-lg-2{width:16.66666667%}.rt-col-lg-1{width:8.33333333%}}.paginationjs{box-sizing:initial;font-family:Marmelad,Lucida Grande,Arial,Hiragino Sans GB,Georgia,sans-serif;font-size:14px;line-height:1.6}.paginationjs:after{clear:both;content:" ";display:table}.paginationjs .paginationjs-pages{float:left}.paginationjs .paginationjs-pages ul{float:left;margin:0;padding:0}.paginationjs .paginationjs-go-button,.paginationjs .paginationjs-go-input,.paginationjs .paginationjs-nav{float:left;font-size:14px;margin-left:10px}.paginationjs .paginationjs-pages li{border:1px solid #aaa;border-right:none;float:left;list-style:none}.paginationjs .paginationjs-pages li>a{background:#fff;color:#333;display:block;font-size:14px;height:28px;line-height:28px;min-width:30px;text-align:center;text-decoration:none}.paginationjs .paginationjs-pages li:hover>a{background:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd)!important;color:#fff!important}.paginationjs .paginationjs-pages li.active{border:none}.paginationjs .paginationjs-pages li.active>a{background:#aaa;color:#fff;height:30px;line-height:30px}.paginationjs .paginationjs-pages li.disabled>a{opacity:.3}.paginationjs .paginationjs-pages li.disabled>a:hover{background:0 0}.paginationjs .paginationjs-pages li:first-child,.paginationjs .paginationjs-pages li:first-child>a{border-radius:3px 0 0 3px}.paginationjs .paginationjs-pages li:last-child{border-radius:0 3px 3px 0;border-right:1px solid #aaa}.paginationjs .paginationjs-pages li:last-child>a{border-radius:0 3px 3px 0}.paginationjs .paginationjs-go-input>input[type=text]{box-sizing:initial;height:28px;padding:0;width:30px}.paginationjs .paginationjs-go-button>input[type=button],.paginationjs .paginationjs-go-input>input[type=text]{background:#fff;border:1px solid #aaa;border-radius:3px;box-shadow:none;font-size:14px;outline:0;text-align:center;vertical-align:baseline}.paginationjs .paginationjs-go-button>input[type=button]{color:#333;cursor:pointer;height:30px;line-height:28px;min-width:40px;padding:0 8px;vertical-align:middle\9}.paginationjs.paginationjs-theme-blue .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-blue .paginationjs-pages li{border-color:#289de9}.paginationjs .paginationjs-go-button>input[type=button]:hover{background-color:#f8f8f8}.paginationjs .paginationjs-nav{height:30px;line-height:30px}.paginationjs .paginationjs-go-button,.paginationjs .paginationjs-go-input{margin-left:5px\9}.paginationjs.paginationjs-small{font-size:12px}.paginationjs.paginationjs-small .paginationjs-pages li>a{font-size:12px;height:24px;line-height:24px;min-width:26px}.paginationjs.paginationjs-small .paginationjs-pages li.active>a{height:26px;line-height:26px}.paginationjs.paginationjs-small .paginationjs-go-input{font-size:12px}.paginationjs.paginationjs-small .paginationjs-go-input>input[type=text]{font-size:12px;height:24px;width:26px}.paginationjs.paginationjs-small .paginationjs-go-button{font-size:12px}.paginationjs.paginationjs-small .paginationjs-go-button>input[type=button]{font-size:12px;height:26px;line-height:24px;min-width:30px;padding:0 6px}.paginationjs.paginationjs-small .paginationjs-nav{font-size:12px;height:26px;line-height:26px}.paginationjs.paginationjs-big{font-size:16px}.paginationjs.paginationjs-big .paginationjs-pages li>a{font-size:16px;height:34px;line-height:34px;min-width:36px}.paginationjs.paginationjs-big .paginationjs-pages li.active>a{height:36px;line-height:36px}.paginationjs.paginationjs-big .paginationjs-go-input{font-size:16px}.paginationjs.paginationjs-big .paginationjs-go-input>input[type=text]{font-size:16px;height:34px;width:36px}.paginationjs.paginationjs-big .paginationjs-go-button{font-size:16px}.paginationjs.paginationjs-big .paginationjs-go-button>input[type=button]{font-size:16px;height:36px;line-height:34px;min-width:50px;padding:0 12px}.paginationjs.paginationjs-big .paginationjs-nav{font-size:16px;height:36px;line-height:36px}.paginationjs.paginationjs-theme-blue .paginationjs-pages li>a{color:#289de9}.paginationjs.paginationjs-theme-blue .paginationjs-pages li:hover>a{background:#e9f4fc}.paginationjs.paginationjs-theme-blue .paginationjs-pages li.active>a{background:#289de9;color:#fff}.paginationjs.paginationjs-theme-blue .paginationjs-pages li.disabled:hover>a{background:0 0}.paginationjs.paginationjs-theme-blue .paginationjs-go-button>input[type=button]{background:#289de9;border-color:#289de9;color:#fff}.paginationjs.paginationjs-theme-green .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-green .paginationjs-pages li{border-color:#449d44}.paginationjs.paginationjs-theme-blue .paginationjs-go-button>input[type=button]:hover{background-color:#3ca5ea}.paginationjs.paginationjs-theme-green .paginationjs-pages li>a{color:#449d44}.paginationjs.paginationjs-theme-green .paginationjs-pages li:hover>a{background:#ebf4eb}.paginationjs.paginationjs-theme-green .paginationjs-pages li.active>a{background:#449d44;color:#fff}.paginationjs.paginationjs-theme-green .paginationjs-pages li.disabled:hover>a{background:0 0}.paginationjs.paginationjs-theme-green .paginationjs-go-button>input[type=button]{background:#449d44;border-color:#449d44;color:#fff}.paginationjs.paginationjs-theme-yellow .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-yellow .paginationjs-pages li{border-color:#ec971f}.paginationjs.paginationjs-theme-green .paginationjs-go-button>input[type=button]:hover{background-color:#55a555}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li>a{color:#ec971f}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li:hover>a{background:#fdf5e9}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li.active>a{background:#ec971f;color:#fff}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li.disabled:hover>a{background:0 0}.paginationjs.paginationjs-theme-yellow .paginationjs-go-button>input[type=button]{background:#ec971f;border-color:#ec971f;color:#fff}.paginationjs.paginationjs-theme-red .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-red .paginationjs-pages li{border-color:#c9302c}.paginationjs.paginationjs-theme-yellow .paginationjs-go-button>input[type=button]:hover{background-color:#eea135}.paginationjs.paginationjs-theme-red .paginationjs-pages li>a{color:#c9302c}.paginationjs.paginationjs-theme-red .paginationjs-pages li:hover>a{background:#faeaea}.paginationjs.paginationjs-theme-red .paginationjs-pages li.active>a{background:#c9302c;color:#fff}.paginationjs.paginationjs-theme-red .paginationjs-pages li.disabled:hover>a{background:0 0}.paginationjs.paginationjs-theme-red .paginationjs-go-button>input[type=button]{background:#c9302c;border-color:#c9302c;color:#fff}.paginationjs.paginationjs-theme-red .paginationjs-go-button>input[type=button]:hover{background-color:#ce4541}.paginationjs .paginationjs-pages li.paginationjs-next{border-right:1px solid\9}.paginationjs .paginationjs-go-input>input[type=text]{line-height:28px\9;vertical-align:middle\9}.paginationjs.paginationjs-big .paginationjs-pages li>a{line-height:36px\9}.paginationjs.paginationjs-big .paginationjs-go-input>input[type=text]{height:36px\9;line-height:36px\9}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li:not(.paginationjs-next):not(.paginationjs-prev){display:none}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li{color:#fff}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li>a{background-color:var(--tpg-primary-color,#0d6efd);color:#fff}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li:hover a{background-color:var(--tpg-secondary-color,#0654c4)}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-page:nth-child(2){display:inline-block;pointer-events:none;position:relative}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-page:nth-child(2) a{pointer-events:none;text-indent:-99999px}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-page:nth-child(2):before{content:"\f100";font-family:Font Awesome\ 5 Free;font-weight:900;left:50%;opacity:.5;position:absolute;top:50%;transform:translate(-50%,-50%);z-index:99}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-prev+li{display:none!important}.rt-tpg-container button{border:none;padding:10px 15px}.rt-tpg-container .rt-tgp-load-more button{background:#8e8e8e;border-radius:4px}.rt-tpg-container .tpg-wc-product-filter{margin-bottom:15px;padding-right:15px;text-align:right}.rt-img-holder>a{display:block;text-align:center}.rt-img-responsive{display:block;height:auto;max-width:100%;transition:.4s ease-in-out}@media (max-width:991px){.rt-img-holder>a,.rt-img-responsive{width:100%}}.rt-tpg-container .no-margin{margin:0!important;padding:0!important}span.more-loading{background:url(../images/loading.gif) 100% no-repeat;display:inline-block;padding-right:20px}.rt-tgp-load-more,.rt-tgp-scroll-load-more{display:block;margin:30px 0 20px;text-align:center}.post-meta-tags,.post-meta-user{font-size:95%;line-height:1.5;margin-bottom:15px;padding:0}.post-meta-tags span,.post-meta-user span{display:inline-block;padding-right:8px}.post-meta-tags span.rt-separator,.post-meta-user span.rt-separator{display:inline-block;padding-right:5px}.post-meta-user span.comment-link{float:right;padding-right:0;text-align:right}.rt-holder .entry-title a{color:#000}.rt-tpg-container .rt-holder .post-meta.center .read-more{float:none}.rt-tpg-container .rt-holder .post-meta .rt-tpg-social-share{display:block;float:none;margin-bottom:15px;text-align:left;width:100%}.rt-tpg-container .rt-holder .post-meta.center .rt-tpg-social-share,.rt-tpg-container .rt-holder .post-meta.right .rt-tpg-social-share{text-align:left}.rt-tpg-container .rt-holder .read-more a{display:inline-block;font-size:15px;line-height:1.5}.rt-tpg-container .rt-holder .tpg-excerpt{margin-bottom:10px}.rt-tpg-container .tpg-iso-filter{margin:15px 0 45px;text-align:center}.rt-tpg-container .tpg-iso-filter input[type=text]{border-radius:3px;display:inline-block;margin-left:4px;padding:12px 10px}.rt-tpg-container .tpg-iso-filter>div{display:inline-block}.rt-tpg-container .rt-tpg-isotope-buttons .selected{background:var(--tpg-primary-color,#0d6efd)}.rt-tpg-container .rt-tpg-isotope-buttons button{background:#8e8e8e;border:none;border-radius:3px;box-shadow:none!important;color:#fff;font-size:15px;font-weight:400;line-height:1.8;margin:4px;outline:0;padding:8px 20px;text-shadow:none!important;text-transform:none}.rt-tpg-container .tpg-pre-loader{overflow:hidden;position:relative}.rt-tpg-container .rt-loading-overlay{background-color:#fff;height:100%;left:0;opacity:0;position:absolute;top:0;visibility:hidden;width:100%;z-index:1}.rt-tpg-container .rt-loading{color:var(--tpg-primary-color,#0d6efd);left:50%;margin-left:-16px;opacity:0;position:absolute;top:40%;visibility:hidden;z-index:2}.rt-tpg-container .tpg-pre-loader .rt-loading-overlay{opacity:.8;visibility:visible}.tpg-carousel-main .tpg-pre-loader .rt-loading-overlay{opacity:1}.rt-tpg-container .tpg-pre-loader .rt-loading{opacity:1;visibility:visible}.rt-ball-clip-rotate{color:#fff;display:block;font-size:0;height:32px;width:32px}.rt-ball-clip-rotate,.rt-ball-clip-rotate>div{box-sizing:border-box;position:relative}.rt-ball-clip-rotate>div{-webkit-animation:ball-clip-rotate .75s linear infinite;animation:ball-clip-rotate .75s linear infinite;background-color:currentColor;background:transparent;border-radius:100%;border:2px solid;border-bottom:2px solid transparent;display:inline-block;float:none;height:32px;width:32px}.rt-layout-filter-container.rt-clear:after{clear:both;content:"";display:block}.rt-clear::-ms-ticks-after,.rt-clear:after{clear:both;content:"";display:block}.rt-layout-filter-container{font-size:0;line-height:0;margin:-5px -5px 30px;padding:0}.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item{border:1px solid;display:inline-block;margin:4px;padding:8px 10px;transition:.4s}.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item.selected,.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item:hover{background:#222;color:#b4b4b4}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap{padding-right:82px}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper{margin-right:0;position:static;width:100%}.tpg-header-wrapper.carousel{align-items:center;display:flex;margin-bottom:30px;overflow:hidden}.section-title-style-default .tpg-header-wrapper.carousel,.section-title-style-style1 .tpg-header-wrapper.carousel{min-height:36px}.tpg-header-wrapper.carousel .swiper{overflow:hidden}.section-title-style-style2 .tpg-header-wrapper.carousel .swiper,.section-title-style-style3 .tpg-header-wrapper.carousel .swiper{height:51px;margin-bottom:-.5px}.tpg-header-wrapper.carousel .swiper .swiper-navigation{position:absolute;right:0;top:50%;transform:translateY(-50%);z-index:9}.tpg-header-wrapper.carousel .swiper .swiper-button-next,.tpg-header-wrapper.carousel .swiper .swiper-button-prev{margin-top:0;top:0}.tpg-header-wrapper.carousel .tpg-widget-heading-wrapper{flex:1;margin:0;padding-right:10px}.tpg-header-wrapper.carousel .rt-layout-filter-container{flex:0 0 60%;margin:0;max-width:60%}.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper{box-sizing:content-box;display:flex;height:100%;margin:0;position:relative;transition-property:transform;width:100%;z-index:1}.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide{align-items:center;border:none;color:#212121;display:flex;font-size:15px;height:auto;justify-content:center;margin:0;padding:0 10px;position:relative;text-align:center;text-transform:none;width:auto}.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:before,.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:before{border-bottom:7px solid var(--tpg-primary-color,#0d6efd);border-left:7px solid transparent;border-right:7px solid transparent;border-top:0 solid transparent;bottom:0;content:"";height:0;left:50%;opacity:0;position:absolute;transform:translateX(-50%);transition:all .3s ease;visibility:hidden;width:0}.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected:before,.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover:before,.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected:before,.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover:before{opacity:1;visibility:visible}.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected,.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover{color:var(--tpg-primary-color,#0d6efd)}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .filter-right-wrapper,.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .rt-author-filter{display:none}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.swiper-wrapper{letter-spacing:0}.tpg-header-wrapper.carousel .swiper-button-next.swiper-button-disabled,.tpg-header-wrapper.carousel .swiper-button-prev.swiper-button-disabled{opacity:1}.tpg-header-wrapper.carousel .swiper-button-next.swiper-button-disabled:after,.tpg-header-wrapper.carousel .swiper-button-prev.swiper-button-disabled:after{opacity:.35}.filter-button-border-enable .tpg-header-wrapper.carousel .rt-layout-filter-container{border:1px solid #ddd;border-radius:3px}.filter-button-border-enable .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide{padding:6px 15px;white-space:nowrap}.filter-button-border-enable .tpg-header-wrapper.carousel .swiper .swiper-navigation{right:3px}.filter-nex-prev-btn-hidden .tpg-header-wrapper.carousel .swiper .swiper-navigation{display:none}.filter-nex-prev-btn-hidden .tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap{margin-right:0}@media (max-width:767px){.tpg-header-wrapper.carousel{display:block}.tpg-header-wrapper.carousel .rt-layout-filter-container{margin-bottom:8px;margin-left:-9px;margin-top:10px;max-width:100%;position:relative}}.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item.selected,.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item:hover{background:none;color:#000}.rt-filter-item-wrap.rt-order-by-action,.rt-filter-item-wrap.rt-sort-order-action{float:right}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap{color:#666;cursor:pointer;display:inline-block;font-size:13px;letter-spacing:.1em;line-height:1.55;margin:4px;padding:8px 10px;position:relative;text-transform:uppercase;transition:background-color .2s ease-in-out,color .2s ease-in-out,border-color .2s ease-in-out;-webkit-transition:background-color .2s ease-in-out,color .2s ease-in-out,border-color .2s ease-in-out;-ms-transition:background-color .2s ease-in-out,color .2s ease-in-out,border-color .2s ease-in-out;-ms-user-select:none;user-select:none;-webkit-user-select:none;-moz-user-select:none;vertical-align:top}.rt-layout-filter-container .rt-filter-wrap .rt-filter-button-wrap{margin-left:0;margin-top:0;padding:0}@media (max-width:767px){.rt-layout-filter-container .rt-filter-wrap .rt-filter-button-wrap{display:inline}}.rt-layout-filter-container .rt-filter-wrap .rt-filter-button-item .rt-filter-sub-tax{display:none}.rt-layout-filter-container .rt-filter-sub-tax.sub-button-group{margin:0 4px}.rt-layout-filter-container .rt-filter-sub-tax.sub-button-group .rt-filter-button-item{cursor:pointer}.rt-layout-filter-container>.rt-filter-sub-tax.sub-button-group>span{border:1px solid;display:inline-block;font-size:13px;letter-spacing:.1em;line-height:1.55;margin:4px;padding:8px 10px;text-transform:uppercase;vertical-align:top}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap{border:1px solid #666;color:#666;position:relative}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap:hover{border-color:#222;color:#222}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-sort-order-action:hover{border-color:#222}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap>.rt-filter-dropdown-default{display:block;max-width:135px;min-width:135px;overflow:hidden;text-align:center;text-overflow:ellipsis;white-space:nowrap}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown{background-color:#222;border:none;border-top:1px solid transparent;display:block;left:-1px;margin-top:1px;opacity:0;position:absolute;right:-1px;top:100%;transition:opacity .3s ease-in-out,visibility .3s ease-in-out;-webkit-transition:opacity .3s ease-in-out,visibility .3s ease-in-out;-ms-transition:opacity .3s ease-in-out,visibility .3s ease-in-out;visibility:hidden;z-index:20}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap:hover .rt-filter-dropdown{border-top-color:#000}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown .rt-filter-dropdown-item.selected{background:#000}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap.active-dropdown .rt-filter-dropdown{opacity:1;visibility:visible}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap.active-dropdown .rt-arrow-angle{transform:rotate(180deg);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg)}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown .rt-filter-dropdown-item{border-bottom:1px solid rgba(0,0,0,.2);color:#b4b4b4;display:block;padding:10px 15px 9px;text-align:center}.rt-filter-dropdown-default .sub-dropdown-wrap,.rt-filter-dropdown-item .sub-dropdown-wrap{display:none!important}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-arrow-angle{backface-visibility:hidden;-webkit-backface-visibility:hidden;letter-spacing:0;transition:transform .2s ease-in-out;-webkit-transition:transform .2s ease-in-out;-ms-transition:transform .2s ease-in-out}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-sort-order-action{border:1px solid #666;color:#666;min-width:38px;position:relative}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow{position:static}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span{backface-visibility:hidden;-webkit-backface-visibility:hidden;display:block;height:8px;left:50%;margin-left:-7px;margin-top:-4px;position:absolute;top:50%;transition:transform .2s ease-in-out;-webkit-transition:transform .2s ease-in-out;-ms-transition:transform .2s ease-in-out;width:14px}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow[data-sort-order=ASC]>span{transform:rotate(180deg);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg)}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span:before{left:3px;transform:rotate(-45deg);-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg)}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span:after,.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span:before{background-color:#666;content:"";display:block;height:9px;position:absolute;top:0;transition:background-color .2s ease-in-out;-webkit-transition:background-color .2s ease-in-out;-ms-transition:background-color .2s ease-in-out;width:2px}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span:after{left:9px;transform:rotate(45deg);-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg)}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-search-filter-wrap{float:right;padding:0;position:relative}.rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:1px solid #666;color:#666;font-family:Dosis,sans-serif;font-size:12px;font-weight:600;height:39px;padding:11px}.rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input:focus{box-shadow:none;outline:none}.rt-filter-item-wrap.rt-search-filter-wrap span.rt-action{cursor:pointer;display:inline-block;font-size:15px;position:absolute;right:5px;top:6px}.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input::-webkit-input-placeholder{font-family:Dosis,sans-serif;font-size:12px;font-weight:600}.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input::-moz-placeholder{font-family:Dosis,sans-serif;font-size:12px;font-weight:600}.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input:-ms-input-placeholder{font-family:Dosis,sans-serif;font-size:12px;font-weight:600}.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input:-moz-placeholder{font-family:Dosis,sans-serif;font-size:12px;font-weight:600}@media (max-width:600px){.rt-filter-item-wrap.rt-tax-filter.rt-filter-dropdown-wrap{display:block;margin-bottom:10px}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap>.rt-filter-dropdown-default{margin:0 auto}}.rt-tpg-social-share.a{position:relative}body>.rt-tooltip{background:#666;border-radius:3px;border-width:2px;-o-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa;color:#fff;font-size:100%;opacity:0;padding:5px 10px;pointer-events:none;position:absolute;transition:opacity 1s ease-in-out;z-index:9999}body>.rt-tooltip .rt-tooltip-content{font-size:90%}body>.rt-tooltip,body>.rt-tooltip .rt-tooltip-bottom:after{background:#000;border-radius:2px}body>.rt-tooltip .rt-tooltip-bottom{bottom:-16px;height:18px;left:50%;margin-left:-32px;overflow:hidden;position:absolute;width:70px}body>.rt-tooltip .rt-tooltip-bottom:after{tranform:rotate(45deg);content:"";height:25px;left:20px;position:absolute;top:-20px;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);width:25px}.rt-tpg-container .rt-holder .rt-img-holder{overflow:hidden;position:relative}.rt-tpg-container .rt-holder .tpg-el-image-wrap{margin:-15px -15px 15px}.rt-tpg-container .list-behaviour .rt-holder .tpg-el-image-wrap{margin:0}.rt-tpg-container .img_zoom_out .rt-holder .rt-img-holder img:not(.avatar),.rt-tpg-container .rt-holder:hover .rt-img-holder img:not(.avatar){transform:scale(1.1)}.rt-tpg-container .img_no_effect .rt-holder:hover .rt-img-holder img,.rt-tpg-container .img_zoom_out .rt-holder:hover .rt-img-holder img{transform:scale(1)}.rt-tpg-container .rt-holder .rt-detail{padding:15px 15px 0}.rt-tpg-container .entry-title-wrapper .entry-title{font-size:26px;font-weight:500;line-height:1.25;margin:0 0 18px}@media (max-width:767px){.rt-tpg-container .entry-title-wrapper .entry-title{font-size:20px;margin:0 0 15px}}.rt-tpg-container .rt-detail .tpg-excerpt-inner,.rt-tpg-container .rt-holder .rt-detail .entry-title-wrapper{margin-bottom:15px}.rt-tpg-container .list-layout2 .rt-detail .tpg-excerpt-inner,.rt-tpg-container .list-layout3 .rt-detail .tpg-excerpt-inner{margin-bottom:0}.rt-tpg-container .rt-holder .rt-detail .post-meta{line-height:25px;overflow:hidden}.rt-tpg-container .rt-holder .rt-detail .read-more a{align-items:center;border:1px solid hsla(0,0%,80%,.4);display:inline-flex;flex-direction:row;flex-wrap:wrap;font-size:15px;justify-content:left;line-height:1.8;overflow:hidden;padding:8px 20px}.rt-tpg-container .rt-holder .rt-detail .read-more a:hover{border-color:#7a64f2;color:#7a64f2}.rt-tpg-container .rt-holder .rt-detail .read-more a{color:#1a1a1a}.rt-tpg-container .rt-holder .rt-detail .post-meta.right{text-align:right}.rt-tpg-container .rt-holder .rt-detail .post-meta.center{text-align:center}.tpg-img-circle .rt-img-holder img{border-radius:50%!important}@-webkit-keyframes ball-scale-multiple{0%{opacity:0;transform:scale(0)}5%{opacity:.75}to{opacity:0;transform:scale(1)}}@keyframes ball-scale-multiple{0%{opacity:0;transform:scale(0)}5%{opacity:.75}to{opacity:0;transform:scale(1)}}@-webkit-keyframes ball-clip-rotate{0%{transform:rotate(0deg)}50%{transform:rotate(180deg)}to{transform:rotate(1turn)}}@keyframes ball-clip-rotate{0%{transform:rotate(0deg)}50%{transform:rotate(180deg)}to{transform:rotate(1turn)}}.rt-container-fluid{position:relative}#bottom-script-loader{background:hsla(0,0%,100%,.95);height:calc(100% + 60px);margin:-30px;position:absolute;width:calc(100% + 60px);z-index:999}#bottom-script-loader .rt-ball-clip-rotate{color:var(--tpg-primary-color,#0d6efd);margin-right:-16px;position:absolute;right:50%;top:80px;z-index:2}.tpg-widget-heading-wrapper{display:flex;margin-bottom:30px;position:relative}.tpg-widget-heading-wrapper .tpg-widget-heading{line-height:1;margin-bottom:-1px;margin-top:0;padding-right:15px;padding-top:0;position:relative}.search .tpg-widget-heading-wrapper .tpg-widget-heading{line-height:1.5}@meia (max-width: 767px){.tpg-widget-heading-wrapper .tpg-widget-heading{line-height:1.2}}.tpg-widget-heading-wrapper.center .tpg-widget-heading{margin:0;padding:0}.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading:before{background-color:var(--tpg-primary-color,#0d6efd);border-radius:50%;content:"";display:inline-block;height:8px;margin-right:7px;margin-top:-4px;position:absolute;right:-7.5px;top:50%;width:8px}.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-left,.tpg-widget-heading-wrapper.heading-style1.center .tpg-widget-heading:before{display:none}.tpg-widget-heading-wrapper.heading-style1.center .tpg-widget-heading-line.line-left{display:block;margin-left:0;margin-right:15px}.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line,.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line-left{-webkit-box-flex:1;align-self:center;border-color:#e5e5e5;border-style:solid;border-width:1px 0;flex-grow:1;height:4px;margin-left:15px}.tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading,.tpg-widget-heading-wrapper.heading-style3 .tpg-widget-heading{background-color:var(--tpg-primary-color,#0d6efd);color:#fff;line-height:1.4;margin-bottom:-.5px;padding:5px 15px}.tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading a,.tpg-widget-heading-wrapper.heading-style3 .tpg-widget-heading a{color:inherit}.tpg-widget-heading-wrapper.center{justify-content:center}.tpg-widget-heading-wrapper.right{flex-direction:row-reverse}.tpg-widget-heading-wrapper.right .tpg-widget-heading{padding-left:15px;padding-right:0}.tpg-widget-heading-wrapper.right .tpg-widget-heading:before{left:0;right:auto}.tpg-widget-heading-wrapper.right .tpg-widget-heading-line{margin-left:0;margin-right:15px}.tpg-el-main-wrapper .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:before,.tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:after{border-left:0 solid transparent;border-bottom:0 solid var(--tpg-primary-color,#0d6efd);border-right:12px solid transparent;border-top:12px solid var(--tpg-primary-color,#0d6efd);content:"";position:absolute;right:-11px;top:0}.section-title-align-center .tpg-el-main-wrapper .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:before,.tpg-widget-heading-wrapper.heading-style2.right .tpg-widget-heading:after{border-width:12px 0 0 12px;left:-11px;right:auto}.tpg-widget-heading-wrapper.heading-style2.center .tpg-widget-heading:after{content:none}.section-title-style-style2 .tpg-header-wrapper.carousel,.section-title-style-style2 .tpg-header-wrapper:not(.carousel) .tpg-widget-heading-wrapper,.section-title-style-style3 .tpg-header-wrapper.carousel,.section-title-style-style3 .tpg-header-wrapper:not(.carousel) .tpg-widget-heading-wrapper{border-bottom:2px solid var(--tpg-primary-color,#0d6efd)}.tpg-even,.tpg-full-height{display:flex;flex-wrap:wrap}@media (max-width:767px){.rt-content-loader .rt-holder,.tpg-even .rt-holder{flex-direction:column}}.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next>*{background-color:#bcbcbc;bottom:auto;color:#fff;cursor:pointer;display:inline-block;font-size:18px;height:30px;line-height:30px;margin-left:1px;margin-right:1px;text-align:center;transition:background-color .2s ease-in-out,color .2s ease-in-out,opacity .2s ease-in-out,visibility .2s ease-in-out;-webkit-transition:background-color .2s ease-in-out,color .2s ease-in-out,opacity .2s ease-in-out,visibility .2s ease-in-out;-ms-transition:background-color .2s ease-in-out,color .2s ease-in-out,opacity .2s ease-in-out,visibility .2s ease-in-out;width:30px}.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next>* i{line-height:1}.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next>.rt-disabled{opacity:.5;pointer-events:none}.rt-cb-page-prev-next{text-align:left}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style .rt-loadmore-loading{color:#fff;left:50%;margin-left:-32px;margin-top:-32px;opacity:0;position:absolute;top:50%;visibility:hidden}.rt-ball-scale-multiple.rt-2x,.rt-ball-scale-multiple.rt-2x>div{height:64px;width:64px}.rt-ball-scale-multiple,.rt-ball-scale-multiple>div{box-sizing:border-box;position:relative}.rt-ball-scale-multiple>div{background-color:currentColor;border:0 solid;display:inline-block;float:none}.rt-ball-scale-multiple>div:nth-child(2){-webkit-animation-delay:.2s;animation-delay:.2s}.rt-ball-scale-multiple>div{-webkit-animation:ball-scale-multiple 1s linear 0s infinite;animation:ball-scale-multiple 1s linear 0s infinite;border-radius:100%;height:32px;left:0;opacity:0;position:absolute;top:0;width:32px}.rt-tpg-container .rt-pagination-wrap{display:inline-block;margin-top:10px;text-align:center;width:100%}.tpg-el-main-wrapper .rt-pagination-wrap{display:flex;flex-direction:row;justify-content:center;margin-top:30px}.tpg-el-main-wrapper .rt-pagination-wrap .rt-pagination{margin:0}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style{cursor:pointer;position:relative;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next.rt-hidden-elm,.rt-tpg-container .rt-pagination-wrap .rt-infinite-action.rt-hidden-elm,.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style.rt-hidden-elm,.rt-tpg-container .rt-pagination-wrap .rt-page-numbers.rt-hidden-elm{display:none!important}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style.rt-lm-loading .rt-loadmore-text{opacity:0;visibility:hidden}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style.rt-lm-loading .rt-loadmore-loading{opacity:1;visibility:visible}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-btn{background-color:var(--tpg-primary-color,#0d6efd);color:#fff;display:inline-block;font-size:13px;letter-spacing:.1em;margin-top:30px;padding:9px 20px 8px;text-decoration:none;text-transform:uppercase;transition:color .2s ease-in-out,background-color .2s ease-in-out;-webkit-transition:color .2s ease-in-out,background-color .2s ease-in-out;-ms-transition:color .2s ease-in-out,background-color .2s ease-in-out}.rt-tpg-container .rt-loadmore-btn:hover{background-color:var(--tpg-secondary-color,#0654c4)}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages{float:none;padding-bottom:.1px;padding-top:.1px}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers.rt-lm-loading{opacity:.5;pointer-events:none}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul{float:none;font-size:0;line-height:0;margin:-2px;text-align:center}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li{border:none;display:inline-block;float:none;font-size:16px;line-height:1.55;min-height:45px;min-width:48px;padding:2px}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li>a{border:1px solid #dee2e6;border-radius:3px;color:#212121;display:block;font-size:16px;font-weight:400;letter-spacing:0;line-height:45px;min-height:45px;min-width:48px;padding-left:8px;padding-right:8px;text-decoration:none}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.active>a{background-color:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd);color:#fff}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.paginationjs-ellipsis{min-width:auto;padding:0}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.paginationjs-ellipsis a{background:none!important;border:none!important;color:#000!important;font-size:18px;min-width:auto;opacity:1;pointer-events:none!important}.rt-pagination{margin:30px 0;text-align:center}.rt-pagination .pagination-list{background:transparent;border-radius:4px;border-top:0;display:inline-block;padding-left:0}.rt-pagination .pagination-list a{box-shadow:none}.rt-pagination .pagination-list>li{display:inline-block;margin:2px}.rt-pagination .pagination-list>li>a,.rt-pagination .pagination-list>li>span{background-color:#fff;border:1px solid #ddd;border-radius:3px;color:#212121;display:block;line-height:45px;margin-left:-1px;min-height:45px;min-width:48px;padding:0 5px;position:relative;text-decoration:none;transition:.4s ease-in-out}.rt-pagination .pagination-list>li>a:focus,.rt-pagination .pagination-list>li>a:hover,.rt-pagination .pagination-list>li>span:focus,.rt-pagination .pagination-list>li>span:hover{background-color:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd);color:#fff;z-index:2}.rt-pagination .pagination-list>.active>a,.rt-pagination .pagination-list>.active>a:focus,.rt-pagination .pagination-list>.active>a:hover,.rt-pagination .pagination-list>.active>span,.rt-pagination .pagination-list>.active>span:focus,.rt-pagination .pagination-list>.active>span:hover{background-color:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd);color:#fff;cursor:default;z-index:3}.rt-pagination .pagination-list>.disabled>a,.rt-pagination .pagination-list>.disabled>a:focus,.rt-pagination .pagination-list>.disabled>a:hover,.rt-pagination .pagination-list>.disabled>span,.rt-pagination .pagination-list>.disabled>span:focus,.rt-pagination .pagination-list>.disabled>span:hover{background-color:#fff;border-color:#ddd;color:#212121;cursor:not-allowed}.rt-tpg-container .swiper-pagination-bullet{background:#d6d6d6;height:10px;opacity:1;width:10px}.rt-tpg-container .swiper-wrapper{padding-bottom:45px}.rt-tpg-container.slider-layout13-main .swiper-wrapper{padding-bottom:0}.rt-tpg-container .swiper-pagination-bullets.swiper-pagination-horizontal{bottom:0}.rt-tpg-container .swiper-pagination-bullet.swiper-pagination-bullet-active-main{background:#007bff}.rt-tpg-container>div{position:relative}.rt-tpg-container .slider-main-wrapper{opacity:0;position:relative}.rt-tpg-container .swiper-navigation .slider-btn{align-items:center;background-color:#fff;background-image:none;border:1px solid #e5e5e5;border-radius:3px;color:#2962ff;display:inline-flex;font-size:14px;height:32px;justify-content:center;position:absolute;transition:all .3s ease;-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;width:34px}.rt-tpg-container .tpg-header-wrapper .swiper-navigation .slider-btn,.slider-arrow-position-top-left .rt-tpg-container .swiper-navigation .slider-btn,.slider-arrow-position-top-right .rt-tpg-container .swiper-navigation .slider-btn{position:static}.rt-tpg-container .swiper-navigation .slider-btn:hover{background-color:#2962ff;border-color:#2962ff;color:#fff}.rt-tpg-container .swiper-navigation .slider-btn:focus{box-shadow:none;outline:0}.rt-tpg-container .swiper-navigation .slider-btn.swiper-button-next{margin-left:3px}.rt-tpg-container .swiper-navigation .swiper-button-next:after,.rt-tpg-container .swiper-navigation .swiper-button-prev:after{font-size:inherit}.rt-tpg-container .tpg-cf-group-title{font-size:16px;margin-bottom:0}.rt-tpg-container .tpg-cf-fields{font-size:95%;line-height:1.6;margin-top:0}.tpg-el-main-wrapper .tpg-cf-wrap{margin:10px 0 0}.rt-tpg-container .tpg-cf-wrap:empty{margin:0}.act-label-style-inline .tgp-cf-field-label{margin-right:8px;min-width:inherit}.act-label-style-inline .tgp-cf-field-label:after{content:":"}.act-label-style-block .tgp-cf-field-label{display:block!important;float:none;margin-right:0;min-width:inherit}.act-label-style-block .tpg-cf-fields{display:block;margin-bottom:5px}.rt-tpg-container .rt-holder .tgp-cf-field-value *{color:inherit;display:inline;margin:0;transition:none}.isotope-term-no-post{min-height:30px}.isotope-term-no-post p{display:none;margin-bottom:0}.tpg-el-main-wrapper.loading{min-height:300px;transition:.4s}.tpg-el-main-wrapper.loading:before{-webkit-animation:ball-clip-rotate .75s linear infinite;animation:ball-clip-rotate .75s linear infinite;background:transparent;border:2px solid;border-bottom:2px solid transparent;border-radius:100%;color:red;display:inline-block;float:none;height:32px;left:50%;position:absolute;top:50%;width:32px;z-index:9999999999}.tpg-even.grid-behaviour{align-items:flex-start}.grid-layout2.tpg-even,.grid-layout6 .tpg-even.grid-behaviour,.tpg-full-height{align-items:inherit}.tpg-el-main-wrapper .tpg-post-holder{height:100%}.grid_hover-layout9-2-main .tpg-even .rt-holder,.grid_hover-layout9-main .tpg-even .rt-holder,.list-layout1-main .tpg-even .rt-holder{display:block}.rt-el-post-meta span.author{margin-bottom:2px}.rt-tpg-container .rt-detail .tpg-excerpt{margin-top:-5px}.tpg-el-main-wrapper .slider_layout_wrapper .tpg-post-holder{margin-top:1px}.tpg-el-main-wrapper .grid-layout5 .tpg-post-holder,.tpg-el-main-wrapper .grid-layout6 .tpg-post-holder,.tpg-el-main-wrapper .slider_layout_wrapper .tpg-post-holder{height:auto}.rt-tpg-container .rt-el-content-wrapper{transition:background-color .4s ease-in-out}.rt-tpg-container .tpg-post-holder .read-more a,.rt-tpg-social-share a i,.tpg-el-main-wrapper .post-meta-tags a,.tpg-el-main-wrapper .post-meta-tags img,.tpg-el-main-wrapper .post-meta-tags span,.tpg-el-main-wrapper .rt-holder:hover .post-meta-tags i,.tpg-el-main-wrapper .tpg-el-excerpt,.tpg-el-main-wrapper .tpg-el-excerpt *,.tpg-el-main-wrapper .tpg-el-image-wrap .overlay,.tpg-el-main-wrapper .tpg-el-image-wrap img,.tpg-el-main-wrapper .tpg-post-holder,.tpg-separate-category .categories-links,.tpg-separate-category .categories-links i{transition:.4s ease-in-out}.tpg-el-main-wrapper .rt-content-loader [class*=rt-col]{margin-top:0;padding-bottom:30px}.tpg-el-main-wrapper .entry-title a{color:inherit}.tpg-el-main-wrapper .entry-title a:hover{color:var(--tpg-primary-color,#0d6efd)}.tpg-widget-heading-wrapper .tpg-widget-heading a{color:inherit}.section-title-align-center .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-left,.section-title-align-right .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-left{display:block;margin-left:0;margin-right:15px}.section-title-align-center .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading:before{display:none}.section-title-align-center .tpg-widget-heading-wrapper .tpg-widget-heading{margin-right:0!important}.section-title-align-right .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-right{display:none}.section-title-align-right .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading{padding-left:15px;padding-right:0}.section-title-align-right .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading:before{left:0;right:auto}.section-title-align-left .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:before{display:none}.section-title-align-left .tpg-widget-heading-wrapper.heading-default,.section-title-align-left .tpg-widget-heading-wrapper.heading-style2,.section-title-align-left .tpg-widget-heading-wrapper.heading-style3{justify-content:flex-start}.section-title-align-center .tpg-widget-heading-wrapper.heading-default,.section-title-align-center .tpg-widget-heading-wrapper.heading-style2,.section-title-align-center .tpg-widget-heading-wrapper.heading-style3{justify-content:center}.section-title-align-right .tpg-widget-heading-wrapper.heading-default,.section-title-align-right .tpg-widget-heading-wrapper.heading-style2,.section-title-align-right .tpg-widget-heading-wrapper.heading-style3{justify-content:flex-end}.section-title-align-right .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:after{display:none}.title-one-line .entry-title,.title-three-line .entry-title,.title-two-line .entry-title{-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;text-overflow:ellipsis}.title-one-line .entry-title{-webkit-line-clamp:1}.title-two-line .entry-title{-webkit-line-clamp:2}.title-three-line .entry-title{-webkit-line-clamp:3}.rt-tpg-container .rt-el-post-meta{margin-bottom:13px}.rt-tpg-container .rt-el-post-meta i{margin-right:5px}.rt-tpg-container .offset-right .rt-el-post-meta{margin-top:-6px}.tpg-el-main-wrapper .tpg-el-image-wrap img{height:100%;-o-object-fit:cover;object-fit:cover}@media (max-width:767px){.tpg-el-main-wrapper .tpg-el-image-wrap img{width:100%!important}}.tpg-el-main-wrapper .tpg-el-image-wrap a.tpg-post-link{height:100%;width:100%}.tpg-el-main-wrapper .tpg-el-image-wrap .overlay{height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%}.tpg-el-main-wrapper .rt-grid-hover-item .tpg-el-image-wrap .overlay.grid-hover-content{display:none!important;opacity:0;visibility:hidden}.tpg-el-main-wrapper .tpg-post-holder .tpg-el-image-wrap .overlay.show-on-hover,.tpg-el-main-wrapper .tpg-post-holder:hover .tpg-el-image-wrap .overlay.hide-on-hover{opacity:0!important}.tpg-el-main-wrapper .tpg-post-holder:hover .tpg-el-image-wrap .overlay.show-on-hover{opacity:1!important}.tpg-el-main-wrapper .post-meta-tags span{display:inline-block;padding-right:8px}.tpg-el-main-wrapper .post-meta-tags span img+span.author-prefix{padding-left:3px}.tpg-el-main-wrapper .post-meta-tags span.author-prefix{padding-right:5px}.tpg-el-main-wrapper .post-meta-tags span img{border-radius:50%;display:inline-block;height:25px!important;margin-right:5px;margin-top:-2%;max-width:25px;width:auto!important}.post-meta-tags span.separator:last-of-type{display:none}body .readmore-btn-only-text .rt-tpg-container .tpg-post-holder .read-more a{background:none!important;border:none!important;padding:0!important}.rt-tpg-container .tpg-post-holder .read-more a i{transition:margin .4s ease-in-out}.rt-tpg-container .tpg-post-holder .read-more a i.left-icon{margin-right:5px}.rt-tpg-container .tpg-post-holder .read-more a i.right-icon{margin-left:5px}.tpg-el-box-border-disable .rt-tpg-container .rt-holder{border:none;box-shadow:none!important}.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{display:flex;justify-content:space-between}.tpg-filter-alignment-left .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{align-items:flex-start}.tpg-filter-alignment-center .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{align-items:center}.tpg-filter-alignment-right .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{align-items:flex-end}.tpg-filter-h-alignment-left .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{justify-content:flex-start}.tpg-filter-h-alignment-center .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{justify-content:center}.tpg-filter-h-alignment-right .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{justify-content:flex-end}.tpg-filter-h-alignment-space-between .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{justify-content:space-between}.rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input{min-width:202px}.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper{margin-right:15px}@media (max-width:1023px){.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper{text-align:center}.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-right-wrapper{align-items:center;display:flex;flex-wrap:wrap;justify-content:center}.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-right-wrapper .rt-order-by-action{order:-1}}@media (max-width:991px){.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{flex-direction:column}}@media (max-width:600px){.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper{margin-right:0}.tpg-filter-type-dropdown .rt-filter-wrap .filter-left-wrapper{display:flex;justify-content:center}.tpg-el-main-wrapper .rt-filter-item-wrap.rt-tax-filter.rt-filter-dropdown-wrap{margin-bottom:4px}.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{flex-direction:column}}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap{min-height:38px}.tpg-el-main-wrapper .rt-holder .rt-el-content-wrapper{display:flex;flex-direction:column}.tpg-el-main-wrapper .rt-holder .rt-el-content-wrapper-flex{display:flex;flex-direction:row}.title_position_above_image .tpg-el-main-wrapper .rt-holder .rt-el-content-wrapper .tpg-el-image-wrap{margin:0 -15px 15px}.rt-tpg-container .rt-holder .rt-detail .entry-title-wrapper .entry-title{margin-bottom:0;transition:.4s}.rt-tpg-container .rt-holder .rt-detail .entry-title-wrapper .tpg-separate-category{margin-bottom:5px}.tpg-el-main-wrapper .rt-holder .tpg-el-excerpt{order:5}.tpg-el-main-wrapper .rt-holder .rt-tpg-social-share{order:10}.tpg-el-main-wrapper .rt-tpg-social-share a{margin-right:10px}.tpg-el-main-wrapper .rt-holder .post-footer{margin-bottom:15px;order:11}.title_position_above_image .tpg-el-main-wrapper .rt-holder .entry-title-wrapper{order:-5}.title_position_below_image .tpg-el-main-wrapper .rt-holder .tpg-el-image-wrap{order:-8}.title_position_below_image .tpg-el-main-wrapper .rt-holder .entry-title-wrapper{order:2}.title_position_above_image.meta_position_above_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:-6}.title_position_above_image.meta_position_below_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:-4}.title_position_below_image.meta_position_above_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:1}.title_position_below_image.meta_position_below_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:3}.meta_position_below_excerpt .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:6}.meta_position_above_excerpt .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:4}.title_position_default.meta_position_above_title .tpg-el-main-wrapper .rt-holder .tpg-el-image-wrap{order:-2}.title_position_default.meta_position_above_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:-1}.title_hover_border_enable .rt-tpg-container .entry-title-wrapper .entry-title a{background:linear-gradient(180deg,var(--tpg-primary-color,#0d6efd) 0,var(--tpg-primary-color,#0d6efd) 98%);background-position:left 100%;background-repeat:no-repeat;background-size:0 2px}.title_hover_border_enable .rt-tpg-container .entry-title-wrapper .entry-title:hover a{background-size:100% 2px}.title_hover_border_disable .rt-tpg-container .entry-title-wrapper .entry-title a{background:none!important}.rt-tpg-container .post-right-content{display:flex;flex-direction:column}.rt-tpg-container .list-layout-wrapper .post-right-content{flex:1}.tpg-separate-category.style1 .rt-separator{margin-right:3px}.tpg-category-position-default .grid-layout4 .rt-detail .entry-title-wrapper .tpg-separate-category,.tpg-is-author-icon-hide .post-meta-tags span.author i,.tpg-is-author-icon-hide .post-meta-tags span.author img{display:none}.rt-tpg-container .rt-holder .rt-img-holder .tpg-zoom{left:50%;opacity:0;position:absolute;top:60%;transform:translate(-50%,-50%);visibility:hidden;z-index:99}.rt-tpg-container .rt-holder:hover .rt-img-holder .tpg-zoom{opacity:1;top:50%;visibility:visible}.rt-tpg-container .rt-holder .rt-img-holder .tpg-zoom .fa{background:hsla(0,0%,100%,.8);border:0 solid;border-radius:50%;box-sizing:border-box;display:inline-block;font-size:20px;height:50px;line-height:40px;margin-right:0;padding:5px;text-align:center;width:50px}@media (min-width:992px){.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-3:nth-child(8n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-3:nth-child(8n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-3:nth-child(8n+7) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-3:nth-child(8n+8) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-4:nth-child(6n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-4:nth-child(6n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-4:nth-child(6n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-6:nth-child(4n+3) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-6:nth-child(4n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-12:nth-child(2n) .rt-el-content-wrapper-flex{flex-direction:row-reverse}}@media (min-width:1200px){.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-4:nth-child(6n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-4:nth-child(6n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-4:nth-child(6n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-6:nth-child(4n+3) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-6:nth-child(4n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-12:nth-child(2n) .rt-el-content-wrapper-flex{flex-direction:row-reverse}}@media (min-width:768px) and (max-width:991px){.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-3:nth-child(8n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-3:nth-child(8n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-3:nth-child(8n+7) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-3:nth-child(8n+8) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-4:nth-child(6n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-4:nth-child(6n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-4:nth-child(6n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-6:nth-child(4n+3) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-6:nth-child(4n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-12:nth-child(2n) .rt-el-content-wrapper-flex{flex-direction:row-reverse}}@media (max-width:768px){.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-3:nth-child(8n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-3:nth-child(8n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-3:nth-child(8n+7) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-3:nth-child(8n+8) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-4:nth-child(4n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-4:nth-child(4n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-4:nth-child(4n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-6:nth-child(4n+3) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-6:nth-child(4n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-12:nth-child(2n) .rt-el-content-wrapper-flex{flex-direction:row-reverse}}.rt-tpg-container .grid-layout4 .rt-holder .tpg-el-image-wrap,.rt-tpg-container .grid-layout5 .rt-holder .tpg-el-image-wrap,.rt-tpg-container .grid-layout6 .rt-holder .tpg-el-image-wrap{margin:0 0 15px}.rt-tpg-container .grid-layout4 .cat-over-image a,.rt-tpg-container .grid-layout5 .tpg-separate-category a,.rt-tpg-container .list-layout4 .tpg-separate-category a{align-items:center;background-color:#ffaf25;color:#fff;display:inline-flex;font-size:12px;justify-content:center;line-height:1;margin-right:5px;min-height:24px;padding:0 8px}.rt-tpg-container .grid-layout4 .cat-over-image a:hover,.rt-tpg-container .grid-layout5 .tpg-separate-category a:hover,.rt-tpg-container .list-layout4 .tpg-separate-category a:hover{background:#e59100}.rt-tpg-container .grid-layout4 .cat-over-image .rt-separator,.rt-tpg-container .grid-layout5 .tpg-separate-category .rt-separator{display:none}.rt-tpg-container .grid-layout1 .rt-holder,.rt-tpg-container .grid-layout3 .rt-holder{box-shadow:0 0 2px 0 rgba(0,0,0,.3);-webkit-box-shadow:0 0 2px 0 rgba(0,0,0,.3);-moz-box-shadow:0 0 2px 0 rgba(0,0,0,.3)}.tpg-el-main-wrapper .grid-layout2 .rt-holder .rt-el-content-wrapper-flex{height:100%;padding:0}.rt-tpg-container .grid-layout2 .rt-holder .tpg-el-image-wrap{flex:0 0 50%;margin:0;max-width:50%}.rt-tpg-container .grid-layout2 .rt-holder .post-right-content{flex-grow:1;flex:0 0 50%;max-width:50%;padding:15px}.tpg-el-main-wrapper .grid-layout2 [class*=rt-col]{padding:0}@media (max-width:500px){.tpg-el-main-wrapper .grid-layout2 .rt-el-content-wrapper-flex,.tpg-post-order-reverse .rt-tpg-container .rt-row .rt-col-xs-12:nth-child(2n) .rt-el-content-wrapper-flex{display:block}.rt-tpg-container .grid-layout2 .rt-holder .post-right-content,.rt-tpg-container .grid-layout2 .rt-holder .tpg-el-image-wrap{flex:inherit;margin:0;max-width:100%}.tpg-el-main-wrapper .grid-layout2 [class*=rt-col]{margin-bottom:15px}}.rt-tpg-container .grid-layout3 .rt-holder{border-radius:4px;overflow:hidden}.meta_position_default .tpg-el-main-wrapper .grid-layout3 .rt-holder .rt-el-post-meta{order:12;padding-bottom:5px;padding-top:20px;position:relative}.meta_position_default .tpg-el-main-wrapper .grid-layout3 .rt-holder .rt-el-post-meta:before{background:#ddd;content:"";height:1px;left:-50px;position:absolute;right:-50px;top:0;width:calc(100% + 100px)}.rt-tpg-container .grid-layout4 .entry-title-wrapper .entry-title{font-size:22px;font-weight:500;line-height:32px}.tpg-el-main-wrapper .grid-layout4 .tpg-el-image-wrap img{height:230px;width:100%}.rt-tpg-container .grid-layout4 .rt-holder .rt-detail{padding:0}.tpg-is-author-icon-default .grid-layout4 .post-meta-tags span.author i,.tpg-is-author-icon-default .grid-layout4 .post-meta-tags span.author img{display:none}.tpg-el-main-wrapper .list-layout-wrapper .rt-holder .rt-el-content-wrapper{display:flex;flex-direction:row;height:100%;padding:0}.tpg-el-main-wrapper.list-layout1-main .list-layout-wrapper .rt-holder .rt-el-content-wrapper{align-items:flex-start}.tpg-el-main-wrapper.list-layout1-2-main .list-layout1 .rt-holder .rt-el-content-wrapper{flex-direction:row-reverse}.rt-tpg-container .list-layout1 .rt-holder .tpg-el-image-wrap{flex:0 0 260px;margin:0 30px 0 0}@media (max-width:991px){.rt-tpg-container .list-layout1 .rt-holder .tpg-el-image-wrap{flex:0 0 200px}}@media (max-width:599px){.tpg-el-main-wrapper.list-layout1-main .list-layout-wrapper .rt-holder .rt-el-content-wrapper{display:block}.rt-tpg-container .list-layout1 .rt-holder .tpg-el-image-wrap{margin:0 0 15px}}.tpg-el-main-wrapper.list-layout1-2-main .list-layout1 .rt-holder .tpg-el-image-wrap{margin:0 0 0 30px}.rt-tpg-container .list-layout1 .rt-detail .read-more a,.rt-tpg-container .list-layout2 .rt-detail .read-more a,.rt-tpg-container .list-layout3 .rt-detail .read-more a{background-color:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd);color:#fff}.rt-tpg-container .list-layout1 .rt-detail .read-more a:hover,.rt-tpg-container .list-layout2 .rt-detail .read-more a:hover,.rt-tpg-container .list-layout3 .rt-detail .read-more a:hover,.rt-tpg-container .list-layout4 .rt-detail .read-more a:hover{background-color:var(--tpg-secondary-color,#0654c4);border-color:var(--tpg-secondary-color,#0654c4);color:#fff}.tags-visibility-default .list-layout1 .post-tags-links,.tags-visibility-default .list-layout1 .post-tags-links+.separator{display:none}.rt-tpg-container .list-layout-wrapper .offset-right .rt-row{display:flex;flex-wrap:wrap;max-width:100%;overflow:hidden;width:100%}.tpg-el-main-wrapper .list-layout2 .offset-left .tpg-el-image-wrap{height:300px}.tpg-el-main-wrapper .list-layout-wrapper .offset-left .rt-holder .rt-el-content-wrapper{flex-direction:column}.rt-tpg-container .list-layout-wrapper .offset-left .rt-holder .tpg-el-image-wrap{flex:inherit;margin:0 0 15px}.tpg-el-main-wrapper .list-layout-wrapper .offset-right .tpg-el-image-wrap{height:100px}.rt-tpg-container .list-layout-wrapper .offset-right .entry-title-wrapper .entry-title{font-size:20px}.tpg-el-main-wrapper.list-layout2-2-main .list-layout2,.tpg-el-main-wrapper.list-layout3-2-main .list-layout3,.tpg-el-main-wrapper.list-layout5-2-main .list-layout5 .rt-holder .rt-el-content-wrapper{flex-direction:row-reverse}.tpg-el-main-wrapper .list-layout-wrapper.list-layout2 .rt-holder .rt-el-content-wrapper{align-items:flex-start}.tags-visibility-default .list-layout2 .post-tags-links,.tags-visibility-default .list-layout2 .post-tags-links+.separator{display:none}.rt-tpg-container .list-layout2 .offset-right .rt-holder .tpg-el-image-wrap{flex:0 0 107px;margin:0 15px 0 0;max-width:107px}.tpg-el-main-wrapper .list-layout3 .offset-right .rt-holder .tpg-el-excerpt{-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;text-overflow:ellipsis}.tpg-el-main-wrapper .list-layout3 [class*=rt-col]{padding-bottom:15px}.tpg-el-main-wrapper .list-layout3 .offset-left .tpg-el-image-wrap{height:390px}.rt-tpg-container .list-layout3 .offset-right .rt-holder .tpg-el-image-wrap{flex:0 0 140px;height:110px;margin:0 15px 0 0;max-width:140px}.tpg-el-main-wrapper .list-layout-wrapper.list-layout4 .rt-el-content-wrapper{align-items:inherit}.rt-tpg-container .list-layout4 .post-right-content,.tpg-el-main-wrapper .list-layout4 .rt-holder .tpg-el-image-wrap{flex:0 0 50%;margin:0}@media (min-width:768px){.tpg-el-main-wrapper .list-layout4 .rt-holder .tpg-el-image-wrap{height:400px}}.rt-tpg-container .list-layout4 .post-right-content{display:flex;justify-content:center;margin:0;padding:30px 50px;text-align:center}.rt-tpg-container .list-layout4 .entry-title-wrapper .categories-links .rt-separator{display:none}.tpg-el-main-wrapper .list-layout4 [class*=rt-col]{padding-bottom:0}@media (min-width:768px){.tpg-el-main-wrapper .list-layout4 [class*=rt-col]:nth-child(2n) .rt-holder .rt-el-content-wrapper{flex-direction:row-reverse}}@media (max-width:768px){.tpg-el-main-wrapper .list-layout4 .rt-holder .tpg-el-image-wrap{flex:0 0 150px;height:120px}.rt-tpg-container .list-layout4 .post-right-content{flex:inherit;flex-grow:1;padding:0 0 0 20px;text-align:left}.tpg-el-main-wrapper .list-layout-wrapper.list-layout4 .rt-holder .rt-el-content-wrapper{align-items:flex-start!important}.tpg-el-main-wrapper .list-layout4 [class*=rt-col]{margin-bottom:30px}}@media (max-width:500px){.tpg-el-main-wrapper .list-layout4 .rt-holder .tpg-el-image-wrap{flex:0 0 100px;height:100px}}.rt-tpg-container .list-layout5 .post-right-content{display:block;overflow:hidden;padding-left:20px}.tpg-el-main-wrapper.list-layout5-2-main .list-layout5 .post-right-content{padding-left:0;padding-right:20px}.rt-tpg-container .list-layout5 .rt-holder .rt-img-holder{border-radius:50%;flex:0 0 100px;height:100px;margin-top:8px}.rt-tpg-container .list-layout5 .entry-title-wrapper .entry-title{font-size:18px}.tags-visibility-default .list-layout5 .rt-el-post-meta{color:#a5a6aa;font-size:14px}.list-layout5 .entry-title-wrapper .tpg-separate-category .categories-links{color:#7a7e83;font-size:14px;font-weight:500}.list-layout5 .entry-title-wrapper .tpg-separate-category .categories-links a{color:inherit}.tpg-el-main-wrapper .list-layout5 [class*=rt-col]{padding-bottom:20px}.rt-tpg-container .list-layout5 .post-right-content{flex:1}.grid_hover_layout_wrapper .rt-row-inner{display:flex;flex-wrap:wrap}.rt-tpg-container .rt-grid-hover-item .entry-title-wrapper .entry-title{font-size:20px;line-height:1.4}.tpg-el-main-wrapper .rt-grid-hover-item .rt-holder .rt-el-content-wrapper{height:100%;overflow:hidden;padding:0;position:relative;width:100%}.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content{bottom:0;display:flex;flex-direction:column;justify-content:flex-end;left:0;min-height:56px;padding:30px 30px 15px;position:absolute;right:0;transition:1.2s;width:100%;z-index:1}.rt-tpg-container .rt-grid-hover-item .rt-holder:hover .grid-hover-content{padding-bottom:15px}.rt-tpg-container .rt-grid-hover-item .rt-holder:hover .grid-hover-content>div:last-of-type{margin-bottom:0}.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before{background-color:rgba(0,0,0,.7);bottom:0;content:"";height:100%;left:0;position:absolute;right:0;transition:.4s ease-in-out;width:100%;z-index:-1}.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after{background-color:rgba(0,0,0,.5)}.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,.rt-tpg-container .rt-grid-hover-item .rt-holder:hover .grid-hover-content:before{opacity:0;visibility:hidden}.rt-tpg-container .rt-grid-hover-item .rt-holder:hover .grid-hover-content:after{opacity:1;visibility:visible}.rt-tpg-container .rt-grid-hover-item .entry-title-wrapper .entry-title,.rt-tpg-container .rt-grid-hover-item .rt-detail .read-more a,.rt-tpg-container .rt-grid-hover-item .rt-el-post-meta,.rt-tpg-container .rt-grid-hover-item .rt-el-post-meta a,.rt-tpg-container .rt-grid-hover-item .rt-holder .tpg-el-excerpt{color:#fff}.rt-tpg-container .rt-grid-hover-item a:hover{color:var(--tpg-primary-color,#0d6efd)}.rt-tpg-container .rt-grid-hover-item .rt-detail .read-more a{border-color:hsla(0,0%,100%,.7)}.rt-tpg-container .rt-grid-hover-item .rt-holder .tpg-el-image-wrap{margin:0}.rt-grid-hover-item .tpg-el-image-wrap{background-color:#e4eaf1;height:100%}.grid-hover-overlay-type-fadein-on-hover .rt-tpg-container .rt-holder .grid-hover-content .entry-title-wrapper .entry-title:before{transition:.5s ease-in-out;width:0}.grid-hover-overlay-type-fadein-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content .entry-title-wrapper .entry-title:before{width:50%}.grid-hover-overlay-type-fadein-on-hover .rt-tpg-container .rt-holder .grid-hover-content{opacity:0;transition:.5s ease-in-out}.grid-hover-overlay-type-fadein-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{opacity:1}.grid-hover-overlay-type-fadeout-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{opacity:0}.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-holder .grid-hover-content{left:-100%;transition:.5s ease-in-out}.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{left:0}.grid-hover-overlay-type-slideout-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{left:100%}.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,.grid-hover-overlay-type-slideout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before{transition:.5s ease-in-out}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,.grid-hover-overlay-type-slideout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before{background:var(--tpg-primary-color,#0d6efd);opacity:1;visibility:visible}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,.grid-hover-overlay-type-slideout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after{content:none}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content{height:100%}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content,.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .tpg-el-image-wrap,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .rt-img-holder{transition:all .5s}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .rt-img-holder img{transform:none!important}.grid-hover-overlay-type-zoomin-on-hover .rt-tpg-container .rt-holder .grid-hover-content,.grid-hover-overlay-type-zoomout-on-hover .rt-tpg-container .rt-holder .grid-hover-content{transition:.5s ease-in-out}.grid-hover-overlay-type-zoomin-on-hover .rt-tpg-container .rt-holder .grid-hover-content,.grid-hover-overlay-type-zoomout-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{opacity:0;transform:scale(0)}.grid-hover-overlay-type-zoomin-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{opacity:1;transform:scale(1)}.grid-hover-overlay-type-zoominall-on-hover .rt-tpg-container .rt-holder .grid-hover-content *,.grid-hover-overlay-type-zoomoutall-on-hover .rt-tpg-container .rt-holder .grid-hover-content *{transition:.4s ease-in-out!important}.grid-hover-overlay-type-zoominall-on-hover .rt-tpg-container .rt-holder .grid-hover-content *,.grid-hover-overlay-type-zoomoutall-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content *{opacity:0;transform:scale(0)}.grid-hover-overlay-type-zoominall-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content *{opacity:1;transform:scale(1)}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content{-webkit-backface-visibility:hidden;backface-visibility:hidden;opacity:0;transform:rotateY(-180deg)}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .grid-hover-content{-webkit-backface-visibility:visible;backface-visibility:visible;opacity:1;transform:rotateY(0deg)}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .rt-img-holder,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .grid-hover-content{opacity:0;transform:rotateY(180deg);visibility:hidden}.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .rt-img-holder{-webkit-backface-visibility:hidden;backface-visibility:hidden;opacity:0;transform:rotateY(-180deg)}.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .rt-img-holder{-webkit-backface-visibility:visible;backface-visibility:visible;opacity:1;transform:rotateY(0deg)}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .post-footer,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .rt-el-post-meta,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .rt-tpg-social-share,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .tpg-el-excerpt{margin-bottom:0;max-height:0;opacity:0;transition:.6s;visibility:hidden}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .post-footer,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .rt-el-post-meta,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .rt-tpg-social-share,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .tpg-el-excerpt{margin-bottom:15px}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .rt-el-post-meta{transition:all .6s,opacity .6s}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .tpg-el-excerpt{transition:all .6s,opacity .5s}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .post-footer{transition:all .6s,opacity .4s}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .rt-tpg-social-share{transition:all .6s,opacity .3s}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .rt-el-post-meta{margin-bottom:15px;max-height:var(--tpg-meta-height,80px);opacity:1;visibility:visible}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .tpg-el-excerpt{max-height:var(--tpg-excerpt-height,140px);opacity:1;visibility:visible}.rt-tpg-container .grid_hover_layout_wrapper .rt-holder:hover .rt-tpg-social-share{margin-bottom:15px;max-height:var(--tpg-share-height,50px);opacity:1;visibility:visible}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .post-footer{max-height:var(--tpg-footer-height,50px);opacity:1;visibility:visible}.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .post-footer,.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .rt-el-post-meta,.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .rt-tpg-social-share,.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .tpg-el-excerpt,.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout5 .rt-grid-hover-item .rt-holder .rt-el-post-meta{max-height:inherit;opacity:1;visibility:visible}.meta-visibility-default .rt-tpg-container .grid_hover-layout1 .rt-grid-hover-item .rt-holder .rt-el-post-meta{max-height:inherit}.rt-tpg-container .grid_hover-layout1 .rt-holder .tpg-el-image-wrap{height:300px}.grid-hover-overlay-height-full .rt-tpg-container .rt-content-loader .rt-grid-hover-item .rt-holder .grid-hover-content{min-height:100%}.hover-overlay-height-default .rt-tpg-container .grid_hover-layout1 .rt-grid-hover-item .rt-holder:hover .grid-hover-content,.hover-overlay-height-full .rt-tpg-container .rt-content-loader .rt-grid-hover-item .rt-holder:hover .grid-hover-content{min-height:100%;transition:.5s}.rt-tpg-container .grid_hover-layout1 .entry-title-wrapper .entry-title{font-size:20px;line-height:1.4}.meta-visibility-default .rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder .rt-el-post-meta{margin-bottom:7px;max-height:inherit}.rt-tpg-container .grid_hover-layout2 .rt-holder .tpg-el-image-wrap img{height:300px}.rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder .post-footer,.rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder .tpg-el-excerpt,.tpg-el-main-wrapper .grid_hover-layout2 .rt-holder .rt-tpg-social-share{margin-bottom:0;max-height:0;overflow:hidden;transition:.6s}.tpg-el-main-wrapper .grid_hover-layout2 .rt-holder:hover .rt-tpg-social-share{margin-bottom:15px;max-height:50px}.rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder:hover .post-footer{max-height:50px}.hover-overlay-height-full .rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder:hover .grid-hover-content{min-height:100%}.rt-tpg-container .grid_hover-layout2 .rt-holder .grid-hover-content{justify-content:center;margin:15px;padding:20px;text-align:center;width:calc(100% - 30px)}.rt-tpg-container .grid_hover-layout3 .tpg-el-image-wrap{height:300px}.rt-tpg-container .grid_hover-layout3 .rt-grid-hover-item .rt-holder .grid-hover-content{justify-content:center;min-height:100%;padding:10px 30px;text-align:center}.tpg-title-border-show .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title{margin-bottom:20px;position:relative}.tpg-title-border-show .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before{background-color:#fff;bottom:-16px;content:"";height:2px;left:50%;position:absolute;transform:translateX(-50%);transition:.4s;width:50%}.tpg-title-border-show.title-alignment-justify .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before,.tpg-title-border-show.title-alignment-left .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before,.tpg-title-border-show.tpg-wrapper-align-left .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before{left:0;transform:none}.tpg-title-border-show.title-alignment-right .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before,.tpg-title-border-show.tpg-wrapper-align-right .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before{right:0;transform:none}.elementor-template-full-width .site-content .ast-container{max-width:100%;padding:0;width:100%}.tpg-el-main-wrapper .tgp-cf-field-label{display:inline-block;float:none}.tpg-el-main-wrapper .tpg-cf-fields{display:block}.tpg-el-main-wrapper .tgp-cf-field-value{display:inline}.tpg-el-main-wrapper .tpg-cf-group-title{color:inherit}.tpg-acf-align-left .rt-tpg-container .acf-custom-field-wrap{text-align:left}.grid-layout6 .acf-custom-field-wrap,.list-layout4 .acf-custom-field-wrap,.tpg-acf-align-center .rt-tpg-container .acf-custom-field-wrap{text-align:center}.tpg-acf-align-right .rt-tpg-container .acf-custom-field-wrap{text-align:right}
|
assets/css/tpg-elementor.rtl.min.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
body .tpg-el-main-wrapper .rt-grid-item{padding:0 15px}body .elementor-section .tpg-el-main-wrapper .rt-grid-item{background:none}body .elementor-section .tpg-el-main-wrapper .offset-left,body .elementor-section .tpg-el-main-wrapper .offset-right{padding-bottom:0}.rt-tpg-container a{text-decoration:none}.rt-model-open,body.rt-model-open,html.rt-model-open{overflow:hidden}.rt-tpg-container img{height:auto;max-width:100%}.rt-tpg-container *{box-sizing:border-box}.entry .rt-tpg-container .entry-title:before{content:none}.rt-tpg-container .entry{margin-top:0}.rt-tpg-container :after,.rt-tpg-container :before{box-sizing:border-box}.rt-container,.rt-container-fluid{margin-right:auto;margin-left:auto;padding-right:15px;padding-left:15px}.rt-container-fluid.slider-layout13-main{padding:0 0 15px}.rt-tpg-container ul{margin:0}img,svg{vertical-align:middle}a:link,a:visited{transition:all .31s ease}.clearfix:after,.clearfix:before,.rt-container-fluid:after,.rt-container-fluid:before,.rt-row:after,.rt-row:before{content:" ";display:table}.clearfix:after,.rt-container-fluid:after,.rt-container:after,.rt-row:after{clear:both}.rt-row{margin-right:-15px;margin-left:-15px}.grid-layout2.rt-row{margin-right:0;margin-left:0}.rt-row>.rt-row{padding-right:15px;padding-left:15px}.grid_hover6.rt-row{margin-right:-2px;margin-left:-2px}.rt-col-lg-1,.rt-col-lg-2,.rt-col-lg-3,.rt-col-lg-4,.rt-col-lg-5,.rt-col-lg-6,.rt-col-lg-7,.rt-col-lg-8,.rt-col-lg-9,.rt-col-lg-10,.rt-col-lg-11,.rt-col-lg-12,.rt-col-lg-24,.rt-col-md-1,.rt-col-md-2,.rt-col-md-3,.rt-col-md-4,.rt-col-md-5,.rt-col-md-6,.rt-col-md-7,.rt-col-md-8,.rt-col-md-9,.rt-col-md-10,.rt-col-md-11,.rt-col-md-12,.rt-col-md-24,.rt-col-sm-1,.rt-col-sm-2,.rt-col-sm-3,.rt-col-sm-4,.rt-col-sm-5,.rt-col-sm-6,.rt-col-sm-7,.rt-col-sm-8,.rt-col-sm-9,.rt-col-sm-10,.rt-col-sm-11,.rt-col-sm-12,.rt-col-sm-24,.rt-col-xs-1,.rt-col-xs-2,.rt-col-xs-3,.rt-col-xs-4,.rt-col-xs-5,.rt-col-xs-6,.rt-col-xs-7,.rt-col-xs-8,.rt-col-xs-9,.rt-col-xs-10,.rt-col-xs-11,.rt-col-xs-12,.rt-col-xs-24{min-height:1px;padding-right:15px;padding-left:15px;position:relative}.rt-col-xs-1,.rt-col-xs-2,.rt-col-xs-3,.rt-col-xs-4,.rt-col-xs-5,.rt-col-xs-6,.rt-col-xs-7,.rt-col-xs-8,.rt-col-xs-9,.rt-col-xs-10,.rt-col-xs-11,.rt-col-xs-12,.rt-col-xs-24{float:right}.rt-col-xs-24{width:20%}.rt-col-xs-12{width:100%}.rt-col-xs-11{width:91.66666667%}.rt-col-xs-10{width:83.33333333%}.rt-col-xs-9{width:75%}.rt-col-xs-8{width:66.66666667%}.rt-col-xs-7{width:58.33333333%}.rt-col-xs-6{width:50%}.rt-col-xs-5{width:41.66666667%}.rt-col-xs-4{width:33.33333333%}.rt-col-xs-3{width:25%}.rt-col-xs-2{width:16.66666667%}.rt-col-xs-1{width:8.33333333%}#rt-main{margin:35px auto}.rt-tpg-container h3.entry-title{line-height:1.25;margin:0 0 12px}.rt-tpg-container .offset-small-wrap .rt-holder .overlay{min-height:60px!important}.rt-tpg-container .offset-small-wrap .rt-holder .rt-img-responsive{height:auto;-o-object-fit:cover;object-fit:cover;width:100%}.rt-tpg-container .offset-small-wrap .rt-col-md-6 .rt-holder .rt-img-responsive{height:auto}.rt-tpg-container .offset-small-wrap .rt-holder .overlay h3 a{-webkit-line-clamp:1!important;-webkit-box-orient:vertical;display:-webkit-box!important;overflow:hidden!important;text-overflow:ellipsis!important}.rt-tpg-container .offset-big .post-meta-user.above_title{margin-top:15px}.rt-tpg-container .offset-big .post-meta-user.above_title+h3.entry-title{margin-top:0}.rt-tpg-container .offset-big h3.entry-title{margin:20px 0 15px}.rt-tpg-container .offset-big .cat-above-title{margin-bottom:-15px;padding-top:10px}.rt-tpg-container .owl-controls .owl-dots{margin-top:15px}.rt-popup-content .rt-tpg-container i{margin-left:5px}.rt-popup-content ol,.rt-popup-content ul{list-style-position:inside}@media (min-width:992px){.rt-container{width:970px}}@media (min-width:1200px){.rt-container{width:1170px}}@media (max-width:767px){.hidden-xs{display:none!important}}@media screen and (max-width:768px){.rt-member-description-container,.rt-member-feature-img{float:none;width:100%}}@media (min-width:768px){.rt-col-sm-1,.rt-col-sm-2,.rt-col-sm-3,.rt-col-sm-4,.rt-col-sm-5,.rt-col-sm-6,.rt-col-sm-7,.rt-col-sm-8,.rt-col-sm-9,.rt-col-sm-10,.rt-col-sm-11,.rt-col-sm-12,.rt-col-sm-24{float:right}.rt-col-sm-24{width:20%}.rt-col-sm-12{width:100%}.rt-col-sm-11{width:91.66666667%}.rt-col-sm-10{width:83.33333333%}.rt-col-sm-9{width:75%}.rt-col-sm-8{width:66.66666667%}.rt-col-sm-7{width:58.33333333%}.rt-col-sm-6{width:50%}.rt-col-sm-5{width:41.66666667%}.rt-col-sm-4{width:33.33333333%}.rt-col-sm-3{width:25%}.rt-col-sm-2{width:16.66666667%}.rt-col-sm-1{width:8.33333333%}}@media (min-width:992px){.rt-col-md-1,.rt-col-md-2,.rt-col-md-3,.rt-col-md-4,.rt-col-md-5,.rt-col-md-6,.rt-col-md-7,.rt-col-md-8,.rt-col-md-9,.rt-col-md-10,.rt-col-md-11,.rt-col-md-12,.rt-col-md-24{float:right}.rt-col-md-24{width:20%}.rt-col-md-12{width:100%}.rt-col-md-11{width:91.66666667%}.rt-col-md-10{width:83.33333333%}.rt-col-md-9{width:75%}.rt-col-md-8{width:66.66666667%}.rt-col-md-7{width:58.33333333%}.rt-col-md-6{width:50%}.rt-col-md-5{width:41.66666667%}.rt-col-md-4{width:33.33333333%}.rt-col-md-3{width:25%}.rt-col-md-2{width:16.66666667%}.rt-col-md-1{width:8.33333333%}}@media (min-width:1200px){.rt-col-lg-1,.rt-col-lg-2,.rt-col-lg-3,.rt-col-lg-4,.rt-col-lg-5,.rt-col-lg-6,.rt-col-lg-7,.rt-col-lg-8,.rt-col-lg-9,.rt-col-lg-10,.rt-col-lg-11,.rt-col-lg-12{float:right}.rt-col-lg-24{width:20%}.rt-col-lg-12{width:100%}.rt-col-lg-11{width:91.66666667%}.rt-col-lg-10{width:83.33333333%}.rt-col-lg-9{width:75%}.rt-col-lg-8{width:66.66666667%}.rt-col-lg-7{width:58.33333333%}.rt-col-lg-6{width:50%}.rt-col-lg-5{width:41.66666667%}.rt-col-lg-4{width:33.33333333%}.rt-col-lg-3{width:25%}.rt-col-lg-2{width:16.66666667%}.rt-col-lg-1{width:8.33333333%}}.paginationjs{box-sizing:initial;font-family:Marmelad,Lucida Grande,Arial,Hiragino Sans GB,Georgia,sans-serif;font-size:14px;line-height:1.6}.paginationjs:after{clear:both;content:" ";display:table}.paginationjs .paginationjs-pages{float:right}.paginationjs .paginationjs-pages ul{float:right;margin:0;padding:0}.paginationjs .paginationjs-go-button,.paginationjs .paginationjs-go-input,.paginationjs .paginationjs-nav{float:right;font-size:14px;margin-right:10px}.paginationjs .paginationjs-pages li{border:1px solid #aaa;border-left:none;float:right;list-style:none}.paginationjs .paginationjs-pages li>a{background:#fff;color:#333;display:block;font-size:14px;height:28px;line-height:28px;min-width:30px;text-align:center;text-decoration:none}.paginationjs .paginationjs-pages li:hover>a{background:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd)!important;color:#fff!important}.paginationjs .paginationjs-pages li.active{border:none}.paginationjs .paginationjs-pages li.active>a{background:#aaa;color:#fff;height:30px;line-height:30px}.paginationjs .paginationjs-pages li.disabled>a{opacity:.3}.paginationjs .paginationjs-pages li.disabled>a:hover{background:100% 0}.paginationjs .paginationjs-pages li:first-child,.paginationjs .paginationjs-pages li:first-child>a{border-radius:0 3px 3px 0}.paginationjs .paginationjs-pages li:last-child{border-radius:3px 0 0 3px;border-left:1px solid #aaa}.paginationjs .paginationjs-pages li:last-child>a{border-radius:3px 0 0 3px}.paginationjs .paginationjs-go-input>input[type=text]{box-sizing:initial;height:28px;padding:0;width:30px}.paginationjs .paginationjs-go-button>input[type=button],.paginationjs .paginationjs-go-input>input[type=text]{background:#fff;border:1px solid #aaa;border-radius:3px;box-shadow:none;font-size:14px;outline:0;text-align:center;vertical-align:baseline}.paginationjs .paginationjs-go-button>input[type=button]{color:#333;cursor:pointer;height:30px;line-height:28px;min-width:40px;padding:0 8px;vertical-align:middle\9}.paginationjs.paginationjs-theme-blue .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-blue .paginationjs-pages li{border-color:#289de9}.paginationjs .paginationjs-go-button>input[type=button]:hover{background-color:#f8f8f8}.paginationjs .paginationjs-nav{height:30px;line-height:30px}.paginationjs .paginationjs-go-button,.paginationjs .paginationjs-go-input{margin-right:5px\9}.paginationjs.paginationjs-small{font-size:12px}.paginationjs.paginationjs-small .paginationjs-pages li>a{font-size:12px;height:24px;line-height:24px;min-width:26px}.paginationjs.paginationjs-small .paginationjs-pages li.active>a{height:26px;line-height:26px}.paginationjs.paginationjs-small .paginationjs-go-input{font-size:12px}.paginationjs.paginationjs-small .paginationjs-go-input>input[type=text]{font-size:12px;height:24px;width:26px}.paginationjs.paginationjs-small .paginationjs-go-button{font-size:12px}.paginationjs.paginationjs-small .paginationjs-go-button>input[type=button]{font-size:12px;height:26px;line-height:24px;min-width:30px;padding:0 6px}.paginationjs.paginationjs-small .paginationjs-nav{font-size:12px;height:26px;line-height:26px}.paginationjs.paginationjs-big{font-size:16px}.paginationjs.paginationjs-big .paginationjs-pages li>a{font-size:16px;height:34px;line-height:34px;min-width:36px}.paginationjs.paginationjs-big .paginationjs-pages li.active>a{height:36px;line-height:36px}.paginationjs.paginationjs-big .paginationjs-go-input{font-size:16px}.paginationjs.paginationjs-big .paginationjs-go-input>input[type=text]{font-size:16px;height:34px;width:36px}.paginationjs.paginationjs-big .paginationjs-go-button{font-size:16px}.paginationjs.paginationjs-big .paginationjs-go-button>input[type=button]{font-size:16px;height:36px;line-height:34px;min-width:50px;padding:0 12px}.paginationjs.paginationjs-big .paginationjs-nav{font-size:16px;height:36px;line-height:36px}.paginationjs.paginationjs-theme-blue .paginationjs-pages li>a{color:#289de9}.paginationjs.paginationjs-theme-blue .paginationjs-pages li:hover>a{background:#e9f4fc}.paginationjs.paginationjs-theme-blue .paginationjs-pages li.active>a{background:#289de9;color:#fff}.paginationjs.paginationjs-theme-blue .paginationjs-pages li.disabled:hover>a{background:100% 0}.paginationjs.paginationjs-theme-blue .paginationjs-go-button>input[type=button]{background:#289de9;border-color:#289de9;color:#fff}.paginationjs.paginationjs-theme-green .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-green .paginationjs-pages li{border-color:#449d44}.paginationjs.paginationjs-theme-blue .paginationjs-go-button>input[type=button]:hover{background-color:#3ca5ea}.paginationjs.paginationjs-theme-green .paginationjs-pages li>a{color:#449d44}.paginationjs.paginationjs-theme-green .paginationjs-pages li:hover>a{background:#ebf4eb}.paginationjs.paginationjs-theme-green .paginationjs-pages li.active>a{background:#449d44;color:#fff}.paginationjs.paginationjs-theme-green .paginationjs-pages li.disabled:hover>a{background:100% 0}.paginationjs.paginationjs-theme-green .paginationjs-go-button>input[type=button]{background:#449d44;border-color:#449d44;color:#fff}.paginationjs.paginationjs-theme-yellow .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-yellow .paginationjs-pages li{border-color:#ec971f}.paginationjs.paginationjs-theme-green .paginationjs-go-button>input[type=button]:hover{background-color:#55a555}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li>a{color:#ec971f}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li:hover>a{background:#fdf5e9}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li.active>a{background:#ec971f;color:#fff}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li.disabled:hover>a{background:100% 0}.paginationjs.paginationjs-theme-yellow .paginationjs-go-button>input[type=button]{background:#ec971f;border-color:#ec971f;color:#fff}.paginationjs.paginationjs-theme-red .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-red .paginationjs-pages li{border-color:#c9302c}.paginationjs.paginationjs-theme-yellow .paginationjs-go-button>input[type=button]:hover{background-color:#eea135}.paginationjs.paginationjs-theme-red .paginationjs-pages li>a{color:#c9302c}.paginationjs.paginationjs-theme-red .paginationjs-pages li:hover>a{background:#faeaea}.paginationjs.paginationjs-theme-red .paginationjs-pages li.active>a{background:#c9302c;color:#fff}.paginationjs.paginationjs-theme-red .paginationjs-pages li.disabled:hover>a{background:100% 0}.paginationjs.paginationjs-theme-red .paginationjs-go-button>input[type=button]{background:#c9302c;border-color:#c9302c;color:#fff}.paginationjs.paginationjs-theme-red .paginationjs-go-button>input[type=button]:hover{background-color:#ce4541}.paginationjs .paginationjs-pages li.paginationjs-next{border-left:1px solid\9}.paginationjs .paginationjs-go-input>input[type=text]{line-height:28px\9;vertical-align:middle\9}.paginationjs.paginationjs-big .paginationjs-pages li>a{line-height:36px\9}.paginationjs.paginationjs-big .paginationjs-go-input>input[type=text]{height:36px\9;line-height:36px\9}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li:not(.paginationjs-next):not(.paginationjs-prev){display:none}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li{color:#fff}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li>a{background-color:var(--tpg-primary-color,#0d6efd);color:#fff}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li:hover a{background-color:var(--tpg-secondary-color,#0654c4)}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-page:nth-child(2){display:inline-block;pointer-events:none;position:relative}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-page:nth-child(2) a{pointer-events:none;text-indent:-99999px}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-page:nth-child(2):before{content:"\f100";font-family:Font Awesome\ 5 Free;font-weight:900;right:50%;opacity:.5;position:absolute;top:50%;transform:translate(50%,-50%);z-index:99}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-prev+li{display:none!important}.rt-tpg-container button{border:none;padding:10px 15px}.rt-tpg-container .rt-tgp-load-more button{background:#8e8e8e;border-radius:4px}.rt-tpg-container .tpg-wc-product-filter{margin-bottom:15px;padding-left:15px;text-align:left}.rt-img-holder>a{display:block;text-align:center}.rt-img-responsive{display:block;height:auto;max-width:100%;transition:.4s ease-in-out}@media (max-width:991px){.rt-img-holder>a,.rt-img-responsive{width:100%}}.rt-tpg-container .no-margin{margin:0!important;padding:0!important}span.more-loading{background:url(../images/loading.gif) 0 no-repeat;display:inline-block;padding-left:20px}.rt-tgp-load-more,.rt-tgp-scroll-load-more{display:block;margin:30px 0 20px;text-align:center}.post-meta-tags,.post-meta-user{font-size:95%;line-height:1.5;margin-bottom:15px;padding:0}.post-meta-tags span,.post-meta-user span{display:inline-block;padding-left:8px}.post-meta-tags span.rt-separator,.post-meta-user span.rt-separator{display:inline-block;padding-left:5px}.post-meta-user span.comment-link{float:left;padding-left:0;text-align:left}.rt-holder .entry-title a{color:#000}.rt-tpg-container .rt-holder .post-meta.center .read-more{float:none}.rt-tpg-container .rt-holder .post-meta .rt-tpg-social-share{display:block;float:none;margin-bottom:15px;text-align:right;width:100%}.rt-tpg-container .rt-holder .post-meta.center .rt-tpg-social-share,.rt-tpg-container .rt-holder .post-meta.right .rt-tpg-social-share{text-align:right}.rt-tpg-container .rt-holder .read-more a{display:inline-block;font-size:15px;line-height:1.5}.rt-tpg-container .rt-holder .tpg-excerpt{margin-bottom:10px}.rt-tpg-container .tpg-iso-filter{margin:15px 0 45px;text-align:center}.rt-tpg-container .tpg-iso-filter input[type=text]{border-radius:3px;display:inline-block;margin-right:4px;padding:12px 10px}.rt-tpg-container .tpg-iso-filter>div{display:inline-block}.rt-tpg-container .rt-tpg-isotope-buttons .selected{background:var(--tpg-primary-color,#0d6efd)}.rt-tpg-container .rt-tpg-isotope-buttons button{background:#8e8e8e;border:none;border-radius:3px;box-shadow:none!important;color:#fff;font-size:15px;font-weight:400;line-height:1.8;margin:4px;outline:0;padding:8px 20px;text-shadow:none!important;text-transform:none}.rt-tpg-container .tpg-pre-loader{overflow:hidden;position:relative}.rt-tpg-container .rt-loading-overlay{background-color:#fff;height:100%;right:0;opacity:0;position:absolute;top:0;visibility:hidden;width:100%;z-index:1}.rt-tpg-container .rt-loading{color:var(--tpg-primary-color,#0d6efd);right:50%;margin-right:-16px;opacity:0;position:absolute;top:40%;visibility:hidden;z-index:2}.rt-tpg-container .tpg-pre-loader .rt-loading-overlay{opacity:.8;visibility:visible}.tpg-carousel-main .tpg-pre-loader .rt-loading-overlay{opacity:1}.rt-tpg-container .tpg-pre-loader .rt-loading{opacity:1;visibility:visible}.rt-ball-clip-rotate{color:#fff;display:block;font-size:0;height:32px;width:32px}.rt-ball-clip-rotate,.rt-ball-clip-rotate>div{box-sizing:border-box;position:relative}.rt-ball-clip-rotate>div{-webkit-animation:ball-clip-rotate .75s linear infinite;animation:ball-clip-rotate .75s linear infinite;background-color:currentColor;background:transparent;border-radius:100%;border:2px solid;border-bottom:2px solid transparent;display:inline-block;float:none;height:32px;width:32px}.rt-layout-filter-container.rt-clear:after{clear:both;content:"";display:block}.rt-clear::-ms-ticks-after,.rt-clear:after{clear:both;content:"";display:block}.rt-layout-filter-container{font-size:0;line-height:0;margin:-5px -5px 30px;padding:0}.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item{border:1px solid;display:inline-block;margin:4px;padding:8px 10px;transition:.4s}.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item.selected,.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item:hover{background:#222;color:#b4b4b4}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap{padding-left:82px}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper{margin-left:0;position:static;width:100%}.tpg-header-wrapper.carousel{align-items:center;display:flex;margin-bottom:30px;overflow:hidden}.section-title-style-default .tpg-header-wrapper.carousel,.section-title-style-style1 .tpg-header-wrapper.carousel{min-height:36px}.tpg-header-wrapper.carousel .swiper{overflow:hidden}.section-title-style-style2 .tpg-header-wrapper.carousel .swiper,.section-title-style-style3 .tpg-header-wrapper.carousel .swiper{height:51px;margin-bottom:-.5px}.tpg-header-wrapper.carousel .swiper .swiper-navigation{position:absolute;left:0;top:50%;transform:translateY(-50%);z-index:9}.tpg-header-wrapper.carousel .swiper .swiper-button-next,.tpg-header-wrapper.carousel .swiper .swiper-button-prev{margin-top:0;top:0}.tpg-header-wrapper.carousel .tpg-widget-heading-wrapper{flex:1;margin:0;padding-left:10px}.tpg-header-wrapper.carousel .rt-layout-filter-container{flex:0 0 60%;margin:0;max-width:60%}.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper{box-sizing:content-box;display:flex;height:100%;margin:0;position:relative;transition-property:transform;width:100%;z-index:1}.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide{align-items:center;border:none;color:#212121;display:flex;font-size:15px;height:auto;justify-content:center;margin:0;padding:0 10px;position:relative;text-align:center;text-transform:none;width:auto}.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:before,.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:before{border-bottom:7px solid var(--tpg-primary-color,#0d6efd);border-right:7px solid transparent;border-left:7px solid transparent;border-top:0 solid transparent;bottom:0;content:"";height:0;right:50%;opacity:0;position:absolute;transform:translateX(50%);transition:all .3s ease;visibility:hidden;width:0}.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected:before,.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover:before,.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected:before,.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover:before{opacity:1;visibility:visible}.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected,.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover{color:var(--tpg-primary-color,#0d6efd)}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .filter-right-wrapper,.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .rt-author-filter{display:none}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.swiper-wrapper{letter-spacing:0}.tpg-header-wrapper.carousel .swiper-button-next.swiper-button-disabled,.tpg-header-wrapper.carousel .swiper-button-prev.swiper-button-disabled{opacity:1}.tpg-header-wrapper.carousel .swiper-button-next.swiper-button-disabled:after,.tpg-header-wrapper.carousel .swiper-button-prev.swiper-button-disabled:after{opacity:.35}.filter-button-border-enable .tpg-header-wrapper.carousel .rt-layout-filter-container{border:1px solid #ddd;border-radius:3px}.filter-button-border-enable .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide{padding:6px 15px;white-space:nowrap}.filter-button-border-enable .tpg-header-wrapper.carousel .swiper .swiper-navigation{left:3px}.filter-nex-prev-btn-hidden .tpg-header-wrapper.carousel .swiper .swiper-navigation{display:none}.filter-nex-prev-btn-hidden .tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap{margin-left:0}@media (max-width:767px){.tpg-header-wrapper.carousel{display:block}.tpg-header-wrapper.carousel .rt-layout-filter-container{margin-bottom:8px;margin-right:-9px;margin-top:10px;max-width:100%;position:relative}}.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item.selected,.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item:hover{background:none;color:#000}.rt-filter-item-wrap.rt-order-by-action,.rt-filter-item-wrap.rt-sort-order-action{float:left}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap{color:#666;cursor:pointer;display:inline-block;font-size:13px;letter-spacing:.1em;line-height:1.55;margin:4px;padding:8px 10px;position:relative;text-transform:uppercase;transition:background-color .2s ease-in-out,color .2s ease-in-out,border-color .2s ease-in-out;-webkit-transition:background-color .2s ease-in-out,color .2s ease-in-out,border-color .2s ease-in-out;-ms-transition:background-color .2s ease-in-out,color .2s ease-in-out,border-color .2s ease-in-out;-ms-user-select:none;user-select:none;-webkit-user-select:none;-moz-user-select:none;vertical-align:top}.rt-layout-filter-container .rt-filter-wrap .rt-filter-button-wrap{margin-right:0;margin-top:0;padding:0}@media (max-width:767px){.rt-layout-filter-container .rt-filter-wrap .rt-filter-button-wrap{display:inline}}.rt-layout-filter-container .rt-filter-wrap .rt-filter-button-item .rt-filter-sub-tax{display:none}.rt-layout-filter-container .rt-filter-sub-tax.sub-button-group{margin:0 4px}.rt-layout-filter-container .rt-filter-sub-tax.sub-button-group .rt-filter-button-item{cursor:pointer}.rt-layout-filter-container>.rt-filter-sub-tax.sub-button-group>span{border:1px solid;display:inline-block;font-size:13px;letter-spacing:.1em;line-height:1.55;margin:4px;padding:8px 10px;text-transform:uppercase;vertical-align:top}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap{border:1px solid #666;color:#666;position:relative}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap:hover{border-color:#222;color:#222}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-sort-order-action:hover{border-color:#222}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap>.rt-filter-dropdown-default{display:block;max-width:135px;min-width:135px;overflow:hidden;text-align:center;text-overflow:ellipsis;white-space:nowrap}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown{background-color:#222;border:none;border-top:1px solid transparent;display:block;right:-1px;margin-top:1px;opacity:0;position:absolute;left:-1px;top:100%;transition:opacity .3s ease-in-out,visibility .3s ease-in-out;-webkit-transition:opacity .3s ease-in-out,visibility .3s ease-in-out;-ms-transition:opacity .3s ease-in-out,visibility .3s ease-in-out;visibility:hidden;z-index:20}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap:hover .rt-filter-dropdown{border-top-color:#000}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown .rt-filter-dropdown-item.selected{background:#000}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap.active-dropdown .rt-filter-dropdown{opacity:1;visibility:visible}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap.active-dropdown .rt-arrow-angle{transform:rotate(-180deg);-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg)}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown .rt-filter-dropdown-item{border-bottom:1px solid rgba(0,0,0,.2);color:#b4b4b4;display:block;padding:10px 15px 9px;text-align:center}.rt-filter-dropdown-default .sub-dropdown-wrap,.rt-filter-dropdown-item .sub-dropdown-wrap{display:none!important}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-arrow-angle{backface-visibility:hidden;-webkit-backface-visibility:hidden;letter-spacing:0;transition:transform .2s ease-in-out;-webkit-transition:transform .2s ease-in-out;-ms-transition:transform .2s ease-in-out}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-sort-order-action{border:1px solid #666;color:#666;min-width:38px;position:relative}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow{position:static}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span{backface-visibility:hidden;-webkit-backface-visibility:hidden;display:block;height:8px;right:50%;margin-right:-7px;margin-top:-4px;position:absolute;top:50%;transition:transform .2s ease-in-out;-webkit-transition:transform .2s ease-in-out;-ms-transition:transform .2s ease-in-out;width:14px}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow[data-sort-order=ASC]>span{transform:rotate(-180deg);-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg)}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span:before{right:3px;transform:rotate(45deg);-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg)}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span:after,.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span:before{background-color:#666;content:"";display:block;height:9px;position:absolute;top:0;transition:background-color .2s ease-in-out;-webkit-transition:background-color .2s ease-in-out;-ms-transition:background-color .2s ease-in-out;width:2px}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span:after{right:9px;transform:rotate(-45deg);-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg)}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-search-filter-wrap{float:left;padding:0;position:relative}.rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:1px solid #666;color:#666;font-family:Dosis,sans-serif;font-size:12px;font-weight:600;height:39px;padding:11px}.rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input:focus{box-shadow:none;outline:none}.rt-filter-item-wrap.rt-search-filter-wrap span.rt-action{cursor:pointer;display:inline-block;font-size:15px;position:absolute;left:5px;top:6px}.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input::-webkit-input-placeholder{font-family:Dosis,sans-serif;font-size:12px;font-weight:600}.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input::-moz-placeholder{font-family:Dosis,sans-serif;font-size:12px;font-weight:600}.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input:-ms-input-placeholder{font-family:Dosis,sans-serif;font-size:12px;font-weight:600}.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input:-moz-placeholder{font-family:Dosis,sans-serif;font-size:12px;font-weight:600}@media (max-width:600px){.rt-filter-item-wrap.rt-tax-filter.rt-filter-dropdown-wrap{display:block;margin-bottom:10px}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap>.rt-filter-dropdown-default{margin:0 auto}}.rt-tpg-social-share.a{position:relative}body>.rt-tooltip{background:#666;border-radius:3px;border-width:2px;-o-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa;color:#fff;font-size:100%;opacity:0;padding:5px 10px;pointer-events:none;position:absolute;transition:opacity 1s ease-in-out;z-index:9999}body>.rt-tooltip .rt-tooltip-content{font-size:90%}body>.rt-tooltip,body>.rt-tooltip .rt-tooltip-bottom:after{background:#000;border-radius:2px}body>.rt-tooltip .rt-tooltip-bottom{bottom:-16px;height:18px;right:50%;margin-right:-32px;overflow:hidden;position:absolute;width:70px}body>.rt-tooltip .rt-tooltip-bottom:after{tranform:rotate(45deg);content:"";height:25px;right:20px;position:absolute;top:-20px;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);width:25px}.rt-tpg-container .rt-holder .rt-img-holder{overflow:hidden;position:relative}.rt-tpg-container .rt-holder .tpg-el-image-wrap{margin:-15px -15px 15px}.rt-tpg-container .list-behaviour .rt-holder .tpg-el-image-wrap{margin:0}.rt-tpg-container .img_zoom_out .rt-holder .rt-img-holder img:not(.avatar),.rt-tpg-container .rt-holder:hover .rt-img-holder img:not(.avatar){transform:scale(1.1)}.rt-tpg-container .img_no_effect .rt-holder:hover .rt-img-holder img,.rt-tpg-container .img_zoom_out .rt-holder:hover .rt-img-holder img{transform:scale(1)}.rt-tpg-container .rt-holder .rt-detail{padding:15px 15px 0}.rt-tpg-container .entry-title-wrapper .entry-title{font-size:26px;font-weight:500;line-height:1.25;margin:0 0 18px}@media (max-width:767px){.rt-tpg-container .entry-title-wrapper .entry-title{font-size:20px;margin:0 0 15px}}.rt-tpg-container .rt-detail .tpg-excerpt-inner,.rt-tpg-container .rt-holder .rt-detail .entry-title-wrapper{margin-bottom:15px}.rt-tpg-container .list-layout2 .rt-detail .tpg-excerpt-inner,.rt-tpg-container .list-layout3 .rt-detail .tpg-excerpt-inner{margin-bottom:0}.rt-tpg-container .rt-holder .rt-detail .post-meta{line-height:25px;overflow:hidden}.rt-tpg-container .rt-holder .rt-detail .read-more a{align-items:center;border:1px solid hsla(0,0%,80%,.4);display:inline-flex;flex-direction:row;flex-wrap:wrap;font-size:15px;justify-content:left;line-height:1.8;overflow:hidden;padding:8px 20px}.rt-tpg-container .rt-holder .rt-detail .read-more a:hover{border-color:#7a64f2;color:#7a64f2}.rt-tpg-container .rt-holder .rt-detail .read-more a{color:#1a1a1a}.rt-tpg-container .rt-holder .rt-detail .post-meta.right{text-align:left}.rt-tpg-container .rt-holder .rt-detail .post-meta.center{text-align:center}.tpg-img-circle .rt-img-holder img{border-radius:50%!important}@-webkit-keyframes ball-scale-multiple{0%{opacity:0;transform:scale(0)}5%{opacity:.75}to{opacity:0;transform:scale(1)}}@keyframes ball-scale-multiple{0%{opacity:0;transform:scale(0)}5%{opacity:.75}to{opacity:0;transform:scale(1)}}@-webkit-keyframes ball-clip-rotate{0%{transform:rotate(0deg)}50%{transform:rotate(-180deg)}to{transform:rotate(-1turn)}}@keyframes ball-clip-rotate{0%{transform:rotate(0deg)}50%{transform:rotate(-180deg)}to{transform:rotate(-1turn)}}.rt-container-fluid{position:relative}#bottom-script-loader{background:hsla(0,0%,100%,.95);height:calc(100% + 60px);margin:-30px;position:absolute;width:calc(100% + 60px);z-index:999}#bottom-script-loader .rt-ball-clip-rotate{color:var(--tpg-primary-color,#0d6efd);margin-left:-16px;position:absolute;left:50%;top:80px;z-index:2}.tpg-widget-heading-wrapper{display:flex;margin-bottom:30px;position:relative}.tpg-widget-heading-wrapper .tpg-widget-heading{line-height:1;margin-bottom:-1px;margin-top:0;padding-left:15px;padding-top:0;position:relative}.search .tpg-widget-heading-wrapper .tpg-widget-heading{line-height:1.5}@meia (max-width: 767px){.tpg-widget-heading-wrapper .tpg-widget-heading{line-height:1.2}}.tpg-widget-heading-wrapper.center .tpg-widget-heading{margin:0;padding:0}.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading:before{background-color:var(--tpg-primary-color,#0d6efd);border-radius:50%;content:"";display:inline-block;height:8px;margin-left:7px;margin-top:-4px;position:absolute;left:-7.5px;top:50%;width:8px}.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-left,.tpg-widget-heading-wrapper.heading-style1.center .tpg-widget-heading:before{display:none}.tpg-widget-heading-wrapper.heading-style1.center .tpg-widget-heading-line.line-left{display:block;margin-right:0;margin-left:15px}.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line,.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line-left{-webkit-box-flex:1;align-self:center;border-color:#e5e5e5;border-style:solid;border-width:1px 0;flex-grow:1;height:4px;margin-right:15px}.tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading,.tpg-widget-heading-wrapper.heading-style3 .tpg-widget-heading{background-color:var(--tpg-primary-color,#0d6efd);color:#fff;line-height:1.4;margin-bottom:-.5px;padding:5px 15px}.tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading a,.tpg-widget-heading-wrapper.heading-style3 .tpg-widget-heading a{color:inherit}.tpg-widget-heading-wrapper.center{justify-content:center}.tpg-widget-heading-wrapper.right{flex-direction:row-reverse}.tpg-widget-heading-wrapper.right .tpg-widget-heading{padding-right:15px;padding-left:0}.tpg-widget-heading-wrapper.right .tpg-widget-heading:before{right:0;left:auto}.tpg-widget-heading-wrapper.right .tpg-widget-heading-line{margin-right:0;margin-left:15px}.tpg-el-main-wrapper .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:before,.tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:after{border-left:12px solid transparent;border-bottom:0 solid var(--tpg-primary-color,#0d6efd);border-right:0 solid transparent;border-top:12px solid var(--tpg-primary-color,#0d6efd);content:"";position:absolute;left:-11px;top:0}.section-title-align-center .tpg-el-main-wrapper .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:before,.tpg-widget-heading-wrapper.heading-style2.right .tpg-widget-heading:after{border-width:12px 12px 0 0;right:-11px;left:auto}.tpg-widget-heading-wrapper.heading-style2.center .tpg-widget-heading:after{content:none}.section-title-style-style2 .tpg-header-wrapper.carousel,.section-title-style-style2 .tpg-header-wrapper:not(.carousel) .tpg-widget-heading-wrapper,.section-title-style-style3 .tpg-header-wrapper.carousel,.section-title-style-style3 .tpg-header-wrapper:not(.carousel) .tpg-widget-heading-wrapper{border-bottom:2px solid var(--tpg-primary-color,#0d6efd)}.tpg-even,.tpg-full-height{display:flex;flex-wrap:wrap}@media (max-width:767px){.rt-content-loader .rt-holder,.tpg-even .rt-holder{flex-direction:column}}.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next>*{background-color:#bcbcbc;bottom:auto;color:#fff;cursor:pointer;display:inline-block;font-size:18px;height:30px;line-height:30px;margin-right:1px;margin-left:1px;text-align:center;transition:background-color .2s ease-in-out,color .2s ease-in-out,opacity .2s ease-in-out,visibility .2s ease-in-out;-webkit-transition:background-color .2s ease-in-out,color .2s ease-in-out,opacity .2s ease-in-out,visibility .2s ease-in-out;-ms-transition:background-color .2s ease-in-out,color .2s ease-in-out,opacity .2s ease-in-out,visibility .2s ease-in-out;width:30px}.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next>* i{line-height:1}.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next>.rt-disabled{opacity:.5;pointer-events:none}.rt-cb-page-prev-next{text-align:right}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style .rt-loadmore-loading{color:#fff;right:50%;margin-right:-32px;margin-top:-32px;opacity:0;position:absolute;top:50%;visibility:hidden}.rt-ball-scale-multiple.rt-2x,.rt-ball-scale-multiple.rt-2x>div{height:64px;width:64px}.rt-ball-scale-multiple,.rt-ball-scale-multiple>div{box-sizing:border-box;position:relative}.rt-ball-scale-multiple>div{background-color:currentColor;border:0 solid;display:inline-block;float:none}.rt-ball-scale-multiple>div:nth-child(2){-webkit-animation-delay:.2s;animation-delay:.2s}.rt-ball-scale-multiple>div{-webkit-animation:ball-scale-multiple 1s linear 0s infinite;animation:ball-scale-multiple 1s linear 0s infinite;border-radius:100%;height:32px;right:0;opacity:0;position:absolute;top:0;width:32px}.rt-tpg-container .rt-pagination-wrap{display:inline-block;margin-top:10px;text-align:center;width:100%}.tpg-el-main-wrapper .rt-pagination-wrap{display:flex;flex-direction:row;justify-content:center;margin-top:30px}.tpg-el-main-wrapper .rt-pagination-wrap .rt-pagination{margin:0}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style{cursor:pointer;position:relative;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next.rt-hidden-elm,.rt-tpg-container .rt-pagination-wrap .rt-infinite-action.rt-hidden-elm,.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style.rt-hidden-elm,.rt-tpg-container .rt-pagination-wrap .rt-page-numbers.rt-hidden-elm{display:none!important}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style.rt-lm-loading .rt-loadmore-text{opacity:0;visibility:hidden}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style.rt-lm-loading .rt-loadmore-loading{opacity:1;visibility:visible}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-btn{background-color:var(--tpg-primary-color,#0d6efd);color:#fff;display:inline-block;font-size:13px;letter-spacing:.1em;margin-top:30px;padding:9px 20px 8px;text-decoration:none;text-transform:uppercase;transition:color .2s ease-in-out,background-color .2s ease-in-out;-webkit-transition:color .2s ease-in-out,background-color .2s ease-in-out;-ms-transition:color .2s ease-in-out,background-color .2s ease-in-out}.rt-tpg-container .rt-loadmore-btn:hover{background-color:var(--tpg-secondary-color,#0654c4)}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages{float:none;padding-bottom:.1px;padding-top:.1px}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers.rt-lm-loading{opacity:.5;pointer-events:none}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul{float:none;font-size:0;line-height:0;margin:-2px;text-align:center}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li{border:none;display:inline-block;float:none;font-size:16px;line-height:1.55;min-height:45px;min-width:48px;padding:2px}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li>a{border:1px solid #dee2e6;border-radius:3px;color:#212121;display:block;font-size:16px;font-weight:400;letter-spacing:0;line-height:45px;min-height:45px;min-width:48px;padding-right:8px;padding-left:8px;text-decoration:none}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.active>a{background-color:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd);color:#fff}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.paginationjs-ellipsis{min-width:auto;padding:0}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.paginationjs-ellipsis a{background:none!important;border:none!important;color:#000!important;font-size:18px;min-width:auto;opacity:1;pointer-events:none!important}.rt-pagination{margin:30px 0;text-align:center}.rt-pagination .pagination-list{background:transparent;border-radius:4px;border-top:0;display:inline-block;padding-right:0}.rt-pagination .pagination-list a{box-shadow:none}.rt-pagination .pagination-list>li{display:inline-block;margin:2px}.rt-pagination .pagination-list>li>a,.rt-pagination .pagination-list>li>span{background-color:#fff;border:1px solid #ddd;border-radius:3px;color:#212121;display:block;line-height:45px;margin-right:-1px;min-height:45px;min-width:48px;padding:0 5px;position:relative;text-decoration:none;transition:.4s ease-in-out}.rt-pagination .pagination-list>li>a:focus,.rt-pagination .pagination-list>li>a:hover,.rt-pagination .pagination-list>li>span:focus,.rt-pagination .pagination-list>li>span:hover{background-color:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd);color:#fff;z-index:2}.rt-pagination .pagination-list>.active>a,.rt-pagination .pagination-list>.active>a:focus,.rt-pagination .pagination-list>.active>a:hover,.rt-pagination .pagination-list>.active>span,.rt-pagination .pagination-list>.active>span:focus,.rt-pagination .pagination-list>.active>span:hover{background-color:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd);color:#fff;cursor:default;z-index:3}.rt-pagination .pagination-list>.disabled>a,.rt-pagination .pagination-list>.disabled>a:focus,.rt-pagination .pagination-list>.disabled>a:hover,.rt-pagination .pagination-list>.disabled>span,.rt-pagination .pagination-list>.disabled>span:focus,.rt-pagination .pagination-list>.disabled>span:hover{background-color:#fff;border-color:#ddd;color:#212121;cursor:not-allowed}.rt-tpg-container .swiper-pagination-bullet{background:#d6d6d6;height:10px;opacity:1;width:10px}.rt-tpg-container .swiper-wrapper{padding-bottom:45px}.rt-tpg-container.slider-layout13-main .swiper-wrapper{padding-bottom:0}.rt-tpg-container .swiper-pagination-bullets.swiper-pagination-horizontal{bottom:0}.rt-tpg-container .swiper-pagination-bullet.swiper-pagination-bullet-active-main{background:#007bff}.rt-tpg-container>div{position:relative}.rt-tpg-container .slider-main-wrapper{opacity:0;position:relative}.rt-tpg-container .swiper-navigation .slider-btn{align-items:center;background-color:#fff;background-image:none;border:1px solid #e5e5e5;border-radius:3px;color:#2962ff;display:inline-flex;font-size:14px;height:32px;justify-content:center;position:absolute;transition:all .3s ease;-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;width:34px}.rt-tpg-container .tpg-header-wrapper .swiper-navigation .slider-btn,.slider-arrow-position-top-left .rt-tpg-container .swiper-navigation .slider-btn,.slider-arrow-position-top-right .rt-tpg-container .swiper-navigation .slider-btn{position:static}.rt-tpg-container .swiper-navigation .slider-btn:hover{background-color:#2962ff;border-color:#2962ff;color:#fff}.rt-tpg-container .swiper-navigation .slider-btn:focus{box-shadow:none;outline:0}.rt-tpg-container .swiper-navigation .slider-btn.swiper-button-next{margin-right:3px}.rt-tpg-container .swiper-navigation .swiper-button-next:after,.rt-tpg-container .swiper-navigation .swiper-button-prev:after{font-size:inherit}.rt-tpg-container .tpg-cf-group-title{font-size:16px;margin-bottom:0}.rt-tpg-container .tpg-cf-fields{font-size:95%;line-height:1.6;margin-top:0}.tpg-el-main-wrapper .tpg-cf-wrap{margin:10px 0 0}.rt-tpg-container .tpg-cf-wrap:empty{margin:0}.act-label-style-inline .tgp-cf-field-label{margin-left:8px;min-width:inherit}.act-label-style-inline .tgp-cf-field-label:after{content:":"}.act-label-style-block .tgp-cf-field-label{display:block!important;float:none;margin-left:0;min-width:inherit}.act-label-style-block .tpg-cf-fields{display:block;margin-bottom:5px}.rt-tpg-container .rt-holder .tgp-cf-field-value *{color:inherit;display:inline;margin:0;transition:none}.isotope-term-no-post{min-height:30px}.isotope-term-no-post p{display:none;margin-bottom:0}.tpg-el-main-wrapper.loading{min-height:300px;transition:.4s}.tpg-el-main-wrapper.loading:before{-webkit-animation:ball-clip-rotate .75s linear infinite;animation:ball-clip-rotate .75s linear infinite;background:transparent;border:2px solid;border-bottom:2px solid transparent;border-radius:100%;color:red;display:inline-block;float:none;height:32px;right:50%;position:absolute;top:50%;width:32px;z-index:9999999999}.tpg-even.grid-behaviour{align-items:flex-start}.grid-layout2.tpg-even,.grid-layout6 .tpg-even.grid-behaviour,.tpg-full-height{align-items:inherit}.tpg-el-main-wrapper .tpg-post-holder{height:100%}.grid_hover-layout9-2-main .tpg-even .rt-holder,.grid_hover-layout9-main .tpg-even .rt-holder,.list-layout1-main .tpg-even .rt-holder{display:block}.rt-el-post-meta span.author{margin-bottom:2px}.rt-tpg-container .rt-detail .tpg-excerpt{margin-top:-5px}.tpg-el-main-wrapper .slider_layout_wrapper .tpg-post-holder{margin-top:1px}.tpg-el-main-wrapper .grid-layout5 .tpg-post-holder,.tpg-el-main-wrapper .grid-layout6 .tpg-post-holder,.tpg-el-main-wrapper .slider_layout_wrapper .tpg-post-holder{height:auto}.rt-tpg-container .rt-el-content-wrapper{transition:background-color .4s ease-in-out}.rt-tpg-container .tpg-post-holder .read-more a,.rt-tpg-social-share a i,.tpg-el-main-wrapper .post-meta-tags a,.tpg-el-main-wrapper .post-meta-tags img,.tpg-el-main-wrapper .post-meta-tags span,.tpg-el-main-wrapper .rt-holder:hover .post-meta-tags i,.tpg-el-main-wrapper .tpg-el-excerpt,.tpg-el-main-wrapper .tpg-el-excerpt *,.tpg-el-main-wrapper .tpg-el-image-wrap .overlay,.tpg-el-main-wrapper .tpg-el-image-wrap img,.tpg-el-main-wrapper .tpg-post-holder,.tpg-separate-category .categories-links,.tpg-separate-category .categories-links i{transition:.4s ease-in-out}.tpg-el-main-wrapper .rt-content-loader [class*=rt-col]{margin-top:0;padding-bottom:30px}.tpg-el-main-wrapper .entry-title a{color:inherit}.tpg-el-main-wrapper .entry-title a:hover{color:var(--tpg-primary-color,#0d6efd)}.tpg-widget-heading-wrapper .tpg-widget-heading a{color:inherit}.section-title-align-center .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-left,.section-title-align-right .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-left{display:block;margin-right:0;margin-left:15px}.section-title-align-center .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading:before{display:none}.section-title-align-center .tpg-widget-heading-wrapper .tpg-widget-heading{margin-left:0!important}.section-title-align-right .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-right{display:none}.section-title-align-right .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading{padding-right:15px;padding-left:0}.section-title-align-right .tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading:before{right:0;left:auto}.section-title-align-left .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:before{display:none}.section-title-align-left .tpg-widget-heading-wrapper.heading-default,.section-title-align-left .tpg-widget-heading-wrapper.heading-style2,.section-title-align-left .tpg-widget-heading-wrapper.heading-style3{justify-content:flex-start}.section-title-align-center .tpg-widget-heading-wrapper.heading-default,.section-title-align-center .tpg-widget-heading-wrapper.heading-style2,.section-title-align-center .tpg-widget-heading-wrapper.heading-style3{justify-content:center}.section-title-align-right .tpg-widget-heading-wrapper.heading-default,.section-title-align-right .tpg-widget-heading-wrapper.heading-style2,.section-title-align-right .tpg-widget-heading-wrapper.heading-style3{justify-content:flex-end}.section-title-align-right .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:after{display:none}.title-one-line .entry-title,.title-three-line .entry-title,.title-two-line .entry-title{-webkit-line-clamp:1;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;text-overflow:ellipsis}.title-one-line .entry-title{-webkit-line-clamp:1}.title-two-line .entry-title{-webkit-line-clamp:2}.title-three-line .entry-title{-webkit-line-clamp:3}.rt-tpg-container .rt-el-post-meta{margin-bottom:13px}.rt-tpg-container .rt-el-post-meta i{margin-left:5px}.rt-tpg-container .offset-right .rt-el-post-meta{margin-top:-6px}.tpg-el-main-wrapper .tpg-el-image-wrap img{height:100%;-o-object-fit:cover;object-fit:cover}@media (max-width:767px){.tpg-el-main-wrapper .tpg-el-image-wrap img{width:100%!important}}.tpg-el-main-wrapper .tpg-el-image-wrap a.tpg-post-link{height:100%;width:100%}.tpg-el-main-wrapper .tpg-el-image-wrap .overlay{height:100%;right:0;pointer-events:none;position:absolute;top:0;width:100%}.tpg-el-main-wrapper .rt-grid-hover-item .tpg-el-image-wrap .overlay.grid-hover-content{display:none!important;opacity:0;visibility:hidden}.tpg-el-main-wrapper .tpg-post-holder .tpg-el-image-wrap .overlay.show-on-hover,.tpg-el-main-wrapper .tpg-post-holder:hover .tpg-el-image-wrap .overlay.hide-on-hover{opacity:0!important}.tpg-el-main-wrapper .tpg-post-holder:hover .tpg-el-image-wrap .overlay.show-on-hover{opacity:1!important}.tpg-el-main-wrapper .post-meta-tags span{display:inline-block;padding-left:8px}.tpg-el-main-wrapper .post-meta-tags span img+span.author-prefix{padding-right:3px}.tpg-el-main-wrapper .post-meta-tags span.author-prefix{padding-left:5px}.tpg-el-main-wrapper .post-meta-tags span img{border-radius:50%;display:inline-block;height:25px!important;margin-left:5px;margin-top:-2%;max-width:25px;width:auto!important}.post-meta-tags span.separator:last-of-type{display:none}body .readmore-btn-only-text .rt-tpg-container .tpg-post-holder .read-more a{background:none!important;border:none!important;padding:0!important}.rt-tpg-container .tpg-post-holder .read-more a i{transition:margin .4s ease-in-out}.rt-tpg-container .tpg-post-holder .read-more a i.left-icon{margin-left:5px}.rt-tpg-container .tpg-post-holder .read-more a i.right-icon{margin-right:5px}.tpg-el-box-border-disable .rt-tpg-container .rt-holder{border:none;box-shadow:none!important}.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{display:flex;justify-content:space-between}.tpg-filter-alignment-left .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{align-items:flex-start}.tpg-filter-alignment-center .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{align-items:center}.tpg-filter-alignment-right .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{align-items:flex-end}.tpg-filter-h-alignment-left .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{justify-content:flex-start}.tpg-filter-h-alignment-center .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{justify-content:center}.tpg-filter-h-alignment-right .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{justify-content:flex-end}.tpg-filter-h-alignment-space-between .tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{justify-content:space-between}.rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input{min-width:202px}.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper{margin-left:15px}@media (max-width:1023px){.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper{text-align:center}.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-right-wrapper{align-items:center;display:flex;flex-wrap:wrap;justify-content:center}.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-right-wrapper .rt-order-by-action{order:-1}}@media (max-width:991px){.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{flex-direction:column}}@media (max-width:600px){.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper{margin-left:0}.tpg-filter-type-dropdown .rt-filter-wrap .filter-left-wrapper{display:flex;justify-content:center}.tpg-el-main-wrapper .rt-filter-item-wrap.rt-tax-filter.rt-filter-dropdown-wrap{margin-bottom:4px}.tpg-el-main-wrapper .rt-layout-filter-container .rt-filter-wrap{flex-direction:column}}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap{min-height:38px}.tpg-el-main-wrapper .rt-holder .rt-el-content-wrapper{display:flex;flex-direction:column}.tpg-el-main-wrapper .rt-holder .rt-el-content-wrapper-flex{display:flex;flex-direction:row}.title_position_above_image .tpg-el-main-wrapper .rt-holder .rt-el-content-wrapper .tpg-el-image-wrap{margin:0 -15px 15px}.rt-tpg-container .rt-holder .rt-detail .entry-title-wrapper .entry-title{margin-bottom:0;transition:.4s}.rt-tpg-container .rt-holder .rt-detail .entry-title-wrapper .tpg-separate-category{margin-bottom:5px}.tpg-el-main-wrapper .rt-holder .tpg-el-excerpt{order:5}.tpg-el-main-wrapper .rt-holder .rt-tpg-social-share{order:10}.tpg-el-main-wrapper .rt-tpg-social-share a{margin-left:10px}.tpg-el-main-wrapper .rt-holder .post-footer{margin-bottom:15px;order:11}.title_position_above_image .tpg-el-main-wrapper .rt-holder .entry-title-wrapper{order:-5}.title_position_below_image .tpg-el-main-wrapper .rt-holder .tpg-el-image-wrap{order:-8}.title_position_below_image .tpg-el-main-wrapper .rt-holder .entry-title-wrapper{order:2}.title_position_above_image.meta_position_above_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:-6}.title_position_above_image.meta_position_below_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:-4}.title_position_below_image.meta_position_above_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:1}.title_position_below_image.meta_position_below_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:3}.meta_position_below_excerpt .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:6}.meta_position_above_excerpt .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:4}.title_position_default.meta_position_above_title .tpg-el-main-wrapper .rt-holder .tpg-el-image-wrap{order:-2}.title_position_default.meta_position_above_title .tpg-el-main-wrapper .rt-holder .rt-el-post-meta{order:-1}.title_hover_border_enable .rt-tpg-container .entry-title-wrapper .entry-title a{background:linear-gradient(180deg,var(--tpg-primary-color,#0d6efd) 0,var(--tpg-primary-color,#0d6efd) 98%);background-position:right 100%;background-repeat:no-repeat;background-size:0 2px}.title_hover_border_enable .rt-tpg-container .entry-title-wrapper .entry-title:hover a{background-size:100% 2px}.title_hover_border_disable .rt-tpg-container .entry-title-wrapper .entry-title a{background:none!important}.rt-tpg-container .post-right-content{display:flex;flex-direction:column}.rt-tpg-container .list-layout-wrapper .post-right-content{flex:1}.tpg-separate-category.style1 .rt-separator{margin-left:3px}.tpg-category-position-default .grid-layout4 .rt-detail .entry-title-wrapper .tpg-separate-category,.tpg-is-author-icon-hide .post-meta-tags span.author i,.tpg-is-author-icon-hide .post-meta-tags span.author img{display:none}.rt-tpg-container .rt-holder .rt-img-holder .tpg-zoom{right:50%;opacity:0;position:absolute;top:60%;transform:translate(50%,-50%);visibility:hidden;z-index:99}.rt-tpg-container .rt-holder:hover .rt-img-holder .tpg-zoom{opacity:1;top:50%;visibility:visible}.rt-tpg-container .rt-holder .rt-img-holder .tpg-zoom .fa{background:hsla(0,0%,100%,.8);border:0 solid;border-radius:50%;box-sizing:border-box;display:inline-block;font-size:20px;height:50px;line-height:40px;margin-left:0;padding:5px;text-align:center;width:50px}@media (min-width:992px){.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-3:nth-child(8n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-3:nth-child(8n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-3:nth-child(8n+7) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-3:nth-child(8n+8) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-4:nth-child(6n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-4:nth-child(6n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-4:nth-child(6n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-6:nth-child(4n+3) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-6:nth-child(4n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-md-12:nth-child(2n) .rt-el-content-wrapper-flex{flex-direction:row-reverse}}@media (min-width:1200px){.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-4:nth-child(6n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-4:nth-child(6n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-4:nth-child(6n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-6:nth-child(4n+3) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-6:nth-child(4n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-lg-12:nth-child(2n) .rt-el-content-wrapper-flex{flex-direction:row-reverse}}@media (min-width:768px) and (max-width:991px){.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-3:nth-child(8n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-3:nth-child(8n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-3:nth-child(8n+7) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-3:nth-child(8n+8) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-4:nth-child(6n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-4:nth-child(6n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-4:nth-child(6n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-6:nth-child(4n+3) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-6:nth-child(4n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-sm-12:nth-child(2n) .rt-el-content-wrapper-flex{flex-direction:row-reverse}}@media (max-width:768px){.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-3:nth-child(8n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-3:nth-child(8n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-3:nth-child(8n+7) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-3:nth-child(8n+8) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-4:nth-child(4n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-4:nth-child(4n+5) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-4:nth-child(4n+6) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-6:nth-child(4n+3) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-6:nth-child(4n+4) .rt-el-content-wrapper-flex,.rt-tpg-container .rt-row.grid-layout2 .rt-col-xs-12:nth-child(2n) .rt-el-content-wrapper-flex{flex-direction:row-reverse}}.rt-tpg-container .grid-layout4 .rt-holder .tpg-el-image-wrap,.rt-tpg-container .grid-layout5 .rt-holder .tpg-el-image-wrap,.rt-tpg-container .grid-layout6 .rt-holder .tpg-el-image-wrap{margin:0 0 15px}.rt-tpg-container .grid-layout4 .cat-over-image a,.rt-tpg-container .grid-layout5 .tpg-separate-category a,.rt-tpg-container .list-layout4 .tpg-separate-category a{align-items:center;background-color:#ffaf25;color:#fff;display:inline-flex;font-size:12px;justify-content:center;line-height:1;margin-left:5px;min-height:24px;padding:0 8px}.rt-tpg-container .grid-layout4 .cat-over-image a:hover,.rt-tpg-container .grid-layout5 .tpg-separate-category a:hover,.rt-tpg-container .list-layout4 .tpg-separate-category a:hover{background:#e59100}.rt-tpg-container .grid-layout4 .cat-over-image .rt-separator,.rt-tpg-container .grid-layout5 .tpg-separate-category .rt-separator{display:none}.rt-tpg-container .grid-layout1 .rt-holder,.rt-tpg-container .grid-layout3 .rt-holder{box-shadow:0 0 2px 0 rgba(0,0,0,.3);-webkit-box-shadow:0 0 2px 0 rgba(0,0,0,.3);-moz-box-shadow:0 0 2px 0 rgba(0,0,0,.3)}.tpg-el-main-wrapper .grid-layout2 .rt-holder .rt-el-content-wrapper-flex{height:100%;padding:0}.rt-tpg-container .grid-layout2 .rt-holder .tpg-el-image-wrap{flex:0 0 50%;margin:0;max-width:50%}.rt-tpg-container .grid-layout2 .rt-holder .post-right-content{flex-grow:1;flex:0 0 50%;max-width:50%;padding:15px}.tpg-el-main-wrapper .grid-layout2 [class*=rt-col]{padding:0}@media (max-width:500px){.tpg-el-main-wrapper .grid-layout2 .rt-el-content-wrapper-flex,.tpg-post-order-reverse .rt-tpg-container .rt-row .rt-col-xs-12:nth-child(2n) .rt-el-content-wrapper-flex{display:block}.rt-tpg-container .grid-layout2 .rt-holder .post-right-content,.rt-tpg-container .grid-layout2 .rt-holder .tpg-el-image-wrap{flex:inherit;margin:0;max-width:100%}.tpg-el-main-wrapper .grid-layout2 [class*=rt-col]{margin-bottom:15px}}.rt-tpg-container .grid-layout3 .rt-holder{border-radius:4px;overflow:hidden}.meta_position_default .tpg-el-main-wrapper .grid-layout3 .rt-holder .rt-el-post-meta{order:12;padding-bottom:5px;padding-top:20px;position:relative}.meta_position_default .tpg-el-main-wrapper .grid-layout3 .rt-holder .rt-el-post-meta:before{background:#ddd;content:"";height:1px;right:-50px;position:absolute;left:-50px;top:0;width:calc(100% + 100px)}.rt-tpg-container .grid-layout4 .entry-title-wrapper .entry-title{font-size:22px;font-weight:500;line-height:32px}.tpg-el-main-wrapper .grid-layout4 .tpg-el-image-wrap img{height:230px;width:100%}.rt-tpg-container .grid-layout4 .rt-holder .rt-detail{padding:0}.tpg-is-author-icon-default .grid-layout4 .post-meta-tags span.author i,.tpg-is-author-icon-default .grid-layout4 .post-meta-tags span.author img{display:none}.tpg-el-main-wrapper .list-layout-wrapper .rt-holder .rt-el-content-wrapper{display:flex;flex-direction:row;height:100%;padding:0}.tpg-el-main-wrapper.list-layout1-main .list-layout-wrapper .rt-holder .rt-el-content-wrapper{align-items:flex-start}.tpg-el-main-wrapper.list-layout1-2-main .list-layout1 .rt-holder .rt-el-content-wrapper{flex-direction:row-reverse}.rt-tpg-container .list-layout1 .rt-holder .tpg-el-image-wrap{flex:0 0 260px;margin:0 0 0 30px}@media (max-width:991px){.rt-tpg-container .list-layout1 .rt-holder .tpg-el-image-wrap{flex:0 0 200px}}@media (max-width:599px){.tpg-el-main-wrapper.list-layout1-main .list-layout-wrapper .rt-holder .rt-el-content-wrapper{display:block}.rt-tpg-container .list-layout1 .rt-holder .tpg-el-image-wrap{margin:0 0 15px}}.tpg-el-main-wrapper.list-layout1-2-main .list-layout1 .rt-holder .tpg-el-image-wrap{margin:0 30px 0 0}.rt-tpg-container .list-layout1 .rt-detail .read-more a,.rt-tpg-container .list-layout2 .rt-detail .read-more a,.rt-tpg-container .list-layout3 .rt-detail .read-more a{background-color:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd);color:#fff}.rt-tpg-container .list-layout1 .rt-detail .read-more a:hover,.rt-tpg-container .list-layout2 .rt-detail .read-more a:hover,.rt-tpg-container .list-layout3 .rt-detail .read-more a:hover,.rt-tpg-container .list-layout4 .rt-detail .read-more a:hover{background-color:var(--tpg-secondary-color,#0654c4);border-color:var(--tpg-secondary-color,#0654c4);color:#fff}.tags-visibility-default .list-layout1 .post-tags-links,.tags-visibility-default .list-layout1 .post-tags-links+.separator{display:none}.rt-tpg-container .list-layout-wrapper .offset-right .rt-row{display:flex;flex-wrap:wrap;max-width:100%;overflow:hidden;width:100%}.tpg-el-main-wrapper .list-layout2 .offset-left .tpg-el-image-wrap{height:300px}.tpg-el-main-wrapper .list-layout-wrapper .offset-left .rt-holder .rt-el-content-wrapper{flex-direction:column}.rt-tpg-container .list-layout-wrapper .offset-left .rt-holder .tpg-el-image-wrap{flex:inherit;margin:0 0 15px}.tpg-el-main-wrapper .list-layout-wrapper .offset-right .tpg-el-image-wrap{height:100px}.rt-tpg-container .list-layout-wrapper .offset-right .entry-title-wrapper .entry-title{font-size:20px}.tpg-el-main-wrapper.list-layout2-2-main .list-layout2,.tpg-el-main-wrapper.list-layout3-2-main .list-layout3,.tpg-el-main-wrapper.list-layout5-2-main .list-layout5 .rt-holder .rt-el-content-wrapper{flex-direction:row-reverse}.tpg-el-main-wrapper .list-layout-wrapper.list-layout2 .rt-holder .rt-el-content-wrapper{align-items:flex-start}.tags-visibility-default .list-layout2 .post-tags-links,.tags-visibility-default .list-layout2 .post-tags-links+.separator{display:none}.rt-tpg-container .list-layout2 .offset-right .rt-holder .tpg-el-image-wrap{flex:0 0 107px;margin:0 0 0 15px;max-width:107px}.tpg-el-main-wrapper .list-layout3 .offset-right .rt-holder .tpg-el-excerpt{-webkit-line-clamp:2;-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;text-overflow:ellipsis}.tpg-el-main-wrapper .list-layout3 [class*=rt-col]{padding-bottom:15px}.tpg-el-main-wrapper .list-layout3 .offset-left .tpg-el-image-wrap{height:390px}.rt-tpg-container .list-layout3 .offset-right .rt-holder .tpg-el-image-wrap{flex:0 0 140px;height:110px;margin:0 0 0 15px;max-width:140px}.tpg-el-main-wrapper .list-layout-wrapper.list-layout4 .rt-el-content-wrapper{align-items:inherit}.rt-tpg-container .list-layout4 .post-right-content,.tpg-el-main-wrapper .list-layout4 .rt-holder .tpg-el-image-wrap{flex:0 0 50%;margin:0}@media (min-width:768px){.tpg-el-main-wrapper .list-layout4 .rt-holder .tpg-el-image-wrap{height:400px}}.rt-tpg-container .list-layout4 .post-right-content{display:flex;justify-content:center;margin:0;padding:30px 50px;text-align:center}.rt-tpg-container .list-layout4 .entry-title-wrapper .categories-links .rt-separator{display:none}.tpg-el-main-wrapper .list-layout4 [class*=rt-col]{padding-bottom:0}@media (min-width:768px){.tpg-el-main-wrapper .list-layout4 [class*=rt-col]:nth-child(2n) .rt-holder .rt-el-content-wrapper{flex-direction:row-reverse}}@media (max-width:768px){.tpg-el-main-wrapper .list-layout4 .rt-holder .tpg-el-image-wrap{flex:0 0 150px;height:120px}.rt-tpg-container .list-layout4 .post-right-content{flex:inherit;flex-grow:1;padding:0 20px 0 0;text-align:right}.tpg-el-main-wrapper .list-layout-wrapper.list-layout4 .rt-holder .rt-el-content-wrapper{align-items:flex-start!important}.tpg-el-main-wrapper .list-layout4 [class*=rt-col]{margin-bottom:30px}}@media (max-width:500px){.tpg-el-main-wrapper .list-layout4 .rt-holder .tpg-el-image-wrap{flex:0 0 100px;height:100px}}.rt-tpg-container .list-layout5 .post-right-content{display:block;overflow:hidden;padding-right:20px}.tpg-el-main-wrapper.list-layout5-2-main .list-layout5 .post-right-content{padding-right:0;padding-left:20px}.rt-tpg-container .list-layout5 .rt-holder .rt-img-holder{border-radius:50%;flex:0 0 100px;height:100px;margin-top:8px}.rt-tpg-container .list-layout5 .entry-title-wrapper .entry-title{font-size:18px}.tags-visibility-default .list-layout5 .rt-el-post-meta{color:#a5a6aa;font-size:14px}.list-layout5 .entry-title-wrapper .tpg-separate-category .categories-links{color:#7a7e83;font-size:14px;font-weight:500}.list-layout5 .entry-title-wrapper .tpg-separate-category .categories-links a{color:inherit}.tpg-el-main-wrapper .list-layout5 [class*=rt-col]{padding-bottom:20px}.rt-tpg-container .list-layout5 .post-right-content{flex:1}.grid_hover_layout_wrapper .rt-row-inner{display:flex;flex-wrap:wrap}.rt-tpg-container .rt-grid-hover-item .entry-title-wrapper .entry-title{font-size:20px;line-height:1.4}.tpg-el-main-wrapper .rt-grid-hover-item .rt-holder .rt-el-content-wrapper{height:100%;overflow:hidden;padding:0;position:relative;width:100%}.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content{bottom:0;display:flex;flex-direction:column;justify-content:flex-end;right:0;min-height:56px;padding:30px 30px 15px;position:absolute;left:0;transition:1.2s;width:100%;z-index:1}.rt-tpg-container .rt-grid-hover-item .rt-holder:hover .grid-hover-content{padding-bottom:15px}.rt-tpg-container .rt-grid-hover-item .rt-holder:hover .grid-hover-content>div:last-of-type{margin-bottom:0}.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before{background-color:rgba(0,0,0,.7);bottom:0;content:"";height:100%;right:0;position:absolute;left:0;transition:.4s ease-in-out;width:100%;z-index:-1}.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after{background-color:rgba(0,0,0,.5)}.rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,.rt-tpg-container .rt-grid-hover-item .rt-holder:hover .grid-hover-content:before{opacity:0;visibility:hidden}.rt-tpg-container .rt-grid-hover-item .rt-holder:hover .grid-hover-content:after{opacity:1;visibility:visible}.rt-tpg-container .rt-grid-hover-item .entry-title-wrapper .entry-title,.rt-tpg-container .rt-grid-hover-item .rt-detail .read-more a,.rt-tpg-container .rt-grid-hover-item .rt-el-post-meta,.rt-tpg-container .rt-grid-hover-item .rt-el-post-meta a,.rt-tpg-container .rt-grid-hover-item .rt-holder .tpg-el-excerpt{color:#fff}.rt-tpg-container .rt-grid-hover-item a:hover{color:var(--tpg-primary-color,#0d6efd)}.rt-tpg-container .rt-grid-hover-item .rt-detail .read-more a{border-color:hsla(0,0%,100%,.7)}.rt-tpg-container .rt-grid-hover-item .rt-holder .tpg-el-image-wrap{margin:0}.rt-grid-hover-item .tpg-el-image-wrap{background-color:#e4eaf1;height:100%}.grid-hover-overlay-type-fadein-on-hover .rt-tpg-container .rt-holder .grid-hover-content .entry-title-wrapper .entry-title:before{transition:.5s ease-in-out;width:0}.grid-hover-overlay-type-fadein-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content .entry-title-wrapper .entry-title:before{width:50%}.grid-hover-overlay-type-fadein-on-hover .rt-tpg-container .rt-holder .grid-hover-content{opacity:0;transition:.5s ease-in-out}.grid-hover-overlay-type-fadein-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{opacity:1}.grid-hover-overlay-type-fadeout-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{opacity:0}.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-holder .grid-hover-content{right:-100%;transition:.5s ease-in-out}.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{right:0}.grid-hover-overlay-type-slideout-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{right:100%}.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,.grid-hover-overlay-type-slideout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before{transition:.5s ease-in-out}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before,.grid-hover-overlay-type-slideout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:before{background:var(--tpg-primary-color,#0d6efd);opacity:1;visibility:visible}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,.grid-hover-overlay-type-slidein-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after,.grid-hover-overlay-type-slideout-on-hover .rt-tpg-container .rt-grid-hover-item .rt-holder .grid-hover-content:after{content:none}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content{height:100%}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content,.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .tpg-el-image-wrap,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .rt-img-holder{transition:all .5s}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .rt-img-holder img{transform:none!important}.grid-hover-overlay-type-zoomin-on-hover .rt-tpg-container .rt-holder .grid-hover-content,.grid-hover-overlay-type-zoomout-on-hover .rt-tpg-container .rt-holder .grid-hover-content{transition:.5s ease-in-out}.grid-hover-overlay-type-zoomin-on-hover .rt-tpg-container .rt-holder .grid-hover-content,.grid-hover-overlay-type-zoomout-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{opacity:0;transform:scale(0)}.grid-hover-overlay-type-zoomin-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content{opacity:1;transform:scale(1)}.grid-hover-overlay-type-zoominall-on-hover .rt-tpg-container .rt-holder .grid-hover-content *,.grid-hover-overlay-type-zoomoutall-on-hover .rt-tpg-container .rt-holder .grid-hover-content *{transition:.4s ease-in-out!important}.grid-hover-overlay-type-zoominall-on-hover .rt-tpg-container .rt-holder .grid-hover-content *,.grid-hover-overlay-type-zoomoutall-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content *{opacity:0;transform:scale(0)}.grid-hover-overlay-type-zoominall-on-hover .rt-tpg-container .rt-holder:hover .grid-hover-content *{opacity:1;transform:scale(1)}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .grid-hover-content{-webkit-backface-visibility:hidden;backface-visibility:hidden;opacity:0;transform:rotateY(-180deg)}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .grid-hover-content{-webkit-backface-visibility:visible;backface-visibility:visible;opacity:1;transform:rotateY(0deg)}.grid-hover-overlay-type-flipin-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .rt-img-holder,.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .grid-hover-content{opacity:0;transform:rotateY(180deg);visibility:hidden}.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper .rt-img-holder{-webkit-backface-visibility:hidden;backface-visibility:hidden;opacity:0;transform:rotateY(-180deg)}.grid-hover-overlay-type-flipout-on-hover .rt-tpg-container .rt-holder .rt-el-content-wrapper:hover .rt-img-holder{-webkit-backface-visibility:visible;backface-visibility:visible;opacity:1;transform:rotateY(0deg)}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .post-footer,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .rt-el-post-meta,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .rt-tpg-social-share,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .tpg-el-excerpt{margin-bottom:0;max-height:0;opacity:0;transition:.6s;visibility:hidden}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .post-footer,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .rt-el-post-meta,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .rt-tpg-social-share,.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .tpg-el-excerpt{margin-bottom:15px}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .rt-el-post-meta{transition:all .6s,opacity .6s}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .tpg-el-excerpt{transition:all .6s,opacity .5s}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .post-footer{transition:all .6s,opacity .4s}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder .rt-tpg-social-share{transition:all .6s,opacity .3s}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .rt-el-post-meta{margin-bottom:15px;max-height:var(--tpg-meta-height,80px);opacity:1;visibility:visible}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .tpg-el-excerpt{max-height:var(--tpg-excerpt-height,140px);opacity:1;visibility:visible}.rt-tpg-container .grid_hover_layout_wrapper .rt-holder:hover .rt-tpg-social-share{margin-bottom:15px;max-height:var(--tpg-share-height,50px);opacity:1;visibility:visible}.rt-tpg-container .grid_hover_layout_wrapper .rt-grid-hover-item .rt-holder:hover .post-footer{max-height:var(--tpg-footer-height,50px);opacity:1;visibility:visible}.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .post-footer,.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .rt-el-post-meta,.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .rt-tpg-social-share,.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout3 .rt-grid-hover-item .rt-holder .tpg-el-excerpt,.rt-tpg-container .grid_hover_layout_wrapper.grid_hover-layout5 .rt-grid-hover-item .rt-holder .rt-el-post-meta{max-height:inherit;opacity:1;visibility:visible}.meta-visibility-default .rt-tpg-container .grid_hover-layout1 .rt-grid-hover-item .rt-holder .rt-el-post-meta{max-height:inherit}.rt-tpg-container .grid_hover-layout1 .rt-holder .tpg-el-image-wrap{height:300px}.grid-hover-overlay-height-full .rt-tpg-container .rt-content-loader .rt-grid-hover-item .rt-holder .grid-hover-content{min-height:100%}.hover-overlay-height-default .rt-tpg-container .grid_hover-layout1 .rt-grid-hover-item .rt-holder:hover .grid-hover-content,.hover-overlay-height-full .rt-tpg-container .rt-content-loader .rt-grid-hover-item .rt-holder:hover .grid-hover-content{min-height:100%;transition:.5s}.rt-tpg-container .grid_hover-layout1 .entry-title-wrapper .entry-title{font-size:20px;line-height:1.4}.meta-visibility-default .rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder .rt-el-post-meta{margin-bottom:7px;max-height:inherit}.rt-tpg-container .grid_hover-layout2 .rt-holder .tpg-el-image-wrap img{height:300px}.rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder .post-footer,.rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder .tpg-el-excerpt,.tpg-el-main-wrapper .grid_hover-layout2 .rt-holder .rt-tpg-social-share{margin-bottom:0;max-height:0;overflow:hidden;transition:.6s}.tpg-el-main-wrapper .grid_hover-layout2 .rt-holder:hover .rt-tpg-social-share{margin-bottom:15px;max-height:50px}.rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder:hover .post-footer{max-height:50px}.hover-overlay-height-full .rt-tpg-container .grid_hover-layout2 .rt-grid-hover-item .rt-holder:hover .grid-hover-content{min-height:100%}.rt-tpg-container .grid_hover-layout2 .rt-holder .grid-hover-content{justify-content:center;margin:15px;padding:20px;text-align:center;width:calc(100% - 30px)}.rt-tpg-container .grid_hover-layout3 .tpg-el-image-wrap{height:300px}.rt-tpg-container .grid_hover-layout3 .rt-grid-hover-item .rt-holder .grid-hover-content{justify-content:center;min-height:100%;padding:10px 30px;text-align:center}.tpg-title-border-show .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title{margin-bottom:20px;position:relative}.tpg-title-border-show .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before{background-color:#fff;bottom:-16px;content:"";height:2px;right:50%;position:absolute;transform:translateX(50%);transition:.4s;width:50%}.tpg-title-border-show.title-alignment-justify .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before,.tpg-title-border-show.title-alignment-left .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before,.tpg-title-border-show.tpg-wrapper-align-left .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before{right:0;transform:none}.tpg-title-border-show.title-alignment-right .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before,.tpg-title-border-show.tpg-wrapper-align-right .rt-tpg-container .rt-holder .entry-title-wrapper .entry-title:before{left:0;transform:none}.elementor-template-full-width .site-content .ast-container{max-width:100%;padding:0;width:100%}.tpg-el-main-wrapper .tgp-cf-field-label{display:inline-block;float:none}.tpg-el-main-wrapper .tpg-cf-fields{display:block}.tpg-el-main-wrapper .tgp-cf-field-value{display:inline}.tpg-el-main-wrapper .tpg-cf-group-title{color:inherit}.tpg-acf-align-left .rt-tpg-container .acf-custom-field-wrap{text-align:right}.grid-layout6 .acf-custom-field-wrap,.list-layout4 .acf-custom-field-wrap,.tpg-acf-align-center .rt-tpg-container .acf-custom-field-wrap{text-align:center}.tpg-acf-align-right .rt-tpg-container .acf-custom-field-wrap{text-align:left}
|
assets/css/tpg-shortcode.min.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
body .tpg-el-main-wrapper .rt-grid-item{padding:0 15px}body .elementor-section .tpg-el-main-wrapper .rt-grid-item{background:none}body .elementor-section .tpg-el-main-wrapper .offset-left,body .elementor-section .tpg-el-main-wrapper .offset-right{padding-bottom:0}.rt-tpg-container a{text-decoration:none}.rt-model-open,body.rt-model-open,html.rt-model-open{overflow:hidden}.rt-tpg-container img{height:auto;max-width:100%}.rt-tpg-container *{box-sizing:border-box}.entry .rt-tpg-container .entry-title:before{content:none}.rt-tpg-container .entry{margin-top:0}.rt-tpg-container :after,.rt-tpg-container :before{box-sizing:border-box}.rt-container,.rt-container-fluid{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px}.rt-container-fluid.slider-layout13-main{padding:0 0 15px}.rt-tpg-container ul{margin:0}img,svg{vertical-align:middle}a:link,a:visited{transition:all .31s ease}.clearfix:after,.clearfix:before,.rt-container-fluid:after,.rt-container-fluid:before,.rt-row:after,.rt-row:before{content:" ";display:table}.clearfix:after,.rt-container-fluid:after,.rt-container:after,.rt-row:after{clear:both}.rt-row{margin-left:-15px;margin-right:-15px}.grid-layout2.rt-row{margin-left:0;margin-right:0}.rt-row>.rt-row{padding-left:15px;padding-right:15px}.grid_hover6.rt-row{margin-left:-2px;margin-right:-2px}.rt-col-lg-1,.rt-col-lg-2,.rt-col-lg-3,.rt-col-lg-4,.rt-col-lg-5,.rt-col-lg-6,.rt-col-lg-7,.rt-col-lg-8,.rt-col-lg-9,.rt-col-lg-10,.rt-col-lg-11,.rt-col-lg-12,.rt-col-lg-24,.rt-col-md-1,.rt-col-md-2,.rt-col-md-3,.rt-col-md-4,.rt-col-md-5,.rt-col-md-6,.rt-col-md-7,.rt-col-md-8,.rt-col-md-9,.rt-col-md-10,.rt-col-md-11,.rt-col-md-12,.rt-col-md-24,.rt-col-sm-1,.rt-col-sm-2,.rt-col-sm-3,.rt-col-sm-4,.rt-col-sm-5,.rt-col-sm-6,.rt-col-sm-7,.rt-col-sm-8,.rt-col-sm-9,.rt-col-sm-10,.rt-col-sm-11,.rt-col-sm-12,.rt-col-sm-24,.rt-col-xs-1,.rt-col-xs-2,.rt-col-xs-3,.rt-col-xs-4,.rt-col-xs-5,.rt-col-xs-6,.rt-col-xs-7,.rt-col-xs-8,.rt-col-xs-9,.rt-col-xs-10,.rt-col-xs-11,.rt-col-xs-12,.rt-col-xs-24{min-height:1px;padding-left:15px;padding-right:15px;position:relative}.rt-col-xs-1,.rt-col-xs-2,.rt-col-xs-3,.rt-col-xs-4,.rt-col-xs-5,.rt-col-xs-6,.rt-col-xs-7,.rt-col-xs-8,.rt-col-xs-9,.rt-col-xs-10,.rt-col-xs-11,.rt-col-xs-12,.rt-col-xs-24{float:left}.rt-col-xs-24{width:20%}.rt-col-xs-12{width:100%}.rt-col-xs-11{width:91.66666667%}.rt-col-xs-10{width:83.33333333%}.rt-col-xs-9{width:75%}.rt-col-xs-8{width:66.66666667%}.rt-col-xs-7{width:58.33333333%}.rt-col-xs-6{width:50%}.rt-col-xs-5{width:41.66666667%}.rt-col-xs-4{width:33.33333333%}.rt-col-xs-3{width:25%}.rt-col-xs-2{width:16.66666667%}.rt-col-xs-1{width:8.33333333%}#rt-main{margin:35px auto}.rt-tpg-container h3.entry-title{line-height:1.25;margin:0 0 12px}.rt-tpg-container .offset-small-wrap .rt-holder .overlay{min-height:60px!important}.rt-tpg-container .offset-small-wrap .rt-holder .rt-img-responsive{height:auto;-o-object-fit:cover;object-fit:cover;width:100%}.rt-tpg-container .offset-small-wrap .rt-col-md-6 .rt-holder .rt-img-responsive{height:auto}.rt-tpg-container .offset-small-wrap .rt-holder .overlay h3 a{-webkit-line-clamp:1!important;-webkit-box-orient:vertical;display:-webkit-box!important;overflow:hidden!important;text-overflow:ellipsis!important}.rt-tpg-container .offset-big .post-meta-user.above_title{margin-top:15px}.rt-tpg-container .offset-big .post-meta-user.above_title+h3.entry-title{margin-top:0}.rt-tpg-container .offset-big h3.entry-title{margin:20px 0 15px}.rt-tpg-container .offset-big .cat-above-title{margin-bottom:-15px;padding-top:10px}.rt-tpg-container .owl-controls .owl-dots{margin-top:15px}.rt-popup-content .rt-tpg-container i{margin-right:5px}.rt-popup-content ol,.rt-popup-content ul{list-style-position:inside}.paginationjs{box-sizing:initial;font-family:Marmelad,Lucida Grande,Arial,Hiragino Sans GB,Georgia,sans-serif;font-size:14px;line-height:1.6}.paginationjs:after{clear:both;content:" ";display:table}.paginationjs .paginationjs-pages{float:left}.paginationjs .paginationjs-pages ul{float:left;margin:0;padding:0}.paginationjs .paginationjs-go-button,.paginationjs .paginationjs-go-input,.paginationjs .paginationjs-nav{float:left;font-size:14px;margin-left:10px}.paginationjs .paginationjs-pages li{border:1px solid #aaa;border-right:none;float:left;list-style:none}.paginationjs .paginationjs-pages li>a{background:#fff;color:#333;display:block;font-size:14px;height:28px;line-height:28px;min-width:30px;text-align:center;text-decoration:none}.paginationjs .paginationjs-pages li:hover>a{background:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd)!important;color:#fff!important}.paginationjs .paginationjs-pages li.active{border:none}.paginationjs .paginationjs-pages li.active>a{background:#aaa;color:#fff;height:30px;line-height:30px}.paginationjs .paginationjs-pages li.disabled>a{opacity:.3}.paginationjs .paginationjs-pages li.disabled>a:hover{background:0 0}.paginationjs .paginationjs-pages li:first-child,.paginationjs .paginationjs-pages li:first-child>a{border-radius:3px 0 0 3px}.paginationjs .paginationjs-pages li:last-child{border-radius:0 3px 3px 0;border-right:1px solid #aaa}.paginationjs .paginationjs-pages li:last-child>a{border-radius:0 3px 3px 0}.paginationjs .paginationjs-go-input>input[type=text]{box-sizing:initial;height:28px;padding:0;width:30px}.paginationjs .paginationjs-go-button>input[type=button],.paginationjs .paginationjs-go-input>input[type=text]{background:#fff;border:1px solid #aaa;border-radius:3px;box-shadow:none;font-size:14px;outline:0;text-align:center;vertical-align:baseline}.paginationjs .paginationjs-go-button>input[type=button]{color:#333;cursor:pointer;height:30px;line-height:28px;min-width:40px;padding:0 8px;vertical-align:middle\9}.paginationjs.paginationjs-theme-blue .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-blue .paginationjs-pages li{border-color:#289de9}.paginationjs .paginationjs-go-button>input[type=button]:hover{background-color:#f8f8f8}.paginationjs .paginationjs-nav{height:30px;line-height:30px}.paginationjs .paginationjs-go-button,.paginationjs .paginationjs-go-input{margin-left:5px\9}.paginationjs.paginationjs-small{font-size:12px}.paginationjs.paginationjs-small .paginationjs-pages li>a{font-size:12px;height:24px;line-height:24px;min-width:26px}.paginationjs.paginationjs-small .paginationjs-pages li.active>a{height:26px;line-height:26px}.paginationjs.paginationjs-small .paginationjs-go-input{font-size:12px}.paginationjs.paginationjs-small .paginationjs-go-input>input[type=text]{font-size:12px;height:24px;width:26px}.paginationjs.paginationjs-small .paginationjs-go-button{font-size:12px}.paginationjs.paginationjs-small .paginationjs-go-button>input[type=button]{font-size:12px;height:26px;line-height:24px;min-width:30px;padding:0 6px}.paginationjs.paginationjs-small .paginationjs-nav{font-size:12px;height:26px;line-height:26px}.paginationjs.paginationjs-big{font-size:16px}.paginationjs.paginationjs-big .paginationjs-pages li>a{font-size:16px;height:34px;line-height:34px;min-width:36px}.paginationjs.paginationjs-big .paginationjs-pages li.active>a{height:36px;line-height:36px}.paginationjs.paginationjs-big .paginationjs-go-input{font-size:16px}.paginationjs.paginationjs-big .paginationjs-go-input>input[type=text]{font-size:16px;height:34px;width:36px}.paginationjs.paginationjs-big .paginationjs-go-button{font-size:16px}.paginationjs.paginationjs-big .paginationjs-go-button>input[type=button]{font-size:16px;height:36px;line-height:34px;min-width:50px;padding:0 12px}.paginationjs.paginationjs-big .paginationjs-nav{font-size:16px;height:36px;line-height:36px}.paginationjs.paginationjs-theme-blue .paginationjs-pages li>a{color:#289de9}.paginationjs.paginationjs-theme-blue .paginationjs-pages li:hover>a{background:#e9f4fc}.paginationjs.paginationjs-theme-blue .paginationjs-pages li.active>a{background:#289de9;color:#fff}.paginationjs.paginationjs-theme-blue .paginationjs-pages li.disabled:hover>a{background:0 0}.paginationjs.paginationjs-theme-blue .paginationjs-go-button>input[type=button]{background:#289de9;border-color:#289de9;color:#fff}.paginationjs.paginationjs-theme-green .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-green .paginationjs-pages li{border-color:#449d44}.paginationjs.paginationjs-theme-blue .paginationjs-go-button>input[type=button]:hover{background-color:#3ca5ea}.paginationjs.paginationjs-theme-green .paginationjs-pages li>a{color:#449d44}.paginationjs.paginationjs-theme-green .paginationjs-pages li:hover>a{background:#ebf4eb}.paginationjs.paginationjs-theme-green .paginationjs-pages li.active>a{background:#449d44;color:#fff}.paginationjs.paginationjs-theme-green .paginationjs-pages li.disabled:hover>a{background:0 0}.paginationjs.paginationjs-theme-green .paginationjs-go-button>input[type=button]{background:#449d44;border-color:#449d44;color:#fff}.paginationjs.paginationjs-theme-yellow .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-yellow .paginationjs-pages li{border-color:#ec971f}.paginationjs.paginationjs-theme-green .paginationjs-go-button>input[type=button]:hover{background-color:#55a555}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li>a{color:#ec971f}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li:hover>a{background:#fdf5e9}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li.active>a{background:#ec971f;color:#fff}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li.disabled:hover>a{background:0 0}.paginationjs.paginationjs-theme-yellow .paginationjs-go-button>input[type=button]{background:#ec971f;border-color:#ec971f;color:#fff}.paginationjs.paginationjs-theme-red .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-red .paginationjs-pages li{border-color:#c9302c}.paginationjs.paginationjs-theme-yellow .paginationjs-go-button>input[type=button]:hover{background-color:#eea135}.paginationjs.paginationjs-theme-red .paginationjs-pages li>a{color:#c9302c}.paginationjs.paginationjs-theme-red .paginationjs-pages li:hover>a{background:#faeaea}.paginationjs.paginationjs-theme-red .paginationjs-pages li.active>a{background:#c9302c;color:#fff}.paginationjs.paginationjs-theme-red .paginationjs-pages li.disabled:hover>a{background:0 0}.paginationjs.paginationjs-theme-red .paginationjs-go-button>input[type=button]{background:#c9302c;border-color:#c9302c;color:#fff}.paginationjs.paginationjs-theme-red .paginationjs-go-button>input[type=button]:hover{background-color:#ce4541}.paginationjs .paginationjs-pages li.paginationjs-next{border-right:1px solid\9}.paginationjs .paginationjs-go-input>input[type=text]{line-height:28px\9;vertical-align:middle\9}.paginationjs.paginationjs-big .paginationjs-pages li>a{line-height:36px\9}.paginationjs.paginationjs-big .paginationjs-go-input>input[type=text]{height:36px\9;line-height:36px\9}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li:not(.paginationjs-next):not(.paginationjs-prev){display:none}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li{color:#fff}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li>a{background-color:var(--tpg-primary-color,#0d6efd);color:#fff}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li:hover a{background-color:var(--tpg-secondary-color,#0654c4)}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-page:nth-child(2){display:inline-block;pointer-events:none;position:relative}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-page:nth-child(2) a{pointer-events:none;text-indent:-99999px}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-page:nth-child(2):before{content:"\f100";font-family:Font Awesome\ 5 Free;font-weight:900;left:50%;opacity:.5;position:absolute;top:50%;transform:translate(-50%,-50%);z-index:99}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-prev+li{display:none!important}.rt-tpg-container button{border:none;padding:10px 15px}.rt-tpg-container .rt-tgp-load-more button{background:#8e8e8e;border-radius:4px}.rt-tpg-container .tpg-wc-product-filter{margin-bottom:15px;padding-right:15px;text-align:right}.rt-img-holder>a{display:block;text-align:center}.rt-img-responsive{display:block;height:auto;max-width:100%;transition:.4s ease-in-out}@media (max-width:991px){.rt-img-holder>a,.rt-img-responsive{width:100%}}.rt-tpg-container .no-margin{margin:0!important;padding:0!important}span.more-loading{background:url(../images/loading.gif) 100% no-repeat;display:inline-block;padding-right:20px}.rt-tgp-load-more,.rt-tgp-scroll-load-more{display:block;margin:30px 0 20px;text-align:center}.post-meta-tags,.post-meta-user{font-size:95%;line-height:1.5;margin-bottom:15px;padding:0}.post-meta-tags span,.post-meta-user span{display:inline-block;padding-right:8px}.post-meta-tags span.rt-separator,.post-meta-user span.rt-separator{display:inline-block;padding-right:5px}.post-meta-user span.comment-link{float:right;padding-right:0;text-align:right}.rt-holder .entry-title a{color:#000}.rt-tpg-container .rt-holder .post-meta.center .read-more{float:none}.rt-tpg-container .rt-holder .post-meta .rt-tpg-social-share{display:block;float:none;margin-bottom:15px;text-align:left;width:100%}.rt-tpg-container .rt-holder .post-meta.center .rt-tpg-social-share,.rt-tpg-container .rt-holder .post-meta.right .rt-tpg-social-share{text-align:left}.rt-tpg-container .rt-holder .read-more a{display:inline-block;font-size:15px;line-height:1.5}.rt-tpg-container .rt-holder .tpg-excerpt{margin-bottom:10px}.rt-tpg-container .tpg-iso-filter{margin:15px 0 45px;text-align:center}.rt-tpg-container .tpg-iso-filter input[type=text]{border-radius:3px;display:inline-block;margin-left:4px;padding:12px 10px}.rt-tpg-container .tpg-iso-filter>div{display:inline-block}.rt-tpg-container .rt-tpg-isotope-buttons .selected{background:var(--tpg-primary-color,#0d6efd)}.rt-tpg-container .rt-tpg-isotope-buttons button{background:#8e8e8e;border:none;border-radius:3px;box-shadow:none!important;color:#fff;font-size:15px;font-weight:400;line-height:1.8;margin:4px;outline:0;padding:8px 20px;text-shadow:none!important;text-transform:none}.rt-tpg-container .tpg-pre-loader{overflow:hidden;position:relative}.rt-tpg-container .rt-loading-overlay{background-color:#fff;height:100%;left:0;opacity:0;position:absolute;top:0;visibility:hidden;width:100%;z-index:1}.rt-tpg-container .rt-loading{color:var(--tpg-primary-color,#0d6efd);left:50%;margin-left:-16px;opacity:0;position:absolute;top:40%;visibility:hidden;z-index:2}.rt-tpg-container .tpg-pre-loader .rt-loading-overlay{opacity:.8;visibility:visible}.tpg-carousel-main .tpg-pre-loader .rt-loading-overlay{opacity:1}.rt-tpg-container .tpg-pre-loader .rt-loading{opacity:1;visibility:visible}.rt-ball-clip-rotate{color:#fff;display:block;font-size:0;height:32px;width:32px}.rt-ball-clip-rotate,.rt-ball-clip-rotate>div{box-sizing:border-box;position:relative}.rt-ball-clip-rotate>div{-webkit-animation:ball-clip-rotate .75s linear infinite;animation:ball-clip-rotate .75s linear infinite;background-color:currentColor;background:transparent;border-radius:100%;border:2px solid;border-bottom:2px solid transparent;display:inline-block;float:none;height:32px;width:32px}.rt-layout-filter-container.rt-clear:after{clear:both;content:"";display:block}.rt-clear::-ms-ticks-after,.rt-clear:after{clear:both;content:"";display:block}.rt-layout-filter-container{font-size:0;line-height:0;margin:-5px -5px 30px;padding:0}.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item{border:1px solid;display:inline-block;margin:4px;padding:8px 10px;transition:.4s}.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item.selected,.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item:hover{background:#222;color:#b4b4b4}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap{padding-right:82px}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper{margin-right:0;position:static;width:100%}.tpg-header-wrapper.carousel{align-items:center;display:flex;margin-bottom:30px;overflow:hidden}.section-title-style-default .tpg-header-wrapper.carousel,.section-title-style-style1 .tpg-header-wrapper.carousel{min-height:36px}.tpg-header-wrapper.carousel .swiper{overflow:hidden}.section-title-style-style2 .tpg-header-wrapper.carousel .swiper,.section-title-style-style3 .tpg-header-wrapper.carousel .swiper{height:51px;margin-bottom:-.5px}.tpg-header-wrapper.carousel .swiper .swiper-navigation{position:absolute;right:0;top:50%;transform:translateY(-50%);z-index:9}.tpg-header-wrapper.carousel .swiper .swiper-button-next,.tpg-header-wrapper.carousel .swiper .swiper-button-prev{margin-top:0;top:0}.tpg-header-wrapper.carousel .tpg-widget-heading-wrapper{flex:1;margin:0;padding-right:10px}.tpg-header-wrapper.carousel .rt-layout-filter-container{flex:0 0 60%;margin:0;max-width:60%}.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper{box-sizing:content-box;display:flex;height:100%;margin:0;position:relative;transition-property:transform;width:100%;z-index:1}.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide{align-items:center;border:none;color:#212121;display:flex;font-size:15px;height:auto;justify-content:center;margin:0;padding:0 10px;position:relative;text-align:center;text-transform:none;width:auto}.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:before,.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:before{border-bottom:7px solid var(--tpg-primary-color,#0d6efd);border-left:7px solid transparent;border-right:7px solid transparent;border-top:0 solid transparent;bottom:0;content:"";height:0;left:50%;opacity:0;position:absolute;transform:translateX(-50%);transition:all .3s ease;visibility:hidden;width:0}.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected:before,.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover:before,.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected:before,.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover:before{opacity:1;visibility:visible}.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected,.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover{color:var(--tpg-primary-color,#0d6efd)}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .filter-right-wrapper,.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .rt-author-filter{display:none}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.swiper-wrapper{letter-spacing:0}.tpg-header-wrapper.carousel .swiper-button-next.swiper-button-disabled,.tpg-header-wrapper.carousel .swiper-button-prev.swiper-button-disabled{opacity:1}.tpg-header-wrapper.carousel .swiper-button-next.swiper-button-disabled:after,.tpg-header-wrapper.carousel .swiper-button-prev.swiper-button-disabled:after{opacity:.35}.filter-button-border-enable .tpg-header-wrapper.carousel .rt-layout-filter-container{border:1px solid #ddd;border-radius:3px}.filter-button-border-enable .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide{padding:6px 15px;white-space:nowrap}.filter-button-border-enable .tpg-header-wrapper.carousel .swiper .swiper-navigation{right:3px}.filter-nex-prev-btn-hidden .tpg-header-wrapper.carousel .swiper .swiper-navigation{display:none}.filter-nex-prev-btn-hidden .tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap{margin-right:0}@media (max-width:767px){.tpg-header-wrapper.carousel{display:block}.tpg-header-wrapper.carousel .rt-layout-filter-container{margin-bottom:8px;margin-left:-9px;margin-top:10px;max-width:100%;position:relative}}.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item.selected,.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item:hover{background:none;color:#000}.rt-filter-item-wrap.rt-order-by-action,.rt-filter-item-wrap.rt-sort-order-action{float:right}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap{color:#666;cursor:pointer;display:inline-block;font-size:13px;letter-spacing:.1em;line-height:1.55;margin:4px;padding:8px 10px;position:relative;text-transform:uppercase;transition:background-color .2s ease-in-out,color .2s ease-in-out,border-color .2s ease-in-out;-webkit-transition:background-color .2s ease-in-out,color .2s ease-in-out,border-color .2s ease-in-out;-ms-transition:background-color .2s ease-in-out,color .2s ease-in-out,border-color .2s ease-in-out;-ms-user-select:none;user-select:none;-webkit-user-select:none;-moz-user-select:none;vertical-align:top}.rt-layout-filter-container .rt-filter-wrap .rt-filter-button-wrap{margin-left:0;margin-top:0;padding:0}@media (max-width:767px){.rt-layout-filter-container .rt-filter-wrap .rt-filter-button-wrap{display:inline}}.rt-layout-filter-container .rt-filter-wrap .rt-filter-button-item .rt-filter-sub-tax{display:none}.rt-layout-filter-container .rt-filter-sub-tax.sub-button-group{margin:0 4px}.rt-layout-filter-container .rt-filter-sub-tax.sub-button-group .rt-filter-button-item{cursor:pointer}.rt-layout-filter-container>.rt-filter-sub-tax.sub-button-group>span{border:1px solid;display:inline-block;font-size:13px;letter-spacing:.1em;line-height:1.55;margin:4px;padding:8px 10px;text-transform:uppercase;vertical-align:top}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap{border:1px solid #666;color:#666;position:relative}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap:hover{border-color:#222;color:#222}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-sort-order-action:hover{border-color:#222}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap>.rt-filter-dropdown-default{display:block;max-width:135px;min-width:135px;overflow:hidden;text-align:center;text-overflow:ellipsis;white-space:nowrap}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown{background-color:#222;border:none;border-top:1px solid transparent;display:block;left:-1px;margin-top:1px;opacity:0;position:absolute;right:-1px;top:100%;transition:opacity .3s ease-in-out,visibility .3s ease-in-out;-webkit-transition:opacity .3s ease-in-out,visibility .3s ease-in-out;-ms-transition:opacity .3s ease-in-out,visibility .3s ease-in-out;visibility:hidden;z-index:20}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap:hover .rt-filter-dropdown{border-top-color:#000}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown .rt-filter-dropdown-item.selected{background:#000}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap.active-dropdown .rt-filter-dropdown{opacity:1;visibility:visible}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap.active-dropdown .rt-arrow-angle{transform:rotate(180deg);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg)}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown .rt-filter-dropdown-item{border-bottom:1px solid rgba(0,0,0,.2);color:#b4b4b4;display:block;padding:10px 15px 9px;text-align:center}.rt-filter-dropdown-default .sub-dropdown-wrap,.rt-filter-dropdown-item .sub-dropdown-wrap{display:none!important}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-arrow-angle{backface-visibility:hidden;-webkit-backface-visibility:hidden;letter-spacing:0;transition:transform .2s ease-in-out;-webkit-transition:transform .2s ease-in-out;-ms-transition:transform .2s ease-in-out}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-sort-order-action{border:1px solid #666;color:#666;min-width:38px;position:relative}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow{position:static}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span{backface-visibility:hidden;-webkit-backface-visibility:hidden;display:block;height:8px;left:50%;margin-left:-7px;margin-top:-4px;position:absolute;top:50%;transition:transform .2s ease-in-out;-webkit-transition:transform .2s ease-in-out;-ms-transition:transform .2s ease-in-out;width:14px}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow[data-sort-order=ASC]>span{transform:rotate(180deg);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg)}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span:before{left:3px;transform:rotate(-45deg);-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg)}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span:after,.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span:before{background-color:#666;content:"";display:block;height:9px;position:absolute;top:0;transition:background-color .2s ease-in-out;-webkit-transition:background-color .2s ease-in-out;-ms-transition:background-color .2s ease-in-out;width:2px}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span:after{left:9px;transform:rotate(45deg);-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg)}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-search-filter-wrap{float:right;padding:0;position:relative}.rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:1px solid #666;color:#666;font-family:Dosis,sans-serif;font-size:12px;font-weight:600;height:39px;padding:11px}.rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input:focus{box-shadow:none;outline:none}.rt-filter-item-wrap.rt-search-filter-wrap span.rt-action{cursor:pointer;display:inline-block;font-size:15px;position:absolute;right:5px;top:6px}.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input::-webkit-input-placeholder{font-family:Dosis,sans-serif;font-size:12px;font-weight:600}.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input::-moz-placeholder{font-family:Dosis,sans-serif;font-size:12px;font-weight:600}.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input:-ms-input-placeholder{font-family:Dosis,sans-serif;font-size:12px;font-weight:600}.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input:-moz-placeholder{font-family:Dosis,sans-serif;font-size:12px;font-weight:600}@media (max-width:600px){.rt-filter-item-wrap.rt-tax-filter.rt-filter-dropdown-wrap{display:block;margin-bottom:10px}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap>.rt-filter-dropdown-default{margin:0 auto}}.rt-tpg-social-share.a{position:relative}body>.rt-tooltip{background:#666;border-radius:3px;border-width:2px;-o-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa;color:#fff;font-size:100%;opacity:0;padding:5px 10px;pointer-events:none;position:absolute;transition:opacity 1s ease-in-out;z-index:9999}body>.rt-tooltip .rt-tooltip-content{font-size:90%}body>.rt-tooltip,body>.rt-tooltip .rt-tooltip-bottom:after{background:#000;border-radius:2px}body>.rt-tooltip .rt-tooltip-bottom{bottom:-16px;height:18px;left:50%;margin-left:-32px;overflow:hidden;position:absolute;width:70px}body>.rt-tooltip .rt-tooltip-bottom:after{tranform:rotate(45deg);content:"";height:25px;left:20px;position:absolute;top:-20px;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);width:25px}.rt-tpg-container .rt-holder .rt-img-holder{overflow:hidden;position:relative}.rt-tpg-container .rt-holder .tpg-el-image-wrap{margin:-15px -15px 15px}.rt-tpg-container .list-behaviour .rt-holder .tpg-el-image-wrap{margin:0}.rt-tpg-container .img_zoom_out .rt-holder .rt-img-holder img:not(.avatar),.rt-tpg-container .rt-holder:hover .rt-img-holder img:not(.avatar){transform:scale(1.1)}.rt-tpg-container .img_no_effect .rt-holder:hover .rt-img-holder img,.rt-tpg-container .img_zoom_out .rt-holder:hover .rt-img-holder img{transform:scale(1)}.rt-tpg-container .rt-holder .rt-detail{padding:15px 15px 0}.rt-tpg-container .entry-title-wrapper .entry-title{font-size:26px;font-weight:500;line-height:1.25;margin:0 0 18px}@media (max-width:767px){.rt-tpg-container .entry-title-wrapper .entry-title{font-size:20px;margin:0 0 15px}}.rt-tpg-container .rt-detail .tpg-excerpt-inner,.rt-tpg-container .rt-holder .rt-detail .entry-title-wrapper{margin-bottom:15px}.rt-tpg-container .list-layout2 .rt-detail .tpg-excerpt-inner,.rt-tpg-container .list-layout3 .rt-detail .tpg-excerpt-inner{margin-bottom:0}.rt-tpg-container .rt-holder .rt-detail .post-meta{line-height:25px;overflow:hidden}.rt-tpg-container .rt-holder .rt-detail .read-more a{align-items:center;border:1px solid hsla(0,0%,80%,.4);display:inline-flex;flex-direction:row;flex-wrap:wrap;font-size:15px;justify-content:left;line-height:1.8;overflow:hidden;padding:8px 20px}.rt-tpg-container .rt-holder .rt-detail .read-more a:hover{border-color:#7a64f2;color:#7a64f2}.rt-tpg-container .rt-holder .rt-detail .read-more a{color:#1a1a1a}.rt-tpg-container .rt-holder .rt-detail .post-meta.right{text-align:right}.rt-tpg-container .rt-holder .rt-detail .post-meta.center{text-align:center}@-webkit-keyframes ball-scale-multiple{0%{opacity:0;transform:scale(0)}5%{opacity:.75}to{opacity:0;transform:scale(1)}}@keyframes ball-scale-multiple{0%{opacity:0;transform:scale(0)}5%{opacity:.75}to{opacity:0;transform:scale(1)}}@-webkit-keyframes ball-clip-rotate{0%{transform:rotate(0deg)}50%{transform:rotate(180deg)}to{transform:rotate(1turn)}}@keyframes ball-clip-rotate{0%{transform:rotate(0deg)}50%{transform:rotate(180deg)}to{transform:rotate(1turn)}}.rt-container-fluid{position:relative}#bottom-script-loader{background:hsla(0,0%,100%,.95);height:calc(100% + 60px);margin:-30px;position:absolute;width:calc(100% + 60px);z-index:999}#bottom-script-loader .rt-ball-clip-rotate{color:var(--tpg-primary-color,#0d6efd);margin-right:-16px;position:absolute;right:50%;top:80px;z-index:2}.tpg-widget-heading-wrapper{display:flex;margin-bottom:30px;position:relative}.tpg-widget-heading-wrapper .tpg-widget-heading{line-height:1;margin-bottom:-1px;margin-top:0;padding-right:15px;padding-top:0;position:relative}.search .tpg-widget-heading-wrapper .tpg-widget-heading{line-height:1.5}@meia (max-width: 767px){.tpg-widget-heading-wrapper .tpg-widget-heading{line-height:1.2}}.tpg-widget-heading-wrapper.center .tpg-widget-heading{margin:0;padding:0}.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading:before{background-color:var(--tpg-primary-color,#0d6efd);border-radius:50%;content:"";display:inline-block;height:8px;margin-right:7px;margin-top:-4px;position:absolute;right:-7.5px;top:50%;width:8px}.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-left,.tpg-widget-heading-wrapper.heading-style1.center .tpg-widget-heading:before{display:none}.tpg-widget-heading-wrapper.heading-style1.center .tpg-widget-heading-line.line-left{display:block;margin-left:0;margin-right:15px}.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line,.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line-left{-webkit-box-flex:1;align-self:center;border-color:#e5e5e5;border-style:solid;border-width:1px 0;flex-grow:1;height:4px;margin-left:15px}.tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading,.tpg-widget-heading-wrapper.heading-style3 .tpg-widget-heading{background-color:var(--tpg-primary-color,#0d6efd);color:#fff;line-height:1.4;margin-bottom:-.5px;padding:5px 15px}.tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading a,.tpg-widget-heading-wrapper.heading-style3 .tpg-widget-heading a{color:inherit}.tpg-widget-heading-wrapper.center{justify-content:center}.tpg-widget-heading-wrapper.right{flex-direction:row-reverse}.tpg-widget-heading-wrapper.right .tpg-widget-heading{padding-left:15px;padding-right:0}.tpg-widget-heading-wrapper.right .tpg-widget-heading:before{left:0;right:auto}.tpg-widget-heading-wrapper.right .tpg-widget-heading-line{margin-left:0;margin-right:15px}.tpg-el-main-wrapper .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:before,.tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:after{border-left:0 solid transparent;border-bottom:0 solid var(--tpg-primary-color,#0d6efd);border-right:12px solid transparent;border-top:12px solid var(--tpg-primary-color,#0d6efd);content:"";position:absolute;right:-11px;top:0}.section-title-align-center .tpg-el-main-wrapper .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:before,.tpg-widget-heading-wrapper.heading-style2.right .tpg-widget-heading:after{border-width:12px 0 0 12px;left:-11px;right:auto}.tpg-widget-heading-wrapper.heading-style2.center .tpg-widget-heading:after{content:none}.section-title-style-style2 .tpg-header-wrapper.carousel,.section-title-style-style2 .tpg-header-wrapper:not(.carousel) .tpg-widget-heading-wrapper,.section-title-style-style3 .tpg-header-wrapper.carousel,.section-title-style-style3 .tpg-header-wrapper:not(.carousel) .tpg-widget-heading-wrapper{border-bottom:2px solid var(--tpg-primary-color,#0d6efd)}.tpg-even,.tpg-full-height{display:flex;flex-wrap:wrap}@media (max-width:767px){.rt-content-loader .rt-holder,.tpg-even .rt-holder{flex-direction:column}}.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next>*{background-color:#bcbcbc;bottom:auto;color:#fff;cursor:pointer;display:inline-block;font-size:18px;height:30px;line-height:30px;margin-left:1px;margin-right:1px;text-align:center;transition:background-color .2s ease-in-out,color .2s ease-in-out,opacity .2s ease-in-out,visibility .2s ease-in-out;-webkit-transition:background-color .2s ease-in-out,color .2s ease-in-out,opacity .2s ease-in-out,visibility .2s ease-in-out;-ms-transition:background-color .2s ease-in-out,color .2s ease-in-out,opacity .2s ease-in-out,visibility .2s ease-in-out;width:30px}.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next>* i{line-height:1}.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next>.rt-disabled{opacity:.5;pointer-events:none}.rt-cb-page-prev-next{text-align:left}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style .rt-loadmore-loading{color:#fff;left:50%;margin-left:-32px;margin-top:-32px;opacity:0;position:absolute;top:50%;visibility:hidden}.rt-ball-scale-multiple.rt-2x,.rt-ball-scale-multiple.rt-2x>div{height:64px;width:64px}.rt-ball-scale-multiple,.rt-ball-scale-multiple>div{box-sizing:border-box;position:relative}.rt-ball-scale-multiple>div{background-color:currentColor;border:0 solid;display:inline-block;float:none}.rt-ball-scale-multiple>div:nth-child(2){-webkit-animation-delay:.2s;animation-delay:.2s}.rt-ball-scale-multiple>div{-webkit-animation:ball-scale-multiple 1s linear 0s infinite;animation:ball-scale-multiple 1s linear 0s infinite;border-radius:100%;height:32px;left:0;opacity:0;position:absolute;top:0;width:32px}.rt-tpg-container .rt-pagination-wrap{display:inline-block;margin-top:10px;text-align:center;width:100%}.tpg-el-main-wrapper .rt-pagination-wrap{display:flex;flex-direction:row;justify-content:center;margin-top:30px}.tpg-el-main-wrapper .rt-pagination-wrap .rt-pagination{margin:0}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style{cursor:pointer;position:relative;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next.rt-hidden-elm,.rt-tpg-container .rt-pagination-wrap .rt-infinite-action.rt-hidden-elm,.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style.rt-hidden-elm,.rt-tpg-container .rt-pagination-wrap .rt-page-numbers.rt-hidden-elm{display:none!important}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style.rt-lm-loading .rt-loadmore-text{opacity:0;visibility:hidden}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style.rt-lm-loading .rt-loadmore-loading{opacity:1;visibility:visible}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-btn{background-color:var(--tpg-primary-color,#0d6efd);color:#fff;display:inline-block;font-size:13px;letter-spacing:.1em;margin-top:30px;padding:9px 20px 8px;text-decoration:none;text-transform:uppercase;transition:color .2s ease-in-out,background-color .2s ease-in-out;-webkit-transition:color .2s ease-in-out,background-color .2s ease-in-out;-ms-transition:color .2s ease-in-out,background-color .2s ease-in-out}.rt-tpg-container .rt-loadmore-btn:hover{background-color:var(--tpg-secondary-color,#0654c4)}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages{float:none;padding-bottom:.1px;padding-top:.1px}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers.rt-lm-loading{opacity:.5;pointer-events:none}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul{float:none;font-size:0;line-height:0;margin:-2px;text-align:center}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li{border:none;display:inline-block;float:none;font-size:16px;line-height:1.55;min-height:45px;min-width:48px;padding:2px}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li>a{border:1px solid #dee2e6;border-radius:3px;color:#212121;display:block;font-size:16px;font-weight:400;letter-spacing:0;line-height:45px;min-height:45px;min-width:48px;padding-left:8px;padding-right:8px;text-decoration:none}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.active>a{background-color:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd);color:#fff}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.paginationjs-ellipsis{min-width:auto;padding:0}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.paginationjs-ellipsis a{background:none!important;border:none!important;color:#000!important;font-size:18px;min-width:auto;opacity:1;pointer-events:none!important}.rt-pagination{margin:30px 0;text-align:center}.rt-pagination .pagination-list{background:transparent;border-radius:4px;border-top:0;display:inline-block;padding-left:0}.rt-pagination .pagination-list a{box-shadow:none}.rt-pagination .pagination-list>li{display:inline-block;margin:2px}.rt-pagination .pagination-list>li>a,.rt-pagination .pagination-list>li>span{background-color:#fff;border:1px solid #ddd;border-radius:3px;color:#212121;display:block;line-height:45px;margin-left:-1px;min-height:45px;min-width:48px;padding:0 5px;position:relative;text-decoration:none;transition:.4s ease-in-out}.rt-pagination .pagination-list>li>a:focus,.rt-pagination .pagination-list>li>a:hover,.rt-pagination .pagination-list>li>span:focus,.rt-pagination .pagination-list>li>span:hover{background-color:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd);color:#fff;z-index:2}.rt-pagination .pagination-list>.active>a,.rt-pagination .pagination-list>.active>a:focus,.rt-pagination .pagination-list>.active>a:hover,.rt-pagination .pagination-list>.active>span,.rt-pagination .pagination-list>.active>span:focus,.rt-pagination .pagination-list>.active>span:hover{background-color:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd);color:#fff;cursor:default;z-index:3}.rt-pagination .pagination-list>.disabled>a,.rt-pagination .pagination-list>.disabled>a:focus,.rt-pagination .pagination-list>.disabled>a:hover,.rt-pagination .pagination-list>.disabled>span,.rt-pagination .pagination-list>.disabled>span:focus,.rt-pagination .pagination-list>.disabled>span:hover{background-color:#fff;border-color:#ddd;color:#212121;cursor:not-allowed}.rt-tpg-container .swiper-pagination-bullet{background:#d6d6d6;height:10px;opacity:1;width:10px}.rt-tpg-container .swiper-wrapper{padding-bottom:45px}.rt-tpg-container.slider-layout13-main .swiper-wrapper{padding-bottom:0}.rt-tpg-container .swiper-pagination-bullets.swiper-pagination-horizontal{bottom:0}.rt-tpg-container .swiper-pagination-bullet.swiper-pagination-bullet-active-main{background:#007bff}.rt-tpg-container>div{position:relative}.rt-tpg-container .slider-main-wrapper{opacity:0;position:relative}.rt-tpg-container .swiper-navigation .slider-btn{align-items:center;background-color:#fff;background-image:none;border:1px solid #e5e5e5;border-radius:3px;color:#2962ff;display:inline-flex;font-size:14px;height:32px;justify-content:center;position:absolute;transition:all .3s ease;-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;width:34px}.rt-tpg-container .tpg-header-wrapper .swiper-navigation .slider-btn,.slider-arrow-position-top-left .rt-tpg-container .swiper-navigation .slider-btn,.slider-arrow-position-top-right .rt-tpg-container .swiper-navigation .slider-btn{position:static}.rt-tpg-container .swiper-navigation .slider-btn:hover{background-color:#2962ff;border-color:#2962ff;color:#fff}.rt-tpg-container .swiper-navigation .slider-btn:focus{box-shadow:none;outline:0}.rt-tpg-container .swiper-navigation .slider-btn.swiper-button-next{margin-left:3px}.rt-tpg-container .swiper-navigation .swiper-button-next:after,.rt-tpg-container .swiper-navigation .swiper-button-prev:after{font-size:inherit}.rt-tpg-container .tpg-cf-group-title{font-size:16px;margin-bottom:0}.rt-tpg-container .tpg-cf-fields{font-size:95%;line-height:1.6;margin-top:0}.tpg-el-main-wrapper .tpg-cf-wrap{margin:10px 0 0}.rt-tpg-container .tpg-cf-wrap:empty{margin:0}.act-label-style-inline .tgp-cf-field-label{margin-right:8px;min-width:inherit}.act-label-style-inline .tgp-cf-field-label:after{content:":"}.act-label-style-block .tgp-cf-field-label{display:block!important;float:none;margin-right:0;min-width:inherit}.act-label-style-block .tpg-cf-fields{display:block;margin-bottom:5px}.rt-tpg-container .rt-holder .tgp-cf-field-value *{color:inherit;display:inline;margin:0;transition:none}.isotope-term-no-post{min-height:30px}.isotope-term-no-post p{display:none;margin-bottom:0}.tpg-el-main-wrapper.loading{min-height:300px;transition:.4s}.tpg-el-main-wrapper.loading:before{-webkit-animation:ball-clip-rotate .75s linear infinite;animation:ball-clip-rotate .75s linear infinite;background:transparent;border:2px solid;border-bottom:2px solid transparent;border-radius:100%;color:red;display:inline-block;float:none;height:32px;left:50%;position:absolute;top:50%;width:32px;z-index:9999999999}.tpg-shortcode-main-wrapper .even-grid-item,.tpg-shortcode-main-wrapper .masonry-grid-item{margin-bottom:30px}.tpg-shortcode-main-wrapper i{margin-right:5px}.tpg-shortcode-main-wrapper .product-more i{margin-right:0}.tpg-shortcode-main-wrapper .grid_hover1 .even-grid-item,.tpg-shortcode-main-wrapper .grid_hover1 .masonry-grid-item,.tpg-shortcode-main-wrapper .grid_hover2 .even-grid-item,.tpg-shortcode-main-wrapper .grid_hover2 .masonry-grid-item,.tpg-shortcode-main-wrapper .grid_hover3 .even-grid-item,.tpg-shortcode-main-wrapper .grid_hover3 .masonry-grid-item,.tpg-shortcode-main-wrapper .grid_hover4 .even-grid-item,.tpg-shortcode-main-wrapper .grid_hover4 .masonry-grid-item,.tpg-shortcode-main-wrapper .grid_hover5 .even-grid-item,.tpg-shortcode-main-wrapper .grid_hover5 .masonry-grid-item,.tpg-shortcode-main-wrapper .list_layout1 .even-grid-item,.tpg-shortcode-main-wrapper .list_layout1 .masonry-grid-item{margin-bottom:0}.layout3 .rt-img-responsive{display:inline-block}.list_layout2 .post-meta-tags,.list_layout2 .post-meta-user{color:#a5a6aa;font-size:14px}.rt-content-loader.layout14 .post-meta-tags,.rt-content-loader.layout14 .post-meta-user{margin-bottom:0}.offset06 .post-meta-tags span,.offset06 .post-meta-user span{color:#a5a6aa;font-size:14px;font-weight:500;padding-right:15px}.offset06 .post-meta-tags span a,.offset06 .post-meta-user span a{color:#444}.offset06 .post-meta-tags span a:hover,.offset06 .post-meta-user span a:hover{color:#2962ff}.tpg-shortcode-main-wrapper .rt-detail .entry-title a{text-decoration:none}.categories-links{display:inline-block;line-height:1.3}.tpg-shortcode-main-wrapper .rt-holder{overflow:hidden}.tpg-shortcode-main-wrapper .grid_hover6 .rt-grid-item{margin-bottom:4px;overflow:hidden;padding:0 2px}.tpg-shortcode-main-wrapper .grid_hover6 .rt-grid-item .post-img img,.tpg-shortcode-main-wrapper .grid_hover7 .rt-grid-item .post-img img{min-height:350px;-o-object-fit:cover;object-fit:cover}.grid_hover4 .rt-grid-item{padding:0}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-img-holder,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-img-holder,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-img-holder{overflow:hidden;position:relative}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-img-holder img,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-img-holder img,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-img-holder img{max-width:100%;transition:all 1.1s ease}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-img-holder:hover img,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-img-holder:hover img,.tpg-shortcode-main-wrapper .layout1 .img_zoom_out .rt-holder .rt-img-holder img,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-img-holder:hover img{transform:scale(1.1)}.tpg-shortcode-main-wrapper .layout1 .img_no_effect .rt-holder .rt-img-holder:hover img,.tpg-shortcode-main-wrapper .layout1 .img_zoom_out .rt-holder .rt-img-holder:hover img{transform:scale(1)}.tpg-shortcode-main-wrapper .carousel1 .rt-holder,.tpg-shortcode-main-wrapper .isotope1 .rt-holder,.tpg-shortcode-main-wrapper .layout1 .rt-holder{box-shadow:0 0 2px 0 rgba(0,0,0,.3);-webkit-box-shadow:0 0 2px 0 rgba(0,0,0,.3);-moz-box-shadow:0 0 2px 0 rgba(0,0,0,.3)}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail{background:#fff;padding:15px}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail h4,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail h4,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail h4{font-size:26px;font-weight:400;line-height:1.25;margin:0 0 18px}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail.rt-with-title h2,.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail.rt-with-title h3,.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail.rt-with-title h4,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail.rt-with-title h2,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail.rt-with-title h3,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail.rt-with-title h4,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail.rt-with-title h2,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail.rt-with-title h3,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail.rt-with-title h4{margin-bottom:15px}.tpg-shortcode-main-wrapper .rt-holder .rt-detail.rt-with-title{padding-top:0}.tpg-shortcode-main-wrapper .isotope1 .rt-detail .tpg-excerpt,.tpg-shortcode-main-wrapper .layout1 .rt-detail .tpg-excerpt{margin-bottom:20px}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail .post-meta,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail .post-meta,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail .post-meta{line-height:25px;overflow:hidden}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail .read-more a,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail .read-more a,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail .read-more a{border:1px solid hsla(0,0%,80%,.4);color:#1a1a1a;display:inline-block;font-size:15px;line-height:1.8;padding:8px 20px}.tpg-shortcode-main-wrapper .rt-holder .rt-detail .post-meta.right{text-align:right}.tpg-shortcode-main-wrapper .rt-holder .rt-detail .post-meta.center{text-align:center}.tpg-img-circle .rt-img-holder img{border-radius:50%!important}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-img-holder{overflow:hidden;position:relative}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-img-holder img{max-width:100%;transition:all 1.1s ease}.tpg-shortcode-main-wrapper .layout2 .img_zoom_out .rt-holder .rt-img-holder img,.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-img-holder:hover img{transform:scale(1.1)}.tpg-shortcode-main-wrapper .layout2 .img_no_effect .rt-holder .rt-img-holder:hover img,.tpg-shortcode-main-wrapper .layout2 .img_no_effect .rt-holder .rt-img-holder img,.tpg-shortcode-main-wrapper .layout2 .img_zoom_out .rt-holder .rt-img-holder:hover img{transform:scale(1)}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail h4{font-size:26px;font-weight:400;line-height:1.25;margin:0 0 15px}.tpg-shortcode-main-wrapper .layout2 .rt-detail .tpg-excerpt{margin-bottom:20px}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .read-more a{border-radius:5px;display:inline-block;line-height:1.8}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .read-more{display:inline-block;width:100%}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .read-more.right{text-align:right}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .read-more.center{text-align:center}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .rt-tpg-social-share{margin-bottom:15px}@media (max-width:767px){.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail,.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail{padding:15px 0}}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail p{margin-bottom:20px}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail h4{font-size:26px;font-weight:400;line-height:1.25;margin:0 0 18px}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-img-holder .overlay{background:rgba(0,0,0,.7);display:block;height:100%;opacity:0;position:absolute;text-align:center;transition:all .3s ease-out 0s;width:100%;z-index:1}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .read-more a{display:inline-block;line-height:1.8}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-img-holder,.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-img-holder>a.rounded img{border-radius:50%;overflow:hidden}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .read-more{display:inline-block;width:100%}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .read-more.right{text-align:right}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .read-more.center{text-align:center}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .rt-tpg-social-share{margin-bottom:15px}.tpg-shortcode-main-wrapper .carousel2 .rt-holder,.tpg-shortcode-main-wrapper .isotope2 .rt-holder,.tpg-shortcode-main-wrapper .layout5 .rt-holder,.tpg-shortcode-main-wrapper .offset03 .rt-holder{overflow:hidden;position:relative}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay{background:rgba(235,0,0,.8);bottom:0;display:block;height:25%;left:0;min-height:150px;opacity:1;padding:20px;position:absolute;transition:all 1s ease;width:100%;z-index:1}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .rt-detail,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .rt-detail,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .rt-detail{color:#fff;max-height:0;opacity:0;padding:0;transition:all .8s ease-in-out;visibility:hidden}.tpg-shortcode-main-wrapper .carousel2 .rt-holder:hover .overlay .rt-detail,.tpg-shortcode-main-wrapper .isotope2 .rt-holder:hover .overlay .rt-detail,.tpg-shortcode-main-wrapper .layout5 .rt-holder:hover .overlay .rt-detail{max-height:450px;transition:all 1.2s ease-in-out .2s}.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .rt-detail{color:#fff;padding:0 0 15px}.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .rt-detail>:not(.post-meta-user){opacity:0;visibility:hidden}.tpg-shortcode-main-wrapper .offset03 .rt-holder:hover .overlay .rt-detail>:not(.post-meta-user){opacity:1;visibility:visible}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .post-meta-user a,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .post-meta-user a,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .post-meta-user a,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .post-meta-user a{color:#fff}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h2,.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h3,.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h4,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h2,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h3,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h4,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h2,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h3,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h4,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h2,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h3,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h4{color:#fff;font-size:22px;font-weight:400;line-height:1.3;margin:0 0 10px}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h2 a,.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h3 a,.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h4 a,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h2 a,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h3 a,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h4 a,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h2 a,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h3 a,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h4 a,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h2 a,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h3 a,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h4 a{color:#fff}.tpg-shortcode-main-wrapper .carousel2 .rt-holder:hover .overlay,.tpg-shortcode-main-wrapper .isotope2 .rt-holder:hover .overlay,.tpg-shortcode-main-wrapper .layout5 .rt-holder:hover .overlay,.tpg-shortcode-main-wrapper .offset03 .rt-holder:hover .overlay{height:100%;width:100%}.tpg-shortcode-main-wrapper .carousel2 .rt-holder:hover .overlay .rt-detail,.tpg-shortcode-main-wrapper .isotope2 .rt-holder:hover .overlay .rt-detail,.tpg-shortcode-main-wrapper .layout5 .rt-holder:hover .overlay .rt-detail,.tpg-shortcode-main-wrapper .offset03 .rt-holder:hover .overlay .rt-detail{opacity:1;visibility:visible}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .post-meta-user{display:block}.tpg-shortcode-main-wrapper .isotope2 .rt-holder .post-meta,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .post-meta .rt-tpg-social-share{text-align:center}.tpg-shortcode-main-wrapper .isotope2 .rt-holder .post-meta.left{text-align:left}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay>:not(.entry-title),.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .rt-detail,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay>:not(.entry-title){max-height:0;opacity:0;overflow:hidden;transition:.6s!important}.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .overlay>:not(.entry-title),.tpg-shortcode-main-wrapper .layout5 .rt-holder:hover .overlay .rt-detail,.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .overlay>:not(.entry-title){max-height:300px;opacity:1}.tpg-shortcode-main-wrapper .layout5 .rt-holder{display:flex;min-height:250px}.tpg-shortcode-main-wrapper .layout5 .rt-holder .rt-img-responsive{height:100%;-o-object-fit:cover;object-fit:cover}.tpg-shortcode-main-wrapper .carousel3 .rt-holder,.tpg-shortcode-main-wrapper .isotope3 .rt-holder,.tpg-shortcode-main-wrapper .layout6 .rt-holder{position:relative}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay{align-items:center;background:rgba(0,0,0,.7);display:flex;flex-direction:column;height:100%;justify-content:center;opacity:0;padding:15px;position:absolute;text-align:center;text-decoration:none;transition:all .3s ease-out;width:100%;z-index:9}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .line,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .line,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .line{background-color:#fff;height:2px;margin:12px auto;min-height:2px;transition:all .5s ease-out;width:0}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay:hover .line,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay:hover .line,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay:hover .line{width:40%}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h2,.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h3,.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h4,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h2,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h3,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h4,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h2,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h3,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h4{color:#fff;font-size:22px;font-weight:400;line-height:1.25;margin:0 0 18px;padding-top:5%}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h2 a,.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h3 a,.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h4 a,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h2 a,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h3 a,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h4 a,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h2 a,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h3 a,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h4 a{color:#fff}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta.left,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta.left,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta.left{text-align:left}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta.right,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta.right,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta.right{text-align:right}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .rt-tpg-social-share,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .rt-tpg-social-share,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .rt-tpg-social-share{float:none;text-align:center}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .read-more,.tpg-shortcode-main-wrapper .layout6 .rt-holder .read-more{float:none}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta-user{color:#fff}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta-user p,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta-user p,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta-user p{margin-bottom:0}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta-user a,.tpg-shortcode-main-wrapper .carousel3 .rt-holder:hover .overlay .tpg-excerpt,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta-user a,.tpg-shortcode-main-wrapper .isotope3 .rt-holder:hover .overlay .tpg-excerpt,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta-user a,.tpg-shortcode-main-wrapper .layout6 .rt-holder:hover .overlay .tpg-excerpt{color:#fff}.tpg-shortcode-main-wrapper .carousel3 .rt-holder:hover .overlay,.tpg-shortcode-main-wrapper .isotope3 .rt-holder:hover .overlay,.tpg-shortcode-main-wrapper .layout6 .rt-holder:hover .overlay{opacity:1}.tpg-shortcode-main-wrapper .carousel4 .rt-holder,.tpg-shortcode-main-wrapper .isotope4 .rt-holder,.tpg-shortcode-main-wrapper .layout7 .rt-holder{position:relative}.tpg-shortcode-main-wrapper .carousel4 .rt-holder img,.tpg-shortcode-main-wrapper .isotope4 .rt-holder img,.tpg-shortcode-main-wrapper .layout7 .rt-holder img{opacity:.9;transition:opacity .35s}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay{align-items:center;background:rgba(0,0,0,.3);display:flex;flex-direction:column;height:100%;justify-content:center;left:0;padding:0 12px;position:absolute;top:0;width:100%}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay:hover,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay:hover,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay:hover{background:rgba(0,0,0,.5)}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay:before,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay:before,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay:before{border:2px solid #fff;bottom:20px;box-shadow:0 0 0 30px hsla(0,0%,100%,.2);content:"";left:20px;opacity:0;position:absolute;right:20px;top:20px;transform:scale3d(1.4,1.4,1);transition:opacity .35s,transform .35s}.tpg-shortcode-main-wrapper .carousel7 .rt-holder .cat-above-title,.tpg-shortcode-main-wrapper .carousel11 .rt-holder .post-info .cat-above-title,.tpg-shortcode-main-wrapper .carousel12 .rt-holder .post-info .cat-above-title{color:#fff;text-align:center}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .cat-above-title,.tpg-shortcode-main-wrapper .carousel5 .rt-holder .cat-above-title{color:#fff;margin-top:30px;opacity:0;text-align:center}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .cat-above-title a,.tpg-shortcode-main-wrapper .carousel5 .rt-holder .cat-above-title a,.tpg-shortcode-main-wrapper .carousel7 .rt-holder .cat-above-title a,.tpg-shortcode-main-wrapper .carousel8 .rt-holder .cat-above-title *,.tpg-shortcode-main-wrapper .carousel12 .rt-holder .post-info .cat-above-title *{color:inherit}.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .cat-above-title,.tpg-shortcode-main-wrapper .carousel5 .rt-holder:hover .cat-above-title{opacity:1}.tpg-shortcode-main-wrapper .carousel5 .rt-holder:hover .cat-above-title+.entry-title,.tpg-shortcode-main-wrapper .carousel11 .rt-holder .post-info .cat-above-title,.tpg-shortcode-main-wrapper .carousel12 .rt-holder .post-info .cat-above-title{padding-top:10px}.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .cat-above-title+.entry-title{margin-top:10px}.tpg-shortcode-main-wrapper .carousel4 .rt-holder h2,.tpg-shortcode-main-wrapper .carousel4 .rt-holder h3,.tpg-shortcode-main-wrapper .carousel4 .rt-holder h4,.tpg-shortcode-main-wrapper .isotope4 .rt-holder h2,.tpg-shortcode-main-wrapper .isotope4 .rt-holder h3,.tpg-shortcode-main-wrapper .isotope4 .rt-holder h4,.tpg-shortcode-main-wrapper .layout7 .rt-holder h2,.tpg-shortcode-main-wrapper .layout7 .rt-holder h3,.tpg-shortcode-main-wrapper .layout7 .rt-holder h4{color:#fff;font-size:22px;font-weight:400;line-height:1.25;margin:30% 0 10px;text-align:center;transition:transform .35s}.tpg-shortcode-main-wrapper .carousel4 .rt-holder h2 a,.tpg-shortcode-main-wrapper .carousel4 .rt-holder h3 a,.tpg-shortcode-main-wrapper .carousel4 .rt-holder h4 a,.tpg-shortcode-main-wrapper .isotope4 .rt-holder h2 a,.tpg-shortcode-main-wrapper .isotope4 .rt-holder h3 a,.tpg-shortcode-main-wrapper .isotope4 .rt-holder h4 a,.tpg-shortcode-main-wrapper .layout7 .rt-holder h2 a,.tpg-shortcode-main-wrapper .layout7 .rt-holder h3 a,.tpg-shortcode-main-wrapper .layout7 .rt-holder h4 a{color:#fff}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .tpg-excerpt,.tpg-shortcode-main-wrapper .carousel4 .rt-holder p,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .tpg-excerpt,.tpg-shortcode-main-wrapper .isotope4 .rt-holder p,.tpg-shortcode-main-wrapper .layout7 .rt-holder .tpg-excerpt,.tpg-shortcode-main-wrapper .layout7 .rt-holder p{color:#fff;opacity:0;padding:0 15px;text-align:center;transform:scale(1.5);transition:opacity .35s,transform .35s}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .post-meta-user p,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .post-meta-user p,.tpg-shortcode-main-wrapper .layout7 .rt-holder .post-meta-user p{margin-bottom:0}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .post-meta-user a,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .post-meta-user a,.tpg-shortcode-main-wrapper .layout7 .rt-holder .post-meta-user a{color:#fff}.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover h3,.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover h3,.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover h3{margin:7% 0 10px;transform:scale(.9)}.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .overlay:before,.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .tpg-excerpt,.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover p,.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover .overlay:before,.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover .tpg-excerpt,.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover p,.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .overlay:before,.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .tpg-excerpt,.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover p{opacity:1;transform:scaleX(1)}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay .post-meta,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay .post-meta,.tpg-shortcode-main-wrapper .layout7 .rt-holder .cat-above-title,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .post-meta{color:#fff;opacity:0;overflow:hidden;text-align:center}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay .post-meta.left,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay .post-meta.left,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .post-meta.left{text-align:left}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay .post-meta.right,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay .post-meta.right,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .post-meta.right{text-align:right}.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .overlay .post-meta,.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover .overlay .post-meta,.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .cat-above-title,.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .overlay .post-meta{opacity:1;transform:scale(1);transition:opacity .35s,transform .35s}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay .rt-tpg-social-share,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay .rt-tpg-social-share,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .rt-tpg-social-share{float:none;text-align:center}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .read-more,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .read-more,.tpg-shortcode-main-wrapper .layout7 .rt-holder .read-more{float:none}.tpg-shortcode-main-wrapper .carousel4 .rt-holder h3,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .entry-title{margin:0!important;transition:.4s}.tpg-shortcode-main-wrapper .carousel8 .rt-holder,.tpg-shortcode-main-wrapper .isotope8 .rt-holder,.tpg-shortcode-main-wrapper .layout12 .rt-holder{background:#fff;box-shadow:0 1px 2px 0 rgba(0,0,0,.22)}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-img-holder,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-img-holder,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-img-holder{overflow:hidden;position:relative}.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover img,.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover img,.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover img{transform:scale(1.05);-webkit-transform:scale(1.05);-moz-transform:scale(1.05);-ms-transform:scale(1.05);-o-transform:scale(1.05);-webkit-transition:all .25s ease-in-out}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail{background:#fff;display:inline-block;padding:25px;transition:all .3s ease-out 0s;width:100%}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail.rt-with-title,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail.rt-with-title,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail.rt-with-title{padding-bottom:0;padding-top:0}.tpg-shortcode-main-wrapper .carousel8 .rt-holder.rt-with-title-below h2.entry-title,.tpg-shortcode-main-wrapper .carousel8 .rt-holder.rt-with-title-below h3.entry-title,.tpg-shortcode-main-wrapper .carousel8 .rt-holder.rt-with-title-below h4.entry-title,.tpg-shortcode-main-wrapper .isotope8 .rt-holder.rt-with-title-below h2.entry-title,.tpg-shortcode-main-wrapper .isotope8 .rt-holder.rt-with-title-below h3.entry-title,.tpg-shortcode-main-wrapper .isotope8 .rt-holder.rt-with-title-below h4.entry-title,.tpg-shortcode-main-wrapper .layout12 .rt-holder.rt-with-title-below h2.entry-title,.tpg-shortcode-main-wrapper .layout12 .rt-holder.rt-with-title-below h3.entry-title,.tpg-shortcode-main-wrapper .layout12 .rt-holder.rt-with-title-below h4.entry-title{margin-top:0}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail.rt-with-title .entry-title,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail.rt-with-title .entry-title,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail.rt-with-title .entry-title{display:inline-block}.tpg-shortcode-main-wrapper .carousel8 .rt-holder.rt-with-title .post-meta-user,.tpg-shortcode-main-wrapper .isotope8 .rt-holder.rt-with-title .post-meta-user,.tpg-shortcode-main-wrapper .layout12 .rt-holder.rt-with-title .post-meta-user{margin-bottom:15px}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h4,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h4,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h4{font-size:22px;font-weight:400;line-height:1.25;margin:15px 0}.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h4{font-weight:500}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h2 a,.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h3 a,.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h4 a,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h2 a,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h3 a,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h4 a,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h2 a,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h3 a,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h4 a{color:#000}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h2 a:hover,.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h3 a:hover,.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h4 a:hover,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h2 a:hover,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h3 a:hover,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h4 a:hover,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h2 a:hover,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h3 a:hover,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h4 a:hover{color:#fff}.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail{flex-grow:1}.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail,.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail,.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover .rt-detail{background:#0850d0;color:#fff}.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail a,.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail a,.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover .rt-detail a{color:#fff}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail .read-more,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail .read-more,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail .read-more{text-align:right}.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail .post-meta-user,.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail .post-meta-user .meta-data,.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail .post-meta-user a,.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail .post-meta-user i[class^=fa],.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail h3 a,.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail .post-meta-user,.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail .post-meta-user .meta-data,.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail .post-meta-user a,.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail .post-meta-user i[class^=fa],.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover .rt-detail .post-meta-user,.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover .rt-detail .post-meta-user a,.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover .rt-detail i{color:#fff!important}@media (min-width:992px){.rt-container{width:970px}}@media (min-width:1200px){.rt-container{width:1170px}}@media (max-width:767px){.hidden-xs{display:none!important}}@media screen and (max-width:768px){.rt-member-description-container,.rt-member-feature-img{float:none;width:100%}}@media (min-width:768px){.rt-col-sm-1,.rt-col-sm-2,.rt-col-sm-3,.rt-col-sm-4,.rt-col-sm-5,.rt-col-sm-6,.rt-col-sm-7,.rt-col-sm-8,.rt-col-sm-9,.rt-col-sm-10,.rt-col-sm-11,.rt-col-sm-12,.rt-col-sm-24{float:left}.rt-col-sm-24{width:20%}.rt-col-sm-12{width:100%}.rt-col-sm-11{width:91.66666667%}.rt-col-sm-10{width:83.33333333%}.rt-col-sm-9{width:75%}.rt-col-sm-8{width:66.66666667%}.rt-col-sm-7{width:58.33333333%}.rt-col-sm-6{width:50%}.rt-col-sm-5{width:41.66666667%}.rt-col-sm-4{width:33.33333333%}.rt-col-sm-3{width:25%}.rt-col-sm-2{width:16.66666667%}.rt-col-sm-1{width:8.33333333%}}@media (min-width:992px){.rt-col-md-1,.rt-col-md-2,.rt-col-md-3,.rt-col-md-4,.rt-col-md-5,.rt-col-md-6,.rt-col-md-7,.rt-col-md-8,.rt-col-md-9,.rt-col-md-10,.rt-col-md-11,.rt-col-md-12,.rt-col-md-24{float:left}.rt-col-md-24{width:20%}.rt-col-md-12{width:100%}.rt-col-md-11{width:91.66666667%}.rt-col-md-10{width:83.33333333%}.rt-col-md-9{width:75%}.rt-col-md-8{width:66.66666667%}.rt-col-md-7{width:58.33333333%}.rt-col-md-6{width:50%}.rt-col-md-5{width:41.66666667%}.rt-col-md-4{width:33.33333333%}.rt-col-md-3{width:25%}.rt-col-md-2{width:16.66666667%}.rt-col-md-1{width:8.33333333%}}@media (min-width:1200px){.rt-col-lg-1,.rt-col-lg-2,.rt-col-lg-3,.rt-col-lg-4,.rt-col-lg-5,.rt-col-lg-6,.rt-col-lg-7,.rt-col-lg-8,.rt-col-lg-9,.rt-col-lg-10,.rt-col-lg-11,.rt-col-lg-12{float:left}.rt-col-lg-24{width:20%}.rt-col-lg-12{width:100%}.rt-col-lg-11{width:91.66666667%}.rt-col-lg-10{width:83.33333333%}.rt-col-lg-9{width:75%}.rt-col-lg-8{width:66.66666667%}.rt-col-lg-7{width:58.33333333%}.rt-col-lg-6{width:50%}.rt-col-lg-5{width:41.66666667%}.rt-col-lg-4{width:33.33333333%}.rt-col-lg-3{width:25%}.rt-col-lg-2{width:16.66666667%}.rt-col-lg-1{width:8.33333333%}}.rt-img-holder{overflow:hidden}.layout4 .rt-img-holder,.layout4 .rt-img-holder a,.layout4 .rt-img-holder img{height:100%}.img_zoom_in img.rt-img-responsive,.img_zoom_out img.rt-img-responsive{min-width:100%;transition:all 1s!important}.img_zoom_in:hover img.rt-img-responsive,.img_zoom_out img.rt-img-responsive{transform:scale(1.2)!important}.img_zoom_out:hover img.rt-img-responsive{transform:scale(1)!important}.tpg-shortcode-main-wrapper .img_no_effect:hover img.rt-img-responsive{transform:none}.tpg-even .rt-holder{display:flex;height:100%}.tpg-even.edd1 .rt-holder,.tpg-even.layout1 .rt-holder,.tpg-even.layout12 .rt-holder,.tpg-even.offset01 .offset-big .rt-holder,.tpg-even.offset02 .offset-big .rt-holder{flex-direction:column}.tpg-even.edd1 .rt-holder .rt-img-holder,.tpg-even.layout1 .rt-holder .rt-img-holder,.tpg-even.layout11 .rt-holder .rt-img-holder,.tpg-even.layout11 .rt-holder .rt-img-holder *{height:auto}@media (min-width:768px) and (max-width:991px){.tpg-even.layout4 .even-grid-item:nth-of-type(4n+2) .rt-holder [class*=rt-col]:first-child,.tpg-even.layout4 .even-grid-item:nth-of-type(4n+3) .rt-holder [class*=rt-col]:first-child{order:2}}@media (max-width:767px){.tpg-even.layout4 .even-grid-item .rt-holder .layoutInner-img{order:-1!important}}.tpg-shortcode-main-wrapper .rt-holder .overlay,.tpg-shortcode-main-wrapper .rt-holder .overlay>a[data-id],.tpg-shortcode-main-wrapper .rt-holder>a[data-id]{width:100%}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay,.tpg-shortcode-main-wrapper .carousel5 .rt-holder .overlay,.tpg-shortcode-main-wrapper .carousel7 .rt-holder .overlay .post-info,.tpg-shortcode-main-wrapper .carousel11 .rt-holder .overlay .post-info .tpg-shortcode-main-wrapper .layout13 .rt-holder .overlay .post-info,.tpg-shortcode-main-wrapper .carousel11 .rt-holder .post-info,.tpg-shortcode-main-wrapper .carousel12 .rt-holder .post-info,.tpg-shortcode-main-wrapper .isotope2 .rt-holder:hover .overlay,.tpg-shortcode-main-wrapper .isotope5 .rt-holder .overlay,.tpg-shortcode-main-wrapper .isotope7 .rt-holder .post-info,.tpg-shortcode-main-wrapper .isotope9 .rt-holder .overlay .post-info,.tpg-shortcode-main-wrapper .isotope11 .rt-holder .overlay .post-info,.tpg-shortcode-main-wrapper .isotope12 .rt-holder .post-info,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay,.tpg-shortcode-main-wrapper .layout8 .rt-holder .overlay,.tpg-shortcode-main-wrapper .layout10 .rt-holder .overlay .post-info,.tpg-shortcode-main-wrapper .layout15 .rt-holder .overlay .post-info,.tpg-shortcode-main-wrapper .layout16 .rt-holder .overlay .post-info{display:flex;flex-direction:column;justify-content:center}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .read-more a,.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .read-more a,.tpg-shortcode-main-wrapper .carousel4 .rt-holder .read-more a,.tpg-shortcode-main-wrapper .carousel5 .rt-holder .overlay .post-info .read-more a,.tpg-shortcode-main-wrapper .carousel7 .rt-holder .overlay .post-info .read-more a,.tpg-shortcode-main-wrapper .carousel9 .rt-holder .overlay .post-info .read-more a,.tpg-shortcode-main-wrapper .carousel11 .rt-holder .post-info .read-more a,.tpg-shortcode-main-wrapper .carousel12 .rt-holder .post-info .read-more a,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .post-meta .read-more a,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .read-more a,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .post-meta .read-more a,.tpg-shortcode-main-wrapper .isotope5 .rt-holder .overlay .post-meta .read-more a,.tpg-shortcode-main-wrapper .isotope9 .rt-holder .overlay .post-info .read-more a,.tpg-shortcode-main-wrapper .isotope11 .rt-holder .overlay .post-info .read-more a,.tpg-shortcode-main-wrapper .isotope12 .rt-holder .post-info .read-more a,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .read-more a,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .read-more a,.tpg-shortcode-main-wrapper .layout7 .rt-holder .read-more a,.tpg-shortcode-main-wrapper .layout8 .rt-holder .read-more a,.tpg-shortcode-main-wrapper .layout10 .rt-holder .read-more a,.tpg-shortcode-main-wrapper .layout13 .rt-holder .read-more a,.tpg-shortcode-main-wrapper .layout15 .rt-holder .read-more a,.tpg-shortcode-main-wrapper .layout16 .rt-holder .read-more a,.tpg-shortcode-main-wrapper .offset03 .rt-holder .post-meta .read-more a{border:1px solid hsla(0,0%,100%,.4);padding:8px 15px}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta,.tpg-shortcode-main-wrapper .isotope12 .rt-holder .post-info .post-meta .rt-tpg-social-share,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta{color:#fff;overflow:hidden;text-align:center}
|
assets/css/tpg-shortcode.rtl.min.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
body .tpg-el-main-wrapper .rt-grid-item{padding:0 15px}body .elementor-section .tpg-el-main-wrapper .rt-grid-item{background:none}body .elementor-section .tpg-el-main-wrapper .offset-left,body .elementor-section .tpg-el-main-wrapper .offset-right{padding-bottom:0}.rt-tpg-container a{text-decoration:none}.rt-model-open,body.rt-model-open,html.rt-model-open{overflow:hidden}.rt-tpg-container img{height:auto;max-width:100%}.rt-tpg-container *{box-sizing:border-box}.entry .rt-tpg-container .entry-title:before{content:none}.rt-tpg-container .entry{margin-top:0}.rt-tpg-container :after,.rt-tpg-container :before{box-sizing:border-box}.rt-container,.rt-container-fluid{margin-right:auto;margin-left:auto;padding-right:15px;padding-left:15px}.rt-container-fluid.slider-layout13-main{padding:0 0 15px}.rt-tpg-container ul{margin:0}img,svg{vertical-align:middle}a:link,a:visited{transition:all .31s ease}.clearfix:after,.clearfix:before,.rt-container-fluid:after,.rt-container-fluid:before,.rt-row:after,.rt-row:before{content:" ";display:table}.clearfix:after,.rt-container-fluid:after,.rt-container:after,.rt-row:after{clear:both}.rt-row{margin-right:-15px;margin-left:-15px}.grid-layout2.rt-row{margin-right:0;margin-left:0}.rt-row>.rt-row{padding-right:15px;padding-left:15px}.grid_hover6.rt-row{margin-right:-2px;margin-left:-2px}.rt-col-lg-1,.rt-col-lg-2,.rt-col-lg-3,.rt-col-lg-4,.rt-col-lg-5,.rt-col-lg-6,.rt-col-lg-7,.rt-col-lg-8,.rt-col-lg-9,.rt-col-lg-10,.rt-col-lg-11,.rt-col-lg-12,.rt-col-lg-24,.rt-col-md-1,.rt-col-md-2,.rt-col-md-3,.rt-col-md-4,.rt-col-md-5,.rt-col-md-6,.rt-col-md-7,.rt-col-md-8,.rt-col-md-9,.rt-col-md-10,.rt-col-md-11,.rt-col-md-12,.rt-col-md-24,.rt-col-sm-1,.rt-col-sm-2,.rt-col-sm-3,.rt-col-sm-4,.rt-col-sm-5,.rt-col-sm-6,.rt-col-sm-7,.rt-col-sm-8,.rt-col-sm-9,.rt-col-sm-10,.rt-col-sm-11,.rt-col-sm-12,.rt-col-sm-24,.rt-col-xs-1,.rt-col-xs-2,.rt-col-xs-3,.rt-col-xs-4,.rt-col-xs-5,.rt-col-xs-6,.rt-col-xs-7,.rt-col-xs-8,.rt-col-xs-9,.rt-col-xs-10,.rt-col-xs-11,.rt-col-xs-12,.rt-col-xs-24{min-height:1px;padding-right:15px;padding-left:15px;position:relative}.rt-col-xs-1,.rt-col-xs-2,.rt-col-xs-3,.rt-col-xs-4,.rt-col-xs-5,.rt-col-xs-6,.rt-col-xs-7,.rt-col-xs-8,.rt-col-xs-9,.rt-col-xs-10,.rt-col-xs-11,.rt-col-xs-12,.rt-col-xs-24{float:right}.rt-col-xs-24{width:20%}.rt-col-xs-12{width:100%}.rt-col-xs-11{width:91.66666667%}.rt-col-xs-10{width:83.33333333%}.rt-col-xs-9{width:75%}.rt-col-xs-8{width:66.66666667%}.rt-col-xs-7{width:58.33333333%}.rt-col-xs-6{width:50%}.rt-col-xs-5{width:41.66666667%}.rt-col-xs-4{width:33.33333333%}.rt-col-xs-3{width:25%}.rt-col-xs-2{width:16.66666667%}.rt-col-xs-1{width:8.33333333%}#rt-main{margin:35px auto}.rt-tpg-container h3.entry-title{line-height:1.25;margin:0 0 12px}.rt-tpg-container .offset-small-wrap .rt-holder .overlay{min-height:60px!important}.rt-tpg-container .offset-small-wrap .rt-holder .rt-img-responsive{height:auto;-o-object-fit:cover;object-fit:cover;width:100%}.rt-tpg-container .offset-small-wrap .rt-col-md-6 .rt-holder .rt-img-responsive{height:auto}.rt-tpg-container .offset-small-wrap .rt-holder .overlay h3 a{-webkit-line-clamp:1!important;-webkit-box-orient:vertical;display:-webkit-box!important;overflow:hidden!important;text-overflow:ellipsis!important}.rt-tpg-container .offset-big .post-meta-user.above_title{margin-top:15px}.rt-tpg-container .offset-big .post-meta-user.above_title+h3.entry-title{margin-top:0}.rt-tpg-container .offset-big h3.entry-title{margin:20px 0 15px}.rt-tpg-container .offset-big .cat-above-title{margin-bottom:-15px;padding-top:10px}.rt-tpg-container .owl-controls .owl-dots{margin-top:15px}.rt-popup-content .rt-tpg-container i{margin-left:5px}.rt-popup-content ol,.rt-popup-content ul{list-style-position:inside}.paginationjs{box-sizing:initial;font-family:Marmelad,Lucida Grande,Arial,Hiragino Sans GB,Georgia,sans-serif;font-size:14px;line-height:1.6}.paginationjs:after{clear:both;content:" ";display:table}.paginationjs .paginationjs-pages{float:right}.paginationjs .paginationjs-pages ul{float:right;margin:0;padding:0}.paginationjs .paginationjs-go-button,.paginationjs .paginationjs-go-input,.paginationjs .paginationjs-nav{float:right;font-size:14px;margin-right:10px}.paginationjs .paginationjs-pages li{border:1px solid #aaa;border-left:none;float:right;list-style:none}.paginationjs .paginationjs-pages li>a{background:#fff;color:#333;display:block;font-size:14px;height:28px;line-height:28px;min-width:30px;text-align:center;text-decoration:none}.paginationjs .paginationjs-pages li:hover>a{background:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd)!important;color:#fff!important}.paginationjs .paginationjs-pages li.active{border:none}.paginationjs .paginationjs-pages li.active>a{background:#aaa;color:#fff;height:30px;line-height:30px}.paginationjs .paginationjs-pages li.disabled>a{opacity:.3}.paginationjs .paginationjs-pages li.disabled>a:hover{background:100% 0}.paginationjs .paginationjs-pages li:first-child,.paginationjs .paginationjs-pages li:first-child>a{border-radius:0 3px 3px 0}.paginationjs .paginationjs-pages li:last-child{border-radius:3px 0 0 3px;border-left:1px solid #aaa}.paginationjs .paginationjs-pages li:last-child>a{border-radius:3px 0 0 3px}.paginationjs .paginationjs-go-input>input[type=text]{box-sizing:initial;height:28px;padding:0;width:30px}.paginationjs .paginationjs-go-button>input[type=button],.paginationjs .paginationjs-go-input>input[type=text]{background:#fff;border:1px solid #aaa;border-radius:3px;box-shadow:none;font-size:14px;outline:0;text-align:center;vertical-align:baseline}.paginationjs .paginationjs-go-button>input[type=button]{color:#333;cursor:pointer;height:30px;line-height:28px;min-width:40px;padding:0 8px;vertical-align:middle\9}.paginationjs.paginationjs-theme-blue .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-blue .paginationjs-pages li{border-color:#289de9}.paginationjs .paginationjs-go-button>input[type=button]:hover{background-color:#f8f8f8}.paginationjs .paginationjs-nav{height:30px;line-height:30px}.paginationjs .paginationjs-go-button,.paginationjs .paginationjs-go-input{margin-right:5px\9}.paginationjs.paginationjs-small{font-size:12px}.paginationjs.paginationjs-small .paginationjs-pages li>a{font-size:12px;height:24px;line-height:24px;min-width:26px}.paginationjs.paginationjs-small .paginationjs-pages li.active>a{height:26px;line-height:26px}.paginationjs.paginationjs-small .paginationjs-go-input{font-size:12px}.paginationjs.paginationjs-small .paginationjs-go-input>input[type=text]{font-size:12px;height:24px;width:26px}.paginationjs.paginationjs-small .paginationjs-go-button{font-size:12px}.paginationjs.paginationjs-small .paginationjs-go-button>input[type=button]{font-size:12px;height:26px;line-height:24px;min-width:30px;padding:0 6px}.paginationjs.paginationjs-small .paginationjs-nav{font-size:12px;height:26px;line-height:26px}.paginationjs.paginationjs-big{font-size:16px}.paginationjs.paginationjs-big .paginationjs-pages li>a{font-size:16px;height:34px;line-height:34px;min-width:36px}.paginationjs.paginationjs-big .paginationjs-pages li.active>a{height:36px;line-height:36px}.paginationjs.paginationjs-big .paginationjs-go-input{font-size:16px}.paginationjs.paginationjs-big .paginationjs-go-input>input[type=text]{font-size:16px;height:34px;width:36px}.paginationjs.paginationjs-big .paginationjs-go-button{font-size:16px}.paginationjs.paginationjs-big .paginationjs-go-button>input[type=button]{font-size:16px;height:36px;line-height:34px;min-width:50px;padding:0 12px}.paginationjs.paginationjs-big .paginationjs-nav{font-size:16px;height:36px;line-height:36px}.paginationjs.paginationjs-theme-blue .paginationjs-pages li>a{color:#289de9}.paginationjs.paginationjs-theme-blue .paginationjs-pages li:hover>a{background:#e9f4fc}.paginationjs.paginationjs-theme-blue .paginationjs-pages li.active>a{background:#289de9;color:#fff}.paginationjs.paginationjs-theme-blue .paginationjs-pages li.disabled:hover>a{background:100% 0}.paginationjs.paginationjs-theme-blue .paginationjs-go-button>input[type=button]{background:#289de9;border-color:#289de9;color:#fff}.paginationjs.paginationjs-theme-green .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-green .paginationjs-pages li{border-color:#449d44}.paginationjs.paginationjs-theme-blue .paginationjs-go-button>input[type=button]:hover{background-color:#3ca5ea}.paginationjs.paginationjs-theme-green .paginationjs-pages li>a{color:#449d44}.paginationjs.paginationjs-theme-green .paginationjs-pages li:hover>a{background:#ebf4eb}.paginationjs.paginationjs-theme-green .paginationjs-pages li.active>a{background:#449d44;color:#fff}.paginationjs.paginationjs-theme-green .paginationjs-pages li.disabled:hover>a{background:100% 0}.paginationjs.paginationjs-theme-green .paginationjs-go-button>input[type=button]{background:#449d44;border-color:#449d44;color:#fff}.paginationjs.paginationjs-theme-yellow .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-yellow .paginationjs-pages li{border-color:#ec971f}.paginationjs.paginationjs-theme-green .paginationjs-go-button>input[type=button]:hover{background-color:#55a555}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li>a{color:#ec971f}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li:hover>a{background:#fdf5e9}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li.active>a{background:#ec971f;color:#fff}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li.disabled:hover>a{background:100% 0}.paginationjs.paginationjs-theme-yellow .paginationjs-go-button>input[type=button]{background:#ec971f;border-color:#ec971f;color:#fff}.paginationjs.paginationjs-theme-red .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-red .paginationjs-pages li{border-color:#c9302c}.paginationjs.paginationjs-theme-yellow .paginationjs-go-button>input[type=button]:hover{background-color:#eea135}.paginationjs.paginationjs-theme-red .paginationjs-pages li>a{color:#c9302c}.paginationjs.paginationjs-theme-red .paginationjs-pages li:hover>a{background:#faeaea}.paginationjs.paginationjs-theme-red .paginationjs-pages li.active>a{background:#c9302c;color:#fff}.paginationjs.paginationjs-theme-red .paginationjs-pages li.disabled:hover>a{background:100% 0}.paginationjs.paginationjs-theme-red .paginationjs-go-button>input[type=button]{background:#c9302c;border-color:#c9302c;color:#fff}.paginationjs.paginationjs-theme-red .paginationjs-go-button>input[type=button]:hover{background-color:#ce4541}.paginationjs .paginationjs-pages li.paginationjs-next{border-left:1px solid\9}.paginationjs .paginationjs-go-input>input[type=text]{line-height:28px\9;vertical-align:middle\9}.paginationjs.paginationjs-big .paginationjs-pages li>a{line-height:36px\9}.paginationjs.paginationjs-big .paginationjs-go-input>input[type=text]{height:36px\9;line-height:36px\9}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li:not(.paginationjs-next):not(.paginationjs-prev){display:none}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li{color:#fff}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li>a{background-color:var(--tpg-primary-color,#0d6efd);color:#fff}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li:hover a{background-color:var(--tpg-secondary-color,#0654c4)}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-page:nth-child(2){display:inline-block;pointer-events:none;position:relative}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-page:nth-child(2) a{pointer-events:none;text-indent:-99999px}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-page:nth-child(2):before{content:"\f100";font-family:Font Awesome\ 5 Free;font-weight:900;right:50%;opacity:.5;position:absolute;top:50%;transform:translate(50%,-50%);z-index:99}.ajax-pagination-type-next-prev-yes .rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs ul li.paginationjs-prev+li{display:none!important}.rt-tpg-container button{border:none;padding:10px 15px}.rt-tpg-container .rt-tgp-load-more button{background:#8e8e8e;border-radius:4px}.rt-tpg-container .tpg-wc-product-filter{margin-bottom:15px;padding-left:15px;text-align:left}.rt-img-holder>a{display:block;text-align:center}.rt-img-responsive{display:block;height:auto;max-width:100%;transition:.4s ease-in-out}@media (max-width:991px){.rt-img-holder>a,.rt-img-responsive{width:100%}}.rt-tpg-container .no-margin{margin:0!important;padding:0!important}span.more-loading{background:url(../images/loading.gif) 0 no-repeat;display:inline-block;padding-left:20px}.rt-tgp-load-more,.rt-tgp-scroll-load-more{display:block;margin:30px 0 20px;text-align:center}.post-meta-tags,.post-meta-user{font-size:95%;line-height:1.5;margin-bottom:15px;padding:0}.post-meta-tags span,.post-meta-user span{display:inline-block;padding-left:8px}.post-meta-tags span.rt-separator,.post-meta-user span.rt-separator{display:inline-block;padding-left:5px}.post-meta-user span.comment-link{float:left;padding-left:0;text-align:left}.rt-holder .entry-title a{color:#000}.rt-tpg-container .rt-holder .post-meta.center .read-more{float:none}.rt-tpg-container .rt-holder .post-meta .rt-tpg-social-share{display:block;float:none;margin-bottom:15px;text-align:right;width:100%}.rt-tpg-container .rt-holder .post-meta.center .rt-tpg-social-share,.rt-tpg-container .rt-holder .post-meta.right .rt-tpg-social-share{text-align:right}.rt-tpg-container .rt-holder .read-more a{display:inline-block;font-size:15px;line-height:1.5}.rt-tpg-container .rt-holder .tpg-excerpt{margin-bottom:10px}.rt-tpg-container .tpg-iso-filter{margin:15px 0 45px;text-align:center}.rt-tpg-container .tpg-iso-filter input[type=text]{border-radius:3px;display:inline-block;margin-right:4px;padding:12px 10px}.rt-tpg-container .tpg-iso-filter>div{display:inline-block}.rt-tpg-container .rt-tpg-isotope-buttons .selected{background:var(--tpg-primary-color,#0d6efd)}.rt-tpg-container .rt-tpg-isotope-buttons button{background:#8e8e8e;border:none;border-radius:3px;box-shadow:none!important;color:#fff;font-size:15px;font-weight:400;line-height:1.8;margin:4px;outline:0;padding:8px 20px;text-shadow:none!important;text-transform:none}.rt-tpg-container .tpg-pre-loader{overflow:hidden;position:relative}.rt-tpg-container .rt-loading-overlay{background-color:#fff;height:100%;right:0;opacity:0;position:absolute;top:0;visibility:hidden;width:100%;z-index:1}.rt-tpg-container .rt-loading{color:var(--tpg-primary-color,#0d6efd);right:50%;margin-right:-16px;opacity:0;position:absolute;top:40%;visibility:hidden;z-index:2}.rt-tpg-container .tpg-pre-loader .rt-loading-overlay{opacity:.8;visibility:visible}.tpg-carousel-main .tpg-pre-loader .rt-loading-overlay{opacity:1}.rt-tpg-container .tpg-pre-loader .rt-loading{opacity:1;visibility:visible}.rt-ball-clip-rotate{color:#fff;display:block;font-size:0;height:32px;width:32px}.rt-ball-clip-rotate,.rt-ball-clip-rotate>div{box-sizing:border-box;position:relative}.rt-ball-clip-rotate>div{-webkit-animation:ball-clip-rotate .75s linear infinite;animation:ball-clip-rotate .75s linear infinite;background-color:currentColor;background:transparent;border-radius:100%;border:2px solid;border-bottom:2px solid transparent;display:inline-block;float:none;height:32px;width:32px}.rt-layout-filter-container.rt-clear:after{clear:both;content:"";display:block}.rt-clear::-ms-ticks-after,.rt-clear:after{clear:both;content:"";display:block}.rt-layout-filter-container{font-size:0;line-height:0;margin:-5px -5px 30px;padding:0}.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item{border:1px solid;display:inline-block;margin:4px;padding:8px 10px;transition:.4s}.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item.selected,.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item:hover{background:#222;color:#b4b4b4}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap{padding-left:82px}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .filter-left-wrapper{margin-left:0;position:static;width:100%}.tpg-header-wrapper.carousel{align-items:center;display:flex;margin-bottom:30px;overflow:hidden}.section-title-style-default .tpg-header-wrapper.carousel,.section-title-style-style1 .tpg-header-wrapper.carousel{min-height:36px}.tpg-header-wrapper.carousel .swiper{overflow:hidden}.section-title-style-style2 .tpg-header-wrapper.carousel .swiper,.section-title-style-style3 .tpg-header-wrapper.carousel .swiper{height:51px;margin-bottom:-.5px}.tpg-header-wrapper.carousel .swiper .swiper-navigation{position:absolute;left:0;top:50%;transform:translateY(-50%);z-index:9}.tpg-header-wrapper.carousel .swiper .swiper-button-next,.tpg-header-wrapper.carousel .swiper .swiper-button-prev{margin-top:0;top:0}.tpg-header-wrapper.carousel .tpg-widget-heading-wrapper{flex:1;margin:0;padding-left:10px}.tpg-header-wrapper.carousel .rt-layout-filter-container{flex:0 0 60%;margin:0;max-width:60%}.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper{box-sizing:content-box;display:flex;height:100%;margin:0;position:relative;transition-property:transform;width:100%;z-index:1}.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide{align-items:center;border:none;color:#212121;display:flex;font-size:15px;height:auto;justify-content:center;margin:0;padding:0 10px;position:relative;text-align:center;text-transform:none;width:auto}.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:before,.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:before{border-bottom:7px solid var(--tpg-primary-color,#0d6efd);border-right:7px solid transparent;border-left:7px solid transparent;border-top:0 solid transparent;bottom:0;content:"";height:0;right:50%;opacity:0;position:absolute;transform:translateX(50%);transition:all .3s ease;visibility:hidden;width:0}.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected:before,.section-title-style-style2 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover:before,.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected:before,.section-title-style-style3 .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover:before{opacity:1;visibility:visible}.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide.selected,.tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide:hover{color:var(--tpg-primary-color,#0d6efd)}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .filter-right-wrapper,.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .rt-author-filter{display:none}.tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.swiper-wrapper{letter-spacing:0}.tpg-header-wrapper.carousel .swiper-button-next.swiper-button-disabled,.tpg-header-wrapper.carousel .swiper-button-prev.swiper-button-disabled{opacity:1}.tpg-header-wrapper.carousel .swiper-button-next.swiper-button-disabled:after,.tpg-header-wrapper.carousel .swiper-button-prev.swiper-button-disabled:after{opacity:.35}.filter-button-border-enable .tpg-header-wrapper.carousel .rt-layout-filter-container{border:1px solid #ddd;border-radius:3px}.filter-button-border-enable .tpg-header-wrapper.carousel .rt-filter-item-wrap.swiper-wrapper .swiper-slide{padding:6px 15px;white-space:nowrap}.filter-button-border-enable .tpg-header-wrapper.carousel .swiper .swiper-navigation{left:3px}.filter-nex-prev-btn-hidden .tpg-header-wrapper.carousel .swiper .swiper-navigation{display:none}.filter-nex-prev-btn-hidden .tpg-header-wrapper.carousel .rt-layout-filter-container .rt-filter-wrap{margin-left:0}@media (max-width:767px){.tpg-header-wrapper.carousel{display:block}.tpg-header-wrapper.carousel .rt-layout-filter-container{margin-bottom:8px;margin-right:-9px;margin-top:10px;max-width:100%;position:relative}}.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item.selected,.rt-filter-item-wrap.rt-filter-button-wrap span.rt-filter-button-item:hover{background:none;color:#000}.rt-filter-item-wrap.rt-order-by-action,.rt-filter-item-wrap.rt-sort-order-action{float:left}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap{color:#666;cursor:pointer;display:inline-block;font-size:13px;letter-spacing:.1em;line-height:1.55;margin:4px;padding:8px 10px;position:relative;text-transform:uppercase;transition:background-color .2s ease-in-out,color .2s ease-in-out,border-color .2s ease-in-out;-webkit-transition:background-color .2s ease-in-out,color .2s ease-in-out,border-color .2s ease-in-out;-ms-transition:background-color .2s ease-in-out,color .2s ease-in-out,border-color .2s ease-in-out;-ms-user-select:none;user-select:none;-webkit-user-select:none;-moz-user-select:none;vertical-align:top}.rt-layout-filter-container .rt-filter-wrap .rt-filter-button-wrap{margin-right:0;margin-top:0;padding:0}@media (max-width:767px){.rt-layout-filter-container .rt-filter-wrap .rt-filter-button-wrap{display:inline}}.rt-layout-filter-container .rt-filter-wrap .rt-filter-button-item .rt-filter-sub-tax{display:none}.rt-layout-filter-container .rt-filter-sub-tax.sub-button-group{margin:0 4px}.rt-layout-filter-container .rt-filter-sub-tax.sub-button-group .rt-filter-button-item{cursor:pointer}.rt-layout-filter-container>.rt-filter-sub-tax.sub-button-group>span{border:1px solid;display:inline-block;font-size:13px;letter-spacing:.1em;line-height:1.55;margin:4px;padding:8px 10px;text-transform:uppercase;vertical-align:top}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap{border:1px solid #666;color:#666;position:relative}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap:hover{border-color:#222;color:#222}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-sort-order-action:hover{border-color:#222}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap>.rt-filter-dropdown-default{display:block;max-width:135px;min-width:135px;overflow:hidden;text-align:center;text-overflow:ellipsis;white-space:nowrap}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown{background-color:#222;border:none;border-top:1px solid transparent;display:block;right:-1px;margin-top:1px;opacity:0;position:absolute;left:-1px;top:100%;transition:opacity .3s ease-in-out,visibility .3s ease-in-out;-webkit-transition:opacity .3s ease-in-out,visibility .3s ease-in-out;-ms-transition:opacity .3s ease-in-out,visibility .3s ease-in-out;visibility:hidden;z-index:20}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap:hover .rt-filter-dropdown{border-top-color:#000}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown .rt-filter-dropdown-item.selected{background:#000}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap.active-dropdown .rt-filter-dropdown{opacity:1;visibility:visible}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap.active-dropdown .rt-arrow-angle{transform:rotate(-180deg);-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg)}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-filter-dropdown .rt-filter-dropdown-item{border-bottom:1px solid rgba(0,0,0,.2);color:#b4b4b4;display:block;padding:10px 15px 9px;text-align:center}.rt-filter-dropdown-default .sub-dropdown-wrap,.rt-filter-dropdown-item .sub-dropdown-wrap{display:none!important}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap .rt-arrow-angle{backface-visibility:hidden;-webkit-backface-visibility:hidden;letter-spacing:0;transition:transform .2s ease-in-out;-webkit-transition:transform .2s ease-in-out;-ms-transition:transform .2s ease-in-out}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-sort-order-action{border:1px solid #666;color:#666;min-width:38px;position:relative}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow{position:static}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span{backface-visibility:hidden;-webkit-backface-visibility:hidden;display:block;height:8px;right:50%;margin-right:-7px;margin-top:-4px;position:absolute;top:50%;transition:transform .2s ease-in-out;-webkit-transition:transform .2s ease-in-out;-ms-transition:transform .2s ease-in-out;width:14px}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow[data-sort-order=ASC]>span{transform:rotate(-180deg);-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg)}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span:before{right:3px;transform:rotate(45deg);-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg)}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span:after,.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span:before{background-color:#666;content:"";display:block;height:9px;position:absolute;top:0;transition:background-color .2s ease-in-out;-webkit-transition:background-color .2s ease-in-out;-ms-transition:background-color .2s ease-in-out;width:2px}.rt-filter-item-wrap.rt-sort-order-action .rt-sort-order-action-arrow>span:after{right:9px;transform:rotate(-45deg);-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg)}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-search-filter-wrap{float:left;padding:0;position:relative}.rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:1px solid #666;color:#666;font-family:Dosis,sans-serif;font-size:12px;font-weight:600;height:39px;padding:11px}.rt-filter-item-wrap.rt-search-filter-wrap input.rt-search-input:focus{box-shadow:none;outline:none}.rt-filter-item-wrap.rt-search-filter-wrap span.rt-action{cursor:pointer;display:inline-block;font-size:15px;position:absolute;left:5px;top:6px}.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input::-webkit-input-placeholder{font-family:Dosis,sans-serif;font-size:12px;font-weight:600}.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input::-moz-placeholder{font-family:Dosis,sans-serif;font-size:12px;font-weight:600}.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input:-ms-input-placeholder{font-family:Dosis,sans-serif;font-size:12px;font-weight:600}.rt-filter-item-wrap.rt-search-filter-wrap .rt-search-input:-moz-placeholder{font-family:Dosis,sans-serif;font-size:12px;font-weight:600}@media (max-width:600px){.rt-filter-item-wrap.rt-tax-filter.rt-filter-dropdown-wrap{display:block;margin-bottom:10px}.rt-layout-filter-container .rt-filter-wrap .rt-filter-item-wrap.rt-filter-dropdown-wrap>.rt-filter-dropdown-default{margin:0 auto}}.rt-tpg-social-share.a{position:relative}body>.rt-tooltip{background:#666;border-radius:3px;border-width:2px;-o-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa;color:#fff;font-size:100%;opacity:0;padding:5px 10px;pointer-events:none;position:absolute;transition:opacity 1s ease-in-out;z-index:9999}body>.rt-tooltip .rt-tooltip-content{font-size:90%}body>.rt-tooltip,body>.rt-tooltip .rt-tooltip-bottom:after{background:#000;border-radius:2px}body>.rt-tooltip .rt-tooltip-bottom{bottom:-16px;height:18px;right:50%;margin-right:-32px;overflow:hidden;position:absolute;width:70px}body>.rt-tooltip .rt-tooltip-bottom:after{tranform:rotate(45deg);content:"";height:25px;right:20px;position:absolute;top:-20px;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);width:25px}.rt-tpg-container .rt-holder .rt-img-holder{overflow:hidden;position:relative}.rt-tpg-container .rt-holder .tpg-el-image-wrap{margin:-15px -15px 15px}.rt-tpg-container .list-behaviour .rt-holder .tpg-el-image-wrap{margin:0}.rt-tpg-container .img_zoom_out .rt-holder .rt-img-holder img:not(.avatar),.rt-tpg-container .rt-holder:hover .rt-img-holder img:not(.avatar){transform:scale(1.1)}.rt-tpg-container .img_no_effect .rt-holder:hover .rt-img-holder img,.rt-tpg-container .img_zoom_out .rt-holder:hover .rt-img-holder img{transform:scale(1)}.rt-tpg-container .rt-holder .rt-detail{padding:15px 15px 0}.rt-tpg-container .entry-title-wrapper .entry-title{font-size:26px;font-weight:500;line-height:1.25;margin:0 0 18px}@media (max-width:767px){.rt-tpg-container .entry-title-wrapper .entry-title{font-size:20px;margin:0 0 15px}}.rt-tpg-container .rt-detail .tpg-excerpt-inner,.rt-tpg-container .rt-holder .rt-detail .entry-title-wrapper{margin-bottom:15px}.rt-tpg-container .list-layout2 .rt-detail .tpg-excerpt-inner,.rt-tpg-container .list-layout3 .rt-detail .tpg-excerpt-inner{margin-bottom:0}.rt-tpg-container .rt-holder .rt-detail .post-meta{line-height:25px;overflow:hidden}.rt-tpg-container .rt-holder .rt-detail .read-more a{align-items:center;border:1px solid hsla(0,0%,80%,.4);display:inline-flex;flex-direction:row;flex-wrap:wrap;font-size:15px;justify-content:left;line-height:1.8;overflow:hidden;padding:8px 20px}.rt-tpg-container .rt-holder .rt-detail .read-more a:hover{border-color:#7a64f2;color:#7a64f2}.rt-tpg-container .rt-holder .rt-detail .read-more a{color:#1a1a1a}.rt-tpg-container .rt-holder .rt-detail .post-meta.right{text-align:left}.rt-tpg-container .rt-holder .rt-detail .post-meta.center{text-align:center}@-webkit-keyframes ball-scale-multiple{0%{opacity:0;transform:scale(0)}5%{opacity:.75}to{opacity:0;transform:scale(1)}}@keyframes ball-scale-multiple{0%{opacity:0;transform:scale(0)}5%{opacity:.75}to{opacity:0;transform:scale(1)}}@-webkit-keyframes ball-clip-rotate{0%{transform:rotate(0deg)}50%{transform:rotate(-180deg)}to{transform:rotate(-1turn)}}@keyframes ball-clip-rotate{0%{transform:rotate(0deg)}50%{transform:rotate(-180deg)}to{transform:rotate(-1turn)}}.rt-container-fluid{position:relative}#bottom-script-loader{background:hsla(0,0%,100%,.95);height:calc(100% + 60px);margin:-30px;position:absolute;width:calc(100% + 60px);z-index:999}#bottom-script-loader .rt-ball-clip-rotate{color:var(--tpg-primary-color,#0d6efd);margin-left:-16px;position:absolute;left:50%;top:80px;z-index:2}.tpg-widget-heading-wrapper{display:flex;margin-bottom:30px;position:relative}.tpg-widget-heading-wrapper .tpg-widget-heading{line-height:1;margin-bottom:-1px;margin-top:0;padding-left:15px;padding-top:0;position:relative}.search .tpg-widget-heading-wrapper .tpg-widget-heading{line-height:1.5}@meia (max-width: 767px){.tpg-widget-heading-wrapper .tpg-widget-heading{line-height:1.2}}.tpg-widget-heading-wrapper.center .tpg-widget-heading{margin:0;padding:0}.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading:before{background-color:var(--tpg-primary-color,#0d6efd);border-radius:50%;content:"";display:inline-block;height:8px;margin-left:7px;margin-top:-4px;position:absolute;left:-7.5px;top:50%;width:8px}.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line.line-left,.tpg-widget-heading-wrapper.heading-style1.center .tpg-widget-heading:before{display:none}.tpg-widget-heading-wrapper.heading-style1.center .tpg-widget-heading-line.line-left{display:block;margin-right:0;margin-left:15px}.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line,.tpg-widget-heading-wrapper.heading-style1 .tpg-widget-heading-line-left{-webkit-box-flex:1;align-self:center;border-color:#e5e5e5;border-style:solid;border-width:1px 0;flex-grow:1;height:4px;margin-right:15px}.tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading,.tpg-widget-heading-wrapper.heading-style3 .tpg-widget-heading{background-color:var(--tpg-primary-color,#0d6efd);color:#fff;line-height:1.4;margin-bottom:-.5px;padding:5px 15px}.tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading a,.tpg-widget-heading-wrapper.heading-style3 .tpg-widget-heading a{color:inherit}.tpg-widget-heading-wrapper.center{justify-content:center}.tpg-widget-heading-wrapper.right{flex-direction:row-reverse}.tpg-widget-heading-wrapper.right .tpg-widget-heading{padding-right:15px;padding-left:0}.tpg-widget-heading-wrapper.right .tpg-widget-heading:before{right:0;left:auto}.tpg-widget-heading-wrapper.right .tpg-widget-heading-line{margin-right:0;margin-left:15px}.tpg-el-main-wrapper .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:before,.tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:after{border-left:12px solid transparent;border-bottom:0 solid var(--tpg-primary-color,#0d6efd);border-right:0 solid transparent;border-top:12px solid var(--tpg-primary-color,#0d6efd);content:"";position:absolute;left:-11px;top:0}.section-title-align-center .tpg-el-main-wrapper .tpg-widget-heading-wrapper.heading-style2 .tpg-widget-heading:before,.tpg-widget-heading-wrapper.heading-style2.right .tpg-widget-heading:after{border-width:12px 12px 0 0;right:-11px;left:auto}.tpg-widget-heading-wrapper.heading-style2.center .tpg-widget-heading:after{content:none}.section-title-style-style2 .tpg-header-wrapper.carousel,.section-title-style-style2 .tpg-header-wrapper:not(.carousel) .tpg-widget-heading-wrapper,.section-title-style-style3 .tpg-header-wrapper.carousel,.section-title-style-style3 .tpg-header-wrapper:not(.carousel) .tpg-widget-heading-wrapper{border-bottom:2px solid var(--tpg-primary-color,#0d6efd)}.tpg-even,.tpg-full-height{display:flex;flex-wrap:wrap}@media (max-width:767px){.rt-content-loader .rt-holder,.tpg-even .rt-holder{flex-direction:column}}.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next>*{background-color:#bcbcbc;bottom:auto;color:#fff;cursor:pointer;display:inline-block;font-size:18px;height:30px;line-height:30px;margin-right:1px;margin-left:1px;text-align:center;transition:background-color .2s ease-in-out,color .2s ease-in-out,opacity .2s ease-in-out,visibility .2s ease-in-out;-webkit-transition:background-color .2s ease-in-out,color .2s ease-in-out,opacity .2s ease-in-out,visibility .2s ease-in-out;-ms-transition:background-color .2s ease-in-out,color .2s ease-in-out,opacity .2s ease-in-out,visibility .2s ease-in-out;width:30px}.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next>* i{line-height:1}.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next>.rt-disabled{opacity:.5;pointer-events:none}.rt-cb-page-prev-next{text-align:right}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style .rt-loadmore-loading{color:#fff;right:50%;margin-right:-32px;margin-top:-32px;opacity:0;position:absolute;top:50%;visibility:hidden}.rt-ball-scale-multiple.rt-2x,.rt-ball-scale-multiple.rt-2x>div{height:64px;width:64px}.rt-ball-scale-multiple,.rt-ball-scale-multiple>div{box-sizing:border-box;position:relative}.rt-ball-scale-multiple>div{background-color:currentColor;border:0 solid;display:inline-block;float:none}.rt-ball-scale-multiple>div:nth-child(2){-webkit-animation-delay:.2s;animation-delay:.2s}.rt-ball-scale-multiple>div{-webkit-animation:ball-scale-multiple 1s linear 0s infinite;animation:ball-scale-multiple 1s linear 0s infinite;border-radius:100%;height:32px;right:0;opacity:0;position:absolute;top:0;width:32px}.rt-tpg-container .rt-pagination-wrap{display:inline-block;margin-top:10px;text-align:center;width:100%}.tpg-el-main-wrapper .rt-pagination-wrap{display:flex;flex-direction:row;justify-content:center;margin-top:30px}.tpg-el-main-wrapper .rt-pagination-wrap .rt-pagination{margin:0}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style{cursor:pointer;position:relative;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-user-select:none}.rt-tpg-container .rt-pagination-wrap .rt-cb-page-prev-next.rt-hidden-elm,.rt-tpg-container .rt-pagination-wrap .rt-infinite-action.rt-hidden-elm,.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style.rt-hidden-elm,.rt-tpg-container .rt-pagination-wrap .rt-page-numbers.rt-hidden-elm{display:none!important}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style.rt-lm-loading .rt-loadmore-text{opacity:0;visibility:hidden}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-style.rt-lm-loading .rt-loadmore-loading{opacity:1;visibility:visible}.rt-tpg-container .rt-pagination-wrap .rt-loadmore-btn{background-color:var(--tpg-primary-color,#0d6efd);color:#fff;display:inline-block;font-size:13px;letter-spacing:.1em;margin-top:30px;padding:9px 20px 8px;text-decoration:none;text-transform:uppercase;transition:color .2s ease-in-out,background-color .2s ease-in-out;-webkit-transition:color .2s ease-in-out,background-color .2s ease-in-out;-ms-transition:color .2s ease-in-out,background-color .2s ease-in-out}.rt-tpg-container .rt-loadmore-btn:hover{background-color:var(--tpg-secondary-color,#0654c4)}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages{float:none;padding-bottom:.1px;padding-top:.1px}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers.rt-lm-loading{opacity:.5;pointer-events:none}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul{float:none;font-size:0;line-height:0;margin:-2px;text-align:center}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li{border:none;display:inline-block;float:none;font-size:16px;line-height:1.55;min-height:45px;min-width:48px;padding:2px}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li>a{border:1px solid #dee2e6;border-radius:3px;color:#212121;display:block;font-size:16px;font-weight:400;letter-spacing:0;line-height:45px;min-height:45px;min-width:48px;padding-right:8px;padding-left:8px;text-decoration:none}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.active>a{background-color:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd);color:#fff}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.paginationjs-ellipsis{min-width:auto;padding:0}.rt-tpg-container .rt-pagination-wrap .rt-page-numbers .paginationjs .paginationjs-pages ul li.paginationjs-ellipsis a{background:none!important;border:none!important;color:#000!important;font-size:18px;min-width:auto;opacity:1;pointer-events:none!important}.rt-pagination{margin:30px 0;text-align:center}.rt-pagination .pagination-list{background:transparent;border-radius:4px;border-top:0;display:inline-block;padding-right:0}.rt-pagination .pagination-list a{box-shadow:none}.rt-pagination .pagination-list>li{display:inline-block;margin:2px}.rt-pagination .pagination-list>li>a,.rt-pagination .pagination-list>li>span{background-color:#fff;border:1px solid #ddd;border-radius:3px;color:#212121;display:block;line-height:45px;margin-right:-1px;min-height:45px;min-width:48px;padding:0 5px;position:relative;text-decoration:none;transition:.4s ease-in-out}.rt-pagination .pagination-list>li>a:focus,.rt-pagination .pagination-list>li>a:hover,.rt-pagination .pagination-list>li>span:focus,.rt-pagination .pagination-list>li>span:hover{background-color:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd);color:#fff;z-index:2}.rt-pagination .pagination-list>.active>a,.rt-pagination .pagination-list>.active>a:focus,.rt-pagination .pagination-list>.active>a:hover,.rt-pagination .pagination-list>.active>span,.rt-pagination .pagination-list>.active>span:focus,.rt-pagination .pagination-list>.active>span:hover{background-color:var(--tpg-primary-color,#0d6efd);border-color:var(--tpg-primary-color,#0d6efd);color:#fff;cursor:default;z-index:3}.rt-pagination .pagination-list>.disabled>a,.rt-pagination .pagination-list>.disabled>a:focus,.rt-pagination .pagination-list>.disabled>a:hover,.rt-pagination .pagination-list>.disabled>span,.rt-pagination .pagination-list>.disabled>span:focus,.rt-pagination .pagination-list>.disabled>span:hover{background-color:#fff;border-color:#ddd;color:#212121;cursor:not-allowed}.rt-tpg-container .swiper-pagination-bullet{background:#d6d6d6;height:10px;opacity:1;width:10px}.rt-tpg-container .swiper-wrapper{padding-bottom:45px}.rt-tpg-container.slider-layout13-main .swiper-wrapper{padding-bottom:0}.rt-tpg-container .swiper-pagination-bullets.swiper-pagination-horizontal{bottom:0}.rt-tpg-container .swiper-pagination-bullet.swiper-pagination-bullet-active-main{background:#007bff}.rt-tpg-container>div{position:relative}.rt-tpg-container .slider-main-wrapper{opacity:0;position:relative}.rt-tpg-container .swiper-navigation .slider-btn{align-items:center;background-color:#fff;background-image:none;border:1px solid #e5e5e5;border-radius:3px;color:#2962ff;display:inline-flex;font-size:14px;height:32px;justify-content:center;position:absolute;transition:all .3s ease;-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;width:34px}.rt-tpg-container .tpg-header-wrapper .swiper-navigation .slider-btn,.slider-arrow-position-top-left .rt-tpg-container .swiper-navigation .slider-btn,.slider-arrow-position-top-right .rt-tpg-container .swiper-navigation .slider-btn{position:static}.rt-tpg-container .swiper-navigation .slider-btn:hover{background-color:#2962ff;border-color:#2962ff;color:#fff}.rt-tpg-container .swiper-navigation .slider-btn:focus{box-shadow:none;outline:0}.rt-tpg-container .swiper-navigation .slider-btn.swiper-button-next{margin-right:3px}.rt-tpg-container .swiper-navigation .swiper-button-next:after,.rt-tpg-container .swiper-navigation .swiper-button-prev:after{font-size:inherit}.rt-tpg-container .tpg-cf-group-title{font-size:16px;margin-bottom:0}.rt-tpg-container .tpg-cf-fields{font-size:95%;line-height:1.6;margin-top:0}.tpg-el-main-wrapper .tpg-cf-wrap{margin:10px 0 0}.rt-tpg-container .tpg-cf-wrap:empty{margin:0}.act-label-style-inline .tgp-cf-field-label{margin-left:8px;min-width:inherit}.act-label-style-inline .tgp-cf-field-label:after{content:":"}.act-label-style-block .tgp-cf-field-label{display:block!important;float:none;margin-left:0;min-width:inherit}.act-label-style-block .tpg-cf-fields{display:block;margin-bottom:5px}.rt-tpg-container .rt-holder .tgp-cf-field-value *{color:inherit;display:inline;margin:0;transition:none}.isotope-term-no-post{min-height:30px}.isotope-term-no-post p{display:none;margin-bottom:0}.tpg-el-main-wrapper.loading{min-height:300px;transition:.4s}.tpg-el-main-wrapper.loading:before{-webkit-animation:ball-clip-rotate .75s linear infinite;animation:ball-clip-rotate .75s linear infinite;background:transparent;border:2px solid;border-bottom:2px solid transparent;border-radius:100%;color:red;display:inline-block;float:none;height:32px;right:50%;position:absolute;top:50%;width:32px;z-index:9999999999}.tpg-shortcode-main-wrapper .even-grid-item,.tpg-shortcode-main-wrapper .masonry-grid-item{margin-bottom:30px}.tpg-shortcode-main-wrapper i{margin-left:5px}.tpg-shortcode-main-wrapper .product-more i{margin-left:0}.tpg-shortcode-main-wrapper .grid_hover1 .even-grid-item,.tpg-shortcode-main-wrapper .grid_hover1 .masonry-grid-item,.tpg-shortcode-main-wrapper .grid_hover2 .even-grid-item,.tpg-shortcode-main-wrapper .grid_hover2 .masonry-grid-item,.tpg-shortcode-main-wrapper .grid_hover3 .even-grid-item,.tpg-shortcode-main-wrapper .grid_hover3 .masonry-grid-item,.tpg-shortcode-main-wrapper .grid_hover4 .even-grid-item,.tpg-shortcode-main-wrapper .grid_hover4 .masonry-grid-item,.tpg-shortcode-main-wrapper .grid_hover5 .even-grid-item,.tpg-shortcode-main-wrapper .grid_hover5 .masonry-grid-item,.tpg-shortcode-main-wrapper .list_layout1 .even-grid-item,.tpg-shortcode-main-wrapper .list_layout1 .masonry-grid-item{margin-bottom:0}.layout3 .rt-img-responsive{display:inline-block}.list_layout2 .post-meta-tags,.list_layout2 .post-meta-user{color:#a5a6aa;font-size:14px}.rt-content-loader.layout14 .post-meta-tags,.rt-content-loader.layout14 .post-meta-user{margin-bottom:0}.offset06 .post-meta-tags span,.offset06 .post-meta-user span{color:#a5a6aa;font-size:14px;font-weight:500;padding-left:15px}.offset06 .post-meta-tags span a,.offset06 .post-meta-user span a{color:#444}.offset06 .post-meta-tags span a:hover,.offset06 .post-meta-user span a:hover{color:#2962ff}.tpg-shortcode-main-wrapper .rt-detail .entry-title a{text-decoration:none}.categories-links{display:inline-block;line-height:1.3}.tpg-shortcode-main-wrapper .rt-holder{overflow:hidden}.tpg-shortcode-main-wrapper .grid_hover6 .rt-grid-item{margin-bottom:4px;overflow:hidden;padding:0 2px}.tpg-shortcode-main-wrapper .grid_hover6 .rt-grid-item .post-img img,.tpg-shortcode-main-wrapper .grid_hover7 .rt-grid-item .post-img img{min-height:350px;-o-object-fit:cover;object-fit:cover}.grid_hover4 .rt-grid-item{padding:0}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-img-holder,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-img-holder,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-img-holder{overflow:hidden;position:relative}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-img-holder img,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-img-holder img,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-img-holder img{max-width:100%;transition:all 1.1s ease}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-img-holder:hover img,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-img-holder:hover img,.tpg-shortcode-main-wrapper .layout1 .img_zoom_out .rt-holder .rt-img-holder img,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-img-holder:hover img{transform:scale(1.1)}.tpg-shortcode-main-wrapper .layout1 .img_no_effect .rt-holder .rt-img-holder:hover img,.tpg-shortcode-main-wrapper .layout1 .img_zoom_out .rt-holder .rt-img-holder:hover img{transform:scale(1)}.tpg-shortcode-main-wrapper .carousel1 .rt-holder,.tpg-shortcode-main-wrapper .isotope1 .rt-holder,.tpg-shortcode-main-wrapper .layout1 .rt-holder{box-shadow:0 0 2px 0 rgba(0,0,0,.3);-webkit-box-shadow:0 0 2px 0 rgba(0,0,0,.3);-moz-box-shadow:0 0 2px 0 rgba(0,0,0,.3)}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail{background:#fff;padding:15px}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail h4,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail h4,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail h4{font-size:26px;font-weight:400;line-height:1.25;margin:0 0 18px}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail.rt-with-title h2,.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail.rt-with-title h3,.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail.rt-with-title h4,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail.rt-with-title h2,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail.rt-with-title h3,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail.rt-with-title h4,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail.rt-with-title h2,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail.rt-with-title h3,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail.rt-with-title h4{margin-bottom:15px}.tpg-shortcode-main-wrapper .rt-holder .rt-detail.rt-with-title{padding-top:0}.tpg-shortcode-main-wrapper .isotope1 .rt-detail .tpg-excerpt,.tpg-shortcode-main-wrapper .layout1 .rt-detail .tpg-excerpt{margin-bottom:20px}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail .post-meta,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail .post-meta,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail .post-meta{line-height:25px;overflow:hidden}.tpg-shortcode-main-wrapper .carousel1 .rt-holder .rt-detail .read-more a,.tpg-shortcode-main-wrapper .isotope1 .rt-holder .rt-detail .read-more a,.tpg-shortcode-main-wrapper .layout1 .rt-holder .rt-detail .read-more a{border:1px solid hsla(0,0%,80%,.4);color:#1a1a1a;display:inline-block;font-size:15px;line-height:1.8;padding:8px 20px}.tpg-shortcode-main-wrapper .rt-holder .rt-detail .post-meta.right{text-align:left}.tpg-shortcode-main-wrapper .rt-holder .rt-detail .post-meta.center{text-align:center}.tpg-img-circle .rt-img-holder img{border-radius:50%!important}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-img-holder{overflow:hidden;position:relative}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-img-holder img{max-width:100%;transition:all 1.1s ease}.tpg-shortcode-main-wrapper .layout2 .img_zoom_out .rt-holder .rt-img-holder img,.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-img-holder:hover img{transform:scale(1.1)}.tpg-shortcode-main-wrapper .layout2 .img_no_effect .rt-holder .rt-img-holder:hover img,.tpg-shortcode-main-wrapper .layout2 .img_no_effect .rt-holder .rt-img-holder img,.tpg-shortcode-main-wrapper .layout2 .img_zoom_out .rt-holder .rt-img-holder:hover img{transform:scale(1)}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail h4{font-size:26px;font-weight:400;line-height:1.25;margin:0 0 15px}.tpg-shortcode-main-wrapper .layout2 .rt-detail .tpg-excerpt{margin-bottom:20px}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .read-more a{border-radius:5px;display:inline-block;line-height:1.8}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .read-more{display:inline-block;width:100%}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .read-more.right{text-align:left}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .read-more.center{text-align:center}.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail .rt-tpg-social-share{margin-bottom:15px}@media (max-width:767px){.tpg-shortcode-main-wrapper .layout2 .rt-holder .rt-detail,.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail{padding:15px 0}}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail p{margin-bottom:20px}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail h4{font-size:26px;font-weight:400;line-height:1.25;margin:0 0 18px}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-img-holder .overlay{background:rgba(0,0,0,.7);display:block;height:100%;opacity:0;position:absolute;text-align:center;transition:all .3s ease-out 0s;width:100%;z-index:1}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .read-more a{display:inline-block;line-height:1.8}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-img-holder,.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-img-holder>a.rounded img{border-radius:50%;overflow:hidden}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .read-more{display:inline-block;width:100%}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .read-more.right{text-align:left}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .read-more.center{text-align:center}.tpg-shortcode-main-wrapper .layout3 .rt-holder .rt-detail .rt-tpg-social-share{margin-bottom:15px}.tpg-shortcode-main-wrapper .carousel2 .rt-holder,.tpg-shortcode-main-wrapper .isotope2 .rt-holder,.tpg-shortcode-main-wrapper .layout5 .rt-holder,.tpg-shortcode-main-wrapper .offset03 .rt-holder{overflow:hidden;position:relative}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay{background:rgba(235,0,0,.8);bottom:0;display:block;height:25%;right:0;min-height:150px;opacity:1;padding:20px;position:absolute;transition:all 1s ease;width:100%;z-index:1}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .rt-detail,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .rt-detail,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .rt-detail{color:#fff;max-height:0;opacity:0;padding:0;transition:all .8s ease-in-out;visibility:hidden}.tpg-shortcode-main-wrapper .carousel2 .rt-holder:hover .overlay .rt-detail,.tpg-shortcode-main-wrapper .isotope2 .rt-holder:hover .overlay .rt-detail,.tpg-shortcode-main-wrapper .layout5 .rt-holder:hover .overlay .rt-detail{max-height:450px;transition:all 1.2s ease-in-out .2s}.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .rt-detail{color:#fff;padding:0 0 15px}.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .rt-detail>:not(.post-meta-user){opacity:0;visibility:hidden}.tpg-shortcode-main-wrapper .offset03 .rt-holder:hover .overlay .rt-detail>:not(.post-meta-user){opacity:1;visibility:visible}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .post-meta-user a,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .post-meta-user a,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .post-meta-user a,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .post-meta-user a{color:#fff}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h2,.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h3,.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h4,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h2,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h3,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h4,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h2,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h3,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h4,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h2,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h3,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h4{color:#fff;font-size:22px;font-weight:400;line-height:1.3;margin:0 0 10px}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h2 a,.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h3 a,.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay h4 a,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h2 a,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h3 a,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay h4 a,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h2 a,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h3 a,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay h4 a,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h2 a,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h3 a,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay h4 a{color:#fff}.tpg-shortcode-main-wrapper .carousel2 .rt-holder:hover .overlay,.tpg-shortcode-main-wrapper .isotope2 .rt-holder:hover .overlay,.tpg-shortcode-main-wrapper .layout5 .rt-holder:hover .overlay,.tpg-shortcode-main-wrapper .offset03 .rt-holder:hover .overlay{height:100%;width:100%}.tpg-shortcode-main-wrapper .carousel2 .rt-holder:hover .overlay .rt-detail,.tpg-shortcode-main-wrapper .isotope2 .rt-holder:hover .overlay .rt-detail,.tpg-shortcode-main-wrapper .layout5 .rt-holder:hover .overlay .rt-detail,.tpg-shortcode-main-wrapper .offset03 .rt-holder:hover .overlay .rt-detail{opacity:1;visibility:visible}.tpg-shortcode-main-wrapper .carousel2 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .offset03 .rt-holder .overlay .post-meta-user{display:block}.tpg-shortcode-main-wrapper .isotope2 .rt-holder .post-meta,.tpg-shortcode-main-wrapper .isotope2 .rt-holder .post-meta .rt-tpg-social-share{text-align:center}.tpg-shortcode-main-wrapper .isotope2 .rt-holder .post-meta.left{text-align:right}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay>:not(.entry-title),.tpg-shortcode-main-wrapper .layout5 .rt-holder .overlay .rt-detail,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay>:not(.entry-title){max-height:0;opacity:0;overflow:hidden;transition:.6s!important}.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .overlay>:not(.entry-title),.tpg-shortcode-main-wrapper .layout5 .rt-holder:hover .overlay .rt-detail,.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .overlay>:not(.entry-title){max-height:300px;opacity:1}.tpg-shortcode-main-wrapper .layout5 .rt-holder{display:flex;min-height:250px}.tpg-shortcode-main-wrapper .layout5 .rt-holder .rt-img-responsive{height:100%;-o-object-fit:cover;object-fit:cover}.tpg-shortcode-main-wrapper .carousel3 .rt-holder,.tpg-shortcode-main-wrapper .isotope3 .rt-holder,.tpg-shortcode-main-wrapper .layout6 .rt-holder{position:relative}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay{align-items:center;background:rgba(0,0,0,.7);display:flex;flex-direction:column;height:100%;justify-content:center;opacity:0;padding:15px;position:absolute;text-align:center;text-decoration:none;transition:all .3s ease-out;width:100%;z-index:9}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .line,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .line,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .line{background-color:#fff;height:2px;margin:12px auto;min-height:2px;transition:all .5s ease-out;width:0}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay:hover .line,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay:hover .line,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay:hover .line{width:40%}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h2,.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h3,.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h4,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h2,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h3,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h4,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h2,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h3,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h4{color:#fff;font-size:22px;font-weight:400;line-height:1.25;margin:0 0 18px;padding-top:5%}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h2 a,.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h3 a,.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay h4 a,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h2 a,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h3 a,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay h4 a,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h2 a,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h3 a,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay h4 a{color:#fff}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta.left,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta.left,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta.left{text-align:right}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta.right,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta.right,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta.right{text-align:left}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .rt-tpg-social-share,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .rt-tpg-social-share,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .rt-tpg-social-share{float:none;text-align:center}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .read-more,.tpg-shortcode-main-wrapper .layout6 .rt-holder .read-more{float:none}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta-user,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta-user{color:#fff}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta-user p,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta-user p,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta-user p{margin-bottom:0}.tpg-shortcode-main-wrapper .carousel3 .rt-holder .overlay .post-meta-user a,.tpg-shortcode-main-wrapper .carousel3 .rt-holder:hover .overlay .tpg-excerpt,.tpg-shortcode-main-wrapper .isotope3 .rt-holder .overlay .post-meta-user a,.tpg-shortcode-main-wrapper .isotope3 .rt-holder:hover .overlay .tpg-excerpt,.tpg-shortcode-main-wrapper .layout6 .rt-holder .overlay .post-meta-user a,.tpg-shortcode-main-wrapper .layout6 .rt-holder:hover .overlay .tpg-excerpt{color:#fff}.tpg-shortcode-main-wrapper .carousel3 .rt-holder:hover .overlay,.tpg-shortcode-main-wrapper .isotope3 .rt-holder:hover .overlay,.tpg-shortcode-main-wrapper .layout6 .rt-holder:hover .overlay{opacity:1}.tpg-shortcode-main-wrapper .carousel4 .rt-holder,.tpg-shortcode-main-wrapper .isotope4 .rt-holder,.tpg-shortcode-main-wrapper .layout7 .rt-holder{position:relative}.tpg-shortcode-main-wrapper .carousel4 .rt-holder img,.tpg-shortcode-main-wrapper .isotope4 .rt-holder img,.tpg-shortcode-main-wrapper .layout7 .rt-holder img{opacity:.9;transition:opacity .35s}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay{align-items:center;background:rgba(0,0,0,.3);display:flex;flex-direction:column;height:100%;justify-content:center;right:0;padding:0 12px;position:absolute;top:0;width:100%}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay:hover,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay:hover,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay:hover{background:rgba(0,0,0,.5)}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay:before,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay:before,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay:before{border:2px solid #fff;bottom:20px;box-shadow:0 0 0 30px hsla(0,0%,100%,.2);content:"";right:20px;opacity:0;position:absolute;left:20px;top:20px;transform:scale3d(1.4,1.4,1);transition:opacity .35s,transform .35s}.tpg-shortcode-main-wrapper .carousel7 .rt-holder .cat-above-title,.tpg-shortcode-main-wrapper .carousel11 .rt-holder .post-info .cat-above-title,.tpg-shortcode-main-wrapper .carousel12 .rt-holder .post-info .cat-above-title{color:#fff;text-align:center}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .cat-above-title,.tpg-shortcode-main-wrapper .carousel5 .rt-holder .cat-above-title{color:#fff;margin-top:30px;opacity:0;text-align:center}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .cat-above-title a,.tpg-shortcode-main-wrapper .carousel5 .rt-holder .cat-above-title a,.tpg-shortcode-main-wrapper .carousel7 .rt-holder .cat-above-title a,.tpg-shortcode-main-wrapper .carousel8 .rt-holder .cat-above-title *,.tpg-shortcode-main-wrapper .carousel12 .rt-holder .post-info .cat-above-title *{color:inherit}.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .cat-above-title,.tpg-shortcode-main-wrapper .carousel5 .rt-holder:hover .cat-above-title{opacity:1}.tpg-shortcode-main-wrapper .carousel5 .rt-holder:hover .cat-above-title+.entry-title,.tpg-shortcode-main-wrapper .carousel11 .rt-holder .post-info .cat-above-title,.tpg-shortcode-main-wrapper .carousel12 .rt-holder .post-info .cat-above-title{padding-top:10px}.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .cat-above-title+.entry-title{margin-top:10px}.tpg-shortcode-main-wrapper .carousel4 .rt-holder h2,.tpg-shortcode-main-wrapper .carousel4 .rt-holder h3,.tpg-shortcode-main-wrapper .carousel4 .rt-holder h4,.tpg-shortcode-main-wrapper .isotope4 .rt-holder h2,.tpg-shortcode-main-wrapper .isotope4 .rt-holder h3,.tpg-shortcode-main-wrapper .isotope4 .rt-holder h4,.tpg-shortcode-main-wrapper .layout7 .rt-holder h2,.tpg-shortcode-main-wrapper .layout7 .rt-holder h3,.tpg-shortcode-main-wrapper .layout7 .rt-holder h4{color:#fff;font-size:22px;font-weight:400;line-height:1.25;margin:30% 0 10px;text-align:center;transition:transform .35s}.tpg-shortcode-main-wrapper .carousel4 .rt-holder h2 a,.tpg-shortcode-main-wrapper .carousel4 .rt-holder h3 a,.tpg-shortcode-main-wrapper .carousel4 .rt-holder h4 a,.tpg-shortcode-main-wrapper .isotope4 .rt-holder h2 a,.tpg-shortcode-main-wrapper .isotope4 .rt-holder h3 a,.tpg-shortcode-main-wrapper .isotope4 .rt-holder h4 a,.tpg-shortcode-main-wrapper .layout7 .rt-holder h2 a,.tpg-shortcode-main-wrapper .layout7 .rt-holder h3 a,.tpg-shortcode-main-wrapper .layout7 .rt-holder h4 a{color:#fff}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .tpg-excerpt,.tpg-shortcode-main-wrapper .carousel4 .rt-holder p,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .tpg-excerpt,.tpg-shortcode-main-wrapper .isotope4 .rt-holder p,.tpg-shortcode-main-wrapper .layout7 .rt-holder .tpg-excerpt,.tpg-shortcode-main-wrapper .layout7 .rt-holder p{color:#fff;opacity:0;padding:0 15px;text-align:center;transform:scale(1.5);transition:opacity .35s,transform .35s}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .post-meta-user p,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .post-meta-user p,.tpg-shortcode-main-wrapper .layout7 .rt-holder .post-meta-user p{margin-bottom:0}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .post-meta-user a,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .post-meta-user a,.tpg-shortcode-main-wrapper .layout7 .rt-holder .post-meta-user a{color:#fff}.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover h3,.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover h3,.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover h3{margin:7% 0 10px;transform:scale(.9)}.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .overlay:before,.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .tpg-excerpt,.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover p,.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover .overlay:before,.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover .tpg-excerpt,.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover p,.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .overlay:before,.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .tpg-excerpt,.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover p{opacity:1;transform:scaleX(1)}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay .post-meta,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay .post-meta,.tpg-shortcode-main-wrapper .layout7 .rt-holder .cat-above-title,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .post-meta{color:#fff;opacity:0;overflow:hidden;text-align:center}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay .post-meta.left,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay .post-meta.left,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .post-meta.left{text-align:right}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay .post-meta.right,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay .post-meta.right,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .post-meta.right{text-align:left}.tpg-shortcode-main-wrapper .carousel4 .rt-holder:hover .overlay .post-meta,.tpg-shortcode-main-wrapper .isotope4 .rt-holder:hover .overlay .post-meta,.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .cat-above-title,.tpg-shortcode-main-wrapper .layout7 .rt-holder:hover .overlay .post-meta{opacity:1;transform:scale(1);transition:opacity .35s,transform .35s}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .overlay .rt-tpg-social-share,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .overlay .rt-tpg-social-share,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .rt-tpg-social-share{float:none;text-align:center}.tpg-shortcode-main-wrapper .carousel4 .rt-holder .read-more,.tpg-shortcode-main-wrapper .isotope4 .rt-holder .read-more,.tpg-shortcode-main-wrapper .layout7 .rt-holder .read-more{float:none}.tpg-shortcode-main-wrapper .carousel4 .rt-holder h3,.tpg-shortcode-main-wrapper .layout7 .rt-holder .overlay .entry-title{margin:0!important;transition:.4s}.tpg-shortcode-main-wrapper .carousel8 .rt-holder,.tpg-shortcode-main-wrapper .isotope8 .rt-holder,.tpg-shortcode-main-wrapper .layout12 .rt-holder{background:#fff;box-shadow:0 1px 2px 0 rgba(0,0,0,.22)}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-img-holder,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-img-holder,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-img-holder{overflow:hidden;position:relative}.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover img,.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover img,.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover img{transform:scale(1.05);-webkit-transform:scale(1.05);-moz-transform:scale(1.05);-ms-transform:scale(1.05);-o-transform:scale(1.05);-webkit-transition:all .25s ease-in-out}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail{background:#fff;display:inline-block;padding:25px;transition:all .3s ease-out 0s;width:100%}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail.rt-with-title,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail.rt-with-title,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail.rt-with-title{padding-bottom:0;padding-top:0}.tpg-shortcode-main-wrapper .carousel8 .rt-holder.rt-with-title-below h2.entry-title,.tpg-shortcode-main-wrapper .carousel8 .rt-holder.rt-with-title-below h3.entry-title,.tpg-shortcode-main-wrapper .carousel8 .rt-holder.rt-with-title-below h4.entry-title,.tpg-shortcode-main-wrapper .isotope8 .rt-holder.rt-with-title-below h2.entry-title,.tpg-shortcode-main-wrapper .isotope8 .rt-holder.rt-with-title-below h3.entry-title,.tpg-shortcode-main-wrapper .isotope8 .rt-holder.rt-with-title-below h4.entry-title,.tpg-shortcode-main-wrapper .layout12 .rt-holder.rt-with-title-below h2.entry-title,.tpg-shortcode-main-wrapper .layout12 .rt-holder.rt-with-title-below h3.entry-title,.tpg-shortcode-main-wrapper .layout12 .rt-holder.rt-with-title-below h4.entry-title{margin-top:0}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail.rt-with-title .entry-title,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail.rt-with-title .entry-title,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail.rt-with-title .entry-title{display:inline-block}.tpg-shortcode-main-wrapper .carousel8 .rt-holder.rt-with-title .post-meta-user,.tpg-shortcode-main-wrapper .isotope8 .rt-holder.rt-with-title .post-meta-user,.tpg-shortcode-main-wrapper .layout12 .rt-holder.rt-with-title .post-meta-user{margin-bottom:15px}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h4,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h4,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h4{font-size:22px;font-weight:400;line-height:1.25;margin:15px 0}.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h2,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h3,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h4{font-weight:500}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h2 a,.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h3 a,.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h4 a,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h2 a,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h3 a,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h4 a,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h2 a,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h3 a,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h4 a{color:#000}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h2 a:hover,.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h3 a:hover,.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail h4 a:hover,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h2 a:hover,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h3 a:hover,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail h4 a:hover,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h2 a:hover,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h3 a:hover,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail h4 a:hover{color:#fff}.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail{flex-grow:1}.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail,.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail,.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover .rt-detail{background:#0850d0;color:#fff}.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail a,.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail a,.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover .rt-detail a{color:#fff}.tpg-shortcode-main-wrapper .carousel8 .rt-holder .rt-detail .read-more,.tpg-shortcode-main-wrapper .isotope8 .rt-holder .rt-detail .read-more,.tpg-shortcode-main-wrapper .layout12 .rt-holder .rt-detail .read-more{text-align:left}.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail .post-meta-user,.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail .post-meta-user .meta-data,.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail .post-meta-user a,.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail .post-meta-user i[class^=fa],.tpg-shortcode-main-wrapper .carousel8 .rt-holder:hover .rt-detail h3 a,.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail .post-meta-user,.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail .post-meta-user .meta-data,.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail .post-meta-user a,.tpg-shortcode-main-wrapper .isotope8 .rt-holder:hover .rt-detail .post-meta-user i[class^=fa],.tpg-shortcode-main-wrapper .layout12 .rt-holder:hover .rt-detail .post-meta-user,.tpg-shortcode-main-wrapper .layout12 .rt-h
|