Version Description
- Added alt tag to images
- Multiple fixes and visual improvements
Download this release
Release Info
Developer | WPZOOM |
Plugin | ![]() |
Version | 2.0.7 |
Comparing to | |
See all releases |
Code changes from version 2.0.6 to 2.0.7
- assets/backend/img/icon-insta.png +0 -0
- class-wpzoom-instagram-general-settings.php +28 -0
- class-wpzoom-instagram-widget-api.php +21 -5
- class-wpzoom-instagram-widget-display.php +132 -35
- class-wpzoom-instagram-widget-settings.php +174 -94
- class-wpzoom-instagram-widget.php +1 -1
- dist/images/backend/icon-insta.png +0 -0
- dist/images/backend/user-avatar.jpg +0 -0
- dist/images/frontend/wpzoom-instagram-icons.svg +4 -4
- dist/scripts/backend/index.asset.php +1 -1
- dist/scripts/backend/index.js +1 -1
- dist/styles/backend/index-rtl.css +1 -1
- dist/styles/backend/index.asset.php +1 -1
- dist/styles/backend/index.css +1 -1
- dist/styles/frontend/block-rtl.css +1 -1
- dist/styles/frontend/block.asset.php +1 -1
- dist/styles/frontend/block.css +1 -1
- dist/styles/frontend/index-rtl.css +1 -1
- dist/styles/frontend/index.asset.php +1 -1
- dist/styles/frontend/index.css +1 -1
- instagram-widget-by-wpzoom.php +2 -2
- readme.txt +4 -0
- src/images/backend/icon-insta.png +0 -0
- src/images/backend/user-avatar.jpg +0 -0
- src/images/frontend/wpzoom-instagram-icons.svg +4 -4
- src/scripts/backend/index.js +40 -5
- src/styles/backend/index.scss +113 -4
- src/styles/frontend/block.scss +82 -9
- src/styles/frontend/index.scss +118 -23
assets/backend/img/icon-insta.png
ADDED
Binary file
|
class-wpzoom-instagram-general-settings.php
CHANGED
@@ -94,6 +94,13 @@ class WPZOOM_Instagram_General_Settings {
|
|
94 |
'wpzoom-instagram-general-settings',
|
95 |
'wpzoom_instagram_general_settings_section'
|
96 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
}
|
98 |
|
99 |
/**
|
@@ -131,6 +138,27 @@ class WPZOOM_Instagram_General_Settings {
|
|
131 |
<?php
|
132 |
}
|
133 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
|
135 |
|
136 |
}
|
94 |
'wpzoom-instagram-general-settings',
|
95 |
'wpzoom_instagram_general_settings_section'
|
96 |
);
|
97 |
+
add_settings_field(
|
98 |
+
'wpzoom_instagram_general_settings_enable_unsafe_requests',
|
99 |
+
esc_html__( 'Enable Insecure API Requests', 'instagram-widget-by-wpzoom'),
|
100 |
+
array( $this, 'settings_field_enable_unsafe_requests' ),
|
101 |
+
'wpzoom-instagram-general-settings',
|
102 |
+
'wpzoom_instagram_general_settings_section'
|
103 |
+
);
|
104 |
}
|
105 |
|
106 |
/**
|
138 |
<?php
|
139 |
}
|
140 |
|
141 |
+
public function settings_field_enable_unsafe_requests() {
|
142 |
+
$settings = get_option( 'wpzoom-instagram-general-settings' );
|
143 |
+
|
144 |
+
$enable_unsafe_requests = ! empty( $settings['enable-unsafe-requests'] ) ? wp_validate_boolean( $settings['enable-unsafe-requests'] ) : false;
|
145 |
+
?>
|
146 |
+
<input class="regular-text code"
|
147 |
+
id="wpzoom-instagram-widget-settings_enable-unsafe-requests"
|
148 |
+
name="wpzoom-instagram-general-settings[enable-unsafe-requests]"
|
149 |
+
<?php checked( true, $enable_unsafe_requests ); ?>
|
150 |
+
value="1"
|
151 |
+
type="checkbox">
|
152 |
+
|
153 |
+
<p class="description">
|
154 |
+
<?php esc_html_e( 'Allows insecure requests to the Instagram API. Normally this should be disabled, but it may be required for the plugin to work, depending on the server configuration.', 'instagram-widget-by-wpzoom' ); ?>
|
155 |
+
<span class="notice notice-warning">
|
156 |
+
<?php _e( '<strong>Potential security risk!</strong> Only enable if you’re having issues.', 'instagram-widget-by-wpzoom' ); ?>
|
157 |
+
</span>
|
158 |
+
</p>
|
159 |
+
<?php
|
160 |
+
}
|
161 |
+
|
162 |
|
163 |
|
164 |
}
|
class-wpzoom-instagram-widget-api.php
CHANGED
@@ -107,6 +107,22 @@ class Wpzoom_Instagram_Widget_API {
|
|
107 |
$this->feed_id = $id;
|
108 |
}
|
109 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
/**
|
111 |
* Register custom cron intervals
|
112 |
*
|
@@ -163,7 +179,7 @@ class Wpzoom_Instagram_Widget_API {
|
|
163 |
'https://graph.instagram.com/refresh_access_token'
|
164 |
);
|
165 |
|
166 |
-
$response =
|
167 |
$response_code = wp_remote_retrieve_response_code( $response );
|
168 |
|
169 |
if ( ! is_wp_error( $response ) ) {
|
@@ -278,7 +294,7 @@ class Wpzoom_Instagram_Widget_API {
|
|
278 |
'https://graph.instagram.com/me/media'
|
279 |
);
|
280 |
|
281 |
-
$response =
|
282 |
|
283 |
if ( is_wp_error( $response ) || 200 != wp_remote_retrieve_response_code( $response ) ) {
|
284 |
if ( ! $bypass_transient ) {
|
@@ -576,7 +592,7 @@ class Wpzoom_Instagram_Widget_API {
|
|
576 |
'https://graph.instagram.com/me'
|
577 |
);
|
578 |
|
579 |
-
$response =
|
580 |
|
581 |
if ( is_wp_error( $response ) || 200 != wp_remote_retrieve_response_code( $response ) ) {
|
582 |
set_transient( $transient, wp_json_encode( false ), MINUTE_IN_SECONDS );
|
@@ -617,7 +633,7 @@ class Wpzoom_Instagram_Widget_API {
|
|
617 |
'https://graph.instagram.com/me'
|
618 |
);
|
619 |
|
620 |
-
$response =
|
621 |
|
622 |
if ( ! is_wp_error( $response ) && 200 == wp_remote_retrieve_response_code( $response ) ) {
|
623 |
$output = json_decode( wp_remote_retrieve_body( $response ) );
|
@@ -712,7 +728,7 @@ class Wpzoom_Instagram_Widget_API {
|
|
712 |
'https://graph.instagram.com/me'
|
713 |
);
|
714 |
|
715 |
-
$response =
|
716 |
|
717 |
if ( is_wp_error( $response ) ) {
|
718 |
return $response;
|
107 |
$this->feed_id = $id;
|
108 |
}
|
109 |
|
110 |
+
/**
|
111 |
+
* Fetches a remote URL either safely or not, depending on a setting.
|
112 |
+
*
|
113 |
+
* @since 2.0.6
|
114 |
+
*
|
115 |
+
* @param string $url URL to retrieve.
|
116 |
+
* @param array $args Optional. Request arguments. Default empty array.
|
117 |
+
* @return array|WP_Error The response or WP_Error on failure.
|
118 |
+
*/
|
119 |
+
public static function remote_get( $url, $args = array() ) {
|
120 |
+
$settings = get_option( 'wpzoom-instagram-general-settings' );
|
121 |
+
$enable_unsafe_requests = ! empty( $settings['enable-unsafe-requests'] ) ? wp_validate_boolean( $settings['enable-unsafe-requests'] ) : false;
|
122 |
+
|
123 |
+
return $enable_unsafe_requests ? wp_remote_get( $url, $args ) : wp_safe_remote_get( $url, $args );
|
124 |
+
}
|
125 |
+
|
126 |
/**
|
127 |
* Register custom cron intervals
|
128 |
*
|
179 |
'https://graph.instagram.com/refresh_access_token'
|
180 |
);
|
181 |
|
182 |
+
$response = self::remote_get( $request_url, $this->headers );
|
183 |
$response_code = wp_remote_retrieve_response_code( $response );
|
184 |
|
185 |
if ( ! is_wp_error( $response ) ) {
|
294 |
'https://graph.instagram.com/me/media'
|
295 |
);
|
296 |
|
297 |
+
$response = self::remote_get( $request_url, $this->headers );
|
298 |
|
299 |
if ( is_wp_error( $response ) || 200 != wp_remote_retrieve_response_code( $response ) ) {
|
300 |
if ( ! $bypass_transient ) {
|
592 |
'https://graph.instagram.com/me'
|
593 |
);
|
594 |
|
595 |
+
$response = self::remote_get( $request_url, $this->headers );
|
596 |
|
597 |
if ( is_wp_error( $response ) || 200 != wp_remote_retrieve_response_code( $response ) ) {
|
598 |
set_transient( $transient, wp_json_encode( false ), MINUTE_IN_SECONDS );
|
633 |
'https://graph.instagram.com/me'
|
634 |
);
|
635 |
|
636 |
+
$response = self::remote_get( $request_url );
|
637 |
|
638 |
if ( ! is_wp_error( $response ) && 200 == wp_remote_retrieve_response_code( $response ) ) {
|
639 |
$output = json_decode( wp_remote_retrieve_body( $response ) );
|
728 |
'https://graph.instagram.com/me'
|
729 |
);
|
730 |
|
731 |
+
$response = self::remote_get( $request_url );
|
732 |
|
733 |
if ( is_wp_error( $response ) ) {
|
734 |
return $response;
|
class-wpzoom-instagram-widget-display.php
CHANGED
@@ -58,6 +58,7 @@ class Wpzoom_Instagram_Widget_Display {
|
|
58 |
* @return string The markup for the given feed.
|
59 |
*/
|
60 |
public function get_feed_output( int $feed_id ) {
|
|
|
61 |
if ( $feed_id > -1 ) {
|
62 |
$feed = get_post( $feed_id, OBJECT, 'display' );
|
63 |
|
@@ -184,19 +185,26 @@ class Wpzoom_Instagram_Widget_Display {
|
|
184 |
$show_user_bio = isset( $args['show-account-bio'] ) && boolval( $args['show-account-bio'] );
|
185 |
$user_bio = get_the_content( null, false, $user );
|
186 |
$show_user_image = isset( $args['show-account-image'] ) && boolval( $args['show-account-image'] );
|
187 |
-
$user_image = get_the_post_thumbnail_url( $user, 'thumbnail' ) ?: plugin_dir_url( __FILE__ ) . 'dist/images/backend/
|
188 |
$user_account_token = get_post_meta( $user_id, '_wpz-insta_token', true ) ?: '-1';
|
189 |
|
190 |
if ( '-1' !== $user_account_token ) {
|
191 |
$attrs = '';
|
192 |
-
$
|
|
|
193 |
$raw_layout = isset( $args['layout'] ) ? intval( $args['layout'] ) : 0;
|
194 |
$layout_int = $this->is_pro ? $raw_layout : ( $raw_layout > 1 ? 0 : $raw_layout );
|
195 |
$layout = isset( $layout_names[ $layout_int ] ) ? $layout_names[ $layout_int ] : 'grid';
|
|
|
196 |
$new_posts_interval_number = isset( $args['check-new-posts-interval-number'] ) ? intval( $args['check-new-posts-interval-number'] ) : 1;
|
197 |
$new_posts_interval_suffix = isset( $args['check-new-posts-interval-suffix'] ) ? intval( $args['check-new-posts-interval-suffix'] ) : 1;
|
198 |
$enable_request_timeout = isset( $args['enable-request-timeout'] ) ? boolval( $args['enable-request-timeout'] ) : false;
|
199 |
$amount = isset( $args['item-num'] ) ? intval( $args['item-num'] ) : 9;
|
|
|
|
|
|
|
|
|
|
|
200 |
$lightbox = isset( $args['lightbox'] ) ? boolval( $args['lightbox'] ) : true;
|
201 |
$show_view_on_insta_button = isset( $args['show-view-button' ] ) ? boolval( $args['show-view-button' ] ) : true;
|
202 |
$show_load_more_button = ( ! $this->is_pro && $preview ) || ( $this->is_pro && isset( $args['show-load-more'] ) && boolval( $args['show-load-more'] ) );
|
@@ -204,20 +212,55 @@ class Wpzoom_Instagram_Widget_Display {
|
|
204 |
$image_width = isset( $args['image-width'] ) ? intval( $args['image-width'] ) : 320;
|
205 |
$hide_video_thumbs = isset( $args['hide-video-thumbs'] ) ? boolval( $args['hide-video-thumbs'] ) : true;
|
206 |
|
|
|
|
|
|
|
207 |
if ( $lightbox ) {
|
208 |
$attrs .= ' data-lightbox="1"';
|
209 |
}
|
210 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
211 |
$this->api->set_access_token( $user_account_token );
|
212 |
|
213 |
if( isset( $args['feed-id'] ) ) {
|
214 |
$this->api->set_feed_id( $args['feed-id'] );
|
215 |
}
|
216 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
217 |
$items = $this->api->get_items( array( 'image-limit' => $amount, 'image-resolution' => $image_size, 'image-width' => $image_width, 'include-pagination' => true, 'bypass-transient' => $preview ) );
|
218 |
$errors = $this->api->errors->get_error_messages();
|
219 |
|
220 |
-
$output .= '<div class="zoom-instagram' .
|
221 |
|
222 |
if ( ! is_array( $items ) ) {
|
223 |
return $this->get_errors( $errors );
|
@@ -252,11 +295,21 @@ class Wpzoom_Instagram_Widget_Display {
|
|
252 |
$output .= '</header>';
|
253 |
}
|
254 |
|
255 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
256 |
$output .= self::items_html( $items['items'], $args );
|
257 |
-
$output .= '</ul
|
|
|
|
|
|
|
|
|
258 |
|
259 |
-
if ( $show_view_on_insta_button || ( $show_load_more_button && 'fullwidth' !== $layout ) ) {
|
260 |
$output .= '<div class="zoom-instagram-widget__footer">';
|
261 |
|
262 |
if ( $show_view_on_insta_button ) {
|
@@ -267,7 +320,7 @@ class Wpzoom_Instagram_Widget_Display {
|
|
267 |
$output .= '</a>';
|
268 |
}
|
269 |
|
270 |
-
if ( $show_load_more_button && 'fullwidth' !== $layout ) {
|
271 |
$output .= '<form method="POST" autocomplete="off" class="wpzinsta-pro-load-more"' . ( ! $this->is_pro ? ' disabled' : '' ) . '>';
|
272 |
$output .= wp_nonce_field( 'wpzinsta-pro-load-more', '_wpnonce', true, false );
|
273 |
$output .= '<input type="hidden" name="feed_id" value="' . esc_attr( isset( $args['feed-id'] ) ? intval( $args['feed-id'] ) : -1 ) . '" />';
|
@@ -314,12 +367,14 @@ class Wpzoom_Instagram_Widget_Display {
|
|
314 |
|
315 |
if ( ! empty( $items ) && is_array( $items ) ) {
|
316 |
$count = 0;
|
|
|
317 |
$amount = isset( $args['item-num'] ) ? intval( $args['item-num'] ) : 9;
|
318 |
$col_num = isset( $args['col-num'] ) && intval( $args['col-num'] ) !== 3 ? intval( $args['col-num'] ) : 3;
|
319 |
$show_overlay = isset( $args['show-overlay'] ) ? boolval( $args['show-overlay'] ) : true;
|
320 |
$show_insta_icon = isset( $args['hover-link'] ) ? boolval( $args['hover-link'] ) : true;
|
321 |
$show_media_type_icons = isset( $args['show-media-type-icons'] ) ? boolval( $args['show-media-type-icons'] ) : true;
|
322 |
$show_media_type_icons_on_hover = isset( $args['hover-media-type-icons'] ) ? boolval( $args['hover-media-type-icons'] ) : true;
|
|
|
323 |
$hide_video_thumbs = isset( $args['hide-video-thumbs'] ) ? boolval( $args['hide-video-thumbs'] ) : true;
|
324 |
$image_size = isset( $args['image-size'] ) && in_array( $args['image-size'], array( 'thumbnail', 'low_resolution', 'standard_resolution' ) ) ? $args['image-size'] : 'low_resolution';
|
325 |
$small_class = $image_size <= 180 ? 'small' : '';
|
@@ -378,9 +433,27 @@ class Wpzoom_Instagram_Widget_Display {
|
|
378 |
}
|
379 |
}
|
380 |
|
381 |
-
$
|
382 |
|
383 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
384 |
|
385 |
if ( $show_overlay ) {
|
386 |
$output .= '<div class="hover-layout zoom-instagram-widget__overlay zoom-instagram-widget__black ' . $small_class . '">';
|
@@ -398,6 +471,10 @@ class Wpzoom_Instagram_Widget_Display {
|
|
398 |
</div>';
|
399 |
}
|
400 |
|
|
|
|
|
|
|
|
|
401 |
if (! empty ( $show_insta_icon ) ) {
|
402 |
$output .= '<div class="zoom-instagram-icon-wrap"><a class="zoom-svg-instagram-stroke" href="' . $link . '" rel="noopener nofollow" target="_blank" title="' . $alt . '"></a></div>
|
403 |
<a class="zoom-instagram-link" data-src="' . $src . '" data-mfp-src="' . $media_id . '" href="' . $link . '" target="_blank" rel="noopener nofollow" title="' . $alt . '"></a>
|
@@ -442,7 +519,7 @@ class Wpzoom_Instagram_Widget_Display {
|
|
442 |
$count = 0;
|
443 |
$user_name = get_the_title( $user );
|
444 |
$user_name_display = sprintf( '@%s', $user_name );
|
445 |
-
$user_image = get_the_post_thumbnail_url( $user, 'thumbnail' ) ?: plugin_dir_url( __FILE__ ) . 'dist/images/backend/
|
446 |
|
447 |
foreach ( $items as $item ) {
|
448 |
$count++;
|
@@ -568,6 +645,8 @@ class Wpzoom_Instagram_Widget_Display {
|
|
568 |
$col_num = isset( $args['col-num'] ) && intval( $args['col-num'] ) !== 3 ? intval( $args['col-num'] ) : 3;
|
569 |
$spacing_between = isset( $args['spacing-between'] ) && intval( $args['spacing-between'] ) > -1 ? intval( $args['spacing-between'] ) : -1;
|
570 |
$spacing_between_suffix = $this->get_suffix( isset( $args['spacing-between-suffix'] ) ? intval( $args['spacing-between-suffix'] ) : 0 );
|
|
|
|
|
571 |
$button_bg = isset( $args['view-button-bg-color'] ) ? $this->validate_color( $args['view-button-bg-color'] ) : '';
|
572 |
$loadmore_bg = isset( $args['load-more-color'] ) ? $this->validate_color( $args['load-more-color'] ) : '';
|
573 |
$bg_color = isset( $args['bg-color'] ) ? $this->validate_color( $args['bg-color'] ) : '';
|
@@ -588,56 +667,74 @@ class Wpzoom_Instagram_Widget_Display {
|
|
588 |
$hover_bg_color = isset( $args['hover-bg-color'] ) ? $this->validate_color( $args['hover-bg-color'] ) : '';
|
589 |
|
590 |
if ( $font_size > -1 || ! empty( $bg_color ) || $spacing_around > -1 ) {
|
591 |
-
$output .= ".zoom-instagram
|
592 |
|
593 |
if ( $font_size > -1 ) {
|
594 |
-
$output .= "
|
595 |
}
|
596 |
|
597 |
if ( ! empty( $bg_color ) ) {
|
598 |
-
$output .= "
|
599 |
}
|
600 |
|
601 |
if ( $spacing_around > -1 ) {
|
602 |
-
$output .= "
|
603 |
}
|
604 |
|
605 |
-
$output .= "}
|
606 |
}
|
607 |
|
608 |
-
if (
|
609 |
-
$output .= ".zoom-instagram
|
|
|
|
|
610 |
|
611 |
-
if (
|
612 |
-
$output .= "
|
613 |
}
|
614 |
|
615 |
-
|
616 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
617 |
}
|
618 |
|
619 |
-
$
|
620 |
-
|
|
|
|
|
|
|
621 |
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
|
|
626 |
}
|
627 |
|
628 |
-
if ( $
|
629 |
-
$output .= ".zoom-instagram
|
|
|
|
|
630 |
}
|
631 |
|
632 |
if ( '' != $button_bg ) {
|
633 |
-
$output .= ".zoom-instagram
|
|
|
|
|
634 |
}
|
635 |
|
636 |
-
|
637 |
-
$output .= ".zoom-instagram" . $feed_id . " .wpzinsta-pro-load-more button[type=submit] {\n\tbackground-color: " . $loadmore_bg . " !important;\n}";
|
638 |
-
}
|
639 |
-
|
640 |
-
return $output;
|
641 |
}
|
642 |
|
643 |
/**
|
58 |
* @return string The markup for the given feed.
|
59 |
*/
|
60 |
public function get_feed_output( int $feed_id ) {
|
61 |
+
|
62 |
if ( $feed_id > -1 ) {
|
63 |
$feed = get_post( $feed_id, OBJECT, 'display' );
|
64 |
|
185 |
$show_user_bio = isset( $args['show-account-bio'] ) && boolval( $args['show-account-bio'] );
|
186 |
$user_bio = get_the_content( null, false, $user );
|
187 |
$show_user_image = isset( $args['show-account-image'] ) && boolval( $args['show-account-image'] );
|
188 |
+
$user_image = get_the_post_thumbnail_url( $user, 'thumbnail' ) ?: plugin_dir_url( __FILE__ ) . 'dist/images/backend/icon-insta.png';
|
189 |
$user_account_token = get_post_meta( $user_id, '_wpz-insta_token', true ) ?: '-1';
|
190 |
|
191 |
if ( '-1' !== $user_account_token ) {
|
192 |
$attrs = '';
|
193 |
+
$wrapper_classes = '';
|
194 |
+
$layout_names = array( 0 => 'grid', 1 => 'fullwidth', 2 => 'masonry', 3 => 'carousel' );
|
195 |
$raw_layout = isset( $args['layout'] ) ? intval( $args['layout'] ) : 0;
|
196 |
$layout_int = $this->is_pro ? $raw_layout : ( $raw_layout > 1 ? 0 : $raw_layout );
|
197 |
$layout = isset( $layout_names[ $layout_int ] ) ? $layout_names[ $layout_int ] : 'grid';
|
198 |
+
$col_num = isset( $args['col-num'] ) && intval( $args['col-num'] ) !== 3 ? intval( $args['col-num'] ) : 3;
|
199 |
$new_posts_interval_number = isset( $args['check-new-posts-interval-number'] ) ? intval( $args['check-new-posts-interval-number'] ) : 1;
|
200 |
$new_posts_interval_suffix = isset( $args['check-new-posts-interval-suffix'] ) ? intval( $args['check-new-posts-interval-suffix'] ) : 1;
|
201 |
$enable_request_timeout = isset( $args['enable-request-timeout'] ) ? boolval( $args['enable-request-timeout'] ) : false;
|
202 |
$amount = isset( $args['item-num'] ) ? intval( $args['item-num'] ) : 9;
|
203 |
+
$perpage = isset( $args['perpage-num'] ) ? intval( $args['perpage-num'] ) : 3;
|
204 |
+
$spacing_between = isset( $args['spacing-between'] ) && intval( $args['spacing-between'] ) > -1 ? intval( $args['spacing-between'] ) : -1;
|
205 |
+
$feat_layout_enabled = isset( $args['featured-layout-enable'] ) ? boolval( $args['featured-layout-enable'] ) : false;
|
206 |
+
$featured_layout = $feat_layout_enabled && isset( $args['featured-layout'] ) ? intval( $args['featured-layout'] ) : 0;
|
207 |
+
$featured_layout_class = $featured_layout > 0 ? sprintf( ' featured-layout featured-layout-%s', $featured_layout ) : '';
|
208 |
$lightbox = isset( $args['lightbox'] ) ? boolval( $args['lightbox'] ) : true;
|
209 |
$show_view_on_insta_button = isset( $args['show-view-button' ] ) ? boolval( $args['show-view-button' ] ) : true;
|
210 |
$show_load_more_button = ( ! $this->is_pro && $preview ) || ( $this->is_pro && isset( $args['show-load-more'] ) && boolval( $args['show-load-more'] ) );
|
212 |
$image_width = isset( $args['image-width'] ) ? intval( $args['image-width'] ) : 320;
|
213 |
$hide_video_thumbs = isset( $args['hide-video-thumbs'] ) ? boolval( $args['hide-video-thumbs'] ) : true;
|
214 |
|
215 |
+
$attrs .= ' data-layout="' . $layout . '"';
|
216 |
+
$attrs .= ' data-columns="' . $col_num . '"';
|
217 |
+
|
218 |
if ( $lightbox ) {
|
219 |
$attrs .= ' data-lightbox="1"';
|
220 |
}
|
221 |
|
222 |
+
if ( $spacing_between > -1 ) {
|
223 |
+
$attrs .= ' data-spacing="' . $spacing_between . '"';
|
224 |
+
}
|
225 |
+
|
226 |
+
if ( $perpage > 0 ) {
|
227 |
+
$attrs .= ' data-perpage="' . $perpage . '"';
|
228 |
+
}
|
229 |
+
|
230 |
+
if ( $featured_layout > 0 ) {
|
231 |
+
$attrs .= ' data-featured-layout="' . $featured_layout . '"';
|
232 |
+
}
|
233 |
+
|
234 |
$this->api->set_access_token( $user_account_token );
|
235 |
|
236 |
if( isset( $args['feed-id'] ) ) {
|
237 |
$this->api->set_feed_id( $args['feed-id'] );
|
238 |
}
|
239 |
|
240 |
+
if ( isset( $args['feed-id'] ) ) {
|
241 |
+
$wrapper_classes .= sprintf( ' feed-%d', intval( $args['feed-id'] ) );
|
242 |
+
}
|
243 |
+
|
244 |
+
$wrapper_classes .= sprintf( ' layout-%s', $layout );
|
245 |
+
$wrapper_classes .= $featured_layout_class;
|
246 |
+
$wrapper_classes .= ' columns-' . $col_num;
|
247 |
+
|
248 |
+
if ( $lightbox ) {
|
249 |
+
$wrapper_classes .= ' with-lightbox';
|
250 |
+
}
|
251 |
+
|
252 |
+
if ( $spacing_between > -1 ) {
|
253 |
+
$wrapper_classes .= ' spacing-' . $spacing_between;
|
254 |
+
}
|
255 |
+
|
256 |
+
if ( $perpage > 0 ) {
|
257 |
+
$wrapper_classes .= ' perpage-' . $perpage;
|
258 |
+
}
|
259 |
+
|
260 |
$items = $this->api->get_items( array( 'image-limit' => $amount, 'image-resolution' => $image_size, 'image-width' => $image_width, 'include-pagination' => true, 'bypass-transient' => $preview ) );
|
261 |
$errors = $this->api->errors->get_error_messages();
|
262 |
|
263 |
+
$output .= '<div class="zoom-instagram' . $wrapper_classes . '">';
|
264 |
|
265 |
if ( ! is_array( $items ) ) {
|
266 |
return $this->get_errors( $errors );
|
295 |
$output .= '</header>';
|
296 |
}
|
297 |
|
298 |
+
$classes = 'zoom-instagram-widget__items zoom-instagram-widget__items--no-js' . sprintf( ' layout-%s', $layout );
|
299 |
+
|
300 |
+
if ( $this->is_pro && 'carousel' === $layout ) {
|
301 |
+
$classes .= ' swiper-wrapper';
|
302 |
+
}
|
303 |
+
|
304 |
+
$output .= '<div class="zoom-instagram-widget__items-wrapper' . ( $this->is_pro && 'carousel' === $layout ? ' swiper-container' : '' ) . '"><ul class="' . $classes . '"' . $attrs . '>' . ( $this->is_pro && 'masonry' === $layout ? '<li class="masonry-items-sizer"></li>' : '' );
|
305 |
$output .= self::items_html( $items['items'], $args );
|
306 |
+
$output .= '</ul>';
|
307 |
+
if ( $this->is_pro && 'carousel' === $layout ) {
|
308 |
+
$output .= '<div class="swiper-button-prev"></div><div class="swiper-button-next"></div>';
|
309 |
+
}
|
310 |
+
$output .= '</div>';
|
311 |
|
312 |
+
if ( $show_view_on_insta_button || ( $show_load_more_button && 'fullwidth' !== $layout && 'carousel' !== $layout ) ) {
|
313 |
$output .= '<div class="zoom-instagram-widget__footer">';
|
314 |
|
315 |
if ( $show_view_on_insta_button ) {
|
320 |
$output .= '</a>';
|
321 |
}
|
322 |
|
323 |
+
if ( $show_load_more_button && 'fullwidth' !== $layout && 'carousel' !== $layout ) {
|
324 |
$output .= '<form method="POST" autocomplete="off" class="wpzinsta-pro-load-more"' . ( ! $this->is_pro ? ' disabled' : '' ) . '>';
|
325 |
$output .= wp_nonce_field( 'wpzinsta-pro-load-more', '_wpnonce', true, false );
|
326 |
$output .= '<input type="hidden" name="feed_id" value="' . esc_attr( isset( $args['feed-id'] ) ? intval( $args['feed-id'] ) : -1 ) . '" />';
|
367 |
|
368 |
if ( ! empty( $items ) && is_array( $items ) ) {
|
369 |
$count = 0;
|
370 |
+
$layout = isset( $args['layout'] ) ? intval( $args['layout'] ) : 0;
|
371 |
$amount = isset( $args['item-num'] ) ? intval( $args['item-num'] ) : 9;
|
372 |
$col_num = isset( $args['col-num'] ) && intval( $args['col-num'] ) !== 3 ? intval( $args['col-num'] ) : 3;
|
373 |
$show_overlay = isset( $args['show-overlay'] ) ? boolval( $args['show-overlay'] ) : true;
|
374 |
$show_insta_icon = isset( $args['hover-link'] ) ? boolval( $args['hover-link'] ) : true;
|
375 |
$show_media_type_icons = isset( $args['show-media-type-icons'] ) ? boolval( $args['show-media-type-icons'] ) : true;
|
376 |
$show_media_type_icons_on_hover = isset( $args['hover-media-type-icons'] ) ? boolval( $args['hover-media-type-icons'] ) : true;
|
377 |
+
$show_date_on_hover = isset( $args['hover-date'] ) ? boolval( $args['hover-date'] ) : true;
|
378 |
$hide_video_thumbs = isset( $args['hide-video-thumbs'] ) ? boolval( $args['hide-video-thumbs'] ) : true;
|
379 |
$image_size = isset( $args['image-size'] ) && in_array( $args['image-size'], array( 'thumbnail', 'low_resolution', 'standard_resolution' ) ) ? $args['image-size'] : 'low_resolution';
|
380 |
$small_class = $image_size <= 180 ? 'small' : '';
|
433 |
}
|
434 |
}
|
435 |
|
436 |
+
$classes = '';
|
437 |
|
438 |
+
if ( $show_media_type_icons ) {
|
439 |
+
$classes .= ' media-icons-normal';
|
440 |
+
}
|
441 |
+
|
442 |
+
if ( $show_media_type_icons_on_hover ) {
|
443 |
+
$classes .= ' media-icons-hover';
|
444 |
+
}
|
445 |
+
|
446 |
+
if ( $show_date_on_hover ) {
|
447 |
+
$classes .= ' date-hover';
|
448 |
+
}
|
449 |
+
|
450 |
+
if ( self::$instance->is_pro && 3 === $layout ) {
|
451 |
+
$classes .= ' swiper-slide';
|
452 |
+
}
|
453 |
+
|
454 |
+
$output .= '<li class="zoom-instagram-widget__item' . $classes . '" ' . $inline_attrs . '><div class="zoom-instagram-widget__item-inner-wrap">';
|
455 |
+
|
456 |
+
$output .= sprintf( '<img src="%1$s" width="%3$d" height="%2$d" alt="%4$s" />', esc_url( $src ), esc_attr( $width ), esc_attr( $height ), esc_attr( $alt ) );
|
457 |
|
458 |
if ( $show_overlay ) {
|
459 |
$output .= '<div class="hover-layout zoom-instagram-widget__overlay zoom-instagram-widget__black ' . $small_class . '">';
|
471 |
</div>';
|
472 |
}
|
473 |
|
474 |
+
if ( $show_date_on_hover && isset( $item['timestamp'] ) ) {
|
475 |
+
$output .= '<div class="zoom-instagram-date">' . sprintf( _x( '%1$s ago', '%2$s = human-readable time difference', 'instagram-widget-by-wpzoom' ), human_time_diff( strtotime( $item['timestamp'] ), current_time( 'timestamp' ) ) ) . '</div>';
|
476 |
+
}
|
477 |
+
|
478 |
if (! empty ( $show_insta_icon ) ) {
|
479 |
$output .= '<div class="zoom-instagram-icon-wrap"><a class="zoom-svg-instagram-stroke" href="' . $link . '" rel="noopener nofollow" target="_blank" title="' . $alt . '"></a></div>
|
480 |
<a class="zoom-instagram-link" data-src="' . $src . '" data-mfp-src="' . $media_id . '" href="' . $link . '" target="_blank" rel="noopener nofollow" title="' . $alt . '"></a>
|
519 |
$count = 0;
|
520 |
$user_name = get_the_title( $user );
|
521 |
$user_name_display = sprintf( '@%s', $user_name );
|
522 |
+
$user_image = get_the_post_thumbnail_url( $user, 'thumbnail' ) ?: plugin_dir_url( __FILE__ ) . 'dist/images/backend/icon-insta.png';
|
523 |
|
524 |
foreach ( $items as $item ) {
|
525 |
$count++;
|
645 |
$col_num = isset( $args['col-num'] ) && intval( $args['col-num'] ) !== 3 ? intval( $args['col-num'] ) : 3;
|
646 |
$spacing_between = isset( $args['spacing-between'] ) && intval( $args['spacing-between'] ) > -1 ? intval( $args['spacing-between'] ) : -1;
|
647 |
$spacing_between_suffix = $this->get_suffix( isset( $args['spacing-between-suffix'] ) ? intval( $args['spacing-between-suffix'] ) : 0 );
|
648 |
+
$feat_layout_enabled = isset( $args['featured-layout-enable'] ) ? boolval( $args['featured-layout-enable'] ) : false;
|
649 |
+
$featured_layout = isset( $args['featured-layout'] ) ? intval( $args['featured-layout'] ) : 0;
|
650 |
$button_bg = isset( $args['view-button-bg-color'] ) ? $this->validate_color( $args['view-button-bg-color'] ) : '';
|
651 |
$loadmore_bg = isset( $args['load-more-color'] ) ? $this->validate_color( $args['load-more-color'] ) : '';
|
652 |
$bg_color = isset( $args['bg-color'] ) ? $this->validate_color( $args['bg-color'] ) : '';
|
667 |
$hover_bg_color = isset( $args['hover-bg-color'] ) ? $this->validate_color( $args['hover-bg-color'] ) : '';
|
668 |
|
669 |
if ( $font_size > -1 || ! empty( $bg_color ) || $spacing_around > -1 ) {
|
670 |
+
$output .= ".zoom-instagram${feed_id}{";
|
671 |
|
672 |
if ( $font_size > -1 ) {
|
673 |
+
$output .= "font-size:${font_size}${font_size_suffix}!important;";
|
674 |
}
|
675 |
|
676 |
if ( ! empty( $bg_color ) ) {
|
677 |
+
$output .= "background-color:${bg_color}!important;";
|
678 |
}
|
679 |
|
680 |
if ( $spacing_around > -1 ) {
|
681 |
+
$output .= "padding:${spacing_around}${spacing_around_suffix}!important;";
|
682 |
}
|
683 |
|
684 |
+
$output .= "}";
|
685 |
}
|
686 |
|
687 |
+
if ( 0 === $layout ) {
|
688 |
+
$output .= ".zoom-instagram${feed_id} .zoom-instagram-widget__items{";
|
689 |
+
$output .= "display:grid!important;";
|
690 |
+
$output .= "grid-template-columns: repeat(${col_num}, 1fr);";
|
691 |
|
692 |
+
if ( $spacing_between > 0 ) {
|
693 |
+
$output .= "gap:${spacing_between}${spacing_between_suffix}!important;";
|
694 |
}
|
695 |
|
696 |
+
$output .= "}";
|
697 |
+
}
|
698 |
+
|
699 |
+
if ( $this->is_pro ) {
|
700 |
+
if ( 2 === $layout ) {
|
701 |
+
$output .= ".zoom-instagram${feed_id} .zoom-instagram-widget__item,.zoom-instagram${feed_id} .masonry-items-sizer{";
|
702 |
+
$output .= "width:calc(1/${col_num}*100%" . ( $spacing_between > 0 ? " - (1 - 1/${col_num})*${spacing_between}${spacing_between_suffix}" : "" ) . ")!important;";
|
703 |
+
$output .= "}";
|
704 |
+
|
705 |
+
if ( $spacing_between > 0 ) {
|
706 |
+
$output .= ".zoom-instagram${feed_id} .zoom-instagram-widget__item{";
|
707 |
+
$output .= "margin:0 0 ${spacing_between}${spacing_between_suffix}!important;";
|
708 |
+
$output .= "}";
|
709 |
+
}
|
710 |
}
|
711 |
|
712 |
+
if ( $border_radius > -1 ) {
|
713 |
+
$output .= ".zoom-instagram${feed_id} .zoom-instagram-widget__item .zoom-instagram-widget__item-inner-wrap{";
|
714 |
+
$output .= "border-radius:${border_radius}${border_radius_suffix}!important;";
|
715 |
+
$output .= "}";
|
716 |
+
}
|
717 |
|
718 |
+
if ( '' != $loadmore_bg ) {
|
719 |
+
$output .= ".zoom-instagram${feed_id} .wpzinsta-pro-load-more button[type=submit]{";
|
720 |
+
$output .= "background-color:${loadmore_bg}!important;";
|
721 |
+
$output .= "}";
|
722 |
+
}
|
723 |
}
|
724 |
|
725 |
+
if ( $image_width > -1 && 1 === $layout ) {
|
726 |
+
$output .= ".zoom-instagram${feed_id} .zoom-instagram-widget__items img{";
|
727 |
+
$output .= "width:${image_width}${image_width_suffix}!important;";
|
728 |
+
$output .= "}";
|
729 |
}
|
730 |
|
731 |
if ( '' != $button_bg ) {
|
732 |
+
$output .= ".zoom-instagram${feed_id} .wpz-insta-view-on-insta-button{";
|
733 |
+
$output .= "background-color:${button_bg}!important;";
|
734 |
+
$output .= "}";
|
735 |
}
|
736 |
|
737 |
+
return trim( $output );
|
|
|
|
|
|
|
|
|
738 |
}
|
739 |
|
740 |
/**
|
class-wpzoom-instagram-widget-settings.php
CHANGED
@@ -36,8 +36,11 @@ class WPZOOM_Instagram_Widget_Settings {
|
|
36 |
'layout' => array( 'type' => 'integer', 'default' => 0 ),
|
37 |
'item-num' => array( 'type' => 'integer', 'default' => 9 ),
|
38 |
'col-num' => array( 'type' => 'integer', 'default' => 3 ),
|
|
|
39 |
'spacing-between' => array( 'type' => 'number', 'default' => 10 ),
|
40 |
'spacing-between-suffix' => array( 'type' => 'integer', 'default' => 0 ),
|
|
|
|
|
41 |
'show-account-name' => array( 'type' => 'boolean', 'default' => true ),
|
42 |
'show-account-username' => array( 'type' => 'boolean', 'default' => true ),
|
43 |
'show-account-image' => array( 'type' => 'boolean', 'default' => true ),
|
@@ -64,7 +67,7 @@ class WPZOOM_Instagram_Widget_Settings {
|
|
64 |
'hover-link' => array( 'type' => 'boolean', 'default' => true ),
|
65 |
// 'hover-autoplay' => array( 'type' => 'boolean', 'default' => false ),
|
66 |
// 'hover-tags-feed' => array( 'type' => 'boolean', 'default' => false ),
|
67 |
-
|
68 |
'show-load-more' => array( 'type' => 'boolean', 'default' => true ),
|
69 |
'load-more-text' => array( 'type' => 'string', 'default' => 'Load More' ),
|
70 |
'load-more-color' => array( 'type' => 'string', 'default' => '' ),
|
@@ -641,7 +644,7 @@ class WPZOOM_Instagram_Widget_Settings {
|
|
641 |
|
642 |
case 'wpz-insta_account-photo' :
|
643 |
$photo_id = get_post_thumbnail_id( get_the_ID() ) ?: -1;
|
644 |
-
$photo_url = get_the_post_thumbnail_url( get_the_ID(), array( 100, 100 ) ) ?: plugins_url( '/dist/images/backend/
|
645 |
|
646 |
?><div class="wpz-insta_quick-edit"><ul class="wpz-insta_quick-edit-columns">
|
647 |
<li class="wpz-insta_account-photo-wrapper">
|
@@ -909,7 +912,7 @@ class WPZOOM_Instagram_Widget_Settings {
|
|
909 |
$token = get_post_meta( $post_id, '_wpz-insta_token', true );
|
910 |
$token_expire = $this->get_token_expire_display( $post_id );
|
911 |
$photo_id = get_post_thumbnail_id( $post_id ) ?: -1;
|
912 |
-
$photo_url = get_the_post_thumbnail_url( $post_id, array( 100, 100 ) ) ?: plugins_url( '/dist/images/backend/
|
913 |
$user_name = sanitize_text_field( get_post_meta( $post_id, '_wpz-insta_user_name', true ) );
|
914 |
$bio = get_the_content();
|
915 |
|
@@ -1101,59 +1104,59 @@ class WPZOOM_Instagram_Widget_Settings {
|
|
1101 |
|
1102 |
function edit_feed_content( $post ) {
|
1103 |
if ( 'wpz-insta_feed' == $post->post_type ) {
|
1104 |
-
$pro_toggle
|
1105 |
-
$none_label
|
1106 |
-
$user_id
|
1107 |
-
$user
|
1108 |
-
$user_edit_link
|
1109 |
-
$user_display_name
|
1110 |
-
$user_account_type
|
1111 |
-
$raw_token
|
1112 |
-
$user_account_token
|
1113 |
-
$new_posts_interval_number
|
1114 |
-
$new_posts_interval_suffix
|
1115 |
-
$enable_request_timeout
|
1116 |
-
$raw_feed_layout
|
1117 |
-
$feed_layout
|
1118 |
-
$feed_items_num
|
1119 |
-
$feed_cols_num
|
1120 |
-
$
|
1121 |
-
$
|
1122 |
-
$
|
1123 |
-
$
|
1124 |
-
$
|
1125 |
-
$
|
1126 |
-
$
|
1127 |
-
$
|
|
|
|
|
|
|
1128 |
$view_instagram_button_bg_color = (string) $this->validate_color( self::get_feed_setting_value( $post->ID, 'view-button-bg-color' ) );
|
1129 |
-
$feed_bg_color
|
1130 |
-
$feed_items_radius
|
1131 |
-
$feed_items_radius_suffix
|
1132 |
-
$feed_spacing_around
|
1133 |
-
$feed_spacing_around_suffix
|
1134 |
-
$feed_font_size
|
1135 |
-
$feed_font_size_suffix
|
1136 |
-
$lightbox
|
1137 |
-
$hide_video_thumbnails
|
1138 |
-
$show_overlay
|
1139 |
-
$lazy_load
|
1140 |
-
$show_media_type_icons
|
1141 |
-
$image_size
|
1142 |
-
$image_width
|
1143 |
-
$image_width_suffix
|
1144 |
-
$feed_hover_media_type_icons
|
1145 |
-
$feed_hover_link
|
1146 |
-
// $feed_hover_autoplay
|
1147 |
-
$feed_hover_tags_feed
|
1148 |
-
$feed_hover_date
|
1149 |
-
$show_load_more
|
1150 |
-
$load_more_text
|
1151 |
-
$load_more_color
|
1152 |
-
$feed_shortcode
|
1153 |
-
$all_users
|
1154 |
-
'numberposts' => -1,
|
1155 |
-
'post_type' => 'wpz-insta_user',
|
1156 |
-
) );
|
1157 |
|
1158 |
?>
|
1159 |
<div class="wpz-insta_tabs-content">
|
@@ -1282,18 +1285,15 @@ class WPZOOM_Instagram_Widget_Settings {
|
|
1282 |
</svg>
|
1283 |
</label>
|
1284 |
|
1285 |
-
<label class="wpz-insta_feed-layout-option wpz-insta_feed-layout-4 disabled">
|
1286 |
<input type="radio" name="_wpz-insta_layout" value="3"<?php checked( $feed_layout, 3 ); ?> />
|
1287 |
|
1288 |
<svg width="92" height="110" viewBox="0 0 92 110" xmlns="http://www.w3.org/2000/svg">
|
1289 |
<rect x="0.5" y="0.5" width="91" height="109" rx="3.5" fill-opacity="0.2" stroke="currentColor" />
|
1290 |
-
<rect x="
|
1291 |
-
<
|
1292 |
-
<
|
1293 |
-
<
|
1294 |
-
<rect x="61" y="53" width="22" height="22" rx="2" />
|
1295 |
-
<rect x="61" y="79" width="22" height="22" rx="2" />
|
1296 |
-
<path d="M11.5683 18H13.281V13.9837H17.662V18H19.3794V8.54545H17.662V12.5479H13.281V8.54545H11.5683V18ZM22.9548 8.54545H21.2421V18H22.9548V8.54545ZM31.1433 11.5646H32.8883C32.5975 9.70881 30.9909 8.41619 28.8997 8.41619C26.4252 8.41619 24.5694 10.2351 24.5694 13.282C24.5694 16.2734 26.3422 18.1293 28.9505 18.1293C31.291 18.1293 32.9668 16.6243 32.9668 14.1868V13.0511H29.1305V14.3899H31.3095C31.2818 15.7379 30.3816 16.592 28.9597 16.592C27.3762 16.592 26.2914 15.4055 26.2914 13.2635C26.2914 11.1353 27.3947 9.95348 28.9228 9.95348C30.063 9.95348 30.8386 10.5629 31.1433 11.5646ZM34.623 18H36.3357V13.9837H40.7167V18H42.434V8.54545H40.7167V12.5479H36.3357V8.54545H34.623V18ZM44.2968 18H50.1736V16.5643H46.0095V8.54545H44.2968V18ZM53.3728 8.54545H51.6601V18H53.3728V8.54545ZM61.5613 11.5646H63.3063C63.0154 9.70881 61.4089 8.41619 59.3176 8.41619C56.8432 8.41619 54.9874 10.2351 54.9874 13.282C54.9874 16.2734 56.7601 18.1293 59.3684 18.1293C61.709 18.1293 63.3848 16.6243 63.3848 14.1868V13.0511H59.5485V14.3899H61.7275C61.6998 15.7379 60.7995 16.592 59.3777 16.592C57.7942 16.592 56.7093 15.4055 56.7093 13.2635C56.7093 11.1353 57.8127 9.95348 59.3407 9.95348C60.481 9.95348 61.2566 10.5629 61.5613 11.5646ZM65.0409 18H66.7536V13.9837H71.1347V18H72.852V8.54545H71.1347V12.5479H66.7536V8.54545H65.0409V18ZM74.2993 9.98118H77.2215V18H78.9204V9.98118H81.8426V8.54545H74.2993V9.98118Z" />
|
1297 |
</svg>
|
1298 |
</label>
|
1299 |
|
@@ -1302,20 +1302,25 @@ class WPZOOM_Instagram_Widget_Settings {
|
|
1302 |
|
1303 |
<div class="wpz-insta_feed-layout-etc wpz-insta_table">
|
1304 |
<label class="wpz-insta_table-row">
|
1305 |
-
<strong class="wpz-insta_table-cell"><?php esc_html_e( 'Number of
|
1306 |
<div class="wpz-insta_table-cell"><input type="number" name="_wpz-insta_item-num" value="<?php echo esc_attr( $feed_items_num ); ?>" size="3" min="1" max="100" step="1" /></div>
|
1307 |
</label>
|
1308 |
|
1309 |
-
<label class="wpz-insta_table-row<?php echo 1 === $feed_layout ? ' hidden' : ''; ?>">
|
1310 |
<strong class="wpz-insta_table-cell"><?php esc_html_e( 'Number of columns', 'instagram-widget-by-wpzoom' ); ?></strong>
|
1311 |
<div class="wpz-insta_table-cell"><input type="number" name="_wpz-insta_col-num" value="<?php echo esc_attr( $feed_cols_num ); ?>" size="3" min="0" max="100" step="1" /></div>
|
1312 |
</label>
|
1313 |
|
|
|
|
|
|
|
|
|
|
|
1314 |
<label class="wpz-insta_table-row">
|
1315 |
-
<strong class="wpz-insta_table-cell"><?php esc_html_e( 'Padding around
|
1316 |
<div class="wpz-insta_table-cell">
|
1317 |
<div class="wpz-insta_suffixed-number-input">
|
1318 |
-
<input type="number" name="_wpz-insta_spacing-between" value="<?php echo esc_attr( $feed_spacing_between ); ?>" size="3" min="0" max="
|
1319 |
|
1320 |
<select name="_wpz-insta_spacing-between-suffix">
|
1321 |
<option value="0"<?php selected( $feed_spacing_between_suffix, 0 ); ?>><?php esc_html_e( 'px', 'instagram-widget-by-wpzoom' ); ?></option>
|
@@ -1325,6 +1330,78 @@ class WPZOOM_Instagram_Widget_Settings {
|
|
1325 |
</div>
|
1326 |
</div>
|
1327 |
</label>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1328 |
</div>
|
1329 |
</div>
|
1330 |
|
@@ -1461,10 +1538,10 @@ class WPZOOM_Instagram_Widget_Settings {
|
|
1461 |
<?php esc_html_e( 'Thumbnail (150x150)', 'instagram-widget-by-wpzoom' ); ?>
|
1462 |
</option>
|
1463 |
<option value="low_resolution"<?php selected( $image_size, 'low_resolution' ); ?>>
|
1464 |
-
<?php esc_html_e( '
|
1465 |
</option>
|
1466 |
<option value="standard_resolution"<?php selected( $image_size, 'standard_resolution' ); ?>>
|
1467 |
-
<?php esc_html_e( '
|
1468 |
</option>
|
1469 |
</select>
|
1470 |
</div>
|
@@ -1531,7 +1608,13 @@ class WPZOOM_Instagram_Widget_Settings {
|
|
1531 |
<span><?php esc_html_e( 'Instagram link', 'instagram-widget-by-wpzoom' ); ?></span>
|
1532 |
</label>
|
1533 |
|
1534 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1535 |
|
1536 |
<?php /* Coming Soon
|
1537 |
|
@@ -1547,13 +1630,7 @@ class WPZOOM_Instagram_Widget_Settings {
|
|
1547 |
<span><?php esc_html_e( 'Display a feed from tags', 'instagram-widget-by-wpzoom' ); ?></span>
|
1548 |
</label>
|
1549 |
|
1550 |
-
|
1551 |
-
<input type="hidden" name="_wpz-insta_hover-date" value="0" />
|
1552 |
-
<input type="checkbox" name="_wpz-insta_hover-date" value="1"<?php checked( $feed_hover_date ); disabled( $pro_toggle ); ?> />
|
1553 |
-
<span><?php esc_html_e( 'Date', 'instagram-widget-by-wpzoom' ); ?></span>
|
1554 |
-
</label>
|
1555 |
-
|
1556 |
-
*/ ?>
|
1557 |
|
1558 |
<?php echo $pro_toggle ? '</fieldset>' : ''; ?>
|
1559 |
</div>
|
@@ -1561,7 +1638,7 @@ class WPZOOM_Instagram_Widget_Settings {
|
|
1561 |
</div>
|
1562 |
</div>
|
1563 |
|
1564 |
-
<div class="wpz-insta_sidebar-section wpz-insta_sidebar-section-load-more<?php echo ( $pro_toggle ? ' wpz-insta_pro-only' : '' ) . ( 1 === $feed_layout ? ' hidden' : '' ); ?>">
|
1565 |
<h4 class="wpz-insta_sidebar-section-title smaller-title"><?php esc_html_e( 'Load More Posts', 'instagram-widget-by-wpzoom' ); ?></h4>
|
1566 |
|
1567 |
<div class="wpz-insta_feed-load-more-general wpz-insta_table">
|
@@ -2512,11 +2589,11 @@ class WPZOOM_Instagram_Widget_Settings {
|
|
2512 |
|
2513 |
<div class="wpz-insta-wrap wpz-insta_settings-connect">
|
2514 |
<h3 class="section-title"><?php _e( 'Let’s connect your Instagram account', 'instagram-widget-by-wpzoom' ); ?></h3>
|
2515 |
-
<p class="section-description"><?php _e( 'Are you connecting
|
2516 |
|
2517 |
<div class="account-options">
|
2518 |
<div class="account-option account-option_personal">
|
2519 |
-
<h4 class="account-option-title"><?php _e( '
|
2520 |
|
2521 |
<ul class="account-option-checklist">
|
2522 |
<li><?php _e( 'Connects directly through Instagram', 'instagram-widget-by-wpzoom' ); ?></li>
|
@@ -2530,12 +2607,12 @@ class WPZOOM_Instagram_Widget_Settings {
|
|
2530 |
<path d="M13.2356 3.72907C13.2356 4.25896 12.806 4.68861 12.2759 4.68861C11.7461 4.68861 11.3164 4.25896 11.3164 3.72907C11.3164 3.19906 11.7461 2.76953 12.2759 2.76953C12.806 2.76953 13.2356 3.19906 13.2356 3.72907Z" fill="#fff" />
|
2531 |
</svg>
|
2532 |
|
2533 |
-
<?php _e( 'Connect
|
2534 |
</a>
|
2535 |
</div>
|
2536 |
|
2537 |
<div class="account-option account-option_business">
|
2538 |
-
<h4 class="account-option-title"><?php _e( '
|
2539 |
|
2540 |
<ul class="account-option-checklist">
|
2541 |
<li><?php _e( 'Connects through your Facebook page', 'instagram-widget-by-wpzoom' ); ?></li>
|
@@ -2544,21 +2621,24 @@ class WPZOOM_Instagram_Widget_Settings {
|
|
2544 |
<li><?php _e( 'Show posts with a specific hashtag <small><em>Coming Soon</em></small>', 'instagram-widget-by-wpzoom' ); ?></li>
|
2545 |
</ul>
|
2546 |
|
2547 |
-
|
2548 |
-
<svg width="16" height="16" viewBox="0 0
|
2549 |
-
<path d="M15.9582 4.70406C15.9208 3.85391 15.7833 3.26945 15.5863 2.763C15.3832 2.22542 15.0706 1.74412 14.6611 1.34402C14.261 0.937686 13.7765 0.62195 13.2452 0.421959C12.7358 0.22502 12.1544 0.0875418 11.3042 0.0500587C10.4478 0.00940127 10.1758 0 8.00354 0C5.83123 0 5.55933 0.00940127 4.70601 0.0468843C3.85587 0.0843673 3.2714 0.221968 2.76507 0.418784C2.22737 0.62195 1.74607 0.934512 1.34597 1.34402C0.939639 1.74412 0.624025 2.22859 0.423912 2.75995C0.226973 3.26945 0.0894949 3.85074 0.0520119 4.70088C0.0113544 5.55738 0.00195312 5.82928 0.00195312 8.00159C0.00195312 10.1739 0.0113544 10.4458 0.0488374 11.2991C0.0863205 12.1493 0.223921 12.7337 0.420859 13.2402C0.624025 13.7778 0.939639 14.2591 1.34597 14.6592C1.74607 15.0655 2.23054 15.3812 2.7619 15.5812C3.2714 15.7782 3.85269 15.9156 4.70296 15.9531C5.55616 15.9907 5.82818 16 8.00049 16C10.1728 16 10.4447 15.9907 11.298 15.9531C12.1482 15.9156 12.7326 15.7782 13.239 15.5812C14.3142 15.1655 15.1644 14.3153 15.5801 13.2402C15.7769 12.7307 15.9145 12.1493 15.952 11.2991C15.9895 10.4458 15.9989 10.1739 15.9989 8.00159C15.9989 5.82928 15.9957 5.55738 15.9582 4.70406ZM14.5174 11.2366C14.483 12.018 14.3517 12.44 14.2423 12.7213C13.9735 13.4183 13.4203 13.9715 12.7232 14.2404C12.4419 14.3498 12.0169 14.481 11.2386 14.5153C10.3946 14.5529 10.1415 14.5622 8.00671 14.5622C5.87189 14.5622 5.61562 14.5529 4.77475 14.5153C3.99335 14.481 3.57139 14.3498 3.29008 14.2404C2.94321 14.1122 2.62747 13.909 2.3712 13.6433C2.10552 13.3839 1.90235 13.0713 1.77416 12.7244C1.66476 12.4431 1.53351 12.018 1.4992 11.2398C1.46159 10.3959 1.45231 10.1426 1.45231 8.00781C1.45231 5.87299 1.46159 5.61671 1.4992 4.77597C1.53351 3.99457 1.66476 3.57261 1.77416 3.2913C1.90235 2.94431 2.10552 2.6287 2.37437 2.3723C2.6337 2.10662 2.94626 1.90345 3.29326 1.77538C3.57456 1.66598 3.99969 1.53473 4.77792 1.5003C5.62184 1.46281 5.87507 1.45341 8.00977 1.45341C10.1478 1.45341 10.4009 1.46281 11.2417 1.5003C12.0231 1.53473 12.4451 1.66598 12.7264 1.77538C13.0733 1.90345 13.389 2.10662 13.6453 2.3723C13.911 2.63175 14.1141 2.94431 14.2423 3.2913C14.3517 3.57261 14.483 3.99762 14.5174 4.77597C14.5549 5.61989 14.5643 5.87299 14.5643 8.00781C14.5643 10.1426 14.5549 10.3927 14.5174 11.2366Z" fill="#fff" />
|
2550 |
-
<path d="M8.00375 3.89062C5.73462 3.89062 3.89355 5.73157 3.89355 8.00082C3.89355 10.2701 5.73462 12.111 8.00375 12.111C10.273 12.111 12.1139 10.2701 12.1139 8.00082C12.1139 5.73157 10.273 3.89062 8.00375 3.89062ZM8.00375 10.667C6.53165 10.667 5.33757 9.47303 5.33757 8.00082C5.33757 6.5286 6.53165 5.33464 8.00375 5.33464C9.47596 5.33464 10.6699 6.5286 10.6699 8.00082C10.6699 9.47303 9.47596 10.667 8.00375 10.667Z" fill="#fff" />
|
2551 |
-
<path d="M13.2356 3.72907C13.2356 4.25896 12.806 4.68861 12.2759 4.68861C11.7461 4.68861 11.3164 4.25896 11.3164 3.72907C11.3164 3.19906 11.7461 2.76953 12.2759 2.76953C12.806 2.76953 13.2356 3.19906 13.2356 3.72907Z" fill="#fff" />
|
2552 |
-
</svg>
|
2553 |
|
2554 |
-
<?php _e( '
|
2555 |
-
</
|
2556 |
</div>
|
2557 |
|
2558 |
<div class="account-option account-option_token">
|
2559 |
-
<h4 class="account-option-title"><?php _e( 'Connect
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2560 |
|
2561 |
-
|
2562 |
|
2563 |
<button id="wpz-insta_account-token-button" class="account-option-button disabled">
|
2564 |
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
|
@@ -2567,7 +2647,7 @@ class WPZOOM_Instagram_Widget_Settings {
|
|
2567 |
<path d="M13.2356 3.72907C13.2356 4.25896 12.806 4.68861 12.2759 4.68861C11.7461 4.68861 11.3164 4.25896 11.3164 3.72907C11.3164 3.19906 11.7461 2.76953 12.2759 2.76953C12.806 2.76953 13.2356 3.19906 13.2356 3.72907Z" fill="#fff" />
|
2568 |
</svg>
|
2569 |
|
2570 |
-
<?php _e( 'Connect', 'instagram-widget-by-wpzoom' ); ?>
|
2571 |
</button>
|
2572 |
</div>
|
2573 |
</div>
|
@@ -2662,7 +2742,7 @@ class WPZOOM_Instagram_Widget_Settings {
|
|
2662 |
'feeds_url' => admin_url( self::$any_feeds ? 'edit.php?post_type=wpz-insta_feed' : 'post-new.php?post_type=wpz-insta_feed' ),
|
2663 |
'edit_user_url' => admin_url( 'edit.php?post_type=wpz-insta_user#post-' ),
|
2664 |
'preview_url' => site_url( '?wpz-insta-widget-preview=true' ),
|
2665 |
-
'default_user_thumbnail' => plugins_url( '/dist/images/backend/
|
2666 |
)
|
2667 |
);
|
2668 |
}
|
36 |
'layout' => array( 'type' => 'integer', 'default' => 0 ),
|
37 |
'item-num' => array( 'type' => 'integer', 'default' => 9 ),
|
38 |
'col-num' => array( 'type' => 'integer', 'default' => 3 ),
|
39 |
+
'perpage-num' => array( 'type' => 'integer', 'default' => 3 ),
|
40 |
'spacing-between' => array( 'type' => 'number', 'default' => 10 ),
|
41 |
'spacing-between-suffix' => array( 'type' => 'integer', 'default' => 0 ),
|
42 |
+
'featured-layout-enable' => array( 'type' => 'boolean', 'default' => false ),
|
43 |
+
'featured-layout' => array( 'type' => 'integer', 'default' => 0 ),
|
44 |
'show-account-name' => array( 'type' => 'boolean', 'default' => true ),
|
45 |
'show-account-username' => array( 'type' => 'boolean', 'default' => true ),
|
46 |
'show-account-image' => array( 'type' => 'boolean', 'default' => true ),
|
67 |
'hover-link' => array( 'type' => 'boolean', 'default' => true ),
|
68 |
// 'hover-autoplay' => array( 'type' => 'boolean', 'default' => false ),
|
69 |
// 'hover-tags-feed' => array( 'type' => 'boolean', 'default' => false ),
|
70 |
+
'hover-date' => array( 'type' => 'boolean', 'default' => false ),
|
71 |
'show-load-more' => array( 'type' => 'boolean', 'default' => true ),
|
72 |
'load-more-text' => array( 'type' => 'string', 'default' => 'Load More' ),
|
73 |
'load-more-color' => array( 'type' => 'string', 'default' => '' ),
|
644 |
|
645 |
case 'wpz-insta_account-photo' :
|
646 |
$photo_id = get_post_thumbnail_id( get_the_ID() ) ?: -1;
|
647 |
+
$photo_url = get_the_post_thumbnail_url( get_the_ID(), array( 100, 100 ) ) ?: plugins_url( '/dist/images/backend/icon-insta.png', __FILE__ );
|
648 |
|
649 |
?><div class="wpz-insta_quick-edit"><ul class="wpz-insta_quick-edit-columns">
|
650 |
<li class="wpz-insta_account-photo-wrapper">
|
912 |
$token = get_post_meta( $post_id, '_wpz-insta_token', true );
|
913 |
$token_expire = $this->get_token_expire_display( $post_id );
|
914 |
$photo_id = get_post_thumbnail_id( $post_id ) ?: -1;
|
915 |
+
$photo_url = get_the_post_thumbnail_url( $post_id, array( 100, 100 ) ) ?: plugins_url( '/dist/images/backend/icon-insta.png', __FILE__ );
|
916 |
$user_name = sanitize_text_field( get_post_meta( $post_id, '_wpz-insta_user_name', true ) );
|
917 |
$bio = get_the_content();
|
918 |
|
1104 |
|
1105 |
function edit_feed_content( $post ) {
|
1106 |
if ( 'wpz-insta_feed' == $post->post_type ) {
|
1107 |
+
$pro_toggle = apply_filters( 'wpz-insta_admin-pro-options-toggle', true );
|
1108 |
+
$none_label = __( 'None', 'instagram-widget-by-wpzoom' );
|
1109 |
+
$user_id = (int) self::get_feed_setting_value( $post->ID, 'user-id' );
|
1110 |
+
$user = $user_id > 0 ? get_post( $user_id ) : null;
|
1111 |
+
$user_edit_link = $user instanceof WP_Post ? admin_url( 'edit.php?post_type=wpz-insta_user#post-' . $user_id ) : '';
|
1112 |
+
$user_display_name = $user instanceof WP_Post ? sprintf( '@%s', get_the_title( $user ) ) : $none_label;
|
1113 |
+
$user_account_type = $user instanceof WP_Post ? ucwords( strtolower( get_post_meta( $user_id, '_wpz-insta_account-type', true ) ?: $none_label ) ) : $none_label;
|
1114 |
+
$raw_token = get_post_meta( $user_id, '_wpz-insta_token', true );
|
1115 |
+
$user_account_token = $user instanceof WP_Post ? ( false !== $raw_token && ! empty( $raw_token ) ? $raw_token : '-1' ) : '-1';
|
1116 |
+
$new_posts_interval_number = (int) self::get_feed_setting_value( $post->ID, 'check-new-posts-interval-number' );
|
1117 |
+
$new_posts_interval_suffix = (int) self::get_feed_setting_value( $post->ID, 'check-new-posts-interval-suffix' );
|
1118 |
+
$enable_request_timeout = (bool) self::get_feed_setting_value( $post->ID, 'enable-request-timeout' );
|
1119 |
+
$raw_feed_layout = (int) self::get_feed_setting_value( $post->ID, 'layout' );
|
1120 |
+
$feed_layout = ! $pro_toggle ? $raw_feed_layout : ( $raw_feed_layout > 1 ? 0 : $raw_feed_layout );
|
1121 |
+
$feed_items_num = (int) self::get_feed_setting_value( $post->ID, 'item-num' );
|
1122 |
+
$feed_cols_num = (int) self::get_feed_setting_value( $post->ID, 'col-num' );
|
1123 |
+
$feed_perpage_num = (int) self::get_feed_setting_value( $post->ID, 'perpage-num' );
|
1124 |
+
$feed_spacing_between = (float) self::get_feed_setting_value( $post->ID, 'spacing-between' );
|
1125 |
+
$feed_spacing_between_suffix = (int) self::get_feed_setting_value( $post->ID, 'spacing-between-suffix' );
|
1126 |
+
$enable_featured_layout = (bool) self::get_feed_setting_value( $post->ID, 'featured-layout-enable' );
|
1127 |
+
$feed_featured_layout = (int) self::get_feed_setting_value( $post->ID, 'featured-layout' );
|
1128 |
+
$show_account_name = (bool) self::get_feed_setting_value( $post->ID, 'show-account-name' );
|
1129 |
+
$show_account_username = (bool) self::get_feed_setting_value( $post->ID, 'show-account-username' );
|
1130 |
+
$show_account_image = (bool) self::get_feed_setting_value( $post->ID, 'show-account-image' );
|
1131 |
+
$show_account_bio = (bool) self::get_feed_setting_value( $post->ID, 'show-account-bio' );
|
1132 |
+
$show_view_instagram_button = (bool) self::get_feed_setting_value( $post->ID, 'show-view-button' );
|
1133 |
+
$view_instagram_button_text = (string) self::get_feed_setting_value( $post->ID, 'view-button-text' );
|
1134 |
$view_instagram_button_bg_color = (string) $this->validate_color( self::get_feed_setting_value( $post->ID, 'view-button-bg-color' ) );
|
1135 |
+
$feed_bg_color = (string) $this->validate_color( self::get_feed_setting_value( $post->ID, 'bg-color' ) );
|
1136 |
+
$feed_items_radius = (float) self::get_feed_setting_value( $post->ID, 'border-radius' );
|
1137 |
+
$feed_items_radius_suffix = (int) self::get_feed_setting_value( $post->ID, 'border-radius-suffix' );
|
1138 |
+
$feed_spacing_around = (float) self::get_feed_setting_value( $post->ID, 'spacing-around' );
|
1139 |
+
$feed_spacing_around_suffix = (int) self::get_feed_setting_value( $post->ID, 'spacing-around-suffix' );
|
1140 |
+
$feed_font_size = (float) self::get_feed_setting_value( $post->ID, 'font-size' );
|
1141 |
+
$feed_font_size_suffix = (int) self::get_feed_setting_value( $post->ID, 'font-size-suffix' );
|
1142 |
+
$lightbox = (bool) self::get_feed_setting_value( $post->ID, 'lightbox' );
|
1143 |
+
$hide_video_thumbnails = (bool) self::get_feed_setting_value( $post->ID, 'hide-video-thumbs' );
|
1144 |
+
$show_overlay = (bool) self::get_feed_setting_value( $post->ID, 'show-overlay' );
|
1145 |
+
$lazy_load = (bool) self::get_feed_setting_value( $post->ID, 'lazy-load' );
|
1146 |
+
$show_media_type_icons = (bool) self::get_feed_setting_value( $post->ID, 'show-media-type-icons' );
|
1147 |
+
$image_size = (string) self::get_feed_setting_value( $post->ID, 'image-size' );
|
1148 |
+
$image_width = (float) self::get_feed_setting_value( $post->ID, 'image-width' );
|
1149 |
+
$image_width_suffix = (int) self::get_feed_setting_value( $post->ID, 'image-width-suffix' );
|
1150 |
+
$feed_hover_media_type_icons = (bool) self::get_feed_setting_value( $post->ID, 'hover-media-type-icons' );
|
1151 |
+
$feed_hover_link = (bool) self::get_feed_setting_value( $post->ID, 'hover-link' );
|
1152 |
+
// $feed_hover_autoplay = (bool) self::get_feed_setting_value( $post->ID, 'hover-autoplay' );
|
1153 |
+
$feed_hover_tags_feed = (bool) self::get_feed_setting_value( $post->ID, 'hover-tags-feed' );
|
1154 |
+
$feed_hover_date = (bool) self::get_feed_setting_value( $post->ID, 'hover-date' );
|
1155 |
+
$show_load_more = (bool) self::get_feed_setting_value( $post->ID, 'show-load-more' );
|
1156 |
+
$load_more_text = (string) self::get_feed_setting_value( $post->ID, 'load-more-text' );
|
1157 |
+
$load_more_color = (string) self::validate_color( self::get_feed_setting_value( $post->ID, 'load-more-color' ) );
|
1158 |
+
$feed_shortcode = sprintf( _x( '[instagram feed="%s"]', 'Instagram Feed Shortcode', 'instagram-widget-by-wpzoom' ), $post->ID );
|
1159 |
+
$all_users = get_posts( array( 'numberposts' => -1, 'post_type' => 'wpz-insta_user' ) );
|
|
|
|
|
|
|
1160 |
|
1161 |
?>
|
1162 |
<div class="wpz-insta_tabs-content">
|
1285 |
</svg>
|
1286 |
</label>
|
1287 |
|
1288 |
+
<label class="wpz-insta_feed-layout-option wpz-insta_feed-layout-4<?php echo $pro_toggle ? ' disabled' : ''; ?>">
|
1289 |
<input type="radio" name="_wpz-insta_layout" value="3"<?php checked( $feed_layout, 3 ); ?> />
|
1290 |
|
1291 |
<svg width="92" height="110" viewBox="0 0 92 110" xmlns="http://www.w3.org/2000/svg">
|
1292 |
<rect x="0.5" y="0.5" width="91" height="109" rx="3.5" fill-opacity="0.2" stroke="currentColor" />
|
1293 |
+
<rect x="21" y="38" width="50" height="50" rx="2" />
|
1294 |
+
<path d="M79.3333 67.5846L83.4999 63.0013L79.3333 58.418" stroke-width="1.5" />
|
1295 |
+
<path d="M12.6667 58.4154L8.50008 62.9987L12.6667 67.582" stroke-width="1.5" />
|
1296 |
+
<path d="M20.1688 11.7354C19.8779 9.63494 18.2622 8.41619 16.1663 8.41619C13.6965 8.41619 11.836 10.2166 11.836 13.2727C11.836 16.3242 13.6734 18.1293 16.1663 18.1293C18.4145 18.1293 19.9056 16.6751 20.1688 14.87L18.4422 14.8608C18.2252 15.9688 17.3204 16.592 16.1894 16.592C14.6567 16.592 13.558 15.4425 13.558 13.2727C13.558 11.1399 14.6475 9.95348 16.194 9.95348C17.3435 9.95348 18.2437 10.6044 18.4422 11.7354H20.1688ZM22.8371 18L23.6173 15.6687H27.172L27.9568 18H29.7849L26.4518 8.54545H24.3374L21.009 18H22.8371ZM24.0789 14.293L25.3577 10.4844H25.4316L26.7103 14.293H24.0789ZM31.0302 18H32.7429V14.5376H34.4879L36.3438 18H38.255L36.2099 14.2514C37.3224 13.8036 37.9087 12.8526 37.9087 11.5692C37.9087 9.7642 36.7454 8.54545 34.5756 8.54545H31.0302V18ZM32.7429 13.1158V9.97656H34.3125C35.5913 9.97656 36.1637 10.5629 36.1637 11.5692C36.1637 12.5756 35.5913 13.1158 34.3217 13.1158H32.7429ZM47.9334 13.2727C47.9334 10.2166 46.0684 8.41619 43.5893 8.41619C41.1056 8.41619 39.2452 10.2166 39.2452 13.2727C39.2452 16.3242 41.1056 18.1293 43.5893 18.1293C46.0684 18.1293 47.9334 16.3288 47.9334 13.2727ZM46.2115 13.2727C46.2115 15.424 45.1312 16.592 43.5893 16.592C42.052 16.592 40.9672 15.424 40.9672 13.2727C40.9672 11.1214 42.052 9.95348 43.5893 9.95348C45.1312 9.95348 46.2115 11.1214 46.2115 13.2727ZM55.5125 8.54545V14.5792C55.5125 15.7656 54.6862 16.6151 53.3889 16.6151C52.0871 16.6151 51.2654 15.7656 51.2654 14.5792V8.54545H49.5526V14.7223C49.5526 16.7536 51.0761 18.1431 53.3889 18.1431C55.6926 18.1431 57.2252 16.7536 57.2252 14.7223V8.54545H55.5125ZM64.225 11.1445H65.873C65.8407 9.54723 64.4789 8.41619 62.4661 8.41619C60.481 8.41619 58.9899 9.53338 58.9945 11.2045C58.9945 12.5618 59.9593 13.342 61.5151 13.7436L62.5907 14.0206C63.611 14.2791 64.285 14.5977 64.2896 15.3317C64.285 16.1396 63.5186 16.6797 62.4015 16.6797C61.3304 16.6797 60.4995 16.1996 60.4302 15.207H58.7452C58.8145 17.0859 60.2132 18.1431 62.4153 18.1431C64.682 18.1431 65.9977 17.0121 66.0023 15.3455C65.9977 13.7067 64.6451 12.9588 63.2232 12.6218L62.3368 12.4002C61.5613 12.2156 60.7211 11.8878 60.7303 11.0984C60.7349 10.3874 61.372 9.86577 62.443 9.86577C63.4632 9.86577 64.1373 10.3413 64.225 11.1445ZM67.5292 18H73.7153V16.5643H69.2419V13.9837H73.3598V12.5479H69.2419V9.98118H73.6784V8.54545H67.5292V18ZM75.4257 18H81.3025V16.5643H77.1384V8.54545H75.4257V18Z" />
|
|
|
|
|
|
|
1297 |
</svg>
|
1298 |
</label>
|
1299 |
|
1302 |
|
1303 |
<div class="wpz-insta_feed-layout-etc wpz-insta_table">
|
1304 |
<label class="wpz-insta_table-row">
|
1305 |
+
<strong class="wpz-insta_table-cell"><?php esc_html_e( 'Number of items', 'instagram-widget-by-wpzoom' ); ?></strong>
|
1306 |
<div class="wpz-insta_table-cell"><input type="number" name="_wpz-insta_item-num" value="<?php echo esc_attr( $feed_items_num ); ?>" size="3" min="1" max="100" step="1" /></div>
|
1307 |
</label>
|
1308 |
|
1309 |
+
<label class="wpz-insta_table-row<?php echo 1 === $feed_layout || 3 === $feed_layout ? ' hidden' : ''; ?>">
|
1310 |
<strong class="wpz-insta_table-cell"><?php esc_html_e( 'Number of columns', 'instagram-widget-by-wpzoom' ); ?></strong>
|
1311 |
<div class="wpz-insta_table-cell"><input type="number" name="_wpz-insta_col-num" value="<?php echo esc_attr( $feed_cols_num ); ?>" size="3" min="0" max="100" step="1" /></div>
|
1312 |
</label>
|
1313 |
|
1314 |
+
<label class="wpz-insta_table-row<?php echo 3 !== $feed_layout ? ' hidden' : ''; ?>">
|
1315 |
+
<strong class="wpz-insta_table-cell"><?php esc_html_e( 'Number of visible items', 'instagram-widget-by-wpzoom' ); ?></strong>
|
1316 |
+
<div class="wpz-insta_table-cell"><input type="number" name="_wpz-insta_perpage-num" value="<?php echo esc_attr( $feed_perpage_num ); ?>" size="3" min="1" max="100" step="1" /></div>
|
1317 |
+
</label>
|
1318 |
+
|
1319 |
<label class="wpz-insta_table-row">
|
1320 |
+
<strong class="wpz-insta_table-cell"><?php esc_html_e( 'Padding around items', 'instagram-widget-by-wpzoom' ); ?></strong>
|
1321 |
<div class="wpz-insta_table-cell">
|
1322 |
<div class="wpz-insta_suffixed-number-input">
|
1323 |
+
<input type="number" name="_wpz-insta_spacing-between" value="<?php echo esc_attr( $feed_spacing_between ); ?>" size="3" min="0" max="100" step="1" />
|
1324 |
|
1325 |
<select name="_wpz-insta_spacing-between-suffix">
|
1326 |
<option value="0"<?php selected( $feed_spacing_between_suffix, 0 ); ?>><?php esc_html_e( 'px', 'instagram-widget-by-wpzoom' ); ?></option>
|
1330 |
</div>
|
1331 |
</div>
|
1332 |
</label>
|
1333 |
+
|
1334 |
+
<?php echo $pro_toggle ? '<fieldset class="wpz-insta_feed-only-pro wpz-insta_pro-only wpz-insta_pro-only-with-bottom"><legend><strong>' . esc_html__( 'PRO', 'instagram-widget-by-wpzoom' ) . '</strong></legend>' : ''; ?>
|
1335 |
+
|
1336 |
+
<div class="wpz-insta_table-row wpz-insta_table-row-full wpz-insta_table-row-featured-layout<?php echo ( 0 === $feed_layout && $feed_cols_num > 2 && $feed_cols_num < 7 ? '' : ' hidden' ) . ( ! $pro_toggle ? '' : ' pro-only-wrapper' ); ?>">
|
1337 |
+
<strong class="wpz-insta_table-cell table-cell-special">
|
1338 |
+
<label for="_wpz-insta_featured-layout-enable"><?php esc_html_e( 'Highlight items', 'instagram-widget-by-wpzoom' ); ?></label>
|
1339 |
+
|
1340 |
+
<?php if ( ! $pro_toggle ) { ?>
|
1341 |
+
<input type="hidden" name="_wpz-insta_featured-layout-enable" value="0" />
|
1342 |
+
<input type="checkbox" name="_wpz-insta_featured-layout-enable" id="_wpz-insta_featured-layout-enable" value="1"<?php checked( $enable_featured_layout ); ?> />
|
1343 |
+
<?php } ?>
|
1344 |
+
</strong>
|
1345 |
+
|
1346 |
+
<p class="description"><small><em><?php esc_html_e( 'Works only 3-6 columns', 'instagram-widget-by-wpzoom' ); ?></em></small></p>
|
1347 |
+
|
1348 |
+
|
1349 |
+
<div class="wpz-insta_table-cell">
|
1350 |
+
<?php if ( ! $pro_toggle ) { ?>
|
1351 |
+
<div class="wpz-insta_image-select<?php echo $enable_featured_layout ? '' : ' hidden'; ?>">
|
1352 |
+
<?php
|
1353 |
+
$featured_layouts = array(
|
1354 |
+
3 => array(
|
1355 |
+
1 => '<svg width="80" viewBox="0 0 380 1045" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="fadeGrad1"x1="0"y1="0"x2="0"y2="1"><stop offset="0.95"stop-color="white"stop-opacity="1"/><stop offset="1"stop-color="white"stop-opacity="0"/></linearGradient><mask id="fadeMask1"x="0"y="0"width="1"height="1"maskContentUnits="objectBoundingBox"><rect x="0"y="0"width="1"height="1"fill="url(#fadeGrad1)"/></mask></defs><g mask="url(#fadeMask1)"><rect width="246"height="246"rx="12"/><rect x="266"y="0"width="112"height="112"rx="12"/><rect x="266"y="133"width="112"height="112"rx="12"/><rect x="0"y="266"width="112"height="112"rx="12"/><rect x="133"y="266"width="112"height="112"rx="12"/><rect x="266"y="266"width="112"height="112"rx="12"/><rect x="0"y="400"width="112"height="112"rx="12"/><rect x="133"y="400"width="112"height="112"rx="12"/><rect x="266"y="400"width="112"height="112"rx="12"/><rect x="0"y="533"width="112"height="112"rx="12"/><rect x="133"y="533"width="112"height="112"rx="12"/><rect x="266"y="533"width="112"height="112"rx="12"/><rect x="0"y="666"width="112"height="112"rx="12"/><rect x="133"y="666"width="112"height="112"rx="12"/><rect x="266"y="666"width="112"height="112"rx="12"/><rect x="0"y="799"width="112"height="112"rx="12"/><rect x="133"y="799"width="112"height="112"rx="12"/><rect x="266"y="799"width="112"height="112"rx="12"/><rect x="0"y="932"width="112"height="112"rx="12"/><rect x="133"y="932"width="112"height="112"rx="12"/><rect x="266"y="932"width="112"height="112"rx="12"/></g></svg>',
|
1356 |
+
2 => '<svg width="80" viewBox="0 0 380 1045" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="fadeGrad2"x1="0"y1="0"x2="0"y2="1"><stop offset="0.95"stop-color="white"stop-opacity="1"/><stop offset="1"stop-color="white"stop-opacity="0"/></linearGradient><mask id="fadeMask2"x="0"y="0"width="1"height="1"maskContentUnits="objectBoundingBox"><rect x="0"y="0"width="1"height="1"fill="url(#fadeGrad2)"/></mask></defs><g mask="url(#fadeMask2)"><rect width="246"height="246"rx="12"/><rect x="266"y="0"width="112"height="112"rx="12"/><rect x="266"y="133"width="112"height="112"rx="12"/><rect x="0"y="266"width="112"height="112"rx="12"/><rect x="133"y="266"width="112"height="112"rx="12"/><rect x="266"y="266"width="112"height="112"rx="12"/><rect x="0"y="400"width="112"height="112"rx="12"/><rect x="133"y="400"width="246"height="246"rx="12"/><rect x="0"y="533"width="112"height="112"rx="12"/><rect x="0"y="666"width="112"height="112"rx="12"/><rect x="133"y="666"width="112"height="112"rx="12"/><rect x="266"y="666"width="112"height="112"rx="12"/><rect x="0"y="799"width="246"height="246"rx="12"/><rect x="266"y="799"width="112"height="112"rx="12"/><rect x="266"y="932"width="112"height="112"rx="12"/></g></svg>',
|
1357 |
+
3 => '<svg width="80" viewBox="0 0 380 1045" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="fadeGrad3"x1="0"y1="0"x2="0"y2="1"><stop offset="0.95"stop-color="white"stop-opacity="1"/><stop offset="1"stop-color="white"stop-opacity="0"/></linearGradient><mask id="fadeMask3"x="0"y="0"width="1"height="1"maskContentUnits="objectBoundingBox"><rect x="0"y="0"width="1"height="1"fill="url(#fadeGrad3)"/></mask></defs><g mask="url(#fadeMask3)"><rect width="246"height="246"rx="12"/><rect x="266"y="0"width="112"height="112"rx="12"/><rect x="266"y="133"width="112"height="112"rx="12"/><rect x="0"y="266"width="112"height="112"rx="12"/><rect x="0"y="400"width="112"height="112"rx="12"/><rect x="133"y="266"width="246"height="246"rx="12"/><rect x="0"y="533"width="246"height="246"rx="12"/><rect x="266"y="533"width="112"height="112"rx="12"/><rect x="266"y="666"width="112"height="112"rx="12"/><rect x="0"y="799"width="112"height="112"rx="12"/><rect x="0"y="932"width="112"height="112"rx="12"/><rect x="133"y="799"width="246"height="246"rx="12"/></g></svg>',
|
1358 |
+
4 => '<svg width="80" viewBox="0 0 380 1045" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="fadeGrad4"x1="0"y1="0"x2="0"y2="1"><stop offset="0.95"stop-color="white"stop-opacity="1"/><stop offset="1"stop-color="white"stop-opacity="0"/></linearGradient><mask id="fadeMask4"x="0"y="0"width="1"height="1"maskContentUnits="objectBoundingBox"><rect x="0"y="0"width="1"height="1"fill="url(#fadeGrad4)"/></mask></defs><g mask="url(#fadeMask4)"><rect width="379"height="379"rx="12"/><rect x="0"y="400"width="112"height="112"rx="12"/><rect x="133"y="400"width="112"height="112"rx="12"/><rect x="266"y="400"width="112"height="112"rx="12"/><rect x="0"y="533"width="112"height="112"rx="12"/><rect x="133"y="533"width="112"height="112"rx="12"/><rect x="266"y="533"width="112"height="112"rx="12"/><rect x="0"y="666"width="112"height="112"rx="12"/><rect x="133"y="666"width="112"height="112"rx="12"/><rect x="266"y="666"width="112"height="112"rx="12"/><rect x="0"y="799"width="112"height="112"rx="12"/><rect x="133"y="799"width="112"height="112"rx="12"/><rect x="266"y="799"width="112"height="112"rx="12"/><rect x="0"y="932"width="112"height="112"rx="12"/><rect x="133"y="932"width="112"height="112"rx="12"/><rect x="266"y="932"width="112"height="112"rx="12"/></g></svg>',
|
1359 |
+
5 => '<svg width="80" viewBox="0 0 380 1045" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="fadeGrad5"x1="0"y1="0"x2="0"y2="1"><stop offset="0.95"stop-color="white"stop-opacity="1"/><stop offset="1"stop-color="white"stop-opacity="0"/></linearGradient><mask id="fadeMask5"x="0"y="0"width="1"height="1"maskContentUnits="objectBoundingBox"><rect x="0"y="0"width="1"height="1"fill="url(#fadeGrad5)"/></mask></defs><g mask="url(#fadeMask5)"><rect width="379"height="379"rx="12"/><rect x="0"y="400"width="112"height="112"rx="12"/><rect x="133"y="400"width="112"height="112"rx="12"/><rect x="266"y="400"width="112"height="112"rx="12"/><rect x="0"y="533"width="112"height="112"rx="12"/><rect x="133"y="533"width="112"height="112"rx="12"/><rect x="266"y="533"width="112"height="112"rx="12"/><rect x="0"y="666"width="379"height="379"rx="12"/></g></svg>',
|
1360 |
+
),
|
1361 |
+
4 => array(
|
1362 |
+
6 => '<svg width="80" viewBox="0 0 380 968" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="fadeGrad6"x1="0"y1="0"x2="0"y2="1"><stop offset="0.95"stop-color="white"stop-opacity="1"/><stop offset="1"stop-color="white"stop-opacity="0"/></linearGradient><mask id="fadeMask6"x="0"y="0"width="1"height="1"maskContentUnits="objectBoundingBox"><rect x="0"y="0"width="1"height="1"fill="url(#fadeGrad6)"/></mask></defs><g mask="url(#fadeMask6)"><rect width="184"height="184"rx="12"/><rect x="196"y="0"width="86"height="86"rx="12"/><rect x="294"y="0"width="86"height="86"rx="12"/><rect x="196"y="98"width="86"height="86"rx="12"/><rect x="294"y="98"width="86"height="86"rx="12"/><rect x="0"y="196"width="86"height="86"rx="12"/><rect x="98"y="196"width="86"height="86"rx="12"/><rect x="196"y="196"width="86"height="86"rx="12"/><rect x="294"y="196"width="86"height="86"rx="12"/><rect x="0"y="294"width="86"height="86"rx="12"/><rect x="98"y="294"width="86"height="86"rx="12"/><rect x="196"y="294"width="86"height="86"rx="12"/><rect x="294"y="294"width="86"height="86"rx="12"/><rect x="0"y="392"width="86"height="86"rx="12"/><rect x="98"y="392"width="86"height="86"rx="12"/><rect x="196"y="392"width="86"height="86"rx="12"/><rect x="294"y="392"width="86"height="86"rx="12"/><rect x="0"y="490"width="86"height="86"rx="12"/><rect x="98"y="490"width="86"height="86"rx="12"/><rect x="196"y="490"width="86"height="86"rx="12"/><rect x="294"y="490"width="86"height="86"rx="12"/><rect x="0"y="588"width="86"height="86"rx="12"/><rect x="98"y="588"width="86"height="86"rx="12"/><rect x="196"y="588"width="86"height="86"rx="12"/><rect x="294"y="588"width="86"height="86"rx="12"/><rect x="0"y="686"width="86"height="86"rx="12"/><rect x="98"y="686"width="86"height="86"rx="12"/><rect x="196"y="686"width="86"height="86"rx="12"/><rect x="294"y="686"width="86"height="86"rx="12"/><rect x="0"y="784"width="86"height="86"rx="12"/><rect x="98"y="784"width="86"height="86"rx="12"/><rect x="196"y="784"width="86"height="86"rx="12"/><rect x="294"y="784"width="86"height="86"rx="12"/><rect x="0"y="882"width="86"height="86"rx="12"/><rect x="98"y="882"width="86"height="86"rx="12"/><rect x="196"y="882"width="86"height="86"rx="12"/><rect x="294"y="882"width="86"height="86"rx="12"/></g></svg>',
|
1363 |
+
7 => '<svg width="80" viewBox="0 0 380 968" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="fadeGrad7"x1="0"y1="0"x2="0"y2="1"><stop offset="0.95"stop-color="white"stop-opacity="1"/><stop offset="1"stop-color="white"stop-opacity="0"/></linearGradient><mask id="fadeMask7"x="0"y="0"width="1"height="1"maskContentUnits="objectBoundingBox"><rect x="0"y="0"width="1"height="1"fill="url(#fadeGrad7)"/></mask></defs><g mask="url(#fadeMask7)"><rect width="184"height="184"rx="12"/><rect x="196"y="0"width="86"height="86"rx="12"/><rect x="294"y="0"width="86"height="86"rx="12"/><rect x="196"y="98"width="86"height="86"rx="12"/><rect x="294"y="98"width="86"height="86"rx="12"/><rect x="0"y="196"width="86"height="86"rx="12"/><rect x="98"y="196"width="184"height="184"rx="12"/><rect x="294"y="196"width="86"height="86"rx="12"/><rect x="0"y="294"width="86"height="86"rx="12"/><rect x="294"y="294"width="86"height="86"rx="12"/><rect x="0"y="392"width="86"height="86"rx="12"/><rect x="98"y="392"width="86"height="86"rx="12"/><rect x="196"y="392"width="86"height="86"rx="12"/><rect x="294"y="392"width="86"height="86"rx="12"/><rect x="0"y="490"width="184"height="184"rx="12"/><rect x="196"y="490"width="86"height="86"rx="12"/><rect x="294"y="490"width="86"height="86"rx="12"/><rect x="196"y="588"width="86"height="86"rx="12"/><rect x="294"y="588"width="86"height="86"rx="12"/><rect x="0"y="686"width="86"height="86"rx="12"/><rect x="98"y="686"width="184"height="184"rx="12"/><rect x="294"y="686"width="86"height="86"rx="12"/><rect x="0"y="784"width="86"height="86"rx="12"/><rect x="294"y="784"width="86"height="86"rx="12"/><rect x="0"y="882"width="86"height="86"rx="12"/><rect x="98"y="882"width="86"height="86"rx="12"/><rect x="196"y="882"width="86"height="86"rx="12"/><rect x="294"y="882"width="86"height="86"rx="12"/></g></svg>',
|
1364 |
+
8 => '<svg width="80" viewBox="0 0 380 968" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="fadeGrad8"x1="0"y1="0"x2="0"y2="1"><stop offset="0.95"stop-color="white"stop-opacity="1"/><stop offset="1"stop-color="white"stop-opacity="0"/></linearGradient><mask id="fadeMask8"x="0"y="0"width="1"height="1"maskContentUnits="objectBoundingBox"><rect x="0"y="0"width="1"height="1"fill="url(#fadeGrad8)"/></mask></defs><g mask="url(#fadeMask8)"><rect width="184"height="184"rx="12"/><rect x="196"y="0"width="86"height="86"rx="12"/><rect x="294"y="0"width="86"height="86"rx="12"/><rect x="196"y="98"width="86"height="86"rx="12"/><rect x="294"y="98"width="86"height="86"rx="12"/><rect x="0"y="196"width="86"height="86"rx="12"/><rect x="98"y="196"width="86"height="86"rx="12"/><rect x="0"y="294"width="86"height="86"rx="12"/><rect x="98"y="294"width="86"height="86"rx="12"/><rect x="196"y="196"width="184"height="184"rx="12"/><rect x="0"y="392"width="184"height="184"rx="12"/><rect x="196"y="392"width="86"height="86"rx="12"/><rect x="294"y="392"width="86"height="86"rx="12"/><rect x="196"y="490"width="86"height="86"rx="12"/><rect x="294"y="490"width="86"height="86"rx="12"/><rect x="0"y="588"width="86"height="86"rx="12"/><rect x="98"y="588"width="86"height="86"rx="12"/><rect x="0"y="686"width="86"height="86"rx="12"/><rect x="98"y="686"width="86"height="86"rx="12"/><rect x="196"y="588"width="184"height="184"rx="12"/><rect x="0"y="784"width="184"height="184"rx="12"/><rect x="196"y="784"width="86"height="86"rx="12"/><rect x="294"y="784"width="86"height="86"rx="12"/><rect x="196"y="882"width="86"height="86"rx="12"/><rect x="294"y="882"width="86"height="86"rx="12"/></g></svg>',
|
1365 |
+
9 => '<svg width="80" viewBox="0 0 380 968" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="fadeGrad9"x1="0"y1="0"x2="0"y2="1"><stop offset="0.95"stop-color="white"stop-opacity="1"/><stop offset="1"stop-color="white"stop-opacity="0"/></linearGradient><mask id="fadeMask9"x="0"y="0"width="1"height="1"maskContentUnits="objectBoundingBox"><rect x="0"y="0"width="1"height="1"fill="url(#fadeGrad9)"/></mask></defs><g mask="url(#fadeMask9)"><rect width="184"height="184"rx="12"/><rect x="196"y="0"width="86"height="86"rx="12"/><rect x="294"y="0"width="86"height="86"rx="12"/><rect x="196"y="98"width="184"height="184"rx="12"/><rect x="0"y="196"width="86"height="86"rx="12"/><rect x="98"y="196"width="86"height="86"rx="12"/><rect x="0"y="294"width="184"height="184"rx="12"/><rect x="196"y="294"width="86"height="86"rx="12"/><rect x="294"y="294"width="86"height="86"rx="12"/><rect x="196"y="392"width="184"height="184"rx="12"/><rect x="0"y="490"width="86"height="86"rx="12"/><rect x="98"y="490"width="86"height="86"rx="12"/><rect x="0"y="588"width="184"height="184"rx="12"/><rect x="196"y="588"width="86"height="86"rx="12"/><rect x="294"y="588"width="86"height="86"rx="12"/><rect x="196"y="686"width="184"height="184"rx="12"/><rect x="0"y="784"width="86"height="86"rx="12"/><rect x="98"y="784"width="86"height="86"rx="12"/><rect x="0"y="882"width="184"height="86"rx="12"/><rect x="196"y="882"width="86"height="86"rx="12"/><rect x="294"y="882"width="86"height="86"rx="12"/></g></svg>',
|
1366 |
+
10 => '<svg width="80" viewBox="0 0 380 968" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="fadeGrad10"x1="0"y1="0"x2="0"y2="1"><stop offset="0.95"stop-color="white"stop-opacity="1"/><stop offset="1"stop-color="white"stop-opacity="0"/></linearGradient><mask id="fadeMask10"x="0"y="0"width="1"height="1"maskContentUnits="objectBoundingBox"><rect x="0"y="0"width="1"height="1"fill="url(#fadeGrad10)"/></mask></defs><g mask="url(#fadeMask10)"><rect width="184"height="184"rx="12"/><rect x="196"y="0"width="86"height="86"rx="12"/><rect x="294"y="0"width="86"height="86"rx="12"/><rect x="0"y="196"width="86"height="86"rx="12"/><rect x="98"y="196"width="86"height="86"rx="12"/><rect x="0"y="294"width="86"height="86"rx="12"/><rect x="98"y="294"width="86"height="86"rx="12"/><rect x="196"y="98"width="184"height="184"rx="12"/><rect x="0"y="392"width="184"height="184"rx="12"/><rect x="196"y="294"width="86"height="86"rx="12"/><rect x="294"y="294"width="86"height="86"rx="12"/><rect x="196"y="392"width="86"height="86"rx="12"/><rect x="294"y="392"width="86"height="86"rx="12"/><rect x="0"y="588"width="86"height="86"rx="12"/><rect x="98"y="588"width="86"height="86"rx="12"/><rect x="0"y="686"width="86"height="86"rx="12"/><rect x="98"y="686"width="86"height="86"rx="12"/><rect x="196"y="490"width="184"height="184"rx="12"/><rect x="0"y="784"width="184"height="184"rx="12"/><rect x="196"y="686"width="86"height="86"rx="12"/><rect x="294"y="686"width="86"height="86"rx="12"/><rect x="196"y="784"width="86"height="86"rx="12"/><rect x="294"y="784"width="86"height="86"rx="12"/><rect x="196"y="882"width="184"height="86"rx="12"/></g></svg>',
|
1367 |
+
),
|
1368 |
+
5 => array(
|
1369 |
+
11 => '<svg width="80" viewBox="0 0 380 926" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="fadeGrad11"x1="0"y1="0"x2="0"y2="1"><stop offset="0.95"stop-color="white"stop-opacity="1"/><stop offset="1"stop-color="white"stop-opacity="0"/></linearGradient><mask id="fadeMask11"x="0"y="0"width="1"height="1"maskContentUnits="objectBoundingBox"><rect x="0"y="0"width="1"height="1"fill="url(#fadeGrad11)"/></mask></defs><g mask="url(#fadeMask11)"><rect width="146"height="146"rx="12"/><rect x="156"y="0"width="68"height="68"rx="12"/><rect x="234"y="0"width="68"height="68"rx="12"/><rect x="312"y="0"width="68"height="68"rx="12"/><rect x="156"y="78"width="68"height="68"rx="12"/><rect x="234"y="78"width="68"height="68"rx="12"/><rect x="312"y="78"width="68"height="68"rx="12"/><rect x="0"y="156"width="68"height="68"rx="12"/><rect x="78"y="156"width="68"height="68"rx="12"/><rect x="156"y="156"width="68"height="68"rx="12"/><rect x="234"y="156"width="68"height="68"rx="12"/><rect x="312"y="156"width="68"height="68"rx="12"/><rect x="0"y="234"width="68"height="68"rx="12"/><rect x="78"y="234"width="68"height="68"rx="12"/><rect x="156"y="234"width="68"height="68"rx="12"/><rect x="234"y="234"width="68"height="68"rx="12"/><rect x="312"y="234"width="68"height="68"rx="12"/><rect x="0"y="312"width="68"height="68"rx="12"/><rect x="78"y="312"width="68"height="68"rx="12"/><rect x="156"y="312"width="68"height="68"rx="12"/><rect x="234"y="312"width="68"height="68"rx="12"/><rect x="312"y="312"width="68"height="68"rx="12"/><rect x="0"y="390"width="68"height="68"rx="12"/><rect x="78"y="390"width="68"height="68"rx="12"/><rect x="156"y="390"width="68"height="68"rx="12"/><rect x="234"y="390"width="68"height="68"rx="12"/><rect x="312"y="390"width="68"height="68"rx="12"/><rect x="0"y="468"width="68"height="68"rx="12"/><rect x="78"y="468"width="68"height="68"rx="12"/><rect x="156"y="468"width="68"height="68"rx="12"/><rect x="234"y="468"width="68"height="68"rx="12"/><rect x="312"y="468"width="68"height="68"rx="12"/><rect x="0"y="546"width="68"height="68"rx="12"/><rect x="78"y="546"width="68"height="68"rx="12"/><rect x="156"y="546"width="68"height="68"rx="12"/><rect x="234"y="546"width="68"height="68"rx="12"/><rect x="312"y="546"width="68"height="68"rx="12"/><rect x="0"y="624"width="68"height="68"rx="12"/><rect x="78"y="624"width="68"height="68"rx="12"/><rect x="156"y="624"width="68"height="68"rx="12"/><rect x="234"y="624"width="68"height="68"rx="12"/><rect x="312"y="624"width="68"height="68"rx="12"/><rect x="0"y="702"width="68"height="68"rx="12"/><rect x="78"y="702"width="68"height="68"rx="12"/><rect x="156"y="702"width="68"height="68"rx="12"/><rect x="234"y="702"width="68"height="68"rx="12"/><rect x="312"y="702"width="68"height="68"rx="12"/><rect x="0"y="780"width="68"height="68"rx="12"/><rect x="78"y="780"width="68"height="68"rx="12"/><rect x="156"y="780"width="68"height="68"rx="12"/><rect x="234"y="780"width="68"height="68"rx="12"/><rect x="312"y="780"width="68"height="68"rx="12"/><rect x="0"y="858"width="68"height="68"rx="12"/><rect x="78"y="858"width="68"height="68"rx="12"/><rect x="156"y="858"width="68"height="68"rx="12"/><rect x="234"y="858"width="68"height="68"rx="12"/><rect x="312"y="858"width="68"height="68"rx="12"/></g></svg>',
|
1370 |
+
12 => '<svg width="80" viewBox="0 0 380 926" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="fadeGrad12"x1="0"y1="0"x2="0"y2="1"><stop offset="0.95"stop-color="white"stop-opacity="1"/><stop offset="1"stop-color="white"stop-opacity="0"/></linearGradient><mask id="fadeMask12"x="0"y="0"width="1"height="1"maskContentUnits="objectBoundingBox"><rect x="0"y="0"width="1"height="1"fill="url(#fadeGrad12)"/></mask></defs><g mask="url(#fadeMask12)"><rect width="146"height="146"rx="12"/><rect x="156"y="0"width="68"height="68"rx="12"/><rect x="234"y="0"width="68"height="68"rx="12"/><rect x="312"y="0"width="68"height="68"rx="12"/><rect x="156"y="78"width="68"height="68"rx="12"/><rect x="234"y="78"width="146"height="146"rx="12"/><rect x="0"y="156"width="68"height="68"rx="12"/><rect x="78"y="156"width="68"height="68"rx="12"/><rect x="156"y="156"width="68"height="68"rx="12"/><rect x="0"y="234"width="146"height="146"rx="12"/><rect x="156"y="234"width="68"height="68"rx="12"/><rect x="234"y="234"width="68"height="68"rx="12"/><rect x="312"y="234"width="68"height="68"rx="12"/><rect x="156"y="312"width="68"height="68"rx="12"/><rect x="234"y="312"width="146"height="146"rx="12"/><rect x="0"y="390"width="68"height="68"rx="12"/><rect x="78"y="390"width="68"height="68"rx="12"/><rect x="156"y="390"width="68"height="68"rx="12"/><rect x="0"y="468"width="146"height="146"rx="12"/><rect x="156"y="468"width="68"height="68"rx="12"/><rect x="234"y="468"width="68"height="68"rx="12"/><rect x="312"y="468"width="68"height="68"rx="12"/><rect x="156"y="546"width="68"height="68"rx="12"/><rect x="234"y="546"width="146"height="146"rx="12"/><rect x="0"y="624"width="68"height="68"rx="12"/><rect x="78"y="624"width="68"height="68"rx="12"/><rect x="156"y="624"width="68"height="68"rx="12"/><rect x="0"y="702"width="146"height="146"rx="12"/><rect x="156"y="702"width="68"height="68"rx="12"/><rect x="234"y="702"width="68"height="68"rx="12"/><rect x="312"y="702"width="68"height="68"rx="12"/><rect x="156"y="780"width="68"height="68"rx="12"/><rect x="234"y="780"width="146"height="146"rx="12"/><rect x="0"y="858"width="68"height="68"rx="12"/><rect x="78"y="858"width="68"height="68"rx="12"/><rect x="156"y="858"width="68"height="68"rx="12"/></g></svg>',
|
1371 |
+
13 => '<svg width="80" viewBox="0 0 380 926" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="fadeGrad13"x1="0"y1="0"x2="0"y2="1"><stop offset="0.95"stop-color="white"stop-opacity="1"/><stop offset="1"stop-color="white"stop-opacity="0"/></linearGradient><mask id="fadeMask13"x="0"y="0"width="1"height="1"maskContentUnits="objectBoundingBox"><rect x="0"y="0"width="1"height="1"fill="url(#fadeGrad13)"/></mask></defs><g mask="url(#fadeMask13)"><rect width="146"height="146"rx="12"/><rect x="156"y="0"width="68"height="68"rx="12"/><rect x="234"y="0"width="68"height="68"rx="12"/><rect x="312"y="0"width="68"height="68"rx="12"/><rect x="156"y="78"width="68"height="68"rx="12"/><rect x="234"y="78"width="68"height="68"rx="12"/><rect x="312"y="78"width="68"height="68"rx="12"/><rect x="0"y="156"width="68"height="68"rx="12"/><rect x="78"y="156"width="68"height="68"rx="12"/><rect x="156"y="156"width="68"height="68"rx="12"/><rect x="234"y="156"width="146"height="146"rx="12"/><rect x="0"y="234"width="68"height="68"rx="12"/><rect x="78"y="234"width="68"height="68"rx="12"/><rect x="156"y="234"width="68"height="68"rx="12"/><rect x="0"y="312"width="146"height="146"rx="12"/><rect x="156"y="312"width="68"height="68"rx="12"/><rect x="234"y="312"width="68"height="68"rx="12"/><rect x="312"y="312"width="68"height="68"rx="12"/><rect x="156"y="390"width="68"height="68"rx="12"/><rect x="234"y="390"width="68"height="68"rx="12"/><rect x="312"y="390"width="68"height="68"rx="12"/><rect x="0"y="468"width="68"height="68"rx="12"/><rect x="78"y="468"width="68"height="68"rx="12"/><rect x="156"y="468"width="68"height="68"rx="12"/><rect x="234"y="468"width="146"height="146"rx="12"/><rect x="0"y="546"width="68"height="68"rx="12"/><rect x="78"y="546"width="68"height="68"rx="12"/><rect x="156"y="546"width="68"height="68"rx="12"/><rect x="0"y="624"width="146"height="146"rx="12"/><rect x="156"y="624"width="68"height="68"rx="12"/><rect x="234"y="624"width="68"height="68"rx="12"/><rect x="312"y="624"width="68"height="68"rx="12"/><rect x="156"y="702"width="68"height="68"rx="12"/><rect x="234"y="702"width="68"height="68"rx="12"/><rect x="312"y="702"width="68"height="68"rx="12"/><rect x="0"y="780"width="68"height="68"rx="12"/><rect x="78"y="780"width="68"height="68"rx="12"/><rect x="156"y="780"width="68"height="68"rx="12"/><rect x="234"y="780"width="146"height="146"rx="12"/><rect x="0"y="858"width="68"height="68"rx="12"/><rect x="78"y="858"width="68"height="68"rx="12"/><rect x="156"y="858"width="68"height="68"rx="12"/></g></svg>',
|
1372 |
+
14 => '<svg width="80" viewBox="0 0 380 926" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="fadeGrad14"x1="0"y1="0"x2="0"y2="1"><stop offset="0.95"stop-color="white"stop-opacity="1"/><stop offset="1"stop-color="white"stop-opacity="0"/></linearGradient><mask id="fadeMask14"x="0"y="0"width="1"height="1"maskContentUnits="objectBoundingBox"><rect x="0"y="0"width="1"height="1"fill="url(#fadeGrad14)"/></mask></defs><g mask="url(#fadeMask14)"><rect width="146"height="146"rx="12"/><rect x="156"y="0"width="68"height="68"rx="12"/><rect x="234"y="0"width="68"height="68"rx="12"/><rect x="312"y="0"width="68"height="68"rx="12"/><rect x="156"y="78"width="68"height="68"rx="12"/><rect x="234"y="78"width="68"height="68"rx="12"/><rect x="312"y="78"width="68"height="68"rx="12"/><rect x="0"y="156"width="68"height="68"rx="12"/><rect x="78"y="156"width="68"height="68"rx="12"/><rect x="156"y="156"width="146"height="146"rx="12"/><rect x="312"y="156"width="68"height="68"rx="12"/><rect x="0"y="234"width="68"height="68"rx="12"/><rect x="78"y="234"width="68"height="68"rx="12"/><rect x="312"y="234"width="68"height="68"rx="12"/><rect x="0"y="312"width="68"height="68"rx="12"/><rect x="78"y="312"width="68"height="68"rx="12"/><rect x="156"y="312"width="68"height="68"rx="12"/><rect x="234"y="312"width="68"height="68"rx="12"/><rect x="312"y="312"width="68"height="68"rx="12"/><rect x="0"y="390"width="68"height="68"rx="12"/><rect x="78"y="390"width="68"height="68"rx="12"/><rect x="156"y="390"width="68"height="68"rx="12"/><rect x="234"y="390"width="146"height="146"rx="12"/><rect x="0"y="468"width="68"height="68"rx="12"/><rect x="78"y="468"width="68"height="68"rx="12"/><rect x="156"y="468"width="68"height="68"rx="12"/><rect x="0"y="546"width="68"height="68"rx="12"/><rect x="78"y="546"width="146"height="146"rx="12"/><rect x="234"y="546"width="68"height="68"rx="12"/><rect x="312"y="546"width="68"height="68"rx="12"/><rect x="0"y="624"width="68"height="68"rx="12"/><rect x="234"y="624"width="68"height="68"rx="12"/><rect x="312"y="624"width="68"height="68"rx="12"/><rect x="0"y="702"width="68"height="68"rx="12"/><rect x="78"y="702"width="68"height="68"rx="12"/><rect x="156"y="702"width="68"height="68"rx="12"/><rect x="234"y="702"width="68"height="68"rx="12"/><rect x="312"y="702"width="68"height="68"rx="12"/><rect x="0"y="780"width="146"height="146"rx="12"/><rect x="156"y="780"width="68"height="68"rx="12"/><rect x="234"y="780"width="68"height="68"rx="12"/><rect x="312"y="780"width="68"height="68"rx="12"/><rect x="156"y="858"width="68"height="68"rx="12"/><rect x="234"y="858"width="68"height="68"rx="12"/><rect x="312"y="858"width="68"height="68"rx="12"/></g></svg>',
|
1373 |
+
15 => '<svg width="80" viewBox="0 0 380 926" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="fadeGrad15"x1="0"y1="0"x2="0"y2="1"><stop offset="0.95"stop-color="white"stop-opacity="1"/><stop offset="1"stop-color="white"stop-opacity="0"/></linearGradient><mask id="fadeMask15"x="0"y="0"width="1"height="1"maskContentUnits="objectBoundingBox"><rect x="0"y="0"width="1"height="1"fill="url(#fadeGrad15)"/></mask></defs><g mask="url(#fadeMask15)"><rect width="146"height="146"rx="12"/><rect x="156"y="0"width="68"height="68"rx="12"/><rect x="234"y="0"width="68"height="68"rx="12"/><rect x="312"y="0"width="68"height="68"rx="12"/><rect x="156"y="78"width="146"height="146"rx="12"/><rect x="312"y="78"width="68"height="68"rx="12"/><rect x="0"y="156"width="68"height="68"rx="12"/><rect x="78"y="156"width="68"height="68"rx="12"/><rect x="312"y="156"width="68"height="68"rx="12"/><rect x="0"y="234"width="68"height="68"rx="12"/><rect x="78"y="234"width="68"height="68"rx="12"/><rect x="156"y="234"width="68"height="68"rx="12"/><rect x="234"y="234"width="68"height="68"rx="12"/><rect x="312"y="234"width="68"height="68"rx="12"/><rect x="0"y="312"width="68"height="68"rx="12"/><rect x="78"y="312"width="68"height="68"rx="12"/><rect x="156"y="312"width="68"height="68"rx="12"/><rect x="234"y="312"width="146"height="146"rx="12"/><rect x="0"y="390"width="68"height="68"rx="12"/><rect x="78"y="390"width="146"height="146"rx="12"/><rect x="0"y="468"width="68"height="68"rx="12"/><rect x="234"y="468"width="68"height="68"rx="12"/><rect x="312"y="468"width="68"height="68"rx="12"/><rect x="0"y="546"width="68"height="68"rx="12"/><rect x="78"y="546"width="68"height="68"rx="12"/><rect x="156"y="546"width="68"height="68"rx="12"/><rect x="234"y="546"width="68"height="68"rx="12"/><rect x="312"y="546"width="68"height="68"rx="12"/><rect x="0"y="624"width="146"height="146"rx="12"/><rect x="156"y="624"width="68"height="68"rx="12"/><rect x="234"y="624"width="68"height="68"rx="12"/><rect x="312"y="624"width="68"height="68"rx="12"/><rect x="156"y="702"width="146"height="146"rx="12"/><rect x="312"y="702"width="68"height="68"rx="12"/><rect x="0"y="780"width="68"height="68"rx="12"/><rect x="78"y="780"width="68"height="68"rx="12"/><rect x="312"y="780"width="68"height="68"rx="12"/><rect x="0"y="858"width="68"height="68"rx="12"/><rect x="78"y="858"width="68"height="68"rx="12"/><rect x="156"y="858"width="68"height="68"rx="12"/><rect x="234"y="858"width="68"height="68"rx="12"/><rect x="312"y="858"width="68"height="68"rx="12"/></g></svg>',
|
1374 |
+
),
|
1375 |
+
6 => array(
|
1376 |
+
16 => '<svg width="80" viewBox="0 0 380 770" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="fadeGrad16"x1="0"y1="0"x2="0"y2="1"><stop offset="0.95"stop-color="white"stop-opacity="1"/><stop offset="1"stop-color="white"stop-opacity="0"/></linearGradient><mask id="fadeMask16"x="0"y="0"width="1"height="1"maskContentUnits="objectBoundingBox"><rect x="0"y="0"width="1"height="1"fill="url(#fadeGrad16)"/></mask></defs><g mask="url(#fadeMask16)"><rect width="120"height="120"rx="12"/><rect x="130"y="0"width="55"height="55"rx="12"/><rect x="195"y="0"width="55"height="55"rx="12"/><rect x="260"y="0"width="55"height="55"rx="12"/><rect x="325"y="0"width="55"height="55"rx="12"/><rect x="130"y="65"width="55"height="55"rx="12"/><rect x="195"y="65"width="55"height="55"rx="12"/><rect x="260"y="65"width="55"height="55"rx="12"/><rect x="325"y="65"width="55"height="55"rx="12"/><rect x="0"y="130"width="55"height="55"rx="12"/><rect x="65"y="130"width="55"height="55"rx="12"/><rect x="130"y="130"width="55"height="55"rx="12"/><rect x="195"y="130"width="55"height="55"rx="12"/><rect x="260"y="130"width="55"height="55"rx="12"/><rect x="325"y="130"width="55"height="55"rx="12"/><rect x="0"y="195"width="55"height="55"rx="12"/><rect x="65"y="195"width="55"height="55"rx="12"/><rect x="130"y="195"width="55"height="55"rx="12"/><rect x="195"y="195"width="55"height="55"rx="12"/><rect x="260"y="195"width="55"height="55"rx="12"/><rect x="325"y="195"width="55"height="55"rx="12"/><rect x="0"y="260"width="55"height="55"rx="12"/><rect x="65"y="260"width="55"height="55"rx="12"/><rect x="130"y="260"width="55"height="55"rx="12"/><rect x="195"y="260"width="55"height="55"rx="12"/><rect x="260"y="260"width="55"height="55"rx="12"/><rect x="325"y="260"width="55"height="55"rx="12"/><rect x="0"y="325"width="55"height="55"rx="12"/><rect x="65"y="325"width="55"height="55"rx="12"/><rect x="130"y="325"width="55"height="55"rx="12"/><rect x="195"y="325"width="55"height="55"rx="12"/><rect x="260"y="325"width="55"height="55"rx="12"/><rect x="325"y="325"width="55"height="55"rx="12"/><rect x="0"y="390"width="55"height="55"rx="12"/><rect x="65"y="390"width="55"height="55"rx="12"/><rect x="130"y="390"width="55"height="55"rx="12"/><rect x="195"y="390"width="55"height="55"rx="12"/><rect x="260"y="390"width="55"height="55"rx="12"/><rect x="325"y="390"width="55"height="55"rx="12"/><rect x="0"y="455"width="55"height="55"rx="12"/><rect x="65"y="455"width="55"height="55"rx="12"/><rect x="130"y="455"width="55"height="55"rx="12"/><rect x="195"y="455"width="55"height="55"rx="12"/><rect x="260"y="455"width="55"height="55"rx="12"/><rect x="325"y="455"width="55"height="55"rx="12"/><rect x="0"y="520"width="55"height="55"rx="12"/><rect x="65"y="520"width="55"height="55"rx="12"/><rect x="130"y="520"width="55"height="55"rx="12"/><rect x="195"y="520"width="55"height="55"rx="12"/><rect x="260"y="520"width="55"height="55"rx="12"/><rect x="325"y="520"width="55"height="55"rx="12"/><rect x="0"y="585"width="55"height="55"rx="12"/><rect x="65"y="585"width="55"height="55"rx="12"/><rect x="130"y="585"width="55"height="55"rx="12"/><rect x="195"y="585"width="55"height="55"rx="12"/><rect x="260"y="585"width="55"height="55"rx="12"/><rect x="325"y="585"width="55"height="55"rx="12"/><rect x="0"y="650"width="55"height="55"rx="12"/><rect x="65"y="650"width="55"height="55"rx="12"/><rect x="130"y="650"width="55"height="55"rx="12"/><rect x="195"y="650"width="55"height="55"rx="12"/><rect x="260"y="650"width="55"height="55"rx="12"/><rect x="325"y="650"width="55"height="55"rx="12"/><rect x="0"y="715"width="55"height="55"rx="12"/><rect x="65"y="715"width="55"height="55"rx="12"/><rect x="130"y="715"width="55"height="55"rx="12"/><rect x="195"y="715"width="55"height="55"rx="12"/><rect x="260"y="715"width="55"height="55"rx="12"/><rect x="325"y="715"width="55"height="55"rx="12"/></g></svg>',
|
1377 |
+
17 => '<svg width="80" viewBox="0 0 380 770" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="fadeGrad17"x1="0"y1="0"x2="0"y2="1"><stop offset="0.95"stop-color="white"stop-opacity="1"/><stop offset="1"stop-color="white"stop-opacity="0"/></linearGradient><mask id="fadeMask17"x="0"y="0"width="1"height="1"maskContentUnits="objectBoundingBox"><rect x="0"y="0"width="1"height="1"fill="url(#fadeGrad17)"/></mask></defs><g mask="url(#fadeMask17)"><rect width="120"height="120"rx="12"/><rect x="130"y="0"width="55"height="55"rx="12"/><rect x="195"y="0"width="55"height="55"rx="12"/><rect x="260"y="0"width="55"height="55"rx="12"/><rect x="325"y="0"width="55"height="55"rx="12"/><rect x="130"y="65"width="55"height="55"rx="12"/><rect x="195"y="65"width="55"height="55"rx="12"/><rect x="260"y="65"width="120"height="120"rx="12"/><rect x="0"y="130"width="55"height="55"rx="12"/><rect x="65"y="130"width="55"height="55"rx="12"/><rect x="130"y="130"width="55"height="55"rx="12"/><rect x="195"y="130"width="55"height="55"rx="12"/><rect x="0"y="195"width="120"height="120"rx="12"/><rect x="130"y="195"width="55"height="55"rx="12"/><rect x="195"y="195"width="55"height="55"rx="12"/><rect x="260"y="195"width="55"height="55"rx="12"/><rect x="325"y="195"width="55"height="55"rx="12"/><rect x="130"y="260"width="55"height="55"rx="12"/><rect x="195"y="260"width="55"height="55"rx="12"/><rect x="260"y="260"width="120"height="120"rx="12"/><rect x="0"y="325"width="55"height="55"rx="12"/><rect x="65"y="325"width="55"height="55"rx="12"/><rect x="130"y="325"width="55"height="55"rx="12"/><rect x="195"y="325"width="55"height="55"rx="12"/><rect x="0"y="390"width="120"height="120"rx="12"/><rect x="130"y="390"width="55"height="55"rx="12"/><rect x="195"y="390"width="55"height="55"rx="12"/><rect x="260"y="390"width="55"height="55"rx="12"/><rect x="325"y="390"width="55"height="55"rx="12"/><rect x="130"y="455"width="55"height="55"rx="12"/><rect x="195"y="455"width="55"height="55"rx="12"/><rect x="260"y="455"width="120"height="120"rx="12"/><rect x="0"y="520"width="55"height="55"rx="12"/><rect x="65"y="520"width="55"height="55"rx="12"/><rect x="130"y="520"width="55"height="55"rx="12"/><rect x="195"y="520"width="55"height="55"rx="12"/><rect x="0"y="585"width="120"height="120"rx="12"/><rect x="130"y="585"width="55"height="55"rx="12"/><rect x="195"y="585"width="55"height="55"rx="12"/><rect x="260"y="585"width="55"height="55"rx="12"/><rect x="325"y="585"width="55"height="55"rx="12"/><rect x="130"y="650"width="55"height="55"rx="12"/><rect x="195"y="650"width="55"height="55"rx="12"/><rect x="260"y="650"width="120"height="120"rx="12"/><rect x="0"y="715"width="55"height="55"rx="12"/><rect x="65"y="715"width="55"height="55"rx="12"/><rect x="130"y="715"width="55"height="55"rx="12"/><rect x="195"y="715"width="55"height="55"rx="12"/></g></svg>',
|
1378 |
+
18 => '<svg width="80" viewBox="0 0 380 770" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="fadeGrad18"x1="0"y1="0"x2="0"y2="1"><stop offset="0.95"stop-color="white"stop-opacity="1"/><stop offset="1"stop-color="white"stop-opacity="0"/></linearGradient><mask id="fadeMask18"x="0"y="0"width="1"height="1"maskContentUnits="objectBoundingBox"><rect x="0"y="0"width="1"height="1"fill="url(#fadeGrad18)"/></mask></defs><g mask="url(#fadeMask18)"><rect width="120"height="120"rx="12"/><rect x="130"y="0"width="55"height="55"rx="12"/><rect x="195"y="0"width="55"height="55"rx="12"/><rect x="260"y="0"width="55"height="55"rx="12"/><rect x="325"y="0"width="55"height="55"rx="12"/><rect x="130"y="65"width="55"height="55"rx="12"/><rect x="195"y="65"width="55"height="55"rx="12"/><rect x="260"y="65"width="55"height="55"rx="12"/><rect x="325"y="65"width="55"height="55"rx="12"/><rect x="0"y="130"width="55"height="55"rx="12"/><rect x="65"y="130"width="55"height="55"rx="12"/><rect x="130"y="130"width="55"height="55"rx="12"/><rect x="195"y="130"width="55"height="55"rx="12"/><rect x="260"y="130"width="120"height="120"rx="12"/><rect x="0"y="195"width="55"height="55"rx="12"/><rect x="65"y="195"width="55"height="55"rx="12"/><rect x="130"y="195"width="55"height="55"rx="12"/><rect x="195"y="195"width="55"height="55"rx="12"/><rect x="0"y="260"width="120"height="120"rx="12"/><rect x="130"y="260"width="55"height="55"rx="12"/><rect x="195"y="260"width="55"height="55"rx="12"/><rect x="260"y="260"width="55"height="55"rx="12"/><rect x="325"y="260"width="55"height="55"rx="12"/><rect x="130"y="325"width="55"height="55"rx="12"/><rect x="195"y="325"width="55"height="55"rx="12"/><rect x="260"y="325"width="55"height="55"rx="12"/><rect x="325"y="325"width="55"height="55"rx="12"/><rect x="0"y="390"width="55"height="55"rx="12"/><rect x="65"y="390"width="55"height="55"rx="12"/><rect x="130"y="390"width="55"height="55"rx="12"/><rect x="195"y="390"width="55"height="55"rx="12"/><rect x="260"y="390"width="120"height="120"rx="12"/><rect x="0"y="455"width="55"height="55"rx="12"/><rect x="65"y="455"width="55"height="55"rx="12"/><rect x="130"y="455"width="55"height="55"rx="12"/><rect x="195"y="455"width="55"height="55"rx="12"/><rect x="0"y="520"width="120"height="120"rx="12"/><rect x="130"y="520"width="55"height="55"rx="12"/><rect x="195"y="520"width="55"height="55"rx="12"/><rect x="260"y="520"width="55"height="55"rx="12"/><rect x="325"y="520"width="55"height="55"rx="12"/><rect x="130"y="585"width="55"height="55"rx="12"/><rect x="195"y="585"width="55"height="55"rx="12"/><rect x="260"y="585"width="55"height="55"rx="12"/><rect x="325"y="585"width="55"height="55"rx="12"/><rect x="0"y="650"width="55"height="55"rx="12"/><rect x="65"y="650"width="55"height="55"rx="12"/><rect x="130"y="650"width="55"height="55"rx="12"/><rect x="195"y="650"width="55"height="55"rx="12"/><rect x="260"y="650"width="120"height="120"rx="12"/><rect x="0"y="715"width="55"height="55"rx="12"/><rect x="65"y="715"width="55"height="55"rx="12"/><rect x="130"y="715"width="55"height="55"rx="12"/><rect x="195"y="715"width="55"height="55"rx="12"/></g></svg>',
|
1379 |
+
19 => '<svg width="80" viewBox="0 0 380 770" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="fadeGrad19"x1="0"y1="0"x2="0"y2="1"><stop offset="0.95"stop-color="white"stop-opacity="1"/><stop offset="1"stop-color="white"stop-opacity="0"/></linearGradient><mask id="fadeMask19"x="0"y="0"width="1"height="1"maskContentUnits="objectBoundingBox"><rect x="0"y="0"width="1"height="1"fill="url(#fadeGrad19)"/></mask></defs><g mask="url(#fadeMask19)"><rect width="120"height="120"rx="12"/><rect x="130"y="0"width="55"height="55"rx="12"/><rect x="195"y="0"width="55"height="55"rx="12"/><rect x="260"y="0"width="55"height="55"rx="12"/><rect x="325"y="0"width="55"height="55"rx="12"/><rect x="130"y="65"width="55"height="55"rx="12"/><rect x="195"y="65"width="55"height="55"rx="12"/><rect x="260"y="65"width="55"height="55"rx="12"/><rect x="325"y="65"width="55"height="55"rx="12"/><rect x="0"y="130"width="55"height="55"rx="12"/><rect x="65"y="130"width="55"height="55"rx="12"/><rect x="130"y="130"width="120"height="120"rx="12"/><rect x="260"y="130"width="55"height="55"rx="12"/><rect x="325"y="130"width="55"height="55"rx="12"/><rect x="0"y="195"width="55"height="55"rx="12"/><rect x="65"y="195"width="55"height="55"rx="12"/><rect x="260"y="195"width="55"height="55"rx="12"/><rect x="325"y="195"width="55"height="55"rx="12"/><rect x="0"y="260"width="55"height="55"rx="12"/><rect x="65"y="260"width="55"height="55"rx="12"/><rect x="130"y="260"width="55"height="55"rx="12"/><rect x="195"y="260"width="55"height="55"rx="12"/><rect x="260"y="260"width="55"height="55"rx="12"/><rect x="325"y="260"width="55"height="55"rx="12"/><rect x="0"y="325"width="55"height="55"rx="12"/><rect x="65"y="325"width="55"height="55"rx="12"/><rect x="130"y="325"width="55"height="55"rx="12"/><rect x="195"y="325"width="55"height="55"rx="12"/><rect x="260"y="325"width="120"height="120"rx="12"/><rect x="0"y="390"width="55"height="55"rx="12"/><rect x="65"y="390"width="55"height="55"rx="12"/><rect x="130"y="390"width="55"height="55"rx="12"/><rect x="195"y="390"width="55"height="55"rx="12"/><rect x="0"y="455"width="55"height="55"rx="12"/><rect x="65"y="455"width="55"height="55"rx="12"/><rect x="130"y="455"width="120"height="120"rx="12"/><rect x="260"y="455"width="55"height="55"rx="12"/><rect x="325"y="455"width="55"height="55"rx="12"/><rect x="0"y="520"width="55"height="55"rx="12"/><rect x="65"y="520"width="55"height="55"rx="12"/><rect x="260"y="520"width="55"height="55"rx="12"/><rect x="325"y="520"width="55"height="55"rx="12"/><rect x="0"y="585"width="55"height="55"rx="12"/><rect x="65"y="585"width="55"height="55"rx="12"/><rect x="130"y="585"width="55"height="55"rx="12"/><rect x="195"y="585"width="55"height="55"rx="12"/><rect x="260"y="585"width="55"height="55"rx="12"/><rect x="325"y="585"width="55"height="55"rx="12"/><rect x="0"y="650"width="120"height="120"rx="12"/><rect x="130"y="650"width="55"height="55"rx="12"/><rect x="195"y="650"width="55"height="55"rx="12"/><rect x="260"y="650"width="55"height="55"rx="12"/><rect x="325"y="650"width="55"height="55"rx="12"/><rect x="130"y="715"width="55"height="55"rx="12"/><rect x="195"y="715"width="55"height="55"rx="12"/><rect x="260"y="715"width="55"height="55"rx="12"/><rect x="325"y="715"width="55"height="55"rx="12"/></g></svg>',
|
1380 |
+
20 => '<svg width="80" viewBox="0 0 380 770" xmlns="http://www.w3.org/2000/svg"><defs><linearGradient id="fadeGrad20"x1="0"y1="0"x2="0"y2="1"><stop offset="0.95"stop-color="white"stop-opacity="1"/><stop offset="1"stop-color="white"stop-opacity="0"/></linearGradient><mask id="fadeMask20"x="0"y="0"width="1"height="1"maskContentUnits="objectBoundingBox"><rect x="0"y="0"width="1"height="1"fill="url(#fadeGrad20)"/></mask></defs><g mask="url(#fadeMask20)"><rect width="120"height="120"rx="12"/><rect x="130"y="0"width="55"height="55"rx="12"/><rect x="195"y="0"width="55"height="55"rx="12"/><rect x="260"y="0"width="55"height="55"rx="12"/><rect x="325"y="0"width="55"height="55"rx="12"/><rect x="130"y="65"width="120"height="120"rx="12"/><rect x="260"y="65"width="55"height="55"rx="12"/><rect x="325"y="65"width="55"height="55"rx="12"/><rect x="0"y="130"width="55"height="55"rx="12"/><rect x="65"y="130"width="55"height="55"rx="12"/><rect x="260"y="130"width="55"height="55"rx="12"/><rect x="325"y="130"width="55"height="55"rx="12"/><rect x="0"y="195"width="55"height="55"rx="12"/><rect x="65"y="195"width="55"height="55"rx="12"/><rect x="130"y="195"width="55"height="55"rx="12"/><rect x="195"y="195"width="55"height="55"rx="12"/><rect x="260"y="195"width="55"height="55"rx="12"/><rect x="325"y="195"width="55"height="55"rx="12"/><rect x="0"y="260"width="55"height="55"rx="12"/><rect x="65"y="260"width="55"height="55"rx="12"/><rect x="130"y="260"width="55"height="55"rx="12"/><rect x="195"y="260"width="55"height="55"rx="12"/><rect x="260"y="260"width="120"height="120"rx="12"/><rect x="0"y="325"width="55"height="55"rx="12"/><rect x="65"y="325"width="55"height="55"rx="12"/><rect x="130"y="325"width="120"height="120"rx="12"/><rect x="0"y="390"width="55"height="55"rx="12"/><rect x="65"y="390"width="55"height="55"rx="12"/><rect x="260"y="390"width="55"height="55"rx="12"/><rect x="325"y="390"width="55"height="55"rx="12"/><rect x="0"y="455"width="55"height="55"rx="12"/><rect x="65"y="455"width="55"height="55"rx="12"/><rect x="130"y="455"width="55"height="55"rx="12"/><rect x="195"y="455"width="55"height="55"rx="12"/><rect x="260"y="455"width="55"height="55"rx="12"/><rect x="325"y="455"width="55"height="55"rx="12"/><rect x="0"y="520"width="120"height="120"rx="12"/><rect x="130"y="520"width="55"height="55"rx="12"/><rect x="195"y="520"width="55"height="55"rx="12"/><rect x="260"y="520"width="55"height="55"rx="12"/><rect x="325"y="520"width="55"height="55"rx="12"/><rect x="130"y="585"width="120"height="120"rx="12"/><rect x="260"y="585"width="55"height="55"rx="12"/><rect x="325"y="585"width="55"height="55"rx="12"/><rect x="0"y="650"width="55"height="55"rx="12"/><rect x="65"y="650"width="55"height="55"rx="12"/><rect x="260"y="650"width="55"height="55"rx="12"/><rect x="325"y="650"width="55"height="55"rx="12"/><rect x="0"y="715"width="55"height="55"rx="12"/><rect x="65"y="715"width="55"height="55"rx="12"/><rect x="130"y="715"width="55"height="55"rx="12"/><rect x="195"y="715"width="55"height="55"rx="12"/><rect x="260"y="715"width="55"height="55"rx="12"/><rect x="325"y="715"width="55"height="55"rx="12"/></g></svg>',
|
1381 |
+
),
|
1382 |
+
);
|
1383 |
+
|
1384 |
+
foreach ( $featured_layouts as $columns_amount => $the_layouts ) {
|
1385 |
+
foreach( $the_layouts as $id => $featured_layout ) {
|
1386 |
+
printf(
|
1387 |
+
'<label class="wpz-insta_image-select-item featured-layout %1$s"><input type="radio" name="_wpz-insta_featured-layout" id="_wpz-insta_featured-layout_%2$s" value="%2$s"%3$s /><span>%4$s</span></label>',
|
1388 |
+
"featured-layout_$id featured-layout-columns_$columns_amount" . ( $feed_cols_num === $columns_amount ? '' : ' hidden' ),
|
1389 |
+
esc_attr( $id ),
|
1390 |
+
checked( $feed_featured_layout, $id, false ),
|
1391 |
+
$featured_layout
|
1392 |
+
);
|
1393 |
+
}
|
1394 |
+
}
|
1395 |
+
?>
|
1396 |
+
</div>
|
1397 |
+
<?php } else { ?>
|
1398 |
+
<input type="checkbox"<?php checked( true ); disabled( true ); ?> />
|
1399 |
+
<span><?php esc_html_e( 'Highlight every 3rd post', 'instagram-widget-by-wpzoom' ); ?></span>
|
1400 |
+
<?php } ?>
|
1401 |
+
</div>
|
1402 |
+
</div>
|
1403 |
+
|
1404 |
+
<?php echo $pro_toggle ? '</fieldset>' : ''; ?>
|
1405 |
</div>
|
1406 |
</div>
|
1407 |
|
1538 |
<?php esc_html_e( 'Thumbnail (150x150)', 'instagram-widget-by-wpzoom' ); ?>
|
1539 |
</option>
|
1540 |
<option value="low_resolution"<?php selected( $image_size, 'low_resolution' ); ?>>
|
1541 |
+
<?php esc_html_e( 'Standard Resolution (320x320)', 'instagram-widget-by-wpzoom' ); ?>
|
1542 |
</option>
|
1543 |
<option value="standard_resolution"<?php selected( $image_size, 'standard_resolution' ); ?>>
|
1544 |
+
<?php esc_html_e( 'High Resolution (640x640)', 'instagram-widget-by-wpzoom' ); ?>
|
1545 |
</option>
|
1546 |
</select>
|
1547 |
</div>
|
1608 |
<span><?php esc_html_e( 'Instagram link', 'instagram-widget-by-wpzoom' ); ?></span>
|
1609 |
</label>
|
1610 |
|
1611 |
+
<label class="wpz-insta_table-row">
|
1612 |
+
<input type="hidden" name="_wpz-insta_hover-date" value="0" />
|
1613 |
+
<input type="checkbox" name="_wpz-insta_hover-date" value="1"<?php checked( $feed_hover_date ); ?> />
|
1614 |
+
<span><?php esc_html_e( 'Date', 'instagram-widget-by-wpzoom' ); ?></span>
|
1615 |
+
</label>
|
1616 |
+
|
1617 |
+
<?php echo $pro_toggle ? '<fieldset class="wpz-insta_feed-only-pro wpz-insta_pro-only' . ( 1 === $feed_layout || 3 === $feed_layout ? ' hidden' : '' ) . '"><legend><strong>' . esc_html__( 'PRO', 'instagram-widget-by-wpzoom' ) . '</strong></legend>' : ''; ?>
|
1618 |
|
1619 |
<?php /* Coming Soon
|
1620 |
|
1630 |
<span><?php esc_html_e( 'Display a feed from tags', 'instagram-widget-by-wpzoom' ); ?></span>
|
1631 |
</label>
|
1632 |
|
1633 |
+
*/ ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
1634 |
|
1635 |
<?php echo $pro_toggle ? '</fieldset>' : ''; ?>
|
1636 |
</div>
|
1638 |
</div>
|
1639 |
</div>
|
1640 |
|
1641 |
+
<div class="wpz-insta_sidebar-section wpz-insta_sidebar-section-load-more<?php echo ( $pro_toggle ? ' wpz-insta_pro-only' : '' ) . ( 1 === $feed_layout || 3 === $feed_layout ? ' hidden' : '' ); ?>">
|
1642 |
<h4 class="wpz-insta_sidebar-section-title smaller-title"><?php esc_html_e( 'Load More Posts', 'instagram-widget-by-wpzoom' ); ?></h4>
|
1643 |
|
1644 |
<div class="wpz-insta_feed-load-more-general wpz-insta_table">
|
2589 |
|
2590 |
<div class="wpz-insta-wrap wpz-insta_settings-connect">
|
2591 |
<h3 class="section-title"><?php _e( 'Let’s connect your Instagram account', 'instagram-widget-by-wpzoom' ); ?></h3>
|
2592 |
+
<p class="section-description"><?php _e( 'Are you connecting your account through Instagram or Facebook?', 'instagram-widget-by-wpzoom' ); ?></p>
|
2593 |
|
2594 |
<div class="account-options">
|
2595 |
<div class="account-option account-option_personal">
|
2596 |
+
<h4 class="account-option-title"><?php _e( 'Connect using Instagram', 'instagram-widget-by-wpzoom' ); ?></h4>
|
2597 |
|
2598 |
<ul class="account-option-checklist">
|
2599 |
<li><?php _e( 'Connects directly through Instagram', 'instagram-widget-by-wpzoom' ); ?></li>
|
2607 |
<path d="M13.2356 3.72907C13.2356 4.25896 12.806 4.68861 12.2759 4.68861C11.7461 4.68861 11.3164 4.25896 11.3164 3.72907C11.3164 3.19906 11.7461 2.76953 12.2759 2.76953C12.806 2.76953 13.2356 3.19906 13.2356 3.72907Z" fill="#fff" />
|
2608 |
</svg>
|
2609 |
|
2610 |
+
<?php _e( 'Connect with Instagram', 'instagram-widget-by-wpzoom' ); ?>
|
2611 |
</a>
|
2612 |
</div>
|
2613 |
|
2614 |
<div class="account-option account-option_business">
|
2615 |
+
<h4 class="account-option-title"><?php _e( 'Connect using Facebook', 'instagram-widget-by-wpzoom' ); ?></h4>
|
2616 |
|
2617 |
<ul class="account-option-checklist">
|
2618 |
<li><?php _e( 'Connects through your Facebook page', 'instagram-widget-by-wpzoom' ); ?></li>
|
2621 |
<li><?php _e( 'Show posts with a specific hashtag <small><em>Coming Soon</em></small>', 'instagram-widget-by-wpzoom' ); ?></li>
|
2622 |
</ul>
|
2623 |
|
2624 |
+
<button id="wpz-insta_connect-business" class="account-option-button facebook disabled">
|
2625 |
+
<svg width="16" height="16" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Facebook</title><path d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z" fill="#fff" /></svg>
|
|
|
|
|
|
|
|
|
2626 |
|
2627 |
+
<?php _e( '<em>Coming soon</em>', 'instagram-widget-by-wpzoom' ); ?>
|
2628 |
+
</button>
|
2629 |
</div>
|
2630 |
|
2631 |
<div class="account-option account-option_token">
|
2632 |
+
<h4 class="account-option-title"><?php _e( 'Connect with Access Token', 'instagram-widget-by-wpzoom' ); ?></h4>
|
2633 |
+
|
2634 |
+
<p><?php _e( 'Using this option, you can connect your client\'s account to which you don\'t have access. Just ask your client to generate an access token using this tool:', 'instagram-widget-by-wpzoom' ); ?></p>
|
2635 |
+
<u><a href="https://www.wpzoom.com/instagram-auth/" target="_blank">Instagram Access Token Generator</a></u>
|
2636 |
+
|
2637 |
+
<br/>
|
2638 |
+
|
2639 |
+
<input type="text" id="wpz-insta_account-token-input" name="wpz-insta_account-token-input" value="<?php echo isset( $settings['basic-access-token'] ) && ! empty( $settings['basic-access-token'] ) ? esc_attr( $settings['basic-access-token'] ) : ''; ?>" class="account-option-token-input" placeholder="<?php _e( 'Enter your Instagram access token', 'instagram-widget-by-wpzoom' ); ?>" />
|
2640 |
|
2641 |
+
<br/>
|
2642 |
|
2643 |
<button id="wpz-insta_account-token-button" class="account-option-button disabled">
|
2644 |
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg">
|
2647 |
<path d="M13.2356 3.72907C13.2356 4.25896 12.806 4.68861 12.2759 4.68861C11.7461 4.68861 11.3164 4.25896 11.3164 3.72907C11.3164 3.19906 11.7461 2.76953 12.2759 2.76953C12.806 2.76953 13.2356 3.19906 13.2356 3.72907Z" fill="#fff" />
|
2648 |
</svg>
|
2649 |
|
2650 |
+
<?php _e( 'Connect with Access Token', 'instagram-widget-by-wpzoom' ); ?>
|
2651 |
</button>
|
2652 |
</div>
|
2653 |
</div>
|
2742 |
'feeds_url' => admin_url( self::$any_feeds ? 'edit.php?post_type=wpz-insta_feed' : 'post-new.php?post_type=wpz-insta_feed' ),
|
2743 |
'edit_user_url' => admin_url( 'edit.php?post_type=wpz-insta_user#post-' ),
|
2744 |
'preview_url' => site_url( '?wpz-insta-widget-preview=true' ),
|
2745 |
+
'default_user_thumbnail' => plugins_url( '/dist/images/backend/icon-insta.png', __FILE__ ),
|
2746 |
)
|
2747 |
);
|
2748 |
}
|
class-wpzoom-instagram-widget.php
CHANGED
@@ -284,7 +284,7 @@ class Wpzoom_Instagram_Widget extends WP_Widget {
|
|
284 |
$lightbox = isset( $instance['lightbox'] ) ? wp_validate_boolean( $instance['lightbox'] ) : true;
|
285 |
$user_nfo = is_object( $user_info ) && ! empty( $user_info ) && ! empty( $user_info->data ) ? $user_info->data : false;
|
286 |
$username = false !== $user_nfo ? $user_nfo->username : '';
|
287 |
-
$avatar = false !== $user_nfo && ! empty( $user_nfo->profile_picture ) ? $user_nfo->profile_picture : plugin_dir_url( __FILE__ ) . 'dist/images/backend/
|
288 |
?>
|
289 |
<ul class="zoom-instagram-widget__items layout-legacy zoom-instagram-widget__items--no-js"
|
290 |
data-images-per-row="<?php echo esc_attr( $instance['images-per-row'] ); ?>"
|
284 |
$lightbox = isset( $instance['lightbox'] ) ? wp_validate_boolean( $instance['lightbox'] ) : true;
|
285 |
$user_nfo = is_object( $user_info ) && ! empty( $user_info ) && ! empty( $user_info->data ) ? $user_info->data : false;
|
286 |
$username = false !== $user_nfo ? $user_nfo->username : '';
|
287 |
+
$avatar = false !== $user_nfo && ! empty( $user_nfo->profile_picture ) ? $user_nfo->profile_picture : plugin_dir_url( __FILE__ ) . 'dist/images/backend/icon-insta.png';
|
288 |
?>
|
289 |
<ul class="zoom-instagram-widget__items layout-legacy zoom-instagram-widget__items--no-js"
|
290 |
data-images-per-row="<?php echo esc_attr( $instance['images-per-row'] ); ?>"
|
dist/images/backend/icon-insta.png
ADDED
Binary file
|
dist/images/backend/user-avatar.jpg
DELETED
Binary file
|
dist/images/frontend/wpzoom-instagram-icons.svg
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
<svg xmlns="http://www.w3.org/2000/svg">
|
3 |
-
<symbol xmlns="http://www.w3.org/2000/svg" id="carousel_album" viewBox="0 0
|
4 |
-
<path d="
|
5 |
</symbol>
|
6 |
-
<symbol xmlns="http://www.w3.org/2000/svg" id="video" viewBox="0 0
|
7 |
-
<path d="
|
8 |
</symbol>
|
9 |
</svg>
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
<svg xmlns="http://www.w3.org/2000/svg">
|
3 |
+
<symbol xmlns="http://www.w3.org/2000/svg" id="carousel_album" viewBox="0 0 48 48" fill="#ffffff">
|
4 |
+
<path d="M34.8 29.7V11c0-2.9-2.3-5.2-5.2-5.2H11c-2.9 0-5.2 2.3-5.2 5.2v18.7c0 2.9 2.3 5.2 5.2 5.2h18.7c2.8-.1 5.1-2.4 5.1-5.2zM39.2 15v16.1c0 4.5-3.7 8.2-8.2 8.2H14.9c-.6 0-.9.7-.5 1.1 1 1.1 2.4 1.8 4.1 1.8h13.4c5.7 0 10.3-4.6 10.3-10.3V18.5c0-1.6-.7-3.1-1.8-4.1-.5-.4-1.2 0-1.2.6z"/>
|
5 |
</symbol>
|
6 |
+
<symbol xmlns="http://www.w3.org/2000/svg" id="video" viewBox="0 0 24 24" fill="#ffffff">
|
7 |
+
<path d="M12.823 1l2.974 5.002h-5.58l-2.65-4.971c.206-.013.419-.022.642-.027L8.55 1zm2.327 0h.298c3.06 0 4.468.754 5.64 1.887a6.007 6.007 0 011.596 2.82l.07.295h-4.629L15.15 1zm-9.667.377L7.95 6.002H1.244a6.01 6.01 0 013.942-4.53zm9.735 12.834l-4.545-2.624a.909.909 0 00-1.356.668l-.008.12v5.248a.91.91 0 001.255.84l.109-.053 4.545-2.624a.909.909 0 00.1-1.507l-.1-.068-4.545-2.624zm-14.2-6.209h21.964l.015.36.003.189v6.899c0 3.061-.755 4.469-1.888 5.64-1.151 1.114-2.5 1.856-5.33 1.909l-.334.003H8.551c-3.06 0-4.467-.755-5.64-1.889-1.114-1.15-1.854-2.498-1.908-5.33L1 15.45V8.551l.003-.189z"/>
|
8 |
</symbol>
|
9 |
</svg>
|
dist/scripts/backend/index.asset.php
CHANGED
@@ -1 +1 @@
|
|
1 |
-
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '
|
1 |
+
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '6e24e5a8fda65ac1ce6279f1a8d86653');
|
dist/scripts/backend/index.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(t){var e={};function n(i){if(e[i])return e[i].exports;var a=e[i]={i:i,l:!1,exports:{}};return t[i].call(a.exports,a,a.exports,n),a.l=!0,a.exports}n.m=t,n.c=e,n.d=function(t,e,i){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:i})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var a in t)n.d(i,a,function(e){return t[e]}.bind(null,a));return i},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=13)}({13:function(t,e,n){"use strict";function i(t){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}jQuery((function(t){var e=t();t.fn.imageMediaControl=function(){this.each((function(){var n=t(this),i={frame:function(){return this._frame||(this._frame=wp.media({title:n.data("title"),library:{type:n.data("type")},button:{text:n.data("button")},multiple:!1,selection:[]}),this._frame.on("open",this.updateFrame).state("library").on("select",this.select)),this._frame},select:function(){var t=n.find(".attachment-input").add(e.find("input#wpz-insta_account-photo")),i=this.get("selection"),a=i.pluck("id");t.val(""+a).trigger("change"),e.find("img.wpz-insta_profile-photo").attr("src",""+i.first().toJSON().sizes.thumbnail.url)},updateFrame:function(){},init:function(){var a=n.find(".file-wrapper"),s=n.find(".attachment-input, #wpz-insta_account-photo"),o=n.find(".add-media, #wpz-insta_edit-account-photo"),r=n.find(".remove-avatar, #wpz-insta_reset-account-photo");o.on("click",(function(n){n.preventDefault(),e=t(this).closest(".wpz-insta_account-photo-wrapper"),i.frame().open()})),r.on("click",(function(e){e.preventDefault(),t("#the-list input.wpz-insta_profile-photo-input").val("-1").trigger("change"),t("#the-list img.wpz-insta_profile-photo").attr("src",zoom_instagram_widget_admin.default_user_thumbnail)})),s.on("change",(function(e){e.preventDefault();var i=n.find(".attachment-input").val();i?(o.text(n.data("button-replace-text")),r.show(),wp.media.attachment(i).fetch().then((function(e){a.fadeOut(400,(function(){var n=e.url;_.findKey(e,"thumbnail")&&(n=e.sizes.thumbnail.url),t(this).html('<img width="150" height="150" src="'+n+'"/>').fadeIn(400)}))}))):(a.hide(),r.hide(),o.text(n.data("button-add-text")))})).trigger("change")}};i.frame().on("open",(function(){var t=n.find(".attachment-input, #wpz-insta_account-photo"),e=i.frame(),a=e.state().get("selection"),s=t.val(),o=wp.media.attachment(s);e.reset(),o.id&&a.add(o)})),i.init()}))},t(".zoom-instagram-user-avatar-media-uploader, .inline-edit-wpz-insta_user .wpz-insta_quick-edit-columns .wpz-insta_two-columns").imageMediaControl(),t(window).on("beforeunload",(function(e){t.isEmptyObject(s)||o||e.preventDefault()})),t("#the-list").on("click","#wpz-insta_reconnect",(function(e){e.preventDefault(),window.wpzInstaAuthenticateInstagram(t(this).attr("href"))})),t(".wpzoom-instagram-widget-settings-request-type-wrapper").find("input[type=radio]").on("change",(function(e){e.preventDefault();var n=t(this).val(),i=["with-access-token","with-basic-access-token","without-access-token"].filter((function(t){return t!==n})),a=t(this).closest(".form-table");a.find(".wpzoom-instagram-widget-"+n+"-group").show(),i.forEach((function(t){a.find(".wpzoom-instagram-widget-"+t+"-group").hide()}))})),t(".wpzoom-instagram-widget-settings-request-type-wrapper").find("input[type=radio]:checked").change(),setTimeout((function(){if("hash"in window.location&&""!=(""+window.location.hash).trim()){var e=t(".edit-php.post-type-wpz-insta_user #the-list").find((""+window.location.hash).trim());e.length>0&&e.find("button.editinline").trigger("click")}}),100),window.opener&&window.location.hash.length>1&&window.location.hash.includes("access_token")&&(window.opener.wpzInstaHandleReturnedToken(window.location),window.close()),t("#screen-meta #wpz-insta_account-photo-hide, #screen-meta #wpz-insta_account-bio-hide, #screen-meta #wpz-insta_account-token-hide, #screen-meta #wpz-insta_actions-hide").closest("label").remove(),t("#titlediv").remove(),t("#title").length>0&&(t("#title").attr("size",t("#title").val().trim().length+3),t("#title").on("input",(function(){t(this).attr("size",t(this).val().trim().length+3)}))),t(".wpz-insta_feed-edit-nav").length>0&&(window.location.hash&&r(window.location.hash),t(".wpz-insta_feed-edit-nav a").on("click",(function(){r(t(this).attr("href"))}))),t("#wpz-insta_show-pro").on("change",(function(e){e.preventDefault(),t(this).closest(".wpz-insta_sidebar").toggleClass("show-pro",this.checked)})),t(".wpz-insta-wrap .account-options .account-option-button").on("click",(function(e){e.preventDefault(),t(this).is(".disabled")||(t(this).is("#wpz-insta_connect-personal")||t(this).is("#wpz-insta_connect-business")?window.wpzInstaAuthenticateInstagram(t(this).attr("href")):t(this).is("#wpz-insta_account-token-button")&&window.wpzInstaHandleReturnedToken(t("#wpz-insta_account-token-input").val().trim().replace(/[^a-z0-9-_.]+/gi,""),!0))})),t("#wpz-insta_account-token-input").on("input",(function(){t("#wpz-insta_account-token-button").toggleClass("disabled",t("#wpz-insta_account-token-input").val().trim().length<=0)})),t('.wpz-insta_sidebar-section-layout input[name="_wpz-insta_layout"]').on("change",(function(){var e=t(this).closest(".wpz-insta_sidebar-section-layout").find('input[name="_wpz-insta_col-num"]').closest(".wpz-insta_table-row"),n=t(this).closest(".wpz-insta_sidebar-left-section"),i=n.find(".wpz-insta_sidebar-section-feed .wpz-insta_show-on-hover fieldset.wpz-insta_feed-only-pro.wpz-insta_pro-only"),a=n.find(".wpz-insta_sidebar-section-load-more");e.add(i).add(a).toggleClass("hidden","1"==t(this).val()),t(".wpz-insta-admin .wpz-insta_widget-preview .wpz-insta_widget-preview-view").toggleClass("layout-fullwidth","1"==t(this).val())})),t("#wpz-insta_modal-dialog").find(".wpz-insta_modal-dialog_ok-button, .wpz-insta_modal-dialog_close-button").on("click",(function(e){e.preventDefault();var n=t("#wpz-insta_modal-dialog");window.wpzInstaCloseConnectDoneDialog(n.hasClass("success"),n.hasClass("update"))})),t("#wpz-insta_feed-user-select-btn").on("click",(function(e){e.preventDefault(),t("#wpz-insta_tabs-config-cnnct").removeClass("active").addClass("active").prev(".wpz-insta_sidebar").removeClass("active"),t("#wpz-insta_tabs-config-cnnct").closest(".wpz-insta_tabs-content").find("> .wpz-insta_sidebar").addClass("hide")})),t("#wpz-insta_feed-user-remove-btn").on("click",(function(e){e.preventDefault();var n=t("#wpz-insta_feed-user-select-btn").closest(".wpz-insta_feed-user-select"),i=n.find(".wpz-insta_feed-user-select-info");t("#wpz-insta_user-id").val("-1").trigger("change"),t("#wpz-insta_user-token").val("-1").trigger("change"),t("#wpz-insta_user-token, #wpz-insta_check-new-posts-interval-number, #wpz-insta_enable-request-timeout").closest(".wpz-insta_sidebar-section").removeClass("active"),t("#wpz-insta_widget-preview-links").addClass("disabled"),n.removeClass("is-set"),i.find(".wpz-insta_feed-user-select-info-name").html("None"),i.find(".wpz-insta_feed-user-select-info-type").html("None"),n.closest(".wrap").find(".wpz-insta_settings-header .wpz-insta_feed-edit-nav li:not(:first-child)").addClass("disable")})),t("#wpz-insta_tabs-config-cnnct .wpz-insta_tabs-config-connect-accounts li").on("click",(function(e){e.preventDefault();var n=t("#wpz-insta_feed-user-select-btn").closest(".wpz-insta_feed-user-select"),i=n.find(".wpz-insta_feed-user-select-info");t("#wpz-insta_user-id").val(t(this).data("user-id")).trigger("change"),t("#wpz-insta_user-token").val(t(this).data("user-token")).trigger("change"),t("#wpz-insta_user-token, #wpz-insta_check-new-posts-interval-number, #wpz-insta_enable-request-timeout").closest(".wpz-insta_sidebar-section").addClass("active"),n.addClass("is-set"),i.find(".wpz-insta_feed-user-select-info-name").html(t(this).data("user-name")),i.find(".wpz-insta_feed-user-select-info-type").html(t(this).data("user-type")),n.closest(".wrap").find(".wpz-insta_settings-header .wpz-insta_feed-edit-nav li").removeClass("disable"),n.find(".wpz-insta_feed-user-select-edit-link").attr("href",zoom_instagram_widget_admin.edit_user_url+t(this).data("user-id")),t("#wpz-insta_widget-preview-links").removeClass("disabled"),t("#wpz-insta_tabs-config-cnnct").removeClass("active").prev(".wpz-insta_sidebar").addClass("active"),t("#wpz-insta_tabs-config-cnnct").closest(".wpz-insta_tabs-content").find("> .wpz-insta_sidebar").removeClass("hide")}));var n={},a={},s={},o=!1;function r(e){if(e){var n=t('.wpz-insta_feed-edit-nav a[href="'+e+'"]'),i=n.closest("form").find(".wpz-insta_tabs-content .wpz-insta_sidebar-left-section");n.closest(".wpz-insta_feed-edit-nav").find("li").removeClass("active"),n.closest("li").addClass("active"),i.removeClass("active"),i.filter('[data-id="'+e+'"]').addClass("active")}}function d(t){var e,n=this,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:300;return function(){for(var a=arguments.length,s=new Array(a),o=0;o<a;o++)s[o]=arguments[o];clearTimeout(e),e=setTimeout((function(){t.apply(n,s)}),i)}}if(t("form#post .wpz-insta_tabs-content > .wpz-insta_sidebar > .wpz-insta_sidebar-left").find("input, textarea, select").add("form#post #title").filter("[name][name!='']").not(".preview-exclude").each((function(e){n[t.trim(t(this).attr("name"))]=t(this)})),t.each(n,(function(e,n){a[e]=n.is(":checkbox,:radio")?n.is(":checked")?"1":"0":t.trim(""+n.val())})),t("form#post").on("submit",(function(){return o=!0})),t("form#post #title, form#post .wpz-insta_tabs-content > .wpz-insta_sidebar > .wpz-insta_sidebar-left").on("input change",d((function(e){var n=t(e.target);if(!n.is(".preview-exclude")){var i=n.attr("name"),o=n.is(":checkbox,:radio")?n.is(":checked")?"1":"0":t.trim(""+n.val());i in a&&o!=a[i]?i in s||(s[i]=!0):i in s&&delete s[i],t("input#publish").toggleClass("disabled",t.isEmptyObject(s)),window.wpzInstaReloadPreview()}}),300)),t((function(){window.wpzInstaReloadPreview(),t(".wpz-insta-cron-notice .notice-dismiss").on("click",(function(){var e=t(this).closest(".notice");t.post(ajaxurl,{action:"wpz-insta_dismiss-cron-notice",nonce:e.attr("data-nonce"),user_id:e.attr("data-user-id")})}))})),t("#wpz-insta_widget-preview-links .wpz-insta_widget-preview-header-link").on("click",(function(){t(this).hasClass("active")||(t(this).addClass("active").siblings(".wpz-insta_widget-preview-header-link").removeClass("active"),t(this).closest(".wpz-insta_widget-preview").find(".wpz-insta_widget-preview-view").removeClass("wpz-insta_widget-preview-size-desktop wpz-insta_widget-preview-size-tablet wpz-insta_widget-preview-size-mobile").addClass(t(this).hasClass("wpz-insta_widget-preview-header-links-tablet")?"wpz-insta_widget-preview-size-tablet":t(this).hasClass("wpz-insta_widget-preview-header-links-mobile")?"wpz-insta_widget-preview-size-mobile":"wpz-insta_widget-preview-size-desktop"))})),t("#wpz-insta_widget-preview-view").on("transitionend",(function(){var e=t(this).find("iframe");e.height(parseInt(e.contents().find("body").prop("scrollHeight"))+20)})),t("#wpz-insta_widget-preview-view iframe").on("load",(function(){t(this).removeClass("wpz-insta_preview-hidden"),t(this).closest(".wpz-insta_sidebar-right").addClass("hide-loading")})),t(".wpz-insta_color-picker").wpColorPicker({change:function(e,n){var i=t.Event("change");i.target=e.target,t(e.target).closest("form#post").find(".wpz-insta_tabs-content > .wpz-insta_sidebar > .wpz-insta_sidebar-left").triggerHandler(i)}}),t(".wpzinsta-pointer").each((function(){t(this).parent().addBack().one("click",(function(e){e.stopPropagation();var n=t(this);t(this).is("li")&&(n=t(this).find(".wpzinsta-pointer")),n.remove()}))})),t("#post-body-content .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section").on("scroll",(function(){t(this).find(".wp-picker-holder").each((function(){var e=t(this).closest(".wp-picker-container"),n=e.offset();t(this).offset({top:n.top+e.outerHeight(),left:n.left})}))})).triggerHandler("scroll"),t(window).on("scroll",(function(){t("#post-body-content .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section").each((function(){t(this).triggerHandler("scroll")}))})),t("#post-body-content .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section .wpz-insta_color-picker").length>0&&new IntersectionObserver((function(t,e){return t.forEach((function(t){return t.target.blur()}))}),{root:null,threshold:.1}).observe(t("#post-body-content .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section .wpz-insta_color-picker")[0]),t("#wpz-insta_shortcode").on("focus",(function(e){e.preventDefault(),t(this).select()})),t("#wpz-insta_shortcode-copy-btn").on("click",d((function(){window.wpzInstaCopyToClipboard(t("#wpz-insta_shortcode").val()).then((function(){t("#wpz-insta_shortcode-copy-btn").addClass("success"),clearTimeout(void 0),setTimeout((function(){t("#wpz-insta_shortcode-copy-btn").removeClass("success")}),3e3)}))}),300)),t(".wpz-insta_actions-menu_copy-shortcode").on("click",(function(e){e.preventDefault();var n=t(this).closest("tr").attr("id").replace("post-","");window.wpzInstaCopyToClipboard('[instagram feed="'+n+'"]').then((function(){window.wpzInstaShowDialog(zoom_instagram_widget_admin.i18n_shortcode_success_title,zoom_instagram_widget_admin.i18n_shortcode_success_content,"success update")}))})),t(".wpz-insta_actions-menu_delete").on("click",(function(e){e.preventDefault();var n=t(this).hasClass("wpz-insta_actions-menu_delete-feed"),i=t(this).find("a").attr("href");window.wpzInstaShowConfirmDialog(zoom_instagram_widget_admin["i18n_delete_"+(n?"feed":"user")+"_confirm_title"],zoom_instagram_widget_admin["i18n_delete_"+(n?"feed":"user")+"_confirm_content"],zoom_instagram_widget_admin.i18n_delete_confirm_button_ok,zoom_instagram_widget_admin.i18n_delete_confirm_button_cancel).then((function(t){!0===t&&(window.location=i),window.wpzInstaCloseDialog()}))})),window.wpzInstaAuthenticateInstagram=function(t,e){var n=(window.screen.height-500)/2,i=(window.screen.width-700)/2;window.open(t,"","width=700,height=500,left="+i+",top="+n)},window.wpzInstaParseQuery=function(t){for(var e={},n=("?"===t[0]||"#"===t[0]?t.substr(1):t).split("&"),i=0;i<n.length;i++){var a=n[i].split("=");e[decodeURIComponent(a[0])]=decodeURIComponent(a[1]||"")}return e},window.wpzInstaShowConnectDoneDialog=function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];window.wpzInstaShowDialog(t?e?zoom_instagram_widget_admin.i18n_reconnect_success_title:zoom_instagram_widget_admin.i18n_connect_success_title:zoom_instagram_widget_admin.i18n_connect_fail_title,t?e?zoom_instagram_widget_admin.i18n_reconnect_success_content:zoom_instagram_widget_admin.i18n_connect_success_content:zoom_instagram_widget_admin.i18n_connect_fail_content,(t?"success":"fail")+(e?" update":""))},window.wpzInstaShowDialog=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"[DIALOG TITLE]",n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"[DIALOG CONTENT]",i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"success",a=t("#wpz-insta_modal-dialog"),s=a.find(".wpz-insta_modal-dialog_header-title"),o=a.find(".wpz-insta_modal-dialog_content"),r=(a.find(".wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_ok-button"),a.find(".wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_cancel-button"));s.html(""+e),o.html(""+n),r.addClass("hidden"),a.removeClass().addClass("open "+i)},window.wpzInstaShowConfirmDialog=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"[DIALOG TITLE]",n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"[DIALOG CONTENT]",i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"[OK]",a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"[CANCEL]";return new Promise((function(s,o){var r=t("#wpz-insta_modal-dialog"),d=r.find(".wpz-insta_modal-dialog_header-title"),c=r.find(".wpz-insta_modal-dialog_content"),l=r.find(".wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_ok-button"),p=r.find(".wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_cancel-button");d.html(""+e),c.html(""+n),l.removeClass("hidden").html(""+i),l.on("click",(function(){return s(!0)})),p.removeClass("hidden").html(""+a),p.on("click",(function(){return s(!1)})),r.removeClass().addClass("open confirm")}))},window.wpzInstaCloseConnectDoneDialog=function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];window.wpzInstaCloseDialog(),t&&!e&&window.location.replace(zoom_instagram_widget_admin.feeds_url)},window.wpzInstaCloseDialog=function(){t("#wpz-insta_modal-dialog").removeClass("open")},window.wpzInstaCopyToClipboard=function(t){if(navigator.clipboard&&window.isSecureContext)return navigator.clipboard.writeText(t);var e=document.createElement("textarea");return e.value=t,e.style.position="fixed",e.style.left="-999999px",e.style.top="-999999px",document.body.appendChild(e),e.focus(),e.select(),new Promise((function(t,n){document.execCommand("copy")?t():n(),e.remove()}))},"inlineEditPost"in window){var c=window.inlineEditPost.edit;window.inlineEditPost.edit=function(e){c.call(this,e),"object"===i(e)&&(e=window.inlineEditPost.getId(e));for(var n,a,s=["_wpz-insta_account-type","_wpz-insta_token","_wpz-insta_token_expire","_thumbnail_id","wpz-insta_profile-photo","_wpz-insta_user_name","_wpz-insta_user-bio"],o=t("#inline_"+e),r=t("#edit-"+e),d=0;d<s.length;d++)n=(n=t("."+(a=s[d]),o)).text(),"wpz-insta_profile-photo"==a?t("img."+a).attr("src",n):t(':input[name="'+a+'"]',r).val(n)}}window.wpzInstaHandleReturnedToken=function(e){var n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(e){var i=!n&&"hash"in e&&""!=(""+e.hash).trim()?window.wpzInstaParseQuery(""+e.hash):{};if(!n&&!t.isEmptyObject(i)||n&&""!=(""+e).trim()){var a=n?(""+e).trim():"access_token"in i?(""+i.access_token).trim():"-1";if(""!=a&&"-1"!=a){var s={action:"wpz-insta_connect-user",nonce:zoom_instagram_widget_admin.nonce,token:a};if(!n){var o="search"in e&&""!=(""+e.search).trim()?window.wpzInstaParseQuery(""+e.search):{};s.post_id=!t.isEmptyObject(o)&&"post"in o?parseInt(o.post):0}t.post(ajaxurl,s).done((function(e){t("#the-list #wpz-insta_token").val(a);var n=new Date;n.setDate(n.getDate()+60),t("#the-list #wpz-insta_token-expire-time").html(n.toLocaleDateString("en-US",{weekday:"long",day:"numeric",month:"long",year:"numeric"})),window.wpzInstaShowConnectDoneDialog(e.success,"data"in e&&"update"in e.data&&e.data.update)})).fail((function(){window.wpzInstaShowConnectDoneDialog(!1)}))}}}},window.wpzInstaReloadPreview=function(){var e=zoom_instagram_widget_admin.preview_url,n=t.param(t("form#post #title, form#post .wpz-insta_tabs-content > .wpz-insta_sidebar > .wpz-insta_sidebar-left").find("input, textarea, select").not(".preview-exclude").serializeArray());n&&(e+="&"+n),t("#wpz-insta_widget-preview-view").closest(".wpz-insta_sidebar-right").removeClass("hide-loading"),t("#wpz-insta_widget-preview-view iframe").addClass("wpz-insta_preview-hidden").attr("src",e)},window.wpzInstaUpdatePreviewHeight=function(){var e=t("#wpz-insta_widget-preview-view iframe");e.height(parseInt(e.contents().find("body").prop("scrollHeight")))}}))}});
|
1 |
+
!function(t){var e={};function i(n){if(e[n])return e[n].exports;var a=e[n]={i:n,l:!1,exports:{}};return t[n].call(a.exports,a,a.exports,i),a.l=!0,a.exports}i.m=t,i.c=e,i.d=function(t,e,n){i.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:n})},i.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},i.t=function(t,e){if(1&e&&(t=i(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var a in t)i.d(n,a,function(e){return t[e]}.bind(null,a));return n},i.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return i.d(e,"a",e),e},i.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},i.p="",i(i.s=13)}({13:function(t,e,i){"use strict";function n(t){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}jQuery((function(t){var e=t();t.fn.imageMediaControl=function(){this.each((function(){var i=t(this),n={frame:function(){return this._frame||(this._frame=wp.media({title:i.data("title"),library:{type:i.data("type")},button:{text:i.data("button")},multiple:!1,selection:[]}),this._frame.on("open",this.updateFrame).state("library").on("select",this.select)),this._frame},select:function(){var t=i.find(".attachment-input").add(e.find("input#wpz-insta_account-photo")),n=this.get("selection"),a=n.pluck("id");t.val(""+a).trigger("change"),e.find("img.wpz-insta_profile-photo").attr("src",""+n.first().toJSON().sizes.thumbnail.url)},updateFrame:function(){},init:function(){var a=i.find(".file-wrapper"),s=i.find(".attachment-input, #wpz-insta_account-photo"),o=i.find(".add-media, #wpz-insta_edit-account-photo"),r=i.find(".remove-avatar, #wpz-insta_reset-account-photo");o.on("click",(function(i){i.preventDefault(),e=t(this).closest(".wpz-insta_account-photo-wrapper"),n.frame().open()})),r.on("click",(function(e){e.preventDefault(),t("#the-list input.wpz-insta_profile-photo-input").val("-1").trigger("change"),t("#the-list img.wpz-insta_profile-photo").attr("src",zoom_instagram_widget_admin.default_user_thumbnail)})),s.on("change",(function(e){e.preventDefault();var n=i.find(".attachment-input").val();n?(o.text(i.data("button-replace-text")),r.show(),wp.media.attachment(n).fetch().then((function(e){a.fadeOut(400,(function(){var i=e.url;_.findKey(e,"thumbnail")&&(i=e.sizes.thumbnail.url),t(this).html('<img width="150" height="150" src="'+i+'"/>').fadeIn(400)}))}))):(a.hide(),r.hide(),o.text(i.data("button-add-text")))})).trigger("change")}};n.frame().on("open",(function(){var t=i.find(".attachment-input, #wpz-insta_account-photo"),e=n.frame(),a=e.state().get("selection"),s=t.val(),o=wp.media.attachment(s);e.reset(),o.id&&a.add(o)})),n.init()}))},t(".zoom-instagram-user-avatar-media-uploader, .inline-edit-wpz-insta_user .wpz-insta_quick-edit-columns .wpz-insta_two-columns").imageMediaControl(),t(window).on("beforeunload",(function(e){t.isEmptyObject(s)||o||e.preventDefault()})),t("#the-list").on("click","#wpz-insta_reconnect",(function(e){e.preventDefault(),window.wpzInstaAuthenticateInstagram(t(this).attr("href"))})),t(".wpzoom-instagram-widget-settings-request-type-wrapper").find("input[type=radio]").on("change",(function(e){e.preventDefault();var i=t(this).val(),n=["with-access-token","with-basic-access-token","without-access-token"].filter((function(t){return t!==i})),a=t(this).closest(".form-table");a.find(".wpzoom-instagram-widget-"+i+"-group").show(),n.forEach((function(t){a.find(".wpzoom-instagram-widget-"+t+"-group").hide()}))})),t(".wpzoom-instagram-widget-settings-request-type-wrapper").find("input[type=radio]:checked").change(),setTimeout((function(){if("hash"in window.location&&""!=(""+window.location.hash).trim()){var e=t(".edit-php.post-type-wpz-insta_user #the-list").find((""+window.location.hash).trim());e.length>0&&e.find("button.editinline").trigger("click")}}),100),window.opener&&window.location.hash.length>1&&window.location.hash.includes("access_token")&&(window.opener.wpzInstaHandleReturnedToken(window.location),window.close()),t("#screen-meta #wpz-insta_account-photo-hide, #screen-meta #wpz-insta_account-bio-hide, #screen-meta #wpz-insta_account-token-hide, #screen-meta #wpz-insta_actions-hide").closest("label").remove(),t("#titlediv").remove(),t("#title").length>0&&(t("#title").attr("size",t("#title").val().trim().length+3),t("#title").on("input",(function(){t(this).attr("size",t(this).val().trim().length+3)}))),t(".wpz-insta_feed-edit-nav").length>0&&(window.location.hash&&r(window.location.hash),t(".wpz-insta_feed-edit-nav a").on("click",(function(){r(t(this).attr("href"))}))),t("#wpz-insta_show-pro").on("change",(function(e){e.preventDefault(),t(this).closest(".wpz-insta_sidebar").toggleClass("show-pro",this.checked)})),t(".wpz-insta-wrap .account-options .account-option-button").on("click",(function(e){e.preventDefault(),t(this).is(".disabled")||(t(this).is("#wpz-insta_connect-personal")||t(this).is("#wpz-insta_connect-business")?window.wpzInstaAuthenticateInstagram(t(this).attr("href")):t(this).is("#wpz-insta_account-token-button")&&window.wpzInstaHandleReturnedToken(t("#wpz-insta_account-token-input").val().trim().replace(/[^a-z0-9-_.]+/gi,""),!0))})),t("#wpz-insta_account-token-input").on("input",(function(){t("#wpz-insta_account-token-button").toggleClass("disabled",t("#wpz-insta_account-token-input").val().trim().length<=0)})),t('.wpz-insta_sidebar-section-layout input[name="_wpz-insta_layout"]').on("change",(function(){var e=t(this).closest(".wpz-insta_sidebar-section-layout").find('input[name="_wpz-insta_col-num"]').closest(".wpz-insta_table-row"),i=t(this).closest(".wpz-insta_sidebar-section-layout").find('input[name="_wpz-insta_perpage-num"]').closest(".wpz-insta_table-row"),n=t(this).closest(".wpz-insta_sidebar-section-layout").find(".wpz-insta_table-row-featured-layout"),a=n.closest(".wpz-insta_feed-only-pro"),s=t(this).closest(".wpz-insta_sidebar-left-section"),o=s.find(".wpz-insta_sidebar-section-feed .wpz-insta_show-on-hover fieldset.wpz-insta_feed-only-pro.wpz-insta_pro-only"),r=s.find(".wpz-insta_sidebar-section-load-more");e.add(o).add(r).toggleClass("hidden","1"==t(this).val()||"3"==t(this).val()),t(".wpz-insta-admin .wpz-insta_widget-preview .wpz-insta_widget-preview-view").toggleClass("layout-fullwidth","1"==t(this).val()),n.toggleClass("hidden","0"!=t(this).val()),t(".wpz-insta_sidebar .wpz-insta_sidebar-left").hasClass(".is-pro")||a.toggleClass("hidden","0"!=t(this).val()),i.toggleClass("hidden","3"!=t(this).val())})),t('.wpz-insta_sidebar-section-layout input[name="_wpz-insta_col-num"]').on("input",(function(){var e=parseInt(t(this).closest(".wpz-insta_sidebar-section-layout").find('input[name="_wpz-insta_col-num"]').val()),i=t(this).closest(".wpz-insta_table").find("label.featured-layout"),n=i.closest(".wpz-insta_table-row");e<3||e>6?n.addClass("hidden"):(n.removeClass("hidden"),i.addClass("hidden"),i.each((function(){t(this).is(".featured-layout-columns_"+e)&&t(this).removeClass("hidden")})))})),t("#_wpz-insta_featured-layout-enable").on("change",(function(){t(this).closest(".wpz-insta_table-row").find(".wpz-insta_image-select").toggleClass("hidden",!t(this).is(":checked"))})),t("#wpz-insta_modal-dialog").find(".wpz-insta_modal-dialog_ok-button, .wpz-insta_modal-dialog_close-button").on("click",(function(e){e.preventDefault();var i=t("#wpz-insta_modal-dialog");window.wpzInstaCloseConnectDoneDialog(i.hasClass("success"),i.hasClass("update"))})),t("#wpz-insta_feed-user-select-btn").on("click",(function(e){e.preventDefault(),t("#wpz-insta_tabs-config-cnnct").removeClass("active").addClass("active").prev(".wpz-insta_sidebar").removeClass("active"),t("#wpz-insta_tabs-config-cnnct").closest(".wpz-insta_tabs-content").find("> .wpz-insta_sidebar").addClass("hide")})),t("#wpz-insta_feed-user-remove-btn").on("click",(function(e){e.preventDefault();var i=t("#wpz-insta_feed-user-select-btn").closest(".wpz-insta_feed-user-select"),n=i.find(".wpz-insta_feed-user-select-info");t("#wpz-insta_user-id").val("-1").trigger("change"),t("#wpz-insta_user-token").val("-1").trigger("change"),t("#wpz-insta_user-token, #wpz-insta_check-new-posts-interval-number, #wpz-insta_enable-request-timeout").closest(".wpz-insta_sidebar-section").removeClass("active"),t("#wpz-insta_widget-preview-links").addClass("disabled"),i.removeClass("is-set"),n.find(".wpz-insta_feed-user-select-info-name").html("None"),n.find(".wpz-insta_feed-user-select-info-type").html("None"),i.closest(".wrap").find(".wpz-insta_settings-header .wpz-insta_feed-edit-nav li:not(:first-child)").addClass("disable")})),t("#wpz-insta_tabs-config-cnnct .wpz-insta_tabs-config-connect-accounts li").on("click",(function(e){e.preventDefault();var i=t("#wpz-insta_feed-user-select-btn").closest(".wpz-insta_feed-user-select"),n=i.find(".wpz-insta_feed-user-select-info");t("#wpz-insta_user-id").val(t(this).data("user-id")).trigger("change"),t("#wpz-insta_user-token").val(t(this).data("user-token")).trigger("change"),t("#wpz-insta_user-token, #wpz-insta_check-new-posts-interval-number, #wpz-insta_enable-request-timeout").closest(".wpz-insta_sidebar-section").addClass("active"),i.addClass("is-set"),n.find(".wpz-insta_feed-user-select-info-name").html(t(this).data("user-name")),n.find(".wpz-insta_feed-user-select-info-type").html(t(this).data("user-type")),i.closest(".wrap").find(".wpz-insta_settings-header .wpz-insta_feed-edit-nav li").removeClass("disable"),i.find(".wpz-insta_feed-user-select-edit-link").attr("href",zoom_instagram_widget_admin.edit_user_url+t(this).data("user-id")),t("#wpz-insta_widget-preview-links").removeClass("disabled"),t("#wpz-insta_tabs-config-cnnct").removeClass("active").prev(".wpz-insta_sidebar").addClass("active"),t("#wpz-insta_tabs-config-cnnct").closest(".wpz-insta_tabs-content").find("> .wpz-insta_sidebar").removeClass("hide")}));var i={},a={},s={},o=!1;function r(e){if(e){var i=t('.wpz-insta_feed-edit-nav a[href="'+e+'"]'),n=i.closest("form").find(".wpz-insta_tabs-content .wpz-insta_sidebar-left-section");i.closest(".wpz-insta_feed-edit-nav").find("li").removeClass("active"),i.closest("li").addClass("active"),n.removeClass("active"),n.filter('[data-id="'+e+'"]').addClass("active")}}function d(t){var e,i=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:300;return function(){for(var a=arguments.length,s=new Array(a),o=0;o<a;o++)s[o]=arguments[o];clearTimeout(e),e=setTimeout((function(){t.apply(i,s)}),n)}}if(t("form#post .wpz-insta_tabs-content > .wpz-insta_sidebar > .wpz-insta_sidebar-left").find("input, textarea, select").add("form#post #title").filter("[name][name!='']").not(".preview-exclude").each((function(e){t(this).is(":radio")?t(this).is(":checked")&&(i[t.trim(t(this).attr("name"))]=t(this)):i[t.trim(t(this).attr("name"))]=t(this)})),t.each(i,(function(e,i){a[e]=i.is(":checkbox")?i.is(":checked")?"1":"0":t.trim(""+i.val())})),t("form#post").on("submit",(function(){return o=!0})),t("form#post #title, form#post .wpz-insta_tabs-content > .wpz-insta_sidebar > .wpz-insta_sidebar-left").on("input change",d((function(e){var i=t(e.target);if(!i.is(".preview-exclude")){var n=i.attr("name"),o=i.is(":checkbox")?i.is(":checked")?"1":"0":t.trim(""+i.val());n in a&&o!=a[n]?n in s||(s[n]=!0):n in s&&delete s[n],t("input#publish").toggleClass("disabled",t.isEmptyObject(s)),window.wpzInstaReloadPreview()}}),300)),t((function(){window.wpzInstaReloadPreview(),t(".wpz-insta-cron-notice .notice-dismiss").on("click",(function(){var e=t(this).closest(".notice");t.post(ajaxurl,{action:"wpz-insta_dismiss-cron-notice",nonce:e.attr("data-nonce"),user_id:e.attr("data-user-id")})}))})),t("#wpz-insta_widget-preview-links .wpz-insta_widget-preview-header-link").on("click",(function(){t(this).hasClass("active")||(t(this).addClass("active").siblings(".wpz-insta_widget-preview-header-link").removeClass("active"),t(this).closest(".wpz-insta_widget-preview").find(".wpz-insta_widget-preview-view").removeClass("wpz-insta_widget-preview-size-desktop wpz-insta_widget-preview-size-tablet wpz-insta_widget-preview-size-mobile").addClass(t(this).hasClass("wpz-insta_widget-preview-header-links-tablet")?"wpz-insta_widget-preview-size-tablet":t(this).hasClass("wpz-insta_widget-preview-header-links-mobile")?"wpz-insta_widget-preview-size-mobile":"wpz-insta_widget-preview-size-desktop"))})),t("#wpz-insta_widget-preview-view").on("transitionend",(function(){var e=t(this).find("iframe");e.height(parseInt(e.contents().find("body").prop("scrollHeight"))+20)})),t("#wpz-insta_widget-preview-view iframe").on("load",(function(){t(this).removeClass("wpz-insta_preview-hidden"),t(this).closest(".wpz-insta_sidebar-right").addClass("hide-loading")})),t(".wpz-insta_color-picker").wpColorPicker({change:function(e,i){var n=t.Event("change");n.target=e.target,t(e.target).closest("form#post").find(".wpz-insta_tabs-content > .wpz-insta_sidebar > .wpz-insta_sidebar-left").triggerHandler(n)}}),t(".wpzinsta-pointer").each((function(){t(this).parent().addBack().one("click",(function(e){e.stopPropagation();var i=t(this);t(this).is("li")&&(i=t(this).find(".wpzinsta-pointer")),i.remove()}))})),t("#post-body-content .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section").on("scroll",(function(){t(this).find(".wp-picker-holder").each((function(){var e=t(this).closest(".wp-picker-container"),i=e.offset();t(this).offset({top:i.top+e.outerHeight(),left:i.left})}))})).triggerHandler("scroll"),t(window).on("scroll",(function(){t("#post-body-content .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section").each((function(){t(this).triggerHandler("scroll")}))})),t("#post-body-content .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section .wpz-insta_color-picker").length>0&&new IntersectionObserver((function(t,e){return t.forEach((function(t){return t.target.blur()}))}),{root:null,threshold:.1}).observe(t("#post-body-content .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section .wpz-insta_color-picker")[0]),t("#wpz-insta_shortcode").on("focus",(function(e){e.preventDefault(),t(this).select()})),t("#wpz-insta_shortcode-copy-btn").on("click",d((function(){window.wpzInstaCopyToClipboard(t("#wpz-insta_shortcode").val()).then((function(){t("#wpz-insta_shortcode-copy-btn").addClass("success"),clearTimeout(void 0),setTimeout((function(){t("#wpz-insta_shortcode-copy-btn").removeClass("success")}),3e3)}))}),300)),t(".wpz-insta_actions-menu_copy-shortcode").on("click",(function(e){e.preventDefault();var i=t(this).closest("tr").attr("id").replace("post-","");window.wpzInstaCopyToClipboard('[instagram feed="'+i+'"]').then((function(){window.wpzInstaShowDialog(zoom_instagram_widget_admin.i18n_shortcode_success_title,zoom_instagram_widget_admin.i18n_shortcode_success_content,"success update")}))})),t(".wpz-insta_actions-menu_delete").on("click",(function(e){e.preventDefault();var i=t(this).hasClass("wpz-insta_actions-menu_delete-feed"),n=t(this).find("a").attr("href");window.wpzInstaShowConfirmDialog(zoom_instagram_widget_admin["i18n_delete_"+(i?"feed":"user")+"_confirm_title"],zoom_instagram_widget_admin["i18n_delete_"+(i?"feed":"user")+"_confirm_content"],zoom_instagram_widget_admin.i18n_delete_confirm_button_ok,zoom_instagram_widget_admin.i18n_delete_confirm_button_cancel).then((function(t){!0===t&&(window.location=n),window.wpzInstaCloseDialog()}))})),window.wpzInstaAuthenticateInstagram=function(t,e){var i=(window.screen.height-500)/2,n=(window.screen.width-700)/2;window.open(t,"","width=700,height=500,left="+n+",top="+i)},window.wpzInstaParseQuery=function(t){for(var e={},i=("?"===t[0]||"#"===t[0]?t.substr(1):t).split("&"),n=0;n<i.length;n++){var a=i[n].split("=");e[decodeURIComponent(a[0])]=decodeURIComponent(a[1]||"")}return e},window.wpzInstaShowConnectDoneDialog=function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];window.wpzInstaShowDialog(t?e?zoom_instagram_widget_admin.i18n_reconnect_success_title:zoom_instagram_widget_admin.i18n_connect_success_title:zoom_instagram_widget_admin.i18n_connect_fail_title,t?e?zoom_instagram_widget_admin.i18n_reconnect_success_content:zoom_instagram_widget_admin.i18n_connect_success_content:zoom_instagram_widget_admin.i18n_connect_fail_content,(t?"success":"fail")+(e?" update":""))},window.wpzInstaShowDialog=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"[DIALOG TITLE]",i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"[DIALOG CONTENT]",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"success",a=t("#wpz-insta_modal-dialog"),s=a.find(".wpz-insta_modal-dialog_header-title"),o=a.find(".wpz-insta_modal-dialog_content"),r=(a.find(".wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_ok-button"),a.find(".wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_cancel-button"));s.html(""+e),o.html(""+i),r.addClass("hidden"),a.removeClass().addClass("open "+n)},window.wpzInstaShowConfirmDialog=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"[DIALOG TITLE]",i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"[DIALOG CONTENT]",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"[OK]",a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"[CANCEL]";return new Promise((function(s,o){var r=t("#wpz-insta_modal-dialog"),d=r.find(".wpz-insta_modal-dialog_header-title"),c=r.find(".wpz-insta_modal-dialog_content"),l=r.find(".wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_ok-button"),p=r.find(".wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_cancel-button");d.html(""+e),c.html(""+i),l.removeClass("hidden").html(""+n),l.on("click",(function(){return s(!0)})),p.removeClass("hidden").html(""+a),p.on("click",(function(){return s(!1)})),r.removeClass().addClass("open confirm")}))},window.wpzInstaCloseConnectDoneDialog=function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];window.wpzInstaCloseDialog(),t&&!e&&window.location.replace(zoom_instagram_widget_admin.feeds_url)},window.wpzInstaCloseDialog=function(){t("#wpz-insta_modal-dialog").removeClass("open")},window.wpzInstaCopyToClipboard=function(t){if(navigator.clipboard&&window.isSecureContext)return navigator.clipboard.writeText(t);var e=document.createElement("textarea");return e.value=t,e.style.position="fixed",e.style.left="-999999px",e.style.top="-999999px",document.body.appendChild(e),e.focus(),e.select(),new Promise((function(t,i){document.execCommand("copy")?t():i(),e.remove()}))},"inlineEditPost"in window){var c=window.inlineEditPost.edit;window.inlineEditPost.edit=function(e){c.call(this,e),"object"===n(e)&&(e=window.inlineEditPost.getId(e));for(var i,a,s=["_wpz-insta_account-type","_wpz-insta_token","_wpz-insta_token_expire","_thumbnail_id","wpz-insta_profile-photo","_wpz-insta_user_name","_wpz-insta_user-bio"],o=t("#inline_"+e),r=t("#edit-"+e),d=0;d<s.length;d++)i=(i=t("."+(a=s[d]),o)).text(),"wpz-insta_profile-photo"==a?t("img."+a).attr("src",i):t(':input[name="'+a+'"]',r).val(i)}}window.wpzInstaHandleReturnedToken=function(e){var i=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(e){var n=!i&&"hash"in e&&""!=(""+e.hash).trim()?window.wpzInstaParseQuery(""+e.hash):{};if(!i&&!t.isEmptyObject(n)||i&&""!=(""+e).trim()){var a=i?(""+e).trim():"access_token"in n?(""+n.access_token).trim():"-1";if(""!=a&&"-1"!=a){var s={action:"wpz-insta_connect-user",nonce:zoom_instagram_widget_admin.nonce,token:a};if(!i){var o="search"in e&&""!=(""+e.search).trim()?window.wpzInstaParseQuery(""+e.search):{};s.post_id=!t.isEmptyObject(o)&&"post"in o?parseInt(o.post):0}t.post(ajaxurl,s).done((function(e){t("#the-list #wpz-insta_token").val(a);var i=new Date;i.setDate(i.getDate()+60),t("#the-list #wpz-insta_token-expire-time").html(i.toLocaleDateString("en-US",{weekday:"long",day:"numeric",month:"long",year:"numeric"})),window.wpzInstaShowConnectDoneDialog(e.success,"data"in e&&"update"in e.data&&e.data.update)})).fail((function(){window.wpzInstaShowConnectDoneDialog(!1)}))}}}},window.wpzInstaReloadPreview=function(){var e=zoom_instagram_widget_admin.preview_url,i=t.param(t("form#post #title, form#post .wpz-insta_tabs-content > .wpz-insta_sidebar > .wpz-insta_sidebar-left").find("input, textarea, select").not(".preview-exclude").serializeArray());i&&(e+="&"+i),t("#wpz-insta_widget-preview-view").closest(".wpz-insta_sidebar-right").removeClass("hide-loading"),t("#wpz-insta_widget-preview-view iframe").addClass("wpz-insta_preview-hidden").attr("src",e)},window.wpzInstaUpdatePreviewHeight=function(){var e=t("#wpz-insta_widget-preview-view iframe");e.height(parseInt(e.contents().find("body").prop("scrollHeight")))}}))}});
|
dist/styles/backend/index-rtl.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.zoom-instagram-widget .button-connect{color:#fff;border:1px solid #1c5380;border-radius:3px;background-color:#6f97b6;background-image:linear-gradient(to bottom, #6f97b6, #3f729b);background-position:50% 50%;box-shadow:0 1px 1px rgba(0,0,0,.1),inset -1px 0 0 rgba(255,255,255,.05),inset 1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);text-shadow:0 1px 1px #1c5380}.zoom-instagram-widget .button-connect:focus,.zoom-instagram-widget .button-connect:hover{border-color:#1c5380;color:#fff;background-image:linear-gradient(to bottom, #5D87A8, #3f729b)}.zoom-instagram-widget{background:#fff;padding:30px;border:1px solid #ddd;border-radius:3px;margin:30px 0 30px 10px !important;box-shadow:-1px 1px 2px rgba(0,0,0,.1);max-width:700px}.zoom-themes-link{border:1px solid #e2e9ec;padding:30px 30px 260px 30px;border-radius:3px;margin:30px 0 30px 0 !important;box-shadow:-1px 1px 2px rgba(0,0,0,.1);max-width:700px;text-align:center}.zoom-themes-link p{font-size:15px;line-height:1.6}.cta-button{text-align:center;text-decoration:none;color:#fff;background:#3ebd3e;padding:10px 15px;display:inline-block;border-radius:3px;box-shadow:0 -1px 1px rgba(0,0,0,.2) inset;border:1px solid #259425;font-size:16px;text-shadow:-1px 1px rgba(0,0,0,.3)}.cta-button:hover{background:#2a9b2a;color:#fff}#wpzoom-instagram-widget-settings_transient-lifetime-value{max-width:150px;float:right}#wpzoom-instagram-widget-settings_transient-lifetime-type{float:right;max-width:100px}.zoom-instagram-widget .wpzoom-instagram-widget-with-access-token-group{background-color:#fff6f6}.zoom-instagram-widget .wpzoom-instagram-widget-with-basic-access-token-group,.zoom-instagram-widget .wpzoom-instagram-widget-without-access-token-group{background-color:#e0f0e3}.zoom-instagram-widget .wpzoom-instagram-widget-with-basic-access-token-group th,.zoom-instagram-widget .wpzoom-instagram-widget-without-access-token-group th{padding-right:10px}.zoom-instagram-widget .label-wrap input[type=radio]:checked+label[for=wpzoom-instagram-widget-settings_with-basic-access-token],.zoom-instagram-widget .label-wrap input[type=radio]:checked+label[for=wpzoom-instagram-widget-settings_without-access-token]{background-color:#e0f0e3}.zoom-instagram-widget .label-wrap input[type=radio]:checked+label[for=wpzoom-instagram-widget-settings_with-access-token]{background-color:#fff6f6}.zoom-instagram-widget .wpzoom-instagram-widget-settings-request-type-wrapper{display:flex;flex-direction:column}.zoom-instagram-widget .wpzoom-instagram-widget-settings-request-type-wrapper .label-wrap{display:flex;align-items:center}.zoom-instagram-widget .wpzoom-instagram-widget-settings-request-type-wrapper .label-wrap input[type=radio]{z-index:2}.zoom-instagram-widget .wpzoom-instagram-widget-settings-request-type-wrapper .label-wrap label{padding:10px;width:100%;margin-right:-30px;padding-right:40px;z-index:1}.zoom-instagram-widget form h2{border-top:2px solid #eee;padding-top:40px}.zoom-instagram-widget .wpzoom-instagram-widget-with-token-group>td{padding-left:0px}.zoom-instagram-user-avatar-media-uploader .remove-avatar{margin:6px 20px;color:#a00}.zoom-instagram-user-avatar-media-uploader .file-wrapper{margin-top:10px}#wpzoom-instagram-widget-settings-user-info-biography{width:100%;min-height:100px}.wpz-insta-admin.post-php #wpbody-content{padding-bottom:0}.wpz-insta-admin.post-php #wpbody-content>.wrap #poststuff #post-body #post-body-content .wpz-insta_tabs-content .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section,.wpz-insta-admin.post-php #wpbody-content>.wrap #poststuff #post-body #post-body-content .wpz-insta_tabs-content .wpz-insta_sidebar .wpz-insta_widget-preview .wpz-insta_widget-preview-view{max-height:60vh;min-height:200px}.wpz-insta-admin #wpfooter{position:relative}.wpz-insta-admin #wpbody-content{padding-bottom:165px}.wpz-insta-admin #wpbody-content .urgent{color:#ec2439}.wpz-insta-admin #wpbody-content .pro-only{position:absolute;top:0;left:0;line-height:1.5;color:#fff;background:#f57c00;padding:0 4px;border-radius:2px;transform:translate(-50%, -50%)}.wpz-insta-admin #wpbody-content>.wrap>h1.wp-heading-inline,.wpz-insta-admin #wpbody-content>.wrap>.page-title-action,.wpz-insta-admin #wpbody-content>.wrap>.wp-header-end,.wpz-insta-admin #wpbody-content>.wrap>.wpz-insta-wrap~#posts-filter>.search-box,.wpz-insta-admin #wpbody-content>.wrap>.wpz-insta-wrap~#posts-filter>.tablenav,.wpz-insta-admin #wpbody-content>.wrap>.wpz-insta-wrap~#posts-filter>.wp-list-table>tfoot,.wpz-insta-admin #wpbody-content>.wrap #titlediv{display:none !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-notices .notice{display:block !important}.wpz-insta-admin #wpbody-content>.wrap input,.wpz-insta-admin #wpbody-content>.wrap textarea,.wpz-insta-admin #wpbody-content>.wrap select{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-weight:normal;color:#242628;border:1px solid #9ca2a7;border-radius:2px;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap input:hover,.wpz-insta-admin #wpbody-content>.wrap input:focus,.wpz-insta-admin #wpbody-content>.wrap textarea:hover,.wpz-insta-admin #wpbody-content>.wrap textarea:focus,.wpz-insta-admin #wpbody-content>.wrap select:hover,.wpz-insta-admin #wpbody-content>.wrap select:focus{color:#242628;border-color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap input{color:#242628}.wpz-insta-admin #wpbody-content>.wrap input.wpz-insta_input{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.wpz-insta-admin #wpbody-content>.wrap input.wpz-insta_input-nobg{background:transparent}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]{display:inline-flex;align-items:center;justify-content:center;color:#fff;background-color:#fff;height:1.25rem;width:1.25rem;border:none;border-radius:2px;box-shadow:inset 0 0 0 1px #81909c;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:hover{background-color:#ddd !important;box-shadow:inset 0 0 0 1px #81909c !important}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:hover:checked{background-color:#70b5fe !important;box-shadow:inset 0 0 0 1px transparent !important}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:focus{outline:none;box-shadow:inset 0 0 0 1px #81909c}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:focus:checked{box-shadow:inset 0 0 0 1px transparent}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]::before{transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:checked{background-color:#3496ff;box-shadow:inset 0 0 0 1px transparent}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:checked::before{content:url("data:image/svg+xml;utf8,%3Csvg%20width%3D%2214%22%20height%3D%2212%22%20viewBox%3D%220%200%2014%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12.779%201.00004L5.3618%2010.9753L1.06089%207.77735%22%20stroke%3D%22white%22%20stroke-width%3D%221.2%22%2F%3E%3C%2Fsvg%3E%0A");display:block;float:none;height:auto;width:auto;margin:0}.wpz-insta-admin #wpbody-content>.wrap .disabled,.wpz-insta-admin #wpbody-content>.wrap .disable{pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .disable{opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .help{display:inline-block;cursor:help;font-size:20px;vertical-align:text-bottom;height:16px;width:16px;transition:all .2s ease;position:relative}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field{padding:0;margin:0 0 2em}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field label>strong{font-size:15px !important}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field label>em{color:rgba(36,38,40,.8)}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field input[type=text]{display:block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:15px;font-weight:normal;line-height:40px;color:#242628;width:100%;min-height:40px;padding:0 10px;box-sizing:border-box;margin:.7em 0}.wpz-insta-admin #wpbody-content>.wrap .submit-button{padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .button.disabled{pointer-events:none !important}.wpz-insta-admin #wpbody-content>.wrap .button:not(.wp-color-result),.wpz-insta-admin #wpbody-content>.wrap .button-primary,.wpz-insta-admin #wpbody-content>.wrap .button-secondary{display:inline-flex;align-items:center;justify-content:center;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:13px;font-weight:600;line-height:35px;min-height:35px;padding:0 12px;border:0;border-radius:2px;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .button:not(.wp-color-result).button-large,.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-large,.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-large{min-height:48px;padding:0 40px;margin:0}.wpz-insta-admin #wpbody-content>.wrap .button.wp-color-result{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:13px}.wpz-insta-admin #wpbody-content>.wrap .button-primary{color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .button-primary:hover,.wpz-insta-admin #wpbody-content>.wrap .button-primary:active{color:#fff;background:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-positive{color:#fff;background:#2b6}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-positive:hover,.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-positive:active{background:#3bdb82}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-negative{color:#fff;background:#ec2439}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-negative:hover,.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-negative:active{background:#f05161}.wpz-insta-admin #wpbody-content>.wrap .button-secondary{color:#81909c;background:#fff;box-shadow:inset 0 0 0 1px #ddd}.wpz-insta-admin #wpbody-content>.wrap .button-secondary:hover,.wpz-insta-admin #wpbody-content>.wrap .button-secondary:active{background:#ddd}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-positive{color:#2b6;background:#fff;box-shadow:inset 0 0 0 1px #2b6}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-positive:hover,.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-positive:active{color:#242628;background:#fff;box-shadow:inset 0 0 0 1px #242628}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-negative{color:#ec2439;background:#fff;box-shadow:inset 0 0 0 1px #ec2439}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-negative:hover,.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-negative:active{color:#242628;background:#fff;box-shadow:inset 0 0 0 1px #242628}.wpz-insta-admin #wpbody-content>.wrap .button-link{color:#3496ff;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link{font-weight:normal;line-height:1;min-height:0;padding:0;margin:1.5em 0 0}.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link:hover,.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link:active,.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link:focus{color:#70b5fe;background:transparent}.wpz-insta-admin #wpbody-content>.wrap .button-link:hover,.wpz-insta-admin #wpbody-content>.wrap .button-link:active,.wpz-insta-admin #wpbody-content>.wrap .button-link:focus{color:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_suffixed-number-input{display:flex;gap:12px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_suffixed-number-input>*{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_suffixed-number-input>*:first-child{flex-grow:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_profile-photo{display:block;height:100px;width:100px;border-radius:50%}.wpz-insta-admin #wpbody-content>.wrap a{text-decoration:none;color:#3496ff;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap a:hover,.wpz-insta-admin #wpbody-content>.wrap a:active,.wpz-insta-admin #wpbody-content>.wrap a:focus{text-decoration:none;color:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap a.linked{border-bottom:1px solid rgba(52,150,255,.3)}.wpz-insta-admin #wpbody-content>.wrap a.linked:hover,.wpz-insta-admin #wpbody-content>.wrap a.linked:active,.wpz-insta-admin #wpbody-content>.wrap a.linked:focus{border-bottom-color:rgba(112,181,254,.3)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button{display:inline-flex;align-items:center;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;font-weight:600;text-decoration:none;color:#242628;margin:10px 0 0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:hover svg,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:active svg{color:#3496ff;fill:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button svg{color:#242628;fill:#242628;margin:0 0 0 6px;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpzinsta-pointer{position:absolute;top:calc(100% + 3px);right:50%;z-index:1000;cursor:default;font-size:14px;color:#fff;background:#3496ff;width:-webkit-max-content;width:-moz-max-content;width:max-content;padding:4px 10px;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.3);transform:translateX(50%);-webkit-animation-name:bounceFade;animation-name:bounceFade;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.wpz-insta-admin #wpbody-content>.wrap .wpzinsta-pointer>i{position:absolute;top:-10px;right:50%;pointer-events:none;height:10px;width:20px;transform:translateX(50%);overflow:hidden}.wpz-insta-admin #wpbody-content>.wrap .wpzinsta-pointer>i::before{content:"";position:absolute;right:50%;bottom:-4px;pointer-events:initial;background:#3496ff;height:8px;width:8px;box-shadow:0 0 2px rgba(0,0,0,.3);transform:translateX(50%) rotateZ(-45deg)}.wpz-insta-admin #wpbody-content>.wrap .fit-max-content{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-add-new a,.wpz-insta-admin #wpbody-content>.wrap #wpz-insta_tabs-config-cnnct .wpz-insta_tabs-config-connect-add{position:relative}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container{display:inline-flex;position:relative}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container:not(:focus-within) .wp-picker-holder{pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-color-result{position:absolute;top:50%;right:5px;pointer-events:none;height:20px;min-height:0;width:20px;padding:0;border-radius:4px;margin:0;transform:translateY(-50%)}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-color-result:active{transform:translateY(-50%) !important}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-color-result .wp-color-result-text{display:none}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-input-wrap{display:block}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-input-wrap input{line-height:2;width:auto;padding-right:30px}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-input-wrap .wp-picker-clear{display:none}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-holder{display:block;position:fixed;top:100%;right:0;z-index:999;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-holder .iris-picker{display:block !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns{display:flex;align-items:center;list-style:none;padding:0;margin:1.5em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns.wpz-insta_two-columns-left-small{align-items:flex-start;gap:30px;margin-top:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns.wpz-insta_two-columns-left-small>*{text-align:right !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns.wpz-insta_two-columns-left-small>*:first-child{flex-grow:0;width:auto}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns>*{flex-grow:1;list-style:none;width:100%;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns>*:first-child{text-align:right}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns>*:last-child{text-align:left}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_notice{display:flex;align-items:center;font-size:12px;padding:0;margin:1.5em 0 0 !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_notice::before{content:"";display:block;background-image:url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.3 3.5H7.7V4.9H6.3V3.5ZM6.3 6.3H7.7V10.5H6.3V6.3ZM7 0C3.136 0 0 3.136 0 7C0 10.864 3.136 14 7 14C10.864 14 14 10.864 14 7C14 3.136 10.864 0 7 0ZM7 12.6C3.913 12.6 1.4 10.087 1.4 7C1.4 3.913 3.913 1.4 7 1.4C10.087 1.4 12.6 3.913 12.6 7C12.6 10.087 10.087 12.6 7 12.6Z'/%3E%3C/svg%3E");height:14px;width:14px;margin:0 0 0 .8em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_notice p{padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:15px 30px 0;border:1px solid #ddd;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.1);margin:3em 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header #major-publishing-actions{background:transparent;padding:0 0 1em;border:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header #major-publishing-actions #publishing-action{display:flex;align-items:center;gap:20px;float:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header #major-publishing-actions #publishing-action .spinner{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header.wpz-insta-wrap-sides{display:flex;align-items:center;margin-top:1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header.wpz-insta-wrap-sides .wpz-insta-wrap-left{flex-grow:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title{font-size:24px;font-weight:600;line-height:29px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small{font-size:14px;font-weight:normal;line-height:17px;color:#81909c}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small a{text-decoration:none;color:#81909c;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small a:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title .pro{color:#f57c00}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title #title{position:relative;font-size:24px;font-weight:600;text-overflow:ellipsis;line-height:29px;background:transparent url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 17.2505V21.0005H6.75L17.81 9.94055L14.06 6.19055L3 17.2505ZM20.71 7.04055C21.1 6.65055 21.1 6.02055 20.71 5.63055L18.37 3.29055C17.98 2.90055 17.35 2.90055 16.96 3.29055L15.13 5.12055L18.88 8.87055L20.71 7.04055Z' fill='%2381909C'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:center left;min-width:100px;max-width:82%;padding:0 0 0 24px;border:0;outline:none;margin:0;overflow:hidden;box-shadow:0 0 0 1px transparent;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title #title:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title #title:focus{box-shadow:0 0 0 1px #3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-sub-title{font-size:18px;font-weight:normal;line-height:22px;color:#242628;margin:16px 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav{font-size:18px;font-weight:normal;line-height:22px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul{display:flex;list-style:none;gap:40px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li{position:relative;list-style:none;padding:0;margin:0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li.active a{cursor:default;pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li.active a::after{transform:translateY(0)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a{display:block;position:relative;text-decoration:none;color:#242628;outline:none;padding:16px 0;box-shadow:none;overflow:hidden;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a:active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a:focus{outline:none;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a:hover{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a::after{content:"";position:absolute;right:0;left:0;bottom:0;background:#3496ff;height:6px;border-radius:2px 2px 0 0;transform:translateY(100%);transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap.with-bg{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;color:#242628;background:#fff;padding:25px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap.with-bg *:not(h2):not(small){font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter{margin:2em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:15px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td{border-bottom:1px solid #000}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_account-token,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td.column-wpz-insta_account-token{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th{font-weight:600;padding-right:0;padding-left:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_actions{text-align:left}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th a{color:#000;padding:14px 0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th a:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr{display:table-row !important;position:relative;background:transparent}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr:first-child th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr:first-child td,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr.inline-edit-row th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr.inline-edit-row td{border-top:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr.inline-edit-row td{padding-top:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td{vertical-align:middle;padding:20px 0;border-top:1px solid #ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.column-wpz-insta_account-token,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td.column-wpz-insta_account-token{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.check-column{padding:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td>*{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td a:not(.button){color:#3496ff;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td a:not(.button):hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td a:not(.button):active{color:#000}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .row-actions{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit{overflow:hidden;-webkit-animation-name:slidedown;animation-name:slidedown;-webkit-animation-duration:1s;animation-duration:1s}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns{display:flex;list-style:none;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li{flex-grow:1;list-style:none;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li div{display:block;margin:0 0 10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li div:last-child{margin-bottom:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li strong:first-child,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li label>strong:first-child{display:inline-block;margin:0 0 5px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li input:not(.widefat),.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li textarea{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;width:60%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save{position:absolute;top:-10px;left:0;padding:0;transform:translateY(-100%)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button{float:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel{color:#3496ff;background:transparent;box-shadow:inset 0 0 0 1px #3496ff;margin:0 0 0 1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel:active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel:focus{color:#000;box-shadow:inset 0 0 0 1px #000}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .spinner{float:right}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-title,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account{width:50%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account a{color:#242628}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account a:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions{text-align:left;width:5%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions strong{position:relative;cursor:pointer;font-size:20px;font-weight:600;text-align:left;white-space:nowrap;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions strong:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions strong:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu{display:inline-block;position:relative;text-align:left}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu:hover .wpz-insta_hidden{pointer-events:auto;opacity:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu:hover strong{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu:hover strong::after{content:"";position:absolute;right:-50px;left:0;bottom:-15px;height:25px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden{position:absolute;left:0;bottom:-10px;z-index:999;pointer-events:none;text-align:right;background:#fff;min-width:200px;opacity:0;padding:0;border-radius:3px;margin:0;box-shadow:-1px 4px 8px rgba(0,0,0,.1);transform:translate(0%, 100%);transition:opacity .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li{white-space:nowrap;margin:0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:first-child a,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:first-child button{padding-top:10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:last-child a,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:last-child button{padding-bottom:10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li.wpz-insta_actions-menu_divider{pointer-events:none;background:#ddd;height:1px;padding:0;margin:5px 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li.wpz-insta_actions-menu_delete a:hover{color:#ec2439}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li a,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li button{display:block;white-space:nowrap;color:#242628;width:100%;padding:7px 20px;margin:0;box-sizing:border-box;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li button:hover{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .inline-edit-col-left,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .inline-edit-col-right{display:none}.wpz-insta-admin #wpbody-content>.wrap #poststuff{padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap #poststuff #post-body{margin:0}.wpz-insta-admin #wpbody-content>.wrap #poststuff #post-body #post-body-content{float:none;margin:0}.wpz-insta-admin #wpbody-content>.wrap #poststuff #post-body .postbox-container{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content{display:grid}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content *{pointer-events:inherit}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content>*{grid-column:1;grid-row:1;align-self:start}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content>*:not(.active){pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content>*:not(.active) *{pointer-events:none !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar{display:flex;gap:20px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar.hide{pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar:not(.show-pro) .wpz-insta_pro-only{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar input,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar textarea,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar select{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right{background:#fff;border:1px solid #ddd;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left{display:grid;grid-template-rows:auto 1fr;flex-basis:28%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left.is-pro .wpz-insta_sidebar-left-section{max-height:70vh !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section-head{display:flex;align-items:center;grid-column:1;grid-row:1;background:#fafafa;min-height:30px;padding:20px;border-bottom:1px solid #ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section{grid-column:1;grid-row:2;align-self:start;transition:all .3s ease;overflow-x:hidden;overflow-y:auto}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section:not(.active){pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right{flex-grow:1;position:relative}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right.is-loading{transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right.is-loading.hide-loading::before{opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right.is-loading::before{content:"";position:absolute;top:300px;right:50%;z-index:1;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 50 50' xml:space='preserve'%3E%3Cpath fill='%233496ff' d='M43.935,25.145c0-10.318-8.364-18.683-18.683-18.683c-10.318,0-18.683,8.365-18.683,18.683h4.068c0-8.071,6.543-14.615,14.615-14.615c8.072,0,14.615,6.543,14.615,14.615H43.935z'%3E%3CanimateTransform attributeType='xml' attributeName='transform' type='rotate' from='0 25 25' to='360 25 25' dur='0.6s' repeatCount='indefinite'/%3E%3C/path%3E%3C/svg%3E");background-size:contain;height:64px;width:64px;opacity:1;transform:translateX(50%);transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section-big-title{font-size:18px;font-weight:600;margin:30px 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section{padding:30px 0 0;border-top:1px solid #ddd;margin:30px 20px 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section:first-child,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.no-top-border{padding-top:0;border-top:0;margin-top:20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-title{font-size:18px;font-weight:600;margin:0 0 15px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-title.smaller-title{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-description{font-size:14px;font-weight:normal;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-description:last-child{margin-bottom:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section p{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section ul li,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section ol li{margin-bottom:1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_text-btn-aligned{display:flex;align-items:stretch;gap:15px;width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_text-btn-aligned>input{flex-grow:1;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn{display:flex;align-items:center;font-size:14px;line-height:2}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode{background:transparent;border:1px solid #ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn{display:grid;text-align:center;color:#3496ff;background:transparent;border:1px solid #3496ff;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn:hover{color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn.success{color:#fff;background:#2b6;border-color:#2b6}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn.success .wpz-insta_shortcode-copy-btn-text-normal{opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn.success .wpz-insta_shortcode-copy-btn-text-success{opacity:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-normal,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-success{grid-column:1;grid-row:1;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-normal{opacity:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-success{opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select.is-set .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button-highlight{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select.is-set .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button{pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select.is-set .wpz-insta_feed-user-select-edit-link{display:inline-block}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select:not(.is-set) .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info{pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input{display:grid;background:#eee;border:1px solid #9ca2a7;border-radius:4px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info{display:flex;align-items:center;justify-content:space-between;grid-column:1;grid-row:1;margin:15px;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-select-info-left .wpz-insta_feed-user-select-info-name{font-size:14px;font-weight:600;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-select-info-left .wpz-insta_feed-user-select-info-type{font-size:12px;color:#81909c;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-remove-button{font-size:13px;font-weight:600;color:#3496ff;background:transparent;border:1px solid #3496ff;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-remove-button:hover{color:#ec2439;border-color:#ec2439}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap{position:relative;display:flex;align-items:stretch;justify-content:stretch;grid-column:1;grid-row:1;pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button-highlight{display:block;position:absolute;top:-2px;right:-2px;left:-2px;bottom:-2px;z-index:1;pointer-events:none;border:0;border-radius:6px;box-shadow:inset 0 0 1px 1px #3496ff,0 0 1px 1px #3496ff;transition:all .3s ease;-webkit-animation:highlighting .8s infinite;animation:highlighting .8s infinite}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button{display:flex;flex-grow:1;position:relative;z-index:2;pointer-events:all;font-size:14px;font-weight:600;color:#242628;background:#eee;opacity:1;border:0;border-radius:4px;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button:hover{color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-edit-link{display:none;margin:20px 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout{display:flex;align-items:end;gap:10px;max-height:999em;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-pro{display:flex;gap:15px;padding:10px;border-radius:4px;box-shadow:0 0 0 2px #f57c00;max-width:76%;box-sizing:border-box}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-pro legend{font-size:13px;font-weight:600;color:#fff;background:#f57c00;padding:0 5px;margin:0 auto;border-radius:2px;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-pro .wpz-insta_feed-layout-option{pointer-events:none;opacity:.75}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout>.wpz-insta_feed-layout-option{margin-bottom:10px !important;max-width:21%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option{display:block;background:transparent;padding:0;border:0;box-shadow:none;outline:none;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option.disabled{pointer-events:none;opacity:.4}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option:hover svg{color:#9ca2a7;fill:#9ca2a7}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option input{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option svg{display:block;color:#81909c;fill:#81909c;max-width:100%;height:auto;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option input:checked~svg{color:#3496ff;fill:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout-etc,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-general,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-profile-general,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-load-more-general{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table{display:flex;flex-direction:column;gap:20px;width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row{display:flex;align-items:center;width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_table-row-full{flex-direction:column;align-items:stretch}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_table-row-full .wpz-insta_table-cell{width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.hidden{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row .wpz-insta_table-cell{display:block;white-space:nowrap;line-height:30px;width:50%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row .wpz-insta_table-cell input{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row>input[type=checkbox]{margin:0 0 0 1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_show-on-hover{display:table-row}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_show-on-hover>strong{display:block;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro{display:flex;flex-direction:column;gap:20px;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro.wpz-insta_pro-only-with-bottom{padding-bottom:10px;border-bottom:2px solid #f57c00}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro.hidden{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro legend{display:flex;width:100%;padding:0;border-bottom:2px solid #f57c00;margin:0 0 10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro legend>strong{font-size:13px;color:#fff;background:#f57c00;padding:0 5px;border-top-right-radius:2px;border-top-left-radius:2px;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro>label{opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-token,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-check-new,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-request-timeout{max-height:0;opacity:0;overflow:hidden;padding-top:0;margin-top:0;margin-bottom:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-token.active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-check-new.active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-request-timeout.active{max-height:999em;opacity:1;padding-top:30px;margin-top:30px;margin-bottom:20px;overflow:visible}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-token #wpz-insta_user-token{display:block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;font-weight:normal;text-overflow:ellipsis;color:#242628;background:#fff;width:100%;padding:4px 8px;border:1px solid #ddd;border-radius:2px;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-request-timeout>label>strong{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-load-more.wpz-insta_pro-only{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding-top:0;padding-bottom:20px;border-top:none;border-bottom:2px solid #f57c00;margin-top:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-load-more.wpz-insta_pro-only .wpz-insta_sidebar-section-title,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-load-more.wpz-insta_pro-only .wpz-insta_table>label{opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview{position:relative;z-index:2;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header{display:flex;align-items:center;padding:0;border-bottom:1px solid #ddd;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-title{flex-grow:1;font-size:14px;font-weight:600;text-align:center;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links{display:flex;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links.disabled{pointer-events:none;opacity:.3}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links.disabled .wpz-insta_widget-preview-header-link.active{background:#ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links.disabled .wpz-insta_widget-preview-header-link.active svg{fill:#81909c}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link{display:flex;align-items:center;justify-content:center;cursor:pointer;background:#ddd;min-width:70px;min-height:70px;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link:hover{background:#eee}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link.active{cursor:default;color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link.active svg{fill:#fff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link svg{fill:#81909c;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view{display:flex;align-items:start;justify-content:center;padding:0;margin:0;overflow-x:hidden;overflow-y:auto;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.wpz-insta_widget-preview-size-desktop .wpz-insta_widget-preview-view-inner{max-width:500px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.wpz-insta_widget-preview-size-tablet .wpz-insta_widget-preview-view-inner{max-width:768px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.wpz-insta_widget-preview-size-mobile .wpz-insta_widget-preview-view-inner{max-width:380px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.layout-fullwidth.wpz-insta_widget-preview-size-desktop .wpz-insta_widget-preview-view-inner{max-width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view .wpz-insta_widget-preview-view-inner{flex-grow:1;padding:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view .wpz-insta_widget-preview-view-inner iframe{display:block;height:400px;width:100%;visibility:visible;opacity:1;overflow:hidden;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view .wpz-insta_widget-preview-view-inner iframe.wpz-insta_preview-hidden{pointer-events:none;visibility:hidden;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:25px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-title{font-size:24px;font-weight:600;padding:0;margin:0 0 10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-description{padding:0;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts{display:grid;grid-template-columns:repeat(auto-fill, minmax(300px, 1fr));gap:30px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li{cursor:pointer;background:#eee;padding:15px;border:1px solid #9ca2a7;border-radius:4px;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li:hover{color:#fff;background:#3496ff;border-color:#0063cd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li:hover h3{color:#fff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li:hover p{color:rgba(255,255,255,.6)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li h3{font-size:14px;font-weight:600;padding:0;margin:0 0 5px;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li p{font-size:12px;color:#81909c;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect hr{margin:30px 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-subtitle{font-size:14px;font-weight:normal;padding:0;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support .section-title,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license .section-title{font-size:20px;font-weight:600;line-height:24px;margin:0 0 1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support .section-title svg,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license .section-title svg{vertical-align:text-bottom;margin:0 0 0 5px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support .section-description,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license .section-description{padding:0;margin:0 0 2em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:25px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-title{font-size:24px;font-weight:600;line-height:29px;margin:0 0 16px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-description{font-size:14px;white-space:pre-wrap;margin:0 0 30px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options{display:flex;flex-wrap:wrap;gap:30px;margin:0 0 30px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option{display:flex;flex-direction:column;min-width:350px;padding:20px;border:1px solid #ddd;border-radius:3px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-title{font-size:16px;font-weight:600;line-height:19px;margin:0 0 16px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-checklist{font-size:14px;padding:0;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-checklist li{line-height:18px;background:url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0C4.03759 0 0 4.03759 0 9C0 13.9624 4.03759 18 9 18C13.9624 18 18 13.9624 18 9C18 4.03759 13.9624 0 9 0ZM14.0301 6.63158L8.2782 12.3383C7.93985 12.6767 7.3985 12.6992 7.03759 12.3609L3.99248 9.58647C3.63158 9.24812 3.60902 8.68421 3.92481 8.32331C4.26316 7.96241 4.82707 7.93985 5.18797 8.2782L7.6015 10.4887L12.7444 5.34586C13.1053 4.98496 13.6692 4.98496 14.0301 5.34586C14.391 5.70677 14.391 6.27068 14.0301 6.63158Z' fill='%2322BB66'/%3E%3C/svg%3E");background-position:100% 5px;background-repeat:no-repeat;min-height:18px;padding:5px 32px 5px 0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-token-input{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;line-height:17px;color:#242628;padding:10px;border:1px solid #ddd;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-token-input:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-token-input:focus{border-color:#3496ff;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button{display:flex;cursor:pointer;align-items:center;justify-content:center;font-weight:600;line-height:1;color:#fff;background:#3496ff;background-position:center right;background-repeat:no-repeat;width:100%;padding:15px 40px;border:0;border-radius:2px;margin:auto 0 0;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button:focus{background-color:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button.disabled{pointer-events:none;opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button svg{margin:0 0 0 16px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-notice{display:flex;align-items:center;font-size:13px;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-notice svg{margin:0 0 0 12px}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap{display:flex;align-items:center;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:30px;border:1px solid #ddd;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.1);margin:20px 0}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-logo{padding:0;margin:0 0 0 30px}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-logo a{display:block;text-indent:-999em;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAsUAAAB1CAYAAACmnpxEAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3BpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQwIDc5LjE2MDQ1MSwgMjAxNy8wNS8wNi0wMTowODoyMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGODdGMTE3NDA3MjA2ODExODIyQUJEN0ZFNTE5QkYyRSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyMERERTJGNDlFNjgxMUU4ODM0NkExODhFNzlBMDMzQiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyMERERTJGMzlFNjgxMUU4ODM0NkExODhFNzlBMDMzQiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxNSAoTWFjaW50b3NoKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjEyMzc5NGVhLTBiZGYtNDQ3Zi05ODc1LTY1ZDk5NjhjZGVlNiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGODdGMTE3NDA3MjA2ODExODIyQUJEN0ZFNTE5QkYyRSIvPiA8L3Jk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");background-size:contain;background-repeat:no-repeat;height:16px;width:95px;overflow:hidden;transition:all .3s ease}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-logo a:hover,.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-logo a:active{opacity:.5}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links{display:flex;padding:0;margin:0}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links li{padding:0;margin:0 0 0 30px}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links li:last-child{margin-left:0}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links li a{text-decoration:none;color:#000;transition:all .3s ease}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links li a:hover,.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links li a:active{color:#3496ff}.wpz-insta-admin #wpz-insta_modal-dialog{display:flex;align-items:center;justify-content:center;position:fixed;top:0;right:0;left:0;bottom:0;z-index:999999999999;background:rgba(0,0,0,.4);-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px);transition:all .3s ease}.wpz-insta-admin #wpz-insta_modal-dialog:not(.open){pointer-events:none;opacity:0}.wpz-insta-admin #wpz-insta_modal-dialog.success .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-title::before{background-color:#2b6;background-image:url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.75204 15.8749L4.60249 11.7049L3.18945 13.1149L8.75204 18.7049L20.6932 6.70492L19.2901 5.29492L8.75204 15.8749Z' fill='white'/%3E%3C/svg%3E")}.wpz-insta-admin #wpz-insta_modal-dialog.fail .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-title::before{background-color:#ec2439;background-image:url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.9069 6.41L17.5038 5L11.9412 10.59L6.37867 5L4.97559 6.41L10.5381 12L4.97559 17.59L6.37867 19L11.9412 13.41L17.5038 19L18.9069 17.59L13.3443 12L18.9069 6.41Z' fill='white'/%3E%3C/svg%3E")}.wpz-insta-admin #wpz-insta_modal-dialog.confirm .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-title::before{content:"?";display:flex;align-items:center;justify-content:center;font-size:24px;font-weight:700;color:#fff;background-color:#242628;background-image:none}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;line-height:20px;color:#242628;background:#fff;min-width:850px;padding:30px;border-radius:3px;box-shadow:0 5px 10px rgba(0,0,0,.3)}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header{display:flex;align-items:center;justify-content:space-between;padding:0 0 20px;border-bottom:1px solid #ddd;margin:0 0 30px}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-title{display:flex;align-items:center;font-size:20px;font-weight:600;padding:0;margin:0}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-title::before{content:"";display:block;background-color:#81909c;background-repeat:no-repeat;background-position:center;height:28px;width:28px;border-radius:50%;margin:0 0 0 15px}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-button{cursor:pointer;text-indent:-999em;background-color:#9ca2a7;-webkit-mask:url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.9069 6.41L17.5038 5L11.9412 10.59L6.37867 5L4.97559 6.41L10.5381 12L4.97559 17.59L6.37867 19L11.9412 13.41L17.5038 19L18.9069 17.59L13.3443 12L18.9069 6.41Z'/%3E%3C/svg%3E") center no-repeat;mask:url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.9069 6.41L17.5038 5L11.9412 10.59L6.37867 5L4.97559 6.41L10.5381 12L4.97559 17.59L6.37867 19L11.9412 13.41L17.5038 19L18.9069 17.59L13.3443 12L18.9069 6.41Z'/%3E%3C/svg%3E") center no-repeat;height:24px;width:24px;padding:0;margin:0;overflow:hidden;transition:all .3s ease}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-button:hover{background-color:#3496ff}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_content{overflow:auto}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_content .severe{color:#ec2439}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer{display:flex;align-items:center;justify-content:end;gap:10px;padding:20px 0 0;border-top:1px solid #ddd;margin:30px 0 0}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button{color:#fff;background:#3496ff;padding-right:30px;padding-left:30px;transition:all .3s ease}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button:hover,.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button:active{color:#fff;background:#70b5fe}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button.button-secondary{color:#3496ff;background:transparent;border-color:#3496ff}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button.button-secondary:hover,.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button.button-secondary:active{color:#fff;background-color:#70b5fe}@-webkit-keyframes slidedown{from{max-height:0}to{max-height:100em}}@keyframes slidedown{from{max-height:0}to{max-height:100em}}@-webkit-keyframes highlighting{0%{transform:scale(1)}50%{transform:scale(1.03, 1.2)}100%{transform:scale(1)}}@keyframes highlighting{0%{transform:scale(1)}50%{transform:scale(1.03, 1.2)}100%{transform:scale(1)}}@-webkit-keyframes bounceFade{0%{opacity:0}0%,20%,50%,80%,100%{transform:translateX(50%) translateY(0)}20%{opacity:0}40%{transform:translateX(50%) translateY(-30px)}60%{transform:translateX(50%) translateY(-15px)}100%{opacity:1}}@keyframes bounceFade{0%{opacity:0}0%,20%,50%,80%,100%{transform:translateX(50%) translateY(0)}20%{opacity:0}40%{transform:translateX(50%) translateY(-30px)}60%{transform:translateX(50%) translateY(-15px)}100%{opacity:1}}[data-tooltip]{position:relative;z-index:2;cursor:pointer}[data-tooltip]:before,[data-tooltip]:after{visibility:hidden;opacity:0;pointer-events:none}[data-tooltip]:before{position:absolute;bottom:150%;right:50%;margin-bottom:5px;margin-right:-100px;padding:7px;width:200px;border-radius:3px;background-color:#000;background-color:rgba(51,51,51,.9);color:#fff;content:attr(data-tooltip);text-align:center;font-size:14px;line-height:1.2}[data-tooltip]:after{position:absolute;bottom:150%;right:50%;margin-right:-5px;width:0;border-top:5px solid #000;border-top:5px solid rgba(51,51,51,.9);border-left:5px solid transparent;border-right:5px solid transparent;content:" ";font-size:0;line-height:0}[data-tooltip]:hover:before,[data-tooltip]:hover:after{visibility:visible;opacity:1}
|
1 |
+
.zoom-instagram-widget .button-connect{color:#fff;border:1px solid #1c5380;border-radius:3px;background-color:#6f97b6;background-image:linear-gradient(to bottom, #6f97b6, #3f729b);background-position:50% 50%;box-shadow:0 1px 1px rgba(0,0,0,.1),inset -1px 0 0 rgba(255,255,255,.05),inset 1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);text-shadow:0 1px 1px #1c5380}.zoom-instagram-widget .button-connect:focus,.zoom-instagram-widget .button-connect:hover{border-color:#1c5380;color:#fff;background-image:linear-gradient(to bottom, #5D87A8, #3f729b)}.zoom-instagram-widget{background:#fff;padding:30px;border:1px solid #ddd;border-radius:3px;margin:30px 0 30px 10px !important;box-shadow:-1px 1px 2px rgba(0,0,0,.1);max-width:700px}.zoom-themes-link{border:1px solid #e2e9ec;padding:30px 30px 260px 30px;border-radius:3px;margin:30px 0 30px 0 !important;box-shadow:-1px 1px 2px rgba(0,0,0,.1);max-width:700px;text-align:center}.zoom-themes-link p{font-size:15px;line-height:1.6}.cta-button{text-align:center;text-decoration:none;color:#fff;background:#3ebd3e;padding:10px 15px;display:inline-block;border-radius:3px;box-shadow:0 -1px 1px rgba(0,0,0,.2) inset;border:1px solid #259425;font-size:16px;text-shadow:-1px 1px rgba(0,0,0,.3)}.cta-button:hover{background:#2a9b2a;color:#fff}#wpzoom-instagram-widget-settings_transient-lifetime-value{max-width:150px;float:right}#wpzoom-instagram-widget-settings_transient-lifetime-type{float:right;max-width:100px}.zoom-instagram-widget .wpzoom-instagram-widget-with-access-token-group{background-color:#fff6f6}.zoom-instagram-widget .wpzoom-instagram-widget-with-basic-access-token-group,.zoom-instagram-widget .wpzoom-instagram-widget-without-access-token-group{background-color:#e0f0e3}.zoom-instagram-widget .wpzoom-instagram-widget-with-basic-access-token-group th,.zoom-instagram-widget .wpzoom-instagram-widget-without-access-token-group th{padding-right:10px}.zoom-instagram-widget .label-wrap input[type=radio]:checked+label[for=wpzoom-instagram-widget-settings_with-basic-access-token],.zoom-instagram-widget .label-wrap input[type=radio]:checked+label[for=wpzoom-instagram-widget-settings_without-access-token]{background-color:#e0f0e3}.zoom-instagram-widget .label-wrap input[type=radio]:checked+label[for=wpzoom-instagram-widget-settings_with-access-token]{background-color:#fff6f6}.zoom-instagram-widget .wpzoom-instagram-widget-settings-request-type-wrapper{display:flex;flex-direction:column}.zoom-instagram-widget .wpzoom-instagram-widget-settings-request-type-wrapper .label-wrap{display:flex;align-items:center}.zoom-instagram-widget .wpzoom-instagram-widget-settings-request-type-wrapper .label-wrap input[type=radio]{z-index:2}.zoom-instagram-widget .wpzoom-instagram-widget-settings-request-type-wrapper .label-wrap label{padding:10px;width:100%;margin-right:-30px;padding-right:40px;z-index:1}.zoom-instagram-widget form h2{border-top:2px solid #eee;padding-top:40px}.zoom-instagram-widget .wpzoom-instagram-widget-with-token-group>td{padding-left:0px}.zoom-instagram-user-avatar-media-uploader .remove-avatar{margin:6px 20px;color:#a00}.zoom-instagram-user-avatar-media-uploader .file-wrapper{margin-top:10px}#wpzoom-instagram-widget-settings-user-info-biography{width:100%;min-height:100px}.wpz-insta-admin.post-php #wpbody-content{padding-bottom:0}.wpz-insta-admin.post-php #wpbody-content>.wrap #poststuff #post-body #post-body-content .wpz-insta_tabs-content .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section,.wpz-insta-admin.post-php #wpbody-content>.wrap #poststuff #post-body #post-body-content .wpz-insta_tabs-content .wpz-insta_sidebar .wpz-insta_widget-preview .wpz-insta_widget-preview-view{max-height:60vh;min-height:200px}.wpz-insta-admin #wpfooter{position:relative}.wpz-insta-admin #wpbody-content{padding-bottom:165px}.wpz-insta-admin #wpbody-content .urgent{color:#ec2439}.wpz-insta-admin #wpbody-content .featured-off{display:none !important}.wpz-insta-admin #wpbody-content .pro-only{position:absolute;top:0;left:0;line-height:1.5;color:#fff;background:#f57c00;padding:0 4px;border-radius:2px;transform:translate(-50%, -50%)}.wpz-insta-admin #wpbody-content .notice-warning{display:block;padding:11px 15px;margin:10px 0 0}.wpz-insta-admin #wpbody-content>.wrap>h1.wp-heading-inline,.wpz-insta-admin #wpbody-content>.wrap>.page-title-action,.wpz-insta-admin #wpbody-content>.wrap>.wp-header-end,.wpz-insta-admin #wpbody-content>.wrap>.wpz-insta-wrap~#posts-filter>.search-box,.wpz-insta-admin #wpbody-content>.wrap>.wpz-insta-wrap~#posts-filter>.tablenav,.wpz-insta-admin #wpbody-content>.wrap>.wpz-insta-wrap~#posts-filter>.wp-list-table>tfoot,.wpz-insta-admin #wpbody-content>.wrap #titlediv{display:none !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-notices .notice{display:block !important}.wpz-insta-admin #wpbody-content>.wrap input,.wpz-insta-admin #wpbody-content>.wrap textarea,.wpz-insta-admin #wpbody-content>.wrap select{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-weight:normal;color:#242628;border:1px solid #9ca2a7;border-radius:2px;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap input:hover,.wpz-insta-admin #wpbody-content>.wrap input:focus,.wpz-insta-admin #wpbody-content>.wrap textarea:hover,.wpz-insta-admin #wpbody-content>.wrap textarea:focus,.wpz-insta-admin #wpbody-content>.wrap select:hover,.wpz-insta-admin #wpbody-content>.wrap select:focus{color:#242628;border-color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap input{color:#242628}.wpz-insta-admin #wpbody-content>.wrap input.wpz-insta_input{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.wpz-insta-admin #wpbody-content>.wrap input.wpz-insta_input-nobg{background:transparent}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]{display:inline-flex;align-items:center;justify-content:center;color:#fff;background-color:#fff;height:1.25rem;width:1.25rem;border:none;border-radius:2px;box-shadow:inset 0 0 0 1px #81909c;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:hover{background-color:#ddd !important;box-shadow:inset 0 0 0 1px #81909c !important}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:hover:checked{background-color:#70b5fe !important;box-shadow:inset 0 0 0 1px transparent !important}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:focus{outline:none;box-shadow:inset 0 0 0 1px #81909c}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:focus:checked{box-shadow:inset 0 0 0 1px transparent}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]::before{transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:checked{background-color:#3496ff;box-shadow:inset 0 0 0 1px transparent}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:checked::before{content:url("data:image/svg+xml;utf8,%3Csvg%20width%3D%2214%22%20height%3D%2212%22%20viewBox%3D%220%200%2014%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12.779%201.00004L5.3618%2010.9753L1.06089%207.77735%22%20stroke%3D%22white%22%20stroke-width%3D%221.2%22%2F%3E%3C%2Fsvg%3E%0A");display:block;float:none;height:auto;width:auto;margin:0}.wpz-insta-admin #wpbody-content>.wrap .disabled,.wpz-insta-admin #wpbody-content>.wrap .disable{pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .disable{opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .help{display:inline-block;cursor:help;font-size:20px;vertical-align:text-bottom;height:16px;width:16px;transition:all .2s ease;position:relative}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field{padding:0;margin:0 0 2em}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field label>strong{font-size:15px !important}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field label>em{color:rgba(36,38,40,.8)}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field input[type=text]{display:block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:15px;font-weight:normal;line-height:40px;color:#242628;width:100%;min-height:40px;padding:0 10px;box-sizing:border-box;margin:.7em 0}.wpz-insta-admin #wpbody-content>.wrap .submit-button{padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .button.disabled{pointer-events:none !important}.wpz-insta-admin #wpbody-content>.wrap .button:not(.wp-color-result),.wpz-insta-admin #wpbody-content>.wrap .button-primary,.wpz-insta-admin #wpbody-content>.wrap .button-secondary{display:inline-flex;align-items:center;justify-content:center;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:13px;font-weight:600;line-height:35px;min-height:35px;padding:0 12px;border:0;border-radius:2px;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .button:not(.wp-color-result).button-large,.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-large,.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-large{min-height:48px;padding:0 40px;margin:0}.wpz-insta-admin #wpbody-content>.wrap .button.wp-color-result{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:13px}.wpz-insta-admin #wpbody-content>.wrap .button-primary{color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .button-primary:hover,.wpz-insta-admin #wpbody-content>.wrap .button-primary:active{color:#fff;background:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-positive{color:#fff;background:#2b6}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-positive:hover,.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-positive:active{background:#3bdb82}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-negative{color:#fff;background:#ec2439}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-negative:hover,.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-negative:active{background:#f05161}.wpz-insta-admin #wpbody-content>.wrap .button-secondary{color:#81909c;background:#fff;box-shadow:inset 0 0 0 1px #ddd}.wpz-insta-admin #wpbody-content>.wrap .button-secondary:hover,.wpz-insta-admin #wpbody-content>.wrap .button-secondary:active{background:#ddd}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-positive{color:#2b6;background:#fff;box-shadow:inset 0 0 0 1px #2b6}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-positive:hover,.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-positive:active{color:#242628;background:#fff;box-shadow:inset 0 0 0 1px #242628}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-negative{color:#ec2439;background:#fff;box-shadow:inset 0 0 0 1px #ec2439}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-negative:hover,.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-negative:active{color:#242628;background:#fff;box-shadow:inset 0 0 0 1px #242628}.wpz-insta-admin #wpbody-content>.wrap .button-link{color:#3496ff;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link{font-weight:normal;line-height:1;min-height:0;padding:0;margin:1.5em 0 0}.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link:hover,.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link:active,.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link:focus{color:#70b5fe;background:transparent}.wpz-insta-admin #wpbody-content>.wrap .button-link:hover,.wpz-insta-admin #wpbody-content>.wrap .button-link:active,.wpz-insta-admin #wpbody-content>.wrap .button-link:focus{color:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_suffixed-number-input{display:flex;gap:12px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_suffixed-number-input>*{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_suffixed-number-input>*:first-child{flex-grow:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_profile-photo{display:block;height:100px;width:100px;border-radius:50%}.wpz-insta-admin #wpbody-content>.wrap a{text-decoration:none;color:#3496ff;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap a:hover,.wpz-insta-admin #wpbody-content>.wrap a:active,.wpz-insta-admin #wpbody-content>.wrap a:focus{text-decoration:none;color:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap a.linked{border-bottom:1px solid rgba(52,150,255,.3)}.wpz-insta-admin #wpbody-content>.wrap a.linked:hover,.wpz-insta-admin #wpbody-content>.wrap a.linked:active,.wpz-insta-admin #wpbody-content>.wrap a.linked:focus{border-bottom-color:rgba(112,181,254,.3)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button{display:inline-flex;align-items:center;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;font-weight:600;text-decoration:none;color:#242628;margin:10px 0 0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:hover svg,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:active svg{color:#3496ff;fill:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button svg{color:#242628;fill:#242628;margin:0 0 0 6px;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpzinsta-pointer{position:absolute;top:calc(100% + 3px);right:50%;z-index:1000;cursor:default;font-size:14px;color:#fff;background:#3496ff;width:-webkit-max-content;width:-moz-max-content;width:max-content;padding:4px 10px;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.3);transform:translateX(50%);-webkit-animation-name:bounceFade;animation-name:bounceFade;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.wpz-insta-admin #wpbody-content>.wrap .wpzinsta-pointer>i{position:absolute;top:-10px;right:50%;pointer-events:none;height:10px;width:20px;transform:translateX(50%);overflow:hidden}.wpz-insta-admin #wpbody-content>.wrap .wpzinsta-pointer>i::before{content:"";position:absolute;right:50%;bottom:-4px;pointer-events:initial;background:#3496ff;height:8px;width:8px;box-shadow:0 0 2px rgba(0,0,0,.3);transform:translateX(50%) rotateZ(-45deg)}.wpz-insta-admin #wpbody-content>.wrap .fit-max-content{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-add-new a,.wpz-insta-admin #wpbody-content>.wrap #wpz-insta_tabs-config-cnnct .wpz-insta_tabs-config-connect-add{position:relative}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container{display:inline-flex;position:relative}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container:not(:focus-within) .wp-picker-holder{pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-color-result{position:absolute;top:50%;right:5px;pointer-events:none;height:20px;min-height:0;width:20px;padding:0;border-radius:4px;margin:0;transform:translateY(-50%)}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-color-result:active{transform:translateY(-50%) !important}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-color-result .wp-color-result-text{display:none}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-input-wrap{display:block}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-input-wrap input{line-height:2;width:auto;padding-right:30px}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-input-wrap .wp-picker-clear{display:none}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-holder{display:block;position:fixed;top:100%;right:0;z-index:999;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-holder .iris-picker{display:block !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns{display:flex;align-items:center;list-style:none;padding:0;margin:1.5em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns.wpz-insta_two-columns-left-small{align-items:flex-start;gap:30px;margin-top:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns.wpz-insta_two-columns-left-small>*{text-align:right !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns.wpz-insta_two-columns-left-small>*:first-child{flex-grow:0;width:auto}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns>*{flex-grow:1;list-style:none;width:100%;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns>*:first-child{text-align:right}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns>*:last-child{text-align:left}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_image-select{display:flex;flex-wrap:wrap;gap:10px;margin:5px 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_image-select.hidden{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_image-select label{text-align:center;color:#81909c;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_image-select label:hover{color:#9ca2a7}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_image-select label:hover svg{color:#9ca2a7;fill:#9ca2a7}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_image-select label input{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_image-select label input:checked+span{color:#3496ff;fill:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_image-select label input:checked+span svg{color:#3496ff;fill:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_image-select label span{display:block}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_image-select label svg{display:block;color:#81909c;fill:#81909c;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_notice{display:flex;align-items:center;font-size:12px;padding:0;margin:1.5em 0 0 !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_notice::before{content:"";display:block;background-image:url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.3 3.5H7.7V4.9H6.3V3.5ZM6.3 6.3H7.7V10.5H6.3V6.3ZM7 0C3.136 0 0 3.136 0 7C0 10.864 3.136 14 7 14C10.864 14 14 10.864 14 7C14 3.136 10.864 0 7 0ZM7 12.6C3.913 12.6 1.4 10.087 1.4 7C1.4 3.913 3.913 1.4 7 1.4C10.087 1.4 12.6 3.913 12.6 7C12.6 10.087 10.087 12.6 7 12.6Z'/%3E%3C/svg%3E");height:14px;width:14px;margin:0 0 0 .8em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_notice p{padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:15px 30px 0;border:1px solid #ddd;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.1);margin:3em 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header #major-publishing-actions{background:transparent;padding:0 0 1em;border:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header #major-publishing-actions #publishing-action{display:flex;align-items:center;gap:20px;float:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header #major-publishing-actions #publishing-action .spinner{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header.wpz-insta-wrap-sides{display:flex;align-items:center;margin-top:1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header.wpz-insta-wrap-sides .wpz-insta-wrap-left{flex-grow:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title{font-size:24px;font-weight:600;line-height:29px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small{font-size:14px;font-weight:normal;line-height:17px;color:#81909c}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small a{text-decoration:none;color:#81909c;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small a:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title .pro{color:#f57c00}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title #title{position:relative;font-size:24px;font-weight:600;text-overflow:ellipsis;line-height:29px;background:transparent url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 17.2505V21.0005H6.75L17.81 9.94055L14.06 6.19055L3 17.2505ZM20.71 7.04055C21.1 6.65055 21.1 6.02055 20.71 5.63055L18.37 3.29055C17.98 2.90055 17.35 2.90055 16.96 3.29055L15.13 5.12055L18.88 8.87055L20.71 7.04055Z' fill='%2381909C'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:center left;min-width:100px;max-width:82%;padding:0 0 0 24px;border:0;outline:none;margin:0;overflow:hidden;box-shadow:0 0 0 1px transparent;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title #title:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title #title:focus{box-shadow:0 0 0 1px #3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-sub-title{font-size:18px;font-weight:normal;line-height:22px;color:#242628;margin:16px 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav{font-size:18px;font-weight:normal;line-height:22px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul{display:flex;list-style:none;gap:40px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li{position:relative;list-style:none;padding:0;margin:0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li.active a{cursor:default;pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li.active a::after{transform:translateY(0)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a{display:block;position:relative;text-decoration:none;color:#242628;outline:none;padding:16px 0;box-shadow:none;overflow:hidden;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a:active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a:focus{outline:none;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a:hover{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a::after{content:"";position:absolute;right:0;left:0;bottom:0;background:#3496ff;height:6px;border-radius:2px 2px 0 0;transform:translateY(100%);transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap.with-bg{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;color:#242628;background:#fff;padding:25px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap.with-bg *:not(h2):not(small){font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter{margin:2em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:15px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td{border-bottom:1px solid #000}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_account-token,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td.column-wpz-insta_account-token{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th{font-weight:600;padding-right:0;padding-left:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_actions{text-align:left}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th a{color:#000;padding:14px 0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th a:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr{display:table-row !important;position:relative;background:transparent}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr:first-child th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr:first-child td,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr.inline-edit-row th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr.inline-edit-row td{border-top:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr.inline-edit-row td{padding-top:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td{vertical-align:middle;padding:20px 0;border-top:1px solid #ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.column-wpz-insta_account-token,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td.column-wpz-insta_account-token{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.check-column{padding:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td>*{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td a:not(.button){color:#3496ff;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td a:not(.button):hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td a:not(.button):active{color:#000}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .row-actions{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit{overflow:hidden;-webkit-animation-name:slidedown;animation-name:slidedown;-webkit-animation-duration:1s;animation-duration:1s}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns{display:flex;list-style:none;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li{flex-grow:1;list-style:none;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li div{display:block;margin:0 0 10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li div:last-child{margin-bottom:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li strong:first-child,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li label>strong:first-child{display:inline-block;margin:0 0 5px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li input:not(.widefat),.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li textarea{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;width:60%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save{position:absolute;top:-10px;left:0;padding:0;transform:translateY(-100%)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button{float:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel{color:#3496ff;background:transparent;box-shadow:inset 0 0 0 1px #3496ff;margin:0 0 0 1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel:active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel:focus{color:#000;box-shadow:inset 0 0 0 1px #000}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .spinner{float:right}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-title,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account{width:50%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account a{color:#242628}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account a:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions{text-align:left;width:5%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions strong{position:relative;cursor:pointer;font-size:20px;font-weight:600;text-align:left;white-space:nowrap;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions strong:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions strong:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu{display:inline-block;position:relative;text-align:left}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu:hover .wpz-insta_hidden{pointer-events:auto;opacity:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu:hover strong{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu:hover strong::after{content:"";position:absolute;right:-50px;left:0;bottom:-15px;height:25px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden{position:absolute;left:0;bottom:-10px;z-index:999;pointer-events:none;text-align:right;background:#fff;min-width:200px;opacity:0;padding:0;border-radius:3px;margin:0;box-shadow:-1px 4px 8px rgba(0,0,0,.1);transform:translate(0%, 100%);transition:opacity .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li{white-space:nowrap;margin:0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:first-child a,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:first-child button{padding-top:10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:last-child a,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:last-child button{padding-bottom:10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li.wpz-insta_actions-menu_divider{pointer-events:none;background:#ddd;height:1px;padding:0;margin:5px 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li.wpz-insta_actions-menu_delete a:hover{color:#ec2439}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li a,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li button{display:block;white-space:nowrap;color:#242628;width:100%;padding:7px 20px;margin:0;box-sizing:border-box;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li button:hover{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .inline-edit-col-left,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .inline-edit-col-right{display:none}.wpz-insta-admin #wpbody-content>.wrap #poststuff{padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap #poststuff #post-body{margin:0}.wpz-insta-admin #wpbody-content>.wrap #poststuff #post-body #post-body-content{float:none;margin:0}.wpz-insta-admin #wpbody-content>.wrap #poststuff #post-body .postbox-container{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content{display:grid}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content *{pointer-events:inherit}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content>*{grid-column:1;grid-row:1;align-self:start}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content>*:not(.active){pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content>*:not(.active) *{pointer-events:none !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar{display:flex;gap:20px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar.hide{pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar:not(.show-pro) .wpz-insta_pro-only:not(.wpz-insta_feed-layout),.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar:not(.show-pro) .wpz-insta_pro-only>.wpz-insta_feed-layout-pro{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar input,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar textarea,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar select{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right{background:#fff;border:1px solid #ddd;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left{display:grid;grid-template-rows:auto 1fr;flex-basis:28%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left.is-pro .wpz-insta_sidebar-left-section{max-height:70vh !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section-head{display:flex;align-items:center;grid-column:1;grid-row:1;background:#fafafa;min-height:30px;padding:20px;border-bottom:1px solid #ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section{grid-column:1;grid-row:2;align-self:start;transition:all .3s ease;overflow-x:hidden;overflow-y:auto}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section:not(.active){pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right{flex-grow:1;position:relative}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right.is-loading{transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right.is-loading.hide-loading::before{opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right.is-loading::before{content:"";position:absolute;top:300px;right:50%;z-index:1;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 50 50' xml:space='preserve'%3E%3Cpath fill='%233496ff' d='M43.935,25.145c0-10.318-8.364-18.683-18.683-18.683c-10.318,0-18.683,8.365-18.683,18.683h4.068c0-8.071,6.543-14.615,14.615-14.615c8.072,0,14.615,6.543,14.615,14.615H43.935z'%3E%3CanimateTransform attributeType='xml' attributeName='transform' type='rotate' from='0 25 25' to='360 25 25' dur='0.6s' repeatCount='indefinite'/%3E%3C/path%3E%3C/svg%3E");background-size:contain;height:64px;width:64px;opacity:1;transform:translateX(50%);transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section-big-title{font-size:18px;font-weight:600;margin:30px 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section{padding:30px 0 0;border-top:1px solid #ddd;margin:30px 20px 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section:first-child,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.no-top-border{padding-top:0;border-top:0;margin-top:20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-title{font-size:18px;font-weight:600;margin:0 0 15px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-title.smaller-title{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-description{font-size:14px;font-weight:normal;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-description:last-child{margin-bottom:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section p{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section ul li,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section ol li{margin-bottom:1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_text-btn-aligned{display:flex;align-items:stretch;gap:15px;width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_text-btn-aligned>input{flex-grow:1;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn{display:flex;align-items:center;font-size:14px;line-height:2}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode{background:transparent;border:1px solid #ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn{display:grid;text-align:center;color:#3496ff;background:transparent;border:1px solid #3496ff;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn:hover{color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn.success{color:#fff;background:#2b6;border-color:#2b6}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn.success .wpz-insta_shortcode-copy-btn-text-normal{opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn.success .wpz-insta_shortcode-copy-btn-text-success{opacity:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-normal,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-success{grid-column:1;grid-row:1;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-normal{opacity:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-success{opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select.is-set .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button-highlight{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select.is-set .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button{pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select.is-set .wpz-insta_feed-user-select-edit-link{display:inline-block}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select:not(.is-set) .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info{pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input{display:grid;background:#eee;border:1px solid #9ca2a7;border-radius:4px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info{display:flex;align-items:center;justify-content:space-between;grid-column:1;grid-row:1;margin:15px;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-select-info-left .wpz-insta_feed-user-select-info-name{font-size:14px;font-weight:600;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-select-info-left .wpz-insta_feed-user-select-info-type{font-size:12px;color:#81909c;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-remove-button{font-size:13px;font-weight:600;color:#3496ff;background:transparent;border:1px solid #3496ff;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-remove-button:hover{color:#ec2439;border-color:#ec2439}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap{position:relative;display:flex;align-items:stretch;justify-content:stretch;grid-column:1;grid-row:1;pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button-highlight{display:block;position:absolute;top:-2px;right:-2px;left:-2px;bottom:-2px;z-index:1;pointer-events:none;border:0;border-radius:6px;box-shadow:inset 0 0 1px 1px #3496ff,0 0 1px 1px #3496ff;transition:all .3s ease;-webkit-animation:highlighting .8s infinite;animation:highlighting .8s infinite}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button{display:flex;flex-grow:1;position:relative;z-index:2;pointer-events:all;font-size:14px;font-weight:600;color:#242628;background:#eee;opacity:1;border:0;border-radius:4px;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button:hover{color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-edit-link{display:none;margin:20px 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout{display:flex;align-items:end;gap:10px;max-height:999em;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-pro{display:flex;gap:15px;padding:10px;border-radius:4px;box-shadow:0 0 0 2px #f57c00;max-width:76%;box-sizing:border-box}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-pro legend{font-size:13px;font-weight:600;color:#fff;background:#f57c00;padding:0 5px;margin:0 auto;border-radius:2px;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-pro .wpz-insta_feed-layout-option{pointer-events:none;opacity:.75}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout>.wpz-insta_feed-layout-option{margin-bottom:10px !important;max-width:21%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option{display:block;background:transparent;padding:0;border:0;box-shadow:none;outline:none;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option.disabled{pointer-events:none;opacity:.4}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option:hover svg{color:#9ca2a7;fill:#9ca2a7}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option input{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option svg{display:block;color:#81909c;fill:#81909c;max-width:100%;height:auto;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option input:checked~svg{color:#3496ff;fill:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout-etc,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-general,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-profile-general,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-load-more-general{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table{display:flex;flex-direction:column;gap:20px;width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row{display:flex;align-items:center;width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_table-row-full{flex-direction:column;align-items:stretch}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_table-row-full .wpz-insta_table-cell{width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.hidden{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row .wpz-insta_table-cell{display:block;white-space:nowrap;line-height:30px;width:50%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row .wpz-insta_table-cell.table-cell-special{display:flex;align-items:center}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row .wpz-insta_table-cell.table-cell-special label{width:50%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row .wpz-insta_table-cell input{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row>input[type=checkbox]{margin:0 0 0 1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_sub-wrapper{display:flex;flex-direction:column;gap:10px;position:relative;border-right:1px solid #242628;padding:10px 15px 0 0;margin:-20px 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_sub-wrapper input{margin-right:.5em;margin-left:.5em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_sub-wrapper .wpz-insta_table-cell:first-child{width:calc(50% - 9px)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_sub-wrapper .wpz-insta_table-cell:last-child{width:calc(50% + 9px)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_show-on-hover{display:table-row}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_show-on-hover>strong{display:block;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro{display:flex;flex-direction:column;gap:20px;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro.wpz-insta_pro-only-with-bottom{padding-bottom:10px;border-bottom:2px solid #f57c00}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro.hidden{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro legend{display:flex;width:100%;padding:0;border-bottom:2px solid #f57c00;margin:0 0 10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro legend>strong{font-size:13px;color:#fff;background:#f57c00;padding:0 5px;border-top-right-radius:2px;border-top-left-radius:2px;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro>label{opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .pro-only-wrapper{opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-token,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-check-new,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-request-timeout{max-height:0;opacity:0;overflow:hidden;padding-top:0;margin-top:0;margin-bottom:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-token.active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-check-new.active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-request-timeout.active{max-height:999em;opacity:1;padding-top:30px;margin-top:30px;margin-bottom:20px;overflow:visible}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-token #wpz-insta_user-token{display:block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;font-weight:normal;text-overflow:ellipsis;color:#242628;background:#fff;width:100%;padding:4px 8px;border:1px solid #ddd;border-radius:2px;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-request-timeout>label>strong{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-load-more.wpz-insta_pro-only{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding-top:0;padding-bottom:20px;border-top:none;border-bottom:2px solid #f57c00;margin-top:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-load-more.wpz-insta_pro-only .wpz-insta_sidebar-section-title,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-load-more.wpz-insta_pro-only .wpz-insta_table>label{opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview{position:relative;z-index:2;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header{display:flex;align-items:center;padding:0;border-bottom:1px solid #ddd;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-title{flex-grow:1;font-size:14px;font-weight:600;text-align:center;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links{display:flex;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links.disabled{pointer-events:none;opacity:.3}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links.disabled .wpz-insta_widget-preview-header-link.active{background:#ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links.disabled .wpz-insta_widget-preview-header-link.active svg{fill:#81909c}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link{display:flex;align-items:center;justify-content:center;cursor:pointer;background:#ddd;min-width:70px;min-height:70px;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link:hover{background:#eee}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link.active{cursor:default;color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link.active svg{fill:#fff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link svg{fill:#81909c;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view{display:flex;align-items:start;justify-content:center;padding:0;margin:0;overflow-x:hidden;overflow-y:auto;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.wpz-insta_widget-preview-size-tablet .wpz-insta_widget-preview-view-inner{max-width:768px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.wpz-insta_widget-preview-size-mobile .wpz-insta_widget-preview-view-inner{max-width:380px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.layout-fullwidth.wpz-insta_widget-preview-size-desktop .wpz-insta_widget-preview-view-inner{max-width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view .wpz-insta_widget-preview-view-inner{flex-grow:1;padding:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view .wpz-insta_widget-preview-view-inner iframe{display:block;height:400px;width:100%;visibility:visible;opacity:1;overflow:hidden;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view .wpz-insta_widget-preview-view-inner iframe.wpz-insta_preview-hidden{pointer-events:none;visibility:hidden;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:25px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-title{font-size:24px;font-weight:600;padding:0;margin:0 0 10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-description{padding:0;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts{display:grid;grid-template-columns:repeat(auto-fill, minmax(300px, 1fr));gap:30px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li{cursor:pointer;background:#eee;padding:15px;border:1px solid #9ca2a7;border-radius:4px;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li:hover{color:#fff;background:#3496ff;border-color:#0063cd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li:hover h3{color:#fff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li:hover p{color:rgba(255,255,255,.6)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li h3{font-size:14px;font-weight:600;padding:0;margin:0 0 5px;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li p{font-size:12px;color:#81909c;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect hr{margin:30px 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-subtitle{font-size:14px;font-weight:normal;padding:0;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support .section-title,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license .section-title{font-size:20px;font-weight:600;line-height:24px;margin:0 0 1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support .section-title svg,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license .section-title svg{vertical-align:text-bottom;margin:0 0 0 5px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support .section-description,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license .section-description{padding:0;margin:0 0 2em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:25px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-title{font-size:24px;font-weight:600;line-height:29px;margin:0 0 16px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-description{font-size:14px;white-space:pre-wrap;margin:0 0 30px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options{display:flex;flex-wrap:wrap;gap:30px;margin:0 0 30px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option{display:flex;flex-direction:column;min-width:350px;flex:1;padding:20px;border:1px solid #ddd;border-radius:3px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-title{font-size:16px;font-weight:600;line-height:19px;margin:0 0 16px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-checklist{font-size:14px;padding:0;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-checklist li{line-height:18px;background:url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0C4.03759 0 0 4.03759 0 9C0 13.9624 4.03759 18 9 18C13.9624 18 18 13.9624 18 9C18 4.03759 13.9624 0 9 0ZM14.0301 6.63158L8.2782 12.3383C7.93985 12.6767 7.3985 12.6992 7.03759 12.3609L3.99248 9.58647C3.63158 9.24812 3.60902 8.68421 3.92481 8.32331C4.26316 7.96241 4.82707 7.93985 5.18797 8.2782L7.6015 10.4887L12.7444 5.34586C13.1053 4.98496 13.6692 4.98496 14.0301 5.34586C14.391 5.70677 14.391 6.27068 14.0301 6.63158Z' fill='%2322BB66'/%3E%3C/svg%3E");background-position:100% 5px;background-repeat:no-repeat;min-height:18px;padding:5px 32px 5px 0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-token-input{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;line-height:17px;color:#242628;padding:10px;border:1px solid #ddd;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-token-input:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-token-input:focus{border-color:#3496ff;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button{display:flex;cursor:pointer;align-items:center;justify-content:center;font-weight:600;line-height:1;color:#fff;background:#3496ff;background-position:center right;background-repeat:no-repeat;width:100%;padding:15px 40px;border:0;border-radius:2px;margin:auto 0 0;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button:focus{opacity:.8}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button.disabled{pointer-events:none;opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button.facebook{background:#1877f2}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button svg{margin:0 0 0 16px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-notice{display:flex;align-items:center;font-size:13px;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-notice svg{margin:0 0 0 12px}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap{display:flex;align-items:center;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:30px;border:1px solid #ddd;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.1);margin:20px 0}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-logo{padding:0;margin:0 0 0 30px}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-logo a{display:block;text-indent:-999em;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAsUAAAB1CAYAAACmnpxEAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3BpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQwIDc5LjE2MDQ1MSwgMjAxNy8wNS8wNi0wMTowODoyMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGODdGMTE3NDA3MjA2ODExODIyQUJEN0ZFNTE5QkYyRSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyMERERTJGNDlFNjgxMUU4ODM0NkExODhFNzlBMDMzQiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyMERERTJGMzlFNjgxMUU4ODM0NkExODhFNzlBMDMzQiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxNSAoTWFjaW50b3NoKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjEyMzc5NGVhLTBiZGYtNDQ3Zi05ODc1LTY1ZDk5NjhjZGVlNiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGODdGMTE3NDA3MjA2ODExODIyQUJEN0ZFNTE5QkYyRSIvPiA8L3Jk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");background-size:contain;background-repeat:no-repeat;height:16px;width:95px;overflow:hidden;transition:all .3s ease}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-logo a:hover,.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-logo a:active{opacity:.5}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links{display:flex;padding:0;margin:0}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links li{padding:0;margin:0 0 0 30px}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links li:last-child{margin-left:0}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links li a{text-decoration:none;color:#000;transition:all .3s ease}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links li a:hover,.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links li a:active{color:#3496ff}.wpz-insta-admin #wpz-insta_modal-dialog{display:flex;align-items:center;justify-content:center;position:fixed;top:0;right:0;left:0;bottom:0;z-index:999999999999;background:rgba(0,0,0,.4);-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px);transition:all .3s ease}.wpz-insta-admin #wpz-insta_modal-dialog:not(.open){pointer-events:none;opacity:0}.wpz-insta-admin #wpz-insta_modal-dialog.success .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-title::before{background-color:#2b6;background-image:url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.75204 15.8749L4.60249 11.7049L3.18945 13.1149L8.75204 18.7049L20.6932 6.70492L19.2901 5.29492L8.75204 15.8749Z' fill='white'/%3E%3C/svg%3E")}.wpz-insta-admin #wpz-insta_modal-dialog.fail .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-title::before{background-color:#ec2439;background-image:url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.9069 6.41L17.5038 5L11.9412 10.59L6.37867 5L4.97559 6.41L10.5381 12L4.97559 17.59L6.37867 19L11.9412 13.41L17.5038 19L18.9069 17.59L13.3443 12L18.9069 6.41Z' fill='white'/%3E%3C/svg%3E")}.wpz-insta-admin #wpz-insta_modal-dialog.confirm .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-title::before{content:"?";display:flex;align-items:center;justify-content:center;font-size:24px;font-weight:700;color:#fff;background-color:#242628;background-image:none}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;line-height:20px;color:#242628;background:#fff;min-width:850px;padding:30px;border-radius:3px;box-shadow:0 5px 10px rgba(0,0,0,.3)}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header{display:flex;align-items:center;justify-content:space-between;padding:0 0 20px;border-bottom:1px solid #ddd;margin:0 0 30px}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-title{display:flex;align-items:center;font-size:20px;font-weight:600;padding:0;margin:0}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-title::before{content:"";display:block;background-color:#81909c;background-repeat:no-repeat;background-position:center;height:28px;width:28px;border-radius:50%;margin:0 0 0 15px}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-button{cursor:pointer;text-indent:-999em;background-color:#9ca2a7;-webkit-mask:url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.9069 6.41L17.5038 5L11.9412 10.59L6.37867 5L4.97559 6.41L10.5381 12L4.97559 17.59L6.37867 19L11.9412 13.41L17.5038 19L18.9069 17.59L13.3443 12L18.9069 6.41Z'/%3E%3C/svg%3E") center no-repeat;mask:url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.9069 6.41L17.5038 5L11.9412 10.59L6.37867 5L4.97559 6.41L10.5381 12L4.97559 17.59L6.37867 19L11.9412 13.41L17.5038 19L18.9069 17.59L13.3443 12L18.9069 6.41Z'/%3E%3C/svg%3E") center no-repeat;height:24px;width:24px;padding:0;margin:0;overflow:hidden;transition:all .3s ease}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-button:hover{background-color:#3496ff}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_content{overflow:auto}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_content .severe{color:#ec2439}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer{display:flex;align-items:center;justify-content:end;gap:10px;padding:20px 0 0;border-top:1px solid #ddd;margin:30px 0 0}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button{color:#fff;background:#3496ff;padding-right:30px;padding-left:30px;transition:all .3s ease}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button:hover,.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button:active{color:#fff;background:#70b5fe}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button.button-secondary{color:#3496ff;background:transparent;border-color:#3496ff}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button.button-secondary:hover,.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button.button-secondary:active{color:#fff;background-color:#70b5fe}@-webkit-keyframes slidedown{from{max-height:0}to{max-height:100em}}@keyframes slidedown{from{max-height:0}to{max-height:100em}}@-webkit-keyframes highlighting{0%{transform:scale(1)}50%{transform:scale(1.03, 1.2)}100%{transform:scale(1)}}@keyframes highlighting{0%{transform:scale(1)}50%{transform:scale(1.03, 1.2)}100%{transform:scale(1)}}@-webkit-keyframes bounceFade{0%{opacity:0}0%,20%,50%,80%,100%{transform:translateX(50%) translateY(0)}20%{opacity:0}40%{transform:translateX(50%) translateY(-30px)}60%{transform:translateX(50%) translateY(-15px)}100%{opacity:1}}@keyframes bounceFade{0%{opacity:0}0%,20%,50%,80%,100%{transform:translateX(50%) translateY(0)}20%{opacity:0}40%{transform:translateX(50%) translateY(-30px)}60%{transform:translateX(50%) translateY(-15px)}100%{opacity:1}}[data-tooltip]{position:relative;z-index:2;cursor:pointer}[data-tooltip]:before,[data-tooltip]:after{visibility:hidden;opacity:0;pointer-events:none}[data-tooltip]:before{position:absolute;bottom:150%;right:50%;margin-bottom:5px;margin-right:-100px;padding:7px;width:200px;border-radius:3px;background-color:#000;background-color:rgba(51,51,51,.9);color:#fff;content:attr(data-tooltip);text-align:center;font-size:14px;line-height:1.2}[data-tooltip]:after{position:absolute;bottom:150%;right:50%;margin-right:-5px;width:0;border-top:5px solid #000;border-top:5px solid rgba(51,51,51,.9);border-left:5px solid transparent;border-right:5px solid transparent;content:" ";font-size:0;line-height:0}[data-tooltip]:hover:before,[data-tooltip]:hover:after{visibility:visible;opacity:1}
|
dist/styles/backend/index.asset.php
CHANGED
@@ -1 +1 @@
|
|
1 |
-
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '
|
1 |
+
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '75a1a49bc8b4e2966828040931ced292');
|
dist/styles/backend/index.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.zoom-instagram-widget .button-connect{color:#fff;border:1px solid #1c5380;border-radius:3px;background-color:#6f97b6;background-image:linear-gradient(to bottom, #6f97b6, #3f729b);background-position:50% 50%;box-shadow:0 1px 1px rgba(0,0,0,.1),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);text-shadow:0 1px 1px #1c5380}.zoom-instagram-widget .button-connect:focus,.zoom-instagram-widget .button-connect:hover{border-color:#1c5380;color:#fff;background-image:linear-gradient(to bottom, #5D87A8, #3f729b)}.zoom-instagram-widget{background:#fff;padding:30px;border:1px solid #ddd;border-radius:3px;margin:30px 10px 30px 0 !important;box-shadow:1px 1px 2px rgba(0,0,0,.1);max-width:700px}.zoom-themes-link{border:1px solid #e2e9ec;padding:30px 30px 260px 30px;border-radius:3px;margin:30px 0 30px 0 !important;box-shadow:1px 1px 2px rgba(0,0,0,.1);max-width:700px;text-align:center}.zoom-themes-link p{font-size:15px;line-height:1.6}.cta-button{text-align:center;text-decoration:none;color:#fff;background:#3ebd3e;padding:10px 15px;display:inline-block;border-radius:3px;box-shadow:0 -1px 1px rgba(0,0,0,.2) inset;border:1px solid #259425;font-size:16px;text-shadow:1px 1px rgba(0,0,0,.3)}.cta-button:hover{background:#2a9b2a;color:#fff}#wpzoom-instagram-widget-settings_transient-lifetime-value{max-width:150px;float:left}#wpzoom-instagram-widget-settings_transient-lifetime-type{float:left;max-width:100px}.zoom-instagram-widget .wpzoom-instagram-widget-with-access-token-group{background-color:#fff6f6}.zoom-instagram-widget .wpzoom-instagram-widget-with-basic-access-token-group,.zoom-instagram-widget .wpzoom-instagram-widget-without-access-token-group{background-color:#e0f0e3}.zoom-instagram-widget .wpzoom-instagram-widget-with-basic-access-token-group th,.zoom-instagram-widget .wpzoom-instagram-widget-without-access-token-group th{padding-left:10px}.zoom-instagram-widget .label-wrap input[type=radio]:checked+label[for=wpzoom-instagram-widget-settings_with-basic-access-token],.zoom-instagram-widget .label-wrap input[type=radio]:checked+label[for=wpzoom-instagram-widget-settings_without-access-token]{background-color:#e0f0e3}.zoom-instagram-widget .label-wrap input[type=radio]:checked+label[for=wpzoom-instagram-widget-settings_with-access-token]{background-color:#fff6f6}.zoom-instagram-widget .wpzoom-instagram-widget-settings-request-type-wrapper{display:flex;flex-direction:column}.zoom-instagram-widget .wpzoom-instagram-widget-settings-request-type-wrapper .label-wrap{display:flex;align-items:center}.zoom-instagram-widget .wpzoom-instagram-widget-settings-request-type-wrapper .label-wrap input[type=radio]{z-index:2}.zoom-instagram-widget .wpzoom-instagram-widget-settings-request-type-wrapper .label-wrap label{padding:10px;width:100%;margin-left:-30px;padding-left:40px;z-index:1}.zoom-instagram-widget form h2{border-top:2px solid #eee;padding-top:40px}.zoom-instagram-widget .wpzoom-instagram-widget-with-token-group>td{padding-right:0px}.zoom-instagram-user-avatar-media-uploader .remove-avatar{margin:6px 20px;color:#a00}.zoom-instagram-user-avatar-media-uploader .file-wrapper{margin-top:10px}#wpzoom-instagram-widget-settings-user-info-biography{width:100%;min-height:100px}.wpz-insta-admin.post-php #wpbody-content{padding-bottom:0}.wpz-insta-admin.post-php #wpbody-content>.wrap #poststuff #post-body #post-body-content .wpz-insta_tabs-content .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section,.wpz-insta-admin.post-php #wpbody-content>.wrap #poststuff #post-body #post-body-content .wpz-insta_tabs-content .wpz-insta_sidebar .wpz-insta_widget-preview .wpz-insta_widget-preview-view{max-height:60vh;min-height:200px}.wpz-insta-admin #wpfooter{position:relative}.wpz-insta-admin #wpbody-content{padding-bottom:165px}.wpz-insta-admin #wpbody-content .urgent{color:#ec2439}.wpz-insta-admin #wpbody-content .pro-only{position:absolute;top:0;right:0;line-height:1.5;color:#fff;background:#f57c00;padding:0 4px;border-radius:2px;transform:translate(50%, -50%)}.wpz-insta-admin #wpbody-content>.wrap>h1.wp-heading-inline,.wpz-insta-admin #wpbody-content>.wrap>.page-title-action,.wpz-insta-admin #wpbody-content>.wrap>.wp-header-end,.wpz-insta-admin #wpbody-content>.wrap>.wpz-insta-wrap~#posts-filter>.search-box,.wpz-insta-admin #wpbody-content>.wrap>.wpz-insta-wrap~#posts-filter>.tablenav,.wpz-insta-admin #wpbody-content>.wrap>.wpz-insta-wrap~#posts-filter>.wp-list-table>tfoot,.wpz-insta-admin #wpbody-content>.wrap #titlediv{display:none !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-notices .notice{display:block !important}.wpz-insta-admin #wpbody-content>.wrap input,.wpz-insta-admin #wpbody-content>.wrap textarea,.wpz-insta-admin #wpbody-content>.wrap select{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-weight:normal;color:#242628;border:1px solid #9ca2a7;border-radius:2px;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap input:hover,.wpz-insta-admin #wpbody-content>.wrap input:focus,.wpz-insta-admin #wpbody-content>.wrap textarea:hover,.wpz-insta-admin #wpbody-content>.wrap textarea:focus,.wpz-insta-admin #wpbody-content>.wrap select:hover,.wpz-insta-admin #wpbody-content>.wrap select:focus{color:#242628;border-color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap input{color:#242628}.wpz-insta-admin #wpbody-content>.wrap input.wpz-insta_input{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.wpz-insta-admin #wpbody-content>.wrap input.wpz-insta_input-nobg{background:transparent}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]{display:inline-flex;align-items:center;justify-content:center;color:#fff;background-color:#fff;height:1.25rem;width:1.25rem;border:none;border-radius:2px;box-shadow:inset 0 0 0 1px #81909c;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:hover{background-color:#ddd !important;box-shadow:inset 0 0 0 1px #81909c !important}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:hover:checked{background-color:#70b5fe !important;box-shadow:inset 0 0 0 1px transparent !important}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:focus{outline:none;box-shadow:inset 0 0 0 1px #81909c}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:focus:checked{box-shadow:inset 0 0 0 1px transparent}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]::before{transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:checked{background-color:#3496ff;box-shadow:inset 0 0 0 1px transparent}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:checked::before{content:url("data:image/svg+xml;utf8,%3Csvg%20width%3D%2214%22%20height%3D%2212%22%20viewBox%3D%220%200%2014%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12.779%201.00004L5.3618%2010.9753L1.06089%207.77735%22%20stroke%3D%22white%22%20stroke-width%3D%221.2%22%2F%3E%3C%2Fsvg%3E%0A");display:block;float:none;height:auto;width:auto;margin:0}.wpz-insta-admin #wpbody-content>.wrap .disabled,.wpz-insta-admin #wpbody-content>.wrap .disable{pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .disable{opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .help{display:inline-block;cursor:help;font-size:20px;vertical-align:text-bottom;height:16px;width:16px;transition:all .2s ease;position:relative}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field{padding:0;margin:0 0 2em}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field label>strong{font-size:15px !important}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field label>em{color:rgba(36,38,40,.8)}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field input[type=text]{display:block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:15px;font-weight:normal;line-height:40px;color:#242628;width:100%;min-height:40px;padding:0 10px;box-sizing:border-box;margin:.7em 0}.wpz-insta-admin #wpbody-content>.wrap .submit-button{padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .button.disabled{pointer-events:none !important}.wpz-insta-admin #wpbody-content>.wrap .button:not(.wp-color-result),.wpz-insta-admin #wpbody-content>.wrap .button-primary,.wpz-insta-admin #wpbody-content>.wrap .button-secondary{display:inline-flex;align-items:center;justify-content:center;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:13px;font-weight:600;line-height:35px;min-height:35px;padding:0 12px;border:0;border-radius:2px;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .button:not(.wp-color-result).button-large,.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-large,.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-large{min-height:48px;padding:0 40px;margin:0}.wpz-insta-admin #wpbody-content>.wrap .button.wp-color-result{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:13px}.wpz-insta-admin #wpbody-content>.wrap .button-primary{color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .button-primary:hover,.wpz-insta-admin #wpbody-content>.wrap .button-primary:active{color:#fff;background:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-positive{color:#fff;background:#2b6}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-positive:hover,.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-positive:active{background:#3bdb82}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-negative{color:#fff;background:#ec2439}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-negative:hover,.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-negative:active{background:#f05161}.wpz-insta-admin #wpbody-content>.wrap .button-secondary{color:#81909c;background:#fff;box-shadow:inset 0 0 0 1px #ddd}.wpz-insta-admin #wpbody-content>.wrap .button-secondary:hover,.wpz-insta-admin #wpbody-content>.wrap .button-secondary:active{background:#ddd}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-positive{color:#2b6;background:#fff;box-shadow:inset 0 0 0 1px #2b6}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-positive:hover,.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-positive:active{color:#242628;background:#fff;box-shadow:inset 0 0 0 1px #242628}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-negative{color:#ec2439;background:#fff;box-shadow:inset 0 0 0 1px #ec2439}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-negative:hover,.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-negative:active{color:#242628;background:#fff;box-shadow:inset 0 0 0 1px #242628}.wpz-insta-admin #wpbody-content>.wrap .button-link{color:#3496ff;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link{font-weight:normal;line-height:1;min-height:0;padding:0;margin:1.5em 0 0}.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link:hover,.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link:active,.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link:focus{color:#70b5fe;background:transparent}.wpz-insta-admin #wpbody-content>.wrap .button-link:hover,.wpz-insta-admin #wpbody-content>.wrap .button-link:active,.wpz-insta-admin #wpbody-content>.wrap .button-link:focus{color:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_suffixed-number-input{display:flex;gap:12px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_suffixed-number-input>*{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_suffixed-number-input>*:first-child{flex-grow:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_profile-photo{display:block;height:100px;width:100px;border-radius:50%}.wpz-insta-admin #wpbody-content>.wrap a{text-decoration:none;color:#3496ff;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap a:hover,.wpz-insta-admin #wpbody-content>.wrap a:active,.wpz-insta-admin #wpbody-content>.wrap a:focus{text-decoration:none;color:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap a.linked{border-bottom:1px solid rgba(52,150,255,.3)}.wpz-insta-admin #wpbody-content>.wrap a.linked:hover,.wpz-insta-admin #wpbody-content>.wrap a.linked:active,.wpz-insta-admin #wpbody-content>.wrap a.linked:focus{border-bottom-color:rgba(112,181,254,.3)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button{display:inline-flex;align-items:center;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;font-weight:600;text-decoration:none;color:#242628;margin:10px 0 0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:hover svg,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:active svg{color:#3496ff;fill:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button svg{color:#242628;fill:#242628;margin:0 6px 0 0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpzinsta-pointer{position:absolute;top:calc(100% + 3px);left:50%;z-index:1000;cursor:default;font-size:14px;color:#fff;background:#3496ff;width:-webkit-max-content;width:-moz-max-content;width:max-content;padding:4px 10px;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.3);transform:translateX(-50%);-webkit-animation-name:bounceFade;animation-name:bounceFade;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.wpz-insta-admin #wpbody-content>.wrap .wpzinsta-pointer>i{position:absolute;top:-10px;left:50%;pointer-events:none;height:10px;width:20px;transform:translateX(-50%);overflow:hidden}.wpz-insta-admin #wpbody-content>.wrap .wpzinsta-pointer>i::before{content:"";position:absolute;left:50%;bottom:-4px;pointer-events:initial;background:#3496ff;height:8px;width:8px;box-shadow:0 0 2px rgba(0,0,0,.3);transform:translateX(-50%) rotateZ(45deg)}.wpz-insta-admin #wpbody-content>.wrap .fit-max-content{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-add-new a,.wpz-insta-admin #wpbody-content>.wrap #wpz-insta_tabs-config-cnnct .wpz-insta_tabs-config-connect-add{position:relative}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container{display:inline-flex;position:relative}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container:not(:focus-within) .wp-picker-holder{pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-color-result{position:absolute;top:50%;left:5px;pointer-events:none;height:20px;min-height:0;width:20px;padding:0;border-radius:4px;margin:0;transform:translateY(-50%)}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-color-result:active{transform:translateY(-50%) !important}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-color-result .wp-color-result-text{display:none}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-input-wrap{display:block}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-input-wrap input{line-height:2;width:auto;padding-left:30px}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-input-wrap .wp-picker-clear{display:none}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-holder{display:block;position:fixed;top:100%;left:0;z-index:999;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-holder .iris-picker{display:block !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns{display:flex;align-items:center;list-style:none;padding:0;margin:1.5em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns.wpz-insta_two-columns-left-small{align-items:flex-start;gap:30px;margin-top:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns.wpz-insta_two-columns-left-small>*{text-align:left !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns.wpz-insta_two-columns-left-small>*:first-child{flex-grow:0;width:auto}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns>*{flex-grow:1;list-style:none;width:100%;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns>*:first-child{text-align:left}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns>*:last-child{text-align:right}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_notice{display:flex;align-items:center;font-size:12px;padding:0;margin:1.5em 0 0 !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_notice::before{content:"";display:block;background-image:url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.3 3.5H7.7V4.9H6.3V3.5ZM6.3 6.3H7.7V10.5H6.3V6.3ZM7 0C3.136 0 0 3.136 0 7C0 10.864 3.136 14 7 14C10.864 14 14 10.864 14 7C14 3.136 10.864 0 7 0ZM7 12.6C3.913 12.6 1.4 10.087 1.4 7C1.4 3.913 3.913 1.4 7 1.4C10.087 1.4 12.6 3.913 12.6 7C12.6 10.087 10.087 12.6 7 12.6Z'/%3E%3C/svg%3E");height:14px;width:14px;margin:0 .8em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_notice p{padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:15px 30px 0;border:1px solid #ddd;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.1);margin:3em 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header #major-publishing-actions{background:transparent;padding:0 0 1em;border:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header #major-publishing-actions #publishing-action{display:flex;align-items:center;gap:20px;float:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header #major-publishing-actions #publishing-action .spinner{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header.wpz-insta-wrap-sides{display:flex;align-items:center;margin-top:1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header.wpz-insta-wrap-sides .wpz-insta-wrap-left{flex-grow:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title{font-size:24px;font-weight:600;line-height:29px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small{font-size:14px;font-weight:normal;line-height:17px;color:#81909c}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small a{text-decoration:none;color:#81909c;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small a:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title .pro{color:#f57c00}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title #title{position:relative;font-size:24px;font-weight:600;text-overflow:ellipsis;line-height:29px;background:transparent url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 17.2505V21.0005H6.75L17.81 9.94055L14.06 6.19055L3 17.2505ZM20.71 7.04055C21.1 6.65055 21.1 6.02055 20.71 5.63055L18.37 3.29055C17.98 2.90055 17.35 2.90055 16.96 3.29055L15.13 5.12055L18.88 8.87055L20.71 7.04055Z' fill='%2381909C'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:center right;min-width:100px;max-width:82%;padding:0 24px 0 0;border:0;outline:none;margin:0;overflow:hidden;box-shadow:0 0 0 1px transparent;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title #title:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title #title:focus{box-shadow:0 0 0 1px #3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-sub-title{font-size:18px;font-weight:normal;line-height:22px;color:#242628;margin:16px 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav{font-size:18px;font-weight:normal;line-height:22px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul{display:flex;list-style:none;gap:40px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li{position:relative;list-style:none;padding:0;margin:0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li.active a{cursor:default;pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li.active a::after{transform:translateY(0)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a{display:block;position:relative;text-decoration:none;color:#242628;outline:none;padding:16px 0;box-shadow:none;overflow:hidden;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a:active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a:focus{outline:none;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a:hover{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a::after{content:"";position:absolute;left:0;right:0;bottom:0;background:#3496ff;height:6px;border-radius:2px 2px 0 0;transform:translateY(100%);transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap.with-bg{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;color:#242628;background:#fff;padding:25px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap.with-bg *:not(h2):not(small){font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter{margin:2em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:15px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td{border-bottom:1px solid #000}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_account-token,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td.column-wpz-insta_account-token{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th{font-weight:600;padding-left:0;padding-right:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_actions{text-align:right}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th a{color:#000;padding:14px 0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th a:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr{display:table-row !important;position:relative;background:transparent}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr:first-child th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr:first-child td,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr.inline-edit-row th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr.inline-edit-row td{border-top:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr.inline-edit-row td{padding-top:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td{vertical-align:middle;padding:20px 0;border-top:1px solid #ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.column-wpz-insta_account-token,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td.column-wpz-insta_account-token{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.check-column{padding:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td>*{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td a:not(.button){color:#3496ff;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td a:not(.button):hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td a:not(.button):active{color:#000}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .row-actions{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit{overflow:hidden;-webkit-animation-name:slidedown;animation-name:slidedown;-webkit-animation-duration:1s;animation-duration:1s}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns{display:flex;list-style:none;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li{flex-grow:1;list-style:none;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li div{display:block;margin:0 0 10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li div:last-child{margin-bottom:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li strong:first-child,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li label>strong:first-child{display:inline-block;margin:0 0 5px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li input:not(.widefat),.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li textarea{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;width:60%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save{position:absolute;top:-10px;right:0;padding:0;transform:translateY(-100%)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button{float:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel{color:#3496ff;background:transparent;box-shadow:inset 0 0 0 1px #3496ff;margin:0 1em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel:active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel:focus{color:#000;box-shadow:inset 0 0 0 1px #000}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .spinner{float:left}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-title,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account{width:50%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account a{color:#242628}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account a:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions{text-align:right;width:5%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions strong{position:relative;cursor:pointer;font-size:20px;font-weight:600;text-align:right;white-space:nowrap;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions strong:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions strong:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu{display:inline-block;position:relative;text-align:right}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu:hover .wpz-insta_hidden{pointer-events:auto;opacity:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu:hover strong{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu:hover strong::after{content:"";position:absolute;left:-50px;right:0;bottom:-15px;height:25px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden{position:absolute;right:0;bottom:-10px;z-index:999;pointer-events:none;text-align:left;background:#fff;min-width:200px;opacity:0;padding:0;border-radius:3px;margin:0;box-shadow:1px 4px 8px rgba(0,0,0,.1);transform:translate(0%, 100%);transition:opacity .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li{white-space:nowrap;margin:0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:first-child a,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:first-child button{padding-top:10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:last-child a,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:last-child button{padding-bottom:10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li.wpz-insta_actions-menu_divider{pointer-events:none;background:#ddd;height:1px;padding:0;margin:5px 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li.wpz-insta_actions-menu_delete a:hover{color:#ec2439}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li a,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li button{display:block;white-space:nowrap;color:#242628;width:100%;padding:7px 20px;margin:0;box-sizing:border-box;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li button:hover{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .inline-edit-col-left,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .inline-edit-col-right{display:none}.wpz-insta-admin #wpbody-content>.wrap #poststuff{padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap #poststuff #post-body{margin:0}.wpz-insta-admin #wpbody-content>.wrap #poststuff #post-body #post-body-content{float:none;margin:0}.wpz-insta-admin #wpbody-content>.wrap #poststuff #post-body .postbox-container{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content{display:grid}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content *{pointer-events:inherit}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content>*{grid-column:1;grid-row:1;align-self:start}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content>*:not(.active){pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content>*:not(.active) *{pointer-events:none !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar{display:flex;gap:20px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar.hide{pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar:not(.show-pro) .wpz-insta_pro-only{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar input,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar textarea,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar select{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right{background:#fff;border:1px solid #ddd;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left{display:grid;grid-template-rows:auto 1fr;flex-basis:28%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left.is-pro .wpz-insta_sidebar-left-section{max-height:70vh !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section-head{display:flex;align-items:center;grid-column:1;grid-row:1;background:#fafafa;min-height:30px;padding:20px;border-bottom:1px solid #ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section{grid-column:1;grid-row:2;align-self:start;transition:all .3s ease;overflow-x:hidden;overflow-y:auto}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section:not(.active){pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right{flex-grow:1;position:relative}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right.is-loading{transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right.is-loading.hide-loading::before{opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right.is-loading::before{content:"";position:absolute;top:300px;left:50%;z-index:1;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 50 50' xml:space='preserve'%3E%3Cpath fill='%233496ff' d='M43.935,25.145c0-10.318-8.364-18.683-18.683-18.683c-10.318,0-18.683,8.365-18.683,18.683h4.068c0-8.071,6.543-14.615,14.615-14.615c8.072,0,14.615,6.543,14.615,14.615H43.935z'%3E%3CanimateTransform attributeType='xml' attributeName='transform' type='rotate' from='0 25 25' to='360 25 25' dur='0.6s' repeatCount='indefinite'/%3E%3C/path%3E%3C/svg%3E");background-size:contain;height:64px;width:64px;opacity:1;transform:translateX(-50%);transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section-big-title{font-size:18px;font-weight:600;margin:30px 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section{padding:30px 0 0;border-top:1px solid #ddd;margin:30px 20px 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section:first-child,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.no-top-border{padding-top:0;border-top:0;margin-top:20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-title{font-size:18px;font-weight:600;margin:0 0 15px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-title.smaller-title{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-description{font-size:14px;font-weight:normal;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-description:last-child{margin-bottom:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section p{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section ul li,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section ol li{margin-bottom:1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_text-btn-aligned{display:flex;align-items:stretch;gap:15px;width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_text-btn-aligned>input{flex-grow:1;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn{display:flex;align-items:center;font-size:14px;line-height:2}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode{background:transparent;border:1px solid #ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn{display:grid;text-align:center;color:#3496ff;background:transparent;border:1px solid #3496ff;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn:hover{color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn.success{color:#fff;background:#2b6;border-color:#2b6}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn.success .wpz-insta_shortcode-copy-btn-text-normal{opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn.success .wpz-insta_shortcode-copy-btn-text-success{opacity:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-normal,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-success{grid-column:1;grid-row:1;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-normal{opacity:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-success{opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select.is-set .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button-highlight{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select.is-set .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button{pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select.is-set .wpz-insta_feed-user-select-edit-link{display:inline-block}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select:not(.is-set) .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info{pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input{display:grid;background:#eee;border:1px solid #9ca2a7;border-radius:4px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info{display:flex;align-items:center;justify-content:space-between;grid-column:1;grid-row:1;margin:15px;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-select-info-left .wpz-insta_feed-user-select-info-name{font-size:14px;font-weight:600;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-select-info-left .wpz-insta_feed-user-select-info-type{font-size:12px;color:#81909c;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-remove-button{font-size:13px;font-weight:600;color:#3496ff;background:transparent;border:1px solid #3496ff;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-remove-button:hover{color:#ec2439;border-color:#ec2439}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap{position:relative;display:flex;align-items:stretch;justify-content:stretch;grid-column:1;grid-row:1;pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button-highlight{display:block;position:absolute;top:-2px;left:-2px;right:-2px;bottom:-2px;z-index:1;pointer-events:none;border:0;border-radius:6px;box-shadow:inset 0 0 1px 1px #3496ff,0 0 1px 1px #3496ff;transition:all .3s ease;-webkit-animation:highlighting .8s infinite;animation:highlighting .8s infinite}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button{display:flex;flex-grow:1;position:relative;z-index:2;pointer-events:all;font-size:14px;font-weight:600;color:#242628;background:#eee;opacity:1;border:0;border-radius:4px;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button:hover{color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-edit-link{display:none;margin:20px 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout{display:flex;align-items:end;gap:10px;max-height:999em;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-pro{display:flex;gap:15px;padding:10px;border-radius:4px;box-shadow:0 0 0 2px #f57c00;max-width:76%;box-sizing:border-box}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-pro legend{font-size:13px;font-weight:600;color:#fff;background:#f57c00;padding:0 5px;margin:0 auto;border-radius:2px;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-pro .wpz-insta_feed-layout-option{pointer-events:none;opacity:.75}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout>.wpz-insta_feed-layout-option{margin-bottom:10px !important;max-width:21%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option{display:block;background:transparent;padding:0;border:0;box-shadow:none;outline:none;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option.disabled{pointer-events:none;opacity:.4}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option:hover svg{color:#9ca2a7;fill:#9ca2a7}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option input{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option svg{display:block;color:#81909c;fill:#81909c;max-width:100%;height:auto;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option input:checked~svg{color:#3496ff;fill:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout-etc,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-general,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-profile-general,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-load-more-general{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table{display:flex;flex-direction:column;gap:20px;width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row{display:flex;align-items:center;width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_table-row-full{flex-direction:column;align-items:stretch}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_table-row-full .wpz-insta_table-cell{width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.hidden{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row .wpz-insta_table-cell{display:block;white-space:nowrap;line-height:30px;width:50%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row .wpz-insta_table-cell input{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row>input[type=checkbox]{margin:0 1em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_show-on-hover{display:table-row}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_show-on-hover>strong{display:block;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro{display:flex;flex-direction:column;gap:20px;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro.wpz-insta_pro-only-with-bottom{padding-bottom:10px;border-bottom:2px solid #f57c00}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro.hidden{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro legend{display:flex;width:100%;padding:0;border-bottom:2px solid #f57c00;margin:0 0 10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro legend>strong{font-size:13px;color:#fff;background:#f57c00;padding:0 5px;border-top-left-radius:2px;border-top-right-radius:2px;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro>label{opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-token,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-check-new,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-request-timeout{max-height:0;opacity:0;overflow:hidden;padding-top:0;margin-top:0;margin-bottom:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-token.active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-check-new.active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-request-timeout.active{max-height:999em;opacity:1;padding-top:30px;margin-top:30px;margin-bottom:20px;overflow:visible}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-token #wpz-insta_user-token{display:block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;font-weight:normal;text-overflow:ellipsis;color:#242628;background:#fff;width:100%;padding:4px 8px;border:1px solid #ddd;border-radius:2px;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-request-timeout>label>strong{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-load-more.wpz-insta_pro-only{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding-top:0;padding-bottom:20px;border-top:none;border-bottom:2px solid #f57c00;margin-top:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-load-more.wpz-insta_pro-only .wpz-insta_sidebar-section-title,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-load-more.wpz-insta_pro-only .wpz-insta_table>label{opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview{position:relative;z-index:2;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header{display:flex;align-items:center;padding:0;border-bottom:1px solid #ddd;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-title{flex-grow:1;font-size:14px;font-weight:600;text-align:center;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links{display:flex;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links.disabled{pointer-events:none;opacity:.3}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links.disabled .wpz-insta_widget-preview-header-link.active{background:#ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links.disabled .wpz-insta_widget-preview-header-link.active svg{fill:#81909c}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link{display:flex;align-items:center;justify-content:center;cursor:pointer;background:#ddd;min-width:70px;min-height:70px;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link:hover{background:#eee}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link.active{cursor:default;color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link.active svg{fill:#fff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link svg{fill:#81909c;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view{display:flex;align-items:start;justify-content:center;padding:0;margin:0;overflow-x:hidden;overflow-y:auto;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.wpz-insta_widget-preview-size-desktop .wpz-insta_widget-preview-view-inner{max-width:500px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.wpz-insta_widget-preview-size-tablet .wpz-insta_widget-preview-view-inner{max-width:768px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.wpz-insta_widget-preview-size-mobile .wpz-insta_widget-preview-view-inner{max-width:380px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.layout-fullwidth.wpz-insta_widget-preview-size-desktop .wpz-insta_widget-preview-view-inner{max-width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view .wpz-insta_widget-preview-view-inner{flex-grow:1;padding:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view .wpz-insta_widget-preview-view-inner iframe{display:block;height:400px;width:100%;visibility:visible;opacity:1;overflow:hidden;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view .wpz-insta_widget-preview-view-inner iframe.wpz-insta_preview-hidden{pointer-events:none;visibility:hidden;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:25px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-title{font-size:24px;font-weight:600;padding:0;margin:0 0 10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-description{padding:0;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts{display:grid;grid-template-columns:repeat(auto-fill, minmax(300px, 1fr));gap:30px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li{cursor:pointer;background:#eee;padding:15px;border:1px solid #9ca2a7;border-radius:4px;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li:hover{color:#fff;background:#3496ff;border-color:#0063cd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li:hover h3{color:#fff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li:hover p{color:rgba(255,255,255,.6)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li h3{font-size:14px;font-weight:600;padding:0;margin:0 0 5px;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li p{font-size:12px;color:#81909c;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect hr{margin:30px 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-subtitle{font-size:14px;font-weight:normal;padding:0;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support .section-title,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license .section-title{font-size:20px;font-weight:600;line-height:24px;margin:0 0 1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support .section-title svg,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license .section-title svg{vertical-align:text-bottom;margin:0 5px 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support .section-description,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license .section-description{padding:0;margin:0 0 2em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:25px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-title{font-size:24px;font-weight:600;line-height:29px;margin:0 0 16px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-description{font-size:14px;white-space:pre-wrap;margin:0 0 30px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options{display:flex;flex-wrap:wrap;gap:30px;margin:0 0 30px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option{display:flex;flex-direction:column;min-width:350px;padding:20px;border:1px solid #ddd;border-radius:3px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-title{font-size:16px;font-weight:600;line-height:19px;margin:0 0 16px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-checklist{font-size:14px;padding:0;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-checklist li{line-height:18px;background:url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0C4.03759 0 0 4.03759 0 9C0 13.9624 4.03759 18 9 18C13.9624 18 18 13.9624 18 9C18 4.03759 13.9624 0 9 0ZM14.0301 6.63158L8.2782 12.3383C7.93985 12.6767 7.3985 12.6992 7.03759 12.3609L3.99248 9.58647C3.63158 9.24812 3.60902 8.68421 3.92481 8.32331C4.26316 7.96241 4.82707 7.93985 5.18797 8.2782L7.6015 10.4887L12.7444 5.34586C13.1053 4.98496 13.6692 4.98496 14.0301 5.34586C14.391 5.70677 14.391 6.27068 14.0301 6.63158Z' fill='%2322BB66'/%3E%3C/svg%3E");background-position:0 5px;background-repeat:no-repeat;min-height:18px;padding:5px 0 5px 32px;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-token-input{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;line-height:17px;color:#242628;padding:10px;border:1px solid #ddd;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-token-input:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-token-input:focus{border-color:#3496ff;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button{display:flex;cursor:pointer;align-items:center;justify-content:center;font-weight:600;line-height:1;color:#fff;background:#3496ff;background-position:center left;background-repeat:no-repeat;width:100%;padding:15px 40px;border:0;border-radius:2px;margin:auto 0 0;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button:focus{background-color:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button.disabled{pointer-events:none;opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button svg{margin:0 16px 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-notice{display:flex;align-items:center;font-size:13px;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-notice svg{margin:0 12px 0 0}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap{display:flex;align-items:center;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:30px;border:1px solid #ddd;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.1);margin:20px 0}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-logo{padding:0;margin:0 30px 0 0}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-logo a{display:block;text-indent:-999em;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAsUAAAB1CAYAAACmnpxEAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3BpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQwIDc5LjE2MDQ1MSwgMjAxNy8wNS8wNi0wMTowODoyMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGODdGMTE3NDA3MjA2ODExODIyQUJEN0ZFNTE5QkYyRSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyMERERTJGNDlFNjgxMUU4ODM0NkExODhFNzlBMDMzQiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyMERERTJGMzlFNjgxMUU4ODM0NkExODhFNzlBMDMzQiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxNSAoTWFjaW50b3NoKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjEyMzc5NGVhLTBiZGYtNDQ3Zi05ODc1LTY1ZDk5NjhjZGVlNiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGODdGMTE3NDA3MjA2ODExODIyQUJEN0ZFNTE5QkYyRSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pkkr7JsAAB/xSURBVHja7F1RUhy5shWE/y9vBVNegdsroPi874dmBXSvAIi47xv4nhsBrIBmBW7/zP2kWIHbK3B5BbdnBbwSVnvaDNBdVSelTNU5ER0MY7u6pJNKHaVSqZ3Hx0dHEARBEARBEEPGLruAIAiCIAiCoCgmCIIgCIIgCIpigiAIgiAIgqAoJgiCIAiCIIhB4936Lzs7O+wRgiAIYiM+/PNfZfNjr/mMms8/ws9tUDef7+Gn/yy+/uffS/ZoMg6L8CGHhFmgikbsrD9o9L//txocJtAMwmrgDm0UJiULWDZ8LbZ00hbAScAmb1pQN/ZTG+LXzwue4/0gnEbo/vBjqvk8NJ9qG19BkMOEfbkn0H/m/YRRXVMv/vj9Zx+/e/aHk+Zzbqj/hh7avgpOzgL8AuZgi793b2jw/iL6w4Tgf34N/10PYXIPTuzeEW1w3XzODPB63HzGTj5YUoTPOHy3H0fz5vO5GUNzmgs5VIZJmH+lMWs+04Et3O4ji+Kz4I9fFMUEQXTD3toCZbw2yJdhQZBz9KQk/a0x0vhSYVKaBCFVJB5P/j0mYQx5cXAztKgZOdTbzZG+ZzwkUdzgk4u/+/3LnExRTBDyE8PY/RU98RPCPLMJ/gNpti2KQ/rLyfqCTtkYOvWf5j39AvNy6Klzxjlc+T/LHMYKBOw1/TUewm5J086rFH5x8cfvFUUxQaRD8WyCv2sc3sx4m0rS2kkkaBFS54Y49O9ZhrFzxtxjkxw+BQmschjyiYuIX3nofgRScrbhcZgXY+NvCzOWZCOItBP8beMQvjWfiVFnVjhDh3MViplk3918fO7evdFFjX/nLz66FETKIO2HHA4iCFBmbsd+/rhN9PUPFMUEoQ/FmjgeG3v3EenrxXvsCchvx94aFlLP4aNLFscNObTL4X5sPxEOTOaKFHnEKywoiglCt0j61DjAT4YiJ/ukzYYobmzqSXy4H4efcsJeGDe3uUeNB8ChhahxCoF6nKk9X7m0gZWKopgg9MNHTKxETkrSpXtB4bcnwzb7lbNT17wLvFC8D9uxuYmHoXB4aoDDFD5vnKFNp8ojXsHXJ15SFBOEDfyMnCh2arEK2OfMcYyJ58uAFi/eHr/ktN1MDlVxkYqDIjOb9oue28SvUb30P1l9Aj8gljwRTQBxGsTnmcIb9CiIFfdfWFCdDrBf/Xjx0cYD676YHKrjMKXP8ykUuWiLlHnEKzy89D8ZKW63srnf5jPU09CEGCZK7aokNb0wE/JV/iDWl4GKqeeiyuTCjRyq5TDlGYosUigU5BGvsKAo7ofzFgN5zO4iwNB4lTIP2fUQxF//82/4TVVBQHxxjOKbFcbkUDWHKQMB5lMoFOQRr7Bc/PE7RXGfVXtLoXvCXiMkhHEoxaQFJSlRJ4j9wqlgF9sUxuTwTQ6LxNwULv2Wv9kqFEryiFd4NQ2Fong7TFoOhlHKwvxE3rbY2NaFAgdH+9YpiJm69bKoUl+ujRxu5DB1qUoNPs/yLvStItt+eO0PeNBuO3SJ/PoVXcWuIwRw7q9IbcRVSvvqG3mrw0cjRkLOu8pUEFeBy+9rv6+EzMpO/hH+e5ToPf33+lzGqUaDI4cmOPygwFR8CkXR+BGtvvM1+75wunYWq21Fcd1CyCEHhj9Vv1BKpl+ZFR3+qY/oXQobb9c+K2MYV8d3bSP0CofZZlwEG3QJvrvzqruxr48JK1L0zSe+a979QuF4nwg5b29jR5mIKd+WuyDyN43r+QvvXIQ+9jY0jvju3ic/NO88oyAmh8LzneQc4fv72pAg9nZyrombxR+/v/p3dx4fH//6ZWenTUORpWLqxsjfKyW0z1Wal9om/uDMvqEca9O+j4lXn4jBdtA16rpWq3cUJogy4gRx3bz3WaK+/2/Pdh4kjnS/Joglct4Wob1L8PvGFFN1EFEz9EI/9PuxixNJ8hx81BJpI4f2OXyjTz45mXSHpPNuh/nxWwz7boTuDuI5fdIn7oCiWOWWwNpquCt82sWFMjtFOq07N3AEoVOFz3Wwm3GYIKTzv3wN45vY4wZx4ISCGMJBDDFVh8X9THAM+WfP1iJKksLK95cP6BwpsDlyaJzDiHPtOkaGUihi1SOGzSe7PQbBwmFzAjUmkPetIrEXJltNONRoiJkJ5Xnz8Q7b737MhL/uPEET+zp7ValSBgXxXoTJxr+zvzDmfaytar9Qaj4HQexITvjj1AdFyaF9DjfwWwpzq/7AXeQ8Ypit9a0+MQc26lgZod6gEYJWW3k2lJHWvLlv4wRRh4NVHwWF4CRBqaK++cSVonFuShAH+PeVLDHm/boXUteJxs08jJm54NekLg1FDu1z+BYOhZ+vujRbxDzinyanRRQ/ABs1UlYyB3V4QE15NvDqde6IbSeIVQ7YTOgrYi+8+trzg5LxMLImiEP0RSpK5N/3yO9ypL5S3H9/2G2RypkvUu3iDZDDy9w4jOAjt9EVhVJBvNoFiQlY0Gm3p9HPXftT+5uEqBYgVzlaVnXI1evg84k7jBcfNZYoJxRtYggOr68zTr7DsHbACY1aUBCXTi764jn5GHy6pjFz7eRKcJ0nsLshcniRE4dbcOz9Y4zLYrSmUMTKI163sUqFKA5ADsBDJUZdOmwplYmSKDhq9bpk6kTnwTtz+MjJXjjcZ8GG6tQHRARP/K+idBKC+OkCCqEumQchXyseMxKiqog4bshhBhxGnmc3QV0KRaJ6xFCbR4jizxmufCS2o08TGyty9crUiX4TxIVAH8ZaUPbNJ14kHgeSgvhAcLF462Rqns40bLUnWkxK+XpymC+HmnyxqhSKBHnEInPKLsDQoSkUqVd9wcgk3iH1qg7Zps+O6Iupw6YexVqd9/2eh4Rj26QgDj5RwieJXDktvJis0PYcQ1iQQ/scKvTFsb/rLftOkUf806xUieKAnFIopFadqQ8F7IOes9SWs2YRIapzBravGBND392GKkV/GxbEq5qsgxZTazgCLyYlff46h7fk0C6HLf1MzFTJQyWcRs8jXoOuSHEAMvozTmjQqDJsryFltBjVr5UjUMJ45rD5UKXw+CgBbV4kGNdWUyY8/HYkerFTGRVTEovJGHPOuYDtkUMluiHxe4xTn1dqvv/UpY1YqxTFyMjhXpjEUhm0pIGVKdoGTklh6gQWN8BnFcLv2tfxVQlsX+qSBHFBHCL/6LMI/n2PLA+YsJhE2lIh5ZfDc8mhYQ5bIkXkNmUg0ff5VcL+XqIPl+6CDHzp8rjI4yST73iOfeCzmDqBxVwpzxLPj5pPHATxvdBi4SBC1Bu95e799FT7gawtgT6wJSUsrsiheQ7b+JsUwvwwYXs/JbYhuA/eBT7LdBWKsDUcw6BTlGdD9ec8E2esBmGVWxt53b7jYxFxPK8EscSYnkoL4uCPSmvvHXHcVA4badwnh+TQqChPlUIhVU0lG1GMjHgVCU6TxoxORyvPFvoR1ZcqbiLLEKiBPRK0I8QBkiqSzUsL4lmEZqBLG80yPCCLvECoJIfk0LAojyrIQx6xhjzur+gHwkSxQApFzKLqXjROMhXgyH5k6oTugS2aD99X+MfYZchBEAtEGGsnd11yukHzg4sluN/JITm0KMqjpVAoyCP+ZV5BP/Ad+HkPQBHmheN1pI6dRCby6RaeSKt+1Op1ofW2JCLK5HUdcTwOVhAHoCOMZxmnPc2B/tuLmoocksOOQrFI2IdPKRTSNqIkj3h9XlKdPrEybhRGEfNkUhx+i/WdqEXKnSMICmLpdpQOG3GqMq8rjjzL8oEcksMeYjw1Yuyua8gjXkEktx4qikMkcWGJ5HChRookdfFbeMCl2CpHEHpx6+xHiD3QqVXTnEkHi8WCHCZBpZDDtkCkL9QK3uEtPYHMI64Bz9AvigPulBnaJqS8CUf6nnBU6kSdy4lnIj80zvpWaAF9FlMQC5xtmA0k5QklqkbkMMnCZqmJww6c+6BaCXhU3xJ1pWAbkXnEZ6DFy1eJtkqIYuhhO8kUikB0yoLf0qVUxgo5Jf6O39gFvQTxRODRs5BHHdUfgJ93ORAzWADtqa8/npBD8xymEKMV4NDhHnh3eL0/UXnEc6CesBEpFkihKAWNOfV96WLXSoMT/5lPLAsUTxUFMUwQp9iyPgG3oR6IKSAjRn2DJMfk0DyHbYHY0V6VO50peJfnQOURe1ueAvkxkz7h8VmZwb22+pkocAZSwhy1mGDqhI1Iw6CQmyAWOL1+OSBzqJXYJDk0zmFC/12Fn30DUGOwTU9Az/QR8KOQKoMQxbVUpQ0pUWyhXvGpkgFVSGx5ABcTFSWY+ESKwmIgfZZbhNgDGWGcD6x8ItLuR+TQvCiOFikGXY61DLf7rUqM9ekLWAoFOo94Lbi2r8xe5EUxgNjnJJcCr3msyCEcgwcqKvHf47MjrHD/JwWxSUGMXvwPKt0JHDHaI4dJOKyVcJiC8+r5gqjn83oHxIKGuAX15ezZgWXEokXsdt1dQWNBRouhKRRhS6AAPOoANbDA5dlQgniZeX1MDWDZvHbjNjtBDN52rzlmySERDYio5wN4QYSYU65A4tUHSM/WxkkBEtpiu6KSohi50kWnFyCic1XY8kAJEWRuMWoRQccsO5GWDpuDuMi4r7wYvs1NEIMXsRyz5JCIC3ikOHUKBTD4sJ5HvILqQ3aiohicQlGgci/DcxAO7Cb8RB2GmABLyaAc9IMjJIGsU13neg2soCD+JYqREMidMFaKIYdEHL+EEMSvHWRPkkIBziOevpAWA9Fxkvn2u8J2g1zxooTeCciQ54GcCiT+9xCrTvA2HiMWcg711DG6lFoQHyhZSKDsgJViyCERD4jUiUpoYdRaS4DziK9fSQGS7DMTohgZaeyd8gAsw3a54feuQEQOUc55nmvkUYHQKxz+NsOHDPspe0EMPkRccXSRQ8LUQuhFvw1KoWgblUXlEfvU0td24AqQ/7YpisNKATXxjACH0RCC2Lfn+QoI1c4C4GBR23isOiEzga5uB0KekM7uQORAIsTOYctHccySQyKOfypQAvKNP7vp+ezjFu2ZAPXR0RtzH0IUf5XkdjeC/WhKoUCkTsyeT6jh9xmojSc9BiqyFBsjFjKC+N7h62hSENsUxE/NBT6LY5YcEnGAmGcXG3Jj+/r1rVIowHnER2/4V9S8V1sXxSputwtJ8YhVyo3Qqu6nIfeIiKME8WJgheNjCL2RkCBG2p6WfroSeLRGQewctozXcsBjC2knbTEih+Y5jKZFtl0AhTm4T1s2FigA5xFfri4hkdQnG75DvygGp1CMe1RoQEWJ6zcMeAZq50nCgerB089Yh38qKIirXA7mrC0c0MX3tQpi6EJ2wEMMmoqUUBSTw3Qcphi325wD6TsXb0qhQOUR+zNIF5tcvIUxshvJ4JOmUITIK8KI74QNeIVJ10WDQr6GLIb9Iu5LcDxStyxdZtJXUoLYT5BTjYIYfGHP1wEPtRHYXsjhgDjsMG5LkJ+qIszF47fmJ4fJI669j43EcTaiGHkyvks0FHHSf7EpbB/+HEHaXsirbCsqEAO1ZupEP3HXfC6azzf340DdSPDr5tJbSRkI4gPFkXSkoBpylPE3mCptbytIDitymITDGBrkJT2x3KIttRNIoQiLOdS5jaNNbQEesvsubYjvIhn8HEjAeMtVyToZiAjqTYu/h2irT6GYIVaEHbgaGg4bO9nagQWHshrge0H4fgg/i0jv7N/nzHrHD1gQO2dvy1grUh7g2XOEdQ7bogQ8o81Zq7ue/XP8grBGVUCabuljUfyKLxyjRIqDoECJrb2WZcsmAPJ99HS2ZVtnoAlq1LKdzCfujlXO72uf/zZcPK4+ze/f1v7MO5fzsCgpIr7zpfWI/sAFMXKicDnsGBgVVORwQKI4BNmkS7E9BzSFomkDKo94tq0ucobOTuxGNPpUVSgQB+zaCkVUNYDjyAOVtynZgD9cd01BbFoQEzg7QtkQr7Unh60EZowFEDKFIuQRn4LEaZudSkR6zDLG2ZCYonge2zBDpLUAfN+18N9/DZMtD3KgUieGHKmwAu8gj4xPgsgyQBTEw06dKMFjK+W4JocYsSYJxDXFXbRQ30BbCcwj7nJ42cQhu6iiOHQgSnQVW9Y1FLmsY8u2zlDCONJA9eBtSvrFz5HlWqaCF5gMOUI85Kj4PvBZKYMCNTk0MRYQAagu0ey+QUW/64zKIz7r4GdHifpNrygWEF3jDZNv4eIesEOv7NoIe0Q7s7sqOENBbFr0CQriro6asI8SNb465uh/IAVqOBStnARM82i9+AKcyxqB/O51izziVb+h+M0rUgxa7axjU14xIkrc+WKE8O8QkYc3y7MBByoFMQWxVUE8beuoleA3mnYvmxo7XApOV1/N6hP2OdwWqOBTVz+eeifXV2HqUvHIUmWRuKIYkDD+S0e/lm8bJuAJ4Dv6RntRlRyOhQeqBw+Z6IQfLx8piLMTxB7fad69cAh81uce45PQweGDgXedJ/q3vcW8636WBbKbEmsO3E3QuciSX+M3/j+iDNu8J4kz0OqmfCOHGuVUGCnWB28/B5ZLr1EQR8HgopXA+vMrVB3/3Z/k0DyH275r0rxYcGnbtjjqMQ+NNHOrQRQjSX0tQR9xgx0qJ1gstxg4UOeWD29liNWBuikP1VEQR5p0rAG57b5QsPAkh7o5LJUI9xQpFJc9a2ibqTyRRBSDUyjGYeJdn4i98RYAUYKacGcOUzJp8rytwFU2q07ogS/n9z6TQ4+oIvEUxMRzHAOfdcfuTIITQxwidmQRBwFjzwv+XNVF138MPGQXLdVsN9FgqIDPGgsMtBkqQgfe8nhedHtfIR9E98WTF8NnOUTtG2fo62FOKIg3Lr5R/T2YSGOYaEvgI+fkMAmHIyUcbgOEvfWeZyOnUPTJI14BxXG+kWKBVd3+2kArXNoybK/hEvSc4w0Lgk7GZv26YOOiaBUZnubCg6Agvs4sQox09EPKSUVGifv6P3Jon8NtFisF4FGoHdlYOxsHgAANpMJOzCvQk4jicIoQZcTrwhAxEc/RAyw8D0FqsSrPFlbae4YGGLFmY+5HxPN/QmQ4m0WJoCCedSwHNBSUQ2hkCHwg7euGHJLDSLxAhF1IrZPeTUTVfTeVT5xMFK8JA8jqOtQ69DhRPMDQ0WJWnbADP6h9RNgfnttpPkc55sQKC+Jpbv0Fjn4M5RKJc+Czem9Fk8NOuNLE4RZAzLULcFqcZJt9YPBa0YKijmmc7xIODB+hPAU9az8cQtsDGG4l0Vj/3OYdPblFXyML2zkQY2PqBBR1+HgR/F3SniiIs8HSYXZ8ygHYWAm2MVTVHXLYjsOxQg6leUHPA5+F/K2fu6YgrlH5xF8HIYp9aB4kEl0YZAjDld6G8dHiW9BKG1KKjTr2CWeuxxbNUITvG87vioK41ySE8F1+x2yU+VXX5+DnXZJDcrjBt6ms8ORTKJp3Qy3G1hd3yDKgKFEcdX59l3iAVKDJFCGslxG2tOdB0PY1ZFREgfnEYVIburDtMWn48Xsq8OghCGKPB+B4PnaZ3rDW2NmpA1ecAO6SkcM0HM4i7HRCKjwJzS9zcDDiDLwgQ6UD1THtNLUoltoC6ALxAxd+BdY4hpmQiGhtaJlHJIg4gvhW4NHRBXHTlk+u37Zu13dGjkH//mcZ2pkPIqAjjEh/Tw7TcBgjqIOIFFdC74bUTzOBoCAiUryMneKZ8qBdrFOU2+I60vdoOe1cOYLQJ4gXiSLEfR141+tbkYKqABbL1wRvZ8ht4gocuSOHm/FJOYcv+bjC6SrFJqWfFkILsVLZ2NIvigM05LXOYl2YEFY9MwVt5i12hDpB3HwOErQHMflVPfxBDWzOSWa25nfVxuDHQgUAOdyKw1Izh68AZXeS4r2vfnq6oAOtf4CH7B5i26sGUaxBnMWO3qbO5V1mco0wkZkgTnSbX18H3reKC3IsjoPIz8HWPC9X4MfOhNLGyKF9Dp8DkU+8FH7XvlpC6tIolP3WsW02uShWkEJRxc6tDds+KfN5KYgJCmLc5Nd3LKOjIbcZ2Jrfar9HBwOcXLUCcmifw78tThD6IoKW6CocrwWDY+aud1YjimMYzgbcDOx7JRw4kb8gHmcqiD3KlONJIDBQWs5LXRNT6GuPb6QO7ZBD+xw+e39U38fYCe8ibCvhG0JRVTsGK4pTpVDUqdIIwknPVEKAkWKizQQxylgQe/SNalQKx+RtECYWcetwkaZ1X39hzK+Sw/gcroC6MbaK8K5tUyie8oiV+9RYfadWFKcSaakrQaT4/rkCEULYEsQSER8VghgREQJFM9C+oHD4XM4YfHgxNRZ4dIyKJnfk0DyHK5SAZ0S5MTb4nzbfcyTpd0M+PGK+qFPYrwpRHAiKLYz9d84SN/06wXey6gSRWhAvnY4IMWLyqxJNbNtgEvLALdjanuBV4dcxLufpmd9JDhVwuCbqrEU6t9VPlxH60eT1zqpEcSKxNks9KYfvjy3MK0cQFMQ/m9rz3yPz8yUOEN1qF1Vr+acS77lw8Q5mkcM8OCxBz4l5dmebXYp5pPQTs4fstIni2JFiLZdoxHyPRezbYQgK4hcEsaabFPtOgLBFpuA5A7WiKtjaF4fPP13Z2zTmAowc2ufQ4fKJ5xHtbtNOk/+zWOknmq/GtiOKg9HH6oS5FnEYjDlWu+8cQVAQr7d1r+f4RY9dqUWyOlEVLnXwtlYIfcVZInsjh7Y5LAHPWCTYDXtLhB9FfB/E4iiZPtMUKfaIlUJxo6zddwoGDUFBXLjhRIgRzhvenrC9KTUheFGVvKKBt7Pm46/9vRKwtRVmIWqbAtfk0CaHiIVyQJWAltd0xDSW7wUesks2V2gTxTFE2yJVWP6NiXAWYWVUM3WCeMOZeUf2aUCC2KPvNp+UH5HMn5w0ny+pauA23+tFv99qHwt+jffx01RGFSJy5NAmh6g2PSSwu8ULYjL2wqJANYei2P28Q1568tQWJY71XowSE28JYh8hRucEahbEDtBekYkvTGKSC3c/cd37SF+s64T9tn/z+db857mTiyy6MH8cKJjLyKFNDg9B/Keab++e9eNZ5O8vgTaQBO8UTlR3TiZh/2mSTriltgkzYWfDfGIipiD2ONIqiEO7NVza8Rr8ZPZFuBt8VGzc9IWfwO/QE3kQa5PmcyIsotYXYVNFlU3IoSEOQT5B2i9sEuM+dec6oc1/AD0n2byx8/j4+NcvOzsaJis/CL8JPf4y4o04XdouVePRp068NyLS7lv89cJhtmsWruWJ8aY/D5xxCAviqeIF6Ora6k+ax1Q4xBTz8oZVvXh/tqPqIkxCTmbZfI4Fgxuvvbu6XYmQanBukEM/Pg6tcxjasu0YQoni2nVIh9Q4p4SDncct/kmqnOzPiz9+hywG1EWKfQpFQ8RCaDBeO924FBLFlbODMsF3jtzAICyI/eR23HzHseIuKLSPKR/1afrwMOKY2Av+ZxJsZDW5e3/857N2rwuI30J/lom4VJum44MwTT/uk8NkHJYJ2lR08C9a5+jjRDbR9jthRRreKSWiEpisZ9qvNw4LgkrACHmLHRFLEK8m2zLzbox1kObI/diCLxK0sXhBKJ0r40F73jo5TMvhB2cDD0rfy4ofhy0qdpU2UCL/9cYIuej3XCZM+id0QlIQDwVRRFhYyB85mQshrMOCICaHaTm0IurU2XBIPTFhQ0j7USmKt7idpfUqQrvjXGv7HNx2CmJi3dHdUhDrcsJb+sMjdvvfRMR7Q37dv+eUtMXjMOyIFUb6olL4ToNcUOwqbihSzFmrvICscfngCMKJHuQcGqJPYKG2OkXVX3PDgfZ0uBc4nJPDqByaEXVKbXmQqSeaRTFKyNaaT8G/4TCWwGcRhKMgtr3QDH5s6KLKVxA6siaIyWESDveN9IfW3Q4ri4pqEKI4bKkgBo2VXOL1tvt2I4T83OrkQYiAtmB8Egui6uMAuVzlnl5Yb0jg8IAcisNKmpi63dxQGrcYoj/eVd7YOWAQzpxNIMQ8q04QKsRcTkh9TXwIGBwMiE8/D7xP3e8CNkQOZVEa6RuNdm1lQQFPPdEuivuKurnhbbYasCjIZhIhIKjZBXlMYGvCOOf0qKeqDZbTJchhGg4//PNfVgTxMsz12mAl9QTuj1WL4nAwoc9AunS20SdavFA62Ih0+M4u6A01W51eZHix4fIs9+UvWnqfeznJNQ6n5BAKK5HOSul7Wem/r4MSxQFdB9TcuigMW01dt9fuHEE8WyixC/KbxILo8FdOzzLp349Nm86GdB4i5BmTQxysRDq/Kn2vcqj+2IIo7ppCYe6AHbgdrDpBPEfNLshzYREijj7aeOBspk35d/aHsA6s1B4mh6o5HKyo64uhp57sPD4+/vXLzo7KljckPbad/JvOep+Ls2za/1/34+rc7NvfgetUE9gO+3d4grjh/aMRnv3Edm5AHMyaz11Oh+gGyuGNlsVMqJzwjfNI5/67cPquAn8J85B69IR1LdsH74z4Bx/1HLf4+9ZziZ/jpqWRMkpMvLpgcnZK7WiDGeEWRGYVrmo9Cf5zT5ENep82Y8lIciiA0gjFWv3JIC/tsCaKP7cQxUuDl3VssxJvI4qZT0xQFAvoFIPCanW98LQRV96HHiYSV4sgAu6Gmh5BDinqXuhPjSiH3H+WIsW3W/7dXHKJ151i3ThDL4wn24ge45POAadBUVti/w6X+3nwpdMQfRwHAVEKCKxF+PhoTsVKOCIcloE7cvgrfFDIQo1+rf15ZGQsVBLPNZFT/LT0++HEtxn0ixy35Jr2+7ZvUyZlyUgMQRAd/cvKz/7m/r6jsPK/yxfE05/h55L5weY5rDmHENaAyineQT2IIAiCIAiCIKxil11AEARBEARBUBQTBEEQBEEQBEUxQRAEQRAEQVAUEwRBEARBEARFMUEQBEEQBEEMGf8vwABaKb4tsBFP0wAAAABJRU5ErkJggg==");background-size:contain;background-repeat:no-repeat;height:16px;width:95px;overflow:hidden;transition:all .3s ease}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-logo a:hover,.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-logo a:active{opacity:.5}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links{display:flex;padding:0;margin:0}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links li{padding:0;margin:0 30px 0 0}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links li:last-child{margin-right:0}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links li a{text-decoration:none;color:#000;transition:all .3s ease}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links li a:hover,.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links li a:active{color:#3496ff}.wpz-insta-admin #wpz-insta_modal-dialog{display:flex;align-items:center;justify-content:center;position:fixed;top:0;left:0;right:0;bottom:0;z-index:999999999999;background:rgba(0,0,0,.4);-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px);transition:all .3s ease}.wpz-insta-admin #wpz-insta_modal-dialog:not(.open){pointer-events:none;opacity:0}.wpz-insta-admin #wpz-insta_modal-dialog.success .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-title::before{background-color:#2b6;background-image:url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.75204 15.8749L4.60249 11.7049L3.18945 13.1149L8.75204 18.7049L20.6932 6.70492L19.2901 5.29492L8.75204 15.8749Z' fill='white'/%3E%3C/svg%3E")}.wpz-insta-admin #wpz-insta_modal-dialog.fail .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-title::before{background-color:#ec2439;background-image:url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.9069 6.41L17.5038 5L11.9412 10.59L6.37867 5L4.97559 6.41L10.5381 12L4.97559 17.59L6.37867 19L11.9412 13.41L17.5038 19L18.9069 17.59L13.3443 12L18.9069 6.41Z' fill='white'/%3E%3C/svg%3E")}.wpz-insta-admin #wpz-insta_modal-dialog.confirm .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-title::before{content:"?";display:flex;align-items:center;justify-content:center;font-size:24px;font-weight:700;color:#fff;background-color:#242628;background-image:none}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;line-height:20px;color:#242628;background:#fff;min-width:850px;padding:30px;border-radius:3px;box-shadow:0 5px 10px rgba(0,0,0,.3)}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header{display:flex;align-items:center;justify-content:space-between;padding:0 0 20px;border-bottom:1px solid #ddd;margin:0 0 30px}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-title{display:flex;align-items:center;font-size:20px;font-weight:600;padding:0;margin:0}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-title::before{content:"";display:block;background-color:#81909c;background-repeat:no-repeat;background-position:center;height:28px;width:28px;border-radius:50%;margin:0 15px 0 0}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-button{cursor:pointer;text-indent:-999em;background-color:#9ca2a7;-webkit-mask:url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.9069 6.41L17.5038 5L11.9412 10.59L6.37867 5L4.97559 6.41L10.5381 12L4.97559 17.59L6.37867 19L11.9412 13.41L17.5038 19L18.9069 17.59L13.3443 12L18.9069 6.41Z'/%3E%3C/svg%3E") center no-repeat;mask:url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.9069 6.41L17.5038 5L11.9412 10.59L6.37867 5L4.97559 6.41L10.5381 12L4.97559 17.59L6.37867 19L11.9412 13.41L17.5038 19L18.9069 17.59L13.3443 12L18.9069 6.41Z'/%3E%3C/svg%3E") center no-repeat;height:24px;width:24px;padding:0;margin:0;overflow:hidden;transition:all .3s ease}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-button:hover{background-color:#3496ff}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_content{overflow:auto}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_content .severe{color:#ec2439}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer{display:flex;align-items:center;justify-content:end;gap:10px;padding:20px 0 0;border-top:1px solid #ddd;margin:30px 0 0}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button{color:#fff;background:#3496ff;padding-left:30px;padding-right:30px;transition:all .3s ease}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button:hover,.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button:active{color:#fff;background:#70b5fe}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button.button-secondary{color:#3496ff;background:transparent;border-color:#3496ff}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button.button-secondary:hover,.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button.button-secondary:active{color:#fff;background-color:#70b5fe}@-webkit-keyframes slidedown{from{max-height:0}to{max-height:100em}}@keyframes slidedown{from{max-height:0}to{max-height:100em}}@-webkit-keyframes highlighting{0%{transform:scale(1)}50%{transform:scale(1.03, 1.2)}100%{transform:scale(1)}}@keyframes highlighting{0%{transform:scale(1)}50%{transform:scale(1.03, 1.2)}100%{transform:scale(1)}}@-webkit-keyframes bounceFade{0%{opacity:0}0%,20%,50%,80%,100%{transform:translateX(-50%) translateY(0)}20%{opacity:0}40%{transform:translateX(-50%) translateY(-30px)}60%{transform:translateX(-50%) translateY(-15px)}100%{opacity:1}}@keyframes bounceFade{0%{opacity:0}0%,20%,50%,80%,100%{transform:translateX(-50%) translateY(0)}20%{opacity:0}40%{transform:translateX(-50%) translateY(-30px)}60%{transform:translateX(-50%) translateY(-15px)}100%{opacity:1}}[data-tooltip]{position:relative;z-index:2;cursor:pointer}[data-tooltip]:before,[data-tooltip]:after{visibility:hidden;opacity:0;pointer-events:none}[data-tooltip]:before{position:absolute;bottom:150%;left:50%;margin-bottom:5px;margin-left:-100px;padding:7px;width:200px;border-radius:3px;background-color:#000;background-color:rgba(51,51,51,.9);color:#fff;content:attr(data-tooltip);text-align:center;font-size:14px;line-height:1.2}[data-tooltip]:after{position:absolute;bottom:150%;left:50%;margin-left:-5px;width:0;border-top:5px solid #000;border-top:5px solid rgba(51,51,51,.9);border-right:5px solid transparent;border-left:5px solid transparent;content:" ";font-size:0;line-height:0}[data-tooltip]:hover:before,[data-tooltip]:hover:after{visibility:visible;opacity:1}
|
1 |
+
.zoom-instagram-widget .button-connect{color:#fff;border:1px solid #1c5380;border-radius:3px;background-color:#6f97b6;background-image:linear-gradient(to bottom, #6f97b6, #3f729b);background-position:50% 50%;box-shadow:0 1px 1px rgba(0,0,0,.1),inset 1px 0 0 rgba(255,255,255,.05),inset -1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);text-shadow:0 1px 1px #1c5380}.zoom-instagram-widget .button-connect:focus,.zoom-instagram-widget .button-connect:hover{border-color:#1c5380;color:#fff;background-image:linear-gradient(to bottom, #5D87A8, #3f729b)}.zoom-instagram-widget{background:#fff;padding:30px;border:1px solid #ddd;border-radius:3px;margin:30px 10px 30px 0 !important;box-shadow:1px 1px 2px rgba(0,0,0,.1);max-width:700px}.zoom-themes-link{border:1px solid #e2e9ec;padding:30px 30px 260px 30px;border-radius:3px;margin:30px 0 30px 0 !important;box-shadow:1px 1px 2px rgba(0,0,0,.1);max-width:700px;text-align:center}.zoom-themes-link p{font-size:15px;line-height:1.6}.cta-button{text-align:center;text-decoration:none;color:#fff;background:#3ebd3e;padding:10px 15px;display:inline-block;border-radius:3px;box-shadow:0 -1px 1px rgba(0,0,0,.2) inset;border:1px solid #259425;font-size:16px;text-shadow:1px 1px rgba(0,0,0,.3)}.cta-button:hover{background:#2a9b2a;color:#fff}#wpzoom-instagram-widget-settings_transient-lifetime-value{max-width:150px;float:left}#wpzoom-instagram-widget-settings_transient-lifetime-type{float:left;max-width:100px}.zoom-instagram-widget .wpzoom-instagram-widget-with-access-token-group{background-color:#fff6f6}.zoom-instagram-widget .wpzoom-instagram-widget-with-basic-access-token-group,.zoom-instagram-widget .wpzoom-instagram-widget-without-access-token-group{background-color:#e0f0e3}.zoom-instagram-widget .wpzoom-instagram-widget-with-basic-access-token-group th,.zoom-instagram-widget .wpzoom-instagram-widget-without-access-token-group th{padding-left:10px}.zoom-instagram-widget .label-wrap input[type=radio]:checked+label[for=wpzoom-instagram-widget-settings_with-basic-access-token],.zoom-instagram-widget .label-wrap input[type=radio]:checked+label[for=wpzoom-instagram-widget-settings_without-access-token]{background-color:#e0f0e3}.zoom-instagram-widget .label-wrap input[type=radio]:checked+label[for=wpzoom-instagram-widget-settings_with-access-token]{background-color:#fff6f6}.zoom-instagram-widget .wpzoom-instagram-widget-settings-request-type-wrapper{display:flex;flex-direction:column}.zoom-instagram-widget .wpzoom-instagram-widget-settings-request-type-wrapper .label-wrap{display:flex;align-items:center}.zoom-instagram-widget .wpzoom-instagram-widget-settings-request-type-wrapper .label-wrap input[type=radio]{z-index:2}.zoom-instagram-widget .wpzoom-instagram-widget-settings-request-type-wrapper .label-wrap label{padding:10px;width:100%;margin-left:-30px;padding-left:40px;z-index:1}.zoom-instagram-widget form h2{border-top:2px solid #eee;padding-top:40px}.zoom-instagram-widget .wpzoom-instagram-widget-with-token-group>td{padding-right:0px}.zoom-instagram-user-avatar-media-uploader .remove-avatar{margin:6px 20px;color:#a00}.zoom-instagram-user-avatar-media-uploader .file-wrapper{margin-top:10px}#wpzoom-instagram-widget-settings-user-info-biography{width:100%;min-height:100px}.wpz-insta-admin.post-php #wpbody-content{padding-bottom:0}.wpz-insta-admin.post-php #wpbody-content>.wrap #poststuff #post-body #post-body-content .wpz-insta_tabs-content .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section,.wpz-insta-admin.post-php #wpbody-content>.wrap #poststuff #post-body #post-body-content .wpz-insta_tabs-content .wpz-insta_sidebar .wpz-insta_widget-preview .wpz-insta_widget-preview-view{max-height:60vh;min-height:200px}.wpz-insta-admin #wpfooter{position:relative}.wpz-insta-admin #wpbody-content{padding-bottom:165px}.wpz-insta-admin #wpbody-content .urgent{color:#ec2439}.wpz-insta-admin #wpbody-content .featured-off{display:none !important}.wpz-insta-admin #wpbody-content .pro-only{position:absolute;top:0;right:0;line-height:1.5;color:#fff;background:#f57c00;padding:0 4px;border-radius:2px;transform:translate(50%, -50%)}.wpz-insta-admin #wpbody-content .notice-warning{display:block;padding:11px 15px;margin:10px 0 0}.wpz-insta-admin #wpbody-content>.wrap>h1.wp-heading-inline,.wpz-insta-admin #wpbody-content>.wrap>.page-title-action,.wpz-insta-admin #wpbody-content>.wrap>.wp-header-end,.wpz-insta-admin #wpbody-content>.wrap>.wpz-insta-wrap~#posts-filter>.search-box,.wpz-insta-admin #wpbody-content>.wrap>.wpz-insta-wrap~#posts-filter>.tablenav,.wpz-insta-admin #wpbody-content>.wrap>.wpz-insta-wrap~#posts-filter>.wp-list-table>tfoot,.wpz-insta-admin #wpbody-content>.wrap #titlediv{display:none !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-notices .notice{display:block !important}.wpz-insta-admin #wpbody-content>.wrap input,.wpz-insta-admin #wpbody-content>.wrap textarea,.wpz-insta-admin #wpbody-content>.wrap select{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-weight:normal;color:#242628;border:1px solid #9ca2a7;border-radius:2px;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap input:hover,.wpz-insta-admin #wpbody-content>.wrap input:focus,.wpz-insta-admin #wpbody-content>.wrap textarea:hover,.wpz-insta-admin #wpbody-content>.wrap textarea:focus,.wpz-insta-admin #wpbody-content>.wrap select:hover,.wpz-insta-admin #wpbody-content>.wrap select:focus{color:#242628;border-color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap input{color:#242628}.wpz-insta-admin #wpbody-content>.wrap input.wpz-insta_input{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.wpz-insta-admin #wpbody-content>.wrap input.wpz-insta_input-nobg{background:transparent}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]{display:inline-flex;align-items:center;justify-content:center;color:#fff;background-color:#fff;height:1.25rem;width:1.25rem;border:none;border-radius:2px;box-shadow:inset 0 0 0 1px #81909c;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:hover{background-color:#ddd !important;box-shadow:inset 0 0 0 1px #81909c !important}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:hover:checked{background-color:#70b5fe !important;box-shadow:inset 0 0 0 1px transparent !important}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:focus{outline:none;box-shadow:inset 0 0 0 1px #81909c}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:focus:checked{box-shadow:inset 0 0 0 1px transparent}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]::before{transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:checked{background-color:#3496ff;box-shadow:inset 0 0 0 1px transparent}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:checked::before{content:url("data:image/svg+xml;utf8,%3Csvg%20width%3D%2214%22%20height%3D%2212%22%20viewBox%3D%220%200%2014%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12.779%201.00004L5.3618%2010.9753L1.06089%207.77735%22%20stroke%3D%22white%22%20stroke-width%3D%221.2%22%2F%3E%3C%2Fsvg%3E%0A");display:block;float:none;height:auto;width:auto;margin:0}.wpz-insta-admin #wpbody-content>.wrap .disabled,.wpz-insta-admin #wpbody-content>.wrap .disable{pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .disable{opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .help{display:inline-block;cursor:help;font-size:20px;vertical-align:text-bottom;height:16px;width:16px;transition:all .2s ease;position:relative}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field{padding:0;margin:0 0 2em}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field label>strong{font-size:15px !important}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field label>em{color:rgba(36,38,40,.8)}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field input[type=text]{display:block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:15px;font-weight:normal;line-height:40px;color:#242628;width:100%;min-height:40px;padding:0 10px;box-sizing:border-box;margin:.7em 0}.wpz-insta-admin #wpbody-content>.wrap .submit-button{padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .button.disabled{pointer-events:none !important}.wpz-insta-admin #wpbody-content>.wrap .button:not(.wp-color-result),.wpz-insta-admin #wpbody-content>.wrap .button-primary,.wpz-insta-admin #wpbody-content>.wrap .button-secondary{display:inline-flex;align-items:center;justify-content:center;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:13px;font-weight:600;line-height:35px;min-height:35px;padding:0 12px;border:0;border-radius:2px;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .button:not(.wp-color-result).button-large,.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-large,.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-large{min-height:48px;padding:0 40px;margin:0}.wpz-insta-admin #wpbody-content>.wrap .button.wp-color-result{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:13px}.wpz-insta-admin #wpbody-content>.wrap .button-primary{color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .button-primary:hover,.wpz-insta-admin #wpbody-content>.wrap .button-primary:active{color:#fff;background:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-positive{color:#fff;background:#2b6}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-positive:hover,.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-positive:active{background:#3bdb82}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-negative{color:#fff;background:#ec2439}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-negative:hover,.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-negative:active{background:#f05161}.wpz-insta-admin #wpbody-content>.wrap .button-secondary{color:#81909c;background:#fff;box-shadow:inset 0 0 0 1px #ddd}.wpz-insta-admin #wpbody-content>.wrap .button-secondary:hover,.wpz-insta-admin #wpbody-content>.wrap .button-secondary:active{background:#ddd}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-positive{color:#2b6;background:#fff;box-shadow:inset 0 0 0 1px #2b6}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-positive:hover,.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-positive:active{color:#242628;background:#fff;box-shadow:inset 0 0 0 1px #242628}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-negative{color:#ec2439;background:#fff;box-shadow:inset 0 0 0 1px #ec2439}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-negative:hover,.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-negative:active{color:#242628;background:#fff;box-shadow:inset 0 0 0 1px #242628}.wpz-insta-admin #wpbody-content>.wrap .button-link{color:#3496ff;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link{font-weight:normal;line-height:1;min-height:0;padding:0;margin:1.5em 0 0}.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link:hover,.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link:active,.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link:focus{color:#70b5fe;background:transparent}.wpz-insta-admin #wpbody-content>.wrap .button-link:hover,.wpz-insta-admin #wpbody-content>.wrap .button-link:active,.wpz-insta-admin #wpbody-content>.wrap .button-link:focus{color:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_suffixed-number-input{display:flex;gap:12px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_suffixed-number-input>*{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_suffixed-number-input>*:first-child{flex-grow:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_profile-photo{display:block;height:100px;width:100px;border-radius:50%}.wpz-insta-admin #wpbody-content>.wrap a{text-decoration:none;color:#3496ff;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap a:hover,.wpz-insta-admin #wpbody-content>.wrap a:active,.wpz-insta-admin #wpbody-content>.wrap a:focus{text-decoration:none;color:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap a.linked{border-bottom:1px solid rgba(52,150,255,.3)}.wpz-insta-admin #wpbody-content>.wrap a.linked:hover,.wpz-insta-admin #wpbody-content>.wrap a.linked:active,.wpz-insta-admin #wpbody-content>.wrap a.linked:focus{border-bottom-color:rgba(112,181,254,.3)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button{display:inline-flex;align-items:center;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;font-weight:600;text-decoration:none;color:#242628;margin:10px 0 0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:hover svg,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:active svg{color:#3496ff;fill:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button svg{color:#242628;fill:#242628;margin:0 6px 0 0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpzinsta-pointer{position:absolute;top:calc(100% + 3px);left:50%;z-index:1000;cursor:default;font-size:14px;color:#fff;background:#3496ff;width:-webkit-max-content;width:-moz-max-content;width:max-content;padding:4px 10px;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.3);transform:translateX(-50%);-webkit-animation-name:bounceFade;animation-name:bounceFade;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.wpz-insta-admin #wpbody-content>.wrap .wpzinsta-pointer>i{position:absolute;top:-10px;left:50%;pointer-events:none;height:10px;width:20px;transform:translateX(-50%);overflow:hidden}.wpz-insta-admin #wpbody-content>.wrap .wpzinsta-pointer>i::before{content:"";position:absolute;left:50%;bottom:-4px;pointer-events:initial;background:#3496ff;height:8px;width:8px;box-shadow:0 0 2px rgba(0,0,0,.3);transform:translateX(-50%) rotateZ(45deg)}.wpz-insta-admin #wpbody-content>.wrap .fit-max-content{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-add-new a,.wpz-insta-admin #wpbody-content>.wrap #wpz-insta_tabs-config-cnnct .wpz-insta_tabs-config-connect-add{position:relative}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container{display:inline-flex;position:relative}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container:not(:focus-within) .wp-picker-holder{pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-color-result{position:absolute;top:50%;left:5px;pointer-events:none;height:20px;min-height:0;width:20px;padding:0;border-radius:4px;margin:0;transform:translateY(-50%)}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-color-result:active{transform:translateY(-50%) !important}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-color-result .wp-color-result-text{display:none}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-input-wrap{display:block}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-input-wrap input{line-height:2;width:auto;padding-left:30px}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-input-wrap .wp-picker-clear{display:none}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-holder{display:block;position:fixed;top:100%;left:0;z-index:999;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-holder .iris-picker{display:block !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns{display:flex;align-items:center;list-style:none;padding:0;margin:1.5em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns.wpz-insta_two-columns-left-small{align-items:flex-start;gap:30px;margin-top:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns.wpz-insta_two-columns-left-small>*{text-align:left !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns.wpz-insta_two-columns-left-small>*:first-child{flex-grow:0;width:auto}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns>*{flex-grow:1;list-style:none;width:100%;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns>*:first-child{text-align:left}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns>*:last-child{text-align:right}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_image-select{display:flex;flex-wrap:wrap;gap:10px;margin:5px 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_image-select.hidden{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_image-select label{text-align:center;color:#81909c;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_image-select label:hover{color:#9ca2a7}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_image-select label:hover svg{color:#9ca2a7;fill:#9ca2a7}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_image-select label input{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_image-select label input:checked+span{color:#3496ff;fill:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_image-select label input:checked+span svg{color:#3496ff;fill:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_image-select label span{display:block}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_image-select label svg{display:block;color:#81909c;fill:#81909c;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_notice{display:flex;align-items:center;font-size:12px;padding:0;margin:1.5em 0 0 !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_notice::before{content:"";display:block;background-image:url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.3 3.5H7.7V4.9H6.3V3.5ZM6.3 6.3H7.7V10.5H6.3V6.3ZM7 0C3.136 0 0 3.136 0 7C0 10.864 3.136 14 7 14C10.864 14 14 10.864 14 7C14 3.136 10.864 0 7 0ZM7 12.6C3.913 12.6 1.4 10.087 1.4 7C1.4 3.913 3.913 1.4 7 1.4C10.087 1.4 12.6 3.913 12.6 7C12.6 10.087 10.087 12.6 7 12.6Z'/%3E%3C/svg%3E");height:14px;width:14px;margin:0 .8em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_notice p{padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:15px 30px 0;border:1px solid #ddd;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.1);margin:3em 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header #major-publishing-actions{background:transparent;padding:0 0 1em;border:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header #major-publishing-actions #publishing-action{display:flex;align-items:center;gap:20px;float:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header #major-publishing-actions #publishing-action .spinner{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header.wpz-insta-wrap-sides{display:flex;align-items:center;margin-top:1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header.wpz-insta-wrap-sides .wpz-insta-wrap-left{flex-grow:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title{font-size:24px;font-weight:600;line-height:29px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small{font-size:14px;font-weight:normal;line-height:17px;color:#81909c}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small a{text-decoration:none;color:#81909c;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small a:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title .pro{color:#f57c00}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title #title{position:relative;font-size:24px;font-weight:600;text-overflow:ellipsis;line-height:29px;background:transparent url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 17.2505V21.0005H6.75L17.81 9.94055L14.06 6.19055L3 17.2505ZM20.71 7.04055C21.1 6.65055 21.1 6.02055 20.71 5.63055L18.37 3.29055C17.98 2.90055 17.35 2.90055 16.96 3.29055L15.13 5.12055L18.88 8.87055L20.71 7.04055Z' fill='%2381909C'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:center right;min-width:100px;max-width:82%;padding:0 24px 0 0;border:0;outline:none;margin:0;overflow:hidden;box-shadow:0 0 0 1px transparent;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title #title:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title #title:focus{box-shadow:0 0 0 1px #3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-sub-title{font-size:18px;font-weight:normal;line-height:22px;color:#242628;margin:16px 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav{font-size:18px;font-weight:normal;line-height:22px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul{display:flex;list-style:none;gap:40px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li{position:relative;list-style:none;padding:0;margin:0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li.active a{cursor:default;pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li.active a::after{transform:translateY(0)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a{display:block;position:relative;text-decoration:none;color:#242628;outline:none;padding:16px 0;box-shadow:none;overflow:hidden;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a:active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a:focus{outline:none;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a:hover{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a::after{content:"";position:absolute;left:0;right:0;bottom:0;background:#3496ff;height:6px;border-radius:2px 2px 0 0;transform:translateY(100%);transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap.with-bg{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;color:#242628;background:#fff;padding:25px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap.with-bg *:not(h2):not(small){font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter{margin:2em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:15px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td{border-bottom:1px solid #000}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_account-token,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td.column-wpz-insta_account-token{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th{font-weight:600;padding-left:0;padding-right:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_actions{text-align:right}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th a{color:#000;padding:14px 0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th a:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr{display:table-row !important;position:relative;background:transparent}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr:first-child th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr:first-child td,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr.inline-edit-row th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr.inline-edit-row td{border-top:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr.inline-edit-row td{padding-top:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td{vertical-align:middle;padding:20px 0;border-top:1px solid #ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.column-wpz-insta_account-token,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td.column-wpz-insta_account-token{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.check-column{padding:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td>*{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td a:not(.button){color:#3496ff;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td a:not(.button):hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td a:not(.button):active{color:#000}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .row-actions{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit{overflow:hidden;-webkit-animation-name:slidedown;animation-name:slidedown;-webkit-animation-duration:1s;animation-duration:1s}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns{display:flex;list-style:none;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li{flex-grow:1;list-style:none;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li div{display:block;margin:0 0 10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li div:last-child{margin-bottom:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li strong:first-child,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li label>strong:first-child{display:inline-block;margin:0 0 5px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li input:not(.widefat),.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li textarea{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;width:60%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save{position:absolute;top:-10px;right:0;padding:0;transform:translateY(-100%)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button{float:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel{color:#3496ff;background:transparent;box-shadow:inset 0 0 0 1px #3496ff;margin:0 1em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel:active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel:focus{color:#000;box-shadow:inset 0 0 0 1px #000}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .spinner{float:left}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-title,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account{width:50%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account a{color:#242628}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account a:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions{text-align:right;width:5%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions strong{position:relative;cursor:pointer;font-size:20px;font-weight:600;text-align:right;white-space:nowrap;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions strong:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions strong:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu{display:inline-block;position:relative;text-align:right}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu:hover .wpz-insta_hidden{pointer-events:auto;opacity:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu:hover strong{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu:hover strong::after{content:"";position:absolute;left:-50px;right:0;bottom:-15px;height:25px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden{position:absolute;right:0;bottom:-10px;z-index:999;pointer-events:none;text-align:left;background:#fff;min-width:200px;opacity:0;padding:0;border-radius:3px;margin:0;box-shadow:1px 4px 8px rgba(0,0,0,.1);transform:translate(0%, 100%);transition:opacity .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li{white-space:nowrap;margin:0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:first-child a,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:first-child button{padding-top:10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:last-child a,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:last-child button{padding-bottom:10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li.wpz-insta_actions-menu_divider{pointer-events:none;background:#ddd;height:1px;padding:0;margin:5px 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li.wpz-insta_actions-menu_delete a:hover{color:#ec2439}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li a,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li button{display:block;white-space:nowrap;color:#242628;width:100%;padding:7px 20px;margin:0;box-sizing:border-box;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li button:hover{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .inline-edit-col-left,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .inline-edit-col-right{display:none}.wpz-insta-admin #wpbody-content>.wrap #poststuff{padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap #poststuff #post-body{margin:0}.wpz-insta-admin #wpbody-content>.wrap #poststuff #post-body #post-body-content{float:none;margin:0}.wpz-insta-admin #wpbody-content>.wrap #poststuff #post-body .postbox-container{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content{display:grid}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content *{pointer-events:inherit}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content>*{grid-column:1;grid-row:1;align-self:start}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content>*:not(.active){pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content>*:not(.active) *{pointer-events:none !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar{display:flex;gap:20px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar.hide{pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar:not(.show-pro) .wpz-insta_pro-only:not(.wpz-insta_feed-layout),.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar:not(.show-pro) .wpz-insta_pro-only>.wpz-insta_feed-layout-pro{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar input,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar textarea,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar select{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right{background:#fff;border:1px solid #ddd;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left{display:grid;grid-template-rows:auto 1fr;flex-basis:28%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left.is-pro .wpz-insta_sidebar-left-section{max-height:70vh !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section-head{display:flex;align-items:center;grid-column:1;grid-row:1;background:#fafafa;min-height:30px;padding:20px;border-bottom:1px solid #ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section{grid-column:1;grid-row:2;align-self:start;transition:all .3s ease;overflow-x:hidden;overflow-y:auto}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section:not(.active){pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right{flex-grow:1;position:relative}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right.is-loading{transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right.is-loading.hide-loading::before{opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right.is-loading::before{content:"";position:absolute;top:300px;left:50%;z-index:1;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 50 50' xml:space='preserve'%3E%3Cpath fill='%233496ff' d='M43.935,25.145c0-10.318-8.364-18.683-18.683-18.683c-10.318,0-18.683,8.365-18.683,18.683h4.068c0-8.071,6.543-14.615,14.615-14.615c8.072,0,14.615,6.543,14.615,14.615H43.935z'%3E%3CanimateTransform attributeType='xml' attributeName='transform' type='rotate' from='0 25 25' to='360 25 25' dur='0.6s' repeatCount='indefinite'/%3E%3C/path%3E%3C/svg%3E");background-size:contain;height:64px;width:64px;opacity:1;transform:translateX(-50%);transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section-big-title{font-size:18px;font-weight:600;margin:30px 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section{padding:30px 0 0;border-top:1px solid #ddd;margin:30px 20px 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section:first-child,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.no-top-border{padding-top:0;border-top:0;margin-top:20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-title{font-size:18px;font-weight:600;margin:0 0 15px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-title.smaller-title{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-description{font-size:14px;font-weight:normal;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-description:last-child{margin-bottom:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section p{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section ul li,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section ol li{margin-bottom:1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_text-btn-aligned{display:flex;align-items:stretch;gap:15px;width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_text-btn-aligned>input{flex-grow:1;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn{display:flex;align-items:center;font-size:14px;line-height:2}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode{background:transparent;border:1px solid #ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn{display:grid;text-align:center;color:#3496ff;background:transparent;border:1px solid #3496ff;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn:hover{color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn.success{color:#fff;background:#2b6;border-color:#2b6}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn.success .wpz-insta_shortcode-copy-btn-text-normal{opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn.success .wpz-insta_shortcode-copy-btn-text-success{opacity:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-normal,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-success{grid-column:1;grid-row:1;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-normal{opacity:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-success{opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select.is-set .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button-highlight{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select.is-set .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button{pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select.is-set .wpz-insta_feed-user-select-edit-link{display:inline-block}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select:not(.is-set) .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info{pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input{display:grid;background:#eee;border:1px solid #9ca2a7;border-radius:4px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info{display:flex;align-items:center;justify-content:space-between;grid-column:1;grid-row:1;margin:15px;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-select-info-left .wpz-insta_feed-user-select-info-name{font-size:14px;font-weight:600;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-select-info-left .wpz-insta_feed-user-select-info-type{font-size:12px;color:#81909c;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-remove-button{font-size:13px;font-weight:600;color:#3496ff;background:transparent;border:1px solid #3496ff;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-remove-button:hover{color:#ec2439;border-color:#ec2439}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap{position:relative;display:flex;align-items:stretch;justify-content:stretch;grid-column:1;grid-row:1;pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button-highlight{display:block;position:absolute;top:-2px;left:-2px;right:-2px;bottom:-2px;z-index:1;pointer-events:none;border:0;border-radius:6px;box-shadow:inset 0 0 1px 1px #3496ff,0 0 1px 1px #3496ff;transition:all .3s ease;-webkit-animation:highlighting .8s infinite;animation:highlighting .8s infinite}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button{display:flex;flex-grow:1;position:relative;z-index:2;pointer-events:all;font-size:14px;font-weight:600;color:#242628;background:#eee;opacity:1;border:0;border-radius:4px;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button:hover{color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-edit-link{display:none;margin:20px 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout{display:flex;align-items:end;gap:10px;max-height:999em;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-pro{display:flex;gap:15px;padding:10px;border-radius:4px;box-shadow:0 0 0 2px #f57c00;max-width:76%;box-sizing:border-box}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-pro legend{font-size:13px;font-weight:600;color:#fff;background:#f57c00;padding:0 5px;margin:0 auto;border-radius:2px;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-pro .wpz-insta_feed-layout-option{pointer-events:none;opacity:.75}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout>.wpz-insta_feed-layout-option{margin-bottom:10px !important;max-width:21%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option{display:block;background:transparent;padding:0;border:0;box-shadow:none;outline:none;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option.disabled{pointer-events:none;opacity:.4}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option:hover svg{color:#9ca2a7;fill:#9ca2a7}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option input{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option svg{display:block;color:#81909c;fill:#81909c;max-width:100%;height:auto;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option input:checked~svg{color:#3496ff;fill:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout-etc,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-general,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-profile-general,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-load-more-general{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table{display:flex;flex-direction:column;gap:20px;width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row{display:flex;align-items:center;width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_table-row-full{flex-direction:column;align-items:stretch}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_table-row-full .wpz-insta_table-cell{width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.hidden{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row .wpz-insta_table-cell{display:block;white-space:nowrap;line-height:30px;width:50%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row .wpz-insta_table-cell.table-cell-special{display:flex;align-items:center}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row .wpz-insta_table-cell.table-cell-special label{width:50%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row .wpz-insta_table-cell input{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row>input[type=checkbox]{margin:0 1em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_sub-wrapper{display:flex;flex-direction:column;gap:10px;position:relative;border-left:1px solid #242628;padding:10px 0 0 15px;margin:-20px 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_sub-wrapper input{margin-left:.5em;margin-right:.5em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_sub-wrapper .wpz-insta_table-cell:first-child{width:calc(50% - 9px)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_sub-wrapper .wpz-insta_table-cell:last-child{width:calc(50% + 9px)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_show-on-hover{display:table-row}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_show-on-hover>strong{display:block;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro{display:flex;flex-direction:column;gap:20px;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro.wpz-insta_pro-only-with-bottom{padding-bottom:10px;border-bottom:2px solid #f57c00}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro.hidden{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro legend{display:flex;width:100%;padding:0;border-bottom:2px solid #f57c00;margin:0 0 10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro legend>strong{font-size:13px;color:#fff;background:#f57c00;padding:0 5px;border-top-left-radius:2px;border-top-right-radius:2px;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro>label{opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .pro-only-wrapper{opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-token,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-check-new,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-request-timeout{max-height:0;opacity:0;overflow:hidden;padding-top:0;margin-top:0;margin-bottom:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-token.active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-check-new.active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-request-timeout.active{max-height:999em;opacity:1;padding-top:30px;margin-top:30px;margin-bottom:20px;overflow:visible}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-token #wpz-insta_user-token{display:block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;font-weight:normal;text-overflow:ellipsis;color:#242628;background:#fff;width:100%;padding:4px 8px;border:1px solid #ddd;border-radius:2px;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-request-timeout>label>strong{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-load-more.wpz-insta_pro-only{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding-top:0;padding-bottom:20px;border-top:none;border-bottom:2px solid #f57c00;margin-top:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-load-more.wpz-insta_pro-only .wpz-insta_sidebar-section-title,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-load-more.wpz-insta_pro-only .wpz-insta_table>label{opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview{position:relative;z-index:2;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header{display:flex;align-items:center;padding:0;border-bottom:1px solid #ddd;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-title{flex-grow:1;font-size:14px;font-weight:600;text-align:center;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links{display:flex;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links.disabled{pointer-events:none;opacity:.3}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links.disabled .wpz-insta_widget-preview-header-link.active{background:#ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links.disabled .wpz-insta_widget-preview-header-link.active svg{fill:#81909c}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link{display:flex;align-items:center;justify-content:center;cursor:pointer;background:#ddd;min-width:70px;min-height:70px;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link:hover{background:#eee}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link.active{cursor:default;color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link.active svg{fill:#fff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link svg{fill:#81909c;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view{display:flex;align-items:start;justify-content:center;padding:0;margin:0;overflow-x:hidden;overflow-y:auto;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.wpz-insta_widget-preview-size-tablet .wpz-insta_widget-preview-view-inner{max-width:768px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.wpz-insta_widget-preview-size-mobile .wpz-insta_widget-preview-view-inner{max-width:380px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.layout-fullwidth.wpz-insta_widget-preview-size-desktop .wpz-insta_widget-preview-view-inner{max-width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view .wpz-insta_widget-preview-view-inner{flex-grow:1;padding:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view .wpz-insta_widget-preview-view-inner iframe{display:block;height:400px;width:100%;visibility:visible;opacity:1;overflow:hidden;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view .wpz-insta_widget-preview-view-inner iframe.wpz-insta_preview-hidden{pointer-events:none;visibility:hidden;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:25px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-title{font-size:24px;font-weight:600;padding:0;margin:0 0 10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-description{padding:0;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts{display:grid;grid-template-columns:repeat(auto-fill, minmax(300px, 1fr));gap:30px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li{cursor:pointer;background:#eee;padding:15px;border:1px solid #9ca2a7;border-radius:4px;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li:hover{color:#fff;background:#3496ff;border-color:#0063cd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li:hover h3{color:#fff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li:hover p{color:rgba(255,255,255,.6)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li h3{font-size:14px;font-weight:600;padding:0;margin:0 0 5px;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li p{font-size:12px;color:#81909c;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect hr{margin:30px 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-subtitle{font-size:14px;font-weight:normal;padding:0;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support .section-title,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license .section-title{font-size:20px;font-weight:600;line-height:24px;margin:0 0 1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support .section-title svg,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license .section-title svg{vertical-align:text-bottom;margin:0 5px 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support .section-description,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license .section-description{padding:0;margin:0 0 2em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:25px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-title{font-size:24px;font-weight:600;line-height:29px;margin:0 0 16px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-description{font-size:14px;white-space:pre-wrap;margin:0 0 30px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options{display:flex;flex-wrap:wrap;gap:30px;margin:0 0 30px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option{display:flex;flex-direction:column;min-width:350px;flex:1;padding:20px;border:1px solid #ddd;border-radius:3px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-title{font-size:16px;font-weight:600;line-height:19px;margin:0 0 16px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-checklist{font-size:14px;padding:0;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-checklist li{line-height:18px;background:url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0C4.03759 0 0 4.03759 0 9C0 13.9624 4.03759 18 9 18C13.9624 18 18 13.9624 18 9C18 4.03759 13.9624 0 9 0ZM14.0301 6.63158L8.2782 12.3383C7.93985 12.6767 7.3985 12.6992 7.03759 12.3609L3.99248 9.58647C3.63158 9.24812 3.60902 8.68421 3.92481 8.32331C4.26316 7.96241 4.82707 7.93985 5.18797 8.2782L7.6015 10.4887L12.7444 5.34586C13.1053 4.98496 13.6692 4.98496 14.0301 5.34586C14.391 5.70677 14.391 6.27068 14.0301 6.63158Z' fill='%2322BB66'/%3E%3C/svg%3E");background-position:0 5px;background-repeat:no-repeat;min-height:18px;padding:5px 0 5px 32px;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-token-input{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;line-height:17px;color:#242628;padding:10px;border:1px solid #ddd;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-token-input:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-token-input:focus{border-color:#3496ff;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button{display:flex;cursor:pointer;align-items:center;justify-content:center;font-weight:600;line-height:1;color:#fff;background:#3496ff;background-position:center left;background-repeat:no-repeat;width:100%;padding:15px 40px;border:0;border-radius:2px;margin:auto 0 0;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button:focus{opacity:.8}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button.disabled{pointer-events:none;opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button.facebook{background:#1877f2}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button svg{margin:0 16px 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-notice{display:flex;align-items:center;font-size:13px;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-notice svg{margin:0 12px 0 0}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap{display:flex;align-items:center;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:30px;border:1px solid #ddd;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.1);margin:20px 0}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-logo{padding:0;margin:0 30px 0 0}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-logo a{display:block;text-indent:-999em;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAsUAAAB1CAYAAACmnpxEAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3BpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQwIDc5LjE2MDQ1MSwgMjAxNy8wNS8wNi0wMTowODoyMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGODdGMTE3NDA3MjA2ODExODIyQUJEN0ZFNTE5QkYyRSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyMERERTJGNDlFNjgxMUU4ODM0NkExODhFNzlBMDMzQiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyMERERTJGMzlFNjgxMUU4ODM0NkExODhFNzlBMDMzQiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxNSAoTWFjaW50b3NoKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjEyMzc5NGVhLTBiZGYtNDQ3Zi05ODc1LTY1ZDk5NjhjZGVlNiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGODdGMTE3NDA3MjA2ODExODIyQUJEN0ZFNTE5QkYyRSIvPiA8L3Jk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 |