Instagram Widget by WPZOOM - Version 2.0.9

Version Description

  • Fixed a bug in the Full-width style
Download this release

Release Info

Developer WPZOOM
Plugin Icon 128x128 Instagram Widget by WPZOOM
Version 2.0.9
Comparing to
See all releases

Code changes from version 2.0.8 to 2.0.9

class-wpzoom-instagram-widget-display.php CHANGED
@@ -647,6 +647,9 @@ class Wpzoom_Instagram_Widget_Display {
647
  $raw_layout = isset( $args['layout'] ) ? intval( $args['layout'] ) : 0;
648
  $layout = $this->is_pro ? $raw_layout : ( $raw_layout > 1 ? 0 : $raw_layout );
649
  $col_num = isset( $args['col-num'] ) && intval( $args['col-num'] ) !== 3 ? intval( $args['col-num'] ) : 3;
 
 
 
650
  $spacing_between = isset( $args['spacing-between'] ) && floatval( $args['spacing-between'] ) > -1 ? floatval( $args['spacing-between'] ) : -1;
651
  $spacing_between_suffix = $this->get_suffix( isset( $args['spacing-between-suffix'] ) ? intval( $args['spacing-between-suffix'] ) : 0 );
652
  $feat_layout_enabled = isset( $args['featured-layout-enable'] ) ? boolval( $args['featured-layout-enable'] ) : false;
@@ -691,12 +694,13 @@ class Wpzoom_Instagram_Widget_Display {
691
  if ( 0 === $layout ) {
692
  $output .= ".zoom-instagram${feed_id} .zoom-instagram-widget__items{";
693
  $output .= "display:grid!important;";
694
- $output .= "grid-template-columns: repeat(${col_num}, 1fr);";
695
-
696
- if ( $spacing_between > 0 ) {
697
- $output .= "gap:${spacing_between}${spacing_between_suffix}!important;";
698
- }
699
 
 
 
 
700
  $output .= "}";
701
  }
702
 
@@ -706,7 +710,7 @@ class Wpzoom_Instagram_Widget_Display {
706
  $output .= "width:calc(1/${col_num}*100%" . ( $spacing_between > 0 ? " - (1 - 1/${col_num})*${spacing_between}${spacing_between_suffix}" : "" ) . ")!important;";
707
  $output .= "}";
708
 
709
- if ( $spacing_between > 0 ) {
710
  $output .= ".zoom-instagram${feed_id} .zoom-instagram-widget__item{";
711
  $output .= "margin:0 0 ${spacing_between}${spacing_between_suffix}!important;";
712
  $output .= "}";
@@ -738,6 +742,47 @@ class Wpzoom_Instagram_Widget_Display {
738
  $output .= "}";
739
  }
740
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
741
  return trim( $output );
742
  }
743
 
647
  $raw_layout = isset( $args['layout'] ) ? intval( $args['layout'] ) : 0;
648
  $layout = $this->is_pro ? $raw_layout : ( $raw_layout > 1 ? 0 : $raw_layout );
649
  $col_num = isset( $args['col-num'] ) && intval( $args['col-num'] ) !== 3 ? intval( $args['col-num'] ) : 3;
650
+ $col_num_tablet = isset( $args['col-num_tablet'] ) && intval( $args['col-num_tablet'] ) !== 2 ? intval( $args['col-num_tablet'] ) : 2;
651
+ $col_num_mobile = isset( $args['col-num_mobile'] ) && intval( $args['col-num_mobile'] ) !== 1 ? intval( $args['col-num_mobile'] ) : 1;
652
+ $col_num_rspnsve_enbld = $this->is_pro && isset( $args['col-num_responsive-enabled'] ) ? boolval( $args['col-num_responsive-enabled'] ) : false;
653
  $spacing_between = isset( $args['spacing-between'] ) && floatval( $args['spacing-between'] ) > -1 ? floatval( $args['spacing-between'] ) : -1;
654
  $spacing_between_suffix = $this->get_suffix( isset( $args['spacing-between-suffix'] ) ? intval( $args['spacing-between-suffix'] ) : 0 );
655
  $feat_layout_enabled = isset( $args['featured-layout-enable'] ) ? boolval( $args['featured-layout-enable'] ) : false;
694
  if ( 0 === $layout ) {
695
  $output .= ".zoom-instagram${feed_id} .zoom-instagram-widget__items{";
696
  $output .= "display:grid!important;";
697
+ $output .= "grid-template-columns:repeat(${col_num},1fr);";
698
+ $output .= "}";
699
+ }
 
 
700
 
701
+ if ( ( 0 === $layout || 1 === $layout ) && $spacing_between > -1 ) {
702
+ $output .= ".zoom-instagram${feed_id} .zoom-instagram-widget__items{";
703
+ $output .= "gap:${spacing_between}${spacing_between_suffix}!important;";
704
  $output .= "}";
705
  }
706
 
710
  $output .= "width:calc(1/${col_num}*100%" . ( $spacing_between > 0 ? " - (1 - 1/${col_num})*${spacing_between}${spacing_between_suffix}" : "" ) . ")!important;";
711
  $output .= "}";
712
 
713
+ if ( $spacing_between > -1 ) {
714
  $output .= ".zoom-instagram${feed_id} .zoom-instagram-widget__item{";
715
  $output .= "margin:0 0 ${spacing_between}${spacing_between_suffix}!important;";
716
  $output .= "}";
742
  $output .= "}";
743
  }
744
 
745
+ if ( $col_num_rspnsve_enbld ) {
746
+ $output .= "@media screen and (min-width:1200px){";
747
+ if ( 2 === $layout ) {
748
+ $output .= ".zoom-instagram${feed_id} .zoom-instagram-widget__item,.zoom-instagram${feed_id} .masonry-items-sizer{";
749
+ $output .= "width:calc(1/${col_num}*100%" . ( $spacing_between > 0 ? " - (1 - 1/${col_num})*${spacing_between}${spacing_between_suffix}" : "" ) . ")!important;";
750
+ $output .= "}";
751
+ } else {
752
+ $output .= ".zoom-instagram${feed_id} .zoom-instagram-widget__items{";
753
+ $output .= "grid-template-columns:repeat(${col_num},1fr);";
754
+ $output .= "}";
755
+ }
756
+ $output .= "}";
757
+
758
+ $output .= "@media screen and (max-width:768px){";
759
+ if ( 2 === $layout ) {
760
+ $output .= ".zoom-instagram${feed_id} .zoom-instagram-widget__item,.zoom-instagram${feed_id} .masonry-items-sizer{";
761
+ $output .= "width:calc(1/${col_num_tablet}*100%" . ( $spacing_between > 0 ? " - (1 - 1/${col_num_tablet})*${spacing_between}${spacing_between_suffix}" : "" ) . ")!important;";
762
+ $output .= "}";
763
+ } else {
764
+ $output .= ".zoom-instagram${feed_id} .zoom-instagram-widget__items{";
765
+ $output .= "grid-template-columns:repeat(${col_num_tablet},1fr);";
766
+ $output .= "}";
767
+ $output .= ".zoom-instagram${feed_id} .zoom-instagram-widget__item{";
768
+ $output .= "grid-row:auto!important;grid-column:auto!important;";
769
+ $output .= "}";
770
+ }
771
+ $output .= "}";
772
+
773
+ $output .= "@media screen and (max-width:480px){";
774
+ if ( 2 === $layout ) {
775
+ $output .= ".zoom-instagram${feed_id} .zoom-instagram-widget__item,.zoom-instagram${feed_id} .masonry-items-sizer{";
776
+ $output .= "width:calc(1/${col_num_mobile}*100%" . ( $spacing_between > 0 ? " - (1 - 1/${col_num_mobile})*${spacing_between}${spacing_between_suffix}" : "" ) . ")!important;";
777
+ $output .= "}";
778
+ } else {
779
+ $output .= ".zoom-instagram${feed_id} .zoom-instagram-widget__items{";
780
+ $output .= "grid-template-columns:repeat(${col_num_mobile},1fr);";
781
+ $output .= "}";
782
+ }
783
+ $output .= "}";
784
+ }
785
+
786
  return trim( $output );
787
  }
788
 
class-wpzoom-instagram-widget-settings.php CHANGED
@@ -36,6 +36,9 @@ 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
  'perpage-num' => array( 'type' => 'integer', 'default' => 3 ),
40
  'spacing-between' => array( 'type' => 'number', 'default' => 10 ),
41
  'spacing-between-suffix' => array( 'type' => 'integer', 'default' => 0 ),
@@ -1104,59 +1107,62 @@ class WPZOOM_Instagram_Widget_Settings {
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">
@@ -1306,10 +1312,30 @@ class WPZOOM_Instagram_Widget_Settings {
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>
36
  'layout' => array( 'type' => 'integer', 'default' => 0 ),
37
  'item-num' => array( 'type' => 'integer', 'default' => 9 ),
38
  'col-num' => array( 'type' => 'integer', 'default' => 3 ),
39
+ 'col-num_tablet' => array( 'type' => 'integer', 'default' => 2 ),
40
+ 'col-num_mobile' => array( 'type' => 'integer', 'default' => 1 ),
41
+ 'col-num_responsive-enabled' => array( 'type' => 'boolean', 'default' => false ),
42
  'perpage-num' => array( 'type' => 'integer', 'default' => 3 ),
43
  'spacing-between' => array( 'type' => 'number', 'default' => 10 ),
44
  'spacing-between-suffix' => array( 'type' => 'integer', 'default' => 0 ),
1107
 
1108
  function edit_feed_content( $post ) {
1109
  if ( 'wpz-insta_feed' == $post->post_type ) {
1110
+ $pro_toggle = apply_filters( 'wpz-insta_admin-pro-options-toggle', true );
1111
+ $none_label = __( 'None', 'instagram-widget-by-wpzoom' );
1112
+ $user_id = (int) self::get_feed_setting_value( $post->ID, 'user-id' );
1113
+ $user = $user_id > 0 ? get_post( $user_id ) : null;
1114
+ $user_edit_link = $user instanceof WP_Post ? admin_url( 'edit.php?post_type=wpz-insta_user#post-' . $user_id ) : '';
1115
+ $user_display_name = $user instanceof WP_Post ? sprintf( '@%s', get_the_title( $user ) ) : $none_label;
1116
+ $user_account_type = $user instanceof WP_Post ? ucwords( strtolower( get_post_meta( $user_id, '_wpz-insta_account-type', true ) ?: $none_label ) ) : $none_label;
1117
+ $raw_token = get_post_meta( $user_id, '_wpz-insta_token', true );
1118
+ $user_account_token = $user instanceof WP_Post ? ( false !== $raw_token && ! empty( $raw_token ) ? $raw_token : '-1' ) : '-1';
1119
+ $new_posts_interval_number = (int) self::get_feed_setting_value( $post->ID, 'check-new-posts-interval-number' );
1120
+ $new_posts_interval_suffix = (int) self::get_feed_setting_value( $post->ID, 'check-new-posts-interval-suffix' );
1121
+ $enable_request_timeout = (bool) self::get_feed_setting_value( $post->ID, 'enable-request-timeout' );
1122
+ $raw_feed_layout = (int) self::get_feed_setting_value( $post->ID, 'layout' );
1123
+ $feed_layout = ! $pro_toggle ? $raw_feed_layout : ( $raw_feed_layout > 1 ? 0 : $raw_feed_layout );
1124
+ $feed_items_num = (int) self::get_feed_setting_value( $post->ID, 'item-num' );
1125
+ $feed_cols_num = (int) self::get_feed_setting_value( $post->ID, 'col-num' );
1126
+ $feed_cols_num_tablet = (int) self::get_feed_setting_value( $post->ID, 'col-num_tablet' );
1127
+ $feed_cols_num_mobile = (int) self::get_feed_setting_value( $post->ID, 'col-num_mobile' );
1128
+ $feed_cols_num_responsive_enabled = ! $pro_toggle ? (bool) self::get_feed_setting_value( $post->ID, 'col-num_responsive-enabled' ) : false;
1129
+ $feed_perpage_num = (int) self::get_feed_setting_value( $post->ID, 'perpage-num' );
1130
+ $feed_spacing_between = (float) self::get_feed_setting_value( $post->ID, 'spacing-between' );
1131
+ $feed_spacing_between_suffix = (int) self::get_feed_setting_value( $post->ID, 'spacing-between-suffix' );
1132
+ $enable_featured_layout = (bool) self::get_feed_setting_value( $post->ID, 'featured-layout-enable' );
1133
+ $feed_featured_layout = (int) self::get_feed_setting_value( $post->ID, 'featured-layout' );
1134
+ $show_account_name = (bool) self::get_feed_setting_value( $post->ID, 'show-account-name' );
1135
+ $show_account_username = (bool) self::get_feed_setting_value( $post->ID, 'show-account-username' );
1136
+ $show_account_image = (bool) self::get_feed_setting_value( $post->ID, 'show-account-image' );
1137
+ $show_account_bio = (bool) self::get_feed_setting_value( $post->ID, 'show-account-bio' );
1138
+ $show_view_instagram_button = (bool) self::get_feed_setting_value( $post->ID, 'show-view-button' );
1139
+ $view_instagram_button_text = (string) self::get_feed_setting_value( $post->ID, 'view-button-text' );
1140
+ $view_instagram_button_bg_color = (string) $this->validate_color( self::get_feed_setting_value( $post->ID, 'view-button-bg-color' ) );
1141
+ $feed_bg_color = (string) $this->validate_color( self::get_feed_setting_value( $post->ID, 'bg-color' ) );
1142
+ $feed_items_radius = (float) self::get_feed_setting_value( $post->ID, 'border-radius' );
1143
+ $feed_items_radius_suffix = (int) self::get_feed_setting_value( $post->ID, 'border-radius-suffix' );
1144
+ $feed_spacing_around = (float) self::get_feed_setting_value( $post->ID, 'spacing-around' );
1145
+ $feed_spacing_around_suffix = (int) self::get_feed_setting_value( $post->ID, 'spacing-around-suffix' );
1146
+ $feed_font_size = (float) self::get_feed_setting_value( $post->ID, 'font-size' );
1147
+ $feed_font_size_suffix = (int) self::get_feed_setting_value( $post->ID, 'font-size-suffix' );
1148
+ $lightbox = (bool) self::get_feed_setting_value( $post->ID, 'lightbox' );
1149
+ $hide_video_thumbnails = (bool) self::get_feed_setting_value( $post->ID, 'hide-video-thumbs' );
1150
+ $show_overlay = (bool) self::get_feed_setting_value( $post->ID, 'show-overlay' );
1151
+ $lazy_load = (bool) self::get_feed_setting_value( $post->ID, 'lazy-load' );
1152
+ $show_media_type_icons = (bool) self::get_feed_setting_value( $post->ID, 'show-media-type-icons' );
1153
+ $image_size = (string) self::get_feed_setting_value( $post->ID, 'image-size' );
1154
+ $image_width = (float) self::get_feed_setting_value( $post->ID, 'image-width' );
1155
+ $image_width_suffix = (int) self::get_feed_setting_value( $post->ID, 'image-width-suffix' );
1156
+ $feed_hover_media_type_icons = (bool) self::get_feed_setting_value( $post->ID, 'hover-media-type-icons' );
1157
+ $feed_hover_link = (bool) self::get_feed_setting_value( $post->ID, 'hover-link' );
1158
+ // $feed_hover_autoplay = (bool) self::get_feed_setting_value( $post->ID, 'hover-autoplay' );
1159
+ $feed_hover_tags_feed = (bool) self::get_feed_setting_value( $post->ID, 'hover-tags-feed' );
1160
+ $feed_hover_date = (bool) self::get_feed_setting_value( $post->ID, 'hover-date' );
1161
+ $show_load_more = (bool) self::get_feed_setting_value( $post->ID, 'show-load-more' );
1162
+ $load_more_text = (string) self::get_feed_setting_value( $post->ID, 'load-more-text' );
1163
+ $load_more_color = (string) self::validate_color( self::get_feed_setting_value( $post->ID, 'load-more-color' ) );
1164
+ $feed_shortcode = sprintf( _x( '[instagram feed="%s"]', 'Instagram Feed Shortcode', 'instagram-widget-by-wpzoom' ), $post->ID );
1165
+ $all_users = get_posts( array( 'numberposts' => -1, 'post_type' => 'wpz-insta_user' ) );
1166
 
1167
  ?>
1168
  <div class="wpz-insta_tabs-content">
1312
  <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>
1313
  </label>
1314
 
1315
+ <div class="wpz-insta_table-row wpz-insta_responsive-table-row<?php echo ( 1 === $feed_layout || 3 === $feed_layout ? ' hidden' : '' ) . ( $feed_cols_num_responsive_enabled ? ' wpz-insta_responsive-enabled' : '' ); ?>">
1316
+ <div class="wpz-insta_table-cell">
1317
+ <label for="wpz-insta_col-num_desktop"><strong><?php esc_html_e( 'Number of columns', 'instagram-widget-by-wpzoom' ); ?></strong></label>
1318
+ <input type="checkbox" name="_wpz-insta_col-num_responsive-enabled" id="_wpz-insta_col-num_responsive-enabled" class="wpz-insta_responsive-checkbox" title="<?php esc_attr_e( 'Responsive', 'instagram-widget-by-wpzoom' ); ?>" value="1"<?php checked( $feed_cols_num_responsive_enabled ); disabled( $pro_toggle ); ?> />
1319
+ </div>
1320
+ <div class="wpz-insta_table-cell">
1321
+ <div class="wpz-insta_responsive-field">
1322
+ <label class="wpz-insta_responsive-field-type wpz-insta_responsive-field_desktop">
1323
+ <input type="number" name="_wpz-insta_col-num" id="wpz-insta_col-num_desktop" value="<?php echo esc_attr( $feed_cols_num ); ?>" size="3" min="0" max="100" step="1" />
1324
+ <span class="wpz-insta_responsive-field-name"><span class="dashicons dashicons-desktop"></span> <?php esc_html_e( 'Desktop', 'instagram-widget-by-wpzoom' ); ?></span>
1325
+ </label>
1326
+
1327
+ <label class="wpz-insta_responsive-field-type wpz-insta_responsive-field_tablet">
1328
+ <input type="number" name="_wpz-insta_col-num_tablet" value="<?php echo esc_attr( $feed_cols_num_tablet ); ?>" size="3" min="0" max="100" step="1" />
1329
+ <span class="wpz-insta_responsive-field-name"><span class="dashicons dashicons-tablet"></span> <?php esc_html_e( 'Tablet', 'instagram-widget-by-wpzoom' ); ?></span>
1330
+ </label>
1331
+
1332
+ <label class="wpz-insta_responsive-field-type wpz-insta_responsive-field_mobile">
1333
+ <input type="number" name="_wpz-insta_col-num_mobile" value="<?php echo esc_attr( $feed_cols_num_mobile ); ?>" size="3" min="0" max="100" step="1" />
1334
+ <span class="wpz-insta_responsive-field-name"><span class="dashicons dashicons-smartphone"></span> <?php esc_html_e( 'Mobile', 'instagram-widget-by-wpzoom' ); ?></span>
1335
+ </label>
1336
+ </div>
1337
+ </div>
1338
+ </div>
1339
 
1340
  <label class="wpz-insta_table-row<?php echo 3 !== $feed_layout ? ' hidden' : ''; ?>">
1341
  <strong class="wpz-insta_table-cell"><?php esc_html_e( 'Number of visible items', 'instagram-widget-by-wpzoom' ); ?></strong>
dist/scripts/backend/index.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('wp-polyfill'), 'version' => '0e8b5b3925f50bb5b1c1c2d609549778');
1
+ <?php return array('dependencies' => array('wp-polyfill'), 'version' => '1a1cf7313372fc9d77d625c8c4483d67');
dist/scripts/backend/index.js CHANGED
@@ -1 +1 @@
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(){if("0"==t('.wpz-insta_sidebar-section-layout input[name="_wpz-insta_layout"]:checked').val()){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")))}}))}});
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-section-layout").find('input[name="_wpz-insta_perpage-num"]').closest(".wpz-insta_table-row"),i=t(this).closest(".wpz-insta_sidebar-section-layout").find(".wpz-insta_table-row-featured-layout"),a=i.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()),i.toggleClass("hidden","0"!=t(this).val()),t(".wpz-insta_sidebar .wpz-insta_sidebar-left").hasClass(".is-pro")||a.toggleClass("hidden","0"!=t(this).val()),n.toggleClass("hidden","3"!=t(this).val())})),t('.wpz-insta_sidebar-section-layout input[name="_wpz-insta_col-num"]').on("input",(function(){if("0"==t('.wpz-insta_sidebar-section-layout input[name="_wpz-insta_layout"]:checked').val()){var e=parseInt(t(this).closest(".wpz-insta_sidebar-section-layout").find('input[name="_wpz-insta_col-num"]').val()),n=t(this).closest(".wpz-insta_table").find("label.featured-layout"),i=n.closest(".wpz-insta_table-row");e<3||e>6?i.addClass("hidden"):(i.removeClass("hidden"),n.addClass("hidden"),n.each((function(){t(this).is(".featured-layout-columns_"+e)&&t(this).removeClass("hidden")})))}})),t('.wpz-insta_sidebar-section-layout input[name="_wpz-insta_col-num_responsive-enabled"]').on("change",(function(){t(this).closest(".wpz-insta_responsive-table-row").toggleClass("wpz-insta_responsive-enabled",t(this).is(":checked"))})),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 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){t(this).is(":radio")?t(this).is(":checked")&&(n[t.trim(t(this).attr("name"))]=t(this)):n[t.trim(t(this).attr("name"))]=t(this)})),t.each(n,(function(e,n){a[e]=n.is(":checkbox")?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")?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")))}}))}});
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 .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}
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:not(.is-pro) .wpz-insta_responsive-table-row .wpz-insta_table-cell:first-child input[type=checkbox]{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left:not(.is-pro) .wpz-insta_responsive-table-row .wpz-insta_responsive-field .wpz-insta_responsive-field-type:nth-child(n+2){display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left:not(.is-pro) .wpz-insta_responsive-table-row .wpz-insta_responsive-field .wpz-insta_responsive-field-type .wpz-insta_responsive-field-name{display:none}.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.wpz-insta_responsive-table-row{align-items:flex-start}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_responsive-table-row.wpz-insta_responsive-enabled .wpz-insta_responsive-field .wpz-insta_responsive-field-type{display:flex !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_responsive-table-row.wpz-insta_responsive-enabled .wpz-insta_responsive-field .wpz-insta_responsive-field-type .wpz-insta_responsive-field-name{display:flex !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_responsive-table-row .wpz-insta_table-cell:first-child{display:flex;align-items:center;justify-content:space-between;gap:10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_responsive-table-row .wpz-insta_table-cell:first-child .wpz-insta_responsive-checkbox{background:none;padding:0;border:0;border-radius:0;box-shadow:none;margin:0 0 0 .4em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_responsive-table-row .wpz-insta_table-cell:first-child .wpz-insta_responsive-checkbox::before{content:"";-webkit-mask:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 20 20'%3E%3Cpath d='M18 14v-10c0-0.55-0.45-1-1-1h-14c-0.55 0-1 0.45-1 1v10c0 0.55 0.45 1 1 1h14c0.55 0 1-0.45 1-1zM10 6c2.3 0 4.4 1.14 6 3-1.6 1.86-3.7 3-6 3s-4.4-1.14-6-3c1.6-1.86 3.7-3 6-3zM12 9c0-1.1-0.9-2-2-2s-2 0.9-2 2 0.9 2 2 2 2-0.9 2-2zM14 17h3v1h-14v-1h3v-1h8v1z' fill='currentColor'%3E%3C/path%3E%3C/svg%3E");mask:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 20 20'%3E%3Cpath d='M18 14v-10c0-0.55-0.45-1-1-1h-14c-0.55 0-1 0.45-1 1v10c0 0.55 0.45 1 1 1h14c0.55 0 1-0.45 1-1zM10 6c2.3 0 4.4 1.14 6 3-1.6 1.86-3.7 3-6 3s-4.4-1.14-6-3c1.6-1.86 3.7-3 6-3zM12 9c0-1.1-0.9-2-2-2s-2 0.9-2 2 0.9 2 2 2 2-0.9 2-2zM14 17h3v1h-14v-1h3v-1h8v1z' fill='currentColor'%3E%3C/path%3E%3C/svg%3E");background-color:rgba(0,0,0,.4);height:16px;width:16px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_responsive-table-row .wpz-insta_table-cell:first-child .wpz-insta_responsive-checkbox:checked,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_responsive-table-row .wpz-insta_table-cell:first-child .wpz-insta_responsive-checkbox:hover{background:none !important;padding:0;border:0;border-radius:0;box-shadow:none !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_responsive-table-row .wpz-insta_table-cell:first-child .wpz-insta_responsive-checkbox:checked::before,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_responsive-table-row .wpz-insta_table-cell:first-child .wpz-insta_responsive-checkbox:hover::before{background-color:#000}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_responsive-table-row .wpz-insta_responsive-field{display:flex;flex-direction:column;gap:5px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_responsive-table-row .wpz-insta_responsive-field .wpz-insta_responsive-field-type{display:flex;flex-direction:row;gap:10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_responsive-table-row .wpz-insta_responsive-field .wpz-insta_responsive-field-type:not(:first-child){display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_responsive-table-row .wpz-insta_responsive-field .wpz-insta_responsive-field-type .wpz-insta_responsive-field-name{display:none;align-items:center;gap:4px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_responsive-table-row .wpz-insta_responsive-field .wpz-insta_responsive-field-type .wpz-insta_responsive-field-name .dashicons{font-size:16px;height:16px;width:16px}.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' => '75a1a49bc8b4e2966828040931ced292');
1
+ <?php return array('dependencies' => array('wp-polyfill'), 'version' => 'a22628670e9d7f0d8cc937196f1f2654');
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 .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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");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:not(.is-pro) .wpz-insta_responsive-table-row .wpz-insta_table-cell:first-child input[type=checkbox]{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left:not(.is-pro) .wpz-insta_responsive-table-row .wpz-insta_responsive-field .wpz-insta_responsive-field-type:nth-child(n+2){display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left:not(.is-pro) .wpz-insta_responsive-table-row .wpz-insta_responsive-field .wpz-insta_responsive-field-type .wpz-insta_responsive-field-name{display:none}.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.wpz-insta_responsive-table-row{align-items:flex-start}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_responsive-table-row.wpz-insta_responsive-enabled .wpz-insta_responsive-field .wpz-insta_responsive-field-type{display:flex !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_responsive-table-row.wpz-insta_responsive-enabled .wpz-insta_responsive-field .wpz-insta_responsive-field-type .wpz-insta_responsive-field-name{display:flex !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_responsive-table-row .wpz-insta_table-cell:first-child{display:flex;align-items:center;justify-content:space-between;gap:10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_responsive-table-row .wpz-insta_table-cell:first-child .wpz-insta_responsive-checkbox{background:none;padding:0;border:0;border-radius:0;box-shadow:none;margin:0 .4em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_responsive-table-row .wpz-insta_table-cell:first-child .wpz-insta_responsive-checkbox::before{content:"";-webkit-mask:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 20 20'%3E%3Cpath d='M18 14v-10c0-0.55-0.45-1-1-1h-14c-0.55 0-1 0.45-1 1v10c0 0.55 0.45 1 1 1h14c0.55 0 1-0.45 1-1zM10 6c2.3 0 4.4 1.14 6 3-1.6 1.86-3.7 3-6 3s-4.4-1.14-6-3c1.6-1.86 3.7-3 6-3zM12 9c0-1.1-0.9-2-2-2s-2 0.9-2 2 0.9 2 2 2 2-0.9 2-2zM14 17h3v1h-14v-1h3v-1h8v1z' fill='currentColor'%3E%3C/path%3E%3C/svg%3E");mask:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 20 20'%3E%3Cpath d='M18 14v-10c0-0.55-0.45-1-1-1h-14c-0.55 0-1 0.45-1 1v10c0 0.55 0.45 1 1 1h14c0.55 0 1-0.45 1-1zM10 6c2.3 0 4.4 1.14 6 3-1.6 1.86-3.7 3-6 3s-4.4-1.14-6-3c1.6-1.86 3.7-3 6-3zM12 9c0-1.1-0.9-2-2-2s-2 0.9-2 2 0.9 2 2 2 2-0.9 2-2zM14 17h3v1h-14v-1h3v-1h8v1z' fill='currentColor'%3E%3C/path%3E%3C/svg%3E");background-color:rgba(0,0,0,.4);height:16px;width:16px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_responsive-table-row .wpz-insta_table-cell:first-child .wpz-insta_responsive-checkbox:checked,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_responsive-table-row .wpz-insta_table-cell:first-child .wpz-insta_responsive-checkbox:hover{background:none !important;padding:0;border:0;border-radius:0;box-shadow:none !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_responsive-table-row .wpz-insta_table-cell:first-child .wpz-insta_responsive-checkbox:checked::before,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_responsive-table-row .wpz-insta_table-cell:first-child .wpz-insta_responsive-checkbox:hover::before{background-color:#000}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_responsive-table-row .wpz-insta_responsive-field{display:flex;flex-direction:column;gap:5px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_responsive-table-row .wpz-insta_responsive-field .wpz-insta_responsive-field-type{display:flex;flex-direction:row;gap:10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_responsive-table-row .wpz-insta_responsive-field .wpz-insta_responsive-field-type:not(:first-child){display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_responsive-table-row .wpz-insta_responsive-field .wpz-insta_responsive-field-type .wpz-insta_responsive-field-name{display:none;align-items:center;gap:4px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_responsive-table-row .wpz-insta_responsive-field .wpz-insta_responsive-field-type .wpz-insta_responsive-field-name .dashicons{font-size:16px;height:16px;width:16px}.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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");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}
instagram-widget-by-wpzoom.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: WPZOOM Instagram Widget & Block
4
  * Plugin URI: https://www.wpzoom.com/plugins/instagram-widget/
5
  * Description: Instagram Widget is a customizable and responsive plugin, made to help you gain even more followers by showcasing your Instagram feed on your WordPress website.
6
- * Version: 2.0.8
7
  * Author: WPZOOM
8
  * Author URI: https://www.wpzoom.com/
9
  * Text Domain: instagram-widget-by-wpzoom
@@ -19,7 +19,7 @@ if ( ! defined( 'ABSPATH' ) ) {
19
  }
20
 
21
  if ( ! defined( 'WPZOOM_INSTAGRAM_VERSION' ) ) {
22
- define( 'WPZOOM_INSTAGRAM_VERSION', '2.0.8' );
23
  }
24
 
25
  require_once plugin_dir_path( __FILE__ ) . 'class-wpzoom-instagram-image-uploader.php';
3
  * Plugin Name: WPZOOM Instagram Widget & Block
4
  * Plugin URI: https://www.wpzoom.com/plugins/instagram-widget/
5
  * Description: Instagram Widget is a customizable and responsive plugin, made to help you gain even more followers by showcasing your Instagram feed on your WordPress website.
6
+ * Version: 2.0.9
7
  * Author: WPZOOM
8
  * Author URI: https://www.wpzoom.com/
9
  * Text Domain: instagram-widget-by-wpzoom
19
  }
20
 
21
  if ( ! defined( 'WPZOOM_INSTAGRAM_VERSION' ) ) {
22
+ define( 'WPZOOM_INSTAGRAM_VERSION', '2.0.9' );
23
  }
24
 
25
  require_once plugin_dir_path( __FILE__ ) . 'class-wpzoom-instagram-image-uploader.php';
readme.txt CHANGED
@@ -44,6 +44,9 @@ Formerly known as *Instagram Widget by WPZOOM*, **WPZOOM Social Feed Widget** is
44
  = ⭐️ PRO FEATURES ⭐️ =
45
  * **Connect Multiple Instagram Accounts - 🆕**
46
  * **Masonry Layout - 🆕**
 
 
 
47
  * **Load More button - 🆕**
48
  * **Customize Colors - 🆕**
49
  * Premium Support
@@ -96,6 +99,9 @@ Yes, you can find the documentation for this plugin with more instructions on ou
96
 
97
  == Changelog ==
98
 
 
 
 
99
  = 2.0.8 =
100
  * Minor bug fixes
101
  * Fixed a conflict with Elementor
44
  = ⭐️ PRO FEATURES ⭐️ =
45
  * **Connect Multiple Instagram Accounts - 🆕**
46
  * **Masonry Layout - 🆕**
47
+ * **Carousel - 🆕**
48
+ * **Highlight Items - 🆕**
49
+ * **Responsive Columns - 🆕**
50
  * **Load More button - 🆕**
51
  * **Customize Colors - 🆕**
52
  * Premium Support
99
 
100
  == Changelog ==
101
 
102
+ = 2.0.9 =
103
+ * Fixed a bug in the Full-width style
104
+
105
  = 2.0.8 =
106
  * Minor bug fixes
107
  * Fixed a conflict with Elementor
src/scripts/backend/index.js CHANGED
@@ -237,7 +237,11 @@ jQuery( function( $ ) {
237
  }
238
  }
239
  } );
240
-
 
 
 
 
241
  $( '#_wpz-insta_featured-layout-enable' ).on( 'change', function() {
242
  $( this ).closest( '.wpz-insta_table-row' ).find( '.wpz-insta_image-select' ).toggleClass( 'hidden', ! $( this ).is( ':checked' ) );
243
  } );
237
  }
238
  }
239
  } );
240
+
241
+ $( '.wpz-insta_sidebar-section-layout input[name="_wpz-insta_col-num_responsive-enabled"]' ).on( 'change', function() {
242
+ $( this ).closest( '.wpz-insta_responsive-table-row' ).toggleClass( 'wpz-insta_responsive-enabled', $( this ).is( ':checked' ) );
243
+ } );
244
+
245
  $( '#_wpz-insta_featured-layout-enable' ).on( 'change', function() {
246
  $( this ).closest( '.wpz-insta_table-row' ).find( '.wpz-insta_image-select' ).toggleClass( 'hidden', ! $( this ).is( ':checked' ) );
247
  } );
src/styles/backend/index.scss CHANGED
@@ -1386,6 +1386,28 @@
1386
  }
1387
  }
1388
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1389
  .wpz-insta_sidebar-left-section-head {
1390
  display: flex;
1391
  align-items: center;
@@ -1799,6 +1821,87 @@
1799
  }
1800
  }
1801
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1802
  &.hidden {
1803
  display: none;
1804
  }
1386
  }
