Version Description
- Minor bug fixes
Download this release
Release Info
Developer | WPZOOM |
Plugin | ![]() |
Version | 2.0.1 |
Comparing to | |
See all releases |
Code changes from version 2.0.0 to 2.0.1
- class-wpzoom-instagram-widget-display.php +2 -2
- class-wpzoom-instagram-widget-settings.php +0 -28
- dist/styles/backend/index-rtl.css +1 -1
- dist/styles/backend/index.asset.php +1 -1
- dist/styles/backend/index.css +1 -1
- dist/styles/frontend/index-rtl.css +1 -1
- dist/styles/frontend/index.asset.php +1 -1
- dist/styles/frontend/index.css +1 -1
- instagram-widget-by-wpzoom.php +2 -2
- readme.txt +10 -0
- src/styles/backend/index.scss +0 -6
- src/styles/frontend/index.scss +0 -1
- vendor/autoload.php +12 -0
- vendor/composer/ClassLoader.php +572 -0
- vendor/composer/InstalledVersions.php +352 -0
- vendor/composer/LICENSE +21 -0
- vendor/composer/autoload_classmap.php +10 -0
- vendor/composer/autoload_namespaces.php +9 -0
- vendor/composer/autoload_psr4.php +11 -0
- vendor/composer/autoload_real.php +38 -0
- vendor/composer/autoload_static.php +41 -0
- vendor/composer/installed.json +440 -0
- vendor/composer/installed.php +86 -0
- vendor/composer/platform_check.php +26 -0
- vendor/imangazaliev/didom/CHANGELOG.md +262 -0
- vendor/imangazaliev/didom/LICENSE +19 -0
- vendor/imangazaliev/didom/README-RU.md +844 -0
- vendor/imangazaliev/didom/src/DiDom/ClassAttribute.php +257 -0
- vendor/imangazaliev/didom/src/DiDom/Document.php +681 -0
- vendor/imangazaliev/didom/src/DiDom/DocumentFragment.php +31 -0
- vendor/imangazaliev/didom/src/DiDom/Element.php +397 -0
- vendor/imangazaliev/didom/src/DiDom/Encoder.php +60 -0
- vendor/imangazaliev/didom/src/DiDom/Errors.php +48 -0
- vendor/imangazaliev/didom/src/DiDom/Exceptions/InvalidSelectorException.php +12 -0
- vendor/imangazaliev/didom/src/DiDom/Node.php +1163 -0
- vendor/imangazaliev/didom/src/DiDom/Query.php +561 -0
- vendor/imangazaliev/didom/src/DiDom/StyleAttribute.php +304 -0
class-wpzoom-instagram-widget-display.php
CHANGED
@@ -270,7 +270,7 @@ class Wpzoom_Instagram_Widget_Display {
|
|
270 |
$output .= '</ul></div>';
|
271 |
|
272 |
if ( $show_view_on_insta_button || ( $show_load_more_button && 'fullwidth' !== $layout ) ) {
|
273 |
-
$output .= '<
|
274 |
|
275 |
if ( $show_view_on_insta_button ) {
|
276 |
$view_on_insta_label = isset( $args['view-button-text'] ) ? trim( $args['view-button-text'] ) : __( 'View on Instagram', 'instagram-widget-by-wpzoom' );
|
@@ -291,7 +291,7 @@ class Wpzoom_Instagram_Widget_Display {
|
|
291 |
$output .= '</form>';
|
292 |
}
|
293 |
|
294 |
-
$output .= '</
|
295 |
}
|
296 |
|
297 |
if ( $lightbox ) {
|
270 |
$output .= '</ul></div>';
|
271 |
|
272 |
if ( $show_view_on_insta_button || ( $show_load_more_button && 'fullwidth' !== $layout ) ) {
|
273 |
+
$output .= '<div class="zoom-instagram-widget__footer">';
|
274 |
|
275 |
if ( $show_view_on_insta_button ) {
|
276 |
$view_on_insta_label = isset( $args['view-button-text'] ) ? trim( $args['view-button-text'] ) : __( 'View on Instagram', 'instagram-widget-by-wpzoom' );
|
291 |
$output .= '</form>';
|
292 |
}
|
293 |
|
294 |
+
$output .= '</div>';
|
295 |
}
|
296 |
|
297 |
if ( $lightbox ) {
|
class-wpzoom-instagram-widget-settings.php
CHANGED
@@ -1014,20 +1014,6 @@ class WPZOOM_Instagram_Widget_Settings {
|
|
1014 |
</div>
|
1015 |
</div>
|
1016 |
</header>
|
1017 |
-
|
1018 |
-
<div class="wpz-insta-notices">
|
1019 |
-
<?php
|
1020 |
-
if ( is_network_admin() ) {
|
1021 |
-
do_action( 'network_admin_notices' );
|
1022 |
-
} elseif ( is_user_admin() ) {
|
1023 |
-
do_action( 'user_admin_notices' );
|
1024 |
-
} else {
|
1025 |
-
do_action( 'admin_notices' );
|
1026 |
-
}
|
1027 |
-
|
1028 |
-
do_action( 'all_admin_notices' );
|
1029 |
-
?>
|
1030 |
-
</div>
|
1031 |
<?php
|
1032 |
|
1033 |
if ( metadata_exists( 'user', get_current_user_id(), 'wpzinsta-pointer-feed-embed' ) ) {
|
@@ -1813,20 +1799,6 @@ class WPZOOM_Instagram_Widget_Settings {
|
|
1813 |
</ul>
|
1814 |
</nav>
|
1815 |
</header>
|
1816 |
-
|
1817 |
-
<div class="wpz-insta-notices">
|
1818 |
-
<?php
|
1819 |
-
if ( is_network_admin() ) {
|
1820 |
-
do_action( 'network_admin_notices' );
|
1821 |
-
} elseif ( is_user_admin() ) {
|
1822 |
-
do_action( 'user_admin_notices' );
|
1823 |
-
} else {
|
1824 |
-
do_action( 'admin_notices' );
|
1825 |
-
}
|
1826 |
-
|
1827 |
-
do_action( 'all_admin_notices' );
|
1828 |
-
?>
|
1829 |
-
</div>
|
1830 |
<?php
|
1831 |
}
|
1832 |
|
1014 |
</div>
|
1015 |
</div>
|
1016 |
</header>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1017 |
<?php
|
1018 |
|
1019 |
if ( metadata_exists( 'user', get_current_user_id(), 'wpzinsta-pointer-feed-embed' ) ) {
|
1799 |
</ul>
|
1800 |
</nav>
|
1801 |
</header>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1802 |
<?php
|
1803 |
}
|
1804 |
|
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>.notice{display:none !important}.wpz-insta-admin #wpbody-content .urgent{color:#ec2439}.wpz-insta-admin #wpbody-content .pro-only{position:absolute;top:0;left:0;line-height:1.5;color:#fff;background:#f57c00;padding:0 4px;border-radius:2px;transform:translate(-50%, -50%)}.wpz-insta-admin #wpbody-content>.wrap>h1.wp-heading-inline,.wpz-insta-admin #wpbody-content>.wrap>.page-title-action,.wpz-insta-admin #wpbody-content>.wrap>.wp-header-end,.wpz-insta-admin #wpbody-content>.wrap>.notice,.wpz-insta-admin #wpbody-content>.wrap>.wpz-insta_settings-header>.notice,.wpz-insta-admin #wpbody-content>.wrap>.wpz-insta-wrap~#posts-filter>.search-box,.wpz-insta-admin #wpbody-content>.wrap>.wpz-insta-wrap~#posts-filter>.tablenav,.wpz-insta-admin #wpbody-content>.wrap>.wpz-insta-wrap~#posts-filter>.wp-list-table>tfoot,.wpz-insta-admin #wpbody-content>.wrap #titlediv{display:none !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-notices .notice{display:block !important}.wpz-insta-admin #wpbody-content>.wrap input,.wpz-insta-admin #wpbody-content>.wrap textarea,.wpz-insta-admin #wpbody-content>.wrap select{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-weight:normal;color:#242628;border:1px solid #9ca2a7;border-radius:2px;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap input:hover,.wpz-insta-admin #wpbody-content>.wrap input:focus,.wpz-insta-admin #wpbody-content>.wrap textarea:hover,.wpz-insta-admin #wpbody-content>.wrap textarea:focus,.wpz-insta-admin #wpbody-content>.wrap select:hover,.wpz-insta-admin #wpbody-content>.wrap select:focus{color:#242628;border-color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap input{color:#242628}.wpz-insta-admin #wpbody-content>.wrap input.wpz-insta_input{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.wpz-insta-admin #wpbody-content>.wrap input.wpz-insta_input-nobg{background:transparent}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]{display:inline-flex;align-items:center;justify-content:center;color:#fff;background-color:#fff;height:1.25rem;width:1.25rem;border:none;border-radius:2px;box-shadow:inset 0 0 0 1px #81909c;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:hover{background-color:#ddd !important;box-shadow:inset 0 0 0 1px #81909c !important}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:hover:checked{background-color:#70b5fe !important;box-shadow:inset 0 0 0 1px transparent !important}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:focus{outline:none;box-shadow:inset 0 0 0 1px #81909c}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:focus:checked{box-shadow:inset 0 0 0 1px transparent}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]::before{transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:checked{background-color:#3496ff;box-shadow:inset 0 0 0 1px transparent}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:checked::before{content:url("data:image/svg+xml;utf8,%3Csvg%20width%3D%2214%22%20height%3D%2212%22%20viewBox%3D%220%200%2014%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12.779%201.00004L5.3618%2010.9753L1.06089%207.77735%22%20stroke%3D%22white%22%20stroke-width%3D%221.2%22%2F%3E%3C%2Fsvg%3E%0A");display:block;float:none;height:auto;width:auto;margin:0}.wpz-insta-admin #wpbody-content>.wrap .disabled,.wpz-insta-admin #wpbody-content>.wrap .disable{pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .disable{opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .help{display:inline-block;cursor:help;font-size:20px;vertical-align:text-bottom;height:16px;width:16px;transition:all .2s ease;position:relative}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field{padding:0;margin:0 0 2em}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field label>strong{font-size:15px !important}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field label>em{color:rgba(36,38,40,.8)}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field input[type=text]{display:block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:15px;font-weight:normal;line-height:40px;color:#242628;width:100%;min-height:40px;padding:0 10px;box-sizing:border-box;margin:.7em 0}.wpz-insta-admin #wpbody-content>.wrap .submit-button{padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .button.disabled{pointer-events:none !important}.wpz-insta-admin #wpbody-content>.wrap .button:not(.wp-color-result),.wpz-insta-admin #wpbody-content>.wrap .button-primary,.wpz-insta-admin #wpbody-content>.wrap .button-secondary{display:inline-flex;align-items:center;justify-content:center;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:13px;font-weight:600;line-height:35px;min-height:35px;padding:0 12px;border:0;border-radius:2px;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .button:not(.wp-color-result).button-large,.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-large,.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-large{min-height:48px;padding:0 40px;margin:0}.wpz-insta-admin #wpbody-content>.wrap .button.wp-color-result{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:13px}.wpz-insta-admin #wpbody-content>.wrap .button-primary{color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .button-primary:hover,.wpz-insta-admin #wpbody-content>.wrap .button-primary:active{color:#fff;background:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-positive{color:#fff;background:#2b6}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-positive:hover,.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-positive:active{background:#3bdb82}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-negative{color:#fff;background:#ec2439}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-negative:hover,.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-negative:active{background:#f05161}.wpz-insta-admin #wpbody-content>.wrap .button-secondary{color:#81909c;background:#fff;box-shadow:inset 0 0 0 1px #ddd}.wpz-insta-admin #wpbody-content>.wrap .button-secondary:hover,.wpz-insta-admin #wpbody-content>.wrap .button-secondary:active{background:#ddd}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-positive{color:#2b6;background:#fff;box-shadow:inset 0 0 0 1px #2b6}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-positive:hover,.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-positive:active{color:#242628;background:#fff;box-shadow:inset 0 0 0 1px #242628}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-negative{color:#ec2439;background:#fff;box-shadow:inset 0 0 0 1px #ec2439}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-negative:hover,.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-negative:active{color:#242628;background:#fff;box-shadow:inset 0 0 0 1px #242628}.wpz-insta-admin #wpbody-content>.wrap .button-link{color:#3496ff;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link{font-weight:normal;line-height:1;min-height:0;padding:0;margin:1.5em 0 0}.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link:hover,.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link:active,.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link:focus{color:#70b5fe;background:transparent}.wpz-insta-admin #wpbody-content>.wrap .button-link:hover,.wpz-insta-admin #wpbody-content>.wrap .button-link:active,.wpz-insta-admin #wpbody-content>.wrap .button-link:focus{color:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_suffixed-number-input{display:flex;gap:12px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_suffixed-number-input>*{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_suffixed-number-input>*:first-child{flex-grow:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_profile-photo{display:block;height:100px;width:100px;border-radius:50%}.wpz-insta-admin #wpbody-content>.wrap a{text-decoration:none;color:#3496ff;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap a:hover,.wpz-insta-admin #wpbody-content>.wrap a:active,.wpz-insta-admin #wpbody-content>.wrap a:focus{text-decoration:none;color:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap a.linked{border-bottom:1px solid rgba(52,150,255,.3)}.wpz-insta-admin #wpbody-content>.wrap a.linked:hover,.wpz-insta-admin #wpbody-content>.wrap a.linked:active,.wpz-insta-admin #wpbody-content>.wrap a.linked:focus{border-bottom-color:rgba(112,181,254,.3)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button{display:inline-flex;align-items:center;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;font-weight:600;text-decoration:none;color:#242628;margin:10px 0 0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:hover svg,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:active svg{color:#3496ff;fill:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button svg{color:#242628;fill:#242628;margin:0 0 0 6px;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpzinsta-pointer{position:absolute;top:calc(100% + 3px);right:50%;z-index:1000;cursor:default;font-size:14px;color:#fff;background:#3496ff;width:-webkit-max-content;width:-moz-max-content;width:max-content;padding:4px 10px;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.3);transform:translateX(50%);-webkit-animation-name:bounceFade;animation-name:bounceFade;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.wpz-insta-admin #wpbody-content>.wrap .wpzinsta-pointer>i{position:absolute;top:-10px;right:50%;pointer-events:none;height:10px;width:20px;transform:translateX(50%);overflow:hidden}.wpz-insta-admin #wpbody-content>.wrap .wpzinsta-pointer>i::before{content:"";position:absolute;right:50%;bottom:-4px;pointer-events:initial;background:#3496ff;height:8px;width:8px;box-shadow:0 0 2px rgba(0,0,0,.3);transform:translateX(50%) rotateZ(-45deg)}.wpz-insta-admin #wpbody-content>.wrap .fit-max-content{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-add-new a,.wpz-insta-admin #wpbody-content>.wrap #wpz-insta_tabs-config-cnnct .wpz-insta_tabs-config-connect-add{position:relative}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container{display:inline-flex;position:relative}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container:not(:focus-within) .wp-picker-holder{pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-color-result{position:absolute;top:50%;right:5px;pointer-events:none;height:20px;min-height:0;width:20px;padding:0;border-radius:4px;margin:0;transform:translateY(-50%)}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-color-result:active{transform:translateY(-50%) !important}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-color-result .wp-color-result-text{display:none}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-input-wrap{display:block}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-input-wrap input{line-height:2;width:auto;padding-right:30px}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-input-wrap .wp-picker-clear{display:none}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-holder{display:block;position:fixed;top:100%;right:0;z-index:999;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-holder .iris-picker{display:block !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns{display:flex;align-items:center;list-style:none;padding:0;margin:1.5em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns.wpz-insta_two-columns-left-small{align-items:flex-start;gap:30px;margin-top:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns.wpz-insta_two-columns-left-small>*{text-align:right !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns.wpz-insta_two-columns-left-small>*:first-child{flex-grow:0;width:auto}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns>*{flex-grow:1;list-style:none;width:100%;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns>*:first-child{text-align:right}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns>*:last-child{text-align:left}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_notice{display:flex;align-items:center;font-size:12px;padding:0;margin:1.5em 0 0 !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_notice::before{content:"";display:block;background-image:url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.3 3.5H7.7V4.9H6.3V3.5ZM6.3 6.3H7.7V10.5H6.3V6.3ZM7 0C3.136 0 0 3.136 0 7C0 10.864 3.136 14 7 14C10.864 14 14 10.864 14 7C14 3.136 10.864 0 7 0ZM7 12.6C3.913 12.6 1.4 10.087 1.4 7C1.4 3.913 3.913 1.4 7 1.4C10.087 1.4 12.6 3.913 12.6 7C12.6 10.087 10.087 12.6 7 12.6Z'/%3E%3C/svg%3E");height:14px;width:14px;margin:0 0 0 .8em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_notice p{padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:15px 30px 0;border:1px solid #ddd;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.1);margin:3em 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header #major-publishing-actions{background:transparent;padding:0 0 1em;border:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header #major-publishing-actions #publishing-action{display:flex;align-items:center;gap:20px;float:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header #major-publishing-actions #publishing-action .spinner{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header.wpz-insta-wrap-sides{display:flex;align-items:center;margin-top:1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header.wpz-insta-wrap-sides .wpz-insta-wrap-left{flex-grow:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title{font-size:24px;font-weight:600;line-height:29px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small{font-size:14px;font-weight:normal;line-height:17px;color:#81909c}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small a{text-decoration:none;color:#81909c;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small a:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title .pro{color:#f57c00}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title #title{position:relative;font-size:24px;font-weight:600;text-overflow:ellipsis;line-height:29px;background:transparent url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 17.2505V21.0005H6.75L17.81 9.94055L14.06 6.19055L3 17.2505ZM20.71 7.04055C21.1 6.65055 21.1 6.02055 20.71 5.63055L18.37 3.29055C17.98 2.90055 17.35 2.90055 16.96 3.29055L15.13 5.12055L18.88 8.87055L20.71 7.04055Z' fill='%2381909C'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:center left;min-width:100px;max-width:82%;padding:0 0 0 24px;border:0;outline:none;margin:0;overflow:hidden;box-shadow:0 0 0 1px transparent;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title #title:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title #title:focus{box-shadow:0 0 0 1px #3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-sub-title{font-size:18px;font-weight:normal;line-height:22px;color:#242628;margin:16px 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav{font-size:18px;font-weight:normal;line-height:22px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul{display:flex;list-style:none;gap:40px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li{position:relative;list-style:none;padding:0;margin:0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li.active a{cursor:default;pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li.active a::after{transform:translateY(0)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a{display:block;position:relative;text-decoration:none;color:#242628;outline:none;padding:16px 0;box-shadow:none;overflow:hidden;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a:active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a:focus{outline:none;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a:hover{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a::after{content:"";position:absolute;right:0;left:0;bottom:0;background:#3496ff;height:6px;border-radius:2px 2px 0 0;transform:translateY(100%);transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap.with-bg{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;color:#242628;background:#fff;padding:25px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap.with-bg *:not(h2):not(small){font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter{margin:2em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:15px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td{border-bottom:1px solid #000}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_account-token,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td.column-wpz-insta_account-token{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th{font-weight:600;padding-right:0;padding-left:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_actions{text-align:left}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th a{color:#000;padding:14px 0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th a:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr{display:table-row !important;position:relative;background:transparent}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr:first-child th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr:first-child td,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr.inline-edit-row th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr.inline-edit-row td{border-top:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr.inline-edit-row td{padding-top:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td{vertical-align:middle;padding:20px 0;border-top:1px solid #ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.column-wpz-insta_account-token,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td.column-wpz-insta_account-token{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.check-column{padding:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td>*{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td a:not(.button){color:#3496ff;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td a:not(.button):hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td a:not(.button):active{color:#000}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .row-actions{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit{overflow:hidden;-webkit-animation-name:slidedown;animation-name:slidedown;-webkit-animation-duration:1s;animation-duration:1s}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns{display:flex;list-style:none;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li{flex-grow:1;list-style:none;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li div{display:block;margin:0 0 10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li div:last-child{margin-bottom:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li strong:first-child,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li label>strong:first-child{display:inline-block;margin:0 0 5px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li input:not(.widefat),.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li textarea{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;width:60%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save{position:absolute;top:-10px;left:0;padding:0;transform:translateY(-100%)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button{float:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel{color:#3496ff;background:transparent;box-shadow:inset 0 0 0 1px #3496ff;margin:0 0 0 1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel:active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel:focus{color:#000;box-shadow:inset 0 0 0 1px #000}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .spinner{float:right}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-title,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account{width:50%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account a{color:#242628}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account a:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions{text-align:left;width:5%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions strong{position:relative;cursor:pointer;font-size:20px;font-weight:600;text-align:left;white-space:nowrap;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions strong:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions strong:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu{display:inline-block;position:relative;text-align:left}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu:hover .wpz-insta_hidden{pointer-events:auto;opacity:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu:hover strong{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu:hover strong::after{content:"";position:absolute;right:-50px;left:0;bottom:-15px;height:25px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden{position:absolute;left:0;bottom:-10px;z-index:999;pointer-events:none;text-align:right;background:#fff;min-width:200px;opacity:0;padding:0;border-radius:3px;margin:0;box-shadow:-1px 4px 8px rgba(0,0,0,.1);transform:translate(0%, 100%);transition:opacity .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li{white-space:nowrap;margin:0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:first-child a,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:first-child button{padding-top:10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:last-child a,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:last-child button{padding-bottom:10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li.wpz-insta_actions-menu_divider{pointer-events:none;background:#ddd;height:1px;padding:0;margin:5px 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li.wpz-insta_actions-menu_delete a:hover{color:#ec2439}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li a,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li button{display:block;white-space:nowrap;color:#242628;width:100%;padding:7px 20px;margin:0;box-sizing:border-box;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li button:hover{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .inline-edit-col-left,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .inline-edit-col-right{display:none}.wpz-insta-admin #wpbody-content>.wrap #poststuff{padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap #poststuff #post-body{margin:0}.wpz-insta-admin #wpbody-content>.wrap #poststuff #post-body #post-body-content{float:none;margin:0}.wpz-insta-admin #wpbody-content>.wrap #poststuff #post-body .postbox-container{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content{display:grid}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content *{pointer-events:inherit}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content>*{grid-column:1;grid-row:1;align-self:start}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content>*:not(.active){pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content>*:not(.active) *{pointer-events:none !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar{display:flex;gap:20px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar.hide{pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar:not(.show-pro) .wpz-insta_pro-only{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar input,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar textarea,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar select{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right{background:#fff;border:1px solid #ddd;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left{display:grid;grid-template-rows:auto 1fr;flex-basis:28%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left.is-pro .wpz-insta_sidebar-left-section{max-height:70vh !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section-head{display:flex;align-items:center;grid-column:1;grid-row:1;background:#fafafa;min-height:30px;padding:20px;border-bottom:1px solid #ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section{grid-column:1;grid-row:2;align-self:start;transition:all .3s ease;overflow-x:hidden;overflow-y:auto}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section:not(.active){pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right{flex-grow:1;position:relative}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right.is-loading{transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right.is-loading.hide-loading::before{opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right.is-loading::before{content:"";position:absolute;top:300px;right:50%;z-index:1;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 50 50' xml:space='preserve'%3E%3Cpath fill='%233496ff' d='M43.935,25.145c0-10.318-8.364-18.683-18.683-18.683c-10.318,0-18.683,8.365-18.683,18.683h4.068c0-8.071,6.543-14.615,14.615-14.615c8.072,0,14.615,6.543,14.615,14.615H43.935z'%3E%3CanimateTransform attributeType='xml' attributeName='transform' type='rotate' from='0 25 25' to='360 25 25' dur='0.6s' repeatCount='indefinite'/%3E%3C/path%3E%3C/svg%3E");background-size:contain;height:64px;width:64px;opacity:1;transform:translateX(50%);transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section-big-title{font-size:18px;font-weight:600;margin:30px 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section{padding:30px 0 0;border-top:1px solid #ddd;margin:30px 20px 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section:first-child,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.no-top-border{padding-top:0;border-top:0;margin-top:20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-title{font-size:18px;font-weight:600;margin:0 0 15px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-title.smaller-title{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-description{font-size:14px;font-weight:normal;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-description:last-child{margin-bottom:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section p{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section ul li,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section ol li{margin-bottom:1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_text-btn-aligned{display:flex;align-items:stretch;gap:15px;width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_text-btn-aligned>input{flex-grow:1;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn{display:flex;align-items:center;font-size:14px;line-height:2}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode{background:transparent;border:1px solid #ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn{display:grid;text-align:center;color:#3496ff;background:transparent;border:1px solid #3496ff;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn:hover{color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn.success{color:#fff;background:#2b6;border-color:#2b6}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn.success .wpz-insta_shortcode-copy-btn-text-normal{opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn.success .wpz-insta_shortcode-copy-btn-text-success{opacity:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-normal,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-success{grid-column:1;grid-row:1;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-normal{opacity:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-success{opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select.is-set .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button-highlight{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select.is-set .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button{pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select.is-set .wpz-insta_feed-user-select-edit-link{display:inline-block}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select:not(.is-set) .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info{pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input{display:grid;background:#eee;border:1px solid #9ca2a7;border-radius:4px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info{display:flex;align-items:center;justify-content:space-between;grid-column:1;grid-row:1;margin:15px;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-select-info-left .wpz-insta_feed-user-select-info-name{font-size:14px;font-weight:600;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-select-info-left .wpz-insta_feed-user-select-info-type{font-size:12px;color:#81909c;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-remove-button{font-size:13px;font-weight:600;color:#3496ff;background:transparent;border:1px solid #3496ff;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-remove-button:hover{color:#ec2439;border-color:#ec2439}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap{position:relative;display:flex;align-items:stretch;justify-content:stretch;grid-column:1;grid-row:1;pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button-highlight{display:block;position:absolute;top:-2px;right:-2px;left:-2px;bottom:-2px;z-index:1;pointer-events:none;border:0;border-radius:6px;box-shadow:inset 0 0 1px 1px #3496ff,0 0 1px 1px #3496ff;transition:all .3s ease;-webkit-animation:highlighting .8s infinite;animation:highlighting .8s infinite}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button{display:flex;flex-grow:1;position:relative;z-index:2;pointer-events:all;font-size:14px;font-weight:600;color:#242628;background:#eee;opacity:1;border:0;border-radius:4px;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button:hover{color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-edit-link{display:none;margin:20px 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout{display:flex;align-items:end;gap:10px;max-height:999em;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-pro{display:flex;gap:15px;padding:10px;border-radius:4px;box-shadow:0 0 0 2px #f57c00;max-width:76%;box-sizing:border-box}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-pro legend{font-size:13px;font-weight:600;color:#fff;background:#f57c00;padding:0 5px;margin:0 auto;border-radius:2px;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-pro .wpz-insta_feed-layout-option{pointer-events:none;opacity:.75}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout>.wpz-insta_feed-layout-option{margin-bottom:10px !important;max-width:21%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option{display:block;background:transparent;padding:0;border:0;box-shadow:none;outline:none;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option.disabled{pointer-events:none;opacity:.4}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option:hover svg{color:#9ca2a7;fill:#9ca2a7}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option input{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option svg{display:block;color:#81909c;fill:#81909c;max-width:100%;height:auto;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option input:checked~svg{color:#3496ff;fill:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout-etc,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-general,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-profile-general,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-load-more-general{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table{display:flex;flex-direction:column;gap:20px;width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row{display:flex;align-items:center;width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_table-row-full{flex-direction:column;align-items:stretch}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_table-row-full .wpz-insta_table-cell{width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.hidden{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row .wpz-insta_table-cell{display:block;white-space:nowrap;line-height:30px;width:50%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row .wpz-insta_table-cell input{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row>input[type=checkbox]{margin:0 0 0 1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_show-on-hover{display:table-row}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_show-on-hover>strong{display:block;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro{display:flex;flex-direction:column;gap:20px;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro.wpz-insta_pro-only-with-bottom{padding-bottom:10px;border-bottom:2px solid #f57c00}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro.hidden{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro legend{display:flex;width:100%;padding:0;border-bottom:2px solid #f57c00;margin:0 0 10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro legend>strong{font-size:13px;color:#fff;background:#f57c00;padding:0 5px;border-top-right-radius:2px;border-top-left-radius:2px;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro>label{opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-token,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-check-new,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-request-timeout{max-height:0;opacity:0;overflow:hidden;padding-top:0;margin-top:0;margin-bottom:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-token.active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-check-new.active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-request-timeout.active{max-height:999em;opacity:1;padding-top:30px;margin-top:30px;margin-bottom:20px;overflow:visible}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-token #wpz-insta_user-token{display:block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;font-weight:normal;text-overflow:ellipsis;color:#242628;background:#fff;width:100%;padding:4px 8px;border:1px solid #ddd;border-radius:2px;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-request-timeout>label>strong{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-load-more.wpz-insta_pro-only{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding-top:0;padding-bottom:20px;border-top:none;border-bottom:2px solid #f57c00;margin-top:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-load-more.wpz-insta_pro-only .wpz-insta_sidebar-section-title,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-load-more.wpz-insta_pro-only .wpz-insta_table>label{opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview{position:relative;z-index:2;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header{display:flex;align-items:center;padding:0;border-bottom:1px solid #ddd;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-title{flex-grow:1;font-size:14px;font-weight:600;text-align:center;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links{display:flex;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links.disabled{pointer-events:none;opacity:.3}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links.disabled .wpz-insta_widget-preview-header-link.active{background:#ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links.disabled .wpz-insta_widget-preview-header-link.active svg{fill:#81909c}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link{display:flex;align-items:center;justify-content:center;cursor:pointer;background:#ddd;min-width:70px;min-height:70px;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link:hover{background:#eee}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link.active{cursor:default;color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link.active svg{fill:#fff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link svg{fill:#81909c;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view{display:flex;align-items:start;justify-content:center;padding:0;margin:0;overflow-x:hidden;overflow-y:auto;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.wpz-insta_widget-preview-size-desktop .wpz-insta_widget-preview-view-inner{max-width:500px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.wpz-insta_widget-preview-size-tablet .wpz-insta_widget-preview-view-inner{max-width:768px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.wpz-insta_widget-preview-size-mobile .wpz-insta_widget-preview-view-inner{max-width:380px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.layout-fullwidth.wpz-insta_widget-preview-size-desktop .wpz-insta_widget-preview-view-inner{max-width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view .wpz-insta_widget-preview-view-inner{flex-grow:1;padding:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view .wpz-insta_widget-preview-view-inner iframe{display:block;height:400px;width:100%;visibility:visible;opacity:1;overflow:hidden;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view .wpz-insta_widget-preview-view-inner iframe.wpz-insta_preview-hidden{pointer-events:none;visibility:hidden;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:25px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-title{font-size:24px;font-weight:600;padding:0;margin:0 0 10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-description{padding:0;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts{display:grid;grid-template-columns:repeat(auto-fill, minmax(300px, 1fr));gap:30px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li{cursor:pointer;background:#eee;padding:15px;border:1px solid #9ca2a7;border-radius:4px;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li:hover{color:#fff;background:#3496ff;border-color:#0063cd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li:hover h3{color:#fff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li:hover p{color:rgba(255,255,255,.6)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li h3{font-size:14px;font-weight:600;padding:0;margin:0 0 5px;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li p{font-size:12px;color:#81909c;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect hr{margin:30px 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-subtitle{font-size:14px;font-weight:normal;padding:0;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support .section-title,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license .section-title{font-size:20px;font-weight:600;line-height:24px;margin:0 0 1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support .section-title svg,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license .section-title svg{vertical-align:text-bottom;margin:0 0 0 5px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support .section-description,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license .section-description{padding:0;margin:0 0 2em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:25px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-title{font-size:24px;font-weight:600;line-height:29px;margin:0 0 16px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-description{font-size:14px;white-space:pre-wrap;margin:0 0 30px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options{display:flex;flex-wrap:wrap;gap:30px;margin:0 0 30px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option{display:flex;flex-direction:column;min-width:350px;padding:20px;border:1px solid #ddd;border-radius:3px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-title{font-size:16px;font-weight:600;line-height:19px;margin:0 0 16px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-checklist{font-size:14px;padding:0;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-checklist li{line-height:18px;background:url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0C4.03759 0 0 4.03759 0 9C0 13.9624 4.03759 18 9 18C13.9624 18 18 13.9624 18 9C18 4.03759 13.9624 0 9 0ZM14.0301 6.63158L8.2782 12.3383C7.93985 12.6767 7.3985 12.6992 7.03759 12.3609L3.99248 9.58647C3.63158 9.24812 3.60902 8.68421 3.92481 8.32331C4.26316 7.96241 4.82707 7.93985 5.18797 8.2782L7.6015 10.4887L12.7444 5.34586C13.1053 4.98496 13.6692 4.98496 14.0301 5.34586C14.391 5.70677 14.391 6.27068 14.0301 6.63158Z' fill='%2322BB66'/%3E%3C/svg%3E");background-position:100% 5px;background-repeat:no-repeat;min-height:18px;padding:5px 32px 5px 0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-token-input{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;line-height:17px;color:#242628;padding:10px;border:1px solid #ddd;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-token-input:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-token-input:focus{border-color:#3496ff;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button{display:flex;cursor:pointer;align-items:center;justify-content:center;font-weight:600;line-height:1;color:#fff;background:#3496ff;background-position:center right;background-repeat:no-repeat;width:100%;padding:15px 40px;border:0;border-radius:2px;margin:auto 0 0;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button:focus{background-color:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button.disabled{pointer-events:none;opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button svg{margin:0 0 0 16px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-notice{display:flex;align-items:center;font-size:13px;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-notice svg{margin:0 0 0 12px}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap{display:flex;align-items:center;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:30px;border:1px solid #ddd;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.1);margin:20px 0}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-logo{padding:0;margin:0 0 0 30px}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-logo a{display:block;text-indent:-999em;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAsUAAAB1CAYAAACmnpxEAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3BpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQwIDc5LjE2MDQ1MSwgMjAxNy8wNS8wNi0wMTowODoyMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGODdGMTE3NDA3MjA2ODExODIyQUJEN0ZFNTE5QkYyRSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyMERERTJGNDlFNjgxMUU4ODM0NkExODhFNzlBMDMzQiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyMERERTJGMzlFNjgxMUU4ODM0NkExODhFNzlBMDMzQiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxNSAoTWFjaW50b3NoKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjEyMzc5NGVhLTBiZGYtNDQ3Zi05ODc1LTY1ZDk5NjhjZGVlNiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGODdGMTE3NDA3MjA2ODExODIyQUJEN0ZFNTE5QkYyRSIvPiA8L3Jk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");background-size:contain;background-repeat:no-repeat;height:16px;width:95px;overflow:hidden;transition:all .3s ease}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-logo a:hover,.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-logo a:active{opacity:.5}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links{display:flex;padding:0;margin:0}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links li{padding:0;margin:0 0 0 30px}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links li:last-child{margin-left:0}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links li a{text-decoration:none;color:#000;transition:all .3s ease}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links li a:hover,.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links li a:active{color:#3496ff}.wpz-insta-admin #wpz-insta_modal-dialog{display:flex;align-items:center;justify-content:center;position:fixed;top:0;right:0;left:0;bottom:0;z-index:999999999999;background:rgba(0,0,0,.4);-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px);transition:all .3s ease}.wpz-insta-admin #wpz-insta_modal-dialog:not(.open){pointer-events:none;opacity:0}.wpz-insta-admin #wpz-insta_modal-dialog.success .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-title::before{background-color:#2b6;background-image:url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.75204 15.8749L4.60249 11.7049L3.18945 13.1149L8.75204 18.7049L20.6932 6.70492L19.2901 5.29492L8.75204 15.8749Z' fill='white'/%3E%3C/svg%3E")}.wpz-insta-admin #wpz-insta_modal-dialog.fail .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-title::before{background-color:#ec2439;background-image:url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.9069 6.41L17.5038 5L11.9412 10.59L6.37867 5L4.97559 6.41L10.5381 12L4.97559 17.59L6.37867 19L11.9412 13.41L17.5038 19L18.9069 17.59L13.3443 12L18.9069 6.41Z' fill='white'/%3E%3C/svg%3E")}.wpz-insta-admin #wpz-insta_modal-dialog.confirm .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-title::before{content:"?";display:flex;align-items:center;justify-content:center;font-size:24px;font-weight:700;color:#fff;background-color:#242628;background-image:none}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;line-height:20px;color:#242628;background:#fff;min-width:850px;padding:30px;border-radius:3px;box-shadow:0 5px 10px rgba(0,0,0,.3)}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header{display:flex;align-items:center;justify-content:space-between;padding:0 0 20px;border-bottom:1px solid #ddd;margin:0 0 30px}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-title{display:flex;align-items:center;font-size:20px;font-weight:600;padding:0;margin:0}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-title::before{content:"";display:block;background-color:#81909c;background-repeat:no-repeat;background-position:center;height:28px;width:28px;border-radius:50%;margin:0 0 0 15px}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-button{cursor:pointer;text-indent:-999em;background-color:#9ca2a7;-webkit-mask:url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.9069 6.41L17.5038 5L11.9412 10.59L6.37867 5L4.97559 6.41L10.5381 12L4.97559 17.59L6.37867 19L11.9412 13.41L17.5038 19L18.9069 17.59L13.3443 12L18.9069 6.41Z'/%3E%3C/svg%3E") center no-repeat;mask:url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.9069 6.41L17.5038 5L11.9412 10.59L6.37867 5L4.97559 6.41L10.5381 12L4.97559 17.59L6.37867 19L11.9412 13.41L17.5038 19L18.9069 17.59L13.3443 12L18.9069 6.41Z'/%3E%3C/svg%3E") center no-repeat;height:24px;width:24px;padding:0;margin:0;overflow:hidden;transition:all .3s ease}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-button:hover{background-color:#3496ff}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_content{overflow:auto}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_content .severe{color:#ec2439}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer{display:flex;align-items:center;justify-content:end;gap:10px;padding:20px 0 0;border-top:1px solid #ddd;margin:30px 0 0}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button{color:#fff;background:#3496ff;padding-right:30px;padding-left:30px;transition:all .3s ease}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button:hover,.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button:active{color:#fff;background:#70b5fe}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button.button-secondary{color:#3496ff;background:transparent;border-color:#3496ff}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button.button-secondary:hover,.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button.button-secondary:active{color:#fff;background-color:#70b5fe}@-webkit-keyframes slidedown{from{max-height:0}to{max-height:100em}}@keyframes slidedown{from{max-height:0}to{max-height:100em}}@-webkit-keyframes highlighting{0%{transform:scale(1)}50%{transform:scale(1.03, 1.2)}100%{transform:scale(1)}}@keyframes highlighting{0%{transform:scale(1)}50%{transform:scale(1.03, 1.2)}100%{transform:scale(1)}}@-webkit-keyframes bounceFade{0%{opacity:0}0%,20%,50%,80%,100%{transform:translateX(50%) translateY(0)}20%{opacity:0}40%{transform:translateX(50%) translateY(-30px)}60%{transform:translateX(50%) translateY(-15px)}100%{opacity:1}}@keyframes bounceFade{0%{opacity:0}0%,20%,50%,80%,100%{transform:translateX(50%) translateY(0)}20%{opacity:0}40%{transform:translateX(50%) translateY(-30px)}60%{transform:translateX(50%) translateY(-15px)}100%{opacity:1}}[data-tooltip]{position:relative;z-index:2;cursor:pointer}[data-tooltip]:before,[data-tooltip]:after{visibility:hidden;opacity:0;pointer-events:none}[data-tooltip]:before{position:absolute;bottom:150%;right:50%;margin-bottom:5px;margin-right:-100px;padding:7px;width:200px;border-radius:3px;background-color:#000;background-color:rgba(51,51,51,.9);color:#fff;content:attr(data-tooltip);text-align:center;font-size:14px;line-height:1.2}[data-tooltip]:after{position:absolute;bottom:150%;right:50%;margin-right:-5px;width:0;border-top:5px solid #000;border-top:5px solid rgba(51,51,51,.9);border-left:5px solid transparent;border-right:5px solid transparent;content:" ";font-size:0;line-height:0}[data-tooltip]:hover:before,[data-tooltip]:hover:after{visibility:visible;opacity:1}
|
1 |
+
.zoom-instagram-widget .button-connect{color:#fff;border:1px solid #1c5380;border-radius:3px;background-color:#6f97b6;background-image:linear-gradient(to bottom, #6f97b6, #3f729b);background-position:50% 50%;box-shadow:0 1px 1px rgba(0,0,0,.1),inset -1px 0 0 rgba(255,255,255,.05),inset 1px 0 0 rgba(255,255,255,.05),inset 0 1px 0 rgba(255,255,255,.2);text-shadow:0 1px 1px #1c5380}.zoom-instagram-widget .button-connect:focus,.zoom-instagram-widget .button-connect:hover{border-color:#1c5380;color:#fff;background-image:linear-gradient(to bottom, #5D87A8, #3f729b)}.zoom-instagram-widget{background:#fff;padding:30px;border:1px solid #ddd;border-radius:3px;margin:30px 0 30px 10px !important;box-shadow:-1px 1px 2px rgba(0,0,0,.1);max-width:700px}.zoom-themes-link{border:1px solid #e2e9ec;padding:30px 30px 260px 30px;border-radius:3px;margin:30px 0 30px 0 !important;box-shadow:-1px 1px 2px rgba(0,0,0,.1);max-width:700px;text-align:center}.zoom-themes-link p{font-size:15px;line-height:1.6}.cta-button{text-align:center;text-decoration:none;color:#fff;background:#3ebd3e;padding:10px 15px;display:inline-block;border-radius:3px;box-shadow:0 -1px 1px rgba(0,0,0,.2) inset;border:1px solid #259425;font-size:16px;text-shadow:-1px 1px rgba(0,0,0,.3)}.cta-button:hover{background:#2a9b2a;color:#fff}#wpzoom-instagram-widget-settings_transient-lifetime-value{max-width:150px;float:right}#wpzoom-instagram-widget-settings_transient-lifetime-type{float:right;max-width:100px}.zoom-instagram-widget .wpzoom-instagram-widget-with-access-token-group{background-color:#fff6f6}.zoom-instagram-widget .wpzoom-instagram-widget-with-basic-access-token-group,.zoom-instagram-widget .wpzoom-instagram-widget-without-access-token-group{background-color:#e0f0e3}.zoom-instagram-widget .wpzoom-instagram-widget-with-basic-access-token-group th,.zoom-instagram-widget .wpzoom-instagram-widget-without-access-token-group th{padding-right:10px}.zoom-instagram-widget .label-wrap input[type=radio]:checked+label[for=wpzoom-instagram-widget-settings_with-basic-access-token],.zoom-instagram-widget .label-wrap input[type=radio]:checked+label[for=wpzoom-instagram-widget-settings_without-access-token]{background-color:#e0f0e3}.zoom-instagram-widget .label-wrap input[type=radio]:checked+label[for=wpzoom-instagram-widget-settings_with-access-token]{background-color:#fff6f6}.zoom-instagram-widget .wpzoom-instagram-widget-settings-request-type-wrapper{display:flex;flex-direction:column}.zoom-instagram-widget .wpzoom-instagram-widget-settings-request-type-wrapper .label-wrap{display:flex;align-items:center}.zoom-instagram-widget .wpzoom-instagram-widget-settings-request-type-wrapper .label-wrap input[type=radio]{z-index:2}.zoom-instagram-widget .wpzoom-instagram-widget-settings-request-type-wrapper .label-wrap label{padding:10px;width:100%;margin-right:-30px;padding-right:40px;z-index:1}.zoom-instagram-widget form h2{border-top:2px solid #eee;padding-top:40px}.zoom-instagram-widget .wpzoom-instagram-widget-with-token-group>td{padding-left:0px}.zoom-instagram-user-avatar-media-uploader .remove-avatar{margin:6px 20px;color:#a00}.zoom-instagram-user-avatar-media-uploader .file-wrapper{margin-top:10px}#wpzoom-instagram-widget-settings-user-info-biography{width:100%;min-height:100px}.wpz-insta-admin.post-php #wpbody-content{padding-bottom:0}.wpz-insta-admin.post-php #wpbody-content>.wrap #poststuff #post-body #post-body-content .wpz-insta_tabs-content .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section,.wpz-insta-admin.post-php #wpbody-content>.wrap #poststuff #post-body #post-body-content .wpz-insta_tabs-content .wpz-insta_sidebar .wpz-insta_widget-preview .wpz-insta_widget-preview-view{max-height:60vh;min-height:200px}.wpz-insta-admin #wpfooter{position:relative}.wpz-insta-admin #wpbody-content{padding-bottom:165px}.wpz-insta-admin #wpbody-content .urgent{color:#ec2439}.wpz-insta-admin #wpbody-content .pro-only{position:absolute;top:0;left:0;line-height:1.5;color:#fff;background:#f57c00;padding:0 4px;border-radius:2px;transform:translate(-50%, -50%)}.wpz-insta-admin #wpbody-content>.wrap>h1.wp-heading-inline,.wpz-insta-admin #wpbody-content>.wrap>.page-title-action,.wpz-insta-admin #wpbody-content>.wrap>.wp-header-end,.wpz-insta-admin #wpbody-content>.wrap>.wpz-insta-wrap~#posts-filter>.search-box,.wpz-insta-admin #wpbody-content>.wrap>.wpz-insta-wrap~#posts-filter>.tablenav,.wpz-insta-admin #wpbody-content>.wrap>.wpz-insta-wrap~#posts-filter>.wp-list-table>tfoot,.wpz-insta-admin #wpbody-content>.wrap #titlediv{display:none !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-notices .notice{display:block !important}.wpz-insta-admin #wpbody-content>.wrap input,.wpz-insta-admin #wpbody-content>.wrap textarea,.wpz-insta-admin #wpbody-content>.wrap select{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-weight:normal;color:#242628;border:1px solid #9ca2a7;border-radius:2px;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap input:hover,.wpz-insta-admin #wpbody-content>.wrap input:focus,.wpz-insta-admin #wpbody-content>.wrap textarea:hover,.wpz-insta-admin #wpbody-content>.wrap textarea:focus,.wpz-insta-admin #wpbody-content>.wrap select:hover,.wpz-insta-admin #wpbody-content>.wrap select:focus{color:#242628;border-color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap input{color:#242628}.wpz-insta-admin #wpbody-content>.wrap input.wpz-insta_input{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.wpz-insta-admin #wpbody-content>.wrap input.wpz-insta_input-nobg{background:transparent}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]{display:inline-flex;align-items:center;justify-content:center;color:#fff;background-color:#fff;height:1.25rem;width:1.25rem;border:none;border-radius:2px;box-shadow:inset 0 0 0 1px #81909c;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:hover{background-color:#ddd !important;box-shadow:inset 0 0 0 1px #81909c !important}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:hover:checked{background-color:#70b5fe !important;box-shadow:inset 0 0 0 1px transparent !important}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:focus{outline:none;box-shadow:inset 0 0 0 1px #81909c}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:focus:checked{box-shadow:inset 0 0 0 1px transparent}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]::before{transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:checked{background-color:#3496ff;box-shadow:inset 0 0 0 1px transparent}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:checked::before{content:url("data:image/svg+xml;utf8,%3Csvg%20width%3D%2214%22%20height%3D%2212%22%20viewBox%3D%220%200%2014%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12.779%201.00004L5.3618%2010.9753L1.06089%207.77735%22%20stroke%3D%22white%22%20stroke-width%3D%221.2%22%2F%3E%3C%2Fsvg%3E%0A");display:block;float:none;height:auto;width:auto;margin:0}.wpz-insta-admin #wpbody-content>.wrap .disabled,.wpz-insta-admin #wpbody-content>.wrap .disable{pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .disable{opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .help{display:inline-block;cursor:help;font-size:20px;vertical-align:text-bottom;height:16px;width:16px;transition:all .2s ease;position:relative}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field{padding:0;margin:0 0 2em}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field label>strong{font-size:15px !important}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field label>em{color:rgba(36,38,40,.8)}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field input[type=text]{display:block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:15px;font-weight:normal;line-height:40px;color:#242628;width:100%;min-height:40px;padding:0 10px;box-sizing:border-box;margin:.7em 0}.wpz-insta-admin #wpbody-content>.wrap .submit-button{padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .button.disabled{pointer-events:none !important}.wpz-insta-admin #wpbody-content>.wrap .button:not(.wp-color-result),.wpz-insta-admin #wpbody-content>.wrap .button-primary,.wpz-insta-admin #wpbody-content>.wrap .button-secondary{display:inline-flex;align-items:center;justify-content:center;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:13px;font-weight:600;line-height:35px;min-height:35px;padding:0 12px;border:0;border-radius:2px;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .button:not(.wp-color-result).button-large,.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-large,.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-large{min-height:48px;padding:0 40px;margin:0}.wpz-insta-admin #wpbody-content>.wrap .button.wp-color-result{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:13px}.wpz-insta-admin #wpbody-content>.wrap .button-primary{color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .button-primary:hover,.wpz-insta-admin #wpbody-content>.wrap .button-primary:active{color:#fff;background:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-positive{color:#fff;background:#2b6}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-positive:hover,.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-positive:active{background:#3bdb82}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-negative{color:#fff;background:#ec2439}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-negative:hover,.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-negative:active{background:#f05161}.wpz-insta-admin #wpbody-content>.wrap .button-secondary{color:#81909c;background:#fff;box-shadow:inset 0 0 0 1px #ddd}.wpz-insta-admin #wpbody-content>.wrap .button-secondary:hover,.wpz-insta-admin #wpbody-content>.wrap .button-secondary:active{background:#ddd}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-positive{color:#2b6;background:#fff;box-shadow:inset 0 0 0 1px #2b6}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-positive:hover,.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-positive:active{color:#242628;background:#fff;box-shadow:inset 0 0 0 1px #242628}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-negative{color:#ec2439;background:#fff;box-shadow:inset 0 0 0 1px #ec2439}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-negative:hover,.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-negative:active{color:#242628;background:#fff;box-shadow:inset 0 0 0 1px #242628}.wpz-insta-admin #wpbody-content>.wrap .button-link{color:#3496ff;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link{font-weight:normal;line-height:1;min-height:0;padding:0;margin:1.5em 0 0}.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link:hover,.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link:active,.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link:focus{color:#70b5fe;background:transparent}.wpz-insta-admin #wpbody-content>.wrap .button-link:hover,.wpz-insta-admin #wpbody-content>.wrap .button-link:active,.wpz-insta-admin #wpbody-content>.wrap .button-link:focus{color:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_suffixed-number-input{display:flex;gap:12px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_suffixed-number-input>*{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_suffixed-number-input>*:first-child{flex-grow:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_profile-photo{display:block;height:100px;width:100px;border-radius:50%}.wpz-insta-admin #wpbody-content>.wrap a{text-decoration:none;color:#3496ff;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap a:hover,.wpz-insta-admin #wpbody-content>.wrap a:active,.wpz-insta-admin #wpbody-content>.wrap a:focus{text-decoration:none;color:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap a.linked{border-bottom:1px solid rgba(52,150,255,.3)}.wpz-insta-admin #wpbody-content>.wrap a.linked:hover,.wpz-insta-admin #wpbody-content>.wrap a.linked:active,.wpz-insta-admin #wpbody-content>.wrap a.linked:focus{border-bottom-color:rgba(112,181,254,.3)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button{display:inline-flex;align-items:center;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;font-weight:600;text-decoration:none;color:#242628;margin:10px 0 0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:hover svg,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:active svg{color:#3496ff;fill:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button svg{color:#242628;fill:#242628;margin:0 0 0 6px;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpzinsta-pointer{position:absolute;top:calc(100% + 3px);right:50%;z-index:1000;cursor:default;font-size:14px;color:#fff;background:#3496ff;width:-webkit-max-content;width:-moz-max-content;width:max-content;padding:4px 10px;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.3);transform:translateX(50%);-webkit-animation-name:bounceFade;animation-name:bounceFade;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.wpz-insta-admin #wpbody-content>.wrap .wpzinsta-pointer>i{position:absolute;top:-10px;right:50%;pointer-events:none;height:10px;width:20px;transform:translateX(50%);overflow:hidden}.wpz-insta-admin #wpbody-content>.wrap .wpzinsta-pointer>i::before{content:"";position:absolute;right:50%;bottom:-4px;pointer-events:initial;background:#3496ff;height:8px;width:8px;box-shadow:0 0 2px rgba(0,0,0,.3);transform:translateX(50%) rotateZ(-45deg)}.wpz-insta-admin #wpbody-content>.wrap .fit-max-content{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-add-new a,.wpz-insta-admin #wpbody-content>.wrap #wpz-insta_tabs-config-cnnct .wpz-insta_tabs-config-connect-add{position:relative}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container{display:inline-flex;position:relative}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container:not(:focus-within) .wp-picker-holder{pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-color-result{position:absolute;top:50%;right:5px;pointer-events:none;height:20px;min-height:0;width:20px;padding:0;border-radius:4px;margin:0;transform:translateY(-50%)}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-color-result:active{transform:translateY(-50%) !important}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-color-result .wp-color-result-text{display:none}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-input-wrap{display:block}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-input-wrap input{line-height:2;width:auto;padding-right:30px}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-input-wrap .wp-picker-clear{display:none}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-holder{display:block;position:fixed;top:100%;right:0;z-index:999;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-holder .iris-picker{display:block !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns{display:flex;align-items:center;list-style:none;padding:0;margin:1.5em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns.wpz-insta_two-columns-left-small{align-items:flex-start;gap:30px;margin-top:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns.wpz-insta_two-columns-left-small>*{text-align:right !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns.wpz-insta_two-columns-left-small>*:first-child{flex-grow:0;width:auto}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns>*{flex-grow:1;list-style:none;width:100%;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns>*:first-child{text-align:right}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns>*:last-child{text-align:left}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_notice{display:flex;align-items:center;font-size:12px;padding:0;margin:1.5em 0 0 !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_notice::before{content:"";display:block;background-image:url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.3 3.5H7.7V4.9H6.3V3.5ZM6.3 6.3H7.7V10.5H6.3V6.3ZM7 0C3.136 0 0 3.136 0 7C0 10.864 3.136 14 7 14C10.864 14 14 10.864 14 7C14 3.136 10.864 0 7 0ZM7 12.6C3.913 12.6 1.4 10.087 1.4 7C1.4 3.913 3.913 1.4 7 1.4C10.087 1.4 12.6 3.913 12.6 7C12.6 10.087 10.087 12.6 7 12.6Z'/%3E%3C/svg%3E");height:14px;width:14px;margin:0 0 0 .8em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_notice p{padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:15px 30px 0;border:1px solid #ddd;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.1);margin:3em 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header #major-publishing-actions{background:transparent;padding:0 0 1em;border:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header #major-publishing-actions #publishing-action{display:flex;align-items:center;gap:20px;float:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header #major-publishing-actions #publishing-action .spinner{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header.wpz-insta-wrap-sides{display:flex;align-items:center;margin-top:1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header.wpz-insta-wrap-sides .wpz-insta-wrap-left{flex-grow:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title{font-size:24px;font-weight:600;line-height:29px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small{font-size:14px;font-weight:normal;line-height:17px;color:#81909c}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small a{text-decoration:none;color:#81909c;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small a:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title .pro{color:#f57c00}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title #title{position:relative;font-size:24px;font-weight:600;text-overflow:ellipsis;line-height:29px;background:transparent url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 17.2505V21.0005H6.75L17.81 9.94055L14.06 6.19055L3 17.2505ZM20.71 7.04055C21.1 6.65055 21.1 6.02055 20.71 5.63055L18.37 3.29055C17.98 2.90055 17.35 2.90055 16.96 3.29055L15.13 5.12055L18.88 8.87055L20.71 7.04055Z' fill='%2381909C'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:center left;min-width:100px;max-width:82%;padding:0 0 0 24px;border:0;outline:none;margin:0;overflow:hidden;box-shadow:0 0 0 1px transparent;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title #title:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title #title:focus{box-shadow:0 0 0 1px #3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-sub-title{font-size:18px;font-weight:normal;line-height:22px;color:#242628;margin:16px 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav{font-size:18px;font-weight:normal;line-height:22px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul{display:flex;list-style:none;gap:40px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li{position:relative;list-style:none;padding:0;margin:0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li.active a{cursor:default;pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li.active a::after{transform:translateY(0)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a{display:block;position:relative;text-decoration:none;color:#242628;outline:none;padding:16px 0;box-shadow:none;overflow:hidden;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a:active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a:focus{outline:none;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a:hover{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a::after{content:"";position:absolute;right:0;left:0;bottom:0;background:#3496ff;height:6px;border-radius:2px 2px 0 0;transform:translateY(100%);transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap.with-bg{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;color:#242628;background:#fff;padding:25px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap.with-bg *:not(h2):not(small){font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter{margin:2em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:15px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td{border-bottom:1px solid #000}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_account-token,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td.column-wpz-insta_account-token{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th{font-weight:600;padding-right:0;padding-left:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_actions{text-align:left}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th a{color:#000;padding:14px 0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th a:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr{display:table-row !important;position:relative;background:transparent}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr:first-child th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr:first-child td,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr.inline-edit-row th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr.inline-edit-row td{border-top:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr.inline-edit-row td{padding-top:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td{vertical-align:middle;padding:20px 0;border-top:1px solid #ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.column-wpz-insta_account-token,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td.column-wpz-insta_account-token{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.check-column{padding:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td>*{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td a:not(.button){color:#3496ff;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td a:not(.button):hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td a:not(.button):active{color:#000}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .row-actions{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit{overflow:hidden;-webkit-animation-name:slidedown;animation-name:slidedown;-webkit-animation-duration:1s;animation-duration:1s}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns{display:flex;list-style:none;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li{flex-grow:1;list-style:none;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li div{display:block;margin:0 0 10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li div:last-child{margin-bottom:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li strong:first-child,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li label>strong:first-child{display:inline-block;margin:0 0 5px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li input:not(.widefat),.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li textarea{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;width:60%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save{position:absolute;top:-10px;left:0;padding:0;transform:translateY(-100%)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button{float:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel{color:#3496ff;background:transparent;box-shadow:inset 0 0 0 1px #3496ff;margin:0 0 0 1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel:active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel:focus{color:#000;box-shadow:inset 0 0 0 1px #000}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .spinner{float:right}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-title,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account{width:50%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account a{color:#242628}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account a:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions{text-align:left;width:5%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions strong{position:relative;cursor:pointer;font-size:20px;font-weight:600;text-align:left;white-space:nowrap;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions strong:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions strong:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu{display:inline-block;position:relative;text-align:left}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu:hover .wpz-insta_hidden{pointer-events:auto;opacity:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu:hover strong{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu:hover strong::after{content:"";position:absolute;right:-50px;left:0;bottom:-15px;height:25px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden{position:absolute;left:0;bottom:-10px;z-index:999;pointer-events:none;text-align:right;background:#fff;min-width:200px;opacity:0;padding:0;border-radius:3px;margin:0;box-shadow:-1px 4px 8px rgba(0,0,0,.1);transform:translate(0%, 100%);transition:opacity .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li{white-space:nowrap;margin:0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:first-child a,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:first-child button{padding-top:10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:last-child a,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:last-child button{padding-bottom:10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li.wpz-insta_actions-menu_divider{pointer-events:none;background:#ddd;height:1px;padding:0;margin:5px 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li.wpz-insta_actions-menu_delete a:hover{color:#ec2439}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li a,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li button{display:block;white-space:nowrap;color:#242628;width:100%;padding:7px 20px;margin:0;box-sizing:border-box;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li button:hover{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .inline-edit-col-left,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .inline-edit-col-right{display:none}.wpz-insta-admin #wpbody-content>.wrap #poststuff{padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap #poststuff #post-body{margin:0}.wpz-insta-admin #wpbody-content>.wrap #poststuff #post-body #post-body-content{float:none;margin:0}.wpz-insta-admin #wpbody-content>.wrap #poststuff #post-body .postbox-container{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content{display:grid}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content *{pointer-events:inherit}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content>*{grid-column:1;grid-row:1;align-self:start}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content>*:not(.active){pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content>*:not(.active) *{pointer-events:none !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar{display:flex;gap:20px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar.hide{pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar:not(.show-pro) .wpz-insta_pro-only{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar input,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar textarea,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar select{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right{background:#fff;border:1px solid #ddd;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left{display:grid;grid-template-rows:auto 1fr;flex-basis:28%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left.is-pro .wpz-insta_sidebar-left-section{max-height:70vh !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section-head{display:flex;align-items:center;grid-column:1;grid-row:1;background:#fafafa;min-height:30px;padding:20px;border-bottom:1px solid #ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section{grid-column:1;grid-row:2;align-self:start;transition:all .3s ease;overflow-x:hidden;overflow-y:auto}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section:not(.active){pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right{flex-grow:1;position:relative}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right.is-loading{transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right.is-loading.hide-loading::before{opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right.is-loading::before{content:"";position:absolute;top:300px;right:50%;z-index:1;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 50 50' xml:space='preserve'%3E%3Cpath fill='%233496ff' d='M43.935,25.145c0-10.318-8.364-18.683-18.683-18.683c-10.318,0-18.683,8.365-18.683,18.683h4.068c0-8.071,6.543-14.615,14.615-14.615c8.072,0,14.615,6.543,14.615,14.615H43.935z'%3E%3CanimateTransform attributeType='xml' attributeName='transform' type='rotate' from='0 25 25' to='360 25 25' dur='0.6s' repeatCount='indefinite'/%3E%3C/path%3E%3C/svg%3E");background-size:contain;height:64px;width:64px;opacity:1;transform:translateX(50%);transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section-big-title{font-size:18px;font-weight:600;margin:30px 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section{padding:30px 0 0;border-top:1px solid #ddd;margin:30px 20px 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section:first-child,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.no-top-border{padding-top:0;border-top:0;margin-top:20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-title{font-size:18px;font-weight:600;margin:0 0 15px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-title.smaller-title{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-description{font-size:14px;font-weight:normal;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-description:last-child{margin-bottom:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section p{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section ul li,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section ol li{margin-bottom:1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_text-btn-aligned{display:flex;align-items:stretch;gap:15px;width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_text-btn-aligned>input{flex-grow:1;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn{display:flex;align-items:center;font-size:14px;line-height:2}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode{background:transparent;border:1px solid #ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn{display:grid;text-align:center;color:#3496ff;background:transparent;border:1px solid #3496ff;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn:hover{color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn.success{color:#fff;background:#2b6;border-color:#2b6}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn.success .wpz-insta_shortcode-copy-btn-text-normal{opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn.success .wpz-insta_shortcode-copy-btn-text-success{opacity:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-normal,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-success{grid-column:1;grid-row:1;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-normal{opacity:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-success{opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select.is-set .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button-highlight{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select.is-set .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button{pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select.is-set .wpz-insta_feed-user-select-edit-link{display:inline-block}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select:not(.is-set) .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info{pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input{display:grid;background:#eee;border:1px solid #9ca2a7;border-radius:4px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info{display:flex;align-items:center;justify-content:space-between;grid-column:1;grid-row:1;margin:15px;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-select-info-left .wpz-insta_feed-user-select-info-name{font-size:14px;font-weight:600;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-select-info-left .wpz-insta_feed-user-select-info-type{font-size:12px;color:#81909c;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-remove-button{font-size:13px;font-weight:600;color:#3496ff;background:transparent;border:1px solid #3496ff;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-remove-button:hover{color:#ec2439;border-color:#ec2439}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap{position:relative;display:flex;align-items:stretch;justify-content:stretch;grid-column:1;grid-row:1;pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button-highlight{display:block;position:absolute;top:-2px;right:-2px;left:-2px;bottom:-2px;z-index:1;pointer-events:none;border:0;border-radius:6px;box-shadow:inset 0 0 1px 1px #3496ff,0 0 1px 1px #3496ff;transition:all .3s ease;-webkit-animation:highlighting .8s infinite;animation:highlighting .8s infinite}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button{display:flex;flex-grow:1;position:relative;z-index:2;pointer-events:all;font-size:14px;font-weight:600;color:#242628;background:#eee;opacity:1;border:0;border-radius:4px;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button:hover{color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-edit-link{display:none;margin:20px 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout{display:flex;align-items:end;gap:10px;max-height:999em;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-pro{display:flex;gap:15px;padding:10px;border-radius:4px;box-shadow:0 0 0 2px #f57c00;max-width:76%;box-sizing:border-box}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-pro legend{font-size:13px;font-weight:600;color:#fff;background:#f57c00;padding:0 5px;margin:0 auto;border-radius:2px;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-pro .wpz-insta_feed-layout-option{pointer-events:none;opacity:.75}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout>.wpz-insta_feed-layout-option{margin-bottom:10px !important;max-width:21%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option{display:block;background:transparent;padding:0;border:0;box-shadow:none;outline:none;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option.disabled{pointer-events:none;opacity:.4}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option:hover svg{color:#9ca2a7;fill:#9ca2a7}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option input{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option svg{display:block;color:#81909c;fill:#81909c;max-width:100%;height:auto;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option input:checked~svg{color:#3496ff;fill:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout-etc,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-general,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-profile-general,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-load-more-general{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table{display:flex;flex-direction:column;gap:20px;width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row{display:flex;align-items:center;width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_table-row-full{flex-direction:column;align-items:stretch}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_table-row-full .wpz-insta_table-cell{width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.hidden{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row .wpz-insta_table-cell{display:block;white-space:nowrap;line-height:30px;width:50%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row .wpz-insta_table-cell input{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row>input[type=checkbox]{margin:0 0 0 1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_show-on-hover{display:table-row}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_show-on-hover>strong{display:block;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro{display:flex;flex-direction:column;gap:20px;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro.wpz-insta_pro-only-with-bottom{padding-bottom:10px;border-bottom:2px solid #f57c00}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro.hidden{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro legend{display:flex;width:100%;padding:0;border-bottom:2px solid #f57c00;margin:0 0 10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro legend>strong{font-size:13px;color:#fff;background:#f57c00;padding:0 5px;border-top-right-radius:2px;border-top-left-radius:2px;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro>label{opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-token,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-check-new,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-request-timeout{max-height:0;opacity:0;overflow:hidden;padding-top:0;margin-top:0;margin-bottom:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-token.active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-check-new.active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-request-timeout.active{max-height:999em;opacity:1;padding-top:30px;margin-top:30px;margin-bottom:20px;overflow:visible}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-token #wpz-insta_user-token{display:block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;font-weight:normal;text-overflow:ellipsis;color:#242628;background:#fff;width:100%;padding:4px 8px;border:1px solid #ddd;border-radius:2px;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-request-timeout>label>strong{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-load-more.wpz-insta_pro-only{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding-top:0;padding-bottom:20px;border-top:none;border-bottom:2px solid #f57c00;margin-top:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-load-more.wpz-insta_pro-only .wpz-insta_sidebar-section-title,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-load-more.wpz-insta_pro-only .wpz-insta_table>label{opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview{position:relative;z-index:2;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header{display:flex;align-items:center;padding:0;border-bottom:1px solid #ddd;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-title{flex-grow:1;font-size:14px;font-weight:600;text-align:center;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links{display:flex;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links.disabled{pointer-events:none;opacity:.3}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links.disabled .wpz-insta_widget-preview-header-link.active{background:#ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links.disabled .wpz-insta_widget-preview-header-link.active svg{fill:#81909c}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link{display:flex;align-items:center;justify-content:center;cursor:pointer;background:#ddd;min-width:70px;min-height:70px;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link:hover{background:#eee}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link.active{cursor:default;color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link.active svg{fill:#fff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link svg{fill:#81909c;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view{display:flex;align-items:start;justify-content:center;padding:0;margin:0;overflow-x:hidden;overflow-y:auto;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.wpz-insta_widget-preview-size-desktop .wpz-insta_widget-preview-view-inner{max-width:500px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.wpz-insta_widget-preview-size-tablet .wpz-insta_widget-preview-view-inner{max-width:768px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.wpz-insta_widget-preview-size-mobile .wpz-insta_widget-preview-view-inner{max-width:380px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.layout-fullwidth.wpz-insta_widget-preview-size-desktop .wpz-insta_widget-preview-view-inner{max-width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view .wpz-insta_widget-preview-view-inner{flex-grow:1;padding:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view .wpz-insta_widget-preview-view-inner iframe{display:block;height:400px;width:100%;visibility:visible;opacity:1;overflow:hidden;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view .wpz-insta_widget-preview-view-inner iframe.wpz-insta_preview-hidden{pointer-events:none;visibility:hidden;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:25px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-title{font-size:24px;font-weight:600;padding:0;margin:0 0 10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-description{padding:0;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts{display:grid;grid-template-columns:repeat(auto-fill, minmax(300px, 1fr));gap:30px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li{cursor:pointer;background:#eee;padding:15px;border:1px solid #9ca2a7;border-radius:4px;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li:hover{color:#fff;background:#3496ff;border-color:#0063cd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li:hover h3{color:#fff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li:hover p{color:rgba(255,255,255,.6)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li h3{font-size:14px;font-weight:600;padding:0;margin:0 0 5px;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li p{font-size:12px;color:#81909c;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect hr{margin:30px 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-subtitle{font-size:14px;font-weight:normal;padding:0;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support .section-title,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license .section-title{font-size:20px;font-weight:600;line-height:24px;margin:0 0 1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support .section-title svg,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license .section-title svg{vertical-align:text-bottom;margin:0 0 0 5px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support .section-description,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license .section-description{padding:0;margin:0 0 2em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:25px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-title{font-size:24px;font-weight:600;line-height:29px;margin:0 0 16px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-description{font-size:14px;white-space:pre-wrap;margin:0 0 30px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options{display:flex;flex-wrap:wrap;gap:30px;margin:0 0 30px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option{display:flex;flex-direction:column;min-width:350px;padding:20px;border:1px solid #ddd;border-radius:3px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-title{font-size:16px;font-weight:600;line-height:19px;margin:0 0 16px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-checklist{font-size:14px;padding:0;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-checklist li{line-height:18px;background:url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0C4.03759 0 0 4.03759 0 9C0 13.9624 4.03759 18 9 18C13.9624 18 18 13.9624 18 9C18 4.03759 13.9624 0 9 0ZM14.0301 6.63158L8.2782 12.3383C7.93985 12.6767 7.3985 12.6992 7.03759 12.3609L3.99248 9.58647C3.63158 9.24812 3.60902 8.68421 3.92481 8.32331C4.26316 7.96241 4.82707 7.93985 5.18797 8.2782L7.6015 10.4887L12.7444 5.34586C13.1053 4.98496 13.6692 4.98496 14.0301 5.34586C14.391 5.70677 14.391 6.27068 14.0301 6.63158Z' fill='%2322BB66'/%3E%3C/svg%3E");background-position:100% 5px;background-repeat:no-repeat;min-height:18px;padding:5px 32px 5px 0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-token-input{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;line-height:17px;color:#242628;padding:10px;border:1px solid #ddd;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-token-input:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-token-input:focus{border-color:#3496ff;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button{display:flex;cursor:pointer;align-items:center;justify-content:center;font-weight:600;line-height:1;color:#fff;background:#3496ff;background-position:center right;background-repeat:no-repeat;width:100%;padding:15px 40px;border:0;border-radius:2px;margin:auto 0 0;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button:focus{background-color:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button.disabled{pointer-events:none;opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button svg{margin:0 0 0 16px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-notice{display:flex;align-items:center;font-size:13px;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-notice svg{margin:0 0 0 12px}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap{display:flex;align-items:center;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:30px;border:1px solid #ddd;border-radius:3px;box-shadow:-1px 1px 2px rgba(0,0,0,.1);margin:20px 0}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-logo{padding:0;margin:0 0 0 30px}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-logo a{display:block;text-indent:-999em;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAsUAAAB1CAYAAACmnpxEAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3BpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQwIDc5LjE2MDQ1MSwgMjAxNy8wNS8wNi0wMTowODoyMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGODdGMTE3NDA3MjA2ODExODIyQUJEN0ZFNTE5QkYyRSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyMERERTJGNDlFNjgxMUU4ODM0NkExODhFNzlBMDMzQiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyMERERTJGMzlFNjgxMUU4ODM0NkExODhFNzlBMDMzQiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxNSAoTWFjaW50b3NoKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjEyMzc5NGVhLTBiZGYtNDQ3Zi05ODc1LTY1ZDk5NjhjZGVlNiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGODdGMTE3NDA3MjA2ODExODIyQUJEN0ZFNTE5QkYyRSIvPiA8L3Jk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");background-size:contain;background-repeat:no-repeat;height:16px;width:95px;overflow:hidden;transition:all .3s ease}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-logo a:hover,.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-logo a:active{opacity:.5}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links{display:flex;padding:0;margin:0}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links li{padding:0;margin:0 0 0 30px}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links li:last-child{margin-left:0}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links li a{text-decoration:none;color:#000;transition:all .3s ease}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links li a:hover,.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-links li a:active{color:#3496ff}.wpz-insta-admin #wpz-insta_modal-dialog{display:flex;align-items:center;justify-content:center;position:fixed;top:0;right:0;left:0;bottom:0;z-index:999999999999;background:rgba(0,0,0,.4);-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px);transition:all .3s ease}.wpz-insta-admin #wpz-insta_modal-dialog:not(.open){pointer-events:none;opacity:0}.wpz-insta-admin #wpz-insta_modal-dialog.success .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-title::before{background-color:#2b6;background-image:url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.75204 15.8749L4.60249 11.7049L3.18945 13.1149L8.75204 18.7049L20.6932 6.70492L19.2901 5.29492L8.75204 15.8749Z' fill='white'/%3E%3C/svg%3E")}.wpz-insta-admin #wpz-insta_modal-dialog.fail .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-title::before{background-color:#ec2439;background-image:url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.9069 6.41L17.5038 5L11.9412 10.59L6.37867 5L4.97559 6.41L10.5381 12L4.97559 17.59L6.37867 19L11.9412 13.41L17.5038 19L18.9069 17.59L13.3443 12L18.9069 6.41Z' fill='white'/%3E%3C/svg%3E")}.wpz-insta-admin #wpz-insta_modal-dialog.confirm .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-title::before{content:"?";display:flex;align-items:center;justify-content:center;font-size:24px;font-weight:700;color:#fff;background-color:#242628;background-image:none}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;line-height:20px;color:#242628;background:#fff;min-width:850px;padding:30px;border-radius:3px;box-shadow:0 5px 10px rgba(0,0,0,.3)}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header{display:flex;align-items:center;justify-content:space-between;padding:0 0 20px;border-bottom:1px solid #ddd;margin:0 0 30px}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-title{display:flex;align-items:center;font-size:20px;font-weight:600;padding:0;margin:0}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-title::before{content:"";display:block;background-color:#81909c;background-repeat:no-repeat;background-position:center;height:28px;width:28px;border-radius:50%;margin:0 0 0 15px}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-button{cursor:pointer;text-indent:-999em;background-color:#9ca2a7;-webkit-mask:url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.9069 6.41L17.5038 5L11.9412 10.59L6.37867 5L4.97559 6.41L10.5381 12L4.97559 17.59L6.37867 19L11.9412 13.41L17.5038 19L18.9069 17.59L13.3443 12L18.9069 6.41Z'/%3E%3C/svg%3E") center no-repeat;mask:url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.9069 6.41L17.5038 5L11.9412 10.59L6.37867 5L4.97559 6.41L10.5381 12L4.97559 17.59L6.37867 19L11.9412 13.41L17.5038 19L18.9069 17.59L13.3443 12L18.9069 6.41Z'/%3E%3C/svg%3E") center no-repeat;height:24px;width:24px;padding:0;margin:0;overflow:hidden;transition:all .3s ease}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_header .wpz-insta_modal-dialog_header-button:hover{background-color:#3496ff}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_content{overflow:auto}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_content .severe{color:#ec2439}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer{display:flex;align-items:center;justify-content:end;gap:10px;padding:20px 0 0;border-top:1px solid #ddd;margin:30px 0 0}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button{color:#fff;background:#3496ff;padding-right:30px;padding-left:30px;transition:all .3s ease}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button:hover,.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button:active{color:#fff;background:#70b5fe}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button.button-secondary{color:#3496ff;background:transparent;border-color:#3496ff}.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button.button-secondary:hover,.wpz-insta-admin #wpz-insta_modal-dialog .wpz-insta_modal-dialog_wrap .wpz-insta_modal-dialog_footer .wpz-insta_modal-dialog_footer-button.button-secondary:active{color:#fff;background-color:#70b5fe}@-webkit-keyframes slidedown{from{max-height:0}to{max-height:100em}}@keyframes slidedown{from{max-height:0}to{max-height:100em}}@-webkit-keyframes highlighting{0%{transform:scale(1)}50%{transform:scale(1.03, 1.2)}100%{transform:scale(1)}}@keyframes highlighting{0%{transform:scale(1)}50%{transform:scale(1.03, 1.2)}100%{transform:scale(1)}}@-webkit-keyframes bounceFade{0%{opacity:0}0%,20%,50%,80%,100%{transform:translateX(50%) translateY(0)}20%{opacity:0}40%{transform:translateX(50%) translateY(-30px)}60%{transform:translateX(50%) translateY(-15px)}100%{opacity:1}}@keyframes bounceFade{0%{opacity:0}0%,20%,50%,80%,100%{transform:translateX(50%) translateY(0)}20%{opacity:0}40%{transform:translateX(50%) translateY(-30px)}60%{transform:translateX(50%) translateY(-15px)}100%{opacity:1}}[data-tooltip]{position:relative;z-index:2;cursor:pointer}[data-tooltip]:before,[data-tooltip]:after{visibility:hidden;opacity:0;pointer-events:none}[data-tooltip]:before{position:absolute;bottom:150%;right:50%;margin-bottom:5px;margin-right:-100px;padding:7px;width:200px;border-radius:3px;background-color:#000;background-color:rgba(51,51,51,.9);color:#fff;content:attr(data-tooltip);text-align:center;font-size:14px;line-height:1.2}[data-tooltip]:after{position:absolute;bottom:150%;right:50%;margin-right:-5px;width:0;border-top:5px solid #000;border-top:5px solid rgba(51,51,51,.9);border-left:5px solid transparent;border-right:5px solid transparent;content:" ";font-size:0;line-height:0}[data-tooltip]:hover:before,[data-tooltip]:hover:after{visibility:visible;opacity:1}
|
dist/styles/backend/index.asset.php
CHANGED
@@ -1 +1 @@
|
|
1 |
-
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '
|
1 |
+
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '088b48a702f891a28fb6bb0837e30177');
|
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>.notice{display:none !important}.wpz-insta-admin #wpbody-content .urgent{color:#ec2439}.wpz-insta-admin #wpbody-content .pro-only{position:absolute;top:0;right:0;line-height:1.5;color:#fff;background:#f57c00;padding:0 4px;border-radius:2px;transform:translate(50%, -50%)}.wpz-insta-admin #wpbody-content>.wrap>h1.wp-heading-inline,.wpz-insta-admin #wpbody-content>.wrap>.page-title-action,.wpz-insta-admin #wpbody-content>.wrap>.wp-header-end,.wpz-insta-admin #wpbody-content>.wrap>.notice,.wpz-insta-admin #wpbody-content>.wrap>.wpz-insta_settings-header>.notice,.wpz-insta-admin #wpbody-content>.wrap>.wpz-insta-wrap~#posts-filter>.search-box,.wpz-insta-admin #wpbody-content>.wrap>.wpz-insta-wrap~#posts-filter>.tablenav,.wpz-insta-admin #wpbody-content>.wrap>.wpz-insta-wrap~#posts-filter>.wp-list-table>tfoot,.wpz-insta-admin #wpbody-content>.wrap #titlediv{display:none !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-notices .notice{display:block !important}.wpz-insta-admin #wpbody-content>.wrap input,.wpz-insta-admin #wpbody-content>.wrap textarea,.wpz-insta-admin #wpbody-content>.wrap select{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-weight:normal;color:#242628;border:1px solid #9ca2a7;border-radius:2px;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap input:hover,.wpz-insta-admin #wpbody-content>.wrap input:focus,.wpz-insta-admin #wpbody-content>.wrap textarea:hover,.wpz-insta-admin #wpbody-content>.wrap textarea:focus,.wpz-insta-admin #wpbody-content>.wrap select:hover,.wpz-insta-admin #wpbody-content>.wrap select:focus{color:#242628;border-color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap input{color:#242628}.wpz-insta-admin #wpbody-content>.wrap input.wpz-insta_input{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.wpz-insta-admin #wpbody-content>.wrap input.wpz-insta_input-nobg{background:transparent}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]{display:inline-flex;align-items:center;justify-content:center;color:#fff;background-color:#fff;height:1.25rem;width:1.25rem;border:none;border-radius:2px;box-shadow:inset 0 0 0 1px #81909c;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:hover{background-color:#ddd !important;box-shadow:inset 0 0 0 1px #81909c !important}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:hover:checked{background-color:#70b5fe !important;box-shadow:inset 0 0 0 1px transparent !important}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:focus{outline:none;box-shadow:inset 0 0 0 1px #81909c}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:focus:checked{box-shadow:inset 0 0 0 1px transparent}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]::before{transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:checked{background-color:#3496ff;box-shadow:inset 0 0 0 1px transparent}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:checked::before{content:url("data:image/svg+xml;utf8,%3Csvg%20width%3D%2214%22%20height%3D%2212%22%20viewBox%3D%220%200%2014%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12.779%201.00004L5.3618%2010.9753L1.06089%207.77735%22%20stroke%3D%22white%22%20stroke-width%3D%221.2%22%2F%3E%3C%2Fsvg%3E%0A");display:block;float:none;height:auto;width:auto;margin:0}.wpz-insta-admin #wpbody-content>.wrap .disabled,.wpz-insta-admin #wpbody-content>.wrap .disable{pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .disable{opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .help{display:inline-block;cursor:help;font-size:20px;vertical-align:text-bottom;height:16px;width:16px;transition:all .2s ease;position:relative}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field{padding:0;margin:0 0 2em}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field label>strong{font-size:15px !important}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field label>em{color:rgba(36,38,40,.8)}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field input[type=text]{display:block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:15px;font-weight:normal;line-height:40px;color:#242628;width:100%;min-height:40px;padding:0 10px;box-sizing:border-box;margin:.7em 0}.wpz-insta-admin #wpbody-content>.wrap .submit-button{padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .button.disabled{pointer-events:none !important}.wpz-insta-admin #wpbody-content>.wrap .button:not(.wp-color-result),.wpz-insta-admin #wpbody-content>.wrap .button-primary,.wpz-insta-admin #wpbody-content>.wrap .button-secondary{display:inline-flex;align-items:center;justify-content:center;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:13px;font-weight:600;line-height:35px;min-height:35px;padding:0 12px;border:0;border-radius:2px;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .button:not(.wp-color-result).button-large,.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-large,.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-large{min-height:48px;padding:0 40px;margin:0}.wpz-insta-admin #wpbody-content>.wrap .button.wp-color-result{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:13px}.wpz-insta-admin #wpbody-content>.wrap .button-primary{color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .button-primary:hover,.wpz-insta-admin #wpbody-content>.wrap .button-primary:active{color:#fff;background:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-positive{color:#fff;background:#2b6}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-positive:hover,.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-positive:active{background:#3bdb82}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-negative{color:#fff;background:#ec2439}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-negative:hover,.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-negative:active{background:#f05161}.wpz-insta-admin #wpbody-content>.wrap .button-secondary{color:#81909c;background:#fff;box-shadow:inset 0 0 0 1px #ddd}.wpz-insta-admin #wpbody-content>.wrap .button-secondary:hover,.wpz-insta-admin #wpbody-content>.wrap .button-secondary:active{background:#ddd}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-positive{color:#2b6;background:#fff;box-shadow:inset 0 0 0 1px #2b6}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-positive:hover,.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-positive:active{color:#242628;background:#fff;box-shadow:inset 0 0 0 1px #242628}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-negative{color:#ec2439;background:#fff;box-shadow:inset 0 0 0 1px #ec2439}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-negative:hover,.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-negative:active{color:#242628;background:#fff;box-shadow:inset 0 0 0 1px #242628}.wpz-insta-admin #wpbody-content>.wrap .button-link{color:#3496ff;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link{font-weight:normal;line-height:1;min-height:0;padding:0;margin:1.5em 0 0}.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link:hover,.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link:active,.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link:focus{color:#70b5fe;background:transparent}.wpz-insta-admin #wpbody-content>.wrap .button-link:hover,.wpz-insta-admin #wpbody-content>.wrap .button-link:active,.wpz-insta-admin #wpbody-content>.wrap .button-link:focus{color:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_suffixed-number-input{display:flex;gap:12px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_suffixed-number-input>*{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_suffixed-number-input>*:first-child{flex-grow:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_profile-photo{display:block;height:100px;width:100px;border-radius:50%}.wpz-insta-admin #wpbody-content>.wrap a{text-decoration:none;color:#3496ff;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap a:hover,.wpz-insta-admin #wpbody-content>.wrap a:active,.wpz-insta-admin #wpbody-content>.wrap a:focus{text-decoration:none;color:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap a.linked{border-bottom:1px solid rgba(52,150,255,.3)}.wpz-insta-admin #wpbody-content>.wrap a.linked:hover,.wpz-insta-admin #wpbody-content>.wrap a.linked:active,.wpz-insta-admin #wpbody-content>.wrap a.linked:focus{border-bottom-color:rgba(112,181,254,.3)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button{display:inline-flex;align-items:center;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;font-weight:600;text-decoration:none;color:#242628;margin:10px 0 0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:hover svg,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:active svg{color:#3496ff;fill:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button svg{color:#242628;fill:#242628;margin:0 6px 0 0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpzinsta-pointer{position:absolute;top:calc(100% + 3px);left:50%;z-index:1000;cursor:default;font-size:14px;color:#fff;background:#3496ff;width:-webkit-max-content;width:-moz-max-content;width:max-content;padding:4px 10px;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.3);transform:translateX(-50%);-webkit-animation-name:bounceFade;animation-name:bounceFade;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.wpz-insta-admin #wpbody-content>.wrap .wpzinsta-pointer>i{position:absolute;top:-10px;left:50%;pointer-events:none;height:10px;width:20px;transform:translateX(-50%);overflow:hidden}.wpz-insta-admin #wpbody-content>.wrap .wpzinsta-pointer>i::before{content:"";position:absolute;left:50%;bottom:-4px;pointer-events:initial;background:#3496ff;height:8px;width:8px;box-shadow:0 0 2px rgba(0,0,0,.3);transform:translateX(-50%) rotateZ(45deg)}.wpz-insta-admin #wpbody-content>.wrap .fit-max-content{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-add-new a,.wpz-insta-admin #wpbody-content>.wrap #wpz-insta_tabs-config-cnnct .wpz-insta_tabs-config-connect-add{position:relative}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container{display:inline-flex;position:relative}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container:not(:focus-within) .wp-picker-holder{pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-color-result{position:absolute;top:50%;left:5px;pointer-events:none;height:20px;min-height:0;width:20px;padding:0;border-radius:4px;margin:0;transform:translateY(-50%)}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-color-result:active{transform:translateY(-50%) !important}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-color-result .wp-color-result-text{display:none}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-input-wrap{display:block}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-input-wrap input{line-height:2;width:auto;padding-left:30px}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-input-wrap .wp-picker-clear{display:none}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-holder{display:block;position:fixed;top:100%;left:0;z-index:999;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-holder .iris-picker{display:block !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns{display:flex;align-items:center;list-style:none;padding:0;margin:1.5em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns.wpz-insta_two-columns-left-small{align-items:flex-start;gap:30px;margin-top:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns.wpz-insta_two-columns-left-small>*{text-align:left !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns.wpz-insta_two-columns-left-small>*:first-child{flex-grow:0;width:auto}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns>*{flex-grow:1;list-style:none;width:100%;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns>*:first-child{text-align:left}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns>*:last-child{text-align:right}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_notice{display:flex;align-items:center;font-size:12px;padding:0;margin:1.5em 0 0 !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_notice::before{content:"";display:block;background-image:url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.3 3.5H7.7V4.9H6.3V3.5ZM6.3 6.3H7.7V10.5H6.3V6.3ZM7 0C3.136 0 0 3.136 0 7C0 10.864 3.136 14 7 14C10.864 14 14 10.864 14 7C14 3.136 10.864 0 7 0ZM7 12.6C3.913 12.6 1.4 10.087 1.4 7C1.4 3.913 3.913 1.4 7 1.4C10.087 1.4 12.6 3.913 12.6 7C12.6 10.087 10.087 12.6 7 12.6Z'/%3E%3C/svg%3E");height:14px;width:14px;margin:0 .8em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_notice p{padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:15px 30px 0;border:1px solid #ddd;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.1);margin:3em 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header #major-publishing-actions{background:transparent;padding:0 0 1em;border:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header #major-publishing-actions #publishing-action{display:flex;align-items:center;gap:20px;float:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header #major-publishing-actions #publishing-action .spinner{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header.wpz-insta-wrap-sides{display:flex;align-items:center;margin-top:1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header.wpz-insta-wrap-sides .wpz-insta-wrap-left{flex-grow:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title{font-size:24px;font-weight:600;line-height:29px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small{font-size:14px;font-weight:normal;line-height:17px;color:#81909c}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small a{text-decoration:none;color:#81909c;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small a:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title .pro{color:#f57c00}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title #title{position:relative;font-size:24px;font-weight:600;text-overflow:ellipsis;line-height:29px;background:transparent url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 17.2505V21.0005H6.75L17.81 9.94055L14.06 6.19055L3 17.2505ZM20.71 7.04055C21.1 6.65055 21.1 6.02055 20.71 5.63055L18.37 3.29055C17.98 2.90055 17.35 2.90055 16.96 3.29055L15.13 5.12055L18.88 8.87055L20.71 7.04055Z' fill='%2381909C'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:center right;min-width:100px;max-width:82%;padding:0 24px 0 0;border:0;outline:none;margin:0;overflow:hidden;box-shadow:0 0 0 1px transparent;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title #title:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title #title:focus{box-shadow:0 0 0 1px #3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-sub-title{font-size:18px;font-weight:normal;line-height:22px;color:#242628;margin:16px 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav{font-size:18px;font-weight:normal;line-height:22px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul{display:flex;list-style:none;gap:40px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li{position:relative;list-style:none;padding:0;margin:0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li.active a{cursor:default;pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li.active a::after{transform:translateY(0)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a{display:block;position:relative;text-decoration:none;color:#242628;outline:none;padding:16px 0;box-shadow:none;overflow:hidden;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a:active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a:focus{outline:none;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a:hover{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a::after{content:"";position:absolute;left:0;right:0;bottom:0;background:#3496ff;height:6px;border-radius:2px 2px 0 0;transform:translateY(100%);transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap.with-bg{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;color:#242628;background:#fff;padding:25px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap.with-bg *:not(h2):not(small){font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter{margin:2em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:15px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td{border-bottom:1px solid #000}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_account-token,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td.column-wpz-insta_account-token{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th{font-weight:600;padding-left:0;padding-right:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_actions{text-align:right}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th a{color:#000;padding:14px 0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th a:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr{display:table-row !important;position:relative;background:transparent}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr:first-child th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr:first-child td,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr.inline-edit-row th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr.inline-edit-row td{border-top:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr.inline-edit-row td{padding-top:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td{vertical-align:middle;padding:20px 0;border-top:1px solid #ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.column-wpz-insta_account-token,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td.column-wpz-insta_account-token{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.check-column{padding:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td>*{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td a:not(.button){color:#3496ff;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td a:not(.button):hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td a:not(.button):active{color:#000}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .row-actions{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit{overflow:hidden;-webkit-animation-name:slidedown;animation-name:slidedown;-webkit-animation-duration:1s;animation-duration:1s}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns{display:flex;list-style:none;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li{flex-grow:1;list-style:none;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li div{display:block;margin:0 0 10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li div:last-child{margin-bottom:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li strong:first-child,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li label>strong:first-child{display:inline-block;margin:0 0 5px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li input:not(.widefat),.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li textarea{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;width:60%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save{position:absolute;top:-10px;right:0;padding:0;transform:translateY(-100%)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button{float:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel{color:#3496ff;background:transparent;box-shadow:inset 0 0 0 1px #3496ff;margin:0 1em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel:active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel:focus{color:#000;box-shadow:inset 0 0 0 1px #000}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .spinner{float:left}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-title,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account{width:50%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account a{color:#242628}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account a:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions{text-align:right;width:5%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions strong{position:relative;cursor:pointer;font-size:20px;font-weight:600;text-align:right;white-space:nowrap;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions strong:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions strong:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu{display:inline-block;position:relative;text-align:right}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu:hover .wpz-insta_hidden{pointer-events:auto;opacity:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu:hover strong{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu:hover strong::after{content:"";position:absolute;left:-50px;right:0;bottom:-15px;height:25px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden{position:absolute;right:0;bottom:-10px;z-index:999;pointer-events:none;text-align:left;background:#fff;min-width:200px;opacity:0;padding:0;border-radius:3px;margin:0;box-shadow:1px 4px 8px rgba(0,0,0,.1);transform:translate(0%, 100%);transition:opacity .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li{white-space:nowrap;margin:0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:first-child a,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:first-child button{padding-top:10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:last-child a,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:last-child button{padding-bottom:10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li.wpz-insta_actions-menu_divider{pointer-events:none;background:#ddd;height:1px;padding:0;margin:5px 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li.wpz-insta_actions-menu_delete a:hover{color:#ec2439}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li a,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li button{display:block;white-space:nowrap;color:#242628;width:100%;padding:7px 20px;margin:0;box-sizing:border-box;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li button:hover{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .inline-edit-col-left,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .inline-edit-col-right{display:none}.wpz-insta-admin #wpbody-content>.wrap #poststuff{padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap #poststuff #post-body{margin:0}.wpz-insta-admin #wpbody-content>.wrap #poststuff #post-body #post-body-content{float:none;margin:0}.wpz-insta-admin #wpbody-content>.wrap #poststuff #post-body .postbox-container{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content{display:grid}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content *{pointer-events:inherit}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content>*{grid-column:1;grid-row:1;align-self:start}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content>*:not(.active){pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content>*:not(.active) *{pointer-events:none !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar{display:flex;gap:20px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar.hide{pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar:not(.show-pro) .wpz-insta_pro-only{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar input,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar textarea,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar select{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right{background:#fff;border:1px solid #ddd;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left{display:grid;grid-template-rows:auto 1fr;flex-basis:28%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left.is-pro .wpz-insta_sidebar-left-section{max-height:70vh !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section-head{display:flex;align-items:center;grid-column:1;grid-row:1;background:#fafafa;min-height:30px;padding:20px;border-bottom:1px solid #ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section{grid-column:1;grid-row:2;align-self:start;transition:all .3s ease;overflow-x:hidden;overflow-y:auto}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section:not(.active){pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right{flex-grow:1;position:relative}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right.is-loading{transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right.is-loading.hide-loading::before{opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right.is-loading::before{content:"";position:absolute;top:300px;left:50%;z-index:1;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 50 50' xml:space='preserve'%3E%3Cpath fill='%233496ff' d='M43.935,25.145c0-10.318-8.364-18.683-18.683-18.683c-10.318,0-18.683,8.365-18.683,18.683h4.068c0-8.071,6.543-14.615,14.615-14.615c8.072,0,14.615,6.543,14.615,14.615H43.935z'%3E%3CanimateTransform attributeType='xml' attributeName='transform' type='rotate' from='0 25 25' to='360 25 25' dur='0.6s' repeatCount='indefinite'/%3E%3C/path%3E%3C/svg%3E");background-size:contain;height:64px;width:64px;opacity:1;transform:translateX(-50%);transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section-big-title{font-size:18px;font-weight:600;margin:30px 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section{padding:30px 0 0;border-top:1px solid #ddd;margin:30px 20px 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section:first-child,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.no-top-border{padding-top:0;border-top:0;margin-top:20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-title{font-size:18px;font-weight:600;margin:0 0 15px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-title.smaller-title{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-description{font-size:14px;font-weight:normal;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-description:last-child{margin-bottom:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section p{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section ul li,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section ol li{margin-bottom:1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_text-btn-aligned{display:flex;align-items:stretch;gap:15px;width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_text-btn-aligned>input{flex-grow:1;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn{display:flex;align-items:center;font-size:14px;line-height:2}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode{background:transparent;border:1px solid #ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn{display:grid;text-align:center;color:#3496ff;background:transparent;border:1px solid #3496ff;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn:hover{color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn.success{color:#fff;background:#2b6;border-color:#2b6}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn.success .wpz-insta_shortcode-copy-btn-text-normal{opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn.success .wpz-insta_shortcode-copy-btn-text-success{opacity:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-normal,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-success{grid-column:1;grid-row:1;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-normal{opacity:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-success{opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select.is-set .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button-highlight{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select.is-set .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button{pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select.is-set .wpz-insta_feed-user-select-edit-link{display:inline-block}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select:not(.is-set) .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info{pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input{display:grid;background:#eee;border:1px solid #9ca2a7;border-radius:4px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info{display:flex;align-items:center;justify-content:space-between;grid-column:1;grid-row:1;margin:15px;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-select-info-left .wpz-insta_feed-user-select-info-name{font-size:14px;font-weight:600;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-select-info-left .wpz-insta_feed-user-select-info-type{font-size:12px;color:#81909c;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-remove-button{font-size:13px;font-weight:600;color:#3496ff;background:transparent;border:1px solid #3496ff;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-remove-button:hover{color:#ec2439;border-color:#ec2439}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap{position:relative;display:flex;align-items:stretch;justify-content:stretch;grid-column:1;grid-row:1;pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button-highlight{display:block;position:absolute;top:-2px;left:-2px;right:-2px;bottom:-2px;z-index:1;pointer-events:none;border:0;border-radius:6px;box-shadow:inset 0 0 1px 1px #3496ff,0 0 1px 1px #3496ff;transition:all .3s ease;-webkit-animation:highlighting .8s infinite;animation:highlighting .8s infinite}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button{display:flex;flex-grow:1;position:relative;z-index:2;pointer-events:all;font-size:14px;font-weight:600;color:#242628;background:#eee;opacity:1;border:0;border-radius:4px;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button:hover{color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-edit-link{display:none;margin:20px 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout{display:flex;align-items:end;gap:10px;max-height:999em;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-pro{display:flex;gap:15px;padding:10px;border-radius:4px;box-shadow:0 0 0 2px #f57c00;max-width:76%;box-sizing:border-box}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-pro legend{font-size:13px;font-weight:600;color:#fff;background:#f57c00;padding:0 5px;margin:0 auto;border-radius:2px;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-pro .wpz-insta_feed-layout-option{pointer-events:none;opacity:.75}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout>.wpz-insta_feed-layout-option{margin-bottom:10px !important;max-width:21%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option{display:block;background:transparent;padding:0;border:0;box-shadow:none;outline:none;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option.disabled{pointer-events:none;opacity:.4}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option:hover svg{color:#9ca2a7;fill:#9ca2a7}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option input{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option svg{display:block;color:#81909c;fill:#81909c;max-width:100%;height:auto;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option input:checked~svg{color:#3496ff;fill:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout-etc,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-general,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-profile-general,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-load-more-general{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table{display:flex;flex-direction:column;gap:20px;width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row{display:flex;align-items:center;width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_table-row-full{flex-direction:column;align-items:stretch}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_table-row-full .wpz-insta_table-cell{width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.hidden{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row .wpz-insta_table-cell{display:block;white-space:nowrap;line-height:30px;width:50%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row .wpz-insta_table-cell input{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row>input[type=checkbox]{margin:0 1em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_show-on-hover{display:table-row}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_show-on-hover>strong{display:block;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro{display:flex;flex-direction:column;gap:20px;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro.wpz-insta_pro-only-with-bottom{padding-bottom:10px;border-bottom:2px solid #f57c00}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro.hidden{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro legend{display:flex;width:100%;padding:0;border-bottom:2px solid #f57c00;margin:0 0 10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro legend>strong{font-size:13px;color:#fff;background:#f57c00;padding:0 5px;border-top-left-radius:2px;border-top-right-radius:2px;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro>label{opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-token,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-check-new,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-request-timeout{max-height:0;opacity:0;overflow:hidden;padding-top:0;margin-top:0;margin-bottom:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-token.active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-check-new.active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-request-timeout.active{max-height:999em;opacity:1;padding-top:30px;margin-top:30px;margin-bottom:20px;overflow:visible}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-token #wpz-insta_user-token{display:block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;font-weight:normal;text-overflow:ellipsis;color:#242628;background:#fff;width:100%;padding:4px 8px;border:1px solid #ddd;border-radius:2px;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-request-timeout>label>strong{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-load-more.wpz-insta_pro-only{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding-top:0;padding-bottom:20px;border-top:none;border-bottom:2px solid #f57c00;margin-top:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-load-more.wpz-insta_pro-only .wpz-insta_sidebar-section-title,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-load-more.wpz-insta_pro-only .wpz-insta_table>label{opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview{position:relative;z-index:2;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header{display:flex;align-items:center;padding:0;border-bottom:1px solid #ddd;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-title{flex-grow:1;font-size:14px;font-weight:600;text-align:center;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links{display:flex;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links.disabled{pointer-events:none;opacity:.3}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links.disabled .wpz-insta_widget-preview-header-link.active{background:#ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links.disabled .wpz-insta_widget-preview-header-link.active svg{fill:#81909c}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link{display:flex;align-items:center;justify-content:center;cursor:pointer;background:#ddd;min-width:70px;min-height:70px;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link:hover{background:#eee}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link.active{cursor:default;color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link.active svg{fill:#fff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link svg{fill:#81909c;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view{display:flex;align-items:start;justify-content:center;padding:0;margin:0;overflow-x:hidden;overflow-y:auto;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.wpz-insta_widget-preview-size-desktop .wpz-insta_widget-preview-view-inner{max-width:500px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.wpz-insta_widget-preview-size-tablet .wpz-insta_widget-preview-view-inner{max-width:768px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.wpz-insta_widget-preview-size-mobile .wpz-insta_widget-preview-view-inner{max-width:380px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.layout-fullwidth.wpz-insta_widget-preview-size-desktop .wpz-insta_widget-preview-view-inner{max-width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view .wpz-insta_widget-preview-view-inner{flex-grow:1;padding:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view .wpz-insta_widget-preview-view-inner iframe{display:block;height:400px;width:100%;visibility:visible;opacity:1;overflow:hidden;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view .wpz-insta_widget-preview-view-inner iframe.wpz-insta_preview-hidden{pointer-events:none;visibility:hidden;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:25px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-title{font-size:24px;font-weight:600;padding:0;margin:0 0 10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-description{padding:0;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts{display:grid;grid-template-columns:repeat(auto-fill, minmax(300px, 1fr));gap:30px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li{cursor:pointer;background:#eee;padding:15px;border:1px solid #9ca2a7;border-radius:4px;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li:hover{color:#fff;background:#3496ff;border-color:#0063cd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li:hover h3{color:#fff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li:hover p{color:rgba(255,255,255,.6)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li h3{font-size:14px;font-weight:600;padding:0;margin:0 0 5px;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li p{font-size:12px;color:#81909c;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect hr{margin:30px 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-subtitle{font-size:14px;font-weight:normal;padding:0;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support .section-title,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license .section-title{font-size:20px;font-weight:600;line-height:24px;margin:0 0 1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support .section-title svg,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license .section-title svg{vertical-align:text-bottom;margin:0 5px 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support .section-description,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license .section-description{padding:0;margin:0 0 2em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:25px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-title{font-size:24px;font-weight:600;line-height:29px;margin:0 0 16px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-description{font-size:14px;white-space:pre-wrap;margin:0 0 30px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options{display:flex;flex-wrap:wrap;gap:30px;margin:0 0 30px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option{display:flex;flex-direction:column;min-width:350px;padding:20px;border:1px solid #ddd;border-radius:3px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-title{font-size:16px;font-weight:600;line-height:19px;margin:0 0 16px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-checklist{font-size:14px;padding:0;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-checklist li{line-height:18px;background:url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0C4.03759 0 0 4.03759 0 9C0 13.9624 4.03759 18 9 18C13.9624 18 18 13.9624 18 9C18 4.03759 13.9624 0 9 0ZM14.0301 6.63158L8.2782 12.3383C7.93985 12.6767 7.3985 12.6992 7.03759 12.3609L3.99248 9.58647C3.63158 9.24812 3.60902 8.68421 3.92481 8.32331C4.26316 7.96241 4.82707 7.93985 5.18797 8.2782L7.6015 10.4887L12.7444 5.34586C13.1053 4.98496 13.6692 4.98496 14.0301 5.34586C14.391 5.70677 14.391 6.27068 14.0301 6.63158Z' fill='%2322BB66'/%3E%3C/svg%3E");background-position:0 5px;background-repeat:no-repeat;min-height:18px;padding:5px 0 5px 32px;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-token-input{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;line-height:17px;color:#242628;padding:10px;border:1px solid #ddd;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-token-input:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-token-input:focus{border-color:#3496ff;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button{display:flex;cursor:pointer;align-items:center;justify-content:center;font-weight:600;line-height:1;color:#fff;background:#3496ff;background-position:center left;background-repeat:no-repeat;width:100%;padding:15px 40px;border:0;border-radius:2px;margin:auto 0 0;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button:focus{background-color:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button.disabled{pointer-events:none;opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button svg{margin:0 16px 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-notice{display:flex;align-items:center;font-size:13px;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-notice svg{margin:0 12px 0 0}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap{display:flex;align-items:center;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:30px;border:1px solid #ddd;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.1);margin:20px 0}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-logo{padding:0;margin:0 30px 0 0}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-logo a{display:block;text-indent:-999em;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAsUAAAB1CAYAAACmnpxEAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3BpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQwIDc5LjE2MDQ1MSwgMjAxNy8wNS8wNi0wMTowODoyMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGODdGMTE3NDA3MjA2ODExODIyQUJEN0ZFNTE5QkYyRSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyMERERTJGNDlFNjgxMUU4ODM0NkExODhFNzlBMDMzQiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyMERERTJGMzlFNjgxMUU4ODM0NkExODhFNzlBMDMzQiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxNSAoTWFjaW50b3NoKSI+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 .pro-only{position:absolute;top:0;right:0;line-height:1.5;color:#fff;background:#f57c00;padding:0 4px;border-radius:2px;transform:translate(50%, -50%)}.wpz-insta-admin #wpbody-content>.wrap>h1.wp-heading-inline,.wpz-insta-admin #wpbody-content>.wrap>.page-title-action,.wpz-insta-admin #wpbody-content>.wrap>.wp-header-end,.wpz-insta-admin #wpbody-content>.wrap>.wpz-insta-wrap~#posts-filter>.search-box,.wpz-insta-admin #wpbody-content>.wrap>.wpz-insta-wrap~#posts-filter>.tablenav,.wpz-insta-admin #wpbody-content>.wrap>.wpz-insta-wrap~#posts-filter>.wp-list-table>tfoot,.wpz-insta-admin #wpbody-content>.wrap #titlediv{display:none !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-notices .notice{display:block !important}.wpz-insta-admin #wpbody-content>.wrap input,.wpz-insta-admin #wpbody-content>.wrap textarea,.wpz-insta-admin #wpbody-content>.wrap select{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-weight:normal;color:#242628;border:1px solid #9ca2a7;border-radius:2px;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap input:hover,.wpz-insta-admin #wpbody-content>.wrap input:focus,.wpz-insta-admin #wpbody-content>.wrap textarea:hover,.wpz-insta-admin #wpbody-content>.wrap textarea:focus,.wpz-insta-admin #wpbody-content>.wrap select:hover,.wpz-insta-admin #wpbody-content>.wrap select:focus{color:#242628;border-color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap input{color:#242628}.wpz-insta-admin #wpbody-content>.wrap input.wpz-insta_input{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.wpz-insta-admin #wpbody-content>.wrap input.wpz-insta_input-nobg{background:transparent}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]{display:inline-flex;align-items:center;justify-content:center;color:#fff;background-color:#fff;height:1.25rem;width:1.25rem;border:none;border-radius:2px;box-shadow:inset 0 0 0 1px #81909c;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:hover{background-color:#ddd !important;box-shadow:inset 0 0 0 1px #81909c !important}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:hover:checked{background-color:#70b5fe !important;box-shadow:inset 0 0 0 1px transparent !important}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:focus{outline:none;box-shadow:inset 0 0 0 1px #81909c}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:focus:checked{box-shadow:inset 0 0 0 1px transparent}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]::before{transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:checked{background-color:#3496ff;box-shadow:inset 0 0 0 1px transparent}.wpz-insta-admin #wpbody-content>.wrap input[type=checkbox]:checked::before{content:url("data:image/svg+xml;utf8,%3Csvg%20width%3D%2214%22%20height%3D%2212%22%20viewBox%3D%220%200%2014%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12.779%201.00004L5.3618%2010.9753L1.06089%207.77735%22%20stroke%3D%22white%22%20stroke-width%3D%221.2%22%2F%3E%3C%2Fsvg%3E%0A");display:block;float:none;height:auto;width:auto;margin:0}.wpz-insta-admin #wpbody-content>.wrap .disabled,.wpz-insta-admin #wpbody-content>.wrap .disable{pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .disable{opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .help{display:inline-block;cursor:help;font-size:20px;vertical-align:text-bottom;height:16px;width:16px;transition:all .2s ease;position:relative}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field{padding:0;margin:0 0 2em}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field label>strong{font-size:15px !important}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field label>em{color:rgba(36,38,40,.8)}.wpz-insta-admin #wpbody-content>.wrap .wide-text-field input[type=text]{display:block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:15px;font-weight:normal;line-height:40px;color:#242628;width:100%;min-height:40px;padding:0 10px;box-sizing:border-box;margin:.7em 0}.wpz-insta-admin #wpbody-content>.wrap .submit-button{padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .button.disabled{pointer-events:none !important}.wpz-insta-admin #wpbody-content>.wrap .button:not(.wp-color-result),.wpz-insta-admin #wpbody-content>.wrap .button-primary,.wpz-insta-admin #wpbody-content>.wrap .button-secondary{display:inline-flex;align-items:center;justify-content:center;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:13px;font-weight:600;line-height:35px;min-height:35px;padding:0 12px;border:0;border-radius:2px;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .button:not(.wp-color-result).button-large,.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-large,.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-large{min-height:48px;padding:0 40px;margin:0}.wpz-insta-admin #wpbody-content>.wrap .button.wp-color-result{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:13px}.wpz-insta-admin #wpbody-content>.wrap .button-primary{color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .button-primary:hover,.wpz-insta-admin #wpbody-content>.wrap .button-primary:active{color:#fff;background:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-positive{color:#fff;background:#2b6}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-positive:hover,.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-positive:active{background:#3bdb82}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-negative{color:#fff;background:#ec2439}.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-negative:hover,.wpz-insta-admin #wpbody-content>.wrap .button-primary.button-negative:active{background:#f05161}.wpz-insta-admin #wpbody-content>.wrap .button-secondary{color:#81909c;background:#fff;box-shadow:inset 0 0 0 1px #ddd}.wpz-insta-admin #wpbody-content>.wrap .button-secondary:hover,.wpz-insta-admin #wpbody-content>.wrap .button-secondary:active{background:#ddd}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-positive{color:#2b6;background:#fff;box-shadow:inset 0 0 0 1px #2b6}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-positive:hover,.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-positive:active{color:#242628;background:#fff;box-shadow:inset 0 0 0 1px #242628}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-negative{color:#ec2439;background:#fff;box-shadow:inset 0 0 0 1px #ec2439}.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-negative:hover,.wpz-insta-admin #wpbody-content>.wrap .button-secondary.button-negative:active{color:#242628;background:#fff;box-shadow:inset 0 0 0 1px #242628}.wpz-insta-admin #wpbody-content>.wrap .button-link{color:#3496ff;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link{font-weight:normal;line-height:1;min-height:0;padding:0;margin:1.5em 0 0}.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link:hover,.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link:active,.wpz-insta-admin #wpbody-content>.wrap .button-link.wpz-insta_button-link:focus{color:#70b5fe;background:transparent}.wpz-insta-admin #wpbody-content>.wrap .button-link:hover,.wpz-insta-admin #wpbody-content>.wrap .button-link:active,.wpz-insta-admin #wpbody-content>.wrap .button-link:focus{color:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_suffixed-number-input{display:flex;gap:12px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_suffixed-number-input>*{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_suffixed-number-input>*:first-child{flex-grow:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_profile-photo{display:block;height:100px;width:100px;border-radius:50%}.wpz-insta-admin #wpbody-content>.wrap a{text-decoration:none;color:#3496ff;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap a:hover,.wpz-insta-admin #wpbody-content>.wrap a:active,.wpz-insta-admin #wpbody-content>.wrap a:focus{text-decoration:none;color:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap a.linked{border-bottom:1px solid rgba(52,150,255,.3)}.wpz-insta-admin #wpbody-content>.wrap a.linked:hover,.wpz-insta-admin #wpbody-content>.wrap a.linked:active,.wpz-insta-admin #wpbody-content>.wrap a.linked:focus{border-bottom-color:rgba(112,181,254,.3)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button{display:inline-flex;align-items:center;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;font-weight:600;text-decoration:none;color:#242628;margin:10px 0 0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:hover svg,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button:active svg{color:#3496ff;fill:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_back-button svg{color:#242628;fill:#242628;margin:0 6px 0 0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpzinsta-pointer{position:absolute;top:calc(100% + 3px);left:50%;z-index:1000;cursor:default;font-size:14px;color:#fff;background:#3496ff;width:-webkit-max-content;width:-moz-max-content;width:max-content;padding:4px 10px;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.3);transform:translateX(-50%);-webkit-animation-name:bounceFade;animation-name:bounceFade;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.wpz-insta-admin #wpbody-content>.wrap .wpzinsta-pointer>i{position:absolute;top:-10px;left:50%;pointer-events:none;height:10px;width:20px;transform:translateX(-50%);overflow:hidden}.wpz-insta-admin #wpbody-content>.wrap .wpzinsta-pointer>i::before{content:"";position:absolute;left:50%;bottom:-4px;pointer-events:initial;background:#3496ff;height:8px;width:8px;box-shadow:0 0 2px rgba(0,0,0,.3);transform:translateX(-50%) rotateZ(45deg)}.wpz-insta-admin #wpbody-content>.wrap .fit-max-content{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-add-new a,.wpz-insta-admin #wpbody-content>.wrap #wpz-insta_tabs-config-cnnct .wpz-insta_tabs-config-connect-add{position:relative}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container{display:inline-flex;position:relative}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container:not(:focus-within) .wp-picker-holder{pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-color-result{position:absolute;top:50%;left:5px;pointer-events:none;height:20px;min-height:0;width:20px;padding:0;border-radius:4px;margin:0;transform:translateY(-50%)}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-color-result:active{transform:translateY(-50%) !important}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-color-result .wp-color-result-text{display:none}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-input-wrap{display:block}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-input-wrap input{line-height:2;width:auto;padding-left:30px}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-input-wrap .wp-picker-clear{display:none}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-holder{display:block;position:fixed;top:100%;left:0;z-index:999;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wp-picker-container .wp-picker-holder .iris-picker{display:block !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns{display:flex;align-items:center;list-style:none;padding:0;margin:1.5em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns.wpz-insta_two-columns-left-small{align-items:flex-start;gap:30px;margin-top:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns.wpz-insta_two-columns-left-small>*{text-align:left !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns.wpz-insta_two-columns-left-small>*:first-child{flex-grow:0;width:auto}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns>*{flex-grow:1;list-style:none;width:100%;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns>*:first-child{text-align:left}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_two-columns>*:last-child{text-align:right}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_notice{display:flex;align-items:center;font-size:12px;padding:0;margin:1.5em 0 0 !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_notice::before{content:"";display:block;background-image:url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.3 3.5H7.7V4.9H6.3V3.5ZM6.3 6.3H7.7V10.5H6.3V6.3ZM7 0C3.136 0 0 3.136 0 7C0 10.864 3.136 14 7 14C10.864 14 14 10.864 14 7C14 3.136 10.864 0 7 0ZM7 12.6C3.913 12.6 1.4 10.087 1.4 7C1.4 3.913 3.913 1.4 7 1.4C10.087 1.4 12.6 3.913 12.6 7C12.6 10.087 10.087 12.6 7 12.6Z'/%3E%3C/svg%3E");height:14px;width:14px;margin:0 .8em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_notice p{padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:15px 30px 0;border:1px solid #ddd;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.1);margin:3em 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header #major-publishing-actions{background:transparent;padding:0 0 1em;border:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header #major-publishing-actions #publishing-action{display:flex;align-items:center;gap:20px;float:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header #major-publishing-actions #publishing-action .spinner{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header.wpz-insta-wrap-sides{display:flex;align-items:center;margin-top:1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header.wpz-insta-wrap-sides .wpz-insta-wrap-left{flex-grow:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title{font-size:24px;font-weight:600;line-height:29px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small{font-size:14px;font-weight:normal;line-height:17px;color:#81909c}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small a{text-decoration:none;color:#81909c;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title small a:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title .pro{color:#f57c00}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title #title{position:relative;font-size:24px;font-weight:600;text-overflow:ellipsis;line-height:29px;background:transparent url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 17.2505V21.0005H6.75L17.81 9.94055L14.06 6.19055L3 17.2505ZM20.71 7.04055C21.1 6.65055 21.1 6.02055 20.71 5.63055L18.37 3.29055C17.98 2.90055 17.35 2.90055 16.96 3.29055L15.13 5.12055L18.88 8.87055L20.71 7.04055Z' fill='%2381909C'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:center right;min-width:100px;max-width:82%;padding:0 24px 0 0;border:0;outline:none;margin:0;overflow:hidden;box-shadow:0 0 0 1px transparent;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title #title:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-title #title:focus{box-shadow:0 0 0 1px #3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-sub-title{font-size:18px;font-weight:normal;line-height:22px;color:#242628;margin:16px 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav{font-size:18px;font-weight:normal;line-height:22px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul{display:flex;list-style:none;gap:40px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li{position:relative;list-style:none;padding:0;margin:0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li.active a{cursor:default;pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li.active a::after{transform:translateY(0)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a{display:block;position:relative;text-decoration:none;color:#242628;outline:none;padding:16px 0;box-shadow:none;overflow:hidden;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a:active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a:focus{outline:none;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a:hover{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-header .wpz-insta_settings-main-nav ul li a::after{content:"";position:absolute;left:0;right:0;bottom:0;background:#3496ff;height:6px;border-radius:2px 2px 0 0;transform:translateY(100%);transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap.with-bg{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;color:#242628;background:#fff;padding:25px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap.with-bg *:not(h2):not(small){font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter{margin:2em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:15px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td{border-bottom:1px solid #000}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_account-token,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead td.column-wpz-insta_account-token{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th{font-weight:600;padding-left:0;padding-right:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th.column-wpz-insta_actions{text-align:right}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th a{color:#000;padding:14px 0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table thead th a:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr{display:table-row !important;position:relative;background:transparent}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr:first-child th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr:first-child td,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr.inline-edit-row th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr.inline-edit-row td{border-top:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody tr.inline-edit-row td{padding-top:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td{vertical-align:middle;padding:20px 0;border-top:1px solid #ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.column-wpz-insta_account-token,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td.column-wpz-insta_account-photo,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td.column-wpz-insta_account-bio,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td.column-wpz-insta_account-token{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody th.check-column{padding:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td>*{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td a:not(.button){color:#3496ff;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td a:not(.button):hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td a:not(.button):active{color:#000}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .row-actions{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit{overflow:hidden;-webkit-animation-name:slidedown;animation-name:slidedown;-webkit-animation-duration:1s;animation-duration:1s}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns{display:flex;list-style:none;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li{flex-grow:1;list-style:none;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li div{display:block;margin:0 0 10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li div:last-child{margin-bottom:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li strong:first-child,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li label>strong:first-child{display:inline-block;margin:0 0 5px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li input:not(.widefat),.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .wpz-insta_quick-edit .wpz-insta_quick-edit-columns>li textarea{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;width:60%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save{position:absolute;top:-10px;right:0;padding:0;transform:translateY(-100%)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button{float:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel{color:#3496ff;background:transparent;box-shadow:inset 0 0 0 1px #3496ff;margin:0 1em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel:active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .button.cancel:focus{color:#000;box-shadow:inset 0 0 0 1px #000}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody td .inline-edit-save .spinner{float:left}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-title,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account{width:50%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account a{color:#242628}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_account a:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions{text-align:right;width:5%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions strong{position:relative;cursor:pointer;font-size:20px;font-weight:600;text-align:right;white-space:nowrap;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions strong:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .column-wpz-insta_actions strong:active{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu{display:inline-block;position:relative;text-align:right}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu:hover .wpz-insta_hidden{pointer-events:auto;opacity:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu:hover strong{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu:hover strong::after{content:"";position:absolute;left:-50px;right:0;bottom:-15px;height:25px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden{position:absolute;right:0;bottom:-10px;z-index:999;pointer-events:none;text-align:left;background:#fff;min-width:200px;opacity:0;padding:0;border-radius:3px;margin:0;box-shadow:1px 4px 8px rgba(0,0,0,.1);transform:translate(0%, 100%);transition:opacity .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li{white-space:nowrap;margin:0;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:first-child a,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:first-child button{padding-top:10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:last-child a,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li:last-child button{padding-bottom:10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li.wpz-insta_actions-menu_divider{pointer-events:none;background:#ddd;height:1px;padding:0;margin:5px 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li.wpz-insta_actions-menu_delete a:hover{color:#ec2439}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li a,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li button{display:block;white-space:nowrap;color:#242628;width:100%;padding:7px 20px;margin:0;box-sizing:border-box;transition:all .2s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li a:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .wpz-insta_actions-menu .wpz-insta_hidden li button:hover{color:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .inline-edit-col-left,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta-wrap~#posts-filter .wp-list-table tbody .inline-edit-col-right{display:none}.wpz-insta-admin #wpbody-content>.wrap #poststuff{padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap #poststuff #post-body{margin:0}.wpz-insta-admin #wpbody-content>.wrap #poststuff #post-body #post-body-content{float:none;margin:0}.wpz-insta-admin #wpbody-content>.wrap #poststuff #post-body .postbox-container{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content{display:grid}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content *{pointer-events:inherit}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content>*{grid-column:1;grid-row:1;align-self:start}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content>*:not(.active){pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-content>*:not(.active) *{pointer-events:none !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar{display:flex;gap:20px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar.hide{pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar:not(.show-pro) .wpz-insta_pro-only{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar input,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar textarea,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar select{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right{background:#fff;border:1px solid #ddd;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left{display:grid;grid-template-rows:auto 1fr;flex-basis:28%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left.is-pro .wpz-insta_sidebar-left-section{max-height:70vh !important}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section-head{display:flex;align-items:center;grid-column:1;grid-row:1;background:#fafafa;min-height:30px;padding:20px;border-bottom:1px solid #ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section{grid-column:1;grid-row:2;align-self:start;transition:all .3s ease;overflow-x:hidden;overflow-y:auto}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-left .wpz-insta_sidebar-left-section:not(.active){pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right{flex-grow:1;position:relative}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right.is-loading{transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right.is-loading.hide-loading::before{opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar .wpz-insta_sidebar-right.is-loading::before{content:"";position:absolute;top:300px;left:50%;z-index:1;background-image:url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 50 50' xml:space='preserve'%3E%3Cpath fill='%233496ff' d='M43.935,25.145c0-10.318-8.364-18.683-18.683-18.683c-10.318,0-18.683,8.365-18.683,18.683h4.068c0-8.071,6.543-14.615,14.615-14.615c8.072,0,14.615,6.543,14.615,14.615H43.935z'%3E%3CanimateTransform attributeType='xml' attributeName='transform' type='rotate' from='0 25 25' to='360 25 25' dur='0.6s' repeatCount='indefinite'/%3E%3C/path%3E%3C/svg%3E");background-size:contain;height:64px;width:64px;opacity:1;transform:translateX(-50%);transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section-big-title{font-size:18px;font-weight:600;margin:30px 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section{padding:30px 0 0;border-top:1px solid #ddd;margin:30px 20px 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section:first-child,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.no-top-border{padding-top:0;border-top:0;margin-top:20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-title{font-size:18px;font-weight:600;margin:0 0 15px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-title.smaller-title{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-description{font-size:14px;font-weight:normal;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_sidebar-section-description:last-child{margin-bottom:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section p{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section ul li,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section ol li{margin-bottom:1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_text-btn-aligned{display:flex;align-items:stretch;gap:15px;width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_text-btn-aligned>input{flex-grow:1;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn{display:flex;align-items:center;font-size:14px;line-height:2}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode{background:transparent;border:1px solid #ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn{display:grid;text-align:center;color:#3496ff;background:transparent;border:1px solid #3496ff;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn:hover{color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn.success{color:#fff;background:#2b6;border-color:#2b6}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn.success .wpz-insta_shortcode-copy-btn-text-normal{opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn.success .wpz-insta_shortcode-copy-btn-text-success{opacity:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-normal,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-success{grid-column:1;grid-row:1;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-normal{opacity:1}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_shortcode-copy-btn .wpz-insta_shortcode-copy-btn-text-success{opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select.is-set .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button-highlight{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select.is-set .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button{pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select.is-set .wpz-insta_feed-user-select-edit-link{display:inline-block}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select:not(.is-set) .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info{pointer-events:none;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input{display:grid;background:#eee;border:1px solid #9ca2a7;border-radius:4px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info{display:flex;align-items:center;justify-content:space-between;grid-column:1;grid-row:1;margin:15px;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-select-info-left .wpz-insta_feed-user-select-info-name{font-size:14px;font-weight:600;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-select-info-left .wpz-insta_feed-user-select-info-type{font-size:12px;color:#81909c;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-remove-button{font-size:13px;font-weight:600;color:#3496ff;background:transparent;border:1px solid #3496ff;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-info .wpz-insta_feed-user-remove-button:hover{color:#ec2439;border-color:#ec2439}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap{position:relative;display:flex;align-items:stretch;justify-content:stretch;grid-column:1;grid-row:1;pointer-events:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button-highlight{display:block;position:absolute;top:-2px;left:-2px;right:-2px;bottom:-2px;z-index:1;pointer-events:none;border:0;border-radius:6px;box-shadow:inset 0 0 1px 1px #3496ff,0 0 1px 1px #3496ff;transition:all .3s ease;-webkit-animation:highlighting .8s infinite;animation:highlighting .8s infinite}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button{display:flex;flex-grow:1;position:relative;z-index:2;pointer-events:all;font-size:14px;font-weight:600;color:#242628;background:#eee;opacity:1;border:0;border-radius:4px;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-input .wpz-insta_feed-user-select-button-wrap .wpz-insta_feed-user-select-button:hover{color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-user-select .wpz-insta_feed-user-select-edit-link{display:none;margin:20px 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout{display:flex;align-items:end;gap:10px;max-height:999em;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-pro{display:flex;gap:15px;padding:10px;border-radius:4px;box-shadow:0 0 0 2px #f57c00;max-width:76%;box-sizing:border-box}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-pro legend{font-size:13px;font-weight:600;color:#fff;background:#f57c00;padding:0 5px;margin:0 auto;border-radius:2px;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-pro .wpz-insta_feed-layout-option{pointer-events:none;opacity:.75}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout>.wpz-insta_feed-layout-option{margin-bottom:10px !important;max-width:21%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option{display:block;background:transparent;padding:0;border:0;box-shadow:none;outline:none;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option.disabled{pointer-events:none;opacity:.4}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option:hover svg{color:#9ca2a7;fill:#9ca2a7}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option input{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option svg{display:block;color:#81909c;fill:#81909c;max-width:100%;height:auto;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout .wpz-insta_feed-layout-option input:checked~svg{color:#3496ff;fill:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-layout-etc,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-general,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-profile-general,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-load-more-general{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table{display:flex;flex-direction:column;gap:20px;width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row{display:flex;align-items:center;width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_table-row-full{flex-direction:column;align-items:stretch}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.wpz-insta_table-row-full .wpz-insta_table-cell{width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row.hidden{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row .wpz-insta_table-cell{display:block;white-space:nowrap;line-height:30px;width:50%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row .wpz-insta_table-cell input{margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_table .wpz-insta_table-row>input[type=checkbox]{margin:0 1em 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_show-on-hover{display:table-row}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_show-on-hover>strong{display:block;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro{display:flex;flex-direction:column;gap:20px;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro.wpz-insta_pro-only-with-bottom{padding-bottom:10px;border-bottom:2px solid #f57c00}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro.hidden{display:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro legend{display:flex;width:100%;padding:0;border-bottom:2px solid #f57c00;margin:0 0 10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro legend>strong{font-size:13px;color:#fff;background:#f57c00;padding:0 5px;border-top-left-radius:2px;border-top-right-radius:2px;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section .wpz-insta_feed-only-pro>label{opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-token,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-check-new,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-request-timeout{max-height:0;opacity:0;overflow:hidden;padding-top:0;margin-top:0;margin-bottom:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-token.active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-check-new.active,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-request-timeout.active{max-height:999em;opacity:1;padding-top:30px;margin-top:30px;margin-bottom:20px;overflow:visible}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-token #wpz-insta_user-token{display:block;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;font-weight:normal;text-overflow:ellipsis;color:#242628;background:#fff;width:100%;padding:4px 8px;border:1px solid #ddd;border-radius:2px;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-request-timeout>label>strong{font-size:14px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-load-more.wpz-insta_pro-only{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding-top:0;padding-bottom:20px;border-top:none;border-bottom:2px solid #f57c00;margin-top:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-load-more.wpz-insta_pro-only .wpz-insta_sidebar-section-title,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_sidebar-section.wpz-insta_sidebar-section-load-more.wpz-insta_pro-only .wpz-insta_table>label{opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview{position:relative;z-index:2;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header{display:flex;align-items:center;padding:0;border-bottom:1px solid #ddd;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-title{flex-grow:1;font-size:14px;font-weight:600;text-align:center;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links{display:flex;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links.disabled{pointer-events:none;opacity:.3}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links.disabled .wpz-insta_widget-preview-header-link.active{background:#ddd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links.disabled .wpz-insta_widget-preview-header-link.active svg{fill:#81909c}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link{display:flex;align-items:center;justify-content:center;cursor:pointer;background:#ddd;min-width:70px;min-height:70px;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link:hover{background:#eee}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link.active{cursor:default;color:#fff;background:#3496ff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link.active svg{fill:#fff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-header .wpz-insta_widget-preview-header-links .wpz-insta_widget-preview-header-link svg{fill:#81909c;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view{display:flex;align-items:start;justify-content:center;padding:0;margin:0;overflow-x:hidden;overflow-y:auto;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.wpz-insta_widget-preview-size-desktop .wpz-insta_widget-preview-view-inner{max-width:500px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.wpz-insta_widget-preview-size-tablet .wpz-insta_widget-preview-view-inner{max-width:768px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.wpz-insta_widget-preview-size-mobile .wpz-insta_widget-preview-view-inner{max-width:380px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view.layout-fullwidth.wpz-insta_widget-preview-size-desktop .wpz-insta_widget-preview-view-inner{max-width:100%}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view .wpz-insta_widget-preview-view-inner{flex-grow:1;padding:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view .wpz-insta_widget-preview-view-inner iframe{display:block;height:400px;width:100%;visibility:visible;opacity:1;overflow:hidden;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_widget-preview .wpz-insta_widget-preview-view .wpz-insta_widget-preview-view-inner iframe.wpz-insta_preview-hidden{pointer-events:none;visibility:hidden;opacity:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:25px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-title{font-size:24px;font-weight:600;padding:0;margin:0 0 10px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-description{padding:0;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts{display:grid;grid-template-columns:repeat(auto-fill, minmax(300px, 1fr));gap:30px;padding:0;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li{cursor:pointer;background:#eee;padding:15px;border:1px solid #9ca2a7;border-radius:4px;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li:hover{color:#fff;background:#3496ff;border-color:#0063cd}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li:hover h3{color:#fff}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li:hover p{color:rgba(255,255,255,.6)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li h3{font-size:14px;font-weight:600;padding:0;margin:0 0 5px;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-accounts li p{font-size:12px;color:#81909c;padding:0;margin:0;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect hr{margin:30px 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_tabs-config-connect .wpz-insta_tabs-config-connect-subtitle{font-size:14px;font-weight:normal;padding:0;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support .section-title,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license .section-title{font-size:20px;font-weight:600;line-height:24px;margin:0 0 1em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support .section-title svg,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license .section-title svg{vertical-align:text-bottom;margin:0 5px 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-support .section-description,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-license .section-description{padding:0;margin:0 0 2em}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:25px 30px;border:1px solid #ddd;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.1)}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-title{font-size:24px;font-weight:600;line-height:29px;margin:0 0 16px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-description{font-size:14px;white-space:pre-wrap;margin:0 0 30px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options{display:flex;flex-wrap:wrap;gap:30px;margin:0 0 30px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option{display:flex;flex-direction:column;min-width:350px;padding:20px;border:1px solid #ddd;border-radius:3px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-title{font-size:16px;font-weight:600;line-height:19px;margin:0 0 16px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-checklist{font-size:14px;padding:0;margin:0 0 20px}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-checklist li{line-height:18px;background:url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0C4.03759 0 0 4.03759 0 9C0 13.9624 4.03759 18 9 18C13.9624 18 18 13.9624 18 9C18 4.03759 13.9624 0 9 0ZM14.0301 6.63158L8.2782 12.3383C7.93985 12.6767 7.3985 12.6992 7.03759 12.3609L3.99248 9.58647C3.63158 9.24812 3.60902 8.68421 3.92481 8.32331C4.26316 7.96241 4.82707 7.93985 5.18797 8.2782L7.6015 10.4887L12.7444 5.34586C13.1053 4.98496 13.6692 4.98496 14.0301 5.34586C14.391 5.70677 14.391 6.27068 14.0301 6.63158Z' fill='%2322BB66'/%3E%3C/svg%3E");background-position:0 5px;background-repeat:no-repeat;min-height:18px;padding:5px 0 5px 32px;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-token-input{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:14px;line-height:17px;color:#242628;padding:10px;border:1px solid #ddd;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-token-input:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-token-input:focus{border-color:#3496ff;box-shadow:none}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button{display:flex;cursor:pointer;align-items:center;justify-content:center;font-weight:600;line-height:1;color:#fff;background:#3496ff;background-position:center left;background-repeat:no-repeat;width:100%;padding:15px 40px;border:0;border-radius:2px;margin:auto 0 0;box-shadow:none;transition:all .3s ease}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button:hover,.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button:focus{background-color:#70b5fe}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button.disabled{pointer-events:none;opacity:.5}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .account-options .account-option .account-option-button svg{margin:0 16px 0 0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-notice{display:flex;align-items:center;font-size:13px;margin:0}.wpz-insta-admin #wpbody-content>.wrap .wpz-insta_settings-connect .section-notice svg{margin:0 12px 0 0}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap{display:flex;align-items:center;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;color:#242628;background:#fff;padding:30px;border:1px solid #ddd;border-radius:3px;box-shadow:1px 1px 2px rgba(0,0,0,.1);margin:20px 0}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-logo{padding:0;margin:0 30px 0 0}.wpz-insta-admin .wpz-insta_settings-footer .wpz-insta_settings-footer-wrap .wpz-insta_settings-footer-logo a{display:block;text-indent:-999em;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAsUAAAB1CAYAAACmnpxEAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3BpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQwIDc5LjE2MDQ1MSwgMjAxNy8wNS8wNi0wMTowODoyMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpGODdGMTE3NDA3MjA2ODExODIyQUJEN0ZFNTE5QkYyRSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoyMERERTJGNDlFNjgxMUU4ODM0NkExODhFNzlBMDMzQiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoyMERERTJGMzlFNjgxMUU4ODM0NkExODhFNzlBMDMzQiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxNSAoTWFjaW50b3NoKSI+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}
|
dist/styles/frontend/index-rtl.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.zoom-instagram-widget__follow-me{margin-top:15px;text-align:center}.zoom-instagram{font-size:14px;overflow:hidden;display:block}.zoom-instagram form[disabled]{pointer-events:none}.zoom-instagram form[disabled]:not(.loading){opacity:.5}.zoom-instagram .zoom-instagram-widget__header{display:flex;gap:20px;margin:0 0 25px}.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-column-left img{height:70px;width:70px;border-radius:50%}.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-column-right{display:flex;flex-direction:column;justify-content:center}.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-name{font-size:1em;font-weight:600;line-height:1.5;padding:0;margin:0 0 5px;letter-spacing:0}.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-user{font-weight:600;line-height:normal;padding:0;margin:0;opacity:.8}.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-user a{text-decoration:none}.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-bio{font-size:13px;font-weight:normal;line-height:1.6;padding:0;margin:6px 0 0}.zoom-instagram .zoom-instagram-widget__footer{display:flex;justify-content:center;align-items:center;flex-direction:row;flex-wrap:wrap;gap:15px;margin:25px 0 0}.zoom-instagram .zoom-instagram-widget__footer>*{display:block}.zoom-instagram .zoom-instagram-widget__items-wrapper{overflow:hidden}.zoom-instagram .zoom-instagram-widget__items{display:grid;grid-template-columns:repeat(3, 1fr);gap:10px;list-style:none !important;padding:0;margin:0}.zoom-instagram .zoom-instagram-widget__items.layout-grid .zoom-instagram-widget__item img{width:100%;aspect-ratio:1/1}.zoom-instagram .zoom-instagram-widget__items.layout-fullwidth{display:flex;width:5000px}.zoom-instagram .zoom-instagram-widget__items.layout-fullwidth .zoom-instagram-widget__item img{aspect-ratio:1}.layout-legacy.zoom-instagram-widget__items{list-style:none !important}.layout-legacy.zoom-instagram-widget__items .zoom-instagram-widget__item{float:right;position:relative;margin-top:0 !important;padding:0}.layout-legacy.zoom-instagram-widget__items .zoom-instagram-widget__overlay{position:relative}.zoom-instagram-widget__item{position:relative;transition:all .1s ease-in-out}.zoom-instagram-widget__item.new{opacity:0;transform:scale(0);transform-origin:center;-webkit-animation:show 500ms linear forwards;animation:show 500ms linear forwards}.zoom-instagram-widget__item .zoom-instagram-widget__item-inner-wrap{position:relative;height:100%;overflow:hidden}.zoom-instagram-widget__item img{-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;height:100%}.widget_block .zoom-instagram-widget__items ul li.zoom-instagram-widget__item,.widget.zoom-instagram-widget ul li.zoom-instagram-widget__item,.widget.zoom-new-instagram-widget ul li.zoom-instagram-widget__item{padding:0}.widget_block .zoom-instagram-widget__items-wrapper,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items-wrapper{overflow:hidden}.widget_block .zoom-instagram-widget__items,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items{display:grid;grid-template-columns:repeat(3, 1fr);gap:10px;padding:0;margin:0}.widget_block .zoom-instagram-widget__items::before,.widget_block .zoom-instagram-widget__items::after,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items::before,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items::after{display:none}.widget_block .zoom-instagram-widget__items.layout-grid .zoom-instagram-widget__item img,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items.layout-grid .zoom-instagram-widget__item img{width:100%;aspect-ratio:1/1}.widget_block .zoom-instagram-widget__items.layout-fullwidth,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items.layout-fullwidth{display:flex;width:5000px}.widget_block .zoom-instagram-widget__items.layout-fullwidth .zoom-instagram-widget__item img,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items.layout-fullwidth .zoom-instagram-widget__item img{aspect-ratio:1}.widget_block .zoom-instagram-widget__items .zoom-instagram-widget__item .zoom-instagram-widget__item-inner-wrap,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items .zoom-instagram-widget__item .zoom-instagram-widget__item-inner-wrap{position:relative;height:100%;overflow:hidden}.widget_block .zoom-instagram-widget__items .zoom-instagram-widget__item img,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items .zoom-instagram-widget__item img{-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;height:100%}.widget_block .zoom-instagram-widget__items .zoom-instagram-widget__item .zoom-instagram-link,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items .zoom-instagram-widget__item .zoom-instagram-link{padding-bottom:100%}.ig-b-{display:inline-block}a.ig-b-v-24{border-color:#3897f0;color:#3897f0 !important;border-radius:3px;border-style:solid;border-width:1px;font-weight:600 !important;outline:none;overflow:hidden;white-space:nowrap;-webkit-appearance:none;font-family:sans-serif;padding:5px 15px;font-size:14px;transition:all .15s ease-in-out;-moz-transition:all .15s ease-in-out;-webkit-transition:all .15s ease-in-out;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none !important}a.ig-b-v-24:hover{background:#3897f0;border-color:#3897f0;color:#fff !important}.zoom-instagram-widget__item .hover-controls{opacity:0;z-index:9;margin-top:-15px;position:absolute;top:40%;width:100%;text-align:center;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out}.zoom-instagram-widget__items[data-lightbox="1"] .zoom-instagram-widget__item .zoom-instagram-icon-wrap{pointer-events:none}.zoom-instagram-widget__item .hover-controls~.zoom-instagram-icon-wrap{bottom:10%;pointer-events:all}.zoom-instagram-widget__item .hover-layout.small .hover-controls~.zoom-instagram-icon-wrap{bottom:6%}.zoom-instagram-widget__item .hover-layout.small .zoom-instagram-icon-wrap{bottom:calc(50% - 15px)}.zoom-instagram-widget__item .zoom-instagram-icon-wrap{bottom:calc(50% - 15px);height:30px;width:100%;position:absolute;z-index:9;text-align:center}.zoom-instagram-widget__item:hover .hover-controls{opacity:1}.zoom-instagram-widget__item .zoom-instagram-icon-wrap{opacity:0;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out}.zoom-instagram-widget__item:hover .zoom-instagram-icon-wrap{opacity:1}.zoom-instagram-widget__item .hover-controls .dashicons{font-size:20px;width:20px;height:20px;color:#fff;vertical-align:middle}.zoom-instagram-widget__item .hover-controls .counter{padding-right:1px;padding-left:12px;font-weight:500;color:#fff;font-size:14px;opacity:.8;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.zoom-instagram-widget__overlay{position:absolute;top:0;right:0;left:0;bottom:0}.zoom-instagram-widget__overlay:after{position:absolute;content:"";top:0;right:0;pointer-events:none;width:100%;height:100%;opacity:0;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out}.zoom-instagram-widget__overlay:hover:after{opacity:.7;background-color:#000}.zoom-instagram-widget__black:after{background-color:#000}.zoom-svg-instagram-simple{display:inline-block;width:30px;height:30px;background:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4IgogICAgIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIKICAgICB2aWV3Qm94PSIwIDAgNTAgNTAiCiAgICAgc3R5bGU9ImZpbGw6I2ZmZmZmZjsiPiAgICA8cGF0aCBzdHlsZT0ibGluZS1oZWlnaHQ6bm9ybWFsO3RleHQtaW5kZW50OjA7dGV4dC1hbGlnbjpzdGFydDt0ZXh0LWRlY29yYXRpb24tbGluZTpub25lO3RleHQtZGVjb3JhdGlvbi1zdHlsZTpzb2xpZDt0ZXh0LWRlY29yYXRpb24tY29sb3I6IzAwMDt0ZXh0LXRyYW5zZm9ybTpub25lO2Jsb2NrLXByb2dyZXNzaW9uOnRiO2lzb2xhdGlvbjphdXRvO21peC1ibGVuZC1tb2RlOm5vcm1hbCIgZD0iTSAxNiAzIEMgOC44MzI0ODM5IDMgMyA4LjgzMjQ4MzkgMyAxNiBMIDMgMzQgQyAzIDQxLjE2NzUxNiA4LjgzMjQ4MzkgNDcgMTYgNDcgTCAzNCA0NyBDIDQxLjE2NzUxNiA0NyA0NyA0MS4xNjc1MTYgNDcgMzQgTCA0NyAxNiBDIDQ3IDguODMyNDgzOSA0MS4xNjc1MTYgMyAzNCAzIEwgMTYgMyB6IE0gMTYgNSBMIDM0IDUgQyA0MC4wODY0ODQgNSA0NSA5LjkxMzUxNjEgNDUgMTYgTCA0NSAzNCBDIDQ1IDQwLjA4NjQ4NCA0MC4wODY0ODQgNDUgMzQgNDUgTCAxNiA0NSBDIDkuOTEzNTE2MSA0NSA1IDQwLjA4NjQ4NCA1IDM0IEwgNSAxNiBDIDUgOS45MTM1MTYxIDkuOTEzNTE2MSA1IDE2IDUgeiBNIDM3IDExIEEgMiAyIDAgMCAwIDM1IDEzIEEgMiAyIDAgMCAwIDM3IDE1IEEgMiAyIDAgMCAwIDM5IDEzIEEgMiAyIDAgMCAwIDM3IDExIHogTSAyNSAxNCBDIDE4LjkzNjcxMiAxNCAxNCAxOC45MzY3MTIgMTQgMjUgQyAxNCAzMS4wNjMyODggMTguOTM2NzEyIDM2IDI1IDM2IEMgMzEuMDYzMjg4IDM2IDM2IDMxLjA2MzI4OCAzNiAyNSBDIDM2IDE4LjkzNjcxMiAzMS4wNjMyODggMTQgMjUgMTQgeiBNIDI1IDE2IEMgMjkuOTgyNDA3IDE2IDM0IDIwLjAxNzU5MyAzNCAyNSBDIDM0IDI5Ljk4MjQwNyAyOS45ODI0MDcgMzQgMjUgMzQgQyAyMC4wMTc1OTMgMzQgMTYgMjkuOTgyNDA3IDE2IDI1IEMgMTYgMjAuMDE3NTkzIDIwLjAxNzU5MyAxNiAyNSAxNiB6IiBmb250LXdlaWdodD0iNDAwIiBmb250LWZhbWlseT0ic2Fucy1zZXJpZiIgd2hpdGUtc3BhY2U9Im5vcm1hbCIgb3ZlcmZsb3c9InZpc2libGUiPjwvcGF0aD48L3N2Zz4=") 50% 50% no-repeat;background-size:100%}.zoom-svg-instagram-stroke{display:inline-block;width:30px;height:30px;background:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4IgogICAgIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIKICAgICB2aWV3Qm94PSIwIDAgMjUyIDI1MiIKICAgICBzdHlsZT0iZmlsbDojMDAwMDAwOyI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMi4zOTQsMi4zOTQpIHNjYWxlKDAuOTgxLDAuOTgxKSI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJub256ZXJvIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9ImJ1dHQiIHN0cm9rZS1saW5lam9pbj0ibm9uZSIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtZGFzaGFycmF5PSIiIHN0cm9rZS1kYXNob2Zmc2V0PSIwIiBmb250LWZhbWlseT0ibm9uZSIgZm9udC13ZWlnaHQ9Im5vbmUiIGZvbnQtc2l6ZT0ibm9uZSIgdGV4dC1hbmNob3I9Im5vbmUiIHN0eWxlPSJtaXgtYmxlbmQtbW9kZTogbm9ybWFsIj48ZyBpZD0ib3JpZ2luYWwtaWNvbiAxIiBmaWxsPSIjZmZmZmZmIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iNSIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+PHBhdGggZD0iTTE3MS4zNiwxNS4xMmMzNi4xMjQyOCwwIDY1LjUyLDI5LjM5NTcyIDY1LjUyLDY1LjUydjkwLjcyYzAsMzYuMTI0MjggLTI5LjM5NTcyLDY1LjUyIC02NS41Miw2NS41MmgtOTAuNzJjLTM2LjEyNDI4LDAgLTY1LjUyLC0yOS4zOTU3MiAtNjUuNTIsLTY1LjUydi05MC43MmMwLC0zNi4xMjQyOCAyOS4zOTU3MiwtNjUuNTIgNjUuNTIsLTY1LjUyek0yNS4yLDgwLjY0djkwLjcyYzAsMzAuNjc1ODggMjQuNzY0MTIsNTUuNDQgNTUuNDQsNTUuNDRoOTAuNzJjMzAuNjc1ODgsMCA1NS40NCwtMjQuNzY0MTIgNTUuNDQsLTU1LjQ0di05MC43MmMwLC0zMC42NzU4OCAtMjQuNzY0MTIsLTU1LjQ0IC01NS40NCwtNTUuNDRoLTkwLjcyYy0zMC42NzU4OCwwIC01NS40NCwyNC43NjQxMiAtNTUuNDQsNTUuNDR6TTE5Ni41Niw2NS41MmMwLDUuNTY3MDMgLTQuNTEyOTcsMTAuMDggLTEwLjA4LDEwLjA4Yy01LjU2NzAzLDAgLTEwLjA4LC00LjUxMjk3IC0xMC4wOCwtMTAuMDhjMCwtNS41NjcwMyA0LjUxMjk3LC0xMC4wOCAxMC4wOCwtMTAuMDhjNS41NjcwMywwIDEwLjA4LDQuNTEyOTcgMTAuMDgsMTAuMDh6TTE4MS40NCwxMjZjMCwzMC41NTg5NyAtMjQuODgxMDMsNTUuNDQgLTU1LjQ0LDU1LjQ0Yy0zMC41NTg5NywwIC01NS40NCwtMjQuODgxMDMgLTU1LjQ0LC01NS40NGMwLC0zMC41NTg5NyAyNC44ODEwMywtNTUuNDQgNTUuNDQsLTU1LjQ0YzMwLjU1ODk3LDAgNTUuNDQsMjQuODgxMDMgNTUuNDQsNTUuNDR6TTgwLjY0LDEyNmMwLDI1LjExMTMzIDIwLjI0ODY3LDQ1LjM2IDQ1LjM2LDQ1LjM2YzI1LjExMTMzLDAgNDUuMzYsLTIwLjI0ODY3IDQ1LjM2LC00NS4zNmMwLC0yNS4xMTEzMyAtMjAuMjQ4NjcsLTQ1LjM2IC00NS4zNiwtNDUuMzZjLTI1LjExMTMzLDAgLTQ1LjM2LDIwLjI0ODY3IC00NS4zNiw0NS4zNnoiPjwvcGF0aD48L2c+PHBhdGggZD0iTTAsMjUydi0yNTJoMjUydjI1MnoiIGZpbGw9Im5vbmUiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWpvaW49Im1pdGVyIj48L3BhdGg+PGcgaWQ9Im9yaWdpbmFsLWljb24iIGZpbGw9IiNmZmZmZmYiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWpvaW49Im1pdGVyIj48cGF0aCBkPSJNODAuNjQsMTUuMTJjLTM2LjEyNDI4LDAgLTY1LjUyLDI5LjM5NTcyIC02NS41Miw2NS41MnY5MC43MmMwLDM2LjEyNDI4IDI5LjM5NTcyLDY1LjUyIDY1LjUyLDY1LjUyaDkwLjcyYzM2LjEyNDI4LDAgNjUuNTIsLTI5LjM5NTcyIDY1LjUyLC02NS41MnYtOTAuNzJjMCwtMzYuMTI0MjggLTI5LjM5NTcyLC02NS41MiAtNjUuNTIsLTY1LjUyek04MC42NCwyNS4yaDkwLjcyYzMwLjY3NTg4LDAgNTUuNDQsMjQuNzY0MTIgNTUuNDQsNTUuNDR2OTAuNzJjMCwzMC42NzU4OCAtMjQuNzY0MTIsNTUuNDQgLTU1LjQ0LDU1LjQ0aC05MC43MmMtMzAuNjc1ODgsMCAtNTUuNDQsLTI0Ljc2NDEyIC01NS40NCwtNTUuNDR2LTkwLjcyYzAsLTMwLjY3NTg4IDI0Ljc2NDEyLC01NS40NCA1NS40NCwtNTUuNDR6TTE4Ni40OCw1NS40NGMtNS41NjcwMywwIC0xMC4wOCw0LjUxMjk3IC0xMC4wOCwxMC4wOGMwLDUuNTY3MDMgNC41MTI5NywxMC4wOCAxMC4wOCwxMC4wOGM1LjU2NzAzLDAgMTAuMDgsLTQuNTEyOTcgMTAuMDgsLTEwLjA4YzAsLTUuNTY3MDMgLTQuNTEyOTcsLTEwLjA4IC0xMC4wOCwtMTAuMDh6TTEyNiw3MC41NmMtMzAuNTU4OTcsMCAtNTUuNDQsMjQuODgxMDMgLTU1LjQ0LDU1LjQ0YzAsMzAuNTU4OTcgMjQuODgxMDMsNTUuNDQgNTUuNDQsNTUuNDRjMzAuNTU4OTcsMCA1NS40NCwtMjQuODgxMDMgNTUuNDQsLTU1LjQ0YzAsLTMwLjU1ODk3IC0yNC44ODEwMywtNTUuNDQgLTU1LjQ0LC01NS40NHpNMTI2LDgwLjY0YzI1LjExMTMzLDAgNDUuMzYsMjAuMjQ4NjcgNDUuMzYsNDUuMzZjMCwyNS4xMTEzMyAtMjAuMjQ4NjcsNDUuMzYgLTQ1LjM2LDQ1LjM2Yy0yNS4xMTEzMywwIC00NS4zNiwtMjAuMjQ4NjcgLTQ1LjM2LC00NS4zNmMwLC0yNS4xMTEzMyAyMC4yNDg2NywtNDUuMzYgNDUuMzYsLTQ1LjM2eiI+PC9wYXRoPjwvZz48cGF0aCBkPSJNMTI2LDI1MmMtNjkuNTg3ODgsMCAtMTI2LC01Ni40MTIxMiAtMTI2LC0xMjZ2MGMwLC02OS41ODc4OCA1Ni40MTIxMiwtMTI2IDEyNiwtMTI2djBjNjkuNTg3ODgsMCAxMjYsNTYuNDEyMTIgMTI2LDEyNnYwYzAsNjkuNTg3ODggLTU2LjQxMjEyLDEyNiAtMTI2LDEyNnoiIGZpbGw9Im5vbmUiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWpvaW49Im1pdGVyIj48L3BhdGg+PHBhdGggZD0iTTEyNiwyNDYuOTZjLTY2LjgwNDM2LDAgLTEyMC45NiwtNTQuMTU1NjQgLTEyMC45NiwtMTIwLjk2djBjMCwtNjYuODA0MzYgNTQuMTU1NjQsLTEyMC45NiAxMjAuOTYsLTEyMC45NmgwYzY2LjgwNDM2LDAgMTIwLjk2LDU0LjE1NTY0IDEyMC45NiwxMjAuOTZ2MGMwLDY2LjgwNDM2IC01NC4xNTU2NCwxMjAuOTYgLTEyMC45NiwxMjAuOTZ6IiBmaWxsPSJub25lIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLWxpbmVqb2luPSJtaXRlciI+PC9wYXRoPjxwYXRoIGQ9IiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZS1saW5lam9pbj0ibWl0ZXIiPjwvcGF0aD48cGF0aCBkPSIiIGZpbGw9Im5vbmUiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWpvaW49Im1pdGVyIj48L3BhdGg+PHBhdGggZD0iIiBmaWxsPSJub25lIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLWxpbmVqb2luPSJtaXRlciI+PC9wYXRoPjxwYXRoIGQ9IiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZS1saW5lam9pbj0ibWl0ZXIiPjwvcGF0aD48L2c+PC9nPjwvc3ZnPg==") 50% 50% no-repeat;background-size:100%}.zoom-instagram-widget__item .hover-layout.small .hover-controls .dashicons{font-size:15px;width:15px;height:15px}.zoom-instagram-widget__item .hover-layout.small .zoom-instagram-icon-wrap .zoom-svg-instagram-stroke{width:18px;height:18px}.zoom-instagram-widget__item .hover-layout.small .hover-controls .counter{padding-right:1px;padding-left:4px;font-size:11px}.zoom-instagram-widget-user-info{display:flex;padding:0 0px 20px}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-picture{flex:1}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-picture img{border-radius:50%}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-meta{display:flex;flex:3;flex-direction:column;margin-right:15px;text-align:right;justify-content:center}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-about-data{display:flex;justify-content:space-between;margin-bottom:10px}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-stats{font-size:14px;line-height:1.2;justify-content:space-between;display:flex;text-align:center}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-follow-button{padding:0px 24px;margin-top:10px;background:#3897f0;color:#fff !important;font-size:14px;font-weight:600;line-height:26px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;text-transform:none;border-radius:3px;outline:0;overflow:hidden;text-overflow:ellipsis;display:block;border:none;box-shadow:none;text-decoration:none !important}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-follow-button:hover{color:#fff;opacity:.8;box-shadow:none;border:none;text-decoration:none}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-counts{font-weight:600}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-counts-subhead{opacity:.7;font-size:14px}.zoom-instagram-widget-user-info-middle-cell{padding:0px 20px}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-fullname{font-weight:600;font-size:16px}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-names-wrapper{padding-left:20px;word-break:break-word}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-username{font-size:14px;font-weight:600;word-break:break-all;opacity:.7}.zoom-instagram-widget-user-info-bio{text-align:right;font-size:14px;margin:0 0 15px}.zoom-instagram-widget__items .zoom-instagram-widget__item .zoom-instagram-link{display:block;background-size:cover !important;background-position:center center !important;background-repeat:no-repeat !important;padding-bottom:100%}.zoom-instagram-widget__items .zoom-instagram-widget__item .svg-icon{position:absolute;width:32px;padding:8px;height:32px;display:flex;top:0;left:0;z-index:1;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out}.zoom-instagram-widget__items .zoom-instagram-widget__item.media-icons-hover .svg-icon{opacity:0}.zoom-instagram-widget__items .zoom-instagram-widget__item.media-icons-hover:hover .svg-icon{opacity:1}.wpzoom-lightbox .mfp-inline-holder .mfp-content{max-width:none}.wpz-insta-lightbox{pointer-events:all;display:flex;flex-direction:row;background-color:#fff;border-radius:4px;height:100%}.wpz-insta-lightbox-wrapper{display:flex;justify-content:center;pointer-events:none}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper{width:30%}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header{display:flex;align-items:center;padding:16px;border-bottom:1px solid #efefef;flex-wrap:wrap}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-avatar img{width:42px;height:42px;border-radius:50%}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-username a,.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-follow a{color:#262626;font-weight:600;text-decoration:none;font-size:14px}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-username a:hover{text-decoration:underline}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-follow a{color:#0095f6}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header>div{margin-left:13px;min-width:42px}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-buttons{display:flex}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-buttons>div{padding:5px}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-caption{color:#262626;line-height:1.5;font-size:14px;padding:16px;font-weight:normal;overflow-y:scroll;max-height:384px;border-bottom:1px solid #efefef}.wpzoom-lightbox.mfp-gallery{z-index:100000;pointer-events:none}.wpzoom-lightbox button.mfp-close{pointer-events:all;color:#fff;font-size:50px;font-weight:100;margin-top:25px;margin-left:15px}.wpzoom-lightbox .mfp-prevent-close{pointer-events:all}.wpzoom-lightbox button.mfp-close:hover{text-decoration:none}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-date{font-size:12px;padding:16px;color:#8e8e8e;flex:1}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper img{height:100%;max-width:100%;-o-object-fit:contain;object-fit:contain;min-height:700px;min-width:700px}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper{flex-grow:1;text-align:center;height:auto;width:100%;max-width:70%;max-height:100%;background:#000;border-radius:0 4px 4px 0}.wpz-insta-lightbox-wrapper>.swiper-container{pointer-events:none;width:1000px;height:80vh}.wpz-insta-lightbox-wrapper>.swiper-container .swiper-container{width:100%;height:100%}.wpz-insta-lightbox-wrapper>.swiper-container .swiper-container .swiper-slide{max-height:100%}.wpz-insta-lightbox-wrapper>.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:100%;max-height:80vh}.wpz-insta-lightbox-wrapper video{height:100%;max-width:100%}.wpz-insta-lightbox-wrapper>.swiper-container .swiper-container .swiper-button-prev,.wpz-insta-lightbox-wrapper>.swiper-container .swiper-container .swiper-button-next{--swiper-navigation-size: 34px;color:#000;background:#fff;width:var(--swiper-navigation-size);border-radius:50%}.wpz-insta-lightbox-wrapper>.swiper-container .swiper-container .swiper-button-prev::after,.wpz-insta-lightbox-wrapper>.swiper-container .swiper-container .swiper-button-next::after{font-size:16px}.wpz-insta-lightbox-wrapper>.swiper-container>.swiper-wrapper{pointer-events:all}.wpz-insta-lightbox-wrapper>.swiper-container>.swiper-button-prev,.wpz-insta-lightbox-wrapper>.swiper-container>.swiper-button-next{position:fixed;pointer-events:all}.wpz-insta-lightbox-wrapper>.swiper-container .swiper-button-prev,.wpz-insta-lightbox-wrapper>.swiper-container .swiper-button-next{color:#fff;opacity:.75}.wpz-insta-lightbox-wrapper>.swiper-container .swiper-button-prev:hover,.wpz-insta-lightbox-wrapper>.swiper-container .swiper-button-next:hover{opacity:1}.wpz-insta-lightbox-wrapper>.swiper-container .swiper-button-prev.swiper-button-disabled,.wpz-insta-lightbox-wrapper>.swiper-container .swiper-button-next.swiper-button-disabled{opacity:.25 !important}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper{display:flex;flex-direction:column;flex-grow:1}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .view-post{padding:16px;text-decoration:none;font-size:12px;color:#262626;font-weight:400;line-height:20px;display:flex;border-top:1px solid #efefef;flex-wrap:wrap;justify-content:flex-start}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .view-post a{text-decoration:none;font-size:12px;color:#262626;font-weight:400;line-height:20px;text-align:center;display:inline-block}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .view-post a span{margin-left:10px}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .view-post .delimiter{padding:0px 10px}@-webkit-keyframes show{100%{transform:none;opacity:1}}@keyframes show{100%{transform:none;opacity:1}}@media screen and (max-width: 1200px){.wpz-insta-lightbox-wrapper .wpz-insta-lightbox{flex-wrap:wrap}.wpz-insta-lightbox-wrapper>.swiper-container{width:86%}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper img{min-height:500px;min-width:500px}}@media screen and (max-width: 860px){.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-caption{font-size:12px}}@media screen and (max-width: 768px){.wpz-insta-lightbox{flex-direction:column}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper img{min-height:400px;min-width:400px}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper{border-radius:4px 4px 0 0;max-width:100%;height:65%}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-caption{max-height:134px}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper{width:100%;height:35%}}@media screen and (max-width: 600px){.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper img{min-height:280px;min-width:280px}.wpz-insta-lightbox-wrapper>.swiper-container{width:76%}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper{height:55%}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper{height:45%}}
|
1 |
+
.zoom-instagram-widget__follow-me{margin-top:15px;text-align:center}.zoom-instagram{font-size:14px;overflow:hidden;display:block}.zoom-instagram form[disabled]{pointer-events:none}.zoom-instagram form[disabled]:not(.loading){opacity:.5}.zoom-instagram .zoom-instagram-widget__header{display:flex;gap:20px;margin:0 0 25px}.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-column-left img{height:70px;width:70px;border-radius:50%}.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-column-right{display:flex;flex-direction:column;justify-content:center}.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-name{font-size:1em;font-weight:600;line-height:1.5;padding:0;margin:0 0 5px;letter-spacing:0}.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-user{font-weight:600;line-height:normal;padding:0;margin:0;opacity:.8}.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-user a{text-decoration:none}.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-bio{font-size:13px;font-weight:normal;line-height:1.6;padding:0;margin:6px 0 0}.zoom-instagram .zoom-instagram-widget__footer{display:flex;justify-content:center;align-items:center;flex-direction:row;flex-wrap:wrap;gap:15px;margin:25px 0 0}.zoom-instagram .zoom-instagram-widget__footer>*{display:block}.zoom-instagram .zoom-instagram-widget__items-wrapper{overflow:hidden}.zoom-instagram .zoom-instagram-widget__items{display:grid;grid-template-columns:repeat(3, 1fr);gap:10px;list-style:none !important;padding:0;margin:0}.zoom-instagram .zoom-instagram-widget__items.layout-grid .zoom-instagram-widget__item img{width:100%;aspect-ratio:1/1}.zoom-instagram .zoom-instagram-widget__items.layout-fullwidth{display:flex;width:5000px}.zoom-instagram .zoom-instagram-widget__items.layout-fullwidth .zoom-instagram-widget__item img{aspect-ratio:1}.layout-legacy.zoom-instagram-widget__items{list-style:none !important}.layout-legacy.zoom-instagram-widget__items .zoom-instagram-widget__item{float:right;position:relative;margin-top:0 !important;padding:0}.layout-legacy.zoom-instagram-widget__items .zoom-instagram-widget__overlay{position:relative}.zoom-instagram-widget__item{position:relative;transition:all .1s ease-in-out}.zoom-instagram-widget__item.new{opacity:0;transform:scale(0);transform-origin:center;-webkit-animation:show 500ms linear forwards;animation:show 500ms linear forwards}.zoom-instagram-widget__item .zoom-instagram-widget__item-inner-wrap{position:relative;height:100%;overflow:hidden}.zoom-instagram-widget__item img{-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;height:100%}.widget_block .zoom-instagram-widget__items ul li.zoom-instagram-widget__item,.widget.zoom-instagram-widget ul li.zoom-instagram-widget__item,.widget.zoom-new-instagram-widget ul li.zoom-instagram-widget__item{padding:0}.widget_block .zoom-instagram-widget__items-wrapper,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items-wrapper{overflow:hidden}.widget_block .zoom-instagram-widget__items,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items{display:grid;grid-template-columns:repeat(3, 1fr);gap:10px;padding:0;margin:0}.widget_block .zoom-instagram-widget__items::before,.widget_block .zoom-instagram-widget__items::after,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items::before,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items::after{display:none}.widget_block .zoom-instagram-widget__items.layout-grid .zoom-instagram-widget__item img,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items.layout-grid .zoom-instagram-widget__item img{width:100%;aspect-ratio:1/1}.widget_block .zoom-instagram-widget__items.layout-fullwidth,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items.layout-fullwidth{display:flex;width:5000px}.widget_block .zoom-instagram-widget__items.layout-fullwidth .zoom-instagram-widget__item img,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items.layout-fullwidth .zoom-instagram-widget__item img{aspect-ratio:1}.widget_block .zoom-instagram-widget__items .zoom-instagram-widget__item .zoom-instagram-widget__item-inner-wrap,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items .zoom-instagram-widget__item .zoom-instagram-widget__item-inner-wrap{position:relative;height:100%;overflow:hidden}.widget_block .zoom-instagram-widget__items .zoom-instagram-widget__item img,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items .zoom-instagram-widget__item img{-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;height:100%}.widget_block .zoom-instagram-widget__items .zoom-instagram-widget__item .zoom-instagram-link,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items .zoom-instagram-widget__item .zoom-instagram-link{padding-bottom:100%}.ig-b-{display:inline-block}a.ig-b-v-24{border-color:#3897f0;color:#3897f0 !important;border-radius:3px;border-style:solid;border-width:1px;font-weight:600 !important;outline:none;overflow:hidden;white-space:nowrap;-webkit-appearance:none;font-family:sans-serif;padding:5px 15px;font-size:14px;transition:all .15s ease-in-out;-moz-transition:all .15s ease-in-out;-webkit-transition:all .15s ease-in-out;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none !important}a.ig-b-v-24:hover{background:#3897f0;border-color:#3897f0;color:#fff !important}.zoom-instagram-widget__item .hover-controls{opacity:0;z-index:9;margin-top:-15px;position:absolute;top:40%;width:100%;text-align:center;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out}.zoom-instagram-widget__items[data-lightbox="1"] .zoom-instagram-widget__item .zoom-instagram-icon-wrap{pointer-events:none}.zoom-instagram-widget__item .hover-controls~.zoom-instagram-icon-wrap{bottom:10%;pointer-events:all}.zoom-instagram-widget__item .hover-layout.small .hover-controls~.zoom-instagram-icon-wrap{bottom:6%}.zoom-instagram-widget__item .hover-layout.small .zoom-instagram-icon-wrap{bottom:calc(50% - 15px)}.zoom-instagram-widget__item .zoom-instagram-icon-wrap{bottom:calc(50% - 15px);height:30px;width:100%;position:absolute;z-index:9;text-align:center}.zoom-instagram-widget__item:hover .hover-controls{opacity:1}.zoom-instagram-widget__item .zoom-instagram-icon-wrap{opacity:0;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out}.zoom-instagram-widget__item:hover .zoom-instagram-icon-wrap{opacity:1}.zoom-instagram-widget__item .hover-controls .dashicons{font-size:20px;width:20px;height:20px;color:#fff;vertical-align:middle}.zoom-instagram-widget__item .hover-controls .counter{padding-right:1px;padding-left:12px;font-weight:500;color:#fff;font-size:14px;opacity:.8;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.zoom-instagram-widget__overlay{position:absolute;top:0;right:0;left:0;bottom:0}.zoom-instagram-widget__overlay:after{position:absolute;content:"";top:0;right:0;pointer-events:none;width:100%;height:100%;opacity:0;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out}.zoom-instagram-widget__overlay:hover:after{opacity:.7;background-color:#000}.zoom-instagram-widget__black:after{background-color:#000}.zoom-svg-instagram-simple{display:inline-block;width:30px;height:30px;background:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4IgogICAgIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIKICAgICB2aWV3Qm94PSIwIDAgNTAgNTAiCiAgICAgc3R5bGU9ImZpbGw6I2ZmZmZmZjsiPiAgICA8cGF0aCBzdHlsZT0ibGluZS1oZWlnaHQ6bm9ybWFsO3RleHQtaW5kZW50OjA7dGV4dC1hbGlnbjpzdGFydDt0ZXh0LWRlY29yYXRpb24tbGluZTpub25lO3RleHQtZGVjb3JhdGlvbi1zdHlsZTpzb2xpZDt0ZXh0LWRlY29yYXRpb24tY29sb3I6IzAwMDt0ZXh0LXRyYW5zZm9ybTpub25lO2Jsb2NrLXByb2dyZXNzaW9uOnRiO2lzb2xhdGlvbjphdXRvO21peC1ibGVuZC1tb2RlOm5vcm1hbCIgZD0iTSAxNiAzIEMgOC44MzI0ODM5IDMgMyA4LjgzMjQ4MzkgMyAxNiBMIDMgMzQgQyAzIDQxLjE2NzUxNiA4LjgzMjQ4MzkgNDcgMTYgNDcgTCAzNCA0NyBDIDQxLjE2NzUxNiA0NyA0NyA0MS4xNjc1MTYgNDcgMzQgTCA0NyAxNiBDIDQ3IDguODMyNDgzOSA0MS4xNjc1MTYgMyAzNCAzIEwgMTYgMyB6IE0gMTYgNSBMIDM0IDUgQyA0MC4wODY0ODQgNSA0NSA5LjkxMzUxNjEgNDUgMTYgTCA0NSAzNCBDIDQ1IDQwLjA4NjQ4NCA0MC4wODY0ODQgNDUgMzQgNDUgTCAxNiA0NSBDIDkuOTEzNTE2MSA0NSA1IDQwLjA4NjQ4NCA1IDM0IEwgNSAxNiBDIDUgOS45MTM1MTYxIDkuOTEzNTE2MSA1IDE2IDUgeiBNIDM3IDExIEEgMiAyIDAgMCAwIDM1IDEzIEEgMiAyIDAgMCAwIDM3IDE1IEEgMiAyIDAgMCAwIDM5IDEzIEEgMiAyIDAgMCAwIDM3IDExIHogTSAyNSAxNCBDIDE4LjkzNjcxMiAxNCAxNCAxOC45MzY3MTIgMTQgMjUgQyAxNCAzMS4wNjMyODggMTguOTM2NzEyIDM2IDI1IDM2IEMgMzEuMDYzMjg4IDM2IDM2IDMxLjA2MzI4OCAzNiAyNSBDIDM2IDE4LjkzNjcxMiAzMS4wNjMyODggMTQgMjUgMTQgeiBNIDI1IDE2IEMgMjkuOTgyNDA3IDE2IDM0IDIwLjAxNzU5MyAzNCAyNSBDIDM0IDI5Ljk4MjQwNyAyOS45ODI0MDcgMzQgMjUgMzQgQyAyMC4wMTc1OTMgMzQgMTYgMjkuOTgyNDA3IDE2IDI1IEMgMTYgMjAuMDE3NTkzIDIwLjAxNzU5MyAxNiAyNSAxNiB6IiBmb250LXdlaWdodD0iNDAwIiBmb250LWZhbWlseT0ic2Fucy1zZXJpZiIgd2hpdGUtc3BhY2U9Im5vcm1hbCIgb3ZlcmZsb3c9InZpc2libGUiPjwvcGF0aD48L3N2Zz4=") 50% 50% no-repeat;background-size:100%}.zoom-svg-instagram-stroke{display:inline-block;width:30px;height:30px;background:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4IgogICAgIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIKICAgICB2aWV3Qm94PSIwIDAgMjUyIDI1MiIKICAgICBzdHlsZT0iZmlsbDojMDAwMDAwOyI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMi4zOTQsMi4zOTQpIHNjYWxlKDAuOTgxLDAuOTgxKSI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJub256ZXJvIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9ImJ1dHQiIHN0cm9rZS1saW5lam9pbj0ibm9uZSIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtZGFzaGFycmF5PSIiIHN0cm9rZS1kYXNob2Zmc2V0PSIwIiBmb250LWZhbWlseT0ibm9uZSIgZm9udC13ZWlnaHQ9Im5vbmUiIGZvbnQtc2l6ZT0ibm9uZSIgdGV4dC1hbmNob3I9Im5vbmUiIHN0eWxlPSJtaXgtYmxlbmQtbW9kZTogbm9ybWFsIj48ZyBpZD0ib3JpZ2luYWwtaWNvbiAxIiBmaWxsPSIjZmZmZmZmIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iNSIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+PHBhdGggZD0iTTE3MS4zNiwxNS4xMmMzNi4xMjQyOCwwIDY1LjUyLDI5LjM5NTcyIDY1LjUyLDY1LjUydjkwLjcyYzAsMzYuMTI0MjggLTI5LjM5NTcyLDY1LjUyIC02NS41Miw2NS41MmgtOTAuNzJjLTM2LjEyNDI4LDAgLTY1LjUyLC0yOS4zOTU3MiAtNjUuNTIsLTY1LjUydi05MC43MmMwLC0zNi4xMjQyOCAyOS4zOTU3MiwtNjUuNTIgNjUuNTIsLTY1LjUyek0yNS4yLDgwLjY0djkwLjcyYzAsMzAuNjc1ODggMjQuNzY0MTIsNTUuNDQgNTUuNDQsNTUuNDRoOTAuNzJjMzAuNjc1ODgsMCA1NS40NCwtMjQuNzY0MTIgNTUuNDQsLTU1LjQ0di05MC43MmMwLC0zMC42NzU4OCAtMjQuNzY0MTIsLTU1LjQ0IC01NS40NCwtNTUuNDRoLTkwLjcyYy0zMC42NzU4OCwwIC01NS40NCwyNC43NjQxMiAtNTUuNDQsNTUuNDR6TTE5Ni41Niw2NS41MmMwLDUuNTY3MDMgLTQuNTEyOTcsMTAuMDggLTEwLjA4LDEwLjA4Yy01LjU2NzAzLDAgLTEwLjA4LC00LjUxMjk3IC0xMC4wOCwtMTAuMDhjMCwtNS41NjcwMyA0LjUxMjk3LC0xMC4wOCAxMC4wOCwtMTAuMDhjNS41NjcwMywwIDEwLjA4LDQuNTEyOTcgMTAuMDgsMTAuMDh6TTE4MS40NCwxMjZjMCwzMC41NTg5NyAtMjQuODgxMDMsNTUuNDQgLTU1LjQ0LDU1LjQ0Yy0zMC41NTg5NywwIC01NS40NCwtMjQuODgxMDMgLTU1LjQ0LC01NS40NGMwLC0zMC41NTg5NyAyNC44ODEwMywtNTUuNDQgNTUuNDQsLTU1LjQ0YzMwLjU1ODk3LDAgNTUuNDQsMjQuODgxMDMgNTUuNDQsNTUuNDR6TTgwLjY0LDEyNmMwLDI1LjExMTMzIDIwLjI0ODY3LDQ1LjM2IDQ1LjM2LDQ1LjM2YzI1LjExMTMzLDAgNDUuMzYsLTIwLjI0ODY3IDQ1LjM2LC00NS4zNmMwLC0yNS4xMTEzMyAtMjAuMjQ4NjcsLTQ1LjM2IC00NS4zNiwtNDUuMzZjLTI1LjExMTMzLDAgLTQ1LjM2LDIwLjI0ODY3IC00NS4zNiw0NS4zNnoiPjwvcGF0aD48L2c+PHBhdGggZD0iTTAsMjUydi0yNTJoMjUydjI1MnoiIGZpbGw9Im5vbmUiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWpvaW49Im1pdGVyIj48L3BhdGg+PGcgaWQ9Im9yaWdpbmFsLWljb24iIGZpbGw9IiNmZmZmZmYiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWpvaW49Im1pdGVyIj48cGF0aCBkPSJNODAuNjQsMTUuMTJjLTM2LjEyNDI4LDAgLTY1LjUyLDI5LjM5NTcyIC02NS41Miw2NS41MnY5MC43MmMwLDM2LjEyNDI4IDI5LjM5NTcyLDY1LjUyIDY1LjUyLDY1LjUyaDkwLjcyYzM2LjEyNDI4LDAgNjUuNTIsLTI5LjM5NTcyIDY1LjUyLC02NS41MnYtOTAuNzJjMCwtMzYuMTI0MjggLTI5LjM5NTcyLC02NS41MiAtNjUuNTIsLTY1LjUyek04MC42NCwyNS4yaDkwLjcyYzMwLjY3NTg4LDAgNTUuNDQsMjQuNzY0MTIgNTUuNDQsNTUuNDR2OTAuNzJjMCwzMC42NzU4OCAtMjQuNzY0MTIsNTUuNDQgLTU1LjQ0LDU1LjQ0aC05MC43MmMtMzAuNjc1ODgsMCAtNTUuNDQsLTI0Ljc2NDEyIC01NS40NCwtNTUuNDR2LTkwLjcyYzAsLTMwLjY3NTg4IDI0Ljc2NDEyLC01NS40NCA1NS40NCwtNTUuNDR6TTE4Ni40OCw1NS40NGMtNS41NjcwMywwIC0xMC4wOCw0LjUxMjk3IC0xMC4wOCwxMC4wOGMwLDUuNTY3MDMgNC41MTI5NywxMC4wOCAxMC4wOCwxMC4wOGM1LjU2NzAzLDAgMTAuMDgsLTQuNTEyOTcgMTAuMDgsLTEwLjA4YzAsLTUuNTY3MDMgLTQuNTEyOTcsLTEwLjA4IC0xMC4wOCwtMTAuMDh6TTEyNiw3MC41NmMtMzAuNTU4OTcsMCAtNTUuNDQsMjQuODgxMDMgLTU1LjQ0LDU1LjQ0YzAsMzAuNTU4OTcgMjQuODgxMDMsNTUuNDQgNTUuNDQsNTUuNDRjMzAuNTU4OTcsMCA1NS40NCwtMjQuODgxMDMgNTUuNDQsLTU1LjQ0YzAsLTMwLjU1ODk3IC0yNC44ODEwMywtNTUuNDQgLTU1LjQ0LC01NS40NHpNMTI2LDgwLjY0YzI1LjExMTMzLDAgNDUuMzYsMjAuMjQ4NjcgNDUuMzYsNDUuMzZjMCwyNS4xMTEzMyAtMjAuMjQ4NjcsNDUuMzYgLTQ1LjM2LDQ1LjM2Yy0yNS4xMTEzMywwIC00NS4zNiwtMjAuMjQ4NjcgLTQ1LjM2LC00NS4zNmMwLC0yNS4xMTEzMyAyMC4yNDg2NywtNDUuMzYgNDUuMzYsLTQ1LjM2eiI+PC9wYXRoPjwvZz48cGF0aCBkPSJNMTI2LDI1MmMtNjkuNTg3ODgsMCAtMTI2LC01Ni40MTIxMiAtMTI2LC0xMjZ2MGMwLC02OS41ODc4OCA1Ni40MTIxMiwtMTI2IDEyNiwtMTI2djBjNjkuNTg3ODgsMCAxMjYsNTYuNDEyMTIgMTI2LDEyNnYwYzAsNjkuNTg3ODggLTU2LjQxMjEyLDEyNiAtMTI2LDEyNnoiIGZpbGw9Im5vbmUiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWpvaW49Im1pdGVyIj48L3BhdGg+PHBhdGggZD0iTTEyNiwyNDYuOTZjLTY2LjgwNDM2LDAgLTEyMC45NiwtNTQuMTU1NjQgLTEyMC45NiwtMTIwLjk2djBjMCwtNjYuODA0MzYgNTQuMTU1NjQsLTEyMC45NiAxMjAuOTYsLTEyMC45NmgwYzY2LjgwNDM2LDAgMTIwLjk2LDU0LjE1NTY0IDEyMC45NiwxMjAuOTZ2MGMwLDY2LjgwNDM2IC01NC4xNTU2NCwxMjAuOTYgLTEyMC45NiwxMjAuOTZ6IiBmaWxsPSJub25lIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLWxpbmVqb2luPSJtaXRlciI+PC9wYXRoPjxwYXRoIGQ9IiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZS1saW5lam9pbj0ibWl0ZXIiPjwvcGF0aD48cGF0aCBkPSIiIGZpbGw9Im5vbmUiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWpvaW49Im1pdGVyIj48L3BhdGg+PHBhdGggZD0iIiBmaWxsPSJub25lIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLWxpbmVqb2luPSJtaXRlciI+PC9wYXRoPjxwYXRoIGQ9IiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZS1saW5lam9pbj0ibWl0ZXIiPjwvcGF0aD48L2c+PC9nPjwvc3ZnPg==") 50% 50% no-repeat;background-size:100%}.zoom-instagram-widget__item .hover-layout.small .hover-controls .dashicons{font-size:15px;width:15px;height:15px}.zoom-instagram-widget__item .hover-layout.small .zoom-instagram-icon-wrap .zoom-svg-instagram-stroke{width:18px;height:18px}.zoom-instagram-widget__item .hover-layout.small .hover-controls .counter{padding-right:1px;padding-left:4px;font-size:11px}.zoom-instagram-widget-user-info{display:flex;padding:0 0px 20px}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-picture{flex:1}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-picture img{border-radius:50%}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-meta{display:flex;flex:3;flex-direction:column;margin-right:15px;text-align:right;justify-content:center}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-about-data{display:flex;justify-content:space-between;margin-bottom:10px}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-stats{font-size:14px;line-height:1.2;justify-content:space-between;display:flex;text-align:center}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-follow-button{padding:0px 24px;margin-top:10px;background:#3897f0;color:#fff !important;font-size:14px;font-weight:600;line-height:26px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;text-transform:none;border-radius:3px;outline:0;overflow:hidden;text-overflow:ellipsis;display:block;border:none;box-shadow:none;text-decoration:none !important}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-follow-button:hover{color:#fff;opacity:.8;box-shadow:none;border:none;text-decoration:none}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-counts{font-weight:600}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-counts-subhead{opacity:.7;font-size:14px}.zoom-instagram-widget-user-info-middle-cell{padding:0px 20px}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-fullname{font-weight:600;font-size:16px}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-names-wrapper{padding-left:20px;word-break:break-word}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-username{font-size:14px;font-weight:600;word-break:break-all;opacity:.7}.zoom-instagram-widget-user-info-bio{text-align:right;font-size:14px;margin:0 0 15px}.zoom-instagram-widget__items .zoom-instagram-widget__item .zoom-instagram-link{display:block;background-size:cover !important;background-position:center center !important;background-repeat:no-repeat !important}.zoom-instagram-widget__items .zoom-instagram-widget__item .svg-icon{position:absolute;width:32px;padding:8px;height:32px;display:flex;top:0;left:0;z-index:1;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out}.zoom-instagram-widget__items .zoom-instagram-widget__item.media-icons-hover .svg-icon{opacity:0}.zoom-instagram-widget__items .zoom-instagram-widget__item.media-icons-hover:hover .svg-icon{opacity:1}.wpzoom-lightbox .mfp-inline-holder .mfp-content{max-width:none}.wpz-insta-lightbox{pointer-events:all;display:flex;flex-direction:row;background-color:#fff;border-radius:4px;height:100%}.wpz-insta-lightbox-wrapper{display:flex;justify-content:center;pointer-events:none}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper{width:30%}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header{display:flex;align-items:center;padding:16px;border-bottom:1px solid #efefef;flex-wrap:wrap}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-avatar img{width:42px;height:42px;border-radius:50%}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-username a,.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-follow a{color:#262626;font-weight:600;text-decoration:none;font-size:14px}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-username a:hover{text-decoration:underline}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-follow a{color:#0095f6}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header>div{margin-left:13px;min-width:42px}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-buttons{display:flex}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-buttons>div{padding:5px}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-caption{color:#262626;line-height:1.5;font-size:14px;padding:16px;font-weight:normal;overflow-y:scroll;max-height:384px;border-bottom:1px solid #efefef}.wpzoom-lightbox.mfp-gallery{z-index:100000;pointer-events:none}.wpzoom-lightbox button.mfp-close{pointer-events:all;color:#fff;font-size:50px;font-weight:100;margin-top:25px;margin-left:15px}.wpzoom-lightbox .mfp-prevent-close{pointer-events:all}.wpzoom-lightbox button.mfp-close:hover{text-decoration:none}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-date{font-size:12px;padding:16px;color:#8e8e8e;flex:1}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper img{height:100%;max-width:100%;-o-object-fit:contain;object-fit:contain;min-height:700px;min-width:700px}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper{flex-grow:1;text-align:center;height:auto;width:100%;max-width:70%;max-height:100%;background:#000;border-radius:0 4px 4px 0}.wpz-insta-lightbox-wrapper>.swiper-container{pointer-events:none;width:1000px;height:80vh}.wpz-insta-lightbox-wrapper>.swiper-container .swiper-container{width:100%;height:100%}.wpz-insta-lightbox-wrapper>.swiper-container .swiper-container .swiper-slide{max-height:100%}.wpz-insta-lightbox-wrapper>.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:100%;max-height:80vh}.wpz-insta-lightbox-wrapper video{height:100%;max-width:100%}.wpz-insta-lightbox-wrapper>.swiper-container .swiper-container .swiper-button-prev,.wpz-insta-lightbox-wrapper>.swiper-container .swiper-container .swiper-button-next{--swiper-navigation-size: 34px;color:#000;background:#fff;width:var(--swiper-navigation-size);border-radius:50%}.wpz-insta-lightbox-wrapper>.swiper-container .swiper-container .swiper-button-prev::after,.wpz-insta-lightbox-wrapper>.swiper-container .swiper-container .swiper-button-next::after{font-size:16px}.wpz-insta-lightbox-wrapper>.swiper-container>.swiper-wrapper{pointer-events:all}.wpz-insta-lightbox-wrapper>.swiper-container>.swiper-button-prev,.wpz-insta-lightbox-wrapper>.swiper-container>.swiper-button-next{position:fixed;pointer-events:all}.wpz-insta-lightbox-wrapper>.swiper-container .swiper-button-prev,.wpz-insta-lightbox-wrapper>.swiper-container .swiper-button-next{color:#fff;opacity:.75}.wpz-insta-lightbox-wrapper>.swiper-container .swiper-button-prev:hover,.wpz-insta-lightbox-wrapper>.swiper-container .swiper-button-next:hover{opacity:1}.wpz-insta-lightbox-wrapper>.swiper-container .swiper-button-prev.swiper-button-disabled,.wpz-insta-lightbox-wrapper>.swiper-container .swiper-button-next.swiper-button-disabled{opacity:.25 !important}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper{display:flex;flex-direction:column;flex-grow:1}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .view-post{padding:16px;text-decoration:none;font-size:12px;color:#262626;font-weight:400;line-height:20px;display:flex;border-top:1px solid #efefef;flex-wrap:wrap;justify-content:flex-start}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .view-post a{text-decoration:none;font-size:12px;color:#262626;font-weight:400;line-height:20px;text-align:center;display:inline-block}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .view-post a span{margin-left:10px}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .view-post .delimiter{padding:0px 10px}@-webkit-keyframes show{100%{transform:none;opacity:1}}@keyframes show{100%{transform:none;opacity:1}}@media screen and (max-width: 1200px){.wpz-insta-lightbox-wrapper .wpz-insta-lightbox{flex-wrap:wrap}.wpz-insta-lightbox-wrapper>.swiper-container{width:86%}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper img{min-height:500px;min-width:500px}}@media screen and (max-width: 860px){.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-caption{font-size:12px}}@media screen and (max-width: 768px){.wpz-insta-lightbox{flex-direction:column}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper img{min-height:400px;min-width:400px}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper{border-radius:4px 4px 0 0;max-width:100%;height:65%}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-caption{max-height:134px}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper{width:100%;height:35%}}@media screen and (max-width: 600px){.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper img{min-height:280px;min-width:280px}.wpz-insta-lightbox-wrapper>.swiper-container{width:76%}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper{height:55%}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper{height:45%}}
|
dist/styles/frontend/index.asset.php
CHANGED
@@ -1 +1 @@
|
|
1 |
-
<?php return array('dependencies' => array('wp-polyfill'), 'version' => '
|
1 |
+
<?php return array('dependencies' => array('wp-polyfill'), 'version' => 'f94553f02d1e7c749daabe1f9048fea5');
|
dist/styles/frontend/index.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.zoom-instagram-widget__follow-me{margin-top:15px;text-align:center}.zoom-instagram{font-size:14px;overflow:hidden;display:block}.zoom-instagram form[disabled]{pointer-events:none}.zoom-instagram form[disabled]:not(.loading){opacity:.5}.zoom-instagram .zoom-instagram-widget__header{display:flex;gap:20px;margin:0 0 25px}.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-column-left img{height:70px;width:70px;border-radius:50%}.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-column-right{display:flex;flex-direction:column;justify-content:center}.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-name{font-size:1em;font-weight:600;line-height:1.5;padding:0;margin:0 0 5px;letter-spacing:0}.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-user{font-weight:600;line-height:normal;padding:0;margin:0;opacity:.8}.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-user a{text-decoration:none}.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-bio{font-size:13px;font-weight:normal;line-height:1.6;padding:0;margin:6px 0 0}.zoom-instagram .zoom-instagram-widget__footer{display:flex;justify-content:center;align-items:center;flex-direction:row;flex-wrap:wrap;gap:15px;margin:25px 0 0}.zoom-instagram .zoom-instagram-widget__footer>*{display:block}.zoom-instagram .zoom-instagram-widget__items-wrapper{overflow:hidden}.zoom-instagram .zoom-instagram-widget__items{display:grid;grid-template-columns:repeat(3, 1fr);gap:10px;list-style:none !important;padding:0;margin:0}.zoom-instagram .zoom-instagram-widget__items.layout-grid .zoom-instagram-widget__item img{width:100%;aspect-ratio:1/1}.zoom-instagram .zoom-instagram-widget__items.layout-fullwidth{display:flex;width:5000px}.zoom-instagram .zoom-instagram-widget__items.layout-fullwidth .zoom-instagram-widget__item img{aspect-ratio:1}.layout-legacy.zoom-instagram-widget__items{list-style:none !important}.layout-legacy.zoom-instagram-widget__items .zoom-instagram-widget__item{float:left;position:relative;margin-top:0 !important;padding:0}.layout-legacy.zoom-instagram-widget__items .zoom-instagram-widget__overlay{position:relative}.zoom-instagram-widget__item{position:relative;transition:all .1s ease-in-out}.zoom-instagram-widget__item.new{opacity:0;transform:scale(0);transform-origin:center;-webkit-animation:show 500ms linear forwards;animation:show 500ms linear forwards}.zoom-instagram-widget__item .zoom-instagram-widget__item-inner-wrap{position:relative;height:100%;overflow:hidden}.zoom-instagram-widget__item img{-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;height:100%}.widget_block .zoom-instagram-widget__items ul li.zoom-instagram-widget__item,.widget.zoom-instagram-widget ul li.zoom-instagram-widget__item,.widget.zoom-new-instagram-widget ul li.zoom-instagram-widget__item{padding:0}.widget_block .zoom-instagram-widget__items-wrapper,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items-wrapper{overflow:hidden}.widget_block .zoom-instagram-widget__items,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items{display:grid;grid-template-columns:repeat(3, 1fr);gap:10px;padding:0;margin:0}.widget_block .zoom-instagram-widget__items::before,.widget_block .zoom-instagram-widget__items::after,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items::before,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items::after{display:none}.widget_block .zoom-instagram-widget__items.layout-grid .zoom-instagram-widget__item img,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items.layout-grid .zoom-instagram-widget__item img{width:100%;aspect-ratio:1/1}.widget_block .zoom-instagram-widget__items.layout-fullwidth,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items.layout-fullwidth{display:flex;width:5000px}.widget_block .zoom-instagram-widget__items.layout-fullwidth .zoom-instagram-widget__item img,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items.layout-fullwidth .zoom-instagram-widget__item img{aspect-ratio:1}.widget_block .zoom-instagram-widget__items .zoom-instagram-widget__item .zoom-instagram-widget__item-inner-wrap,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items .zoom-instagram-widget__item .zoom-instagram-widget__item-inner-wrap{position:relative;height:100%;overflow:hidden}.widget_block .zoom-instagram-widget__items .zoom-instagram-widget__item img,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items .zoom-instagram-widget__item img{-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;height:100%}.widget_block .zoom-instagram-widget__items .zoom-instagram-widget__item .zoom-instagram-link,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items .zoom-instagram-widget__item .zoom-instagram-link{padding-bottom:100%}.ig-b-{display:inline-block}a.ig-b-v-24{border-color:#3897f0;color:#3897f0 !important;border-radius:3px;border-style:solid;border-width:1px;font-weight:600 !important;outline:none;overflow:hidden;white-space:nowrap;-webkit-appearance:none;font-family:sans-serif;padding:5px 15px;font-size:14px;transition:all .15s ease-in-out;-moz-transition:all .15s ease-in-out;-webkit-transition:all .15s ease-in-out;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none !important}a.ig-b-v-24:hover{background:#3897f0;border-color:#3897f0;color:#fff !important}.zoom-instagram-widget__item .hover-controls{opacity:0;z-index:9;margin-top:-15px;position:absolute;top:40%;width:100%;text-align:center;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out}.zoom-instagram-widget__items[data-lightbox="1"] .zoom-instagram-widget__item .zoom-instagram-icon-wrap{pointer-events:none}.zoom-instagram-widget__item .hover-controls~.zoom-instagram-icon-wrap{bottom:10%;pointer-events:all}.zoom-instagram-widget__item .hover-layout.small .hover-controls~.zoom-instagram-icon-wrap{bottom:6%}.zoom-instagram-widget__item .hover-layout.small .zoom-instagram-icon-wrap{bottom:calc(50% - 15px)}.zoom-instagram-widget__item .zoom-instagram-icon-wrap{bottom:calc(50% - 15px);height:30px;width:100%;position:absolute;z-index:9;text-align:center}.zoom-instagram-widget__item:hover .hover-controls{opacity:1}.zoom-instagram-widget__item .zoom-instagram-icon-wrap{opacity:0;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out}.zoom-instagram-widget__item:hover .zoom-instagram-icon-wrap{opacity:1}.zoom-instagram-widget__item .hover-controls .dashicons{font-size:20px;width:20px;height:20px;color:#fff;vertical-align:middle}.zoom-instagram-widget__item .hover-controls .counter{padding-left:1px;padding-right:12px;font-weight:500;color:#fff;font-size:14px;opacity:.8;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.zoom-instagram-widget__overlay{position:absolute;top:0;left:0;right:0;bottom:0}.zoom-instagram-widget__overlay:after{position:absolute;content:"";top:0;left:0;pointer-events:none;width:100%;height:100%;opacity:0;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out}.zoom-instagram-widget__overlay:hover:after{opacity:.7;background-color:#000}.zoom-instagram-widget__black:after{background-color:#000}.zoom-svg-instagram-simple{display:inline-block;width:30px;height:30px;background:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4IgogICAgIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIKICAgICB2aWV3Qm94PSIwIDAgNTAgNTAiCiAgICAgc3R5bGU9ImZpbGw6I2ZmZmZmZjsiPiAgICA8cGF0aCBzdHlsZT0ibGluZS1oZWlnaHQ6bm9ybWFsO3RleHQtaW5kZW50OjA7dGV4dC1hbGlnbjpzdGFydDt0ZXh0LWRlY29yYXRpb24tbGluZTpub25lO3RleHQtZGVjb3JhdGlvbi1zdHlsZTpzb2xpZDt0ZXh0LWRlY29yYXRpb24tY29sb3I6IzAwMDt0ZXh0LXRyYW5zZm9ybTpub25lO2Jsb2NrLXByb2dyZXNzaW9uOnRiO2lzb2xhdGlvbjphdXRvO21peC1ibGVuZC1tb2RlOm5vcm1hbCIgZD0iTSAxNiAzIEMgOC44MzI0ODM5IDMgMyA4LjgzMjQ4MzkgMyAxNiBMIDMgMzQgQyAzIDQxLjE2NzUxNiA4LjgzMjQ4MzkgNDcgMTYgNDcgTCAzNCA0NyBDIDQxLjE2NzUxNiA0NyA0NyA0MS4xNjc1MTYgNDcgMzQgTCA0NyAxNiBDIDQ3IDguODMyNDgzOSA0MS4xNjc1MTYgMyAzNCAzIEwgMTYgMyB6IE0gMTYgNSBMIDM0IDUgQyA0MC4wODY0ODQgNSA0NSA5LjkxMzUxNjEgNDUgMTYgTCA0NSAzNCBDIDQ1IDQwLjA4NjQ4NCA0MC4wODY0ODQgNDUgMzQgNDUgTCAxNiA0NSBDIDkuOTEzNTE2MSA0NSA1IDQwLjA4NjQ4NCA1IDM0IEwgNSAxNiBDIDUgOS45MTM1MTYxIDkuOTEzNTE2MSA1IDE2IDUgeiBNIDM3IDExIEEgMiAyIDAgMCAwIDM1IDEzIEEgMiAyIDAgMCAwIDM3IDE1IEEgMiAyIDAgMCAwIDM5IDEzIEEgMiAyIDAgMCAwIDM3IDExIHogTSAyNSAxNCBDIDE4LjkzNjcxMiAxNCAxNCAxOC45MzY3MTIgMTQgMjUgQyAxNCAzMS4wNjMyODggMTguOTM2NzEyIDM2IDI1IDM2IEMgMzEuMDYzMjg4IDM2IDM2IDMxLjA2MzI4OCAzNiAyNSBDIDM2IDE4LjkzNjcxMiAzMS4wNjMyODggMTQgMjUgMTQgeiBNIDI1IDE2IEMgMjkuOTgyNDA3IDE2IDM0IDIwLjAxNzU5MyAzNCAyNSBDIDM0IDI5Ljk4MjQwNyAyOS45ODI0MDcgMzQgMjUgMzQgQyAyMC4wMTc1OTMgMzQgMTYgMjkuOTgyNDA3IDE2IDI1IEMgMTYgMjAuMDE3NTkzIDIwLjAxNzU5MyAxNiAyNSAxNiB6IiBmb250LXdlaWdodD0iNDAwIiBmb250LWZhbWlseT0ic2Fucy1zZXJpZiIgd2hpdGUtc3BhY2U9Im5vcm1hbCIgb3ZlcmZsb3c9InZpc2libGUiPjwvcGF0aD48L3N2Zz4=") 50% 50% no-repeat;background-size:100%}.zoom-svg-instagram-stroke{display:inline-block;width:30px;height:30px;background:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4IgogICAgIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIKICAgICB2aWV3Qm94PSIwIDAgMjUyIDI1MiIKICAgICBzdHlsZT0iZmlsbDojMDAwMDAwOyI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMi4zOTQsMi4zOTQpIHNjYWxlKDAuOTgxLDAuOTgxKSI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJub256ZXJvIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9ImJ1dHQiIHN0cm9rZS1saW5lam9pbj0ibm9uZSIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtZGFzaGFycmF5PSIiIHN0cm9rZS1kYXNob2Zmc2V0PSIwIiBmb250LWZhbWlseT0ibm9uZSIgZm9udC13ZWlnaHQ9Im5vbmUiIGZvbnQtc2l6ZT0ibm9uZSIgdGV4dC1hbmNob3I9Im5vbmUiIHN0eWxlPSJtaXgtYmxlbmQtbW9kZTogbm9ybWFsIj48ZyBpZD0ib3JpZ2luYWwtaWNvbiAxIiBmaWxsPSIjZmZmZmZmIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iNSIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+PHBhdGggZD0iTTE3MS4zNiwxNS4xMmMzNi4xMjQyOCwwIDY1LjUyLDI5LjM5NTcyIDY1LjUyLDY1LjUydjkwLjcyYzAsMzYuMTI0MjggLTI5LjM5NTcyLDY1LjUyIC02NS41Miw2NS41MmgtOTAuNzJjLTM2LjEyNDI4LDAgLTY1LjUyLC0yOS4zOTU3MiAtNjUuNTIsLTY1LjUydi05MC43MmMwLC0zNi4xMjQyOCAyOS4zOTU3MiwtNjUuNTIgNjUuNTIsLTY1LjUyek0yNS4yLDgwLjY0djkwLjcyYzAsMzAuNjc1ODggMjQuNzY0MTIsNTUuNDQgNTUuNDQsNTUuNDRoOTAuNzJjMzAuNjc1ODgsMCA1NS40NCwtMjQuNzY0MTIgNTUuNDQsLTU1LjQ0di05MC43MmMwLC0zMC42NzU4OCAtMjQuNzY0MTIsLTU1LjQ0IC01NS40NCwtNTUuNDRoLTkwLjcyYy0zMC42NzU4OCwwIC01NS40NCwyNC43NjQxMiAtNTUuNDQsNTUuNDR6TTE5Ni41Niw2NS41MmMwLDUuNTY3MDMgLTQuNTEyOTcsMTAuMDggLTEwLjA4LDEwLjA4Yy01LjU2NzAzLDAgLTEwLjA4LC00LjUxMjk3IC0xMC4wOCwtMTAuMDhjMCwtNS41NjcwMyA0LjUxMjk3LC0xMC4wOCAxMC4wOCwtMTAuMDhjNS41NjcwMywwIDEwLjA4LDQuNTEyOTcgMTAuMDgsMTAuMDh6TTE4MS40NCwxMjZjMCwzMC41NTg5NyAtMjQuODgxMDMsNTUuNDQgLTU1LjQ0LDU1LjQ0Yy0zMC41NTg5NywwIC01NS40NCwtMjQuODgxMDMgLTU1LjQ0LC01NS40NGMwLC0zMC41NTg5NyAyNC44ODEwMywtNTUuNDQgNTUuNDQsLTU1LjQ0YzMwLjU1ODk3LDAgNTUuNDQsMjQuODgxMDMgNTUuNDQsNTUuNDR6TTgwLjY0LDEyNmMwLDI1LjExMTMzIDIwLjI0ODY3LDQ1LjM2IDQ1LjM2LDQ1LjM2YzI1LjExMTMzLDAgNDUuMzYsLTIwLjI0ODY3IDQ1LjM2LC00NS4zNmMwLC0yNS4xMTEzMyAtMjAuMjQ4NjcsLTQ1LjM2IC00NS4zNiwtNDUuMzZjLTI1LjExMTMzLDAgLTQ1LjM2LDIwLjI0ODY3IC00NS4zNiw0NS4zNnoiPjwvcGF0aD48L2c+PHBhdGggZD0iTTAsMjUydi0yNTJoMjUydjI1MnoiIGZpbGw9Im5vbmUiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWpvaW49Im1pdGVyIj48L3BhdGg+PGcgaWQ9Im9yaWdpbmFsLWljb24iIGZpbGw9IiNmZmZmZmYiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWpvaW49Im1pdGVyIj48cGF0aCBkPSJNODAuNjQsMTUuMTJjLTM2LjEyNDI4LDAgLTY1LjUyLDI5LjM5NTcyIC02NS41Miw2NS41MnY5MC43MmMwLDM2LjEyNDI4IDI5LjM5NTcyLDY1LjUyIDY1LjUyLDY1LjUyaDkwLjcyYzM2LjEyNDI4LDAgNjUuNTIsLTI5LjM5NTcyIDY1LjUyLC02NS41MnYtOTAuNzJjMCwtMzYuMTI0MjggLTI5LjM5NTcyLC02NS41MiAtNjUuNTIsLTY1LjUyek04MC42NCwyNS4yaDkwLjcyYzMwLjY3NTg4LDAgNTUuNDQsMjQuNzY0MTIgNTUuNDQsNTUuNDR2OTAuNzJjMCwzMC42NzU4OCAtMjQuNzY0MTIsNTUuNDQgLTU1LjQ0LDU1LjQ0aC05MC43MmMtMzAuNjc1ODgsMCAtNTUuNDQsLTI0Ljc2NDEyIC01NS40NCwtNTUuNDR2LTkwLjcyYzAsLTMwLjY3NTg4IDI0Ljc2NDEyLC01NS40NCA1NS40NCwtNTUuNDR6TTE4Ni40OCw1NS40NGMtNS41NjcwMywwIC0xMC4wOCw0LjUxMjk3IC0xMC4wOCwxMC4wOGMwLDUuNTY3MDMgNC41MTI5NywxMC4wOCAxMC4wOCwxMC4wOGM1LjU2NzAzLDAgMTAuMDgsLTQuNTEyOTcgMTAuMDgsLTEwLjA4YzAsLTUuNTY3MDMgLTQuNTEyOTcsLTEwLjA4IC0xMC4wOCwtMTAuMDh6TTEyNiw3MC41NmMtMzAuNTU4OTcsMCAtNTUuNDQsMjQuODgxMDMgLTU1LjQ0LDU1LjQ0YzAsMzAuNTU4OTcgMjQuODgxMDMsNTUuNDQgNTUuNDQsNTUuNDRjMzAuNTU4OTcsMCA1NS40NCwtMjQuODgxMDMgNTUuNDQsLTU1LjQ0YzAsLTMwLjU1ODk3IC0yNC44ODEwMywtNTUuNDQgLTU1LjQ0LC01NS40NHpNMTI2LDgwLjY0YzI1LjExMTMzLDAgNDUuMzYsMjAuMjQ4NjcgNDUuMzYsNDUuMzZjMCwyNS4xMTEzMyAtMjAuMjQ4NjcsNDUuMzYgLTQ1LjM2LDQ1LjM2Yy0yNS4xMTEzMywwIC00NS4zNiwtMjAuMjQ4NjcgLTQ1LjM2LC00NS4zNmMwLC0yNS4xMTEzMyAyMC4yNDg2NywtNDUuMzYgNDUuMzYsLTQ1LjM2eiI+PC9wYXRoPjwvZz48cGF0aCBkPSJNMTI2LDI1MmMtNjkuNTg3ODgsMCAtMTI2LC01Ni40MTIxMiAtMTI2LC0xMjZ2MGMwLC02OS41ODc4OCA1Ni40MTIxMiwtMTI2IDEyNiwtMTI2djBjNjkuNTg3ODgsMCAxMjYsNTYuNDEyMTIgMTI2LDEyNnYwYzAsNjkuNTg3ODggLTU2LjQxMjEyLDEyNiAtMTI2LDEyNnoiIGZpbGw9Im5vbmUiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWpvaW49Im1pdGVyIj48L3BhdGg+PHBhdGggZD0iTTEyNiwyNDYuOTZjLTY2LjgwNDM2LDAgLTEyMC45NiwtNTQuMTU1NjQgLTEyMC45NiwtMTIwLjk2djBjMCwtNjYuODA0MzYgNTQuMTU1NjQsLTEyMC45NiAxMjAuOTYsLTEyMC45NmgwYzY2LjgwNDM2LDAgMTIwLjk2LDU0LjE1NTY0IDEyMC45NiwxMjAuOTZ2MGMwLDY2LjgwNDM2IC01NC4xNTU2NCwxMjAuOTYgLTEyMC45NiwxMjAuOTZ6IiBmaWxsPSJub25lIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLWxpbmVqb2luPSJtaXRlciI+PC9wYXRoPjxwYXRoIGQ9IiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZS1saW5lam9pbj0ibWl0ZXIiPjwvcGF0aD48cGF0aCBkPSIiIGZpbGw9Im5vbmUiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWpvaW49Im1pdGVyIj48L3BhdGg+PHBhdGggZD0iIiBmaWxsPSJub25lIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLWxpbmVqb2luPSJtaXRlciI+PC9wYXRoPjxwYXRoIGQ9IiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZS1saW5lam9pbj0ibWl0ZXIiPjwvcGF0aD48L2c+PC9nPjwvc3ZnPg==") 50% 50% no-repeat;background-size:100%}.zoom-instagram-widget__item .hover-layout.small .hover-controls .dashicons{font-size:15px;width:15px;height:15px}.zoom-instagram-widget__item .hover-layout.small .zoom-instagram-icon-wrap .zoom-svg-instagram-stroke{width:18px;height:18px}.zoom-instagram-widget__item .hover-layout.small .hover-controls .counter{padding-left:1px;padding-right:4px;font-size:11px}.zoom-instagram-widget-user-info{display:flex;padding:0 0px 20px}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-picture{flex:1}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-picture img{border-radius:50%}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-meta{display:flex;flex:3;flex-direction:column;margin-left:15px;text-align:left;justify-content:center}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-about-data{display:flex;justify-content:space-between;margin-bottom:10px}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-stats{font-size:14px;line-height:1.2;justify-content:space-between;display:flex;text-align:center}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-follow-button{padding:0px 24px;margin-top:10px;background:#3897f0;color:#fff !important;font-size:14px;font-weight:600;line-height:26px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;text-transform:none;border-radius:3px;outline:0;overflow:hidden;text-overflow:ellipsis;display:block;border:none;box-shadow:none;text-decoration:none !important}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-follow-button:hover{color:#fff;opacity:.8;box-shadow:none;border:none;text-decoration:none}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-counts{font-weight:600}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-counts-subhead{opacity:.7;font-size:14px}.zoom-instagram-widget-user-info-middle-cell{padding:0px 20px}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-fullname{font-weight:600;font-size:16px}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-names-wrapper{padding-right:20px;word-break:break-word}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-username{font-size:14px;font-weight:600;word-break:break-all;opacity:.7}.zoom-instagram-widget-user-info-bio{text-align:left;font-size:14px;margin:0 0 15px}.zoom-instagram-widget__items .zoom-instagram-widget__item .zoom-instagram-link{display:block;background-size:cover !important;background-position:center center !important;background-repeat:no-repeat !important;padding-bottom:100%}.zoom-instagram-widget__items .zoom-instagram-widget__item .svg-icon{position:absolute;width:32px;padding:8px;height:32px;display:flex;top:0;right:0;z-index:1;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out}.zoom-instagram-widget__items .zoom-instagram-widget__item.media-icons-hover .svg-icon{opacity:0}.zoom-instagram-widget__items .zoom-instagram-widget__item.media-icons-hover:hover .svg-icon{opacity:1}.wpzoom-lightbox .mfp-inline-holder .mfp-content{max-width:none}.wpz-insta-lightbox{pointer-events:all;display:flex;flex-direction:row;background-color:#fff;border-radius:4px;height:100%}.wpz-insta-lightbox-wrapper{display:flex;justify-content:center;pointer-events:none}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper{width:30%}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header{display:flex;align-items:center;padding:16px;border-bottom:1px solid #efefef;flex-wrap:wrap}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-avatar img{width:42px;height:42px;border-radius:50%}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-username a,.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-follow a{color:#262626;font-weight:600;text-decoration:none;font-size:14px}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-username a:hover{text-decoration:underline}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-follow a{color:#0095f6}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header>div{margin-right:13px;min-width:42px}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-buttons{display:flex}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-buttons>div{padding:5px}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-caption{color:#262626;line-height:1.5;font-size:14px;padding:16px;font-weight:normal;overflow-y:scroll;max-height:384px;border-bottom:1px solid #efefef}.wpzoom-lightbox.mfp-gallery{z-index:100000;pointer-events:none}.wpzoom-lightbox button.mfp-close{pointer-events:all;color:#fff;font-size:50px;font-weight:100;margin-top:25px;margin-right:15px}.wpzoom-lightbox .mfp-prevent-close{pointer-events:all}.wpzoom-lightbox button.mfp-close:hover{text-decoration:none}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-date{font-size:12px;padding:16px;color:#8e8e8e;flex:1}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper img{height:100%;max-width:100%;-o-object-fit:contain;object-fit:contain;min-height:700px;min-width:700px}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper{flex-grow:1;text-align:center;height:auto;width:100%;max-width:70%;max-height:100%;background:#000;border-radius:4px 0 0 4px}.wpz-insta-lightbox-wrapper>.swiper-container{pointer-events:none;width:1000px;height:80vh}.wpz-insta-lightbox-wrapper>.swiper-container .swiper-container{width:100%;height:100%}.wpz-insta-lightbox-wrapper>.swiper-container .swiper-container .swiper-slide{max-height:100%}.wpz-insta-lightbox-wrapper>.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:100%;max-height:80vh}.wpz-insta-lightbox-wrapper video{height:100%;max-width:100%}.wpz-insta-lightbox-wrapper>.swiper-container .swiper-container .swiper-button-prev,.wpz-insta-lightbox-wrapper>.swiper-container .swiper-container .swiper-button-next{--swiper-navigation-size: 34px;color:#000;background:#fff;width:var(--swiper-navigation-size);border-radius:50%}.wpz-insta-lightbox-wrapper>.swiper-container .swiper-container .swiper-button-prev::after,.wpz-insta-lightbox-wrapper>.swiper-container .swiper-container .swiper-button-next::after{font-size:16px}.wpz-insta-lightbox-wrapper>.swiper-container>.swiper-wrapper{pointer-events:all}.wpz-insta-lightbox-wrapper>.swiper-container>.swiper-button-prev,.wpz-insta-lightbox-wrapper>.swiper-container>.swiper-button-next{position:fixed;pointer-events:all}.wpz-insta-lightbox-wrapper>.swiper-container .swiper-button-prev,.wpz-insta-lightbox-wrapper>.swiper-container .swiper-button-next{color:#fff;opacity:.75}.wpz-insta-lightbox-wrapper>.swiper-container .swiper-button-prev:hover,.wpz-insta-lightbox-wrapper>.swiper-container .swiper-button-next:hover{opacity:1}.wpz-insta-lightbox-wrapper>.swiper-container .swiper-button-prev.swiper-button-disabled,.wpz-insta-lightbox-wrapper>.swiper-container .swiper-button-next.swiper-button-disabled{opacity:.25 !important}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper{display:flex;flex-direction:column;flex-grow:1}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .view-post{padding:16px;text-decoration:none;font-size:12px;color:#262626;font-weight:400;line-height:20px;display:flex;border-top:1px solid #efefef;flex-wrap:wrap;justify-content:flex-start}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .view-post a{text-decoration:none;font-size:12px;color:#262626;font-weight:400;line-height:20px;text-align:center;display:inline-block}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .view-post a span{margin-right:10px}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .view-post .delimiter{padding:0px 10px}@-webkit-keyframes show{100%{transform:none;opacity:1}}@keyframes show{100%{transform:none;opacity:1}}@media screen and (max-width: 1200px){.wpz-insta-lightbox-wrapper .wpz-insta-lightbox{flex-wrap:wrap}.wpz-insta-lightbox-wrapper>.swiper-container{width:86%}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper img{min-height:500px;min-width:500px}}@media screen and (max-width: 860px){.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-caption{font-size:12px}}@media screen and (max-width: 768px){.wpz-insta-lightbox{flex-direction:column}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper img{min-height:400px;min-width:400px}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper{border-radius:4px 4px 0 0;max-width:100%;height:65%}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-caption{max-height:134px}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper{width:100%;height:35%}}@media screen and (max-width: 600px){.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper img{min-height:280px;min-width:280px}.wpz-insta-lightbox-wrapper>.swiper-container{width:76%}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper{height:55%}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper{height:45%}}
|
1 |
+
.zoom-instagram-widget__follow-me{margin-top:15px;text-align:center}.zoom-instagram{font-size:14px;overflow:hidden;display:block}.zoom-instagram form[disabled]{pointer-events:none}.zoom-instagram form[disabled]:not(.loading){opacity:.5}.zoom-instagram .zoom-instagram-widget__header{display:flex;gap:20px;margin:0 0 25px}.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-column-left img{height:70px;width:70px;border-radius:50%}.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-column-right{display:flex;flex-direction:column;justify-content:center}.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-name{font-size:1em;font-weight:600;line-height:1.5;padding:0;margin:0 0 5px;letter-spacing:0}.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-user{font-weight:600;line-height:normal;padding:0;margin:0;opacity:.8}.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-user a{text-decoration:none}.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-bio{font-size:13px;font-weight:normal;line-height:1.6;padding:0;margin:6px 0 0}.zoom-instagram .zoom-instagram-widget__footer{display:flex;justify-content:center;align-items:center;flex-direction:row;flex-wrap:wrap;gap:15px;margin:25px 0 0}.zoom-instagram .zoom-instagram-widget__footer>*{display:block}.zoom-instagram .zoom-instagram-widget__items-wrapper{overflow:hidden}.zoom-instagram .zoom-instagram-widget__items{display:grid;grid-template-columns:repeat(3, 1fr);gap:10px;list-style:none !important;padding:0;margin:0}.zoom-instagram .zoom-instagram-widget__items.layout-grid .zoom-instagram-widget__item img{width:100%;aspect-ratio:1/1}.zoom-instagram .zoom-instagram-widget__items.layout-fullwidth{display:flex;width:5000px}.zoom-instagram .zoom-instagram-widget__items.layout-fullwidth .zoom-instagram-widget__item img{aspect-ratio:1}.layout-legacy.zoom-instagram-widget__items{list-style:none !important}.layout-legacy.zoom-instagram-widget__items .zoom-instagram-widget__item{float:left;position:relative;margin-top:0 !important;padding:0}.layout-legacy.zoom-instagram-widget__items .zoom-instagram-widget__overlay{position:relative}.zoom-instagram-widget__item{position:relative;transition:all .1s ease-in-out}.zoom-instagram-widget__item.new{opacity:0;transform:scale(0);transform-origin:center;-webkit-animation:show 500ms linear forwards;animation:show 500ms linear forwards}.zoom-instagram-widget__item .zoom-instagram-widget__item-inner-wrap{position:relative;height:100%;overflow:hidden}.zoom-instagram-widget__item img{-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;height:100%}.widget_block .zoom-instagram-widget__items ul li.zoom-instagram-widget__item,.widget.zoom-instagram-widget ul li.zoom-instagram-widget__item,.widget.zoom-new-instagram-widget ul li.zoom-instagram-widget__item{padding:0}.widget_block .zoom-instagram-widget__items-wrapper,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items-wrapper{overflow:hidden}.widget_block .zoom-instagram-widget__items,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items{display:grid;grid-template-columns:repeat(3, 1fr);gap:10px;padding:0;margin:0}.widget_block .zoom-instagram-widget__items::before,.widget_block .zoom-instagram-widget__items::after,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items::before,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items::after{display:none}.widget_block .zoom-instagram-widget__items.layout-grid .zoom-instagram-widget__item img,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items.layout-grid .zoom-instagram-widget__item img{width:100%;aspect-ratio:1/1}.widget_block .zoom-instagram-widget__items.layout-fullwidth,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items.layout-fullwidth{display:flex;width:5000px}.widget_block .zoom-instagram-widget__items.layout-fullwidth .zoom-instagram-widget__item img,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items.layout-fullwidth .zoom-instagram-widget__item img{aspect-ratio:1}.widget_block .zoom-instagram-widget__items .zoom-instagram-widget__item .zoom-instagram-widget__item-inner-wrap,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items .zoom-instagram-widget__item .zoom-instagram-widget__item-inner-wrap{position:relative;height:100%;overflow:hidden}.widget_block .zoom-instagram-widget__items .zoom-instagram-widget__item img,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items .zoom-instagram-widget__item img{-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;height:100%}.widget_block .zoom-instagram-widget__items .zoom-instagram-widget__item .zoom-instagram-link,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items .zoom-instagram-widget__item .zoom-instagram-link{padding-bottom:100%}.ig-b-{display:inline-block}a.ig-b-v-24{border-color:#3897f0;color:#3897f0 !important;border-radius:3px;border-style:solid;border-width:1px;font-weight:600 !important;outline:none;overflow:hidden;white-space:nowrap;-webkit-appearance:none;font-family:sans-serif;padding:5px 15px;font-size:14px;transition:all .15s ease-in-out;-moz-transition:all .15s ease-in-out;-webkit-transition:all .15s ease-in-out;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-decoration:none !important}a.ig-b-v-24:hover{background:#3897f0;border-color:#3897f0;color:#fff !important}.zoom-instagram-widget__item .hover-controls{opacity:0;z-index:9;margin-top:-15px;position:absolute;top:40%;width:100%;text-align:center;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out}.zoom-instagram-widget__items[data-lightbox="1"] .zoom-instagram-widget__item .zoom-instagram-icon-wrap{pointer-events:none}.zoom-instagram-widget__item .hover-controls~.zoom-instagram-icon-wrap{bottom:10%;pointer-events:all}.zoom-instagram-widget__item .hover-layout.small .hover-controls~.zoom-instagram-icon-wrap{bottom:6%}.zoom-instagram-widget__item .hover-layout.small .zoom-instagram-icon-wrap{bottom:calc(50% - 15px)}.zoom-instagram-widget__item .zoom-instagram-icon-wrap{bottom:calc(50% - 15px);height:30px;width:100%;position:absolute;z-index:9;text-align:center}.zoom-instagram-widget__item:hover .hover-controls{opacity:1}.zoom-instagram-widget__item .zoom-instagram-icon-wrap{opacity:0;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out}.zoom-instagram-widget__item:hover .zoom-instagram-icon-wrap{opacity:1}.zoom-instagram-widget__item .hover-controls .dashicons{font-size:20px;width:20px;height:20px;color:#fff;vertical-align:middle}.zoom-instagram-widget__item .hover-controls .counter{padding-left:1px;padding-right:12px;font-weight:500;color:#fff;font-size:14px;opacity:.8;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.zoom-instagram-widget__overlay{position:absolute;top:0;left:0;right:0;bottom:0}.zoom-instagram-widget__overlay:after{position:absolute;content:"";top:0;left:0;pointer-events:none;width:100%;height:100%;opacity:0;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out}.zoom-instagram-widget__overlay:hover:after{opacity:.7;background-color:#000}.zoom-instagram-widget__black:after{background-color:#000}.zoom-svg-instagram-simple{display:inline-block;width:30px;height:30px;background:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4IgogICAgIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIKICAgICB2aWV3Qm94PSIwIDAgNTAgNTAiCiAgICAgc3R5bGU9ImZpbGw6I2ZmZmZmZjsiPiAgICA8cGF0aCBzdHlsZT0ibGluZS1oZWlnaHQ6bm9ybWFsO3RleHQtaW5kZW50OjA7dGV4dC1hbGlnbjpzdGFydDt0ZXh0LWRlY29yYXRpb24tbGluZTpub25lO3RleHQtZGVjb3JhdGlvbi1zdHlsZTpzb2xpZDt0ZXh0LWRlY29yYXRpb24tY29sb3I6IzAwMDt0ZXh0LXRyYW5zZm9ybTpub25lO2Jsb2NrLXByb2dyZXNzaW9uOnRiO2lzb2xhdGlvbjphdXRvO21peC1ibGVuZC1tb2RlOm5vcm1hbCIgZD0iTSAxNiAzIEMgOC44MzI0ODM5IDMgMyA4LjgzMjQ4MzkgMyAxNiBMIDMgMzQgQyAzIDQxLjE2NzUxNiA4LjgzMjQ4MzkgNDcgMTYgNDcgTCAzNCA0NyBDIDQxLjE2NzUxNiA0NyA0NyA0MS4xNjc1MTYgNDcgMzQgTCA0NyAxNiBDIDQ3IDguODMyNDgzOSA0MS4xNjc1MTYgMyAzNCAzIEwgMTYgMyB6IE0gMTYgNSBMIDM0IDUgQyA0MC4wODY0ODQgNSA0NSA5LjkxMzUxNjEgNDUgMTYgTCA0NSAzNCBDIDQ1IDQwLjA4NjQ4NCA0MC4wODY0ODQgNDUgMzQgNDUgTCAxNiA0NSBDIDkuOTEzNTE2MSA0NSA1IDQwLjA4NjQ4NCA1IDM0IEwgNSAxNiBDIDUgOS45MTM1MTYxIDkuOTEzNTE2MSA1IDE2IDUgeiBNIDM3IDExIEEgMiAyIDAgMCAwIDM1IDEzIEEgMiAyIDAgMCAwIDM3IDE1IEEgMiAyIDAgMCAwIDM5IDEzIEEgMiAyIDAgMCAwIDM3IDExIHogTSAyNSAxNCBDIDE4LjkzNjcxMiAxNCAxNCAxOC45MzY3MTIgMTQgMjUgQyAxNCAzMS4wNjMyODggMTguOTM2NzEyIDM2IDI1IDM2IEMgMzEuMDYzMjg4IDM2IDM2IDMxLjA2MzI4OCAzNiAyNSBDIDM2IDE4LjkzNjcxMiAzMS4wNjMyODggMTQgMjUgMTQgeiBNIDI1IDE2IEMgMjkuOTgyNDA3IDE2IDM0IDIwLjAxNzU5MyAzNCAyNSBDIDM0IDI5Ljk4MjQwNyAyOS45ODI0MDcgMzQgMjUgMzQgQyAyMC4wMTc1OTMgMzQgMTYgMjkuOTgyNDA3IDE2IDI1IEMgMTYgMjAuMDE3NTkzIDIwLjAxNzU5MyAxNiAyNSAxNiB6IiBmb250LXdlaWdodD0iNDAwIiBmb250LWZhbWlseT0ic2Fucy1zZXJpZiIgd2hpdGUtc3BhY2U9Im5vcm1hbCIgb3ZlcmZsb3c9InZpc2libGUiPjwvcGF0aD48L3N2Zz4=") 50% 50% no-repeat;background-size:100%}.zoom-svg-instagram-stroke{display:inline-block;width:30px;height:30px;background:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4IgogICAgIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIKICAgICB2aWV3Qm94PSIwIDAgMjUyIDI1MiIKICAgICBzdHlsZT0iZmlsbDojMDAwMDAwOyI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMi4zOTQsMi4zOTQpIHNjYWxlKDAuOTgxLDAuOTgxKSI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJub256ZXJvIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9ImJ1dHQiIHN0cm9rZS1saW5lam9pbj0ibm9uZSIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtZGFzaGFycmF5PSIiIHN0cm9rZS1kYXNob2Zmc2V0PSIwIiBmb250LWZhbWlseT0ibm9uZSIgZm9udC13ZWlnaHQ9Im5vbmUiIGZvbnQtc2l6ZT0ibm9uZSIgdGV4dC1hbmNob3I9Im5vbmUiIHN0eWxlPSJtaXgtYmxlbmQtbW9kZTogbm9ybWFsIj48ZyBpZD0ib3JpZ2luYWwtaWNvbiAxIiBmaWxsPSIjZmZmZmZmIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iNSIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+PHBhdGggZD0iTTE3MS4zNiwxNS4xMmMzNi4xMjQyOCwwIDY1LjUyLDI5LjM5NTcyIDY1LjUyLDY1LjUydjkwLjcyYzAsMzYuMTI0MjggLTI5LjM5NTcyLDY1LjUyIC02NS41Miw2NS41MmgtOTAuNzJjLTM2LjEyNDI4LDAgLTY1LjUyLC0yOS4zOTU3MiAtNjUuNTIsLTY1LjUydi05MC43MmMwLC0zNi4xMjQyOCAyOS4zOTU3MiwtNjUuNTIgNjUuNTIsLTY1LjUyek0yNS4yLDgwLjY0djkwLjcyYzAsMzAuNjc1ODggMjQuNzY0MTIsNTUuNDQgNTUuNDQsNTUuNDRoOTAuNzJjMzAuNjc1ODgsMCA1NS40NCwtMjQuNzY0MTIgNTUuNDQsLTU1LjQ0di05MC43MmMwLC0zMC42NzU4OCAtMjQuNzY0MTIsLTU1LjQ0IC01NS40NCwtNTUuNDRoLTkwLjcyYy0zMC42NzU4OCwwIC01NS40NCwyNC43NjQxMiAtNTUuNDQsNTUuNDR6TTE5Ni41Niw2NS41MmMwLDUuNTY3MDMgLTQuNTEyOTcsMTAuMDggLTEwLjA4LDEwLjA4Yy01LjU2NzAzLDAgLTEwLjA4LC00LjUxMjk3IC0xMC4wOCwtMTAuMDhjMCwtNS41NjcwMyA0LjUxMjk3LC0xMC4wOCAxMC4wOCwtMTAuMDhjNS41NjcwMywwIDEwLjA4LDQuNTEyOTcgMTAuMDgsMTAuMDh6TTE4MS40NCwxMjZjMCwzMC41NTg5NyAtMjQuODgxMDMsNTUuNDQgLTU1LjQ0LDU1LjQ0Yy0zMC41NTg5NywwIC01NS40NCwtMjQuODgxMDMgLTU1LjQ0LC01NS40NGMwLC0zMC41NTg5NyAyNC44ODEwMywtNTUuNDQgNTUuNDQsLTU1LjQ0YzMwLjU1ODk3LDAgNTUuNDQsMjQuODgxMDMgNTUuNDQsNTUuNDR6TTgwLjY0LDEyNmMwLDI1LjExMTMzIDIwLjI0ODY3LDQ1LjM2IDQ1LjM2LDQ1LjM2YzI1LjExMTMzLDAgNDUuMzYsLTIwLjI0ODY3IDQ1LjM2LC00NS4zNmMwLC0yNS4xMTEzMyAtMjAuMjQ4NjcsLTQ1LjM2IC00NS4zNiwtNDUuMzZjLTI1LjExMTMzLDAgLTQ1LjM2LDIwLjI0ODY3IC00NS4zNiw0NS4zNnoiPjwvcGF0aD48L2c+PHBhdGggZD0iTTAsMjUydi0yNTJoMjUydjI1MnoiIGZpbGw9Im5vbmUiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWpvaW49Im1pdGVyIj48L3BhdGg+PGcgaWQ9Im9yaWdpbmFsLWljb24iIGZpbGw9IiNmZmZmZmYiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWpvaW49Im1pdGVyIj48cGF0aCBkPSJNODAuNjQsMTUuMTJjLTM2LjEyNDI4LDAgLTY1LjUyLDI5LjM5NTcyIC02NS41Miw2NS41MnY5MC43MmMwLDM2LjEyNDI4IDI5LjM5NTcyLDY1LjUyIDY1LjUyLDY1LjUyaDkwLjcyYzM2LjEyNDI4LDAgNjUuNTIsLTI5LjM5NTcyIDY1LjUyLC02NS41MnYtOTAuNzJjMCwtMzYuMTI0MjggLTI5LjM5NTcyLC02NS41MiAtNjUuNTIsLTY1LjUyek04MC42NCwyNS4yaDkwLjcyYzMwLjY3NTg4LDAgNTUuNDQsMjQuNzY0MTIgNTUuNDQsNTUuNDR2OTAuNzJjMCwzMC42NzU4OCAtMjQuNzY0MTIsNTUuNDQgLTU1LjQ0LDU1LjQ0aC05MC43MmMtMzAuNjc1ODgsMCAtNTUuNDQsLTI0Ljc2NDEyIC01NS40NCwtNTUuNDR2LTkwLjcyYzAsLTMwLjY3NTg4IDI0Ljc2NDEyLC01NS40NCA1NS40NCwtNTUuNDR6TTE4Ni40OCw1NS40NGMtNS41NjcwMywwIC0xMC4wOCw0LjUxMjk3IC0xMC4wOCwxMC4wOGMwLDUuNTY3MDMgNC41MTI5NywxMC4wOCAxMC4wOCwxMC4wOGM1LjU2NzAzLDAgMTAuMDgsLTQuNTEyOTcgMTAuMDgsLTEwLjA4YzAsLTUuNTY3MDMgLTQuNTEyOTcsLTEwLjA4IC0xMC4wOCwtMTAuMDh6TTEyNiw3MC41NmMtMzAuNTU4OTcsMCAtNTUuNDQsMjQuODgxMDMgLTU1LjQ0LDU1LjQ0YzAsMzAuNTU4OTcgMjQuODgxMDMsNTUuNDQgNTUuNDQsNTUuNDRjMzAuNTU4OTcsMCA1NS40NCwtMjQuODgxMDMgNTUuNDQsLTU1LjQ0YzAsLTMwLjU1ODk3IC0yNC44ODEwMywtNTUuNDQgLTU1LjQ0LC01NS40NHpNMTI2LDgwLjY0YzI1LjExMTMzLDAgNDUuMzYsMjAuMjQ4NjcgNDUuMzYsNDUuMzZjMCwyNS4xMTEzMyAtMjAuMjQ4NjcsNDUuMzYgLTQ1LjM2LDQ1LjM2Yy0yNS4xMTEzMywwIC00NS4zNiwtMjAuMjQ4NjcgLTQ1LjM2LC00NS4zNmMwLC0yNS4xMTEzMyAyMC4yNDg2NywtNDUuMzYgNDUuMzYsLTQ1LjM2eiI+PC9wYXRoPjwvZz48cGF0aCBkPSJNMTI2LDI1MmMtNjkuNTg3ODgsMCAtMTI2LC01Ni40MTIxMiAtMTI2LC0xMjZ2MGMwLC02OS41ODc4OCA1Ni40MTIxMiwtMTI2IDEyNiwtMTI2djBjNjkuNTg3ODgsMCAxMjYsNTYuNDEyMTIgMTI2LDEyNnYwYzAsNjkuNTg3ODggLTU2LjQxMjEyLDEyNiAtMTI2LDEyNnoiIGZpbGw9Im5vbmUiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWpvaW49Im1pdGVyIj48L3BhdGg+PHBhdGggZD0iTTEyNiwyNDYuOTZjLTY2LjgwNDM2LDAgLTEyMC45NiwtNTQuMTU1NjQgLTEyMC45NiwtMTIwLjk2djBjMCwtNjYuODA0MzYgNTQuMTU1NjQsLTEyMC45NiAxMjAuOTYsLTEyMC45NmgwYzY2LjgwNDM2LDAgMTIwLjk2LDU0LjE1NTY0IDEyMC45NiwxMjAuOTZ2MGMwLDY2LjgwNDM2IC01NC4xNTU2NCwxMjAuOTYgLTEyMC45NiwxMjAuOTZ6IiBmaWxsPSJub25lIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLWxpbmVqb2luPSJtaXRlciI+PC9wYXRoPjxwYXRoIGQ9IiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZS1saW5lam9pbj0ibWl0ZXIiPjwvcGF0aD48cGF0aCBkPSIiIGZpbGw9Im5vbmUiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWpvaW49Im1pdGVyIj48L3BhdGg+PHBhdGggZD0iIiBmaWxsPSJub25lIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLWxpbmVqb2luPSJtaXRlciI+PC9wYXRoPjxwYXRoIGQ9IiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZS1saW5lam9pbj0ibWl0ZXIiPjwvcGF0aD48L2c+PC9nPjwvc3ZnPg==") 50% 50% no-repeat;background-size:100%}.zoom-instagram-widget__item .hover-layout.small .hover-controls .dashicons{font-size:15px;width:15px;height:15px}.zoom-instagram-widget__item .hover-layout.small .zoom-instagram-icon-wrap .zoom-svg-instagram-stroke{width:18px;height:18px}.zoom-instagram-widget__item .hover-layout.small .hover-controls .counter{padding-left:1px;padding-right:4px;font-size:11px}.zoom-instagram-widget-user-info{display:flex;padding:0 0px 20px}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-picture{flex:1}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-picture img{border-radius:50%}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-meta{display:flex;flex:3;flex-direction:column;margin-left:15px;text-align:left;justify-content:center}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-about-data{display:flex;justify-content:space-between;margin-bottom:10px}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-stats{font-size:14px;line-height:1.2;justify-content:space-between;display:flex;text-align:center}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-follow-button{padding:0px 24px;margin-top:10px;background:#3897f0;color:#fff !important;font-size:14px;font-weight:600;line-height:26px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;text-transform:none;border-radius:3px;outline:0;overflow:hidden;text-overflow:ellipsis;display:block;border:none;box-shadow:none;text-decoration:none !important}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-follow-button:hover{color:#fff;opacity:.8;box-shadow:none;border:none;text-decoration:none}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-counts{font-weight:600}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-counts-subhead{opacity:.7;font-size:14px}.zoom-instagram-widget-user-info-middle-cell{padding:0px 20px}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-fullname{font-weight:600;font-size:16px}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-names-wrapper{padding-right:20px;word-break:break-word}.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-username{font-size:14px;font-weight:600;word-break:break-all;opacity:.7}.zoom-instagram-widget-user-info-bio{text-align:left;font-size:14px;margin:0 0 15px}.zoom-instagram-widget__items .zoom-instagram-widget__item .zoom-instagram-link{display:block;background-size:cover !important;background-position:center center !important;background-repeat:no-repeat !important}.zoom-instagram-widget__items .zoom-instagram-widget__item .svg-icon{position:absolute;width:32px;padding:8px;height:32px;display:flex;top:0;right:0;z-index:1;transition:opacity .25s ease-in-out;-moz-transition:opacity .25s ease-in-out;-webkit-transition:opacity .25s ease-in-out}.zoom-instagram-widget__items .zoom-instagram-widget__item.media-icons-hover .svg-icon{opacity:0}.zoom-instagram-widget__items .zoom-instagram-widget__item.media-icons-hover:hover .svg-icon{opacity:1}.wpzoom-lightbox .mfp-inline-holder .mfp-content{max-width:none}.wpz-insta-lightbox{pointer-events:all;display:flex;flex-direction:row;background-color:#fff;border-radius:4px;height:100%}.wpz-insta-lightbox-wrapper{display:flex;justify-content:center;pointer-events:none}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper{width:30%}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header{display:flex;align-items:center;padding:16px;border-bottom:1px solid #efefef;flex-wrap:wrap}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-avatar img{width:42px;height:42px;border-radius:50%}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-username a,.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-follow a{color:#262626;font-weight:600;text-decoration:none;font-size:14px}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-username a:hover{text-decoration:underline}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-follow a{color:#0095f6}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header>div{margin-right:13px;min-width:42px}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-buttons{display:flex}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-buttons>div{padding:5px}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-caption{color:#262626;line-height:1.5;font-size:14px;padding:16px;font-weight:normal;overflow-y:scroll;max-height:384px;border-bottom:1px solid #efefef}.wpzoom-lightbox.mfp-gallery{z-index:100000;pointer-events:none}.wpzoom-lightbox button.mfp-close{pointer-events:all;color:#fff;font-size:50px;font-weight:100;margin-top:25px;margin-right:15px}.wpzoom-lightbox .mfp-prevent-close{pointer-events:all}.wpzoom-lightbox button.mfp-close:hover{text-decoration:none}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-date{font-size:12px;padding:16px;color:#8e8e8e;flex:1}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper img{height:100%;max-width:100%;-o-object-fit:contain;object-fit:contain;min-height:700px;min-width:700px}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper{flex-grow:1;text-align:center;height:auto;width:100%;max-width:70%;max-height:100%;background:#000;border-radius:4px 0 0 4px}.wpz-insta-lightbox-wrapper>.swiper-container{pointer-events:none;width:1000px;height:80vh}.wpz-insta-lightbox-wrapper>.swiper-container .swiper-container{width:100%;height:100%}.wpz-insta-lightbox-wrapper>.swiper-container .swiper-container .swiper-slide{max-height:100%}.wpz-insta-lightbox-wrapper>.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:100%;max-height:80vh}.wpz-insta-lightbox-wrapper video{height:100%;max-width:100%}.wpz-insta-lightbox-wrapper>.swiper-container .swiper-container .swiper-button-prev,.wpz-insta-lightbox-wrapper>.swiper-container .swiper-container .swiper-button-next{--swiper-navigation-size: 34px;color:#000;background:#fff;width:var(--swiper-navigation-size);border-radius:50%}.wpz-insta-lightbox-wrapper>.swiper-container .swiper-container .swiper-button-prev::after,.wpz-insta-lightbox-wrapper>.swiper-container .swiper-container .swiper-button-next::after{font-size:16px}.wpz-insta-lightbox-wrapper>.swiper-container>.swiper-wrapper{pointer-events:all}.wpz-insta-lightbox-wrapper>.swiper-container>.swiper-button-prev,.wpz-insta-lightbox-wrapper>.swiper-container>.swiper-button-next{position:fixed;pointer-events:all}.wpz-insta-lightbox-wrapper>.swiper-container .swiper-button-prev,.wpz-insta-lightbox-wrapper>.swiper-container .swiper-button-next{color:#fff;opacity:.75}.wpz-insta-lightbox-wrapper>.swiper-container .swiper-button-prev:hover,.wpz-insta-lightbox-wrapper>.swiper-container .swiper-button-next:hover{opacity:1}.wpz-insta-lightbox-wrapper>.swiper-container .swiper-button-prev.swiper-button-disabled,.wpz-insta-lightbox-wrapper>.swiper-container .swiper-button-next.swiper-button-disabled{opacity:.25 !important}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper{display:flex;flex-direction:column;flex-grow:1}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .view-post{padding:16px;text-decoration:none;font-size:12px;color:#262626;font-weight:400;line-height:20px;display:flex;border-top:1px solid #efefef;flex-wrap:wrap;justify-content:flex-start}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .view-post a{text-decoration:none;font-size:12px;color:#262626;font-weight:400;line-height:20px;text-align:center;display:inline-block}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .view-post a span{margin-right:10px}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .view-post .delimiter{padding:0px 10px}@-webkit-keyframes show{100%{transform:none;opacity:1}}@keyframes show{100%{transform:none;opacity:1}}@media screen and (max-width: 1200px){.wpz-insta-lightbox-wrapper .wpz-insta-lightbox{flex-wrap:wrap}.wpz-insta-lightbox-wrapper>.swiper-container{width:86%}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper img{min-height:500px;min-width:500px}}@media screen and (max-width: 860px){.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-caption{font-size:12px}}@media screen and (max-width: 768px){.wpz-insta-lightbox{flex-direction:column}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper img{min-height:400px;min-width:400px}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper{border-radius:4px 4px 0 0;max-width:100%;height:65%}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-caption{max-height:134px}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper{width:100%;height:35%}}@media screen and (max-width: 600px){.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper img{min-height:280px;min-width:280px}.wpz-insta-lightbox-wrapper>.swiper-container{width:76%}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper{height:55%}.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper{height:45%}}
|
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.
|
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.
|
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.1
|
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.1' );
|
23 |
}
|
24 |
|
25 |
require_once plugin_dir_path( __FILE__ ) . 'class-wpzoom-instagram-image-uploader.php';
|
readme.txt
CHANGED
@@ -77,6 +77,13 @@ Once connected, go to the **Widgets** page and add the widget **Instagram Widget
|
|
77 |
|
78 |
Go to the **Instagram Widget** section in the WordPress Dashboard and connect your Instagram account. After that, create a new Feed and embed it in your posts or pages using the available Block or shortcode.
|
79 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
|
81 |
== Screenshots ==
|
82 |
|
@@ -89,6 +96,9 @@ Go to the **Instagram Widget** section in the WordPress Dashboard and connect yo
|
|
89 |
|
90 |
== Changelog ==
|
91 |
|
|
|
|
|
|
|
92 |
= 2.0.0 =
|
93 |
* We've made our plugin better and more user-friendly!
|
94 |
* New: Gutenberg block
|
77 |
|
78 |
Go to the **Instagram Widget** section in the WordPress Dashboard and connect your Instagram account. After that, create a new Feed and embed it in your posts or pages using the available Block or shortcode.
|
79 |
|
80 |
+
= Is there a Documentation available? =
|
81 |
+
|
82 |
+
Yes, you can find the documentation for this plugin with more instructions on our website.
|
83 |
+
|
84 |
+
[Go to Documentation](https://www.wpzoom.com/documentation/instagram-widget/)
|
85 |
+
|
86 |
+
|
87 |
|
88 |
== Screenshots ==
|
89 |
|
96 |
|
97 |
== Changelog ==
|
98 |
|
99 |
+
= 2.0.1 =
|
100 |
+
* Minor bug fixes
|
101 |
+
|
102 |
= 2.0.0 =
|
103 |
* We've made our plugin better and more user-friendly!
|
104 |
* New: Gutenberg block
|
src/styles/backend/index.scss
CHANGED
@@ -196,10 +196,6 @@
|
|
196 |
#wpbody-content {
|
197 |
padding-bottom: 165px;
|
198 |
|
199 |
-
> .notice {
|
200 |
-
display: none !important;
|
201 |
-
}
|
202 |
-
|
203 |
.urgent {
|
204 |
color: $red-color;
|
205 |
}
|
@@ -220,8 +216,6 @@
|
|
220 |
> h1.wp-heading-inline,
|
221 |
> .page-title-action,
|
222 |
> .wp-header-end,
|
223 |
-
> .notice,
|
224 |
-
> .wpz-insta_settings-header > .notice,
|
225 |
> .wpz-insta-wrap ~ #posts-filter > .search-box,
|
226 |
> .wpz-insta-wrap ~ #posts-filter > .tablenav,
|
227 |
> .wpz-insta-wrap ~ #posts-filter > .wp-list-table > tfoot,
|
196 |
#wpbody-content {
|
197 |
padding-bottom: 165px;
|
198 |
|
|
|
|
|
|
|
|
|
199 |
.urgent {
|
200 |
color: $red-color;
|
201 |
}
|
216 |
> h1.wp-heading-inline,
|
217 |
> .page-title-action,
|
218 |
> .wp-header-end,
|
|
|
|
|
219 |
> .wpz-insta-wrap ~ #posts-filter > .search-box,
|
220 |
> .wpz-insta-wrap ~ #posts-filter > .tablenav,
|
221 |
> .wpz-insta-wrap ~ #posts-filter > .wp-list-table > tfoot,
|
src/styles/frontend/index.scss
CHANGED
@@ -504,7 +504,6 @@ a.ig-b-v-24:hover {
|
|
504 |
background-size: cover !important;
|
505 |
background-position: center center !important;
|
506 |
background-repeat: no-repeat !important;
|
507 |
-
padding-bottom: 100%;
|
508 |
}
|
509 |
|
510 |
.zoom-instagram-widget__items .zoom-instagram-widget__item .svg-icon {
|
504 |
background-size: cover !important;
|
505 |
background-position: center center !important;
|
506 |
background-repeat: no-repeat !important;
|
|
|
507 |
}
|
508 |
|
509 |
.zoom-instagram-widget__items .zoom-instagram-widget__item .svg-icon {
|
vendor/autoload.php
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
// autoload.php @generated by Composer
|
4 |
+
|
5 |
+
if (PHP_VERSION_ID < 50600) {
|
6 |
+
echo 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
|
7 |
+
exit(1);
|
8 |
+
}
|
9 |
+
|
10 |
+
require_once __DIR__ . '/composer/autoload_real.php';
|
11 |
+
|
12 |
+
return ComposerAutoloaderInite34df6fd83ea02d3148aabe09a8b139f::getLoader();
|
vendor/composer/ClassLoader.php
ADDED
@@ -0,0 +1,572 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/*
|
4 |
+
* This file is part of Composer.
|
5 |
+
*
|
6 |
+
* (c) Nils Adermann <naderman@naderman.de>
|
7 |
+
* Jordi Boggiano <j.boggiano@seld.be>
|
8 |
+
*
|
9 |
+
* For the full copyright and license information, please view the LICENSE
|
10 |
+
* file that was distributed with this source code.
|
11 |
+
*/
|
12 |
+
|
13 |
+
namespace Composer\Autoload;
|
14 |
+
|
15 |
+
/**
|
16 |
+
* ClassLoader implements a PSR-0, PSR-4 and classmap class loader.
|
17 |
+
*
|
18 |
+
* $loader = new \Composer\Autoload\ClassLoader();
|
19 |
+
*
|
20 |
+
* // register classes with namespaces
|
21 |
+
* $loader->add('Symfony\Component', __DIR__.'/component');
|
22 |
+
* $loader->add('Symfony', __DIR__.'/framework');
|
23 |
+
*
|
24 |
+
* // activate the autoloader
|
25 |
+
* $loader->register();
|
26 |
+
*
|
27 |
+
* // to enable searching the include path (eg. for PEAR packages)
|
28 |
+
* $loader->setUseIncludePath(true);
|
29 |
+
*
|
30 |
+
* In this example, if you try to use a class in the Symfony\Component
|
31 |
+
* namespace or one of its children (Symfony\Component\Console for instance),
|
32 |
+
* the autoloader will first look for the class under the component/
|
33 |
+
* directory, and it will then fallback to the framework/ directory if not
|
34 |
+
* found before giving up.
|
35 |
+
*
|
36 |
+
* This class is loosely based on the Symfony UniversalClassLoader.
|
37 |
+
*
|
38 |
+
* @author Fabien Potencier <fabien@symfony.com>
|
39 |
+
* @author Jordi Boggiano <j.boggiano@seld.be>
|
40 |
+
* @see https://www.php-fig.org/psr/psr-0/
|
41 |
+
* @see https://www.php-fig.org/psr/psr-4/
|
42 |
+
*/
|
43 |
+
class ClassLoader
|
44 |
+
{
|
45 |
+
/** @var ?string */
|
46 |
+
private $vendorDir;
|
47 |
+
|
48 |
+
// PSR-4
|
49 |
+
/**
|
50 |
+
* @var array[]
|
51 |
+
* @psalm-var array<string, array<string, int>>
|
52 |
+
*/
|
53 |
+
private $prefixLengthsPsr4 = array();
|
54 |
+
/**
|
55 |
+
* @var array[]
|
56 |
+
* @psalm-var array<string, array<int, string>>
|
57 |
+
*/
|
58 |
+
private $prefixDirsPsr4 = array();
|
59 |
+
/**
|
60 |
+
* @var array[]
|
61 |
+
* @psalm-var array<string, string>
|
62 |
+
*/
|
63 |
+
private $fallbackDirsPsr4 = array();
|
64 |
+
|
65 |
+
// PSR-0
|
66 |
+
/**
|
67 |
+
* @var array[]
|
68 |
+
* @psalm-var array<string, array<string, string[]>>
|
69 |
+
*/
|
70 |
+
private $prefixesPsr0 = array();
|
71 |
+
/**
|
72 |
+
* @var array[]
|
73 |
+
* @psalm-var array<string, string>
|
74 |
+
*/
|
75 |
+
private $fallbackDirsPsr0 = array();
|
76 |
+
|
77 |
+
/** @var bool */
|
78 |
+
private $useIncludePath = false;
|
79 |
+
|
80 |
+
/**
|
81 |
+
* @var string[]
|
82 |
+
* @psalm-var array<string, string>
|
83 |
+
*/
|
84 |
+
private $classMap = array();
|
85 |
+
|
86 |
+
/** @var bool */
|
87 |
+
private $classMapAuthoritative = false;
|
88 |
+
|
89 |
+
/**
|
90 |
+
* @var bool[]
|
91 |
+
* @psalm-var array<string, bool>
|
92 |
+
*/
|
93 |
+
private $missingClasses = array();
|
94 |
+
|
95 |
+
/** @var ?string */
|
96 |
+
private $apcuPrefix;
|
97 |
+
|
98 |
+
/**
|
99 |
+
* @var self[]
|
100 |
+
*/
|
101 |
+
private static $registeredLoaders = array();
|
102 |
+
|
103 |
+
/**
|
104 |
+
* @param ?string $vendorDir
|
105 |
+
*/
|
106 |
+
public function __construct($vendorDir = null)
|
107 |
+
{
|
108 |
+
$this->vendorDir = $vendorDir;
|
109 |
+
}
|
110 |
+
|
111 |
+
/**
|
112 |
+
* @return string[]
|
113 |
+
*/
|
114 |
+
public function getPrefixes()
|
115 |
+
{
|
116 |
+
if (!empty($this->prefixesPsr0)) {
|
117 |
+
return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
|
118 |
+
}
|
119 |
+
|
120 |
+
return array();
|
121 |
+
}
|
122 |
+
|
123 |
+
/**
|
124 |
+
* @return array[]
|
125 |
+
* @psalm-return array<string, array<int, string>>
|
126 |
+
*/
|
127 |
+
public function getPrefixesPsr4()
|
128 |
+
{
|
129 |
+
return $this->prefixDirsPsr4;
|
130 |
+
}
|
131 |
+
|
132 |
+
/**
|
133 |
+
* @return array[]
|
134 |
+
* @psalm-return array<string, string>
|
135 |
+
*/
|
136 |
+
public function getFallbackDirs()
|
137 |
+
{
|
138 |
+
return $this->fallbackDirsPsr0;
|
139 |
+
}
|
140 |
+
|
141 |
+
/**
|
142 |
+
* @return array[]
|
143 |
+
* @psalm-return array<string, string>
|
144 |
+
*/
|
145 |
+
public function getFallbackDirsPsr4()
|
146 |
+
{
|
147 |
+
return $this->fallbackDirsPsr4;
|
148 |
+
}
|
149 |
+
|
150 |
+
/**
|
151 |
+
* @return string[] Array of classname => path
|
152 |
+
* @psalm-return array<string, string>
|
153 |
+
*/
|
154 |
+
public function getClassMap()
|
155 |
+
{
|
156 |
+
return $this->classMap;
|
157 |
+
}
|
158 |
+
|
159 |
+
/**
|
160 |
+
* @param string[] $classMap Class to filename map
|
161 |
+
* @psalm-param array<string, string> $classMap
|
162 |
+
*
|
163 |
+
* @return void
|
164 |
+
*/
|
165 |
+
public function addClassMap(array $classMap)
|
166 |
+
{
|
167 |
+
if ($this->classMap) {
|
168 |
+
$this->classMap = array_merge($this->classMap, $classMap);
|
169 |
+
} else {
|
170 |
+
$this->classMap = $classMap;
|
171 |
+
}
|
172 |
+
}
|
173 |
+
|
174 |
+
/**
|
175 |
+
* Registers a set of PSR-0 directories for a given prefix, either
|
176 |
+
* appending or prepending to the ones previously set for this prefix.
|
177 |
+
*
|
178 |
+
* @param string $prefix The prefix
|
179 |
+
* @param string[]|string $paths The PSR-0 root directories
|
180 |
+
* @param bool $prepend Whether to prepend the directories
|
181 |
+
*
|
182 |
+
* @return void
|
183 |
+
*/
|
184 |
+
public function add($prefix, $paths, $prepend = false)
|
185 |
+
{
|
186 |
+
if (!$prefix) {
|
187 |
+
if ($prepend) {
|
188 |
+
$this->fallbackDirsPsr0 = array_merge(
|
189 |
+
(array) $paths,
|
190 |
+
$this->fallbackDirsPsr0
|
191 |
+
);
|
192 |
+
} else {
|
193 |
+
$this->fallbackDirsPsr0 = array_merge(
|
194 |
+
$this->fallbackDirsPsr0,
|
195 |
+
(array) $paths
|
196 |
+
);
|
197 |
+
}
|
198 |
+
|
199 |
+
return;
|
200 |
+
}
|
201 |
+
|
202 |
+
$first = $prefix[0];
|
203 |
+
if (!isset($this->prefixesPsr0[$first][$prefix])) {
|
204 |
+
$this->prefixesPsr0[$first][$prefix] = (array) $paths;
|
205 |
+
|
206 |
+
return;
|
207 |
+
}
|
208 |
+
if ($prepend) {
|
209 |
+
$this->prefixesPsr0[$first][$prefix] = array_merge(
|
210 |
+
(array) $paths,
|
211 |
+
$this->prefixesPsr0[$first][$prefix]
|
212 |
+
);
|
213 |
+
} else {
|
214 |
+
$this->prefixesPsr0[$first][$prefix] = array_merge(
|
215 |
+
$this->prefixesPsr0[$first][$prefix],
|
216 |
+
(array) $paths
|
217 |
+
);
|
218 |
+
}
|
219 |
+
}
|
220 |
+
|
221 |
+
/**
|
222 |
+
* Registers a set of PSR-4 directories for a given namespace, either
|
223 |
+
* appending or prepending to the ones previously set for this namespace.
|
224 |
+
*
|
225 |
+
* @param string $prefix The prefix/namespace, with trailing '\\'
|
226 |
+
* @param string[]|string $paths The PSR-4 base directories
|
227 |
+
* @param bool $prepend Whether to prepend the directories
|
228 |
+
*
|
229 |
+
* @throws \InvalidArgumentException
|
230 |
+
*
|
231 |
+
* @return void
|
232 |
+
*/
|
233 |
+
public function addPsr4($prefix, $paths, $prepend = false)
|
234 |
+
{
|
235 |
+
if (!$prefix) {
|
236 |
+
// Register directories for the root namespace.
|
237 |
+
if ($prepend) {
|
238 |
+
$this->fallbackDirsPsr4 = array_merge(
|
239 |
+
(array) $paths,
|
240 |
+
$this->fallbackDirsPsr4
|
241 |
+
);
|
242 |
+
} else {
|
243 |
+
$this->fallbackDirsPsr4 = array_merge(
|
244 |
+
$this->fallbackDirsPsr4,
|
245 |
+
(array) $paths
|
246 |
+
);
|
247 |
+
}
|
248 |
+
} elseif (!isset($this->prefixDirsPsr4[$prefix])) {
|
249 |
+
// Register directories for a new namespace.
|
250 |
+
$length = strlen($prefix);
|
251 |
+
if ('\\' !== $prefix[$length - 1]) {
|
252 |
+
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
|
253 |
+
}
|
254 |
+
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
|
255 |
+
$this->prefixDirsPsr4[$prefix] = (array) $paths;
|
256 |
+
} elseif ($prepend) {
|
257 |
+
// Prepend directories for an already registered namespace.
|
258 |
+
$this->prefixDirsPsr4[$prefix] = array_merge(
|
259 |
+
(array) $paths,
|
260 |
+
$this->prefixDirsPsr4[$prefix]
|
261 |
+
);
|
262 |
+
} else {
|
263 |
+
// Append directories for an already registered namespace.
|
264 |
+
$this->prefixDirsPsr4[$prefix] = array_merge(
|
265 |
+
$this->prefixDirsPsr4[$prefix],
|
266 |
+
(array) $paths
|
267 |
+
);
|
268 |
+
}
|
269 |
+
}
|
270 |
+
|
271 |
+
/**
|
272 |
+
* Registers a set of PSR-0 directories for a given prefix,
|
273 |
+
* replacing any others previously set for this prefix.
|
274 |
+
*
|
275 |
+
* @param string $prefix The prefix
|
276 |
+
* @param string[]|string $paths The PSR-0 base directories
|
277 |
+
*
|
278 |
+
* @return void
|
279 |
+
*/
|
280 |
+
public function set($prefix, $paths)
|
281 |
+
{
|
282 |
+
if (!$prefix) {
|
283 |
+
$this->fallbackDirsPsr0 = (array) $paths;
|
284 |
+
} else {
|
285 |
+
$this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
|
286 |
+
}
|
287 |
+
}
|
288 |
+
|
289 |
+
/**
|
290 |
+
* Registers a set of PSR-4 directories for a given namespace,
|
291 |
+
* replacing any others previously set for this namespace.
|
292 |
+
*
|
293 |
+
* @param string $prefix The prefix/namespace, with trailing '\\'
|
294 |
+
* @param string[]|string $paths The PSR-4 base directories
|
295 |
+
*
|
296 |
+
* @throws \InvalidArgumentException
|
297 |
+
*
|
298 |
+
* @return void
|
299 |
+
*/
|
300 |
+
public function setPsr4($prefix, $paths)
|
301 |
+
{
|
302 |
+
if (!$prefix) {
|
303 |
+
$this->fallbackDirsPsr4 = (array) $paths;
|
304 |
+
} else {
|
305 |
+
$length = strlen($prefix);
|
306 |
+
if ('\\' !== $prefix[$length - 1]) {
|
307 |
+
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
|
308 |
+
}
|
309 |
+
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
|
310 |
+
$this->prefixDirsPsr4[$prefix] = (array) $paths;
|
311 |
+
}
|
312 |
+
}
|
313 |
+
|
314 |
+
/**
|
315 |
+
* Turns on searching the include path for class files.
|
316 |
+
*
|
317 |
+
* @param bool $useIncludePath
|
318 |
+
*
|
319 |
+
* @return void
|
320 |
+
*/
|
321 |
+
public function setUseIncludePath($useIncludePath)
|
322 |
+
{
|
323 |
+
$this->useIncludePath = $useIncludePath;
|
324 |
+
}
|
325 |
+
|
326 |
+
/**
|
327 |
+
* Can be used to check if the autoloader uses the include path to check
|
328 |
+
* for classes.
|
329 |
+
*
|
330 |
+
* @return bool
|
331 |
+
*/
|
332 |
+
public function getUseIncludePath()
|
333 |
+
{
|
334 |
+
return $this->useIncludePath;
|
335 |
+
}
|
336 |
+
|
337 |
+
/**
|
338 |
+
* Turns off searching the prefix and fallback directories for classes
|
339 |
+
* that have not been registered with the class map.
|
340 |
+
*
|
341 |
+
* @param bool $classMapAuthoritative
|
342 |
+
*
|
343 |
+
* @return void
|
344 |
+
*/
|
345 |
+
public function setClassMapAuthoritative($classMapAuthoritative)
|
346 |
+
{
|
347 |
+
$this->classMapAuthoritative = $classMapAuthoritative;
|
348 |
+
}
|
349 |
+
|
350 |
+
/**
|
351 |
+
* Should class lookup fail if not found in the current class map?
|
352 |
+
*
|
353 |
+
* @return bool
|
354 |
+
*/
|
355 |
+
public function isClassMapAuthoritative()
|
356 |
+
{
|
357 |
+
return $this->classMapAuthoritative;
|
358 |
+
}
|
359 |
+
|
360 |
+
/**
|
361 |
+
* APCu prefix to use to cache found/not-found classes, if the extension is enabled.
|
362 |
+
*
|
363 |
+
* @param string|null $apcuPrefix
|
364 |
+
*
|
365 |
+
* @return void
|
366 |
+
*/
|
367 |
+
public function setApcuPrefix($apcuPrefix)
|
368 |
+
{
|
369 |
+
$this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null;
|
370 |
+
}
|
371 |
+
|
372 |
+
/**
|
373 |
+
* The APCu prefix in use, or null if APCu caching is not enabled.
|
374 |
+
*
|
375 |
+
* @return string|null
|
376 |
+
*/
|
377 |
+
public function getApcuPrefix()
|
378 |
+
{
|
379 |
+
return $this->apcuPrefix;
|
380 |
+
}
|
381 |
+
|
382 |
+
/**
|
383 |
+
* Registers this instance as an autoloader.
|
384 |
+
*
|
385 |
+
* @param bool $prepend Whether to prepend the autoloader or not
|
386 |
+
*
|
387 |
+
* @return void
|
388 |
+
*/
|
389 |
+
public function register($prepend = false)
|
390 |
+
{
|
391 |
+
spl_autoload_register(array($this, 'loadClass'), true, $prepend);
|
392 |
+
|
393 |
+
if (null === $this->vendorDir) {
|
394 |
+
return;
|
395 |
+
}
|
396 |
+
|
397 |
+
if ($prepend) {
|
398 |
+
self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders;
|
399 |
+
} else {
|
400 |
+
unset(self::$registeredLoaders[$this->vendorDir]);
|
401 |
+
self::$registeredLoaders[$this->vendorDir] = $this;
|
402 |
+
}
|
403 |
+
}
|
404 |
+
|
405 |
+
/**
|
406 |
+
* Unregisters this instance as an autoloader.
|
407 |
+
*
|
408 |
+
* @return void
|
409 |
+
*/
|
410 |
+
public function unregister()
|
411 |
+
{
|
412 |
+
spl_autoload_unregister(array($this, 'loadClass'));
|
413 |
+
|
414 |
+
if (null !== $this->vendorDir) {
|
415 |
+
unset(self::$registeredLoaders[$this->vendorDir]);
|
416 |
+
}
|
417 |
+
}
|
418 |
+
|
419 |
+
/**
|
420 |
+
* Loads the given class or interface.
|
421 |
+
*
|
422 |
+
* @param string $class The name of the class
|
423 |
+
* @return true|null True if loaded, null otherwise
|
424 |
+
*/
|
425 |
+
public function loadClass($class)
|
426 |
+
{
|
427 |
+
if ($file = $this->findFile($class)) {
|
428 |
+
includeFile($file);
|
429 |
+
|
430 |
+
return true;
|
431 |
+
}
|
432 |
+
|
433 |
+
return null;
|
434 |
+
}
|
435 |
+
|
436 |
+
/**
|
437 |
+
* Finds the path to the file where the class is defined.
|
438 |
+
*
|
439 |
+
* @param string $class The name of the class
|
440 |
+
*
|
441 |
+
* @return string|false The path if found, false otherwise
|
442 |
+
*/
|
443 |
+
public function findFile($class)
|
444 |
+
{
|
445 |
+
// class map lookup
|
446 |
+
if (isset($this->classMap[$class])) {
|
447 |
+
return $this->classMap[$class];
|
448 |
+
}
|
449 |
+
if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) {
|
450 |
+
return false;
|
451 |
+
}
|
452 |
+
if (null !== $this->apcuPrefix) {
|
453 |
+
$file = apcu_fetch($this->apcuPrefix.$class, $hit);
|
454 |
+
if ($hit) {
|
455 |
+
return $file;
|
456 |
+
}
|
457 |
+
}
|
458 |
+
|
459 |
+
$file = $this->findFileWithExtension($class, '.php');
|
460 |
+
|
461 |
+
// Search for Hack files if we are running on HHVM
|
462 |
+
if (false === $file && defined('HHVM_VERSION')) {
|
463 |
+
$file = $this->findFileWithExtension($class, '.hh');
|
464 |
+
}
|
465 |
+
|
466 |
+
if (null !== $this->apcuPrefix) {
|
467 |
+
apcu_add($this->apcuPrefix.$class, $file);
|
468 |
+
}
|
469 |
+
|
470 |
+
if (false === $file) {
|
471 |
+
// Remember that this class does not exist.
|
472 |
+
$this->missingClasses[$class] = true;
|
473 |
+
}
|
474 |
+
|
475 |
+
return $file;
|
476 |
+
}
|
477 |
+
|
478 |
+
/**
|
479 |
+
* Returns the currently registered loaders indexed by their corresponding vendor directories.
|
480 |
+
*
|
481 |
+
* @return self[]
|
482 |
+
*/
|
483 |
+
public static function getRegisteredLoaders()
|
484 |
+
{
|
485 |
+
return self::$registeredLoaders;
|
486 |
+
}
|
487 |
+
|
488 |
+
/**
|
489 |
+
* @param string $class
|
490 |
+
* @param string $ext
|
491 |
+
* @return string|false
|
492 |
+
*/
|
493 |
+
private function findFileWithExtension($class, $ext)
|
494 |
+
{
|
495 |
+
// PSR-4 lookup
|
496 |
+
$logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;
|
497 |
+
|
498 |
+
$first = $class[0];
|
499 |
+
if (isset($this->prefixLengthsPsr4[$first])) {
|
500 |
+
$subPath = $class;
|
501 |
+
while (false !== $lastPos = strrpos($subPath, '\\')) {
|
502 |
+
$subPath = substr($subPath, 0, $lastPos);
|
503 |
+
$search = $subPath . '\\';
|
504 |
+
if (isset($this->prefixDirsPsr4[$search])) {
|
505 |
+
$pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
|
506 |
+
foreach ($this->prefixDirsPsr4[$search] as $dir) {
|
507 |
+
if (file_exists($file = $dir . $pathEnd)) {
|
508 |
+
return $file;
|
509 |
+
}
|
510 |
+
}
|
511 |
+
}
|
512 |
+
}
|
513 |
+
}
|
514 |
+
|
515 |
+
// PSR-4 fallback dirs
|
516 |
+
foreach ($this->fallbackDirsPsr4 as $dir) {
|
517 |
+
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
|
518 |
+
return $file;
|
519 |
+
}
|
520 |
+
}
|
521 |
+
|
522 |
+
// PSR-0 lookup
|
523 |
+
if (false !== $pos = strrpos($class, '\\')) {
|
524 |
+
// namespaced class name
|
525 |
+
$logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1)
|
526 |
+
. strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR);
|
527 |
+
} else {
|
528 |
+
// PEAR-like class name
|
529 |
+
$logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext;
|
530 |
+
}
|
531 |
+
|
532 |
+
if (isset($this->prefixesPsr0[$first])) {
|
533 |
+
foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) {
|
534 |
+
if (0 === strpos($class, $prefix)) {
|
535 |
+
foreach ($dirs as $dir) {
|
536 |
+
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
|
537 |
+
return $file;
|
538 |
+
}
|
539 |
+
}
|
540 |
+
}
|
541 |
+
}
|
542 |
+
}
|
543 |
+
|
544 |
+
// PSR-0 fallback dirs
|
545 |
+
foreach ($this->fallbackDirsPsr0 as $dir) {
|
546 |
+
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
|
547 |
+
return $file;
|
548 |
+
}
|
549 |
+
}
|
550 |
+
|
551 |
+
// PSR-0 include paths.
|
552 |
+
if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
|
553 |
+
return $file;
|
554 |
+
}
|
555 |
+
|
556 |
+
return false;
|
557 |
+
}
|
558 |
+
}
|
559 |
+
|
560 |
+
/**
|
561 |
+
* Scope isolated include.
|
562 |
+
*
|
563 |
+
* Prevents access to $this/self from included files.
|
564 |
+
*
|
565 |
+
* @param string $file
|
566 |
+
* @return void
|
567 |
+
* @private
|
568 |
+
*/
|
569 |
+
function includeFile($file)
|
570 |
+
{
|
571 |
+
include $file;
|
572 |
+
}
|
vendor/composer/InstalledVersions.php
ADDED
@@ -0,0 +1,352 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|