1387
  }
1388
 
1389
+ &:not(.is-pro) {
1390
+ .wpz-insta_responsive-table-row {
1391
+ .wpz-insta_table-cell:first-child {
1392
+ input[type='checkbox'] {
1393
+ display: none;
1394
+ }
1395
+ }
1396
+
1397
+ .wpz-insta_responsive-field {
1398
+ .wpz-insta_responsive-field-type {
1399
+ &:nth-child(n+2) {
1400
+ display: none;
1401
+ }
1402
+
1403
+ .wpz-insta_responsive-field-name {
1404
+ display: none;
1405
+ }
1406
+ }
1407
+ }
1408
+ }
1409
+ }
1410
+
1411
  .wpz-insta_sidebar-left-section-head {
1412
  display: flex;
1413
  align-items: center;
1821
  }
1822
  }
1823
 
1824
+ &.wpz-insta_responsive-table-row {
1825
+ align-items: flex-start;
1826
+
1827
+ &.wpz-insta_responsive-enabled {
1828
+ .wpz-insta_responsive-field {
1829
+ .wpz-insta_responsive-field-type {
1830
+ display: flex !important;
1831
+
1832
+ .wpz-insta_responsive-field-name {
1833
+ display: flex !important;
1834
+ }
1835
+ }
1836
+ }
1837
+ }
1838
+
1839
+ .wpz-insta_table-cell:first-child {
1840
+ display: flex;
1841
+ align-items: center;
1842
+ justify-content: space-between;
1843
+ gap: 10px;
1844
+
1845
+ .wpz-insta_responsive-checkbox {
1846
+ background: none;
1847
+ padding: 0;
1848
+ border: 0;
1849
+ border-radius: 0;
1850
+ box-shadow: none;
1851
+ margin: 0 0.4em 0 0;
1852
+
1853
+ &::before {
1854
+ content: '';
1855
+ mask: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 20 20'%3E%3Cpath d='M18 14v-10c0-0.55-0.45-1-1-1h-14c-0.55 0-1 0.45-1 1v10c0 0.55 0.45 1 1 1h14c0.55 0 1-0.45 1-1zM10 6c2.3 0 4.4 1.14 6 3-1.6 1.86-3.7 3-6 3s-4.4-1.14-6-3c1.6-1.86 3.7-3 6-3zM12 9c0-1.1-0.9-2-2-2s-2 0.9-2 2 0.9 2 2 2 2-0.9 2-2zM14 17h3v1h-14v-1h3v-1h8v1z' fill='currentColor'%3E%3C/path%3E%3C/svg%3E");
1856
+ background-color: rgba($dark-color, 0.4);
1857
+ height: 16px;
1858
+ width: 16px;
1859
+ }
1860
+
1861
+ &:checked,
1862
+ &:hover {
1863
+ background: none !important;
1864
+ padding: 0;
1865
+ border: 0;
1866
+ border-radius: 0;
1867
+ box-shadow: none !important;
1868
+
1869
+ &::before {
1870
+ background-color: $dark-color;
1871
+ }
1872
+ }
1873
+ }
1874
+ }
1875
+
1876
+ .wpz-insta_responsive-field {
1877
+ display: flex;
1878
+ flex-direction: column;
1879
+ gap: 5px;
1880
+
1881
+ .wpz-insta_responsive-field-type {
1882
+ display: flex;
1883
+ flex-direction: row;
1884
+ gap: 10px;
1885
+
1886
+ &:not(:first-child) {
1887
+ display: none;
1888
+ }
1889
+
1890
+ .wpz-insta_responsive-field-name {
1891
+ display: none;
1892
+ align-items: center;
1893
+ gap: 4px;
1894
+
1895
+ .dashicons {
1896
+ font-size: 16px;
1897
+ height: 16px;
1898
+ width: 16px;
1899
+ }
1900
+ }
1901
+ }
1902
+ }
1903
+ }
1904
+
1905
  &.hidden {
1906
  display: none;
1907
  }